diff --git a/.Rhistory b/.Rhistory new file mode 100644 index 0000000..ae46a43 --- /dev/null +++ b/.Rhistory @@ -0,0 +1,512 @@ +} else if (is.character(controls)) { +controls_rhs <- paste(controls, collapse = " + ") +} else { +stop("`controls` must be NULL, a character vector of column names, or a one-sided formula like ~ x1 + x2.") +} +# Residualization regression +# Default: y ~ controls | unit + time (TWFE residualization) +if (use_twfe_residualization) { +fml_txt <- paste0(y, " ~ ", controls_rhs, " | .unit + .time") +} else { +# Alternative: y ~ controls (no FE) — usually not recommended for panel SDID +fml_txt <- paste0(y, " ~ ", controls_rhs) +} +df2 <- df2 %>% dplyr::mutate(.rowid = dplyr::row_number()) +m_resid <- fixest::feols(stats::as.formula(fml_txt), data = df2) +res_df <- tibble::tibble( +.rowid = as.integer(names(resid(m_resid))), +.y_resid = as.numeric(resid(m_resid)) +) +df2 <- df2 %>% dplyr::left_join(res_df, by = ".rowid") +# Drop rows that were not used by feols (recommended for SDID; keeps balance check honest) +df2 <- df2 %>% dplyr::filter(!is.na(.y_resid)) %>% dplyr::mutate(!!y := .y_resid) +# cleanup +df2 <- df2 %>% dplyr::select(-.rowid, -.y_resid) +# Replace outcome with residualized outcome +df2[[y]] <- resid(m_resid) +} +# Prepare panel for synthdid +dfp <- df2 %>% +dplyr::arrange(.unit, .time) %>% +dplyr::select(.unit, .time, !!y, .W) %>% +dplyr::rename(y = !!y) +dfp <- as.data.frame(dfp) +# Balance check (panel.matrices requires balanced panel) +# This check is cheap and gives a clearer error than panel.matrices. +bad <- dfp %>% +dplyr::count(.unit, .time) %>% +dplyr::filter(n != 1) +if (nrow(bad) > 0) { +stop("Input must be a balanced panel with unique (.unit, .time) rows. Found duplicates/missingness.") +} +setup <- synthdid::panel.matrices(dfp) +est <- synthdid::synthdid_estimate(setup$Y, setup$N0, setup$T0) +if (return_setup) { +return(list(estimate = est, setup = setup)) +} else { +return(est) +} +} +make_weighted_treated_unit <- function(df, treat_start_time, weight_col = "pop") { +baseline_time <- treat_start_time - 1 +# compute synthetic id BEFORE summarise +max_id <- max(as.integer(df$unit), na.rm = TRUE) +synth_id <- max_id + 1L +w0 <- df %>% +filter(time == baseline_time) %>% +select(unit, !!rlang::sym(weight_col)) %>% +rename(w0 = !!rlang::sym(weight_col)) +df2 <- df %>% left_join(w0, by = "unit") +treated <- df2 %>% filter(treated_unit == 1) +controls <- df2 %>% filter(treated_unit == 0) +treated_super <- treated %>% +dplyr::group_by(time) %>% +dplyr::summarise( +y = sum(y * w0, na.rm = TRUE) / sum(w0, na.rm = TRUE), +treated_unit = 1L, +post = as.integer(dplyr::first(time) >= treat_start_time), +.groups = "drop" +) %>% +dplyr::mutate(unit = synth_id) +bind_rows(controls, treated_super) +} +run_sdid_by_treated_and_average <- function(df, treat_start_time, weight_col = "pop") { +baseline_time <- treat_start_time - 1 +treated_ids <- df %>% filter(treated_unit == 1) %>% distinct(unit) %>% pull(unit) +controls_df <- df %>% filter(treated_unit == 0) +weights <- df %>% +filter(treated_unit == 1, time == baseline_time) %>% +group_by(unit) %>% +summarise(w0 = mean(.data[[weight_col]], na.rm = TRUE), .groups = "drop") +est <- map_dfr(treated_ids, function(id) { +dfi <- bind_rows(controls_df, df %>% filter(unit == id)) +tau <- run_sdid_long(dfi, treat_start_time) +tibble(unit = id, tau = as.numeric(tau)) +}) %>% +left_join(weights, by = "unit") +tau_wavg <- sum(est$tau * est$w0, na.rm = TRUE) / sum(est$w0, na.rm = TRUE) +list(unit_level = est, tau_weighted_average = tau_wavg) +} +## Data (created previously) +data_path <- normalizePath(file.path("..", "data", "analysis_data.csv"), mustWork = FALSE) +## Check to make sure data exist +if (!is.na(data_path)) { +message("Loading data: ", data_path) +panel <- read_csv(data_path, show_col_types = FALSE) +## Define control variables +control_vars <- c("pct_white", "pop_20_64", "pct_55_64", "log_35_44", "log_f_20_64", "unemp") +## Basic version for now, with controls to come +panel <- panel %>% dplyr::select(time = year, +unit = fips, +y = crude_rate, +treated_unit = treated, +pop = population, +control_vars ) +required <- c("unit", "time", "y", "treated_unit") +if (!all(required %in% names(panel))) { +stop("Replication data found, but missing required columns: unit, time, y, treated_unit (and optional pop).") +} +# You should set this explicitly for the application: +T0_emp <- min(panel$time[panel$treated_unit == 1], na.rm = TRUE) +panel <- panel %>% mutate(post = as.integer(time >= T0_emp)) +## Estimate models (unweighted) (SDID) +tau_emp_sdid <- run_sdid_long(panel, T0_emp) +tau_emp_sdid_controls <- run_sdid_long(panel, T0_emp, controls = control_vars) +## Estimated Models (unweighted) (DiD) +tau_emp_did_unw <- did_twfe(df) +tau_emp_did_unw_controls <- tau <- did_twfe(df, controls = control_vars) +out <- tibble( +method = c("SDID (UnW)","SDID (UnW) (Controls)", "DID (UnW)","DID (UnW) (Controls)"), +tau = c(as.numeric(tau_emp_sdid),as.numeric(tau_emp_sdid_controls), as.numeric(tau_emp_did_unw),as.numeric(tau_emp_did_unw_controls)) +) +if ("pop" %in% names(panel)) { +df_super <- make_weighted_treated_unit(panel, T0_emp, weight_col = "pop") +tau_emp_sdid_super <- run_sdid_long(df_super, T0_emp) +sol2 <- run_sdid_by_treated_and_average(panel, T0_emp, weight_col = "pop") +tau_emp_did_w <- did_2x2(panel, w = "pop") +out <- bind_rows(out, tibble( +method = c("SDID weighted treated avg (Sol. 1)", "Weighted avg of unit SDIDs (Sol. 2)", "DID (weighted)"), +tau = c(as.numeric(tau_emp_sdid_super), as.numeric(sol2$tau_weighted_average), as.numeric(tau_emp_did_w)) +)) +} +knitr::kable(out, digits = 3, caption = "Replication: SDID/DID estimates (placeholder)") +} else { +cat("No replication data found. Put data/analysis_panel.csv or data/analysis_panel.rds in the repo to enable this section.") +} +did_twfe <- function(df, +y = "y", +treated_unit = "treated_unit", +post = "post", +unit = "unit", +time = "time", +controls = NULL, # NULL, character vector, or one-sided formula +w = NULL, # NULL or weight column name +cluster = "unit", # NULL, or column name (or a ~formula string) +return_model = FALSE) { +if (!requireNamespace("fixest", quietly = TRUE)) { +stop("Package `fixest` is required. Install via install.packages('fixest').") +} +# Controls -> RHS string +controls_rhs <- "" +if (!is.null(controls)) { +if (inherits(controls, "formula")) { +# e.g., controls = ~ x1 + x2 + i(region) +# Convert formula to text and drop leading "~" +controls_rhs <- paste0(" + ", gsub("^\\s*~\\s*", "", deparse(controls))) +} else if (is.character(controls)) { +# e.g., controls = c("x1","x2") +controls_rhs <- paste0(" + ", paste(controls, collapse = " + ")) +} else { +stop("`controls` must be NULL, a character vector of column names, or a one-sided formula like ~ x1 + x2.") +} +} +# Main formula: y ~ treated*post + controls | unit + time +fml_txt <- paste0( +y, " ~ ", treated_unit, " * ", post, +controls_rhs, +" | ", unit, " + ", time +) +fml <- stats::as.formula(fml_txt) +# Weights vector (optional) +weights_vec <- if (is.null(w)) NULL else df[[w]] +# Cluster handling +cluster_fml <- NULL +if (!is.null(cluster)) { +if (inherits(cluster, "formula")) { +cluster_fml <- cluster +} else if (is.character(cluster)) { +cluster_fml <- stats::as.formula(paste0("~", cluster)) +} else { +stop("`cluster` must be NULL, a column name (character), or a formula like ~unit.") +} +} +m <- fixest::feols( +fml, +data = df, +weights = weights_vec, +cluster = cluster_fml +) +# Extract interaction coefficient +cn <- names(stats::coef(m)) +target <- paste0(treated_unit, ":", post) +if (!target %in% cn) { +target2 <- paste0(post, ":", treated_unit) +if (target2 %in% cn) { +target <- target2 +} else { +stop("Could not find interaction coefficient. Coef names: ", paste(cn, collapse = ", ")) +} +} +tau_hat <- unname(stats::coef(m)[[target]]) +if (return_model) list(tau_hat = tau_hat, model = m, formula = fml) else tau_hat +} +run_sdid_long <- function(df, +treat_start_time, +controls = NULL, # NULL, character vector, or one-sided formula +unit = "unit", +time = "time", +y = "y", +treated_unit = "treated_unit", +use_twfe_residualization = TRUE, # controls + unit/time FE +return_setup = FALSE) { +# Defensive checks +if (!requireNamespace("synthdid", quietly = TRUE)) { +stop("Package `synthdid` is required.") +} +df2 <- df +# Coerce and standardize time +df2 <- df2 %>% +dplyr::mutate( +.unit = as.factor(.data[[unit]]), +.time_raw = .data[[time]], +.time = if (inherits(.data[[time]], "Date")) as.integer(.data[[time]]) +else suppressWarnings(as.numeric(as.character(.data[[time]]))) +) +if (anyNA(df2$.time)) stop("Time coercion produced NA values. Ensure `time` is numeric/character-numeric or Date.") +# Treatment indicator +df2 <- df2 %>% +dplyr::mutate(.W = as.integer((.data[[treated_unit]] == 1) & (.time >= treat_start_time))) +# Optional covariate adjustment: residualize y on controls (and optionally TWFE) +if (!is.null(controls)) { +if (!requireNamespace("fixest", quietly = TRUE)) { +stop("To use `controls`, please install `fixest` (install.packages('fixest')).") +} +# Build RHS for controls +controls_rhs <- "" +if (inherits(controls, "formula")) { +controls_rhs <- gsub("^\\s*~\\s*", "", deparse(controls)) +} else if (is.character(controls)) { +controls_rhs <- paste(controls, collapse = " + ") +} else { +stop("`controls` must be NULL, a character vector of column names, or a one-sided formula like ~ x1 + x2.") +} +# Residualization regression +# Default: y ~ controls | unit + time (TWFE residualization) +if (use_twfe_residualization) { +fml_txt <- paste0(y, " ~ ", controls_rhs, " | .unit + .time") +} else { +# Alternative: y ~ controls (no FE) — usually not recommended for panel SDID +fml_txt <- paste0(y, " ~ ", controls_rhs) +} +# Run regression +m_resid <- fixest::feols(stats::as.formula(fml_txt), data = df2) +# Drop unmatched observations +df2 <- df2[fixest::obs(m_resid), , drop = FALSE] +# Replace outcome with residualized outcome +df2[[y]] <- as.numeric(stats::resid(m_resid)) +} +# Prepare panel for synthdid +dfp <- df2 %>% +dplyr::arrange(.unit, .time) %>% +dplyr::select(.unit, .time, !!y, .W) %>% +dplyr::rename(y = !!y) +dfp <- as.data.frame(dfp) +# Balance check (panel.matrices requires balanced panel) +# This check is cheap and gives a clearer error than panel.matrices. +bad <- dfp %>% +dplyr::count(.unit, .time) %>% +dplyr::filter(n != 1) +if (nrow(bad) > 0) { +stop("Input must be a balanced panel with unique (.unit, .time) rows. Found duplicates/missingness.") +} +setup <- synthdid::panel.matrices(dfp) +est <- synthdid::synthdid_estimate(setup$Y, setup$N0, setup$T0) +if (return_setup) { +return(list(estimate = est, setup = setup)) +} else { +return(est) +} +} +make_weighted_treated_unit <- function(df, treat_start_time, weight_col = "pop") { +baseline_time <- treat_start_time - 1 +# compute synthetic id BEFORE summarise +max_id <- max(as.integer(df$unit), na.rm = TRUE) +synth_id <- max_id + 1L +w0 <- df %>% +filter(time == baseline_time) %>% +select(unit, !!rlang::sym(weight_col)) %>% +rename(w0 = !!rlang::sym(weight_col)) +df2 <- df %>% left_join(w0, by = "unit") +treated <- df2 %>% filter(treated_unit == 1) +controls <- df2 %>% filter(treated_unit == 0) +treated_super <- treated %>% +dplyr::group_by(time) %>% +dplyr::summarise( +y = sum(y * w0, na.rm = TRUE) / sum(w0, na.rm = TRUE), +treated_unit = 1L, +post = as.integer(dplyr::first(time) >= treat_start_time), +.groups = "drop" +) %>% +dplyr::mutate(unit = synth_id) +bind_rows(controls, treated_super) +} +run_sdid_by_treated_and_average <- function(df, treat_start_time, weight_col = "pop") { +baseline_time <- treat_start_time - 1 +treated_ids <- df %>% filter(treated_unit == 1) %>% distinct(unit) %>% pull(unit) +controls_df <- df %>% filter(treated_unit == 0) +weights <- df %>% +filter(treated_unit == 1, time == baseline_time) %>% +group_by(unit) %>% +summarise(w0 = mean(.data[[weight_col]], na.rm = TRUE), .groups = "drop") +est <- map_dfr(treated_ids, function(id) { +dfi <- bind_rows(controls_df, df %>% filter(unit == id)) +tau <- run_sdid_long(dfi, treat_start_time) +tibble(unit = id, tau = as.numeric(tau)) +}) %>% +left_join(weights, by = "unit") +tau_wavg <- sum(est$tau * est$w0, na.rm = TRUE) / sum(est$w0, na.rm = TRUE) +list(unit_level = est, tau_weighted_average = tau_wavg) +} +## Data (created previously) +data_path <- normalizePath(file.path("..", "data", "analysis_data.csv"), mustWork = FALSE) +## Check to make sure data exist +if (!is.na(data_path)) { +message("Loading data: ", data_path) +panel <- read_csv(data_path, show_col_types = FALSE) +## Define control variables +control_vars <- c("pct_white", "pop_20_64", "pct_55_64", "log_35_44", "log_f_20_64", "unemp") +## Basic version for now, with controls to come +panel <- panel %>% dplyr::select(time = year, +unit = fips, +y = crude_rate, +treated_unit = treated, +pop = population, +control_vars ) +required <- c("unit", "time", "y", "treated_unit") +if (!all(required %in% names(panel))) { +stop("Replication data found, but missing required columns: unit, time, y, treated_unit (and optional pop).") +} +# You should set this explicitly for the application: +T0_emp <- min(panel$time[panel$treated_unit == 1], na.rm = TRUE) +panel <- panel %>% mutate(post = as.integer(time >= T0_emp)) +## Estimate models (unweighted) (SDID) +tau_emp_sdid <- run_sdid_long(panel, T0_emp) +tau_emp_sdid_controls <- run_sdid_long(panel, T0_emp, controls = control_vars) +## Estimated Models (unweighted) (DiD) +tau_emp_did_unw <- did_twfe(df) +tau_emp_did_unw_controls <- tau <- did_twfe(df, controls = control_vars) +out <- tibble( +method = c("SDID (UnW)","SDID (UnW) (Controls)", "DID (UnW)","DID (UnW) (Controls)"), +tau = c(as.numeric(tau_emp_sdid),as.numeric(tau_emp_sdid_controls), as.numeric(tau_emp_did_unw),as.numeric(tau_emp_did_unw_controls)) +) +if ("pop" %in% names(panel)) { +df_super <- make_weighted_treated_unit(panel, T0_emp, weight_col = "pop") +tau_emp_sdid_super <- run_sdid_long(df_super, T0_emp) +sol2 <- run_sdid_by_treated_and_average(panel, T0_emp, weight_col = "pop") +tau_emp_did_w <- did_2x2(panel, w = "pop") +out <- bind_rows(out, tibble( +method = c("SDID weighted treated avg (Sol. 1)", "Weighted avg of unit SDIDs (Sol. 2)", "DID (weighted)"), +tau = c(as.numeric(tau_emp_sdid_super), as.numeric(sol2$tau_weighted_average), as.numeric(tau_emp_did_w)) +)) +} +knitr::kable(out, digits = 3, caption = "Replication: SDID/DID estimates (placeholder)") +} else { +cat("No replication data found. Put data/analysis_panel.csv or data/analysis_panel.rds in the repo to enable this section.") +} +tau_emp_did_unw <- did_twfe(panel) +## Data (created previously) +data_path <- normalizePath(file.path("..", "data", "analysis_data.csv"), mustWork = FALSE) +## Check to make sure data exist +if (!is.na(data_path)) { +message("Loading data: ", data_path) +panel <- read_csv(data_path, show_col_types = FALSE) +## Define control variables +control_vars <- c("pct_white", "pop_20_64", "pct_55_64", "log_35_44", "log_f_20_64", "unemp") +## Basic version for now, with controls to come +panel <- panel %>% dplyr::select(time = year, +unit = fips, +y = crude_rate, +treated_unit = treated, +pop = population, +control_vars ) +required <- c("unit", "time", "y", "treated_unit") +if (!all(required %in% names(panel))) { +stop("Replication data found, but missing required columns: unit, time, y, treated_unit (and optional pop).") +} +# You should set this explicitly for the application: +T0_emp <- min(panel$time[panel$treated_unit == 1], na.rm = TRUE) +panel <- panel %>% mutate(post = as.integer(time >= T0_emp)) +## Estimate models (unweighted) (SDID) +tau_emp_sdid <- run_sdid_long(panel, T0_emp) +tau_emp_sdid_controls <- run_sdid_long(panel, T0_emp, controls = control_vars) +## Estimated Models (unweighted) (DiD) +tau_emp_did_unw <- did_twfe(panel) +tau_emp_did_unw_controls <- did_twfe(panel, controls = control_vars) +out <- tibble( +method = c("SDID (UnW)","SDID (UnW) (Controls)", "DID (UnW)","DID (UnW) (Controls)"), +tau = c(as.numeric(tau_emp_sdid),as.numeric(tau_emp_sdid_controls), as.numeric(tau_emp_did_unw),as.numeric(tau_emp_did_unw_controls)) +) +if ("pop" %in% names(panel)) { +df_super <- make_weighted_treated_unit(panel, T0_emp, weight_col = "pop") +tau_emp_sdid_super <- run_sdid_long(df_super, T0_emp) +sol2 <- run_sdid_by_treated_and_average(panel, T0_emp, weight_col = "pop") +tau_emp_did_w <- did_2x2(panel, w = "pop") +out <- bind_rows(out, tibble( +method = c("SDID weighted treated avg (Sol. 1)", "Weighted avg of unit SDIDs (Sol. 2)", "DID (weighted)"), +tau = c(as.numeric(tau_emp_sdid_super), as.numeric(sol2$tau_weighted_average), as.numeric(tau_emp_did_w)) +)) +} +knitr::kable(out, digits = 3, caption = "Replication: SDID/DID estimates (placeholder)") +} else { +cat("No replication data found. Put data/analysis_panel.csv or data/analysis_panel.rds in the repo to enable this section.") +} +names(panel) +controls_rhs <- "" +fml_txt <- paste0( +y, " ~ ", treated_unit, " * ", post, +controls_rhs, +" | ", unit, " + ", time +) +summary(panel) +table(panel$treated_unit, useNA = "ifany") +table(panel$post, useNA = "ifany") +with(panel, table(treated_unit, post, useNA = "ifany")) +panel <- read_csv(data_path, show_col_types = FALSE) +## Define control variables +control_vars <- c("pct_white", "pop_20_64", "pct_55_64", "log_35_44", "log_f_20_64", "unemp") +## Basic version for now, with controls to come +panel <- panel %>% dplyr::select(time = year, +unit = fips, +y = crude_rate, +treated_unit = expansion, +pop = population, +control_vars ) +required <- c("unit", "time", "y", "treated_unit") +if (!all(required %in% names(panel))) { +stop("Replication data found, but missing required columns: unit, time, y, treated_unit (and optional pop).") +} +# You should set this explicitly for the application: +T0_emp <- min(panel$time[panel$treated_unit == 1], na.rm = TRUE) +panel <- panel %>% mutate(post = as.integer(time >= T0_emp)) +## Estimate models (unweighted) (SDID) +tau_emp_sdid <- run_sdid_long(panel, T0_emp) +panel <- read_csv(data_path, show_col_types = FALSE) +## Define control variables +control_vars <- c("pct_white", "pop_20_64", "pct_55_64", "log_35_44", "log_f_20_64", "unemp") +## Basic version for now, with controls to come +panel <- panel %>% dplyr::select(time = year, +unit = fips, +y = crude_rate, +treated_unit = expansion, +pop = population, +control_vars ) +T0_emp +panel <- read_csv(data_path, show_col_types = FALSE) +## Define control variables +control_vars <- c("pct_white", "pop_20_64", "pct_55_64", "log_35_44", "log_f_20_64", "unemp") +## Basic version for now, with controls to come +panel <- panel %>% dplyr::select(time = year, +unit = fips, +y = crude_rate, +treated_unit = expansion, +pop = population, +control_vars ) +required <- c("unit", "time", "y", "treated_unit") +if (!all(required %in% names(panel))) { +stop("Replication data found, but missing required columns: unit, time, y, treated_unit (and optional pop).") +} +# You should set this explicitly for the application: +T0_emp <- 2014 +panel <- panel %>% mutate(post = as.integer(time >= T0_emp)) +## Estimate models (unweighted) (SDID) +tau_emp_sdid <- run_sdid_long(panel, T0_emp) +tau_emp_sdid_controls <- run_sdid_long(panel, T0_emp, controls = control_vars) +## Estimated Models (unweighted) (DiD) +tau_emp_did_unw <- did_twfe(panel) +tau_emp_did_unw_controls <- did_twfe(panel, controls = control_vars) +out <- tibble( +method = c("SDID (UnW)","SDID (UnW) (Controls)", "DID (UnW)","DID (UnW) (Controls)"), +tau = c(as.numeric(tau_emp_sdid),as.numeric(tau_emp_sdid_controls), as.numeric(tau_emp_did_unw),as.numeric(tau_emp_did_unw_controls)) +) +View(out) +df_super <- make_weighted_treated_unit(panel, T0_emp, weight_col = "pop") +tau_emp_sdid_super <- run_sdid_long(df_super, T0_emp) +sol2 <- run_sdid_by_treated_and_average(panel, T0_emp, weight_col = "pop") +library(qpdf) +install.packages('qpdf') +library(qpdf) +ls +qpdf::pdf_combine( +input = c("Return_of_Excess_Contributions_ROE_EricaRyan_01262026.pdf", "W2Amazon.pdf", "W2IpsoFacto.pdf"), +output = "ROE_Eryan_012626.pdf" +) +library(qpdf) +qpdf::pdf_combine( +input = c("Return_of_Excess_Contributions_ROE_EricaRyan_01262026.pdf", "W2Amazon.pdf", "W2IpsoFacto.pdf"), +output = "ROE_Eryan_012626.pdf" +) +setwd('New Folder/') +qpdf::pdf_combine( +input = c("Return_of_Excess_Contributions_ROE_EricaRyan_01262026.pdf", "W2Amazon.pdf", "W2IpsoFacto.pdf"), +output = "ROE_Eryan_012626.pdf" +) +setwd("Q:/Documents/Information/Death and Taxes/2025 Taxes/Erica") +library(qpdf) +qpdf::pdf_combine( +input = c("Return_of_Excess_Contributions_ROE_EricaRyan_01262026.pdf", "W2Amzn.pdf", "W2Ipso.pdf"), +output = "ERyan_ROE.pdf" +) +qpdf::pdf_combine( +input = c("Return_of_Excess_Contributions_ROE_EricaRyan_01262026.pdf", "W2Amzn.pdf", "W2Ipso.pdf"), +output = "ERyan_ROE.pdf" +) diff --git a/.gitignore b/.gitignore index ad9531c..83851d3 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,4 @@ !old_files/*.pdf .Rproj.user docs +.Rhistorytmpclaude-* diff --git a/R/.Rhistory b/R/.Rhistory new file mode 100644 index 0000000..e69de29 diff --git a/R/bv_2020_replication.R b/R/bv_2020_replication.R new file mode 100644 index 0000000..d9d9b68 --- /dev/null +++ b/R/bv_2020_replication.R @@ -0,0 +1,706 @@ +## REPLICATION AND EXTENSION OF BORGSCHULTE AND VOGLER (2020) +## EMPRICAL EXAMPLE OF Role of weighted SDID + +## Preliminaries + +##devtools::install_github("synth-inference/synthdid") + +## Set up libraries +library(tidyverse) +library(boot) +library(data.table) +library(synthdid) +library(modelsummary) +library(fixest) + +## Set up directories - change to local directory +directory <- "/Users/johniselin/Library/CloudStorage/Dropbox/sdid_weights" +results <- file.path(directory,"results") +data <- file.path(directory,"data") + +setwd(directory) + +## Set Seed +set.seed(5) + +## ACA Determination + +## ACA Expansion states (First half of 2014) +aca <- c(4, 5, 6, 8, 9, 10, 11, 15, 17, 19, 21, 24, 25, 26, 27, 32, 34, + 35, 36, 38, 39, 41, 44, 50, 53, 54) + +## DROP AK IN, LA, MT, NH, and PA for later expansions (post first half of 2014) +drop <- c(2, 18, 22, 30, 33, 42) + +## IF 2017 - 2019 period included, drop ME, VA +drop_2019 <- c(23, 51) + +## LOAD DATA + +## Mortality data via https://wonder.cdc.gov/ucd-icd10.html + +df_mortality <- read.csv(file = file.path(data,"mortality/cdc_wonder_data.csv")) %>% + ## FLAG SUPPRESSED VALUES + mutate(death_supp = ifelse(Deaths == "Suppressed", 1,0), + death_miss = ifelse(Deaths == "Missing", 1, 0), + pop_miss = ifelse(Population == "Missing", 1, 0)) %>% + mutate(Deaths = ifelse(Deaths == "Suppressed", 0, Deaths), + Deaths = ifelse(Deaths == "Missing", 0,Deaths), + Population = ifelse(Population == "Missing", 0, Population) ) %>% + mutate(Deaths = as.numeric(Deaths), Population = as.numeric(Population)) %>% + mutate(crude_rate = (Deaths / Population) * 1000 ) %>% + select(-"Crude.Rate") %>% + rename(state_fips = State.Code, county_fips = County.Code, state_name = State) + +## Rename all to lower case +names(df_mortality) <- tolower(names(df_mortality)) + +## Population data via https://seer.cancer.gov/popdata/download.html +## 1990-2020, 4 Expanded Races by Origin, All US +df_pop <- read_fwf(file = file.path(data,"covariates/us.1990_2020.19ages.adjusted.txt"), + fwf_widths( c(4, 2, 2, 3, 2, 1, 1, 1, 2, 8), + c("year", "state_abb", "state_fips", "county_fips", + "registry", "race", "hispanic", "sex", "age", "pop"))) %>% + filter(year >= 2007) %>% filter(year <= 2019) %>% + mutate(age = as.numeric(age), pop = as.numeric(pop)) %>% + select(-registry, -hispanic) %>% + group_by(year, state_abb, state_fips, county_fips, race, sex, age) %>% + summarize(pop = sum(pop)) %>% group_by() %>% + mutate(county_fips = as.numeric(paste0(state_fips, county_fips))) + +## Create relevant population samples + +## Percent of population that is white +df_pop_race <- df_pop %>% + select(year, state_abb, state_fips, county_fips, race, pop) %>% + group_by(year, state_abb, state_fips, county_fips, race) %>% + summarize(pop = sum(pop)) %>% group_by() %>% + pivot_wider(names_from = race, values_from = pop, values_fill = 0) %>% + rename(white = '1', black = '2', aian = '3', asian = '4') %>% + replace_na(list(white = 0, black = 0, aian = 0, asian = 0)) %>% + mutate(pct_white = white / (white + black + aian + asian)) %>% + select(year, state_abb, state_fips, county_fips, pct_white) + +## By-age statistics +df_pop_age <- df_pop %>% + select(year, state_abb, state_fips, county_fips, age, pop) %>% + group_by(year, state_abb, state_fips, county_fips, age) %>% + summarize(pop = sum(pop)) %>% group_by() %>% + pivot_wider(names_from = age, values_from = pop, values_fill = 0) %>% + rename(pop_00 = '0', pop_01_04 = '1', pop_05_09 = '2', pop_10_14 = '3', + pop_15_19 = '4', pop_20_24 = '5', pop_25_29 = '6', pop_30_34 = '7', + pop_35_39 = '8', pop_40_44 = '9', pop_45_49 = '10', pop_50_54 = '11', + pop_55_59 = '12', pop_60_64 = '13', pop_65_69 = '14', pop_70_74 = '15', + pop_75_79 = '16', pop_80_84 = '17', pop_85 = '18' ) %>% + mutate(pop_total = rowSums(across(pop_00:pop_85)), + pop_20_64 = rowSums(across(pop_20_24:pop_20_24))) %>% + mutate(pct_55_64 = (pop_55_59 + pop_60_64)/ pop_total, + log_20_64 = log(rowSums(across(pop_20_24:pop_20_24))), + log_35_44 = log(rowSums(across(pop_35_39:pop_40_44)))) %>% + select(year, state_abb, state_fips, county_fips, pct_55_64, log_20_64, log_35_44, pop_20_64, pop_total) + +## By-age and gender statistics +df_pop_f_age <- df_pop %>% + filter(sex == 2) %>% + select(year, state_abb, state_fips, county_fips, age, pop) %>% + group_by(year, state_abb, state_fips, county_fips, age) %>% + summarize(pop = sum(pop)) %>% group_by() %>% + pivot_wider(names_from = age, values_from = pop, values_fill = 0) %>% + rename(pop_00 = '0', pop_01_04 = '1', pop_05_09 = '2', pop_10_14 = '3', + pop_15_19 = '4', pop_20_24 = '5', pop_25_29 = '6', pop_30_34 = '7', + pop_35_39 = '8', pop_40_44 = '9', pop_45_49 = '10', pop_50_54 = '11', + pop_55_59 = '12', pop_60_64 = '13', pop_65_69 = '14', pop_70_74 = '15', + pop_75_79 = '16', pop_80_84 = '17', pop_85 = '18' ) %>% + mutate(pop_total = rowSums(across(pop_00:pop_85))) %>% + mutate(log_f_20_64 = log(rowSums(across(pop_20_24:pop_60_64)))) %>% + select(year, state_abb, state_fips, county_fips, log_f_20_64) + +## Merge together population covariates +df_pop_cov <- df_pop_race %>% + full_join(df_pop_age, + by = join_by(year, state_abb, state_fips, county_fips)) %>% + left_join(df_pop_f_age, + by = join_by(year, state_abb, state_fips, county_fips)) %>% + mutate(state_fips = as.numeric(state_fips)) + +## Unemployment data via https://download.bls.gov/pub/time.series/la/ +## la.data.64.County +df_unempl <- read_tsv(file = file.path(data,"covariates/la.data.64.County")) %>% + filter(year >= 2007, year <= 2019) %>% + select(-footnote_codes) %>% + mutate(series = as.numeric(substr(series_id, 19, 20)), + state_fips = substr(series_id, 6, 7), + county_fips = substr(series_id, 8, 10)) %>% + filter(series == 3) %>% + group_by(state_fips, county_fips, series_id, year) %>% + summarise(unemp = mean(value)) %>% + group_by() %>% + select(year, state_fips, county_fips, unemp) %>% + mutate(county_fips = as.numeric(paste0(state_fips, county_fips)), + state_fips = as.numeric(state_fips)) + +## Combine data +df <- df_pop_cov %>% + left_join(df_unempl, join_by(year, state_fips, county_fips)) %>% + left_join(df_mortality, join_by(year, state_fips, county_fips)) + +## Export version of data +write.csv(df,file = file.path(data,"analysis_data.csv")) + + + +## Remove intermediate datasets +rm(df_pop, df_pop_age, df_pop_cov, df_pop_f_age, df_pop_race, df_unempl, df_mortality) + +## Create initial analysis dataset for replication +df_09_17 <- df %>% + mutate(aca_expanders = ifelse(state_fips %in% aca, 1, 0)) %>% ## Assign treatment + mutate(treated = ifelse(aca_expanders == 1 & year >= 2014, 1, 0)) %>% ## Assign treatment + filter(!(state_fips %in% drop)) %>% ## Drop states with later expansions + filter(year >= 2009) %>% filter(year <= 2017) + +## Set of missing-data-related sample restrictions +df_09_17 <- df_09_17 %>% + filter(!is.na(deaths)) %>% ## Missing mortality data (9, one VA county 51917) + filter(!is.na(unemp)) ## Missing Unemployment (227) + +## Grab sample +sample_09_17 <- df_09_17 %>% + group_by(state_abb, county_fips, county ) %>% + summarise(n =n()) %>% + group_by() + +## Merge back on to drop unbalanced (None dropped) +df_09_17 <- df_09_17 %>% + left_join(sample_09_17, join_by(state_abb, county_fips, county )) %>% + filter(n == 9) %>% + select(-n) + +#### FUNCTIONS + + + +## DEFINE BOOTSTRAP FUNCTION FOR WEIGHTED AVERAGE VERSION +boot_model1 <- function(data, indices ){ + + ## Set up data (in wide format so that rows = states) + data <- data[indices,] + + ## Reshape long (state X period) + reshape_data <- data %>% + pivot_longer(cols = !state, + names_to = c(".value", "period"), + names_pattern = "(.*)_(.*)") %>% + data.frame(reshape_data) %>% + mutate(period = as.numeric(period)) + + ## Check that there are treated and control units + temp3 <- reshape_data %>% group_by(treated) %>% summarize(count = n()) + t <- as.numeric(temp3[1,2]) + c <- as.numeric(temp3[2,2]) + + if(t == 0 | c == 0 ) { + print("Skipped") + } + else { + + ## Take the weighted average of the treated units + avg_data <- reshape_data %>% + mutate(weight = !! sym(weight_var)) %>% + mutate(collapse_var = ifelse(treated == 1, 1, state)) %>% + group_by(collapse_var, period) %>% + summarise(y = weighted.mean(y,weight), + did = mean(did), + treated = mean(treated), + .groups = "drop_last") %>% + ungroup() %>% + rename(state = collapse_var) + + ## Basic set-up + setup <- avg_data %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## RUN SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + sum_est <- summary(est) + ate <- sum_est$estimate + return(ate) + + } + +} + + +## DEFINE BOOTSTRAP FUNCTION FOR WEIGHTED AVERAGE OF INDIVIDUAL SDID VERSION +boot_model2 <- function(data, indices ){ + + ## Set up data (in wide format so that rows = states) + data <- data[indices,] + + ## Reshape long (state X period) + reshape_data <- data %>% + pivot_longer(cols = !state, + names_to = c(".value", "period"), + names_pattern = "(.*)_(.*)") %>% + data.frame(reshape_data) %>% + mutate(period = as.numeric(period)) + + ## Check that there are treated and control units + temp3 <- reshape_data %>% group_by(treated) %>% summarize(count = n()) + t <- as.numeric(temp3[1,2]) + c <- as.numeric(temp3[2,2]) + + if(t == 0 | c == 0 ) { + print("Skipped") + } + else { + + ## Construct a dataset of treated units and their weights + treated <- data %>% + mutate(weight = !! sym(weight_var)) %>% + filter(treated == 1 & did == 0) %>% + select(state, period, weight) %>% + group_by(state) %>% + summarise(weight = mean(weight)) %>% + ungroup() %>% + mutate(ate = NA) + + ## Construct a list of treated states + treated_list <- treated %>% select(state) %>% unique() %>% as.list() + treated_list <- treated_list[[1]] + + ## Loop over each treated state + for (s in treated_list) { + + ## Basic set-up, keeping only one treated state + control states + setup <- data %>% + filter(treated == 0 | state == s) %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## Run SDID + tmp_est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + tmp_sum_est <- summary(tmp_est) + tmp_ate <- tmp_sum_est$estimate + + ## Add ATE to dataset + treated <- treated %>% mutate(ate = if_else(state == s, tmp_ate, ate)) + + } + + ## Get weighted average of ATE + ate <- treated %>% + summarise(ate = weighted.mean(ate,weight)) %>% + ungroup() %>% + as.numeric() + + return(ate) + + } + +} + + +## DEFINE SDID FUNCTION +f_sdid <- function(data, + var_state, + var_period, + var_y, + var_did, + weighted = 0, + weight_var = FALSE, + covar_list = FALSE, # MAKE EMPTY LIST + calc_se = 0, # 0 = no SEs, 1 = calculate SEs + n_boot = 100 +) { + + + ## COVARIATES + if (covar_list != FALSE) { + + } + else { + + # print("No covariates") + + } + + ## OPTION 1: No weights + if (weighted == 0) { + + ## Display weights + print("Run without weights") + + ## Basic set-up + setup <- data %>% + mutate(state = !! sym(var_state), + period = !! sym(var_period), + y = !! sym(var_y), + did = !! sym(var_did)) %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## Run SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + sum_est <- summary(est) + + ## Store ATE + ate <- sum_est$estimate + + ## Store SE + if (calc_se == 1) { + se <- sum_est$se + } + else { + se = NA + } + + ## Store list for export + val <- c(ate, se) + } + + ## OPTION 2: Run using weights, using a weighted average treated unit + if (weighted == 1) { + + ## Check that weighting variable was specified + if (weight_var == FALSE) { + print("No weighting variable specified") + break + } + else { + print(paste("Weighting variable ", weight_var)) + } + + ## Take the weighted average of the treated units + avg_data <- data %>% + mutate(collapse_var = ifelse(treated == 1, 1, state)) %>% + mutate(weight = !! sym(weight_var), + state = !! sym(var_state), + period = !! sym(var_period), + y = !! sym(var_y), + did = !! sym(var_did)) %>% + select(collapse_var, period, weight, state, period, did, treated) %>% + group_by(collapse_var, period) %>% + summarise(y = weighted.mean(y, weight), + did = mean(did), + treated = mean(treated), + .groups = "keep") %>% + ungroup() %>% + rename(state = collapse_var) + + ## Basic set-up + setup <- avg_data %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## RUN SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + sum_est <- summary(est) + + ## Store ATE + ate <- sum_est$estimate + + ## Store SE + if (calc_se == 1) { + + ## Reshape data so that the boot function index option works + boot_data <- data %>% + pivot_wider(id_cols = state, names_from = period, values_from = c(y, pop, did, treated)) + + ## Run boostrap command + boot_est <- boot(boot_data, boot_model1, R = n_boot, stype = "i") + + ## Store SE + se <- sd(boot_est$t) + + } + else { + se = NA + } + + ## Store list for export + val <- c(ate, se) + } + + ## OPTION 3: Run using weights, constructing a separate SDID model for each treated unit + if (weighted == 2) { + + ## Check that weighting variable was specified + if (weight_var == FALSE) { + print("No weighting variable specified") + break + } + else { + print(paste("Weighting variable ", weight_var)) + } + + ## Construct a dataset of treated units and their weights + treated <- data %>% + mutate(weight = !! sym(weight_var), + state = !! sym(var_state), + period = !! sym(var_period), + y = !! sym(var_y), + did = !! sym(var_did)) %>% + select(collapse_var, period, weight, state, period, did, treated) %>% + filter(treated == 1 & did == 0) %>% + select(state, period, weight) %>% + group_by(state) %>% + summarise(weight = mean(weight)) %>% + ungroup() %>% + mutate(ate = NA) + + ## Construct a list of treated states + treated_list <- treated %>% select(state) %>% unique() %>% as.list() + treated_list <- treated_list[[1]] + + ## Loop over each treated state + for (s in treated_list) { + + ## Basic set-up, keeping only one treated state + control states + setup <- data %>% + filter(treated == 0 | state == s) %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## Run SDID + tmp_est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + tmp_sum_est <- summary(tmp_est) + tmp_ate <- tmp_sum_est$estimate + + ## Add ATE to dataset + treated <- treated %>% mutate(ate = if_else(state == s, tmp_ate, ate)) + + } + + ## Get weighted average of ATE + ate <- treated %>% + summarise(ate = weighted.mean(ate,weight)) %>% + as.numeric() + + + ## Store SE + if (calc_se == 1) { + + ## Reshape data so that the boot function index option works + boot_data <- data %>% + mutate(weight = !! sym(weight_var)) %>% + pivot_wider(id_cols = state, names_from = period, values_from = c(y, weight, did, treated)) + + ## Run boostrap command + boot_est <- boot(boot_data, boot_model2, R = n_boot, stype = "i") + + ## Store SE + se <- sd(boot_est$t) + + } + else { + se = NA + } + + ## Store both values + val <- c(ate, se) + + } + + ## RETURN + return(val) + +} + + +## DEFINE DID FUNCTION +run_did_function <- function(data, + weights_option = FALSE, + weights_var = NA, + controls_option = TRUE, + n = 1, + model_list_name = models){ + + ## Set up temporary data file + tmp <- data + + ## SET UP WEIGHTS + + ## IF true, let weights = weights_var + if(weights_option == TRUE) { + tmp <- tmp %>% mutate(weight = pop_20_64) + } + + ### ELSE false, let weights = 1 + if(weights_option == FALSE) { + tmp <- tmp %>% mutate(weight = 1) + } + + ## SET UP CONTROLS + if(controls_option == TRUE) { + f <- paste0("crude_rate ~ treated + pct_white + pct_55_64 + log_20_64 + log_35_44 + log_f_20_64 + unemp | county_fips + year") + } + + if(controls_option == FALSE) { + f <- paste0("crude_rate ~ treated | county_fips + year") + } + + ## SET UP FORMULA + f <- as.formula(f) + + ## RUN MODEL + m <- feols(f, + se = "cluster", + cluster = "state_fips", + weights = ~ weight, + data = tmp) + + return(m) + +} + +### PRODUCE ANALYSIS DATASETS +df_sdid <- df_09_17 %>% + select(county_fips, year, crude_rate, treated) + + +### RUN MODELS + +tmp <- f_sdid(df_sdid, "county_fips", "year", "crude_rate", "treated", weighted = 0) + +## Create dataset with required variables +df_sdid_data <- df_09_17 %>% + select(county_fips, year, crude_rate, treated) + +## Convert to data frame +df_sdid_data <- as.data.frame(df_sdid_data) + +## Run panel matrix setup command +setup <- panel.matrices(df_sdid_data) + +## Get matrix of covariates +tmp <- df_09_17 %>% + select(county_fips, year, pct_white, pct_55_64, log_20_64, log_35_44, log_f_20_64, unemp) %>% + array(dim = dim = c(dim(setup$Y))) + +X <- array(data = tmp, dim = c(dim(setup$Y))) + +est <- synthdid_estimate(setup$Y, setup$N0, setup$T0, X) +plot(est) + + +## CREAT MODEL LIST +models <- list() + +models[[paste("nw", "nc", sep = ".")]] <- + run_did_function(df_09_17, + weights_option = FALSE, + controls_option = FALSE, + model_list_name = models) + +models[[paste("w", "nc", sep = ".")]] <- + run_did_function(df_09_17, + weights_option = TRUE, + weights_var = pop_20_64, + controls_option = FALSE, + model_list_name = models) + +models[[paste("nw", "c", sep = ".")]] <- + run_did_function(df_09_17, + var_state = county_fips, + var_period = year, + var_y = crude_rate, + var_did = treated, + weights_option = FALSE, + controls_option = TRUE, + model_list_name = models) + +models[[paste("w", "c", sep = ".")]] <- + run_did_function(df_09_17, + weights_option = TRUE, + weights_var = pop_20_64, + controls_option = TRUE, + model_list_name = models) + + +## TEST NAMING +v = c("ATE") +names(v) = c("treatedTRUE") + +modelsummary(models, output = "gt", + stars = c('*' = .1, '**' = .05, '***' = .01), + coef_map = v, + coef_rename = c('nw.nc' = 'Test')) %>% + # column labels + tab_spanner(label = 'Without Controls', columns = 2:3) %>% + tab_spanner(label = 'With Controls', columns = 4:5) + + +msummary(models, stars = c('*' = .1, '**' = .05, '***' = .01), + coef_map = v, + shape = "rbind") + model2), "Panel B" = list(model3, model4))) + +names(v) + + + + + +msummary(did_w_nc, stars = c('*' = .1, '**' = .05, '***' = .01)) + +# feols clusters by the first +# fixed effect by default, no adjustment necessary +did_nw_nc <- feols(crude_rate ~ treated | county_fips + year, + se = "cluster", cluster = "state_fips", + data = df_09_17) + +models[["No weights, no controls"]] <- did_nw_nc + + + + +# Interact quarter with being in the treated group using +# the fixest i() function, which also lets us specify +# a reference period (using the numeric version of Quarter) +clfe <- feols(crude_rate ~ i(year, aca_expanders, ref = 2013) | county_fips + year, + se = "cluster", cluster = "state_fips", + weights = ~ pop_20_64, + data = df_09_17) + +# And use coefplot() for a graph of effects +coefplot(clfe) + +clfe <- feols(crude_rate ~ i(year, aca_expanders, ref = 2013) | county_fips + year, + se = "cluster", cluster = "state_fips", + data = df_09_17) + +# And use coefplot() for a graph of effects +coefplot(clfe) + diff --git a/R/county_dataset_creation.R b/R/county_dataset_creation.R new file mode 100644 index 0000000..2ccda97 --- /dev/null +++ b/R/county_dataset_creation.R @@ -0,0 +1,252 @@ +# ============================================================================= +# Author: John Iselin and Erica Ryan +# Date: November 24th, 2025 +# File: dataset_construction +# +# Project: Dataset Construction for Borgschulte and Vogler (2020) replication +# Construct County-Year panel from 2009 through 2017. +# The original paper used confidential mortality data, which we do not +# have access to. Rather, we use public data via CDC wonder. +# ============================================================================= + +## CLEAR ALL +rm(list = ls()) +gc() + + +# --- Libraries --- +library(here) # project-root relative paths +library(tidyverse) +library(data.table) +library(readr) # data import +library(stringr) # string helpers + +# --- Project Metadata --- +project_name <- "synth_weights" +date_run <- format(Sys.Date(), "%Y-%m-%d") + +# --- File Paths (relative to Rproj root) --- +dir_data <- here("data") +dir_data_raw <- "/Users/johniselin/Library/CloudStorage/Dropbox/sdid_weights/data/" + +# --- Random Seed for Reproducibility --- +set.seed(56403) + +# --- Parameters --- +start_year <- 2009 +end_year <- 2017 + +## ACA Expansion states (First half of 2014) +aca <- c(4, 5, 6, 8, 9, 10, 11, 15, 17, 19, 21, 24, 25, 26, 27, 32, 34, + 35, 36, 38, 39, 41, 44, 50, 53, 54) + +## DROP AK IN, LA, MT, NH, and PA for later expansions (post first half of 2014) +drop <- c(2, 18, 22, 30, 33, 42) + +## Mortality Data +## Imported via CDC Wonder on November 24, 2025 +## All cause mortality, 20-64-year-olds by county and year + +## Load data +df_mortality <- read.csv(file = file.path(dir_data_raw,"cdc_wonder_data.csv")) + +## Rename all to lower case +names(df_mortality) <- tolower(names(df_mortality)) + +## Clean Data +df_mortality <- df_mortality %>% + + ## Drop crude rate + select(-crude.rate, -year.code, -notes) %>% + + ## Tag counties with suppression + mutate(death_supp = ifelse(deaths == "Suppressed", 1,0), + death_miss = ifelse(deaths == "Missing", 1, 0), + pop_miss = ifelse(population == "Missing", 1, 0)) %>% + + ## Replace suppressed or missing values with 0 + mutate(deaths = ifelse(deaths == "Suppressed", 0, deaths), + deaths = ifelse(deaths == "Missing", 0,deaths), + population = ifelse(population == "Missing", 0, population)) %>% + + ## Rename geographic vars + rename(fips = county.code) %>% + + ## Tag counties where population is ever 0 + group_by(fips) %>% + mutate(ever_zero_flag = as.numeric(any(population == 0))) %>% + ungroup() %>% + + ## Convert deaths and population to numeric + mutate(deaths = as.numeric(deaths), population = as.numeric(population)) %>% + + ## Create mortality rate + mutate(crude_rate = (deaths / population) * 100000 ) %>% + + ## Select data + select(year, fips, crude_rate, deaths, population) + + +## Population data via https://seer.cancer.gov/popdata/download.html +## 1990-2020, 4 Expanded Races by Origin, All US +df_pop <- read_fwf(file = file.path(dir_data_raw,"covariates/us.1990_2020.19ages.adjusted.txt"), + fwf_widths( c(4, 2, 2, 3, 2, 1, 1, 1, 2, 8), + c("year", "state_abb", "state_fips", "county_fips", + "registry", "race", "hispanic", "sex", "age", "pop"))) %>% + filter(year >= 2009) %>% filter(year <= 2017) %>% + mutate(age = as.numeric(age), pop = as.numeric(pop)) %>% + select(-registry, -hispanic) %>% + group_by(year, state_abb, state_fips, county_fips, race, sex, age) %>% + summarize(pop = sum(pop)) %>% group_by() %>% + mutate(fips = as.numeric(paste0(state_fips, county_fips))) + +## Create relevant population samples + +## Percent of population that is white +df_pop_race <- df_pop %>% + + ## Keep required variables + select(year, state_abb, state_fips, county_fips, fips, race, pop) %>% + + ## Group to get total pop by race + group_by(year, state_abb, state_fips, county_fips, race, fips) %>% + summarize(pop = sum(pop)) %>% group_by() %>% + + ## Pivot to county X year level + pivot_wider(names_from = race, values_from = pop, values_fill = 0) %>% + + ## Rename by race + rename(white = '1', black = '2', aian = '3', asian = '4') %>% + + ## Fill-in missing values + replace_na(list(white = 0, black = 0, aian = 0, asian = 0)) %>% + + ## Create percent white + mutate(pct_white = white / (white + black + aian + asian)) %>% + select(year, fips, state_abb, state_fips, county_fips, pct_white) %>% + ungroup() + +## Percent of the population that is elderly +df_pop_age <- df_pop %>% + + ## Keep required variables + select(year, state_abb, state_fips, county_fips, age, pop) %>% + + ## Group by to get totals by age + group_by(year, state_abb, state_fips, county_fips, age) %>% + summarize(pop = sum(pop)) %>% group_by() %>% + + ## Pivot to get county X year level + pivot_wider(names_from = age, values_from = pop, values_fill = 0) %>% + + ## Rename variables + rename(pop_00 = '0', pop_01_04 = '1', pop_05_09 = '2', + pop_10_14 = '3', pop_15_19 = '4', pop_20_24 = '5', + pop_25_29 = '6', pop_30_34 = '7', pop_35_39 = '8', + pop_40_44 = '9', pop_45_49 = '10', pop_50_54 = '11', + pop_55_59 = '12', pop_60_64 = '13', pop_65_69 = '14', + pop_70_74 = '15', pop_75_79 = '16', pop_80_84 = '17', + pop_85 = '18' ) %>% + + ## Create summary variables + mutate(pop_total = rowSums(across(pop_00:pop_85)), + pop_20_64 = rowSums(across(pop_20_24:pop_20_24))) %>% + mutate(pct_55_64 = (pop_55_59 + pop_60_64)/ pop_total, + log_20_64 = log(rowSums(across(pop_20_24:pop_20_24))), + log_35_44 = log(rowSums(across(pop_35_39:pop_40_44)))) %>% + select(year, state_abb, state_fips, county_fips, pct_55_64, log_20_64, log_35_44, pop_20_64, pop_total) %>% + ungroup() + +## By-age and gender statistics +df_pop_f_age <- df_pop %>% + + ## Keep if sex == 2 + filter(sex == 2) %>% + + ## Keep required variables + select(year, state_abb, state_fips, county_fips, age, pop) %>% + + ## Group by to get totals by age + group_by(year, state_abb, state_fips, county_fips, age) %>% + summarize(pop = sum(pop)) %>% group_by() %>% + + ## Pivot to get county X year level + pivot_wider(names_from = age, values_from = pop, values_fill = 0) %>% + rename(pop_00 = '0', pop_01_04 = '1', pop_05_09 = '2', + pop_10_14 = '3', pop_15_19 = '4', pop_20_24 = '5', + pop_25_29 = '6', pop_30_34 = '7', pop_35_39 = '8', + pop_40_44 = '9', pop_45_49 = '10', pop_50_54 = '11', + pop_55_59 = '12', pop_60_64 = '13', pop_65_69 = '14', + pop_70_74 = '15', pop_75_79 = '16', pop_80_84 = '17', + pop_85 = '18' ) %>% + + ## Get summary variables + mutate(pop_total = rowSums(across(pop_00:pop_85))) %>% + mutate(log_f_20_64 = log(rowSums(across(pop_20_24:pop_60_64)))) %>% + select(year, state_abb, state_fips, county_fips, log_f_20_64) %>% + ungroup() + +## Merge together population covariates +df_pop_cov <- df_pop_race %>% + full_join(df_pop_age, + by = join_by(year, state_abb, state_fips, county_fips)) %>% + left_join(df_pop_f_age, + by = join_by(year, state_abb, state_fips, county_fips)) %>% + select(year, fips, state_abb, state_fips, county_fips, pop_total, pct_white, + pop_20_64, pct_55_64, log_20_64, log_35_44, log_f_20_64) + +## Unemployment data via https://download.bls.gov/pub/time.series/la/ +## la.data.64.County +df_unempl <- read_tsv(file = file.path(dir_data_raw,"covariates/la.data.64.County")) %>% + + ## Keep year range + filter(year >= 2009, year <= 2017) %>% + select(-footnote_codes) %>% + mutate(series = as.numeric(substr(series_id, 19, 20)), + state_fips = substr(series_id, 6, 7), + county_fips = substr(series_id, 8, 10)) %>% + filter(series == 3) %>% + group_by(state_fips, county_fips, series_id, year) %>% + summarise(unemp = mean(value)) %>% + group_by() %>% + mutate(fips = as.numeric(paste0(state_fips, county_fips)), + state_fips = as.numeric(state_fips)) %>% + select(year, fips, unemp) + +## Combine data +df <- df_pop_cov %>% + + ## Merge with Unemployment + left_join(df_unempl, join_by(year, fips)) %>% + + ## Merge with Mortality + left_join(df_mortality, join_by(year, fips)) %>% + + ## Assign ACA variables + mutate(expansion = ifelse(state_fips %in% aca,1, 0), + post = ifelse(year >= 2014,1,0)) %>% + mutate(treated = post * expansion) %>% + + ## Drop if in select states with odd ACA timing + filter(!(state_fips %in% drop)) %>% + + ## Keep years with mortality data + filter(year >= 2009 & year <= 2017) %>% + + ## Drop if missing mortality data + group_by(fips) %>% + mutate(ever_missing_flag = as.numeric(any(is.na(crude_rate))), + count_year = n()) %>% + ungroup() %>% + + ## Keep fips with no missing data + filter(ever_missing_flag == 0, + count_year == 9 ) + + +## Determine state assignment + +## Export version of data +write.csv(df,file = file.path(dir_data,"analysis_data.csv")) + +rm(list = ls()) diff --git a/R/sdid_weights.R b/R/sdid_weights.R new file mode 100644 index 0000000..74617aa --- /dev/null +++ b/R/sdid_weights.R @@ -0,0 +1,624 @@ + +## OPEN ISSUES +# 1) Weighting of ATE in model where an individual ATE is calculated for each +# treated unit (right now, using average pre-treatment weight) +# 2) Covariates + + +## Preliminaries + +## Set up libraries +library(tidyverse) +library(boot) +library(data.table) +library(synthdid) +library(modelsummary) +library(fixest) +library(huxtable) + +## Set up directories - change to local directory +directory <- "/Users/johniselin/Library/CloudStorage/Dropbox/sdid_weights" +results <- file.path(directory,"results") +data <- file.path(directory,"data") + +setwd(directory) + +## Set Seed +set.seed(5) + +# Define Monte Carlo simulation parameters +N_states <- 100 # Number of states +T_periods <- 20 # Number of time periods +N_simulations <- 100 # Number of simulations +treatment_period <- 10 # Time period after which treatment is allocated +treatment_state <- 20 # Max state number for treatment (i.e. states 1 - X are treated) +treatment_size <- 2 # True treatment effect +bootstrap_size <- 50 + +### DEFINE FUNCTIONS + +## DATA GENERATION +f_data_gen <- function(N_states, + T_periods, + treatment_period, + treatment_type = 1, + treatment_size = 1, + state_gen_struc = 1, + state_fe_m = 5, + state_fe_sd = 1, + time_fe_m = 3, + time_fe_sd = 1, + pop_min = 10, + pop_max = 20, + rate = 0.02) { + + # Generate synthetic panel data + tmp_data <- expand.grid(state = 1:N_states, # Number of States + period = 1:T_periods) %>% # Number of Periods + mutate( + # Assign treatment status to states + treated = ifelse(state <= treatment_state,1,0), + # Assign treatment status to state X period + did = ifelse(state <= treatment_state & period >= treatment_period, 1, 0), + # Generate random error term + e = rnorm(n(), mean = 0, sd = 1) + ) %>% + ## Group by state and create state FE + group_by(state) %>% + mutate(state_fe = rnorm(1, mean = state_fe_m, sd = state_fe_m)) %>% + ungroup() %>% + ## Group by period and create time FE + group_by(period) %>% + mutate(period_fe = rnorm(1, mean = time_fe_m, sd = time_fe_sd)) %>% + ungroup() %>% + ## Group by state and create population + arrange(state, period) %>% + group_by(state) %>% + mutate(tmp = runif(1,0,1), + pop_initial = runif(1,pop_min, pop_max)) %>% + mutate(r = ifelse(tmp > 0.5, rate, rate * (-1))) %>% + mutate(pop = pop_initial * (1 + r)^period) %>% + ungroup() %>% + select(-tmp, -pop_initial, -r) + + + # Homogeneous treatment - same effect size across state and period + if (treatment_type == 1) { + + tmp_data <- tmp_data %>% mutate(treatment_effect = did * treatment_size) + + } + + # Heterogeneous treatment - Effect varies with state FE + else if (treatment_type == 2) { + + tmp_data <- tmp_data %>% + mutate(treatment_effect = did * treatment_size * (1 + (state_fe-state_fe_m)/state_fe_m)) + } + + # Heterogeneous treatment - Effect varies with state weight + else if (treatment_type == 3) { + + tmp_data <- tmp_data %>% + group_by(period) %>% mutate(pop_mean = mean(pop)) %>% ungroup() %>% + mutate( + treatment_effect = did * treatment_size * (1 + (pop - pop_mean)/pop_mean)) %>% + select(-pop_mean) + + } + + # Additive FE + if (state_gen_struc == 1) { + + tmp_data <- tmp_data %>% + mutate( y = state_fe + period_fe + e + treatment_effect) + + } + + # Interactive FE + else if (state_gen_struc == 2) { + + tmp_data <- tmp_data %>% + mutate( y = state_fe + period_fe + state_fe * period_fe + e + treatment_effect) + + } + + # Combine + return(tmp_data) + +} + +## DEFINE COVARIATEs SDID SETUP FUNCTION +setup_function <- function(data, + unit, + time, + treatment, + covar_list){ + + table <- data + + colnames(table)[colnames(table) == unit] <- 'unit' + colnames(table)[colnames(table) == time] <- 'time' + colnames(table)[colnames(table) == outcome] <- 'outcome' + colnames(table)[colnames(table) == treatment] <- 'treatment' + + table <- table %>% group_by(unit) %>% mutate(ever_treat = max(treatment)) + table <- table %>% arrange(ever_treat, unit, time) + + Y <- array(table[['outcome']], dim=c(N_states, T_periods, 1)) + N0 <- table %>% group_by(unit) %>% summarize(ever_treat = max(ever_treat)) %>% ungroup() %>% summarize(count = sum(ever_treat)) %>% as.numeric() + T0 <- treatment_period - 1 + + table <- table %>% arrange(treatment, time, unit) + + list_covs <- c() + for(cv in covar_list){ + list_covs <- c(list_covs, as.vector(table[[cv]])) + } + + ## Create new version of table sorted by treatment, time, and unit + table <- data %>% arrange(treatment, time, unit) + + ## Create empty list + list_covs <- c() + + ## Loop over each covariate + for(cv in covar_list){ + + ## Add covariate to list + list_covs <- c(list_covs, as.vector(table[[cv]])) + + } + + ## Create array of correct format + x <- array(list_covs, dim=c(N_states, T_periods, length(covar_list))) + + return(x) +} + + +## DEFINE BOOTSTRAP FUNCTION FOR WEIGHTED AVERAGE VERSION +boot_model1 <- function(data, indices ){ + + ## Set up data (in wide format so that rows = states) + data <- data[indices,] + + ## Reshape long (state X period) + reshape_data <- data %>% + pivot_longer(cols = !state, + names_to = c(".value", "period"), + names_pattern = "(.*)_(.*)") %>% + data.frame(reshape_data) %>% + mutate(period = as.numeric(period)) + + ## Check that there are treated and control units + temp3 <- reshape_data %>% group_by(treated) %>% summarize(count = n()) + t <- as.numeric(temp3[1,2]) + c <- as.numeric(temp3[2,2]) + + if(t == 0 | c == 0 ) { + print("Skipped") + } + else { + + ## Take the weighted average of the treated units + avg_data <- reshape_data %>% + mutate(weight = !! sym(weight_var)) %>% + mutate(collapse_var = ifelse(treated == 1, 1, state)) %>% + group_by(collapse_var, period) %>% + summarise(y = weighted.mean(y,weight), + did = mean(did), + treated = mean(treated), + .groups = "drop_last") %>% + ungroup() %>% + rename(state = collapse_var) + + ## Basic set-up + setup <- avg_data %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## RUN SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + sum_est <- summary(est) + ate <- sum_est$estimate + return(ate) + + } + +} + + +## DEFINE BOOTSTRAP FUNCTION FOR WEIGHTED AVERAGE OF INDIVIDUAL SDID VERSION +boot_model2 <- function(data, indices ){ + + ## Set up data (in wide format so that rows = states) + data <- data[indices,] + + ## Reshape long (state X period) + reshape_data <- data %>% + pivot_longer(cols = !state, + names_to = c(".value", "period"), + names_pattern = "(.*)_(.*)") %>% + data.frame(reshape_data) %>% + mutate(period = as.numeric(period)) + + ## Check that there are treated and control units + temp3 <- reshape_data %>% group_by(treated) %>% summarize(count = n()) + t <- as.numeric(temp3[1,2]) + c <- as.numeric(temp3[2,2]) + + if(t == 0 | c == 0 ) { + print("Skipped") + } + else { + + ## Construct a dataset of treated units and their weights + treated <- data %>% + mutate(weight = !!sym(weight_var)) %>% + filter(treated == 1 & did == 0) %>% + select(state, period, weight) %>% + group_by(state) %>% + summarise(weight = mean(weight)) %>% + ungroup() %>% + mutate(ate = NA) + + ## Construct a list of treated states + treated_list <- treated %>% select(state) %>% unique() %>% as.list() + treated_list <- treated_list[[1]] + + ## Loop over each treated state + for (s in treated_list) { + + ## Basic set-up, keeping only one treated state + control states + setup <- data %>% + filter(treated == 0 | state == s) %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## Run SDID + tmp_est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + tmp_sum_est <- summary(tmp_est) + tmp_ate <- tmp_sum_est$estimate + + ## Add ATE to dataset + treated <- treated %>% mutate(ate = if_else(state == s, tmp_ate, ate)) + + } + + ## Get weighted average of ATE + ate <- treated %>% + summarise(ate = weighted.mean(ate,weight)) %>% + ungroup() %>% + as.numeric() + + return(ate) + + } + +} + + +## DEFINE SDID FUNCTION +f_sdid <- function(data, + weighted = 0, + weight_var = FALSE, + covar_list = FALSE, # MAKE EMPTY LIST + calc_se = 0, # 0 = no SEs, 1 = calculate SEs + n_boot = 100 + ) { + + ## OPTION 1: No weights + if (weighted == 0) { + + ## Display weights + print("Run without weights") + + ## Basic set-up + setup <- data %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## COVARIATES + if (covar_list != FALSE) { + + ## Create array of covariates + x <- setup_function(data, state, period, treated, covar_list = covar_list) + + ## Run SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0, X = x) + } + + ## NO COVARIATES + else { + + ## Run SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + + } + + ## Run SDID + sum_est <- summary(est) + + ## Store ATE + ate <- sum_est$estimate + + ## Store SE + if (calc_se == 1) { + se <- sum_est$se + } + else { + se = NA + } + + ## Store list for export + val <- c(ate, se) + } + + ## OPTION 2: Run using weights, using a weighted average treated unit + if (weighted == 1) { + + ## Check that weighting variable was specified + if (weight_var == FALSE) { + print("No weighting variable specified") + break + } + else { + print(paste("Weighting variable ", weight_var)) + } + + ## Take the weighted average of the treated units + avg_data <- data %>% + mutate(collapse_var = ifelse(treated == 1, 1, state)) %>% + mutate(weight = !! sym(weight_var)) %>% + group_by(collapse_var, period) %>% + summarise(y = weighted.mean(y, weight), + did = mean(did), + treated = mean(treated), + .groups = "keep") %>% + ungroup() %>% + rename(state = collapse_var) + + ## Basic set-up + setup <- avg_data %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## COVARIATES + if (covar_list != FALSE) { + + ## Create array of covariates + x <- setup_function(data, state, period, treated, covar_list = covar_list) + + ## Run SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0, X = x) + } + + ## NO COVARIATES + else { + + ## Run SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + + } + + ## RUN SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + + + sum_est <- summary(est) + + ## Store ATE + ate <- sum_est$estimate + + ## Store SE + if (calc_se == 1) { + + ## Reshape data so that the boot function index option works + boot_data <- data %>% + pivot_wider(id_cols = state, names_from = period, values_from = c(y, pop, did, treated)) + + ## Run boostrap command + boot_est <- boot(boot_data, boot_model1, R = n_boot, stype = "i") + + ## Store SE + se <- sd(boot_est$t) + + } + else { + se = NA + } + + ## Store list for export + val <- c(ate, se) + } + + ## OPTION 3: Run using weights, constructing a separate SDID model for each treated unit + if (weighted == 2) { + + ## Check that weighting variable was specified + if (weight_var == FALSE) { + print("No weighting variable specified") + break + } + else { + print(paste("Weighting variable ", weight_var)) + } + + ## Construct a dataset of treated units and their weights + treated <- data %>% + mutate(weight = !! sym(weight_var)) %>% + filter(treated == 1 & did == 0) %>% + select(state, period, weight) %>% + group_by(state) %>% + summarise(weight = mean(weight)) %>% + ungroup() %>% + mutate(ate = NA) + + ## Construct a list of treated states + treated_list <- treated %>% select(state) %>% unique() %>% as.list() + treated_list <- treated_list[[1]] + + ## Loop over each treated state + for (s in treated_list) { + + ## Basic set-up, keeping only one treated state + control states + setup <- data %>% + filter(treated == 0 | state == s) %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## Run SDID + tmp_est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + tmp_sum_est <- summary(tmp_est) + tmp_ate <- tmp_sum_est$estimate + + ## Add ATE to dataset + treated <- treated %>% mutate(ate = if_else(state == s, tmp_ate, ate)) + + } + + ## Get weighted average of ATE + ate <- treated %>% + summarise(ate = weighted.mean(ate,weight)) %>% + as.numeric() + + + ## Store SE + if (calc_se == 1) { + + ## Reshape data so that the boot function index option works + boot_data <- data %>% + mutate(weight = !! sym(weight_var)) %>% + pivot_wider(id_cols = state, names_from = period, values_from = c(y, weight, did, treated)) + + ## Run boostrap command + boot_est <- boot(boot_data, boot_model2, R = n_boot, stype = "i") + + ## Store SE + se <- sd(boot_est$t) + + } + else { + se = NA + } + + ## Store both values + val <- c(ate, se) + + } + + ## RETURN + return(val) + + } + + +### RUN SIMULATIONS + +## Simulation 1: Homogeneous treatment + +# Generate synthetic panel data +simulation <- expand.grid(sim = 1:N_simulations, treat_type = 1:3, data_type = 1:2) %>% + mutate(ate = NA, ate_nw = NA, ate_wt_1 = NA, ate_wt_2 = NA, did_nw = NA, did_wt = NA) + +## LOOP OVER SIMULATIONS +for (i in 1:N_simulations) { + + ## LOOP OVER TREATMENT TYPES + for (j in 1:3) { + + ## LOOP OVER DATA GENERATING TYPES + for (k in 1:2) { + + print(paste("Simulation", i, j, k)) + + ## Generate data + df <- f_data_gen(N_states = N_states, + T_periods = T_periods, + treatment_period = treatment_period, + treatment_size = treatment_size, + state_gen_struc = k, + treatment_type = j) + + + ## Get true ATE + tmp_ate <- df %>% filter(did == 1) %>% summarise(ate = weighted.mean(treatment_effect, pop)) + tmp_ate <- tmp_ate[[1]] + + ## Run unweighted SDID + tmp <- f_sdid(df, weighted = 0) + tmp_ate_nw <- tmp[1] + + ## Run weighted SDID (version 1) + tmp <- f_sdid(df, weighted = 1, weight_var = "pop") + tmp_ate_wt_1 <- tmp[1] + + ## Run weighted SDID (version 2) + tmp <- f_sdid(df, weighted = 2, weight_var = "pop") + tmp_ate_wt_2 <- tmp[1] + + ## Run DiD without weight + tmp <- feols(y ~ did | state + period, + data = df) + tmp_did_nw <- tmp$coefficients + + ## Run DiD with weight + tmp <- feols(y ~ did | state + period, + data = df, weights = ~pop) + tmp_did_wt <- tmp$coefficients + + simulation <- simulation %>% + mutate(ate = if_else(sim == i & treat_type == j & data_type == k, tmp_ate, ate), + ate_nw = if_else(sim == i & treat_type == j & data_type == k, tmp_ate_nw, ate_nw), + ate_wt_1 = if_else(sim == i & treat_type == j & data_type == k, tmp_ate_wt_1, ate_wt_1), + ate_wt_2 = if_else(sim == i & treat_type == j & data_type == k, tmp_ate_wt_2, ate_wt_2), + did_nw = if_else(sim == i & treat_type == j & data_type == k, tmp_did_nw, did_nw), + did_wt = if_else(sim == i & treat_type == j & data_type == k, tmp_did_wt, did_wt) + ) + + rm(tmp, tmp_did_nw, tmp_did_wt, tmp_ate, tmp_ate_nw, tmp_ate_wt_1, tmp_ate_wt_2) + } + } +} + + +############### + +## Export +write.csv(simulation, file = paste(data, "data.csv", sep = "/")) + + + + + diff --git a/R_weighted/bv_2020_replication.R b/R_weighted/bv_2020_replication.R new file mode 100644 index 0000000..d9d9b68 --- /dev/null +++ b/R_weighted/bv_2020_replication.R @@ -0,0 +1,706 @@ +## REPLICATION AND EXTENSION OF BORGSCHULTE AND VOGLER (2020) +## EMPRICAL EXAMPLE OF Role of weighted SDID + +## Preliminaries + +##devtools::install_github("synth-inference/synthdid") + +## Set up libraries +library(tidyverse) +library(boot) +library(data.table) +library(synthdid) +library(modelsummary) +library(fixest) + +## Set up directories - change to local directory +directory <- "/Users/johniselin/Library/CloudStorage/Dropbox/sdid_weights" +results <- file.path(directory,"results") +data <- file.path(directory,"data") + +setwd(directory) + +## Set Seed +set.seed(5) + +## ACA Determination + +## ACA Expansion states (First half of 2014) +aca <- c(4, 5, 6, 8, 9, 10, 11, 15, 17, 19, 21, 24, 25, 26, 27, 32, 34, + 35, 36, 38, 39, 41, 44, 50, 53, 54) + +## DROP AK IN, LA, MT, NH, and PA for later expansions (post first half of 2014) +drop <- c(2, 18, 22, 30, 33, 42) + +## IF 2017 - 2019 period included, drop ME, VA +drop_2019 <- c(23, 51) + +## LOAD DATA + +## Mortality data via https://wonder.cdc.gov/ucd-icd10.html + +df_mortality <- read.csv(file = file.path(data,"mortality/cdc_wonder_data.csv")) %>% + ## FLAG SUPPRESSED VALUES + mutate(death_supp = ifelse(Deaths == "Suppressed", 1,0), + death_miss = ifelse(Deaths == "Missing", 1, 0), + pop_miss = ifelse(Population == "Missing", 1, 0)) %>% + mutate(Deaths = ifelse(Deaths == "Suppressed", 0, Deaths), + Deaths = ifelse(Deaths == "Missing", 0,Deaths), + Population = ifelse(Population == "Missing", 0, Population) ) %>% + mutate(Deaths = as.numeric(Deaths), Population = as.numeric(Population)) %>% + mutate(crude_rate = (Deaths / Population) * 1000 ) %>% + select(-"Crude.Rate") %>% + rename(state_fips = State.Code, county_fips = County.Code, state_name = State) + +## Rename all to lower case +names(df_mortality) <- tolower(names(df_mortality)) + +## Population data via https://seer.cancer.gov/popdata/download.html +## 1990-2020, 4 Expanded Races by Origin, All US +df_pop <- read_fwf(file = file.path(data,"covariates/us.1990_2020.19ages.adjusted.txt"), + fwf_widths( c(4, 2, 2, 3, 2, 1, 1, 1, 2, 8), + c("year", "state_abb", "state_fips", "county_fips", + "registry", "race", "hispanic", "sex", "age", "pop"))) %>% + filter(year >= 2007) %>% filter(year <= 2019) %>% + mutate(age = as.numeric(age), pop = as.numeric(pop)) %>% + select(-registry, -hispanic) %>% + group_by(year, state_abb, state_fips, county_fips, race, sex, age) %>% + summarize(pop = sum(pop)) %>% group_by() %>% + mutate(county_fips = as.numeric(paste0(state_fips, county_fips))) + +## Create relevant population samples + +## Percent of population that is white +df_pop_race <- df_pop %>% + select(year, state_abb, state_fips, county_fips, race, pop) %>% + group_by(year, state_abb, state_fips, county_fips, race) %>% + summarize(pop = sum(pop)) %>% group_by() %>% + pivot_wider(names_from = race, values_from = pop, values_fill = 0) %>% + rename(white = '1', black = '2', aian = '3', asian = '4') %>% + replace_na(list(white = 0, black = 0, aian = 0, asian = 0)) %>% + mutate(pct_white = white / (white + black + aian + asian)) %>% + select(year, state_abb, state_fips, county_fips, pct_white) + +## By-age statistics +df_pop_age <- df_pop %>% + select(year, state_abb, state_fips, county_fips, age, pop) %>% + group_by(year, state_abb, state_fips, county_fips, age) %>% + summarize(pop = sum(pop)) %>% group_by() %>% + pivot_wider(names_from = age, values_from = pop, values_fill = 0) %>% + rename(pop_00 = '0', pop_01_04 = '1', pop_05_09 = '2', pop_10_14 = '3', + pop_15_19 = '4', pop_20_24 = '5', pop_25_29 = '6', pop_30_34 = '7', + pop_35_39 = '8', pop_40_44 = '9', pop_45_49 = '10', pop_50_54 = '11', + pop_55_59 = '12', pop_60_64 = '13', pop_65_69 = '14', pop_70_74 = '15', + pop_75_79 = '16', pop_80_84 = '17', pop_85 = '18' ) %>% + mutate(pop_total = rowSums(across(pop_00:pop_85)), + pop_20_64 = rowSums(across(pop_20_24:pop_20_24))) %>% + mutate(pct_55_64 = (pop_55_59 + pop_60_64)/ pop_total, + log_20_64 = log(rowSums(across(pop_20_24:pop_20_24))), + log_35_44 = log(rowSums(across(pop_35_39:pop_40_44)))) %>% + select(year, state_abb, state_fips, county_fips, pct_55_64, log_20_64, log_35_44, pop_20_64, pop_total) + +## By-age and gender statistics +df_pop_f_age <- df_pop %>% + filter(sex == 2) %>% + select(year, state_abb, state_fips, county_fips, age, pop) %>% + group_by(year, state_abb, state_fips, county_fips, age) %>% + summarize(pop = sum(pop)) %>% group_by() %>% + pivot_wider(names_from = age, values_from = pop, values_fill = 0) %>% + rename(pop_00 = '0', pop_01_04 = '1', pop_05_09 = '2', pop_10_14 = '3', + pop_15_19 = '4', pop_20_24 = '5', pop_25_29 = '6', pop_30_34 = '7', + pop_35_39 = '8', pop_40_44 = '9', pop_45_49 = '10', pop_50_54 = '11', + pop_55_59 = '12', pop_60_64 = '13', pop_65_69 = '14', pop_70_74 = '15', + pop_75_79 = '16', pop_80_84 = '17', pop_85 = '18' ) %>% + mutate(pop_total = rowSums(across(pop_00:pop_85))) %>% + mutate(log_f_20_64 = log(rowSums(across(pop_20_24:pop_60_64)))) %>% + select(year, state_abb, state_fips, county_fips, log_f_20_64) + +## Merge together population covariates +df_pop_cov <- df_pop_race %>% + full_join(df_pop_age, + by = join_by(year, state_abb, state_fips, county_fips)) %>% + left_join(df_pop_f_age, + by = join_by(year, state_abb, state_fips, county_fips)) %>% + mutate(state_fips = as.numeric(state_fips)) + +## Unemployment data via https://download.bls.gov/pub/time.series/la/ +## la.data.64.County +df_unempl <- read_tsv(file = file.path(data,"covariates/la.data.64.County")) %>% + filter(year >= 2007, year <= 2019) %>% + select(-footnote_codes) %>% + mutate(series = as.numeric(substr(series_id, 19, 20)), + state_fips = substr(series_id, 6, 7), + county_fips = substr(series_id, 8, 10)) %>% + filter(series == 3) %>% + group_by(state_fips, county_fips, series_id, year) %>% + summarise(unemp = mean(value)) %>% + group_by() %>% + select(year, state_fips, county_fips, unemp) %>% + mutate(county_fips = as.numeric(paste0(state_fips, county_fips)), + state_fips = as.numeric(state_fips)) + +## Combine data +df <- df_pop_cov %>% + left_join(df_unempl, join_by(year, state_fips, county_fips)) %>% + left_join(df_mortality, join_by(year, state_fips, county_fips)) + +## Export version of data +write.csv(df,file = file.path(data,"analysis_data.csv")) + + + +## Remove intermediate datasets +rm(df_pop, df_pop_age, df_pop_cov, df_pop_f_age, df_pop_race, df_unempl, df_mortality) + +## Create initial analysis dataset for replication +df_09_17 <- df %>% + mutate(aca_expanders = ifelse(state_fips %in% aca, 1, 0)) %>% ## Assign treatment + mutate(treated = ifelse(aca_expanders == 1 & year >= 2014, 1, 0)) %>% ## Assign treatment + filter(!(state_fips %in% drop)) %>% ## Drop states with later expansions + filter(year >= 2009) %>% filter(year <= 2017) + +## Set of missing-data-related sample restrictions +df_09_17 <- df_09_17 %>% + filter(!is.na(deaths)) %>% ## Missing mortality data (9, one VA county 51917) + filter(!is.na(unemp)) ## Missing Unemployment (227) + +## Grab sample +sample_09_17 <- df_09_17 %>% + group_by(state_abb, county_fips, county ) %>% + summarise(n =n()) %>% + group_by() + +## Merge back on to drop unbalanced (None dropped) +df_09_17 <- df_09_17 %>% + left_join(sample_09_17, join_by(state_abb, county_fips, county )) %>% + filter(n == 9) %>% + select(-n) + +#### FUNCTIONS + + + +## DEFINE BOOTSTRAP FUNCTION FOR WEIGHTED AVERAGE VERSION +boot_model1 <- function(data, indices ){ + + ## Set up data (in wide format so that rows = states) + data <- data[indices,] + + ## Reshape long (state X period) + reshape_data <- data %>% + pivot_longer(cols = !state, + names_to = c(".value", "period"), + names_pattern = "(.*)_(.*)") %>% + data.frame(reshape_data) %>% + mutate(period = as.numeric(period)) + + ## Check that there are treated and control units + temp3 <- reshape_data %>% group_by(treated) %>% summarize(count = n()) + t <- as.numeric(temp3[1,2]) + c <- as.numeric(temp3[2,2]) + + if(t == 0 | c == 0 ) { + print("Skipped") + } + else { + + ## Take the weighted average of the treated units + avg_data <- reshape_data %>% + mutate(weight = !! sym(weight_var)) %>% + mutate(collapse_var = ifelse(treated == 1, 1, state)) %>% + group_by(collapse_var, period) %>% + summarise(y = weighted.mean(y,weight), + did = mean(did), + treated = mean(treated), + .groups = "drop_last") %>% + ungroup() %>% + rename(state = collapse_var) + + ## Basic set-up + setup <- avg_data %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## RUN SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + sum_est <- summary(est) + ate <- sum_est$estimate + return(ate) + + } + +} + + +## DEFINE BOOTSTRAP FUNCTION FOR WEIGHTED AVERAGE OF INDIVIDUAL SDID VERSION +boot_model2 <- function(data, indices ){ + + ## Set up data (in wide format so that rows = states) + data <- data[indices,] + + ## Reshape long (state X period) + reshape_data <- data %>% + pivot_longer(cols = !state, + names_to = c(".value", "period"), + names_pattern = "(.*)_(.*)") %>% + data.frame(reshape_data) %>% + mutate(period = as.numeric(period)) + + ## Check that there are treated and control units + temp3 <- reshape_data %>% group_by(treated) %>% summarize(count = n()) + t <- as.numeric(temp3[1,2]) + c <- as.numeric(temp3[2,2]) + + if(t == 0 | c == 0 ) { + print("Skipped") + } + else { + + ## Construct a dataset of treated units and their weights + treated <- data %>% + mutate(weight = !! sym(weight_var)) %>% + filter(treated == 1 & did == 0) %>% + select(state, period, weight) %>% + group_by(state) %>% + summarise(weight = mean(weight)) %>% + ungroup() %>% + mutate(ate = NA) + + ## Construct a list of treated states + treated_list <- treated %>% select(state) %>% unique() %>% as.list() + treated_list <- treated_list[[1]] + + ## Loop over each treated state + for (s in treated_list) { + + ## Basic set-up, keeping only one treated state + control states + setup <- data %>% + filter(treated == 0 | state == s) %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## Run SDID + tmp_est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + tmp_sum_est <- summary(tmp_est) + tmp_ate <- tmp_sum_est$estimate + + ## Add ATE to dataset + treated <- treated %>% mutate(ate = if_else(state == s, tmp_ate, ate)) + + } + + ## Get weighted average of ATE + ate <- treated %>% + summarise(ate = weighted.mean(ate,weight)) %>% + ungroup() %>% + as.numeric() + + return(ate) + + } + +} + + +## DEFINE SDID FUNCTION +f_sdid <- function(data, + var_state, + var_period, + var_y, + var_did, + weighted = 0, + weight_var = FALSE, + covar_list = FALSE, # MAKE EMPTY LIST + calc_se = 0, # 0 = no SEs, 1 = calculate SEs + n_boot = 100 +) { + + + ## COVARIATES + if (covar_list != FALSE) { + + } + else { + + # print("No covariates") + + } + + ## OPTION 1: No weights + if (weighted == 0) { + + ## Display weights + print("Run without weights") + + ## Basic set-up + setup <- data %>% + mutate(state = !! sym(var_state), + period = !! sym(var_period), + y = !! sym(var_y), + did = !! sym(var_did)) %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## Run SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + sum_est <- summary(est) + + ## Store ATE + ate <- sum_est$estimate + + ## Store SE + if (calc_se == 1) { + se <- sum_est$se + } + else { + se = NA + } + + ## Store list for export + val <- c(ate, se) + } + + ## OPTION 2: Run using weights, using a weighted average treated unit + if (weighted == 1) { + + ## Check that weighting variable was specified + if (weight_var == FALSE) { + print("No weighting variable specified") + break + } + else { + print(paste("Weighting variable ", weight_var)) + } + + ## Take the weighted average of the treated units + avg_data <- data %>% + mutate(collapse_var = ifelse(treated == 1, 1, state)) %>% + mutate(weight = !! sym(weight_var), + state = !! sym(var_state), + period = !! sym(var_period), + y = !! sym(var_y), + did = !! sym(var_did)) %>% + select(collapse_var, period, weight, state, period, did, treated) %>% + group_by(collapse_var, period) %>% + summarise(y = weighted.mean(y, weight), + did = mean(did), + treated = mean(treated), + .groups = "keep") %>% + ungroup() %>% + rename(state = collapse_var) + + ## Basic set-up + setup <- avg_data %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## RUN SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + sum_est <- summary(est) + + ## Store ATE + ate <- sum_est$estimate + + ## Store SE + if (calc_se == 1) { + + ## Reshape data so that the boot function index option works + boot_data <- data %>% + pivot_wider(id_cols = state, names_from = period, values_from = c(y, pop, did, treated)) + + ## Run boostrap command + boot_est <- boot(boot_data, boot_model1, R = n_boot, stype = "i") + + ## Store SE + se <- sd(boot_est$t) + + } + else { + se = NA + } + + ## Store list for export + val <- c(ate, se) + } + + ## OPTION 3: Run using weights, constructing a separate SDID model for each treated unit + if (weighted == 2) { + + ## Check that weighting variable was specified + if (weight_var == FALSE) { + print("No weighting variable specified") + break + } + else { + print(paste("Weighting variable ", weight_var)) + } + + ## Construct a dataset of treated units and their weights + treated <- data %>% + mutate(weight = !! sym(weight_var), + state = !! sym(var_state), + period = !! sym(var_period), + y = !! sym(var_y), + did = !! sym(var_did)) %>% + select(collapse_var, period, weight, state, period, did, treated) %>% + filter(treated == 1 & did == 0) %>% + select(state, period, weight) %>% + group_by(state) %>% + summarise(weight = mean(weight)) %>% + ungroup() %>% + mutate(ate = NA) + + ## Construct a list of treated states + treated_list <- treated %>% select(state) %>% unique() %>% as.list() + treated_list <- treated_list[[1]] + + ## Loop over each treated state + for (s in treated_list) { + + ## Basic set-up, keeping only one treated state + control states + setup <- data %>% + filter(treated == 0 | state == s) %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## Run SDID + tmp_est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + tmp_sum_est <- summary(tmp_est) + tmp_ate <- tmp_sum_est$estimate + + ## Add ATE to dataset + treated <- treated %>% mutate(ate = if_else(state == s, tmp_ate, ate)) + + } + + ## Get weighted average of ATE + ate <- treated %>% + summarise(ate = weighted.mean(ate,weight)) %>% + as.numeric() + + + ## Store SE + if (calc_se == 1) { + + ## Reshape data so that the boot function index option works + boot_data <- data %>% + mutate(weight = !! sym(weight_var)) %>% + pivot_wider(id_cols = state, names_from = period, values_from = c(y, weight, did, treated)) + + ## Run boostrap command + boot_est <- boot(boot_data, boot_model2, R = n_boot, stype = "i") + + ## Store SE + se <- sd(boot_est$t) + + } + else { + se = NA + } + + ## Store both values + val <- c(ate, se) + + } + + ## RETURN + return(val) + +} + + +## DEFINE DID FUNCTION +run_did_function <- function(data, + weights_option = FALSE, + weights_var = NA, + controls_option = TRUE, + n = 1, + model_list_name = models){ + + ## Set up temporary data file + tmp <- data + + ## SET UP WEIGHTS + + ## IF true, let weights = weights_var + if(weights_option == TRUE) { + tmp <- tmp %>% mutate(weight = pop_20_64) + } + + ### ELSE false, let weights = 1 + if(weights_option == FALSE) { + tmp <- tmp %>% mutate(weight = 1) + } + + ## SET UP CONTROLS + if(controls_option == TRUE) { + f <- paste0("crude_rate ~ treated + pct_white + pct_55_64 + log_20_64 + log_35_44 + log_f_20_64 + unemp | county_fips + year") + } + + if(controls_option == FALSE) { + f <- paste0("crude_rate ~ treated | county_fips + year") + } + + ## SET UP FORMULA + f <- as.formula(f) + + ## RUN MODEL + m <- feols(f, + se = "cluster", + cluster = "state_fips", + weights = ~ weight, + data = tmp) + + return(m) + +} + +### PRODUCE ANALYSIS DATASETS +df_sdid <- df_09_17 %>% + select(county_fips, year, crude_rate, treated) + + +### RUN MODELS + +tmp <- f_sdid(df_sdid, "county_fips", "year", "crude_rate", "treated", weighted = 0) + +## Create dataset with required variables +df_sdid_data <- df_09_17 %>% + select(county_fips, year, crude_rate, treated) + +## Convert to data frame +df_sdid_data <- as.data.frame(df_sdid_data) + +## Run panel matrix setup command +setup <- panel.matrices(df_sdid_data) + +## Get matrix of covariates +tmp <- df_09_17 %>% + select(county_fips, year, pct_white, pct_55_64, log_20_64, log_35_44, log_f_20_64, unemp) %>% + array(dim = dim = c(dim(setup$Y))) + +X <- array(data = tmp, dim = c(dim(setup$Y))) + +est <- synthdid_estimate(setup$Y, setup$N0, setup$T0, X) +plot(est) + + +## CREAT MODEL LIST +models <- list() + +models[[paste("nw", "nc", sep = ".")]] <- + run_did_function(df_09_17, + weights_option = FALSE, + controls_option = FALSE, + model_list_name = models) + +models[[paste("w", "nc", sep = ".")]] <- + run_did_function(df_09_17, + weights_option = TRUE, + weights_var = pop_20_64, + controls_option = FALSE, + model_list_name = models) + +models[[paste("nw", "c", sep = ".")]] <- + run_did_function(df_09_17, + var_state = county_fips, + var_period = year, + var_y = crude_rate, + var_did = treated, + weights_option = FALSE, + controls_option = TRUE, + model_list_name = models) + +models[[paste("w", "c", sep = ".")]] <- + run_did_function(df_09_17, + weights_option = TRUE, + weights_var = pop_20_64, + controls_option = TRUE, + model_list_name = models) + + +## TEST NAMING +v = c("ATE") +names(v) = c("treatedTRUE") + +modelsummary(models, output = "gt", + stars = c('*' = .1, '**' = .05, '***' = .01), + coef_map = v, + coef_rename = c('nw.nc' = 'Test')) %>% + # column labels + tab_spanner(label = 'Without Controls', columns = 2:3) %>% + tab_spanner(label = 'With Controls', columns = 4:5) + + +msummary(models, stars = c('*' = .1, '**' = .05, '***' = .01), + coef_map = v, + shape = "rbind") + model2), "Panel B" = list(model3, model4))) + +names(v) + + + + + +msummary(did_w_nc, stars = c('*' = .1, '**' = .05, '***' = .01)) + +# feols clusters by the first +# fixed effect by default, no adjustment necessary +did_nw_nc <- feols(crude_rate ~ treated | county_fips + year, + se = "cluster", cluster = "state_fips", + data = df_09_17) + +models[["No weights, no controls"]] <- did_nw_nc + + + + +# Interact quarter with being in the treated group using +# the fixest i() function, which also lets us specify +# a reference period (using the numeric version of Quarter) +clfe <- feols(crude_rate ~ i(year, aca_expanders, ref = 2013) | county_fips + year, + se = "cluster", cluster = "state_fips", + weights = ~ pop_20_64, + data = df_09_17) + +# And use coefplot() for a graph of effects +coefplot(clfe) + +clfe <- feols(crude_rate ~ i(year, aca_expanders, ref = 2013) | county_fips + year, + se = "cluster", cluster = "state_fips", + data = df_09_17) + +# And use coefplot() for a graph of effects +coefplot(clfe) + diff --git a/R_weighted/county_dataset_creation.R b/R_weighted/county_dataset_creation.R new file mode 100644 index 0000000..2ccda97 --- /dev/null +++ b/R_weighted/county_dataset_creation.R @@ -0,0 +1,252 @@ +# ============================================================================= +# Author: John Iselin and Erica Ryan +# Date: November 24th, 2025 +# File: dataset_construction +# +# Project: Dataset Construction for Borgschulte and Vogler (2020) replication +# Construct County-Year panel from 2009 through 2017. +# The original paper used confidential mortality data, which we do not +# have access to. Rather, we use public data via CDC wonder. +# ============================================================================= + +## CLEAR ALL +rm(list = ls()) +gc() + + +# --- Libraries --- +library(here) # project-root relative paths +library(tidyverse) +library(data.table) +library(readr) # data import +library(stringr) # string helpers + +# --- Project Metadata --- +project_name <- "synth_weights" +date_run <- format(Sys.Date(), "%Y-%m-%d") + +# --- File Paths (relative to Rproj root) --- +dir_data <- here("data") +dir_data_raw <- "/Users/johniselin/Library/CloudStorage/Dropbox/sdid_weights/data/" + +# --- Random Seed for Reproducibility --- +set.seed(56403) + +# --- Parameters --- +start_year <- 2009 +end_year <- 2017 + +## ACA Expansion states (First half of 2014) +aca <- c(4, 5, 6, 8, 9, 10, 11, 15, 17, 19, 21, 24, 25, 26, 27, 32, 34, + 35, 36, 38, 39, 41, 44, 50, 53, 54) + +## DROP AK IN, LA, MT, NH, and PA for later expansions (post first half of 2014) +drop <- c(2, 18, 22, 30, 33, 42) + +## Mortality Data +## Imported via CDC Wonder on November 24, 2025 +## All cause mortality, 20-64-year-olds by county and year + +## Load data +df_mortality <- read.csv(file = file.path(dir_data_raw,"cdc_wonder_data.csv")) + +## Rename all to lower case +names(df_mortality) <- tolower(names(df_mortality)) + +## Clean Data +df_mortality <- df_mortality %>% + + ## Drop crude rate + select(-crude.rate, -year.code, -notes) %>% + + ## Tag counties with suppression + mutate(death_supp = ifelse(deaths == "Suppressed", 1,0), + death_miss = ifelse(deaths == "Missing", 1, 0), + pop_miss = ifelse(population == "Missing", 1, 0)) %>% + + ## Replace suppressed or missing values with 0 + mutate(deaths = ifelse(deaths == "Suppressed", 0, deaths), + deaths = ifelse(deaths == "Missing", 0,deaths), + population = ifelse(population == "Missing", 0, population)) %>% + + ## Rename geographic vars + rename(fips = county.code) %>% + + ## Tag counties where population is ever 0 + group_by(fips) %>% + mutate(ever_zero_flag = as.numeric(any(population == 0))) %>% + ungroup() %>% + + ## Convert deaths and population to numeric + mutate(deaths = as.numeric(deaths), population = as.numeric(population)) %>% + + ## Create mortality rate + mutate(crude_rate = (deaths / population) * 100000 ) %>% + + ## Select data + select(year, fips, crude_rate, deaths, population) + + +## Population data via https://seer.cancer.gov/popdata/download.html +## 1990-2020, 4 Expanded Races by Origin, All US +df_pop <- read_fwf(file = file.path(dir_data_raw,"covariates/us.1990_2020.19ages.adjusted.txt"), + fwf_widths( c(4, 2, 2, 3, 2, 1, 1, 1, 2, 8), + c("year", "state_abb", "state_fips", "county_fips", + "registry", "race", "hispanic", "sex", "age", "pop"))) %>% + filter(year >= 2009) %>% filter(year <= 2017) %>% + mutate(age = as.numeric(age), pop = as.numeric(pop)) %>% + select(-registry, -hispanic) %>% + group_by(year, state_abb, state_fips, county_fips, race, sex, age) %>% + summarize(pop = sum(pop)) %>% group_by() %>% + mutate(fips = as.numeric(paste0(state_fips, county_fips))) + +## Create relevant population samples + +## Percent of population that is white +df_pop_race <- df_pop %>% + + ## Keep required variables + select(year, state_abb, state_fips, county_fips, fips, race, pop) %>% + + ## Group to get total pop by race + group_by(year, state_abb, state_fips, county_fips, race, fips) %>% + summarize(pop = sum(pop)) %>% group_by() %>% + + ## Pivot to county X year level + pivot_wider(names_from = race, values_from = pop, values_fill = 0) %>% + + ## Rename by race + rename(white = '1', black = '2', aian = '3', asian = '4') %>% + + ## Fill-in missing values + replace_na(list(white = 0, black = 0, aian = 0, asian = 0)) %>% + + ## Create percent white + mutate(pct_white = white / (white + black + aian + asian)) %>% + select(year, fips, state_abb, state_fips, county_fips, pct_white) %>% + ungroup() + +## Percent of the population that is elderly +df_pop_age <- df_pop %>% + + ## Keep required variables + select(year, state_abb, state_fips, county_fips, age, pop) %>% + + ## Group by to get totals by age + group_by(year, state_abb, state_fips, county_fips, age) %>% + summarize(pop = sum(pop)) %>% group_by() %>% + + ## Pivot to get county X year level + pivot_wider(names_from = age, values_from = pop, values_fill = 0) %>% + + ## Rename variables + rename(pop_00 = '0', pop_01_04 = '1', pop_05_09 = '2', + pop_10_14 = '3', pop_15_19 = '4', pop_20_24 = '5', + pop_25_29 = '6', pop_30_34 = '7', pop_35_39 = '8', + pop_40_44 = '9', pop_45_49 = '10', pop_50_54 = '11', + pop_55_59 = '12', pop_60_64 = '13', pop_65_69 = '14', + pop_70_74 = '15', pop_75_79 = '16', pop_80_84 = '17', + pop_85 = '18' ) %>% + + ## Create summary variables + mutate(pop_total = rowSums(across(pop_00:pop_85)), + pop_20_64 = rowSums(across(pop_20_24:pop_20_24))) %>% + mutate(pct_55_64 = (pop_55_59 + pop_60_64)/ pop_total, + log_20_64 = log(rowSums(across(pop_20_24:pop_20_24))), + log_35_44 = log(rowSums(across(pop_35_39:pop_40_44)))) %>% + select(year, state_abb, state_fips, county_fips, pct_55_64, log_20_64, log_35_44, pop_20_64, pop_total) %>% + ungroup() + +## By-age and gender statistics +df_pop_f_age <- df_pop %>% + + ## Keep if sex == 2 + filter(sex == 2) %>% + + ## Keep required variables + select(year, state_abb, state_fips, county_fips, age, pop) %>% + + ## Group by to get totals by age + group_by(year, state_abb, state_fips, county_fips, age) %>% + summarize(pop = sum(pop)) %>% group_by() %>% + + ## Pivot to get county X year level + pivot_wider(names_from = age, values_from = pop, values_fill = 0) %>% + rename(pop_00 = '0', pop_01_04 = '1', pop_05_09 = '2', + pop_10_14 = '3', pop_15_19 = '4', pop_20_24 = '5', + pop_25_29 = '6', pop_30_34 = '7', pop_35_39 = '8', + pop_40_44 = '9', pop_45_49 = '10', pop_50_54 = '11', + pop_55_59 = '12', pop_60_64 = '13', pop_65_69 = '14', + pop_70_74 = '15', pop_75_79 = '16', pop_80_84 = '17', + pop_85 = '18' ) %>% + + ## Get summary variables + mutate(pop_total = rowSums(across(pop_00:pop_85))) %>% + mutate(log_f_20_64 = log(rowSums(across(pop_20_24:pop_60_64)))) %>% + select(year, state_abb, state_fips, county_fips, log_f_20_64) %>% + ungroup() + +## Merge together population covariates +df_pop_cov <- df_pop_race %>% + full_join(df_pop_age, + by = join_by(year, state_abb, state_fips, county_fips)) %>% + left_join(df_pop_f_age, + by = join_by(year, state_abb, state_fips, county_fips)) %>% + select(year, fips, state_abb, state_fips, county_fips, pop_total, pct_white, + pop_20_64, pct_55_64, log_20_64, log_35_44, log_f_20_64) + +## Unemployment data via https://download.bls.gov/pub/time.series/la/ +## la.data.64.County +df_unempl <- read_tsv(file = file.path(dir_data_raw,"covariates/la.data.64.County")) %>% + + ## Keep year range + filter(year >= 2009, year <= 2017) %>% + select(-footnote_codes) %>% + mutate(series = as.numeric(substr(series_id, 19, 20)), + state_fips = substr(series_id, 6, 7), + county_fips = substr(series_id, 8, 10)) %>% + filter(series == 3) %>% + group_by(state_fips, county_fips, series_id, year) %>% + summarise(unemp = mean(value)) %>% + group_by() %>% + mutate(fips = as.numeric(paste0(state_fips, county_fips)), + state_fips = as.numeric(state_fips)) %>% + select(year, fips, unemp) + +## Combine data +df <- df_pop_cov %>% + + ## Merge with Unemployment + left_join(df_unempl, join_by(year, fips)) %>% + + ## Merge with Mortality + left_join(df_mortality, join_by(year, fips)) %>% + + ## Assign ACA variables + mutate(expansion = ifelse(state_fips %in% aca,1, 0), + post = ifelse(year >= 2014,1,0)) %>% + mutate(treated = post * expansion) %>% + + ## Drop if in select states with odd ACA timing + filter(!(state_fips %in% drop)) %>% + + ## Keep years with mortality data + filter(year >= 2009 & year <= 2017) %>% + + ## Drop if missing mortality data + group_by(fips) %>% + mutate(ever_missing_flag = as.numeric(any(is.na(crude_rate))), + count_year = n()) %>% + ungroup() %>% + + ## Keep fips with no missing data + filter(ever_missing_flag == 0, + count_year == 9 ) + + +## Determine state assignment + +## Export version of data +write.csv(df,file = file.path(dir_data,"analysis_data.csv")) + +rm(list = ls()) diff --git a/R_weighted/data.R b/R_weighted/data.R new file mode 100644 index 0000000..c063954 --- /dev/null +++ b/R_weighted/data.R @@ -0,0 +1,70 @@ +#' California proposition 99 +#' +#' A dataset containing per-capita cigarette consumption (in packs). +#' In year 1989 California imposed a Tobacco tax. The column `treated` is 1 from then on for California. +#' +#' @docType data +#' @name california_prop99 +#' +#' @format A data frame with 1209 rows and 4 variables: +#' \describe{ +#' \item{State}{US state name, character string} +#' \item{Year}{Year, integer} +#' \item{PacksPerCapita}{per-capita cigarette consumption, numeric} +#' \item{treated}{the treatmed indicator 0: control, 1: treated, numeric} +#' } +#' @source Abadie, Alberto, Alexis Diamond, and Jens Hainmueller. +#' "Synthetic control methods for comparative case studies: Estimating the effect of California’s tobacco control program." +#' Journal of the American statistical Association 105, no. 490 (2010): 493-505. +#' +#' @usage data(california_prop99) +#' +#' @examples +#' \donttest{ +#' # Load tobacco sales in long panel format. +#' data("california_prop99") +#' # Transform to N*T matrix format required for synthdid, +#' # where N is the number of units and T the time periods. +#' setup <- panel.matrices(california_prop99) +#' } +#' +NULL + +#' PENN +#' +#' @docType data +#' @name PENN +#' +#' @format A data frame with 3219 rows and 5 variables. +#' \describe{ +#' \item{country}{country} +#' \item{year}{year} +#' \item{log_gdp}{log_gdp} +#' \item{dem}{dem} +#' \item{educ}{educ} +#' } +#' +#' @usage data(PENN) +#' +NULL + +#' CPS +#' +#' @docType data +#' @name CPS +#' +#' @format A data frame with 2000 rows and 8 variables. +#' \describe{ +#' \item{state}{state} +#' \item{year}{year} +#' \item{log_wage}{log_wage} +#' \item{hours}{hours} +#' \item{urate}{urate} +#' \item{min_wage}{min_wage} +#' \item{open_carry}{open_carry} +#' \item{abort_ban}{abort_ban} +#' } +#' +#' @usage data(CPS) +#' +NULL diff --git a/R_weighted/format.R b/R_weighted/format.R new file mode 100644 index 0000000..31a4944 --- /dev/null +++ b/R_weighted/format.R @@ -0,0 +1,14 @@ +#' Format a synthdid object +#' @param x The object to format +#' @param ... Additional arguments (currently ignored). +#' @method format synthdid_estimate +#' @export +format.synthdid_estimate = function(x, ...) { + info = summary(x, fast=TRUE) + d = as.list(info$dimensions) + sprintf('synthdid: %1.3f +- %1.3f. Effective N0/N0 = %1.1f/%d~%1.1f. Effective T0/T0 = %1.1f/%d~%1.1f. N1,T1 = %d,%d.', + c(x), 1.96*info$se, + d$N0.effective, d$N0, d$N0.effective/d$N0, + d$T0.effective, d$T0, d$T0.effective/d$T0, + d$N1, d$T1) +} diff --git a/R_weighted/placebo-simulations.R b/R_weighted/placebo-simulations.R new file mode 100644 index 0000000..7103622 --- /dev/null +++ b/R_weighted/placebo-simulations.R @@ -0,0 +1,181 @@ +#' Estimates the DGP parameters used in the placebo studies in Sections 3 and 5 +#' of the synthetic difference in differences paper. Described there in Section 3.1.1. +#' +#' @param Y, an NxT matrix of outcomes +#' @param assignment_vector, an Nx1 vector of treatment assignments +#' @param rank, the rank of the estimated signal component L +#' @return a list with elements F, M, Sigma, pi as described in Section 3.1.1 +#' and an element ar_coef with the AR(2) model coefficients underlying the covariance Sigma +#' @export estimate_dgp +estimate_dgp = function(Y, assignment_vector, rank) { + N <- dim(Y)[1] + T <- dim(Y)[2] + overall_mean <- mean(Y) + overall_sd <- norm(Y - overall_mean,'f')/sqrt(N*T) + Y_norm <- (Y-overall_mean)/overall_sd + + components <- decompose_Y(Y_norm, rank = rank) + M <- components$M + F <- components$F + E <- components$E + unit_factors <- components$unit_factors + + ar_coef <- round(fit_ar2(E),2) + cor_matrix <- ar2_correlation_matrix(ar_coef,T) + scale_sd <- norm(t(E)%*%E/N,'f')/norm(cor_matrix,'f') + cov_mat <- cor_matrix*scale_sd + + assign_prob <- glm(assignment_vector~unit_factors,family = 'binomial')$fitted.values + return(list(F=F, M=M, Sigma=cov_mat,pi=assign_prob, ar_coef=ar_coef)) +} + + +#' Simulates data from DGPs used in the placebo studies in Sections 3 and 5 +#' of the synthetic difference in differences paper. Described there in Section 3.1.1. +#' +#' @param parameters, a list of dgp parameters (F,M,Sigma,pi) as output by estimate.dgp +#' @param N1, a cap on the number of treated units, +#' @param T1, the number of treated periods. +#' @return a list with 3 elements: the outcome matrix Y, the number of control units N0, and the number of control periods T0. +#' The first N0 rows of Y are for units assigned to control, the remaining rows are for units assigned to treatment. +#' @export simulate_dgp +#' @importFrom mvtnorm rmvnorm +simulate_dgp = function(parameters, N1, T1){ + F=parameters$F + M=parameters$M + Sigma = parameters$Sigma + pi = parameters$pi + + N <- nrow(M) + T <- ncol(M) + + assignment <- randomize_treatment(pi,N,N1) + N1 <- sum(assignment) + N0 <- N - N1 + T0 <- T - T1 + + Y = F + M + rmvnorm(N, sigma = Sigma) + return(list(Y=Y[order(assignment), ], N0=N0, T0=T0)) + # order units by treatment, so treated units are at the bottom of our data matrix in accordance with our convention +} + + +#' randomize treatment to n units with probability pi +#' then if the number of treated units is zero, assign treatment to one unit uniformly at random +#' and if the number of treated units exceeds a cap, remove treatment uniformly at random so it is exactly that cap +#' @param pi, the randomization probabilities +#' @param N, the number of units +#' @param N1, the cap on the number of treated units +#' @return a binary vector of length N, with ones indicating assignment to treatment +randomize_treatment = function(pi, N, N1){ + assignment_sim <- rbinom(N,1,pi) + index_as <- which(assignment_sim == 1) + if (sum(assignment_sim) > N1){ + index_pert <- sample(index_as,N1) + assignment_sim <- rep(0,N) + assignment_sim[index_pert] <- 1 + } else if (sum(assignment_sim) == 0){ + index_pert <- sample(1:N,N1) + assignment_sim <- rep(0,N) + assignment_sim[index_pert] <- 1 + } + return(assignment_sim) +} + + +#' Decompose Y into components F, M, and E as described in Section 3.1.1 +#' also computes a set of 'unit factors': the first [rank] left singular vectors from SVD(Y) +#' @param Y, the outcomes +#' @param rank, the assumed rank of the signal component L=F+M +#' @return a list with elements F, M, E, and unit_factors +decompose_Y = function(Y,rank) { + N <- dim(Y)[1] + T <- dim(Y)[2] + + svd_data_mat <- svd(Y) + factor_unit <- as.matrix(svd_data_mat$u[,1:rank]*sqrt(N)) + factor_time <- as.matrix(svd_data_mat$v[,1:rank]*sqrt(T)) + + magnitude <- svd_data_mat$d[1:rank]/sqrt(N*T) + L <- factor_unit%*%diag(magnitude, nrow = rank, ncol = rank)%*%t(factor_time) + + E <- Y-L + F <- outer(rowMeans(L),rep(1,T)) + outer(rep(1,N),colMeans(L)) - mean(L) + M <- L - F + + return(list(F=F, M=M, E=E, unit_factors=factor_unit)) +} + +#' Estimate ar2 coefficients from iid time series +#' @param E, a matrix with those time series as rows +#' @return a vector of ar2 coefficients: c(lag-1-coefficient, lag-2-coefficient) +fit_ar2 <- function(E){ + + T_full <- dim(E)[2] + E_ts <- E[,3:T_full] + E_lag_1 <- E[,2:(T_full-1)] + E_lag_2 <- E[,1:(T_full-2)] + + a_1 <- sum(diag(E_lag_1%*%t(E_lag_1))) + a_2 <- sum(diag(E_lag_2%*%t(E_lag_2))) + a_3 <- sum(diag(E_lag_1%*%t(E_lag_2))) + + matrix_factor <- rbind(c(a_1,a_3),c(a_3,a_2)) + + b_1 <- sum(diag(E_lag_1%*%t(E_ts))) + b_2 <- sum(diag(E_lag_2%*%t(E_ts))) + + ar_coef <- solve(matrix_factor)%*%c(b_1,b_2) + return(ar_coef) +} + +#' compute the correlation matrix of a time series generated by an ar2 model +#' @param ar_coef, the coefficients of the ar2 model: c(lag-1-coefficient, lag-2-coefficient) +#' @param T, the length of the time series +#' @return the correlation matrix +ar2_correlation_matrix <- function(ar_coef,T) { + + result <- rep(0,T) + result[1] <- 1 + result[2] <- ar_coef[1]/(1-ar_coef[2]) + for (t in 3:T){ + result[t] <- ar_coef[1]*result[t-1] + ar_coef[2]*result[t-2] + } + + index_matrix <- outer(1:T, 1:T, function(x,y){ abs(y-x)+1 }) + cor_matrix <- matrix(result[index_matrix],ncol = T,nrow = T) + + return(cor_matrix) +} + +#' Computes a density estimator by smoothing a histogram using Poisson regression. +#' Implementation of "Lindsey's method", as descrbied in Chapter 10 of +#' "Computer age statistical inference: algorithms, evidence, and data science' +#' by Bradley Efron and Trevor Hastie (2016). +#' +#' @param x - one-dimensional vector of data; +#' @param K - number of bins in the histogram; +#' @param deg - degree of natural splines used in Poisson regression; +#' @return a list with 2 fields, centers and density, which are K-dimensional vectors containing the bin centers and estimated density within each bin respectively. +#' @export lindsey_density_estimate +lindsey_density_estimate <- function(x,K,deg){ + x_min <- min(x) + x_max <- max(x) + range_x <- x_max - x_min + low_x <- x_min - 0.2*range_x # 20% step outside of range of x + up_x <- x_max + 0.2*range_x + range_full <-up_x- low_x + splits <- seq(low_x,up_x,length.out = K+1) # split the range into K segments + mesh_size <- splits[2] - splits[1] + centers <- (splits[-1]+splits[-(K+1)])/2 + counts <- as.vector(table(cut(x,splits,include.lowest = TRUE))) # counts the points in each segment + scale <- sum(counts)*mesh_size + + data_matrix <- splines::ns(centers, df = deg) + pois_reg_res <- glm(counts~data_matrix, family = 'poisson') + counts_pois <- exp(pois_reg_res$linear.predictors) # smoothed counts + dens_pois <- counts_pois/scale + + return(list(centers=centers, density=dens_pois)) +} + diff --git a/R_weighted/plot.R b/R_weighted/plot.R new file mode 100644 index 0000000..da92ff1 --- /dev/null +++ b/R_weighted/plot.R @@ -0,0 +1,464 @@ +#' Plots treated and synthetic control trajectories and overlays a 2x2 diff-in-diff diagram of our estimator. +#' In this overlay, the treatment effect is indicated by an arrow. +#' The weights lambda defining our synthetic pre-treatment time period are plotted below. +#' If a list of estimates is passed, plots all of them. By default, does this in different facets. +#' To overlay estimates in the same facet, indicate a facet for each estimator in the argument 'facet'. +#' +#' For SC estimates, i.e., if lambda is a vector of zeros, plots the trajectories and SC estimate of the effect, but no diagram. +#' +#' Requires ggplot2 +#' Due to differences between ggplot and ggplotly, this will warn about an unknown aesthetic frame. +#' +#' @param estimates, a list of estimates output by synthdid_estimate. Or a single estimate. +#' @param treated.name, the name of the treated curve that appears in the legend. Defaults to 'treated' +#' @param control.name, the name of the control curve that appears in the legend. Defaults to 'synthetic control' +#' @param spaghetti.units, a list of units to plot individually. spaghetti.unit %in% rownames(Y) must work. Defaults to the empty list. +#' @param spaghetti.matrices, a list of matrices --- one for each element of estimates --- of trajectories to plot individually. +#' The rows of these matrices should be the same length as the trajectories in Y +#' and they must be named --- set rownames(spaghetti.trajectories\[\[i\]\]) --- so trajectories can be labeled in the plot. +#' @param facet, a list of the same length as estimates indicating the facet in which to plot each estimate. +#' The values of the elements of the list are used to label the facets. +#' If NULL, plot each estimate in a different facet. Defaults to NULL. +#' @param facet.vertical, TRUE if facets should be stacked vertically. Defaults to FALSE (horizonal). +#' @param lambda.comparable, TRUE if the weights lambda should be plotted in such a way that the ribbons +#' have the same mass from plot to plot, assuming the treated curve is the same. Useful for side-by-side or overlaid plots. +#' Defaults to FALSE if facet is not passed, TRUE if passed. +#' @param overlay, a number in \[0,1\] defaulting to 0, can be used to shift the control trajectory toward the treated trajectory. +#' When a nonzero value is passed, we plot the control after subtracting +#' that fraction of the diff-in-diff style adjustment for the difference between lambda-weighted pre-treatment averages of the treated and control. +#' With intercept of almost one, this makes it easier to assess parallel-ness by making trajectories closer +#' With intercept of one, this essentially overlays the curves, and plotting a diagram is suppressed as in the case of a SC estimate. +#' To use different values for different plots, pass these values as an attribute 'overlay' of each estimate. +#' If a vector is passed, plots at different intercept levels indicated by the 'frame' aesthetic. ggplotly will interpret this as an animation. +#' @param lambda.plot.scale determines the scale of the plot of the weights lambda. +#' @param trajectory.linetype, the linetype of the treated and synthetic control trajectories +#' @param effect.curvature, the curvature of the arrows indicating the treatment effect. Defaults to zero. +#' Nonzero values help avoid overplotting when plotting multiple estimates in one facet. +#' @param line.width the line width. +#' @param guide.linetype determines the (ggplot) linetype of the vertical segments of the parallelogram +#' @param point.size determines the size of the points of the parallelogram +#' @param trajectory.alpha determines transparency of trajectories +#' @param diagram.alpha determines transparency of diff-in-diff diagram +#' @param effect.alpha determines transparency of effect arrows +#' @param onset.alpha determines transparency of vertical lines indicating onset of treatment +#' @param ci.alpha determines transparency of the arrows illustrating upper and lower bounds of a 95% confidence interval for the effect +#' @param spaghetti.line.width determines the width of spaghetti trajectories +#' @param spaghetti.label.size determines the size of spaghetti labels +#' @param spaghetti.line.alpha determines transparency of spaghetti trajectories +#' @param spaghetti.label.alpha determines transparency of spaghetti trajectory labels +#' @param se.method determines the method used to calculate the standard error used for this confidence interval. if 'none', don't show the interval +#' @param alpha.multiplier, a vector of the same length as estimates, is useful for comparing multiple estimates in +#' one facet but highlighting one or several. All plot elements associated with the estimate are displayed +#' with alpha multiplied by the corresponding element of alpha.multiplier. Defaults to a vector of ones. +#' @export synthdid_plot +synthdid_plot = function(estimates, treated.name = 'treated', control.name = 'synthetic control', + spaghetti.units = c(), spaghetti.matrices = NULL, + facet = NULL, facet.vertical = TRUE, lambda.comparable = !is.null(facet), overlay = 0, + lambda.plot.scale = 3, trajectory.linetype = 1, effect.curvature = .3, line.width = .5, guide.linetype = 2, point.size = 1, + trajectory.alpha = .5, diagram.alpha = .95, effect.alpha = .95, onset.alpha = .3, ci.alpha=.3, + spaghetti.line.width = .2, spaghetti.label.size = 2, + spaghetti.line.alpha = .3, spaghetti.label.alpha = .5, + se.method='jackknife', alpha.multiplier = NULL) { + if (requireNamespace("ggplot2", quietly = TRUE)) { + .ignore <- tryCatch(attachNamespace("ggplot2"), error = function(e) e) + } else { + stop("Plotting requires the package `ggplot2`. Install it to use this function.") + } + if (class(estimates) == 'synthdid_estimate') { estimates = list(estimates) } + if (is.null(names(estimates))) { names(estimates) = sprintf('estimate %d', 1:length(estimates)) } + if (is.null(alpha.multiplier)) { alpha.multiplier = rep(1, length(estimates)) } + if (!is.null(spaghetti.matrices) && length(spaghetti.matrices) != length(estimates)) { stop('spaghetti.matrices must be the same length as estimates') } + multiple.frames = length(overlay) > 1 + treated = 1 + control = 2 + groups = factor(c(control, treated), labels = c(control.name, treated.name)) + estimate.factors = factor(1:(length(estimates) + 1), labels = c(treated.name, names(estimates))) + facet_factors = if (is.null(facet)) { + factor(1:length(estimates), labels = names(estimates)) + } else { + factor(facet, levels = 1:length(unique(facet)), labels = unique(facet)) + } + grid = expand.grid(estimate = 1:length(estimates), overlay = 1:length(overlay)) + plot.descriptions = lapply(1:nrow(grid), function(row) { + est = estimates[[grid$estimate[row]]] + over = overlay[grid$overlay[row]] + se = if(se.method == 'none') { NA } else { sqrt(vcov(est, method=se.method)) } + setup = attr(est, 'setup') + weights = attr(est, 'weights') + Y = setup$Y - contract3(setup$X, weights$beta) + N0 = setup$N0; N1 = nrow(Y) - N0 + T0 = setup$T0; T1 = ncol(Y) - T0 + + lambda.synth = c(weights$lambda, rep(0, T1)) + lambda.target = c(rep(0, T0), rep(1 / T1, T1)) + omega.synth = c(weights$omega, rep(0, N1)) + omega.target = c(rep(0, N0), rep(1 / N1, N1)) + + # pull estimate-specific overlay from attribute if present + # if we're given a synthetic control estimate or overlay is one, take note: we'll plot it differently + if (!is.null(attr(est, 'overlay'))) { over = attr(est, 'overlay') } + is.sc = all(weights$lambda == 0) || over==1 + + intercept.offset = over * c((omega.target - omega.synth) %*% Y %*% lambda.synth) + obs.trajectory = as.numeric(omega.target %*% Y) + syn.trajectory = as.numeric(omega.synth %*% Y) + intercept.offset + spaghetti.trajectories = Y[rownames(Y) %in% spaghetti.units, , drop=FALSE] + if(!is.null(spaghetti.matrices)) { + more.spaghetti.trajectories = spaghetti.matrices[[grid$estimate[row]]] + if(ncol(more.spaghetti.trajectories) != ncol(Y)) { stop('The elements of spaghetti.matrices must be matrices with the same number of columns as Y') } + if(is.null(rownames(more.spaghetti.trajectories))) { stop('The elements of the list spaghetti.matrices must have named rows') } + spaghetti.trajectories = rbind(spaghetti.trajectories, more.spaghetti.trajectories) + } + + treated.post = omega.target %*% Y %*% lambda.target + treated.pre = omega.target %*% Y %*% lambda.synth + control.post = omega.synth %*% Y %*% lambda.target + intercept.offset + control.pre = omega.synth %*% Y %*% lambda.synth + intercept.offset + sdid.post = as.numeric(control.post + treated.pre - control.pre) + + time = as.numeric(timesteps(Y)) + if (length(time) == 0 || !all(is.finite(time))) { time = 1:(T0 + T1) } + pre.time = lambda.synth %*% time + post.time = lambda.target %*% time + + # construct objects on graph + lines = data.frame(x = rep(time, 2), + y = c(obs.trajectory, syn.trajectory), + color = rep(groups[c(treated, control)], each = length(time))) + points = data.frame(x = c(post.time, post.time), y = c(treated.post, sdid.post), color = groups[c(treated, control)]) + did.points = data.frame(x = c(pre.time, pre.time, post.time, post.time), + y = c(treated.pre, control.pre, control.post, treated.post), + color = groups[c(treated, control, control, treated)]) + did.segments = data.frame(x = c(pre.time, pre.time), + xend = c(post.time, post.time), + y = c(control.pre, treated.pre), + yend = c(control.post, treated.post), + color = groups[c(control, treated)]) + hallucinated.segments = data.frame(x = pre.time, xend = post.time, y = treated.pre, yend = sdid.post) + guide.segments = data.frame(x = c(pre.time, post.time), + xend = c(pre.time, post.time), + y = c(control.pre, control.post), + yend = c(treated.pre, sdid.post)) + arrows = data.frame(x = post.time, xend = post.time, y = sdid.post, yend = treated.post, + xscale = max(time) - post.time, color = groups[control]) + ub.arrows = data.frame(x = post.time, xend = post.time, y = sdid.post + 1.96*se, yend = treated.post, + xscale = max(time) - post.time, color = groups[control]) + lb.arrows = data.frame(x = post.time, xend = post.time, y = sdid.post - 1.96*se, yend = treated.post, + xscale = max(time) - post.time, color = groups[control]) + spaghetti.lines = data.frame(x=rep(time, nrow(spaghetti.trajectories)), + y=as.vector(t(spaghetti.trajectories)), + unit=rep(rownames(spaghetti.trajectories), each=length(time))) + spaghetti.labels = data.frame(x=rep(time[1], nrow(spaghetti.trajectories)), + y=as.vector(spaghetti.trajectories[,1]), + unit=rownames(spaghetti.trajectories)) + + + T0s = attr(est, 'T0s') + if (!is.null(T0s)) { + vlines = data.frame(xintercept = time[T0s]) + } else { + vlines = data.frame(xintercept = time[T0]) + } + + if (lambda.comparable) { + height = (max(c(obs.trajectory)) - min(c(obs.trajectory))) / lambda.plot.scale + bottom = min(c(obs.trajectory)) - height + ribbons = data.frame(x = time[1:T0], ymin = rep(bottom, T0), ymax = bottom + height * lambda.synth[1:T0], color = groups[control]) + } else { + height = (max(c(obs.trajectory, syn.trajectory)) - min(c(obs.trajectory, syn.trajectory))) / lambda.plot.scale + bottom = min(c(obs.trajectory, syn.trajectory)) - height + ribbons = data.frame(x = time[1:T0], ymin = rep(bottom, T0), ymax = bottom + height * lambda.synth[1:T0] / max(lambda.synth), color = groups[control]) + } + elements = list(lines = lines, points = points, did.segments = did.segments, did.points = did.points, + hallucinated.segments = hallucinated.segments, guide.segments = guide.segments, + arrows = arrows, lb.arrows = lb.arrows, ub.arrows = ub.arrows, spaghetti.lines=spaghetti.lines, spaghetti.labels=spaghetti.labels, + vlines = vlines, ribbons = ribbons) + lapply(elements, function(x) { + if(nrow(x) > 0) { + x$frame = over + x$is.sc = is.sc + x$estimate = estimate.factors[grid$estimate[row] + 1] # offset because the treated pseudo-estimate factor is first + } + x + }) + }) + + + one.per.facet = length(unique(facet_factors)) == length(facet_factors) + concatenate.field = function(field) { + do.call(rbind, lapply(plot.descriptions, function(desc) { + element = desc[[field]] + estimate.factor = element$estimate[1] + element$facet = facet_factors[as.integer(estimate.factor) - 1] # offset because the treated pseudo-estimate factor is first + element$show = alpha.multiplier[as.integer(element$estimate) - 1] # " + element$show[element$color == groups[treated]] = 1 # show treated observations + # if there are multiple plots per facet, color by estimator rather than by treatment/control + # make all treated observations the same color, assuming that we're using only one treated observation per facet + if (!one.per.facet && 'color' %in% colnames(element)) { + color = element$estimate + color[element$color == groups[treated]] = estimate.factors[1] # treated `estimate factor' + element$color = color + } + # if there are multiple plots per facet, curve treatment effect arrows so they don't lie on top of one another + element + })) + } + conc = lapply(names(plot.descriptions[[1]]), concatenate.field) + names(conc) = names(plot.descriptions[[1]]) + no.sc = function(x) { x[!x$is.sc, ] } + + # invoke the geom with 'frame=frame' included in the aesthetic only if there are multiple frames + # This cuts down on warnings without restricting function. + # ggplotly understands frame and uses it to create animations if there are multiple + # ggplot2's display doesn't and warns 'ignoring unknown aesthetic' if you include it + # returns geom(aes, data=data, ...) where aes=base.aes if there's a single frame + # aes=(base.aes, frame=frame) if there's more than one + with.frame = function(geom, base.aes, data, ...) { + new.aes = if(multiple.frames) { modifyList(base.aes, aes(frame=frame)) } else { base.aes } + do.call(geom, c(list(new.aes, data=data), list(...))) + } + + p = ggplot() + + with.frame(geom_line, aes(x = x, y = y, color = color, alpha = trajectory.alpha * show), data = conc$lines, + linetype = trajectory.linetype, size = line.width) + + with.frame(geom_point, aes(x = x, y = y, color = color, alpha = diagram.alpha * show), data = conc$points, + shape = 21, size = point.size) + + with.frame(geom_point, aes(x = x, y = y, color = color, alpha = diagram.alpha * show), data = no.sc(conc$did.points), + size = point.size) + + with.frame(geom_segment, aes(x = x, xend = xend, y = y, yend = yend, color = color, alpha = diagram.alpha * show), data = no.sc(conc$did.segments), + size = line.width) + + with.frame(geom_segment, aes(x = x, xend = xend, y = y, yend = yend, group = estimate, alpha = .6 * diagram.alpha * show), data = no.sc(conc$hallucinated.segments), + linetype = guide.linetype, size = line.width, color = 'black') + + with.frame(geom_segment, aes(x = x, xend = xend, y = y, yend = yend, group = estimate, alpha = .5 * diagram.alpha * show), data = no.sc(conc$guide.segments), + size = line.width, linetype = guide.linetype, color = 'black') + + geom_vline(aes(xintercept = xintercept, alpha = onset.alpha * show), data = conc$vlines, + size = line.width, color = 'black') + + geom_ribbon(aes(x = x, ymin = ymin, ymax = ymax, group = color, fill = color, alpha = .5 * diagram.alpha * show), data = no.sc(conc$ribbons), + color = 'black', size = line.width, show.legend = FALSE) + + geom_curve(aes(x = x, xend = xend, y = y, yend = yend, alpha = effect.alpha * show), data = conc$arrows, + curvature = effect.curvature, color = 'black', size = line.width, arrow = arrow(length = unit(.2, 'cm'))) + + geom_curve(aes(x = x, xend = xend, y = y, yend = yend, alpha = ci.alpha * show), data = conc$ub.arrows, na.rm=TRUE, + curvature = effect.curvature, color = 'black', size = line.width, arrow = arrow(length = unit(.2, 'cm'))) + + geom_curve(aes(x = x, xend = xend, y = y, yend = yend, alpha = ci.alpha * show), data = conc$lb.arrows, na.rm=TRUE, + curvature = effect.curvature, color = 'black', size = line.width, arrow = arrow(length = unit(.2, 'cm'))) + + # plot spaghetti if there is any + if(nrow(conc$spaghetti.labels) > 0) { + p = p + geom_text(aes(x=x, y=y, label = unit, alpha = spaghetti.label.alpha * show), data = conc$spaghetti.labels, + color='black', size=spaghetti.label.size) + + geom_line(aes(x=x, y=y, group = unit, alpha = spaghetti.line.alpha * show), data = conc$spaghetti.lines, + color='black', size=spaghetti.line.width) + } + + # facet if we want multiple facets + if (!all(conc$lines$facet == conc$lines$facet[1])) { + if (facet.vertical) { p = p + facet_grid(facet ~ ., scales = 'free_y') } + else { p = p + facet_grid(. ~ facet) } + } + # if only one estimate per facet, exclude estimate-denoting linetype from legend + if (is.null(facet)) { p = p + guides(linetype = 'none') } + + # if timesteps(Y) is a date, the x coordinates in our plot are as.numeric(timesteps(Y)) + # that's in units of days since the unix epoch: 1970-01-01 + # to improve readability, display ticks as Dates + p = tryCatch({ + as.Date(colnames(attr(estimates[[1]], 'setup')$Y)) + p + scale_x_continuous(labels = function(time) { as.Date(time, origin = '1970-01-01') }) + }, error = function(e) { p }) + + p + xlab('') + ylab('') + labs(color = '', fill = '') + scale_alpha(guide = 'none') + + theme_light() + theme(legend.direction = "horizontal", legend.position = "top") +} + + + +#' For our estimator and a placebo, plots treated and synthetic control trajectories and overlays a 2x2 diff-in-diff diagram. +#' Requires ggplot2 +#' @param estimate, as output by synthdid_estimate. +#' @param overlay, binary, indicates whether plots should be overlaid or shown in different facets. Defaults to FALSE. +#' @param treated.fraction as in synthdid_placebo +#' @export synthdid_placebo_plot +synthdid_placebo_plot = function(estimate, overlay = FALSE, treated.fraction = NULL) { + if (requireNamespace("ggplot2", quietly = TRUE)) { + .ignore <- tryCatch(attachNamespace("ggplot2"), error = function(e) e) + } else { + stop("Plotting requires the package `ggplot2`. Install it to use this function.") + } + estimates = list(estimate = estimate, placebo = synthdid_placebo(estimate, treated.fraction = treated.fraction)) + synthdid_plot(estimates, facet = if (overlay) { c(1, 1) } else { NULL }) +} + +#' Plots unit by unit difference-in-differences. Dot size indicates the weights omega_i +#' used in the average that yields our treatment effect estimate. +#' This estimate and endpoints of a 95% CI are plotted as horizontal lines. +#' Requires ggplot2 +#' @param estimates as output by synthdid_estimate. Can be a single one or a list of them. +#' @param negligible.threshold Unit weight threshold below which units are plotted as small, transparent xs instead of circles. Defaults to .001. +#' @param negligible.alpha Determines transparency of those xs. +#' @param se.method the method used to calculate standard errors for the CI. See vcov.synthdid_estimate. +#' Defaults to 'jackknife' for speed. If 'none', don't plot a CI. +#' @param units a list of control units --- elements of rownames(Y) --- to plot differences for. Defaults to NULL, meaning all of them. +#' @export synthdid_units_plot +synthdid_units_plot = function(estimates, negligible.threshold = .001, negligible.alpha = .3, se.method='jackknife', units=NULL) { + if (requireNamespace("ggplot2", quietly = TRUE)) { + .ignore <- tryCatch(attachNamespace("ggplot2"), error = function(e) e) + } else { + stop("Plotting requires the package `ggplot2`. Install it to use this function.") + } + if (class(estimates) == 'synthdid_estimate') { estimates = list(estimates) } + if (is.null(names(estimates))) { names(estimates) = sprintf('estimate %d', 1:length(estimates)) } + plot.data = do.call(rbind, lapply(1:length(estimates), function(ee) { + estimate = estimates[[ee]] + setup = attr(estimate, 'setup') + weights = attr(estimate, 'weights') + Y = setup$Y - contract3(setup$X, weights$beta) + N0 = setup$N0; N1 = nrow(Y) - N0 + T0 = setup$T0; T1 = ncol(Y) - T0 + + lambda.pre = c(weights$lambda, rep(0, T1)) + lambda.post = c(rep(0, T0), rep(1 / T1, T1)) + omega.control = c(weights$omega, rep(0, N1)) + omega.treat = c(rep(0, N0), rep(1 / N1, N1)) + difs = as.vector(t(omega.treat) %*% Y %*% (lambda.post - lambda.pre)) - as.vector(Y[1:N0, ] %*% (lambda.post - lambda.pre)) + se = if (se.method == 'none') { NA } else { sqrt(vcov(estimate, method=se.method)) } + include.units = if(is.null(units)) { 1:N0 } else { which(rownames(Y)[1:N0] %in% units) } + data.frame(y = difs[include.units], unit = rownames(Y)[include.units], weight = omega.control[include.units], + estimate = c(estimate), se = se, estimator = names(estimates)[[ee]]) + })) + p = ggplot(plot.data) + + geom_point(aes(x = unit, y = y, size = weight), data = plot.data[plot.data$weight > negligible.threshold, ]) + + geom_point(aes(x = unit, y = y, size = weight), data = plot.data[plot.data$weight <= negligible.threshold, ], alpha = negligible.alpha, shape = 4, show.legend = FALSE) + + geom_hline(aes(yintercept = estimate), size = .75) + if (!all(is.na(plot.data$se))) { + p = p + geom_hline(aes(yintercept = estimate - 1.96 * se), size = .5, alpha = .5) + + geom_hline(aes(yintercept = estimate + 1.96 * se), size = .5, alpha = .5) + } + p + facet_grid(. ~ estimator) + xlab('') + ylab('') + guides(shape = 'none') + + theme_light() + theme(axis.text.x = element_text(angle = 90, hjust = 1)) +} + + +#' A diagnostic plot for sc.weight.fw.covariates. Plots the objective function, regularized RMSE, +#' as a function of the number of Frank-Wolfe / Gradient steps taken. +#' Requires ggplot2 +#' @param estimates, a list of estimates output by synthdid_estimate. Or a single estimate. +#' @export synthdid_rmse_plot +synthdid_rmse_plot = function(estimates) { # pass an estimate or list of estimates + if (requireNamespace("ggplot2", quietly = TRUE)) { + .ignore <- tryCatch(attachNamespace("ggplot2"), error = function(e) e) + } else { + stop("Plotting requires the package `ggplot2`. Install it to use this function.") + } + if (class(estimates) == 'synthdid_estimate') { estimates = list(estimates) } + if (is.null(names(estimates))) { names(estimates) = sprintf('estimate %d', 1:length(estimates)) } + rmse = lapply(estimates, function(est) { sqrt(attr(est, 'weights')$vals) }) + plot.data = data.frame(rmse = unlist(rmse), + iteration = unlist(lapply(rmse, function(vals) { 1:length(vals) })), + method = unlist(mapply(function(vals, name) { rep(factor(name), length(vals)) }, rmse, names(estimates), SIMPLIFY = FALSE))) + ggplot(plot.data[!is.na(plot.data$rmse), ]) + geom_line(aes(x = iteration, y = rmse, color = method)) + scale_y_log10() + + theme_light() + theme(legend.direction = "horizontal", legend.position = "top") + labs(color = '') +} + +#' Plot a synthdid object +#' @param x The object to plot +#' @param ... Additional arguments (currently ignored). +#' @method plot synthdid_estimate +#' @export +plot.synthdid_estimate = function(x, ...) { + if (requireNamespace("ggplot2", quietly = TRUE)) { + .ignore <- tryCatch(attachNamespace("ggplot2"), error = function(e) e) + } else { + stop("Plotting requires the package `ggplot2`. Install it to use this function.") + } + synthdid_plot(x, ...) +} + + +# ============================================================================= +# WEIGHTED VERSIONS +# ============================================================================= + +#' Plots treated and synthetic control trajectories for weighted estimates. +#' Similar to synthdid_plot but accounts for user-specified treated.weights and period.weights. +#' +#' @param estimates, a list of weighted estimates output by synthdid_estimate_weighted. Or a single estimate. +#' @param treated.name, the name of the treated curve that appears in the legend. Defaults to 'treated' +#' @param control.name, the name of the control curve that appears in the legend. Defaults to 'synthetic control' +#' @param ... Additional arguments passed to synthdid_plot +#' @export synthdid_plot_weighted +synthdid_plot_weighted = function(estimates, treated.name = 'treated (weighted)', control.name = 'synthetic control', ...) { + if (requireNamespace("ggplot2", quietly = TRUE)) { + .ignore <- tryCatch(attachNamespace("ggplot2"), error = function(e) e) + } else { + stop("Plotting requires the package `ggplot2`. Install it to use this function.") + } + if (class(estimates) == 'synthdid_estimate_weighted') { estimates = list(estimates) } + if (is.null(names(estimates))) { names(estimates) = sprintf('estimate %d', 1:length(estimates)) } + + # For weighted estimates, we modify the treatment weights internally + # The synthdid_plot function uses rep(1/N1, N1) for treated units + # For weighted estimates, we replace omega.target with treated.weights + # This requires modifying plot.descriptions generation + + # For now, we can use the base synthdid_plot but the treated trajectory + # will show the weighted average of treated units + + # Create modified estimates where we store the weighted average + modified_estimates = lapply(estimates, function(est) { + setup = attr(est, 'setup') + treated.weights = attr(est, 'treated.weights') + period.weights = attr(est, 'period.weights') + N0 = setup$N0 + N1 = nrow(setup$Y) - N0 + T0 = setup$T0 + T1 = ncol(setup$Y) - T0 + + # Create a new Y matrix where the treated units are collapsed to a single weighted row + Y_control = setup$Y[1:N0, , drop = FALSE] + Y_treated = setup$Y[(N0+1):(N0+N1), , drop = FALSE] + Y_treated_weighted = as.matrix(treated.weights %*% Y_treated) + rownames(Y_treated_weighted) = "Treated (weighted)" + + Y_new = rbind(Y_control, Y_treated_weighted) + + # Create a new estimate with the modified setup + new_setup = list(Y = Y_new, N0 = N0, T0 = T0, X = array(dim = c(N0+1, T0+T1, 0))) + new_est = est + attr(new_est, 'setup') = new_setup + + new_est + }) + + # Use synthdid_plot with modified estimates + synthdid_plot(modified_estimates, treated.name = treated.name, control.name = control.name, ...) +} + +#' For weighted estimator and a placebo, plots treated and synthetic control trajectories. +#' Requires ggplot2 +#' @param estimate, as output by synthdid_estimate_weighted. +#' @param overlay, binary, indicates whether plots should be overlaid or shown in different facets. Defaults to FALSE. +#' @param treated.fraction as in synthdid_placebo_weighted +#' @export synthdid_placebo_plot_weighted +synthdid_placebo_plot_weighted = function(estimate, overlay = FALSE, treated.fraction = NULL) { + if (requireNamespace("ggplot2", quietly = TRUE)) { + .ignore <- tryCatch(attachNamespace("ggplot2"), error = function(e) e) + } else { + stop("Plotting requires the package `ggplot2`. Install it to use this function.") + } + estimates = list(estimate = estimate, placebo = synthdid_placebo_weighted(estimate, treated.fraction = treated.fraction)) + synthdid_plot_weighted(estimates, facet = if (overlay) { c(1, 1) } else { NULL }) +} + +#' Plot a weighted synthdid object +#' @param x The object to plot +#' @param ... Additional arguments (currently ignored). +#' @method plot synthdid_estimate_weighted +#' @export +plot.synthdid_estimate_weighted = function(x, ...) { + if (requireNamespace("ggplot2", quietly = TRUE)) { + .ignore <- tryCatch(attachNamespace("ggplot2"), error = function(e) e) + } else { + stop("Plotting requires the package `ggplot2`. Install it to use this function.") + } + synthdid_plot_weighted(x, ...) +} diff --git a/R_weighted/print.R b/R_weighted/print.R new file mode 100644 index 0000000..136b672 --- /dev/null +++ b/R_weighted/print.R @@ -0,0 +1,22 @@ +#' Print a synthdid object +#' @param x The object to print +#' @param ... Additional arguments (currently ignored). +#' @method print synthdid_estimate +#' @export +print.synthdid_estimate = function(x, ...) { cat(format(x, ...), "\n") } + +#' Print a weighted synthdid object +#' @param x The object to print +#' @param ... Additional arguments (currently ignored). +#' @method print synthdid_estimate_weighted +#' @export +print.synthdid_estimate_weighted = function(x, ...) { cat(format(x, ...), "\n") } + +#' Format a weighted synthdid object +#' @param x The object to format +#' @param ... Additional arguments (currently ignored). +#' @method format synthdid_estimate_weighted +#' @export +format.synthdid_estimate_weighted = function(x, ...) { + sprintf("synthdid_estimate_weighted: %.3f", c(x)) +} diff --git a/R_weighted/reference-solver.R b/R_weighted/reference-solver.R new file mode 100644 index 0000000..88ffa69 --- /dev/null +++ b/R_weighted/reference-solver.R @@ -0,0 +1,35 @@ +# return x minimizing ||Ax - b||^2 + zeta^2 n || x ||^2 if intercept=FALSE +# | x minimizing min_x0 || + ||Ax + x0 - b||^2 + zeta^2 n || x ||^2 if intercept=TRUE +# here n = length(b) +simplex.least.squares = function(A, b, zeta = 0, intercept = FALSE) { + x = CVXR::Variable(ncol(A)) + constraints = list(sum(x) == 1, x >= 0) + if(intercept) { + x0 = CVXR::Variable(1) + objective = sum((A %*% x + x0 - b)^2) + zeta^2 * length(b) * sum(x^2) + } else { + objective = sum((A %*% x - b)^2) + zeta^2 * length(b) * sum(x^2) + } + cvx.problem = CVXR::Problem(CVXR::Minimize(objective), constraints) + cvx.output = CVXR::solve(cvx.problem, solver = 'ECOS') + as.numeric(cvx.output$getValue(x)) +} + + +sigma.default = function(Y, N0, T0) { sd(apply(Y[1:N0,1:T0], 1, diff)) } +epsilon = 1e-6 +synthdid.reference = function(Y, N0, T0, zeta.omega=((nrow(Y)-N0)*(ncol(Y)-T0))^(1/4) * sigma.default(Y, N0, T0)) { + N = nrow(Y); T=ncol(Y); N1 = N-N0; T1=T-T0; + lambda = simplex.least.squares(Y[1:N0, 1:T0], rowMeans(Y[1:N0, (T0+1):T, drop=FALSE]), zeta=epsilon*sigma.default(Y,N0,T0), intercept=TRUE) + omega = simplex.least.squares(t(Y[1:N0, 1:T0]), colMeans(Y[(N0+1):N, 1:T0, drop=FALSE]), zeta=zeta.omega, intercept=TRUE) + estimate = t(c(-omega, rep(1/N1, N1))) %*% Y %*% c(-lambda, rep(1/T1, T1)) +} +sc.reference = function(Y, N0, T0, zeta.omega=1e-6 * sigma.default(Y, N0, T0)) { + N = nrow(Y); T=ncol(Y); N1 = N-N0; T1=T-T0; + omega = simplex.least.squares(t(Y[1:N0, 1:T0]), colMeans(Y[(N0+1):N, 1:T0, drop=FALSE]), zeta=zeta.omega, intercept=FALSE) + estimate = t(c(-omega, rep(1 / N1, N1))) %*% Y %*% c(-rep(0, T0), rep(1/T1, T1)) +} +did.reference = function(Y, N0, T0) { + N = nrow(Y); T=ncol(Y); N1 = N-N0; T1=T-T0; + estimate = t(c(-rep(1/N0, N0), rep(1 / N1, N1))) %*% Y %*% c(-rep(1/T0, T0), rep(1 / T1, T1)) +} diff --git a/R_weighted/sdid_weights.R b/R_weighted/sdid_weights.R new file mode 100644 index 0000000..74617aa --- /dev/null +++ b/R_weighted/sdid_weights.R @@ -0,0 +1,624 @@ + +## OPEN ISSUES +# 1) Weighting of ATE in model where an individual ATE is calculated for each +# treated unit (right now, using average pre-treatment weight) +# 2) Covariates + + +## Preliminaries + +## Set up libraries +library(tidyverse) +library(boot) +library(data.table) +library(synthdid) +library(modelsummary) +library(fixest) +library(huxtable) + +## Set up directories - change to local directory +directory <- "/Users/johniselin/Library/CloudStorage/Dropbox/sdid_weights" +results <- file.path(directory,"results") +data <- file.path(directory,"data") + +setwd(directory) + +## Set Seed +set.seed(5) + +# Define Monte Carlo simulation parameters +N_states <- 100 # Number of states +T_periods <- 20 # Number of time periods +N_simulations <- 100 # Number of simulations +treatment_period <- 10 # Time period after which treatment is allocated +treatment_state <- 20 # Max state number for treatment (i.e. states 1 - X are treated) +treatment_size <- 2 # True treatment effect +bootstrap_size <- 50 + +### DEFINE FUNCTIONS + +## DATA GENERATION +f_data_gen <- function(N_states, + T_periods, + treatment_period, + treatment_type = 1, + treatment_size = 1, + state_gen_struc = 1, + state_fe_m = 5, + state_fe_sd = 1, + time_fe_m = 3, + time_fe_sd = 1, + pop_min = 10, + pop_max = 20, + rate = 0.02) { + + # Generate synthetic panel data + tmp_data <- expand.grid(state = 1:N_states, # Number of States + period = 1:T_periods) %>% # Number of Periods + mutate( + # Assign treatment status to states + treated = ifelse(state <= treatment_state,1,0), + # Assign treatment status to state X period + did = ifelse(state <= treatment_state & period >= treatment_period, 1, 0), + # Generate random error term + e = rnorm(n(), mean = 0, sd = 1) + ) %>% + ## Group by state and create state FE + group_by(state) %>% + mutate(state_fe = rnorm(1, mean = state_fe_m, sd = state_fe_m)) %>% + ungroup() %>% + ## Group by period and create time FE + group_by(period) %>% + mutate(period_fe = rnorm(1, mean = time_fe_m, sd = time_fe_sd)) %>% + ungroup() %>% + ## Group by state and create population + arrange(state, period) %>% + group_by(state) %>% + mutate(tmp = runif(1,0,1), + pop_initial = runif(1,pop_min, pop_max)) %>% + mutate(r = ifelse(tmp > 0.5, rate, rate * (-1))) %>% + mutate(pop = pop_initial * (1 + r)^period) %>% + ungroup() %>% + select(-tmp, -pop_initial, -r) + + + # Homogeneous treatment - same effect size across state and period + if (treatment_type == 1) { + + tmp_data <- tmp_data %>% mutate(treatment_effect = did * treatment_size) + + } + + # Heterogeneous treatment - Effect varies with state FE + else if (treatment_type == 2) { + + tmp_data <- tmp_data %>% + mutate(treatment_effect = did * treatment_size * (1 + (state_fe-state_fe_m)/state_fe_m)) + } + + # Heterogeneous treatment - Effect varies with state weight + else if (treatment_type == 3) { + + tmp_data <- tmp_data %>% + group_by(period) %>% mutate(pop_mean = mean(pop)) %>% ungroup() %>% + mutate( + treatment_effect = did * treatment_size * (1 + (pop - pop_mean)/pop_mean)) %>% + select(-pop_mean) + + } + + # Additive FE + if (state_gen_struc == 1) { + + tmp_data <- tmp_data %>% + mutate( y = state_fe + period_fe + e + treatment_effect) + + } + + # Interactive FE + else if (state_gen_struc == 2) { + + tmp_data <- tmp_data %>% + mutate( y = state_fe + period_fe + state_fe * period_fe + e + treatment_effect) + + } + + # Combine + return(tmp_data) + +} + +## DEFINE COVARIATEs SDID SETUP FUNCTION +setup_function <- function(data, + unit, + time, + treatment, + covar_list){ + + table <- data + + colnames(table)[colnames(table) == unit] <- 'unit' + colnames(table)[colnames(table) == time] <- 'time' + colnames(table)[colnames(table) == outcome] <- 'outcome' + colnames(table)[colnames(table) == treatment] <- 'treatment' + + table <- table %>% group_by(unit) %>% mutate(ever_treat = max(treatment)) + table <- table %>% arrange(ever_treat, unit, time) + + Y <- array(table[['outcome']], dim=c(N_states, T_periods, 1)) + N0 <- table %>% group_by(unit) %>% summarize(ever_treat = max(ever_treat)) %>% ungroup() %>% summarize(count = sum(ever_treat)) %>% as.numeric() + T0 <- treatment_period - 1 + + table <- table %>% arrange(treatment, time, unit) + + list_covs <- c() + for(cv in covar_list){ + list_covs <- c(list_covs, as.vector(table[[cv]])) + } + + ## Create new version of table sorted by treatment, time, and unit + table <- data %>% arrange(treatment, time, unit) + + ## Create empty list + list_covs <- c() + + ## Loop over each covariate + for(cv in covar_list){ + + ## Add covariate to list + list_covs <- c(list_covs, as.vector(table[[cv]])) + + } + + ## Create array of correct format + x <- array(list_covs, dim=c(N_states, T_periods, length(covar_list))) + + return(x) +} + + +## DEFINE BOOTSTRAP FUNCTION FOR WEIGHTED AVERAGE VERSION +boot_model1 <- function(data, indices ){ + + ## Set up data (in wide format so that rows = states) + data <- data[indices,] + + ## Reshape long (state X period) + reshape_data <- data %>% + pivot_longer(cols = !state, + names_to = c(".value", "period"), + names_pattern = "(.*)_(.*)") %>% + data.frame(reshape_data) %>% + mutate(period = as.numeric(period)) + + ## Check that there are treated and control units + temp3 <- reshape_data %>% group_by(treated) %>% summarize(count = n()) + t <- as.numeric(temp3[1,2]) + c <- as.numeric(temp3[2,2]) + + if(t == 0 | c == 0 ) { + print("Skipped") + } + else { + + ## Take the weighted average of the treated units + avg_data <- reshape_data %>% + mutate(weight = !! sym(weight_var)) %>% + mutate(collapse_var = ifelse(treated == 1, 1, state)) %>% + group_by(collapse_var, period) %>% + summarise(y = weighted.mean(y,weight), + did = mean(did), + treated = mean(treated), + .groups = "drop_last") %>% + ungroup() %>% + rename(state = collapse_var) + + ## Basic set-up + setup <- avg_data %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## RUN SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + sum_est <- summary(est) + ate <- sum_est$estimate + return(ate) + + } + +} + + +## DEFINE BOOTSTRAP FUNCTION FOR WEIGHTED AVERAGE OF INDIVIDUAL SDID VERSION +boot_model2 <- function(data, indices ){ + + ## Set up data (in wide format so that rows = states) + data <- data[indices,] + + ## Reshape long (state X period) + reshape_data <- data %>% + pivot_longer(cols = !state, + names_to = c(".value", "period"), + names_pattern = "(.*)_(.*)") %>% + data.frame(reshape_data) %>% + mutate(period = as.numeric(period)) + + ## Check that there are treated and control units + temp3 <- reshape_data %>% group_by(treated) %>% summarize(count = n()) + t <- as.numeric(temp3[1,2]) + c <- as.numeric(temp3[2,2]) + + if(t == 0 | c == 0 ) { + print("Skipped") + } + else { + + ## Construct a dataset of treated units and their weights + treated <- data %>% + mutate(weight = !!sym(weight_var)) %>% + filter(treated == 1 & did == 0) %>% + select(state, period, weight) %>% + group_by(state) %>% + summarise(weight = mean(weight)) %>% + ungroup() %>% + mutate(ate = NA) + + ## Construct a list of treated states + treated_list <- treated %>% select(state) %>% unique() %>% as.list() + treated_list <- treated_list[[1]] + + ## Loop over each treated state + for (s in treated_list) { + + ## Basic set-up, keeping only one treated state + control states + setup <- data %>% + filter(treated == 0 | state == s) %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## Run SDID + tmp_est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + tmp_sum_est <- summary(tmp_est) + tmp_ate <- tmp_sum_est$estimate + + ## Add ATE to dataset + treated <- treated %>% mutate(ate = if_else(state == s, tmp_ate, ate)) + + } + + ## Get weighted average of ATE + ate <- treated %>% + summarise(ate = weighted.mean(ate,weight)) %>% + ungroup() %>% + as.numeric() + + return(ate) + + } + +} + + +## DEFINE SDID FUNCTION +f_sdid <- function(data, + weighted = 0, + weight_var = FALSE, + covar_list = FALSE, # MAKE EMPTY LIST + calc_se = 0, # 0 = no SEs, 1 = calculate SEs + n_boot = 100 + ) { + + ## OPTION 1: No weights + if (weighted == 0) { + + ## Display weights + print("Run without weights") + + ## Basic set-up + setup <- data %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## COVARIATES + if (covar_list != FALSE) { + + ## Create array of covariates + x <- setup_function(data, state, period, treated, covar_list = covar_list) + + ## Run SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0, X = x) + } + + ## NO COVARIATES + else { + + ## Run SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + + } + + ## Run SDID + sum_est <- summary(est) + + ## Store ATE + ate <- sum_est$estimate + + ## Store SE + if (calc_se == 1) { + se <- sum_est$se + } + else { + se = NA + } + + ## Store list for export + val <- c(ate, se) + } + + ## OPTION 2: Run using weights, using a weighted average treated unit + if (weighted == 1) { + + ## Check that weighting variable was specified + if (weight_var == FALSE) { + print("No weighting variable specified") + break + } + else { + print(paste("Weighting variable ", weight_var)) + } + + ## Take the weighted average of the treated units + avg_data <- data %>% + mutate(collapse_var = ifelse(treated == 1, 1, state)) %>% + mutate(weight = !! sym(weight_var)) %>% + group_by(collapse_var, period) %>% + summarise(y = weighted.mean(y, weight), + did = mean(did), + treated = mean(treated), + .groups = "keep") %>% + ungroup() %>% + rename(state = collapse_var) + + ## Basic set-up + setup <- avg_data %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## COVARIATES + if (covar_list != FALSE) { + + ## Create array of covariates + x <- setup_function(data, state, period, treated, covar_list = covar_list) + + ## Run SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0, X = x) + } + + ## NO COVARIATES + else { + + ## Run SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + + } + + ## RUN SDID + est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + + + sum_est <- summary(est) + + ## Store ATE + ate <- sum_est$estimate + + ## Store SE + if (calc_se == 1) { + + ## Reshape data so that the boot function index option works + boot_data <- data %>% + pivot_wider(id_cols = state, names_from = period, values_from = c(y, pop, did, treated)) + + ## Run boostrap command + boot_est <- boot(boot_data, boot_model1, R = n_boot, stype = "i") + + ## Store SE + se <- sd(boot_est$t) + + } + else { + se = NA + } + + ## Store list for export + val <- c(ate, se) + } + + ## OPTION 3: Run using weights, constructing a separate SDID model for each treated unit + if (weighted == 2) { + + ## Check that weighting variable was specified + if (weight_var == FALSE) { + print("No weighting variable specified") + break + } + else { + print(paste("Weighting variable ", weight_var)) + } + + ## Construct a dataset of treated units and their weights + treated <- data %>% + mutate(weight = !! sym(weight_var)) %>% + filter(treated == 1 & did == 0) %>% + select(state, period, weight) %>% + group_by(state) %>% + summarise(weight = mean(weight)) %>% + ungroup() %>% + mutate(ate = NA) + + ## Construct a list of treated states + treated_list <- treated %>% select(state) %>% unique() %>% as.list() + treated_list <- treated_list[[1]] + + ## Loop over each treated state + for (s in treated_list) { + + ## Basic set-up, keeping only one treated state + control states + setup <- data %>% + filter(treated == 0 | state == s) %>% + dplyr::select(state, period, y, did) %>% + as.data.frame() %>% + synthdid::panel.matrices( + unit = 1, + time = 2, + outcome = 3, + treatment = 4 + ) + + ## Run SDID + tmp_est <- synthdid_estimate(setup$Y, setup$N0, setup$T0) + tmp_sum_est <- summary(tmp_est) + tmp_ate <- tmp_sum_est$estimate + + ## Add ATE to dataset + treated <- treated %>% mutate(ate = if_else(state == s, tmp_ate, ate)) + + } + + ## Get weighted average of ATE + ate <- treated %>% + summarise(ate = weighted.mean(ate,weight)) %>% + as.numeric() + + + ## Store SE + if (calc_se == 1) { + + ## Reshape data so that the boot function index option works + boot_data <- data %>% + mutate(weight = !! sym(weight_var)) %>% + pivot_wider(id_cols = state, names_from = period, values_from = c(y, weight, did, treated)) + + ## Run boostrap command + boot_est <- boot(boot_data, boot_model2, R = n_boot, stype = "i") + + ## Store SE + se <- sd(boot_est$t) + + } + else { + se = NA + } + + ## Store both values + val <- c(ate, se) + + } + + ## RETURN + return(val) + + } + + +### RUN SIMULATIONS + +## Simulation 1: Homogeneous treatment + +# Generate synthetic panel data +simulation <- expand.grid(sim = 1:N_simulations, treat_type = 1:3, data_type = 1:2) %>% + mutate(ate = NA, ate_nw = NA, ate_wt_1 = NA, ate_wt_2 = NA, did_nw = NA, did_wt = NA) + +## LOOP OVER SIMULATIONS +for (i in 1:N_simulations) { + + ## LOOP OVER TREATMENT TYPES + for (j in 1:3) { + + ## LOOP OVER DATA GENERATING TYPES + for (k in 1:2) { + + print(paste("Simulation", i, j, k)) + + ## Generate data + df <- f_data_gen(N_states = N_states, + T_periods = T_periods, + treatment_period = treatment_period, + treatment_size = treatment_size, + state_gen_struc = k, + treatment_type = j) + + + ## Get true ATE + tmp_ate <- df %>% filter(did == 1) %>% summarise(ate = weighted.mean(treatment_effect, pop)) + tmp_ate <- tmp_ate[[1]] + + ## Run unweighted SDID + tmp <- f_sdid(df, weighted = 0) + tmp_ate_nw <- tmp[1] + + ## Run weighted SDID (version 1) + tmp <- f_sdid(df, weighted = 1, weight_var = "pop") + tmp_ate_wt_1 <- tmp[1] + + ## Run weighted SDID (version 2) + tmp <- f_sdid(df, weighted = 2, weight_var = "pop") + tmp_ate_wt_2 <- tmp[1] + + ## Run DiD without weight + tmp <- feols(y ~ did | state + period, + data = df) + tmp_did_nw <- tmp$coefficients + + ## Run DiD with weight + tmp <- feols(y ~ did | state + period, + data = df, weights = ~pop) + tmp_did_wt <- tmp$coefficients + + simulation <- simulation %>% + mutate(ate = if_else(sim == i & treat_type == j & data_type == k, tmp_ate, ate), + ate_nw = if_else(sim == i & treat_type == j & data_type == k, tmp_ate_nw, ate_nw), + ate_wt_1 = if_else(sim == i & treat_type == j & data_type == k, tmp_ate_wt_1, ate_wt_1), + ate_wt_2 = if_else(sim == i & treat_type == j & data_type == k, tmp_ate_wt_2, ate_wt_2), + did_nw = if_else(sim == i & treat_type == j & data_type == k, tmp_did_nw, did_nw), + did_wt = if_else(sim == i & treat_type == j & data_type == k, tmp_did_wt, did_wt) + ) + + rm(tmp, tmp_did_nw, tmp_did_wt, tmp_ate, tmp_ate_nw, tmp_ate_wt_1, tmp_ate_wt_2) + } + } +} + + +############### + +## Export +write.csv(simulation, file = paste(data, "data.csv", sep = "/")) + + + + + diff --git a/R_weighted/solver.R b/R_weighted/solver.R new file mode 100644 index 0000000..6824beb --- /dev/null +++ b/R_weighted/solver.R @@ -0,0 +1,103 @@ +contract3 = function(X, v) { + stopifnot(length(dim(X)) == 3, dim(X)[3] == length(v)) + out = array(0, dim = dim(X)[1:2]) + if (length(v) == 0) { return(out) } + for (ii in 1:length(v)) { + out = out + v[ii] * X[, , ii] + } + return(out) +} + +# a Frank-Wolfe step for \\Ax - b||^2 + eta * ||x||^2 with x in unit simplex. +fw.step = function(A, x, b, eta, alpha = NULL) { + Ax = A %*% x + half.grad = t(Ax - b) %*% A + eta * x + i = which.min(half.grad) + if (!is.null(alpha)) { + x = x * (1 - alpha) + x[i] = x[i] + alpha + return(x) + } else { + d.x = -x; d.x[i] = 1 - x[i] + if (all(d.x == 0)) { return(x) } + d.err = A[, i] - Ax + step = -t(c(half.grad)) %*% d.x / (sum(d.err^2) + eta * sum(d.x^2)) + constrained.step = min(1, max(0, step)) + return(x + constrained.step * d.x) + } +} + +# a Frank-Wolfe solver for synthetic control weights using exact line search +sc.weight.fw = function(Y, zeta, intercept = TRUE, lambda = NULL, min.decrease = 1e-3, max.iter = 1000) { + T0 = ncol(Y) - 1 + N0 = nrow(Y) + if (is.null(lambda)) { lambda = rep(1 / T0, T0) } + if (intercept) { + Y = apply(Y, 2, function(col) { col - mean(col) }) + } + + t = 0 + vals = rep(NA, max.iter) + A = Y[, 1:T0] + b = Y[, T0 + 1] + eta = N0 * Re(zeta^2) + while (t < max.iter && (t < 2 || vals[t - 1] - vals[t] > min.decrease^2)) { + t = t + 1 + lambda.p = fw.step(A, lambda, b, eta) + lambda = lambda.p + err = Y[1:N0, ] %*% c(lambda, -1) + vals[t] = Re(zeta^2) * sum(lambda^2) + sum(err^2) / N0 + } + list(lambda = lambda, vals = vals) +} + +# A Frank-Wolfe + Gradient solver for lambda, omega, and beta when there are covariates +# Uses the exact line search Frank-Wolfe steps for lambda, omega and (1/t)*gradient steps for beta +# pass update.lambda=FALSE/update.omega=FALSE to fix those weights at initial values, defaulting to uniform 1/T0 and 1/N0 +sc.weight.fw.covariates = function(Y, X = array(0, dim = c(dim(Y), 0)), zeta.lambda = 0, zeta.omega = 0, + lambda.intercept = TRUE, omega.intercept = TRUE, + min.decrease = 1e-3, max.iter = 1000, + lambda = NULL, omega = NULL, beta = NULL, update.lambda = TRUE, update.omega = TRUE) { + stopifnot(length(dim(Y)) == 2, length(dim(X)) == 3, all(dim(Y) == dim(X)[1:2]), all(is.finite(Y)), all(is.finite(X))) + T0 = ncol(Y) - 1 + N0 = nrow(Y) - 1 + if (length(dim(X)) == 2) { dim(X) = c(dim(X), 1) } + if (is.null(lambda)) { lambda = rep(1 / T0, T0) } + if (is.null(omega)) { omega = rep(1 / N0, N0) } + if (is.null(beta)) { beta = rep(0, dim(X)[3]) } + + update.weights = function(Y, lambda, omega) { + Y.lambda = if (lambda.intercept) { apply(Y[1:N0, ], 2, function(row) { row - mean(row) }) } else { Y[1:N0, ] } + if (update.lambda) { lambda = fw.step(Y.lambda[, 1:T0], lambda, Y.lambda[, T0 + 1], N0 * Re(zeta.lambda^2)) } + err.lambda = Y.lambda %*% c(lambda, -1) + + Y.omega = if (omega.intercept) { apply(t(Y[, 1:T0]), 2, function(row) { row - mean(row) }) } else { t(Y[, 1:T0]) } + if (update.omega) { omega = fw.step(Y.omega[, 1:N0], omega, Y.omega[, N0 + 1], T0 * Re(zeta.omega^2)) } + err.omega = Y.omega %*% c(omega, -1) + + val = Re(zeta.omega^2) * sum(omega^2) + Re(zeta.lambda^2) * sum(lambda^2) + sum(err.omega^2) / T0 + sum(err.lambda^2) / N0 + list(val = val, lambda = lambda, omega = omega, err.lambda = err.lambda, err.omega = err.omega) + } + + vals = rep(NA, max.iter) + t = 0 + Y.beta = Y - contract3(X, beta) + weights = update.weights(Y.beta, lambda, omega) + # state is kept in weights$lambda, weights$omega, beta + while (t < max.iter && (t < 2 || abs(vals[t - 1] - vals[t]) > min.decrease^2)) { + t = t + 1 + grad.beta = -if (dim(X)[3] == 0) { c() } else { + apply(X, 3, function(Xi) { + t(weights$err.lambda) %*% Xi[1:N0, ] %*% c(weights$lambda, -1) / N0 + + t(weights$err.omega) %*% t(Xi[, 1:T0]) %*% c(weights$omega, -1) / T0 + }) + } + + alpha = 1 / t + beta = beta - alpha * grad.beta + Y.beta = Y - contract3(X, beta) + weights = update.weights(Y.beta, weights$lambda, weights$omega) + vals[t] = weights$val + } + list(lambda = weights$lambda, omega = weights$omega, beta = beta, vals = vals) +} diff --git a/R_weighted/summary.R b/R_weighted/summary.R new file mode 100644 index 0000000..5b4d9d5 --- /dev/null +++ b/R_weighted/summary.R @@ -0,0 +1,130 @@ +#' Outputs a table of important synthetic controls and their corresponding weights, sorted by weight. +#' The table is truncated to exclude synthetic controls that do not matter for any estimate --- +#' for each estimate, the truncated controls may have total weight no larger that 1-mass. +#' @param estimates, a list of estimates output by synthdid_estimate. Or a single estimate. +#' @param sort.by, the index of the estimate to sort by. Defaults to 1. +#' @param mass, which controls the length of the table. Defaults to 0.9. +#' @param weight.type, 'omega' for units, 'lambda' for time periods +#' @export synthdid_controls +synthdid_controls = function(estimates, sort.by = 1, mass = .9, weight.type = 'omega') { + if (class(estimates) == 'synthdid_estimate') { estimates = list(estimates) } + if (is.null(names(estimates))) { names(estimates) = sprintf('estimate %d', 1:length(estimates)) } + if (!weight.type %in% c('omega', 'lambda')) { stop('weight.type must be "omega" or "lambda"') } + weights = do.call(cbind, lapply(estimates, function(est) { attr(est, 'weights')[[weight.type]] })) + if (is.null(dim(weights))) { dim(weights) = c(length(weights), 1) } + + Y = attr(estimates[[1]], 'setup')$Y + o = rev(order(weights[, sort.by])) + tab = weights[o, , drop = FALSE] + rownames(tab) = if(weight.type == 'omega') { rownames(Y)[o] } else { colnames(Y)[o] } + colnames(tab) = names(estimates) + + # truncate table to retain a weight sum of at least mass for each unit + tab.len = max(apply(tab, 2, function(col) { Position(function(x) { x >= mass }, cumsum(col), nomatch=nrow(tab)) })) + tab[1:tab.len, , drop=FALSE] +} + +#' Summarize a synthdid object +#' @param object The object to summarize +#' @param weight.digits The number of digits to use when displaying weights (omega, lambda) +#' @param fast Be fast but less accurate, e.g. jackknife instead of bootstrap se estimate +#' @param ... Additional arguments (currently ignored). +#' @method summary synthdid_estimate +#' @export +summary.synthdid_estimate = function(object, weight.digits=3, fast=FALSE, ...) { + N0 = attr(object, 'setup')$N0 + T0 = attr(object, 'setup')$T0 + list(estimate = c(object), + se = sqrt(if(fast) { vcov(object, method = 'jackknife') } else { vcov(object) }), + controls = round(synthdid_controls(object, weight.type='omega'), digits=weight.digits), + periods = round(synthdid_controls(object, weight.type='lambda'), digits=weight.digits), + dimensions = c( N1 = nrow(Y(object))-N0, N0 = N0, N0.effective = round(1 / sum(omega(object)^2), weight.digits), + T1 = ncol(Y(object))-T0, T0 = T0, T0.effective = round(1 / sum(lambda(object)^2), weight.digits))) +} + + +# ============================================================================= +# WEIGHTED VERSIONS +# ============================================================================= + +#' Outputs a table of important synthetic controls and their corresponding weights (weighted version) +#' @param estimates, a list of weighted estimates. Or a single estimate. +#' @param sort.by, the index of the estimate to sort by. Defaults to 1. +#' @param mass, which controls the length of the table. Defaults to 0.9. +#' @param weight.type, 'omega' for units, 'lambda' for time periods, 'treated' for treated unit weights +#' @export synthdid_controls_weighted +synthdid_controls_weighted = function(estimates, sort.by = 1, mass = .9, weight.type = 'omega') { + if (class(estimates) == 'synthdid_estimate_weighted') { estimates = list(estimates) } + if (is.null(names(estimates))) { names(estimates) = sprintf('estimate %d', 1:length(estimates)) } + if (!weight.type %in% c('omega', 'lambda', 'treated', 'period')) { + stop('weight.type must be "omega", "lambda", "treated", or "period"') + } + + if (weight.type == 'treated') { + weights = do.call(cbind, lapply(estimates, function(est) { attr(est, 'treated.weights') })) + Y = attr(estimates[[1]], 'setup')$Y + N0 = attr(estimates[[1]], 'setup')$N0 + if (is.null(dim(weights))) { dim(weights) = c(length(weights), 1) } + o = rev(order(weights[, sort.by])) + tab = weights[o, , drop = FALSE] + rownames(tab) = rownames(Y)[(N0+1):nrow(Y)][o] + colnames(tab) = names(estimates) + return(tab) + } + + if (weight.type == 'period') { + weights = do.call(cbind, lapply(estimates, function(est) { attr(est, 'period.weights') })) + Y = attr(estimates[[1]], 'setup')$Y + T0 = attr(estimates[[1]], 'setup')$T0 + if (is.null(dim(weights))) { dim(weights) = c(length(weights), 1) } + o = rev(order(weights[, sort.by])) + tab = weights[o, , drop = FALSE] + rownames(tab) = colnames(Y)[(T0+1):ncol(Y)][o] + colnames(tab) = names(estimates) + return(tab) + } + + # omega and lambda weights - same as original + weights = do.call(cbind, lapply(estimates, function(est) { attr(est, 'weights')[[weight.type]] })) + if (is.null(dim(weights))) { dim(weights) = c(length(weights), 1) } + + Y = attr(estimates[[1]], 'setup')$Y + o = rev(order(weights[, sort.by])) + tab = weights[o, , drop = FALSE] + rownames(tab) = if(weight.type == 'omega') { rownames(Y)[o] } else { colnames(Y)[o] } + colnames(tab) = names(estimates) + + # truncate table to retain a weight sum of at least mass for each unit + tab.len = max(apply(tab, 2, function(col) { Position(function(x) { x >= mass }, cumsum(col), nomatch=nrow(tab)) })) + tab[1:tab.len, , drop=FALSE] +} + +#' Summarize a weighted synthdid object +#' @param object The object to summarize +#' @param weight.digits The number of digits to use when displaying weights +#' @param fast Be fast but less accurate, e.g. jackknife instead of bootstrap se estimate +#' @param ... Additional arguments (currently ignored). +#' @method summary synthdid_estimate_weighted +#' @export +summary.synthdid_estimate_weighted = function(object, weight.digits=3, fast=FALSE, ...) { + setup = attr(object, 'setup') + weights = attr(object, 'weights') + N0 = setup$N0 + T0 = setup$T0 + Y = setup$Y + treated.weights = attr(object, 'treated.weights') + period.weights = attr(object, 'period.weights') + omega = weights$omega + lambda = weights$lambda + + list(estimate = c(object), + se = sqrt(if(fast) { vcov(object, method = 'jackknife') } else { vcov(object) }), + controls = round(synthdid_controls_weighted(object, weight.type='omega'), digits=weight.digits), + periods = round(synthdid_controls_weighted(object, weight.type='lambda'), digits=weight.digits), + treated.weights = round(synthdid_controls_weighted(object, weight.type='treated'), digits=weight.digits), + period.weights = round(synthdid_controls_weighted(object, weight.type='period'), digits=weight.digits), + dimensions = c( N1 = nrow(Y)-N0, N0 = N0, N0.effective = round(1 / sum(omega^2), weight.digits), + T1 = ncol(Y)-T0, T0 = T0, T0.effective = round(1 / sum(lambda^2), weight.digits), + N1.effective = round(1 / sum(treated.weights^2), weight.digits), + T1.effective = round(1 / sum(period.weights^2), weight.digits))) +} diff --git a/R_weighted/synthdid-package.R b/R_weighted/synthdid-package.R new file mode 100644 index 0000000..7c84ecf --- /dev/null +++ b/R_weighted/synthdid-package.R @@ -0,0 +1,32 @@ +#' @description +#' This package implements the synthetic difference in difference estimator (SDID) for the average treatment effect in panel data, +#' as proposed in Arkhangelsky et al (2019). We observe matrices of outcomes Y and binary treatment indicators W +#' that we think of as satisfying Y\[i,j\] = L\[i,j\] + tau\[i,j\] W\[i,j\] + noise\[i,j\]. +#' Here tau\[i,j\] is the effect of treatment on the unit i at time j, and we estimate the average effect of +#' treatment when and where it happened: the average of tau\[i,j\] over the observations with W\[i,j\]=1. +#' All treated units must begin treatment simultaneously, so W is a block matrix: W\[i,j\] = 1 for i > N0 and j > T0 +#' and zero otherwise, with N0 denoting the number of control units and T0 the number of observation times +#' before onset of treatment. This applies, in particular, to the case of a single treated unit or treated period. +#' +#' This package is currently in beta and the functionality and interface is subject to change. +#' +#' Some helpful links for getting started: +#' +#' * The [R package documentation](https://synth-inference.github.io/synthdid/) contains usage examples and method reference. +#' * The [online vignettes](https://synth-inference.github.io/synthdid/articles/more-plotting.html) contains a gallery of plot examples. +#' * For community questions and answers around usage, see [Github issues page](https://github.com/synth-inference/synthdid/issues). +#' +#' @examples +#' \donttest{ +#'# Estimate the effect of California Proposition 99 on cigarette consumption +#'data('california_prop99') +#'setup = panel.matrices(california_prop99) +#'tau.hat = synthdid_estimate(setup$Y, setup$N0, setup$T0) +#'se = sqrt(vcov(tau.hat, method='placebo')) +#'sprintf('point estimate: %1.2f', tau.hat) +#'sprintf('95%% CI (%1.2f, %1.2f)', tau.hat - 1.96 * se, tau.hat + 1.96 * se) +#'plot(tau.hat) +#'} +#' +#' @keywords internal +"_PACKAGE" diff --git a/R_weighted/synthdid.R b/R_weighted/synthdid.R new file mode 100644 index 0000000..1fab34c --- /dev/null +++ b/R_weighted/synthdid.R @@ -0,0 +1,432 @@ +#' A function mapping a numeric vector to a (presumably sparser) numeric vector of the same shape to +#' be passed onto synthdid_estimate. +#' @param v a vector +sparsify_function = function(v) { v[v <= max(v)/4] = 0; v/sum(v) } + +#' Computes the synthetic diff-in-diff estimate for an average treatment effect on a treated block. +#' +#' See 'Synthetic Difference in Differences' by Arkhangelsky et al. This implements Algorithm 1. +#' @param Y the observation matrix. +#' @param N0 the number of control units (N_co in the paper). Rows 1-N0 of Y correspond to the control units. +#' @param T0 the number of pre-treatment time steps (T_pre in the paper). Columns 1-T0 of Y correspond to pre-treatment time steps. +#' @param X an optional 3-D array of time-varying covariates. Shape should be N X T X C for C covariates. +#' @param noise.level, an estimate of the noise standard deviation sigma. Defaults to the standard deviation of first differences of Y. +#' @param eta.omega determines the tuning parameter zeta.omega = eta.omega * noise.level. Defaults to the value (N_tr T_post)^(1/4). +#' @param eta.lambda analogous for lambda. Defaults to an 'infinitesimal' value 1e-6. +#' @param zeta.omega if passed, overrides the default zeta.omega = eta.omega * noise.level. Deprecated. +#' @param zeta.lambda analogous for lambda. +#' @param omega.intercept Binary. Use an intercept when estimating omega. +#' @param lambda.intercept Binary. Use an intercept when estimating lambda. +#' @param weights a list with fields lambda and omega. If non-null weights$lambda is passed, +#' we use them instead of estimating lambda weights. Same for weights$omega. +#' @param update.omega If true, solve for omega using the passed value of weights$omega only as an initialization. +#' If false, use it exactly as passed. Defaults to false if a non-null value of weights$omega is passed. +#' @param update.lambda Analogous. +#' @param min.decrease Tunes a stopping criterion for our weight estimator. Stop after an iteration results in a decrease +#' in penalized MSE smaller than min.decrease^2. +#' @param max.iter A fallback stopping criterion for our weight estimator. Stop after this number of iterations. +#' @param sparsify A function mapping a numeric vector to a (presumably sparser) numeric vector of the same shape, which must sum to one. +#' If not null, we try to estimate sparse weights via a second round of Frank-Wolfe optimization +#' initialized at sparsify( the solution to the first round ). +#' @param max.iter.pre.sparsify Analogous to max.iter, but for the pre-sparsification first-round of optimization. +#' Not used if sparsify=NULL. +#' @return An average treatment effect estimate with 'weights' and 'setup' attached as attributes. +#' 'weights' contains the estimated weights lambda and omega and corresponding intercepts, +#' as well as regression coefficients beta if X is passed. +#' 'setup' is a list describing the problem passed in: Y, N0, T0, X. +#' @export synthdid_estimate +synthdid_estimate <- function(Y, N0, T0, X = array(dim = c(dim(Y), 0)), + noise.level = sd(apply(Y[1:N0,1:T0], 1, diff)), + eta.omega = ((nrow(Y)-N0)*(ncol(Y)-T0))^(1/4), eta.lambda = 1e-6, + zeta.omega = eta.omega * noise.level, zeta.lambda = eta.lambda * noise.level, + omega.intercept = TRUE, lambda.intercept = TRUE, + weights = list(omega = NULL, lambda = NULL), + update.omega = is.null(weights$omega), update.lambda = is.null(weights$lambda), + min.decrease = 1e-5 * noise.level, max.iter = 1e4, + sparsify = sparsify_function, + max.iter.pre.sparsify = 100) { + stopifnot(nrow(Y) > N0, ncol(Y) > T0, length(dim(X)) %in% c(2, 3), dim(X)[1:2] == dim(Y), is.list(weights), + is.null(weights$lambda) || length(weights$lambda) == T0, is.null(weights$omega) || length(weights$omega) == N0, + !is.null(weights$lambda) || update.lambda, !is.null(weights$omega) || update.omega) + if (length(dim(X)) == 2) { dim(X) = c(dim(X), 1) } + if (is.null(sparsify)) { max.iter.pre.sparsify = max.iter } + N1 = nrow(Y) - N0 + T1 = ncol(Y) - T0 + + if (dim(X)[3] == 0) { + weights$vals = NULL + weights$lambda.vals = NULL + weights$omega.vals = NULL + if (update.lambda) { + Yc = collapsed.form(Y, N0, T0) + lambda.opt = sc.weight.fw(Yc[1:N0, ], zeta = zeta.lambda, intercept = lambda.intercept, lambda=weights$lambda, + min.decrease = min.decrease, max.iter = max.iter.pre.sparsify) + if(!is.null(sparsify)) { + lambda.opt = sc.weight.fw(Yc[1:N0, ], zeta = zeta.lambda, intercept = lambda.intercept, lambda=sparsify(lambda.opt$lambda), + min.decrease = min.decrease, max.iter = max.iter) + } + weights$lambda = lambda.opt$lambda + weights$lambda.vals = lambda.opt$vals + weights$vals = lambda.opt$vals + } + if (update.omega) { + Yc = collapsed.form(Y, N0, T0) + omega.opt = sc.weight.fw(t(Yc[, 1:T0]), zeta = zeta.omega, intercept = omega.intercept, lambda=weights$omega, + min.decrease = min.decrease, max.iter = max.iter.pre.sparsify) + if(!is.null(sparsify)) { + omega.opt = sc.weight.fw(t(Yc[, 1:T0]), zeta = zeta.omega, intercept = omega.intercept, lambda=sparsify(omega.opt$lambda), + min.decrease = min.decrease, max.iter = max.iter) + } + weights$omega = omega.opt$lambda + weights$omega.vals = omega.opt$vals + if (is.null(weights$vals)) { weights$vals = omega.opt$vals } + else { weights$vals = pairwise.sum.decreasing(weights$vals, omega.opt$vals) } + } + } else { + Yc = collapsed.form(Y, N0, T0) + Xc = apply(X, 3, function(Xi) { collapsed.form(Xi, N0, T0) }) + dim(Xc) = c(dim(Yc), dim(X)[3]) + weights = sc.weight.fw.covariates(Yc, Xc, zeta.lambda = zeta.lambda, zeta.omega = zeta.omega, + lambda.intercept = lambda.intercept, omega.intercept = omega.intercept, + min.decrease = min.decrease, max.iter = max.iter, + lambda = weights$lambda, omega = weights$omega, update.lambda = update.lambda, update.omega = update.omega) + } + + X.beta = contract3(X, weights$beta) + estimate = t(c(-weights$omega, rep(1 / N1, N1))) %*% (Y - X.beta) %*% c(-weights$lambda, rep(1 / T1, T1)) + + class(estimate) = 'synthdid_estimate' + attr(estimate, 'estimator') = "synthdid_estimate" + attr(estimate, 'weights') = weights + attr(estimate, 'setup') = list(Y = Y, X = X, N0 = N0, T0 = T0) + attr(estimate, 'opts') = list(zeta.omega = zeta.omega, zeta.lambda = zeta.lambda, + omega.intercept = omega.intercept, lambda.intercept = lambda.intercept, + update.omega = update.omega, update.lambda = update.lambda, + min.decrease = min.decrease, max.iter=max.iter) + return(estimate) +} + +# ============================================================================= +# WEIGHTED VERSION: synthdid_estimate_weighted +# ============================================================================= + +#' Computes the synthetic diff-in-diff estimate with user-specified treated unit weights. +#' +#' This is a weighted extension of the SDID estimator that allows for population-weighted +#' or other user-specified weights when averaging across multiple treated units. +#' See 'Synthetic Difference in Differences' by Arkhangelsky et al. for the base algorithm. +#' +#' @param Y the observation matrix. +#' @param N0 the number of control units (N_co in the paper). Rows 1-N0 of Y correspond to the control units. +#' @param T0 the number of pre-treatment time steps (T_pre in the paper). Columns 1-T0 of Y correspond to pre-treatment time steps. +#' @param treated.weights A vector of weights for treated units (length N1 = nrow(Y) - N0). +#' If NULL, uses uniform weights (1/N1 for each treated unit), equivalent to the standard estimator. +#' Weights will be normalized to sum to 1. +#' @param period.weights A vector of weights for post-treatment periods (length T1 = ncol(Y) - T0). +#' If NULL, uses uniform weights (1/T1 for each period). +#' Weights will be normalized to sum to 1. +#' @param X an optional 3-D array of time-varying covariates. Shape should be N X T X C for C covariates. +#' @param noise.level an estimate of the noise standard deviation sigma. Defaults to the standard deviation of first differences of Y. +#' @param eta.omega determines the tuning parameter zeta.omega = eta.omega * noise.level. Defaults to the value (N_tr T_post)^(1/4). +#' @param eta.lambda analogous for lambda. Defaults to an 'infinitesimal' value 1e-6. +#' @param zeta.omega if passed, overrides the default zeta.omega = eta.omega * noise.level. Deprecated. +#' @param zeta.lambda analogous for lambda. +#' @param omega.intercept Binary. Use an intercept when estimating omega. +#' @param lambda.intercept Binary. Use an intercept when estimating lambda. +#' @param weights a list with fields lambda and omega. If non-null weights$lambda is passed, +#' we use them instead of estimating lambda weights. Same for weights$omega. +#' @param update.omega If true, solve for omega using the passed value of weights$omega only as an initialization. +#' If false, use it exactly as passed. Defaults to false if a non-null value of weights$omega is passed. +#' @param update.lambda Analogous. +#' @param min.decrease Tunes a stopping criterion for our weight estimator. Stop after an iteration results in a decrease +#' in penalized MSE smaller than min.decrease^2. +#' @param max.iter A fallback stopping criterion for our weight estimator. Stop after this number of iterations. +#' @param sparsify A function mapping a numeric vector to a (presumably sparser) numeric vector of the same shape, which must sum to one. +#' If not null, we try to estimate sparse weights via a second round of Frank-Wolfe optimization +#' initialized at sparsify( the solution to the first round ). +#' @param max.iter.pre.sparsify Analogous to max.iter, but for the pre-sparsification first-round of optimization. +#' Not used if sparsify=NULL. +#' @return An average treatment effect estimate with 'weights', 'setup', and 'treated.weights' attached as attributes. +#' 'weights' contains the estimated weights lambda and omega and corresponding intercepts, +#' as well as regression coefficients beta if X is passed. +#' 'setup' is a list describing the problem passed in: Y, N0, T0, X. +#' 'treated.weights' contains the normalized weights used for treated units. +#' 'period.weights' contains the normalized weights used for post-treatment periods. +#' @export synthdid_estimate_weighted +synthdid_estimate_weighted <- function(Y, N0, T0, + treated.weights = NULL, + period.weights = NULL, + X = NULL, + noise.level = NULL, + eta.omega = NULL, eta.lambda = 1e-6, + zeta.omega = NULL, zeta.lambda = NULL, + omega.intercept = TRUE, lambda.intercept = TRUE, + weights = list(omega = NULL, lambda = NULL), + update.omega = is.null(weights$omega), update.lambda = is.null(weights$lambda), + min.decrease = NULL, max.iter = 1e4, + sparsify = sparsify_function, + max.iter.pre.sparsify = 100) { + + # Handle default X + if (is.null(X)) { + X = array(dim = c(dim(Y), 0)) + } + + # Handle other defaults that depend on data + if (is.null(noise.level)) { + noise.level = sd(apply(Y[1:N0, 1:T0], 1, diff)) + } + if (is.null(eta.omega)) { + eta.omega = ((nrow(Y) - N0) * (ncol(Y) - T0))^(1/4) + } + if (is.null(zeta.omega)) { + zeta.omega = eta.omega * noise.level + } + if (is.null(zeta.lambda)) { + zeta.lambda = eta.lambda * noise.level + } + if (is.null(min.decrease)) { + min.decrease = 1e-5 * noise.level + } + + # Input validation + stopifnot(nrow(Y) > N0, ncol(Y) > T0, length(dim(X)) %in% c(2, 3), dim(X)[1:2] == dim(Y), is.list(weights), + is.null(weights$lambda) || length(weights$lambda) == T0, is.null(weights$omega) || length(weights$omega) == N0, + !is.null(weights$lambda) || update.lambda, !is.null(weights$omega) || update.omega) + + if (length(dim(X)) == 2) { dim(X) = c(dim(X), 1) } + if (is.null(sparsify)) { max.iter.pre.sparsify = max.iter } + + N1 = nrow(Y) - N0 + T1 = ncol(Y) - T0 + + # Process treated unit weights + if (is.null(treated.weights)) { + treated.weights = rep(1 / N1, N1) + } else { + stopifnot(length(treated.weights) == N1, all(treated.weights >= 0), sum(treated.weights) > 0) + treated.weights = treated.weights / sum(treated.weights) # Normalize to sum to 1 + } + + # Process period weights + if (is.null(period.weights)) { + period.weights = rep(1 / T1, T1) + } else { + stopifnot(length(period.weights) == T1, all(period.weights >= 0), sum(period.weights) > 0) + period.weights = period.weights / sum(period.weights) # Normalize to sum to 1 + } + + # Estimate control weights (omega) and time weights (lambda) + if (dim(X)[3] == 0) { + weights$vals = NULL + weights$lambda.vals = NULL + weights$omega.vals = NULL + + if (update.lambda) { + # Use weighted collapsed form for treated units + Yc = collapsed.form_weighted(Y, N0, T0, treated.weights, period.weights) + lambda.opt = sc.weight.fw(Yc[1:N0, ], zeta = zeta.lambda, intercept = lambda.intercept, lambda=weights$lambda, + min.decrease = min.decrease, max.iter = max.iter.pre.sparsify) + if(!is.null(sparsify)) { + lambda.opt = sc.weight.fw(Yc[1:N0, ], zeta = zeta.lambda, intercept = lambda.intercept, lambda=sparsify(lambda.opt$lambda), + min.decrease = min.decrease, max.iter = max.iter) + } + weights$lambda = lambda.opt$lambda + weights$lambda.vals = lambda.opt$vals + weights$vals = lambda.opt$vals + } + + if (update.omega) { + Yc = collapsed.form_weighted(Y, N0, T0, treated.weights, period.weights) + omega.opt = sc.weight.fw(t(Yc[, 1:T0]), zeta = zeta.omega, intercept = omega.intercept, lambda=weights$omega, + min.decrease = min.decrease, max.iter = max.iter.pre.sparsify) + if(!is.null(sparsify)) { + omega.opt = sc.weight.fw(t(Yc[, 1:T0]), zeta = zeta.omega, intercept = omega.intercept, lambda=sparsify(omega.opt$lambda), + min.decrease = min.decrease, max.iter = max.iter) + } + weights$omega = omega.opt$lambda + weights$omega.vals = omega.opt$vals + if (is.null(weights$vals)) { weights$vals = omega.opt$vals } + else { weights$vals = pairwise.sum.decreasing(weights$vals, omega.opt$vals) } + } + } else { + # Handle covariates case + Yc = collapsed.form_weighted(Y, N0, T0, treated.weights, period.weights) + Xc = apply(X, 3, function(Xi) { collapsed.form_weighted(Xi, N0, T0, treated.weights, period.weights) }) + dim(Xc) = c(dim(Yc), dim(X)[3]) + weights = sc.weight.fw.covariates(Yc, Xc, zeta.lambda = zeta.lambda, zeta.omega = zeta.omega, + lambda.intercept = lambda.intercept, omega.intercept = omega.intercept, + min.decrease = min.decrease, max.iter = max.iter, + lambda = weights$lambda, omega = weights$omega, update.lambda = update.lambda, update.omega = update.omega) + } + + # Compute the weighted treatment effect estimate + X.beta = contract3(X, weights$beta) + estimate = t(c(-weights$omega, treated.weights)) %*% (Y - X.beta) %*% c(-weights$lambda, period.weights) + + class(estimate) = 'synthdid_estimate_weighted' + attr(estimate, 'estimator') = "synthdid_estimate_weighted" + attr(estimate, 'weights') = weights + attr(estimate, 'treated.weights') = treated.weights + attr(estimate, 'period.weights') = period.weights + attr(estimate, 'setup') = list(Y = Y, X = X, N0 = N0, T0 = T0) + attr(estimate, 'opts') = list(zeta.omega = zeta.omega, zeta.lambda = zeta.lambda, + omega.intercept = omega.intercept, lambda.intercept = lambda.intercept, + update.omega = update.omega, update.lambda = update.lambda, + min.decrease = min.decrease, max.iter=max.iter) + return(estimate) +} + + +#' synthdid_estimate for synthetic control estimates. +#' Takes all the same parameters, but by default, passes options to use the synthetic control estimator +#' By default, this uses only 'infinitesimal' ridge regularization when estimating the weights. +#' @param Y the observation matrix. +#' @param N0 the number of control units. Rows 1-N0 of Y correspond to the control units. +#' @param T0 the number of pre-treatment time steps. Columns 1-T0 of Y correspond to pre-treatment time steps. +#' @param eta.omega determines the level of ridge regularization, zeta.omega = eta.omega * noise.level, as in synthdid_estimate. +#' @param ... additional options for synthdid_estimate +#' @return an object like that returned by synthdid_estimate +#' @export sc_estimate +sc_estimate = function(Y, N0, T0, eta.omega = 1e-6, ...) { + estimate = synthdid_estimate(Y, N0, T0, eta.omega = eta.omega, + weights = list(lambda = rep(0, T0)), omega.intercept = FALSE, ...) + attr(estimate, 'estimator') = "sc_estimate" + estimate +} + +#' Weighted synthetic control estimate. +#' Takes all the same parameters as sc_estimate, plus treated.weights and period.weights. +#' @param Y the observation matrix. +#' @param N0 the number of control units. Rows 1-N0 of Y correspond to the control units. +#' @param T0 the number of pre-treatment time steps. Columns 1-T0 of Y correspond to pre-treatment time steps. +#' @param treated.weights A vector of weights for treated units (length N1). +#' @param period.weights A vector of weights for post-treatment periods (length T1). +#' @param eta.omega determines the level of ridge regularization. +#' @param ... additional options for synthdid_estimate_weighted +#' @return an object like that returned by synthdid_estimate_weighted +#' @export sc_estimate_weighted +sc_estimate_weighted = function(Y, N0, T0, treated.weights = NULL, period.weights = NULL, eta.omega = 1e-6, ...) { + estimate = synthdid_estimate_weighted(Y, N0, T0, + treated.weights = treated.weights, + period.weights = period.weights, + eta.omega = eta.omega, + weights = list(lambda = rep(0, T0)), omega.intercept = FALSE, ...) + attr(estimate, 'estimator') = "sc_estimate_weighted" + estimate +} + +#' synthdid_estimate for diff-in-diff estimates. +#' Takes all the same parameters, but by default, passes options to use the diff-in-diff estimator +#' @param Y the observation matrix. +#' @param N0 the number of control units. Rows 1-N0 of Y correspond to the control units. +#' @param T0 the number of pre-treatment time steps. Columns 1-T0 of Y correspond to pre-treatment time steps. +#' @param ... additional options for synthdid_estimate +#' @return an object like that returned by synthdid_estimate +#' @export did_estimate +did_estimate = function(Y, N0, T0, ...) { + estimate = synthdid_estimate(Y, N0, T0, weights = list(lambda = rep(1 / T0, T0), omega = rep(1 / N0, N0)), ...) + attr(estimate, 'estimator') = "did_estimate" + estimate +} + +#' Weighted diff-in-diff estimate. +#' Takes all the same parameters as did_estimate, plus treated.weights and period.weights. +#' @param Y the observation matrix. +#' @param N0 the number of control units. Rows 1-N0 of Y correspond to the control units. +#' @param T0 the number of pre-treatment time steps. Columns 1-T0 of Y correspond to pre-treatment time steps. +#' @param treated.weights A vector of weights for treated units (length N1). +#' @param period.weights A vector of weights for post-treatment periods (length T1). +#' @param ... additional options for synthdid_estimate_weighted +#' @return an object like that returned by synthdid_estimate_weighted +#' @export did_estimate_weighted +did_estimate_weighted = function(Y, N0, T0, treated.weights = NULL, period.weights = NULL, ...) { + estimate = synthdid_estimate_weighted(Y, N0, T0, + treated.weights = treated.weights, + period.weights = period.weights, + weights = list(lambda = rep(1 / T0, T0), omega = rep(1 / N0, N0)), ...) + attr(estimate, 'estimator') = "did_estimate_weighted" + estimate +} + +#' Computes a placebo variant of our estimator using pre-treatment data only +#' @param estimate, as output by synthdid_estimate +#' @param treated.fraction, the fraction of pre-treatment data to use as a placebo treatment period +#' Defaults to NULL, which indicates that it should be the fraction of post-treatment to pre-treatment data +#' @export synthdid_placebo +synthdid_placebo = function(estimate, treated.fraction = NULL) { + setup = attr(estimate, 'setup') + opts = attr(estimate, 'opts') + weights = attr(estimate, 'weights') + X.beta = contract3(setup$X, weights$beta) + estimator = attr(estimate, 'estimator') + + if (is.null(treated.fraction)) { treated.fraction = 1 - setup$T0 / ncol(setup$Y) } + placebo.T0 = floor(setup$T0 * (1 - treated.fraction)) + + do.call(estimator, c(list(Y=setup$Y[, 1:setup$T0], N0=setup$N0, T0=placebo.T0, X=setup$X[, 1:setup$T0,]), opts)) +} + +#' Computes a placebo variant for the weighted estimator using pre-treatment data only +#' @param estimate, as output by synthdid_estimate_weighted +#' @param treated.fraction, the fraction of pre-treatment data to use as a placebo treatment period +#' Defaults to NULL, which indicates that it should be the fraction of post-treatment to pre-treatment data +#' @export synthdid_placebo_weighted +synthdid_placebo_weighted = function(estimate, treated.fraction = NULL) { + setup = attr(estimate, 'setup') + opts = attr(estimate, 'opts') + weights = attr(estimate, 'weights') + treated.weights = attr(estimate, 'treated.weights') + X.beta = contract3(setup$X, weights$beta) + + if (is.null(treated.fraction)) { treated.fraction = 1 - setup$T0 / ncol(setup$Y) } + placebo.T0 = floor(setup$T0 * (1 - treated.fraction)) + placebo.T1 = setup$T0 - placebo.T0 + + # For placebo, use uniform period weights for the placebo post-period + placebo.period.weights = rep(1 / placebo.T1, placebo.T1) + + synthdid_estimate_weighted(Y = setup$Y[, 1:setup$T0], N0 = setup$N0, T0 = placebo.T0, + X = setup$X[, 1:setup$T0, , drop = FALSE], + treated.weights = treated.weights, + period.weights = placebo.period.weights, + zeta.omega = opts$zeta.omega, zeta.lambda = opts$zeta.lambda, + omega.intercept = opts$omega.intercept, lambda.intercept = opts$lambda.intercept, + min.decrease = opts$min.decrease, max.iter = opts$max.iter) +} + +#' Outputs the effect curve that was averaged to produce our estimate +#' @param estimate, as output by synthdid_estimate +#' @export synthdid_effect_curve +synthdid_effect_curve = function(estimate) { + setup = attr(estimate, 'setup') + weights = attr(estimate, 'weights') + X.beta = contract3(setup$X, weights$beta) + N1 = nrow(setup$Y) - setup$N0 + T1 = ncol(setup$Y) - setup$T0 + + tau.sc = t(c(-weights$omega, rep(1 / N1, N1))) %*% (setup$Y - X.beta) + tau.curve = tau.sc[setup$T0 + (1:T1)] - c(tau.sc[1:setup$T0] %*% weights$lambda) + tau.curve +} + +#' Outputs the effect curve that was averaged to produce the weighted estimate +#' @param estimate, as output by synthdid_estimate_weighted +#' @export synthdid_effect_curve_weighted +synthdid_effect_curve_weighted = function(estimate) { + setup = attr(estimate, 'setup') + weights = attr(estimate, 'weights') + treated.weights = attr(estimate, 'treated.weights') + X.beta = contract3(setup$X, weights$beta) + N1 = nrow(setup$Y) - setup$N0 + T1 = ncol(setup$Y) - setup$T0 + + # Use treated.weights instead of uniform weights + if (is.null(treated.weights)) { + treated.weights = rep(1 / N1, N1) + } + + tau.sc = t(c(-weights$omega, treated.weights)) %*% (setup$Y - X.beta) + tau.curve = tau.sc[setup$T0 + (1:T1)] - c(tau.sc[1:setup$T0] %*% weights$lambda) + tau.curve +} diff --git a/R_weighted/utils.R b/R_weighted/utils.R new file mode 100644 index 0000000..9dec14d --- /dev/null +++ b/R_weighted/utils.R @@ -0,0 +1,207 @@ +# collapse Y to an N0+1 x T0+1 vector by averaging the last N1=nrow(Y)-N0 rows and T1=ncol(Y)-T0 columns +collapsed.form = function(Y, N0, T0) { + N = nrow(Y); T = ncol(Y) + rbind(cbind(Y[1:N0, 1:T0, drop = FALSE], rowMeans(Y[1:N0, (T0 + 1):T, drop = FALSE])), + cbind(t(colMeans(Y[(N0 + 1):N, 1:T0, drop = FALSE])), mean(Y[(N0 + 1):N, (T0 + 1):T, drop = FALSE]))) +} + +# Weighted version: collapse Y using specified weights for treated units and post-treatment periods +# treated.weights: weights for treated units (N1 vector, should sum to 1) +# period.weights: weights for post-treatment periods (T1 vector, should sum to 1) +collapsed.form_weighted = function(Y, N0, T0, treated.weights = NULL, period.weights = NULL) { + N = nrow(Y); T = ncol(Y) + N1 = N - N0; T1 = T - T0 + + # Default to uniform weights if not specified + if (is.null(treated.weights)) { + treated.weights = rep(1 / N1, N1) + } + if (is.null(period.weights)) { + period.weights = rep(1 / T1, T1) + } + + # Extract submatrices + Y_control_pre = Y[1:N0, 1:T0, drop = FALSE] # Control units, pre-period + Y_control_post = Y[1:N0, (T0 + 1):T, drop = FALSE] # Control units, post-period + Y_treated_pre = Y[(N0 + 1):N, 1:T0, drop = FALSE] # Treated units, pre-period + Y_treated_post = Y[(N0 + 1):N, (T0 + 1):T, drop = FALSE] # Treated units, post-period + + # For control units in post-period: weighted average across post-periods (for each control unit) + control_post_collapsed = Y_control_post %*% period.weights # N0 x 1 + + # For treated units in pre-period: weighted average across treated units (for each time period) + treated_pre_collapsed = t(t(Y_treated_pre) %*% treated.weights) # 1 x T0 + + # For treated units in post-period: doubly weighted average + treated_post_collapsed = sum(treated.weights %*% Y_treated_post %*% period.weights) # scalar + + # Construct collapsed matrix (N0+1) x (T0+1) + rbind( + cbind(Y_control_pre, control_post_collapsed), + cbind(treated_pre_collapsed, treated_post_collapsed) + ) +} + +# return the component-wise sum of decreasing vectors in which NA is taken to mean that the vector has stopped decreasing +# and we can use the last non-na element. Where both are NA, leave as NA. +pairwise.sum.decreasing = function(x, y) { + na.x = is.na(x) + na.y = is.na(y) + x[is.na(x)] = min(x[!na.x]) + y[is.na(y)] = min(y[!na.y]) + pairwise.sum = x + y + pairwise.sum[na.x & na.y] = NA + pairwise.sum +} + +#' Convert a long (balanced) panel to a wide matrix +#' +#' Converts a data set in panel form to matrix format required by synthdid estimators. +#' A typical long panel date set looks like \[unit, time, outcome, treatment\]. Synthdid +#' requires a balanced panel with simultaneous adoption of treatment: each unit must be observed +#' at all times, and all treated units must begin treatment simultaneosly. This function +#' creates num.units x num.time.periods matrices Y and W of outcomes and treatment indicators. +#' In these matrices, columns are sorted by time, and by default (when treated.last=TRUE), +#' rows for control units appear before those of treated units. +#' +#' @param panel A data.frame with columns consisting of units, time, outcome, and treatment indicator. +#' @param unit The column number/name corresponding to the unit identifier. Default is 1. +#' @param time The column number/name corresponding to the time identifier. Default is 2. +#' @param outcome The column number/name corresponding to the outcome identifier. Default is 3. +#' @param treatment The column number/name corresponding to the treatment status. Default is 4. +#' @param treated.last Should we sort the rows of Y and W so treated units are last. If FALSE, sort by unit number/name. Default is TRUE. +#' @return A list with entries `Y`: the data matrix, `N0`: the number of control units, `T0`: +#' the number of time periods before treatment, `W`: the matrix of treatment indicators. +#' +#' @examples +#' \donttest{ +#' # Load tobacco sales in long panel format. +#' data("california_prop99") +#' # Transform to N*T matrix format required for synthdid, +#' # where N is the number of units and T the time periods. +#' setup <- panel.matrices(california_prop99, unit = 1, time = 2, outcome = 3, treatment = 4) +#' +#' # Compute synthdid estimate +#' synthdid_estimate(setup$Y, setup$N0, setup$T0) +#' } +#' +#' @export +panel.matrices = function(panel, unit = 1, time = 2, outcome = 3, treatment = 4, treated.last = TRUE) { + # TODO: add support for covariates X, i.e. could keep all other columns + keep = c(unit, time, outcome, treatment) + if (!all(keep %in% 1:ncol(panel) | keep %in% colnames(panel))) { + stop("Column identifiers should be either integer or column names in `panel`.") + } + index.to.name = function(x) { if(x %in% 1:ncol(panel)) { colnames(panel)[x] } else { x } } + unit = index.to.name(unit) + time = index.to.name(time) + outcome = index.to.name(outcome) + treatment = index.to.name(treatment) + keep = c(unit, time, outcome, treatment) + + panel = panel[keep] + if (!is.data.frame(panel)){ + stop("Unsupported input type `panel.`") + } + if (anyNA(panel)) { + stop("Missing values in `panel`.") + } + if (length(unique(panel[, treatment])) == 1) { + stop("There is no variation in treatment status.") + } + if (!all(panel[, treatment] %in% c(0, 1))) { + stop("The treatment status should be in 0 or 1.") + } + # Convert potential factor/date columns to character + panel = data.frame( + lapply(panel, function(col) {if (is.factor(col) || inherits(col, "Date")) as.character(col) else col}), stringsAsFactors = FALSE + ) + val <- as.vector(table(panel[, unit], panel[, time])) + if (!all(val == 1)) { + stop("Input `panel` must be a balanced panel: it must have an observation for every unit at every time.") + } + + panel = panel[order(panel[, unit], panel[, time]), ] + num.years = length(unique(panel[, time])) + num.units = length(unique(panel[, unit])) + Y = matrix(panel[,outcome], num.units, num.years, byrow = TRUE, + dimnames = list(unique(panel[,unit]), unique(panel[,time]))) + W = matrix(panel[,treatment], num.units, num.years, byrow = TRUE, + dimnames = list(unique(panel[,unit]), unique(panel[,time]))) + w = apply(W, 1, any) # indicator for units that are treated at any time + T0 = unname(which(apply(W, 2, any))[1]-1) # last period nobody is treated + N0 = sum(!w) + + if(! (all(W[!w,] == 0) && all(W[,1:T0] == 0) && all(W[w, (T0+1):ncol(Y)]==1))) { + stop("The package cannot use this data. Treatment adoption is not simultaneous.") + } + + unit.order = if(treated.last) { order(W[,T0+1], rownames(Y)) } else { 1:nrow(Y) } + list(Y = Y[unit.order, ], N0 = N0, T0 = T0, W = W[unit.order, ]) +} + +#' Get timesteps from panel matrix Y +#' +#' timesteps are stored as colnames(Y), but column names cannot be Date objects. +#' Instead, we use strings. If they are strings convertible to dates, return that +#' +#' @param Y a matrix +#' @return its column names interpreted as Dates if possible +#' @export +timesteps = function(Y) { + tryCatch({ + as.Date(colnames(Y)) + }, error = function(e) { colnames(Y) }) +} + + +## define some convenient accessors +setOldClass("synthdid_estimate") +setOldClass("synthdid_estimate_weighted") +get_slot = function(name) { function(object) { object[[name]] } } +setGeneric('weights') +setGeneric('Y', get_slot('Y')) +setGeneric('lambda', get_slot('lambda')) +setGeneric('omega', get_slot('omega')) +setGeneric('treated.weights', get_slot('treated.weights')) +setGeneric('period.weights', get_slot('period.weights')) +setMethod(weights, signature='synthdid_estimate', definition=function(object) { attr(object, 'weights') }) +setMethod(Y, signature='synthdid_estimate', definition=function(object) { attr(object, 'setup')$Y }) +setMethod(lambda, signature='synthdid_estimate', definition=function(object) { lambda(weights(object)) }) +setMethod(omega, signature='synthdid_estimate', definition=function(object) { omega(weights(object)) }) + +# Accessors for weighted estimates +setMethod(weights, signature='synthdid_estimate_weighted', definition=function(object) { attr(object, 'weights') }) +setMethod(Y, signature='synthdid_estimate_weighted', definition=function(object) { attr(object, 'setup')$Y }) +setMethod(lambda, signature='synthdid_estimate_weighted', definition=function(object) { lambda(weights(object)) }) +setMethod(omega, signature='synthdid_estimate_weighted', definition=function(object) { omega(weights(object)) }) +setMethod(treated.weights, signature='synthdid_estimate_weighted', definition=function(object) { attr(object, 'treated.weights') }) +setMethod(period.weights, signature='synthdid_estimate_weighted', definition=function(object) { attr(object, 'period.weights') }) + + +# A convenience function for generating data for unit tests. +random.low.rank = function() { + n_0 <- 100 + n_1 <- 10 + T_0 <- 120 + T_1 <- 20 + n <- n_0 + n_1 + T <- T_0 + T_1 + tau <- 1 + sigma <- .5 + rank <- 2 + rho <- 0.7 + var <- outer(1:T, 1:T, FUN=function(x, y) rho^(abs(x-y))) + + W <- (1:n > n_0) %*% t(1:T > T_0) + U <- matrix(rpois(rank * n, sqrt(sample(1:n)) / sqrt(n)), n, rank) + V <- matrix(rpois(rank * T, sqrt(1:T) / sqrt(T)), T, rank) + alpha <- outer(10*sample(1:n)/n, rep(1,T)) + beta <- outer(rep(1,n), 10*(1:T)/T) + mu <- U %*% t(V) + alpha + beta + error <- mvtnorm::rmvnorm(n, sigma = var, method = "chol") + Y <- mu + tau * W + sigma * error + rownames(Y) = 1:n + colnames(Y) = 1:T + list(Y=Y, L=mu, N0=n_0, T0=T_0) +} diff --git a/R_weighted/vcov.R b/R_weighted/vcov.R new file mode 100644 index 0000000..3d74b37 --- /dev/null +++ b/R_weighted/vcov.R @@ -0,0 +1,301 @@ +#' Calculate Variance-Covariance Matrix for a Fitted Model Object +#' +#' Provides variance estimates based on the following three options +#' \itemize{ +#' \item The bootstrap, Algorithm 2 in Arkhangelsky et al. +#' \item The jackknife, Algorithm 3 in Arkhangelsky et al. +#' \item Placebo, Algorithm 4 in Arkhangelsky et al. +#' } +#' +#' The jackknife is not recommended for SC, see section 5 in Arkhangelsky et al. +#' "placebo" is the only option that works for only one treated unit. +#' +#' @param object A synthdid model +#' @param method, the CI method. The default is bootstrap (warning: this may be slow on large +#' data sets, the jackknife option is the fastest, with the caveat that it is not recommended +#' for SC). +#' @param replications, the number of bootstrap replications +#' @param ... Additional arguments (currently ignored). +#' +#' @references Dmitry Arkhangelsky, Susan Athey, David A. Hirshberg, Guido W. Imbens, and Stefan Wager. +#' "Synthetic Difference in Differences". arXiv preprint arXiv:1812.09970, 2019. +#' +#' @method vcov synthdid_estimate +#' @export +vcov.synthdid_estimate = function(object, + method = c("bootstrap", "jackknife", "placebo"), + replications = 200, ...) { + method = match.arg(method) + if(method == 'bootstrap') { + se = bootstrap_se(object, replications) + } else if(method == 'jackknife') { + se = jackknife_se(object) + } else if(method == 'placebo') { + se = placebo_se(object, replications) + } + matrix(se^2) +} + +#' Calculate the standard error of a synthetic diff in diff estimate. Deprecated. Use vcov.synthdid_estimate. +#' @param ... Any valid arguments for vcov.synthdid_estimate +#' @export synthdid_se +synthdid_se = function(...) { sqrt(vcov(...)) } + + +# The bootstrap se: Algorithm 2 of Arkhangelsky et al. +bootstrap_se = function(estimate, replications) { sqrt((replications-1)/replications) * sd(bootstrap_sample(estimate, replications)) } +bootstrap_sample = function(estimate, replications) { + setup = attr(estimate, 'setup') + opts = attr(estimate, 'opts') + weights = attr(estimate, 'weights') + if (setup$N0 == nrow(setup$Y) - 1) { return(NA) } + theta = function(ind) { + if(all(ind <= setup$N0) || all(ind > setup$N0)) { NA } + else { + weights.boot = weights + weights.boot$omega = sum_normalize(weights$omega[sort(ind[ind <= setup$N0])]) + do.call(synthdid_estimate, c(list(Y=setup$Y[sort(ind),], N0=sum(ind <= setup$N0), T0=setup$T0, X=setup$X[sort(ind), ,], weights=weights.boot), opts)) + } + } + bootstrap.estimates = rep(NA, replications) + count = 0 + while(count < replications) { + bootstrap.estimates[count+1] = theta(sample(1:nrow(setup$Y), replace=TRUE)) + if(!is.na(bootstrap.estimates[count+1])) { count = count+1 } + } + bootstrap.estimates +} + + +# The fixed-weights jackknife estimate of variance: Algorithm 3 of Arkhangelsky et al. +# if weights = NULL is passed explicitly, calculates the usual jackknife estimate of variance. +# returns NA if there is one treated unit or, for the fixed-weights jackknife, one control with nonzero weight +jackknife_se = function(estimate, weights = attr(estimate, 'weights')) { + setup = attr(estimate, 'setup') + opts = attr(estimate, 'opts') + if (!is.null(weights)) { + opts$update.omega = opts$update.lambda = FALSE + } + if (setup$N0 == nrow(setup$Y) - 1 || (!is.null(weights) && sum(weights$omega != 0) == 1)) { return(NA) } + theta = function(ind) { + weights.jk = weights + if (!is.null(weights)) { weights.jk$omega = sum_normalize(weights$omega[ind[ind <= setup$N0]]) } + estimate.jk = do.call(synthdid_estimate, + c(list(Y=setup$Y[ind, ], N0=sum(ind <= setup$N0), T0=setup$T0, X = setup$X[ind, , ], weights = weights.jk), opts)) + } + jackknife(1:nrow(setup$Y), theta) +} + +#' Jackknife standard error of function `theta` at samples `x`. +#' @param x vector of samples +#' @param theta a function which returns a scalar estimate +#' @importFrom stats var +#' @keywords internal +jackknife = function(x, theta) { + n = length(x) + u = rep(0, n) + for (i in 1:n) { + u[i] = theta(x[-i]) + } + jack.se = sqrt(((n - 1) / n) * (n - 1) * var(u)) + + jack.se +} + + + +# The placebo se: Algorithm 4 of Arkhangelsky et al. +placebo_se = function(estimate, replications) { + setup = attr(estimate, 'setup') + opts = attr(estimate, 'opts') + weights = attr(estimate, 'weights') + N1 = nrow(setup$Y) - setup$N0 + if (setup$N0 <= N1) { stop('must have more controls than treated units to use the placebo se') } + theta = function(ind) { + N0 = length(ind)-N1 + weights.boot = weights + weights.boot$omega = sum_normalize(weights$omega[ind[1:N0]]) + do.call(synthdid_estimate, c(list(Y=setup$Y[ind,], N0=N0, T0=setup$T0, X=setup$X[ind, ,], weights=weights.boot), opts)) + } + sqrt((replications-1)/replications) * sd(replicate(replications, theta(sample(1:setup$N0)))) +} + +sum_normalize = function(x) { + if(sum(x) != 0) { x / sum(x) } + else { rep(1/length(x), length(x)) } + # if given a vector of zeros, return uniform weights + # this fine when used in bootstrap and placebo standard errors, where it is used only for initialization + # for jackknife standard errors, where it isn't, we handle the case of a vector of zeros without calling this function. +} + + +# ============================================================================= +# WEIGHTED VERSIONS OF VARIANCE ESTIMATION +# ============================================================================= + +#' Calculate Variance-Covariance Matrix for a Weighted Synthetic DID Estimate +#' +#' Provides variance estimates for weighted synthdid estimates. +#' The key difference from the unweighted version is that treated unit weights +#' must be renormalized when resampling. +#' +#' @param object A synthdid_estimate_weighted model +#' @param method, the CI method. The default is bootstrap. +#' @param replications, the number of bootstrap replications +#' @param ... Additional arguments (currently ignored). +#' +#' @method vcov synthdid_estimate_weighted +#' @export +vcov.synthdid_estimate_weighted = function(object, + method = c("bootstrap", "jackknife", "placebo"), + replications = 200, ...) { + method = match.arg(method) + if(method == 'bootstrap') { + se = bootstrap_se_weighted(object, replications) + } else if(method == 'jackknife') { + se = jackknife_se_weighted(object) + } else if(method == 'placebo') { + se = placebo_se_weighted(object, replications) + } + matrix(se^2) +} + +#' Calculate the standard error of a weighted synthetic diff in diff estimate +#' @param ... Any valid arguments for vcov.synthdid_estimate_weighted +#' @export synthdid_se_weighted +synthdid_se_weighted = function(...) { sqrt(vcov(...)) } + + +# The bootstrap se for weighted estimates: modified Algorithm 2 +# Key change: renormalize treated.weights for resampled treated units +bootstrap_se_weighted = function(estimate, replications) { + sqrt((replications-1)/replications) * sd(bootstrap_sample_weighted(estimate, replications)) +} + +bootstrap_sample_weighted = function(estimate, replications) { + setup = attr(estimate, 'setup') + opts = attr(estimate, 'opts') + weights = attr(estimate, 'weights') + treated.weights = attr(estimate, 'treated.weights') + period.weights = attr(estimate, 'period.weights') + N1 = nrow(setup$Y) - setup$N0 + + if (setup$N0 == nrow(setup$Y) - 1) { return(NA) } + + theta = function(ind) { + control.ind = sort(ind[ind <= setup$N0]) + treated.ind = sort(ind[ind > setup$N0]) + treated.ind.local = treated.ind - setup$N0 # indices within treated units + + if(length(control.ind) == 0 || length(treated.ind) == 0) { return(NA) } + + # Renormalize control weights + weights.boot = weights + weights.boot$omega = sum_normalize(weights$omega[control.ind]) + + # Renormalize treated weights for resampled treated units + # Count how many times each treated unit appears + treated.counts = tabulate(treated.ind.local, nbins = N1) + treated.weights.boot = treated.weights * treated.counts + treated.weights.boot = sum_normalize(treated.weights.boot) + + # Reconstruct Y matrix with resampled units + Y.boot = setup$Y[c(control.ind, treated.ind), ] + X.boot = setup$X[c(control.ind, treated.ind), , ] + N0.boot = length(control.ind) + + do.call(synthdid_estimate_weighted, + c(list(Y = Y.boot, N0 = N0.boot, T0 = setup$T0, X = X.boot, + treated.weights = treated.weights.boot, + period.weights = period.weights, + weights = weights.boot), opts)) + } + + bootstrap.estimates = rep(NA, replications) + count = 0 + while(count < replications) { + bootstrap.estimates[count+1] = theta(sample(1:nrow(setup$Y), replace=TRUE)) + if(!is.na(bootstrap.estimates[count+1])) { count = count+1 } + } + bootstrap.estimates +} + + +# The fixed-weights jackknife estimate for weighted estimates: modified Algorithm 3 +# Key change: renormalize treated.weights when leaving out treated units +jackknife_se_weighted = function(estimate, weights = attr(estimate, 'weights')) { + setup = attr(estimate, 'setup') + opts = attr(estimate, 'opts') + treated.weights.orig = attr(estimate, 'treated.weights') + period.weights = attr(estimate, 'period.weights') + N1 = nrow(setup$Y) - setup$N0 + + if (!is.null(weights)) { + opts$update.omega = opts$update.lambda = FALSE + } + if (setup$N0 == nrow(setup$Y) - 1 || (!is.null(weights) && sum(weights$omega != 0) == 1)) { + return(NA) + } + + theta = function(ind) { + control.ind = ind[ind <= setup$N0] + treated.ind = ind[ind > setup$N0] + treated.ind.local = treated.ind - setup$N0 + + # Renormalize control weights + weights.jk = weights + if (!is.null(weights)) { + weights.jk$omega = sum_normalize(weights$omega[control.ind]) + } + + # Renormalize treated weights for remaining treated units + treated.weights.jk = treated.weights.orig[treated.ind.local] + treated.weights.jk = sum_normalize(treated.weights.jk) + + estimate.jk = do.call(synthdid_estimate_weighted, + c(list(Y = setup$Y[ind, ], N0 = sum(ind <= setup$N0), T0 = setup$T0, + X = setup$X[ind, , ], + treated.weights = treated.weights.jk, + period.weights = period.weights, + weights = weights.jk), opts)) + } + jackknife(1:nrow(setup$Y), theta) +} + + +# The placebo se for weighted estimates: modified Algorithm 4 +# For placebo, we reassign N1 control units as "treated" and estimate effect +# Key change: need to assign weights to the placebo treated units +placebo_se_weighted = function(estimate, replications) { + setup = attr(estimate, 'setup') + opts = attr(estimate, 'opts') + weights = attr(estimate, 'weights') + treated.weights.orig = attr(estimate, 'treated.weights') + period.weights = attr(estimate, 'period.weights') + N1 = nrow(setup$Y) - setup$N0 + + if (setup$N0 <= N1) { + stop('must have more controls than treated units to use the placebo se') + } + + theta = function(ind) { + N0.placebo = length(ind) - N1 + + # Renormalize control weights for remaining controls + weights.boot = weights + weights.boot$omega = sum_normalize(weights$omega[ind[1:N0.placebo]]) + + # For placebo treated units, use uniform weights + # (original treated.weights don't apply to control units acting as placebo treated) + treated.weights.placebo = rep(1/N1, N1) + + do.call(synthdid_estimate_weighted, + c(list(Y = setup$Y[ind, ], N0 = N0.placebo, T0 = setup$T0, + X = setup$X[ind, , ], + treated.weights = treated.weights.placebo, + period.weights = period.weights, + weights = weights.boot), opts)) + } + + sqrt((replications-1)/replications) * sd(replicate(replications, theta(sample(1:setup$N0)))) +} diff --git a/data/README.md b/data/README.md index 8b08163..3e874a6 100644 --- a/data/README.md +++ b/data/README.md @@ -2,3 +2,5 @@ This package contains the following data sets: 1. California proposition 99 (`california_prop99.csv`) This data is from Abadie, Diamond, and Hainmueller (2010). The raw data is in MATLAB format from https://web.stanford.edu/~jhain/synthpage.html and is preprocessed here to a long panel, and saved as a `;` delimited CSV to work with R's `data()` function. + +2. A replication file based on Borgschult and Vogler (2020). The raw data are not available online, but an open-source version has been created by "county_dataset_creation.R" diff --git a/data/analysis_data.csv b/data/analysis_data.csv new file mode 100644 index 0000000..5175a45 --- /dev/null +++ b/data/analysis_data.csv @@ -0,0 +1,21988 @@ +"","year","fips","state_abb","state_fips","county_fips","pop_total","pct_white","pop_20_64","pct_55_64","log_20_64","log_35_44","log_f_20_64","unemp","crude_rate","deaths","population","expansion","post","treated","ever_missing_flag","count_year" +"1",2009,2020,"AK","02","020",287677,0.718722734177567,23619,0.111736426617352,10.0698067518526,10.5764830448852,11.4151251874443,6.71538461538462,311.052174909549,570,183249,0,0,0,0,9 +"2",2009,2050,"AK","02","050",16860,0.121055753262159,1336,0.083570581257414,7.19743535409659,7.5522372875608,8.34593026197902,14.5,501.448629373746,45,8974,0,0,0,0,9 +"3",2009,2070,"AK","02","070",4776,0.21356783919598,367,0.10322445561139,5.90536184805457,6.18414889093748,7.14677217945264,10.6,418.250950570342,11,2630,0,0,0,0,9 +"4",2009,2090,"AK","02","090",95238,0.816102816102816,9454,0.108790608790609,9.15419321135318,9.40722208010147,10.2645130192121,7.3,274.644433545856,168,61170,0,0,0,0,9 +"5",2009,2110,"AK","02","110",30857,0.756100722688531,1800,0.140259908610688,7.49554194388426,8.372398606513,9.1984701994057,6.08461538461538,223.813786929275,45,20106,0,0,0,0,9 +"6",2009,2122,"AK","02","122",54796,0.882892911891379,2960,0.154244835389444,7.99294454731811,8.82864061741828,9.6912221193691,10.1461538461538,465.715708385812,159,34141,0,0,0,0,9 +"7",2009,2130,"AK","02","130",13320,0.740015015015015,700,0.142192192192192,6.5510803350434,7.4764723811639,8.30424746507847,7.49230769230769,464.506908051453,39,8396,0,0,0,0,9 +"8",2009,2150,"AK","02","150",13505,0.6183635690485,894,0.110921880784894,6.79570577517351,7.48099216286952,8.25322764558177,7.41538461538462,291.580609889442,24,8231,0,0,0,0,9 +"9",2009,2170,"AK","02","170",86885,0.893042527478851,4737,0.117005236807274,8.46315930292375,9.39316180381179,10.1420712883382,9.13846153846154,318.738786883994,167,52394,0,0,0,0,9 +"10",2009,2180,"AK","02","180",9313,0.178889724041662,734,0.09524320841834,6.59850902861452,6.96696713861398,7.755767170103,12.0230769230769,758.312269103636,39,5143,0,0,0,0,9 +"11",2009,2185,"AK","02","185",9105,0.343218012081274,727,0.137506864360242,6.58892647753352,7.08170858610557,7.63530388625941,4.87692307692308,322.684737011939,20,6198,0,0,0,0,9 +"12",2009,2188,"AK","02","188",7467,0.128431766438998,659,0.0843712334270792,6.49072353450251,6.76157276880406,7.48549160803075,12.2384615384615,448.542237727386,18,4013,0,0,0,0,9 +"13",2009,2220,"AK","02","220",8844,0.710877431026685,501,0.131614654002714,6.21660610108486,7.05098944706805,7.90581031265893,6.46153846153846,199.709513435004,11,5508,0,0,0,0,9 +"14",2009,2261,"AK","02","261",9492,0.782343025705858,545,0.151285292878213,6.30078579466324,7.10578612948127,7.95437227253187,9.08461538461538,323.101777059774,20,6190,0,0,0,0,9 +"15",2009,2270,"AK","02","270",7469,0.0298567411969474,693,0.0653367251305396,6.5410299991899,6.67203294546107,7.4312996751559,NA,582.6859045505,21,3604,0,0,0,0,9 +"16",2009,2290,"AK","02","290",5495,0.236760691537762,379,0.139763421292084,5.93753620508243,6.36302810354046,7.31388683163346,14.4692307692308,664.050709326894,22,3313,0,0,0,0,9 +"17",2009,1001,"AL","01","001",54135,0.802050429481851,2919,0.104996767340907,7.97899637085411,9.02352874990936,9.6865124372423,8.89230769230769,412.522784688689,129,31271,0,0,0,0,9 +"18",2009,1003,"AL","01","003",179406,0.885873382161132,9197,0.132810496861866,9.1266326229027,10.063009495553,10.876725564852,8.93846153846154,402.497997162244,417,103603,0,0,0,0,9 +"19",2009,1005,"AL","01","005",27657,0.5125284738041,1818,0.129117402465922,7.50549227473742,8.23137604557397,8.92225821950306,13.1615384615385,540.921919096896,92,17008,0,0,0,0,9 +"20",2009,1007,"AL","01","007",22941,0.769975153655028,1504,0.117213722156837,7.31588350450979,8.11880299698004,8.73359406186306,12.1615384615385,493.409459364207,70,14187,0,0,0,0,9 +"21",2009,1009,"AL","01","009",57341,0.973770949233533,3137,0.124849584067247,8.05102220819068,9.01517670716893,9.72460009247646,9.16153846153846,424.577664822844,142,33445,0,0,0,0,9 +"22",2009,1011,"AL","01","011",10987,0.270137435150633,718,0.122781469008829,6.57646956904822,7.22402480828583,7.9355873855892,14.3615384615385,640.930093903711,43,6709,0,0,0,0,9 +"23",2009,1013,"AL","01","013",20867,0.550965639526525,1177,0.130397277998754,7.07072410726028,7.77317368048254,8.75416074932352,15.0923076923077,710.479573712256,84,11823,0,0,0,0,9 +"24",2009,1015,"AL","01","015",118363,0.774008769632402,8849,0.124135075995032,9.08805973726735,9.60197697214781,10.4942974207283,10.2,574.932924492143,405,70443,0,0,0,0,9 +"25",2009,1017,"AL","01","017",34384,0.596236621684504,1871,0.136313401582131,7.53422832627409,8.40804774415544,9.23795553900916,18.1,570.77054022931,114,19973,0,0,0,0,9 +"26",2009,1019,"AL","01","019",25854,0.941053608725922,1190,0.149029163765762,7.08170858610557,8.14554963178358,8.92119055624937,10.7,516.590502682297,78,15099,0,0,0,0,9 +"27",2009,1021,"AL","01","021",43484,0.887268880507773,2531,0.119814184527642,7.83636976054512,8.68929604801586,9.45571497213171,9.76153846153846,578.599632511044,148,25579,0,0,0,0,9 +"28",2009,1023,"AL","01","023",13976,0.559530623926732,649,0.141385231825987,6.47543271670409,7.44716835960004,8.31801027754687,12.3692307692308,657.56196256955,52,7908,0,0,0,0,9 +"29",2009,1025,"AL","01","025",26038,0.549542975650972,1293,0.123627006682541,7.16472037877186,8.12799505577195,8.95364003713313,15.2461538461538,564.856403974411,83,14694,0,0,0,0,9 +"30",2009,1027,"AL","01","027",14006,0.835142081964872,759,0.12751677852349,6.63200177739563,7.53689712956617,8.30647216010058,15.3692307692308,550.757291275504,44,7989,0,0,0,0,9 +"31",2009,1029,"AL","01","029",14918,0.956964740581847,725,0.135205791661081,6.58617165485467,7.6425241342329,8.3584318990313,9.33076923076923,766.995932597327,66,8605,0,0,0,0,9 +"32",2009,1031,"AL","01","031",49440,0.788996763754045,3040,0.119538834951456,8.01961279440027,8.80267284031282,9.57789590701113,7.8,388.864035238652,113,29059,0,0,0,0,9 +"33",2009,1033,"AL","01","033",54426,0.825028479035755,2933,0.130709587329585,7.98378106897745,8.86403999703599,9.69609431131315,10.6615384615385,548.075399968319,173,31565,0,0,0,0,9 +"34",2009,1035,"AL","01","035",13274,0.526216664155492,643,0.145095675757119,6.46614472423762,7.34536484041687,8.2529671950008,18.4384615384615,712.557139015864,53,7438,0,0,0,0,9 +"35",2009,1037,"AL","01","037",11410,0.67467134092901,536,0.152585451358457,6.2841341610708,7.34536484041687,8.14351740579748,14.7769230769231,542.840375586855,37,6816,0,0,0,0,9 +"36",2009,1039,"AL","01","039",37648,0.860444113897153,1963,0.132596685082873,7.58222919427646,8.44160720445964,9.29145942326097,9.90769230769231,540.998259396905,115,21257,0,0,0,0,9 +"37",2009,1041,"AL","01","041",14024,0.737450085567598,732,0.131631488876212,6.59578051396131,7.50823877467866,8.32579052588609,9.55384615384615,582.981890349789,47,8062,0,0,0,0,9 +"38",2009,1043,"AL","01","043",80351,0.976279075555998,4704,0.125822951798982,8.45616848957846,9.25177018173932,10.0523384992685,9.4,502.598541394871,235,46757,0,0,0,0,9 +"39",2009,1045,"AL","01","045",49854,0.772094515986681,3443,0.116219360532756,8.14409846333852,8.72874987347853,9.59913394579637,8.83076923076923,497.714575926866,147,29535,0,0,0,0,9 +"40",2009,1047,"AL","01","047",43759,0.297835873763112,2661,0.121917776914463,7.88645727097769,8.54791636405908,9.50278608027699,19.5538461538462,621.496466000487,153,24618,0,0,0,0,9 +"41",2009,1049,"AL","01","049",70864,0.94397719575525,3864,0.118325242718447,8.25945819533241,9.17936556767675,9.9186224401204,13.1076923076923,527.206297050097,215,40781,0,0,0,0,9 +"42",2009,1051,"AL","01","051",78632,0.782772916878624,4980,0.116352121273782,8.5131851700187,9.36879605766816,10.1148823568158,8.66153846153846,428.784489187174,207,48276,0,0,0,0,9 +"43",2009,1053,"AL","01","053",38249,0.638291197155481,2173,0.123088185312034,7.68386398025643,8.55910259449345,9.24551444698384,12.3923076923077,590.516481579411,134,22692,0,0,0,0,9 +"44",2009,1055,"AL","01","055",104239,0.830351403985073,6022,0.132838956628517,8.70317470904168,9.54952321729037,10.3445771716172,10.5076923076923,688.227854338792,419,60881,0,0,0,0,9 +"45",2009,1057,"AL","01","057",17310,0.87475447718082,921,0.13737723859041,6.82546003625531,7.68248244653451,8.50613224405681,12.8846153846154,675.329990790955,66,9773,0,0,0,0,9 +"46",2009,1059,"AL","01","059",31589,0.938807812846244,1977,0.115293298300041,7.58933582317062,8.34521792667643,9.08952775175944,12.3230769230769,497.512437810945,90,18090,0,0,0,0,9 +"47",2009,1061,"AL","01","061",26653,0.888192698758114,1501,0.136269838292125,7.31388683163346,8.14844566624324,8.94936514235297,9.88461538461539,614.861329147043,94,15288,0,0,0,0,9 +"48",2009,1063,"AL","01","063",9182,0.181986495316924,528,0.141908081028098,6.26909628370626,6.86484777797086,7.91607809630279,14.0538461538462,621.479899009516,32,5149,0,0,0,0,9 +"49",2009,1065,"AL","01","065",16025,0.40405616224649,941,0.129609984399376,6.84694313958538,7.53208814354172,8.47637119689598,13.1076923076923,555.495044112842,51,9181,0,0,0,0,9 +"50",2009,1067,"AL","01","067",17243,0.697326451313577,865,0.152061706199617,6.76272950693188,7.68156036255954,8.54791636405908,10.2615384615385,580.348208925355,58,9994,0,0,0,0,9 +"51",2009,1069,"AL","01","069",100500,0.720109452736318,5759,0.12355223880597,8.65851912750667,9.49664649824803,10.3318876319268,8.5,471.818197247161,278,58921,0,0,0,0,9 +"52",2009,1071,"AL","01","071",53461,0.936607994612895,2716,0.136510727446176,7.90691548867859,8.88668563906558,9.66871413573975,11.7153846153846,605.439343947208,189,31217,0,0,0,0,9 +"53",2009,1073,"AL","01","073",658441,0.55628674399073,46336,0.118804873937073,10.7436744757454,11.3477677628547,12.2500991002792,9.85384615384615,523.593031799249,2088,398783,0,0,0,0,9 +"54",2009,1075,"AL","01","075",14689,0.879161277146164,733,0.138879433589761,6.59714570188665,7.51697722460432,8.32627478739676,14.7307692307692,543.67524465386,45,8277,0,0,0,0,9 +"55",2009,1077,"AL","01","077",92526,0.883524630914554,7018,0.128536843697988,8.85623355614316,9.36546200884348,10.2327553278087,9.76153846153846,471.5847095593,255,54073,0,0,0,0,9 +"56",2009,1079,"AL","01","079",34315,0.813725775899752,1967,0.127815823983681,7.58426481838906,8.49515206053936,9.24676872858973,12.5230769230769,617.102556567734,126,20418,0,0,0,0,9 +"57",2009,1081,"AL","01","081",138566,0.734631872176436,21183,0.0930819970266876,9.96095425218446,9.75666826558467,10.6874347574225,8.60769230769231,279.622107407109,243,86903,0,0,0,0,9 +"58",2009,1083,"AL","01","083",81326,0.846346801760814,4538,0.118092614907902,8.42024166533979,9.41914156157452,10.0868502338385,8.95384615384615,382.489586670939,191,49936,0,0,0,0,9 +"59",2009,1085,"AL","01","085",11486,0.254570781821348,698,0.128765453595682,6.54821910276237,7.22766249872865,8.17751582384608,17.8153846153846,829.812914906457,55,6628,0,0,0,0,9 +"60",2009,1087,"AL","01","087",21190,0.158046248230297,2439,0.130816422840963,7.79934339821592,7.74630066223144,8.82025636590632,11.2153846153846,800.384184408516,100,12494,0,0,0,0,9 +"61",2009,1089,"AL","01","089",330856,0.713086660057548,24087,0.110362211959281,10.0894275548528,10.7177012610755,11.5349511097272,7.35384615384615,348.228104289853,702,201592,0,0,0,0,9 +"62",2009,1091,"AL","01","091",21170,0.471232876712329,1168,0.129522909777988,7.06304816338817,7.87092959675514,8.74257423767064,13.0769230769231,543.570579242398,64,11774,0,0,0,0,9 +"63",2009,1093,"AL","01","093",30646,0.952196045160869,1556,0.136624681850813,7.34987370473834,8.34640487043596,9.07600865918089,15.2923076923077,492.555058597067,87,17663,0,0,0,0,9 +"64",2009,1095,"AL","01","095",92213,0.957630702829319,5439,0.119017925888974,8.60135049942296,9.40861729556027,10.1850509439797,9.30769230769231,537.461440926553,284,52841,0,0,0,0,9 +"65",2009,1097,"AL","01","097",411994,0.618295412069108,29036,0.117606081641966,10.2762917184047,10.8574978714373,11.7460906317255,10.3692307692308,519.932100566788,1265,243301,0,0,0,0,9 +"66",2009,1099,"AL","01","099",23218,0.563011456628478,1160,0.129856146093548,7.05617528410041,7.97453284413023,8.81135422996573,18.0461538461538,602.177101829692,78,12953,0,0,0,0,9 +"67",2009,1101,"AL","01","101",227607,0.420826248753334,18499,0.109829662532347,9.82547195555139,10.2977905959381,11.1883995856174,9.61538461538461,432.755354801107,594,137260,0,0,0,0,9 +"68",2009,1103,"AL","01","103",118954,0.856104040217227,6894,0.122677673722615,8.83840674707681,9.70546335201488,10.4755681876166,9.91538461538462,453.742313944448,321,70745,0,0,0,0,9 +"69",2009,1105,"AL","01","105",10690,0.308699719363892,819,0.120860617399439,6.70808408385307,7.01571242048723,8.02943284058124,18.3538461538462,717.410323709536,41,5715,0,0,0,0,9 +"70",2009,1107,"AL","01","107",19814,0.57232260018169,1164,0.13434944988392,7.05961762829138,7.76514490293613,8.67846133901236,12.5615384615385,515.097690941385,58,11260,0,0,0,0,9 +"71",2009,1109,"AL","01","109",32560,0.599447174447174,4811,0.108077395577396,8.47866024169945,8.14960173573616,9.22088458585185,8.7,479.885644272003,94,19588,0,0,0,0,9 +"72",2009,1111,"AL","01","111",22864,0.784289713086074,1199,0.131735479356193,7.08924315502751,7.95296679092313,8.78538658728416,13.7384615384615,537.927808528884,69,12827,0,0,0,0,9 +"73",2009,1113,"AL","01","113",52162,0.557954066178444,3554,0.114470304052759,8.1758290087146,8.78354947715327,9.6828408814205,11.3307692307692,642.243921620028,196,30518,0,0,0,0,9 +"74",2009,1115,"AL","01","115",83009,0.900733655386765,4475,0.122215663361804,8.40626163070896,9.39249524821304,10.1272309239223,9.98461538461538,466.799849674625,236,50557,0,0,0,0,9 +"75",2009,1117,"AL","01","117",192708,0.866819229092721,10585,0.115023766527596,9.26719318356897,10.3070174560098,11.0178255416657,7.1,306.33542045378,364,118824,0,0,0,0,9 +"76",2009,1119,"AL","01","119",13746,0.246689946166157,1385,0.121635384839226,7.23345541862144,7.30586003268401,8.36683530982767,13.7153846153846,544.234906973801,43,7901,0,0,0,0,9 +"77",2009,1121,"AL","01","121",82674,0.669400295135109,4903,0.12781527445146,8.49760254165123,9.34154405759153,10.1239073979287,13.2384615384615,615.260068811981,304,49410,0,0,0,0,9 +"78",2009,1123,"AL","01","123",41831,0.71889268724152,2219,0.141067629270159,7.70481192293259,8.6095900406822,9.42706335548747,12.4769230769231,503.362627387878,122,24237,0,0,0,0,9 +"79",2009,1125,"AL","01","125",192792,0.683155940080501,26581,0.104184820946927,10.1879519538319,10.0356117054632,11.01379781895,9.3,397.664351152723,474,119196,0,0,0,0,9 +"80",2009,1127,"AL","01","127",67347,0.930420063254488,3685,0.137140481387441,8.21202580462344,9.09974395063416,9.90747957380566,10.6769230769231,711.725808894049,282,39622,0,0,0,0,9 +"81",2009,1129,"AL","01","129",17493,0.662093408792088,900,0.127536728977305,6.80239476332431,7.72709448477984,8.53424694598207,13.8769230769231,563.097033685269,56,9945,0,0,0,0,9 +"82",2009,1131,"AL","01","131",11870,0.271440606571188,576,0.129907329401853,6.35610766069589,7.25981961036319,8.15507488781144,24.2615384615385,534.025022886787,35,6554,0,0,0,0,9 +"83",2009,1133,"AL","01","133",24691,0.980802721639464,1271,0.139443521931068,7.14755927118945,8.12058871174027,8.88016824790345,16.3692307692308,546.448087431694,79,14457,0,0,0,0,9 +"84",2009,5001,"AR","05","001",19134,0.741977631441413,981,0.138444653496394,6.88857245956536,7.74022952476318,8.63887970967284,15.4769230769231,651.465798045603,72,11052,0,0,0,0,9 +"85",2009,5003,"AR","05","003",21920,0.726824817518248,1187,0.130383211678832,7.07918439460967,7.9707403900071,8.76981787205262,10.4153846153846,531.743474057364,66,12412,0,0,0,0,9 +"86",2009,5005,"AR","05","005",41561,0.986092731166238,1701,0.157912466013811,7.43897159239586,8.33278946841796,9.33873358674458,9.18461538461538,642.834019331268,139,21623,0,0,0,0,9 +"87",2009,5007,"AR","05","007",216620,0.929064721632352,13086,0.0971009140430246,9.47929823542968,10.3344579510527,11.0554036132265,6.33846153846154,279.309489319813,349,124951,0,0,0,0,9 +"88",2009,5009,"AR","05","009",36844,0.983443708609272,2010,0.130794701986755,7.60589000105312,8.43098149459717,9.26236340004333,7.40769230769231,473.155658555427,98,20712,0,0,0,0,9 +"89",2009,5011,"AR","05","011",11538,0.699167966718669,700,0.124718322066216,6.5510803350434,7.24351297466548,8.08240225392624,9.60769230769231,434.041233917222,28,6451,0,0,0,0,9 +"90",2009,5013,"AR","05","013",5421,0.757424829367275,302,0.136690647482014,5.71042701737487,6.5191472879404,7.30921236569276,8.30769230769231,511.018843819866,16,3131,0,0,0,0,9 +"91",2009,5015,"AR","05","015",27158,0.972604757345902,1348,0.155423816186759,7.20637729147225,8.06274790108635,8.96200720958831,6.03076923076923,491.432266408018,76,15465,0,0,0,0,9 +"92",2009,5017,"AR","05","017",11851,0.445025736224791,697,0.130199983123787,6.54678541076052,7.2034055210831,8.09315669772264,10.9769230769231,645.258103241297,43,6664,0,0,0,0,9 +"93",2009,5019,"AR","05","019",23100,0.746926406926407,3301,0.10987012987013,8.10198073185319,7.78904040165748,8.84260448067803,7.99230769230769,436.616591430474,59,13513,0,0,0,0,9 +"94",2009,5021,"AR","05","021",16056,0.989910313901345,746,0.133657199800698,6.61472560020376,7.62119516280984,8.38958706681109,11.2153846153846,544.959128065395,48,8808,0,0,0,0,9 +"95",2009,5023,"AR","05","023",25870,0.987089292616931,1148,0.142636258214148,7.04577657687951,7.95787735848981,8.86106654351776,7.4,533.390228291018,75,14061,0,0,0,0,9 +"96",2009,5025,"AR","05","025",8649,0.867383512544803,439,0.128569776852815,6.08449941307517,7.01929665371504,7.81722278550817,7.99230769230769,389.823553549446,19,4874,0,0,0,0,9 +"97",2009,5027,"AR","05","027",24622,0.615668913979368,2376,0.113922508325887,7.77317368048254,7.9287663216267,8.87975079851313,9.6,567.691865478586,79,13916,0,0,0,0,9 +"98",2009,5029,"AR","05","029",21257,0.868325727995484,1181,0.123535776450111,7.07411681619736,7.86825426552061,8.71094912583585,7.43076923076923,440.675147584601,53,12027,0,0,0,0,9 +"99",2009,5031,"AR","05","031",95482,0.849741312498691,8562,0.102930395257745,9.05508908670489,9.38923941196881,10.2679570399408,6.93076923076923,389.829006822008,220,56435,0,0,0,0,9 +"100",2009,5033,"AR","05","033",61595,0.941180290608004,3616,0.1164704927348,8.19312372151207,9.01347354374019,9.79912653721139,7.72307692307692,528.342185875278,188,35583,0,0,0,0,9 +"101",2009,5035,"AR","05","035",50929,0.477939877083783,3095,0.106422666849928,8.0375431851187,8.79437027922287,9.64296658814672,10.7461538461538,659.907200549923,192,29095,0,0,0,0,9 +"102",2009,5037,"AR","05","037",17971,0.762784486116521,924,0.124533971398364,6.82871207164168,7.7621706071382,8.57187075270693,8.24615384615385,585.194577196918,60,10253,0,0,0,0,9 +"103",2009,5039,"AR","05","039",8188,0.568881289692233,469,0.140693698094773,6.15060276844628,6.85646198459459,7.7393592026891,10.0153846153846,458.315146224356,21,4582,0,0,0,0,9 +"104",2009,5041,"AR","05","041",13108,0.507323771742447,770,0.127403112602991,6.64639051484773,7.2841348061952,8.26719218593215,11.1846153846154,682.12824010914,50,7330,0,0,0,0,9 +"105",2009,5043,"AR","05","043",18495,0.706244931062449,1505,0.116085428494188,7.31654817718298,7.66340766489348,8.60300384782935,10.8846153846154,471.653617583247,50,10601,0,0,0,0,9 +"106",2009,5045,"AR","05","045",110813,0.873715177822097,13359,0.0973351502080081,9.49994559398981,9.56008133131199,10.4550999702028,6.85384615384615,313.337335461294,214,68297,0,0,0,0,9 +"107",2009,5047,"AR","05","047",18145,0.970294847065307,1007,0.126095343069716,6.91473089271856,7.71378461659875,8.52615293278771,7.16153846153846,403.901093488326,41,10151,0,0,0,0,9 +"108",2009,5049,"AR","05","049",12231,0.98430218297768,505,0.157141689150519,6.22455842927536,7.20934025660291,8.12888014212564,7.36153846153846,683.890577507599,45,6580,0,0,0,0,9 +"109",2009,5051,"AR","05","051",95840,0.89860183639399,4951,0.141517111853088,8.50734485536142,9.31099985507536,10.220303579713,7.52307692307692,573.635272945411,306,53344,0,0,0,0,9 +"110",2009,5053,"AR","05","053",17751,0.966987775336601,1046,0.122753647681821,6.95272864462487,7.79564653633459,8.55910259449345,7.01538461538462,420.609884332282,44,10461,0,0,0,0,9 +"111",2009,5055,"AR","05","055",41723,0.983366488507538,2509,0.11665028880953,7.82763954636642,8.6476949994804,9.40582491529642,9.91538461538462,534.604227103191,129,24130,0,0,0,0,9 +"112",2009,5057,"AR","05","057",22615,0.68056599602034,1318,0.118549635197878,7.18387071506245,7.88495294575981,8.79694389354174,8.13846153846154,518.541797611565,66,12728,0,0,0,0,9 +"113",2009,5059,"AR","05","059",32797,0.87727536055127,1846,0.133579290788792,7.5207764150628,8.34021732094704,9.12521811855935,8.47692307692308,496.342737722048,95,19140,0,0,0,0,9 +"114",2009,5061,"AR","05","061",13741,0.767993595808165,779,0.119641947456517,6.65801104587075,7.46221493976819,8.28979058318164,7.92307692307692,571.057754704737,44,7705,0,0,0,0,9 +"115",2009,5063,"AR","05","063",36259,0.959210127140848,2226,0.124493229267216,7.70796153183549,8.4252971767117,9.25970180151391,8.68461538461538,611.241105964376,128,20941,0,0,0,0,9 +"116",2009,5065,"AR","05","065",13679,0.974559543826303,595,0.149937860954748,6.38856140554563,7.37148929521428,8.1892445257359,9.03076923076923,577.882847386393,44,7614,0,0,0,0,9 +"117",2009,5067,"AR","05","067",17945,0.817887991083867,1075,0.12777932571747,6.98007594056176,7.77863014732581,8.59581951187143,10.8153846153846,588.073141596986,64,10883,0,0,0,0,9 +"118",2009,5069,"AR","05","069",77759,0.434007638987127,5802,0.124191411926594,8.66595796468135,9.16701524723781,10.0534150415191,9.70769230769231,618.271434130313,286,46258,0,0,0,0,9 +"119",2009,5071,"AR","05","071",25374,0.961693071648144,1740,0.117167179002128,7.46164039220858,8.05229649953865,8.88516409509682,7.09230769230769,420.225957564067,61,14516,0,0,0,0,9 +"120",2009,5073,"AR","05","073",7654,0.616148419127254,392,0.128168278024562,5.97126183979046,6.7428806357919,7.67878899819915,9.38461538461539,698.122291766972,29,4154,0,0,0,0,9 +"121",2009,5075,"AR","05","075",17336,0.984713890170743,1057,0.12471158283341,6.96318998587024,7.65302041380419,8.49392456447688,9.09230769230769,633.897952821365,61,9623,0,0,0,0,9 +"122",2009,5077,"AR","05","077",10458,0.435838592465098,625,0.131478294128897,6.4377516497364,7.2902928824466,7.82724090175281,9.08461538461538,669.781931464174,43,6420,0,0,0,0,9 +"123",2009,5079,"AR","05","079",14185,0.687345787804018,1133,0.109834332040888,7.03262426102801,7.67693714581808,8.04686951095958,9.77692307692308,520.212420071529,48,9227,0,0,0,0,9 +"124",2009,5081,"AR","05","081",13228,0.782657998185667,682,0.138569700635017,6.52502965784346,7.4442486494967,8.25971696102152,5.94615384615385,705.350013308491,53,7514,0,0,0,0,9 +"125",2009,5083,"AR","05","083",22429,0.956306567390432,1092,0.130188595122386,6.99576615630485,7.93307977188041,8.73198193834769,9.10769230769231,586.816720257235,73,12440,0,0,0,0,9 +"126",2009,5085,"AR","05","085",67481,0.92018494094634,3860,0.104355300010373,8.25842246245888,9.18471482433721,9.91309128867882,6.16923076923077,421.771440048202,168,39832,0,0,0,0,9 +"127",2009,5087,"AR","05","087",15673,0.974669814330377,785,0.134435015631979,6.66568371778241,7.60688453121963,8.39276311303806,6.66153846153846,475.979632499447,43,9034,0,0,0,0,9 +"128",2009,5089,"AR","05","089",16721,0.986125231744513,683,0.174331678727349,6.52649485957079,7.50933526601659,8.46695197497949,11.6615384615385,723.635202724274,68,9397,0,0,0,0,9 +"129",2009,5091,"AR","05","091",43284,0.73837907771925,2804,0.11972091303946,7.93880224815448,8.62998601889136,9.46807856805489,5.56923076923077,523.990145856959,134,25573,0,0,0,0,9 +"130",2009,5093,"AR","05","093",46857,0.644130012591502,2960,0.111765584651173,7.99294454731811,8.65381978894806,9.52156805800298,13.7461538461538,658.067912608581,175,26593,0,0,0,0,9 +"131",2009,5095,"AR","05","095",8286,0.578445570842385,408,0.142529567945933,6.01126717440416,6.8351845861473,7.77191025643576,8.03076923076923,789.820096533567,36,4558,0,0,0,0,9 +"132",2009,5097,"AR","05","097",9490,0.977871443624868,411,0.151106427818757,6.01859321449623,6.94889722231331,7.8407064517494,6.97692307692308,584.795321637427,30,5130,0,0,0,0,9 +"133",2009,5099,"AR","05","099",9058,0.67575623758004,470,0.134908368293221,6.1527326947041,6.96224346426621,7.84306401669205,9.15384615384615,616.792678074015,31,5026,0,0,0,0,9 +"134",2009,5101,"AR","05","101",8311,0.983756467332451,389,0.159788232463001,5.96357934361845,6.82871207164168,7.74370325817375,7.86923076923077,718.968069359273,34,4729,0,0,0,0,9 +"135",2009,5103,"AR","05","103",26024,0.580925299723332,1441,0.138372271749155,7.27309259599952,7.99023818572036,8.96033936649209,7.92307692307692,646.116570197873,96,14858,0,0,0,0,9 +"136",2009,5105,"AR","05","105",10443,0.970506559417792,533,0.133582303935651,6.27852142416584,7.24992553671799,8.01135510916129,7.76923076923077,480.132450331126,29,6040,0,0,0,0,9 +"137",2009,5107,"AR","05","107",21976,0.357116854750637,1252,0.120449581361485,7.13249755166004,7.7332456465298,8.75131624677346,9.38461538461539,892.781226086217,105,11761,0,0,0,0,9 +"138",2009,5109,"AR","05","109",11260,0.95,643,0.120337477797513,6.46614472423762,7.3038432252777,8.06054004653864,7.56153846153846,618.556701030928,39,6305,0,0,0,0,9 +"139",2009,5111,"AR","05","111",24632,0.919007794738551,1406,0.125081195193245,7.24850407237061,8.07651532755233,8.87416809036397,8.76153846153846,683.322656416827,96,14049,0,0,0,0,9 +"140",2009,5113,"AR","05","113",20583,0.970120973619006,900,0.143516494194238,6.80239476332431,7.7596141506969,8.64011853825354,7.52307692307692,563.405473081738,63,11182,0,0,0,0,9 +"141",2009,5115,"AR","05","115",61302,0.945385142409709,5882,0.11177449349124,8.67965211911394,8.93075873555827,9.79712653654472,7.43846153846154,403.515560223315,146,36182,0,0,0,0,9 +"142",2009,5117,"AR","05","117",8754,0.866689513365319,398,0.141078364176377,5.98645200528444,7.01481435127554,7.82003798945875,7.77692307692308,689.655172413793,34,4930,0,0,0,0,9 +"143",2009,5119,"AR","05","119",380053,0.615082633211684,26041,0.119254419778294,10.1674274980429,10.822474645958,11.7045122995402,6.57692307692308,437.351437317236,1023,233908,0,0,0,0,9 +"144",2009,5121,"AR","05","121",17964,0.982409262970385,985,0.129035849476731,6.89264164117209,7.68478394352278,8.5177930114882,9.12307692307692,563.890846843218,56,9931,0,0,0,0,9 +"145",2009,5123,"AR","05","123",28336,0.460297854319593,1618,0.119671089779785,7.38894609761844,8.2630748358026,8.89932143415996,10.2692307692308,593.48890809565,103,17355,0,0,0,0,9 +"146",2009,5125,"AR","05","125",105362,0.936447675632581,5321,0.122472997855014,8.57941653459637,9.59920173091757,10.3475321426118,6.49230769230769,364.307572740079,225,61761,0,0,0,0,9 +"147",2009,5127,"AR","05","127",11097,0.93565828602325,628,0.124087591240876,6.4425401664682,7.21303165983487,7.99967857949945,6.73846153846154,444.737275572393,27,6071,0,0,0,0,9 +"148",2009,5129,"AR","05","129",8190,0.983516483516483,374,0.161782661782662,5.92425579741453,6.81234509417748,7.7367436824535,7.61538461538461,541.242693223641,25,4619,0,0,0,0,9 +"149",2009,5131,"AR","05","131",125116,0.858451357140574,8610,0.113950254164136,9.06067959742178,9.70929582317169,10.5197806862359,7.53076923076923,449.636622970862,331,73615,0,0,0,0,9 +"150",2009,5133,"AR","05","133",16812,0.91387104449203,1009,0.10349750178444,6.91671502035361,7.70571282389443,8.43098149459717,5.77692307692308,475.727105633041,44,9249,0,0,0,0,9 +"151",2009,5135,"AR","05","135",17373,0.978817705635181,721,0.149024348126403,6.58063913728495,7.57095858316901,8.44955654270043,9.07692307692308,657.678395264716,60,9123,0,0,0,0,9 +"152",2009,5137,"AR","05","137",12340,0.98646677471637,491,0.155186385737439,6.19644412779452,7.1276936993474,8.1318247850072,8.71538461538461,459.259259259259,31,6750,0,0,0,0,9 +"153",2009,5139,"AR","05","139",41944,0.655040053404539,2282,0.130030516879649,7.73280753042202,8.57357352485234,9.42537110317984,10.2076923076923,658.138291308461,160,24311,0,0,0,0,9 +"154",2009,5141,"AR","05","141",17293,0.982131498294107,778,0.141097553923553,6.65672652417839,7.56320059235807,8.45807992692373,10.3307692307692,615.058324496288,58,9430,0,0,0,0,9 +"155",2009,5143,"AR","05","143",199774,0.905583309139327,21106,0.093560723617688,9.95731263923104,10.147178551738,11.0009992357602,6.2,331.625952193328,404,121824,0,0,0,0,9 +"156",2009,5145,"AR","05","145",76284,0.942504325939909,6622,0.110311467673431,8.79815271810719,9.17554186643349,10.0106364680532,8.08461538461538,428.50699142986,190,44340,0,0,0,0,9 +"157",2009,5147,"AR","05","147",7294,0.706196874143131,340,0.154784754592816,5.82894561761021,6.78332520060396,7.66528471847135,10.8846153846154,597.514340344168,25,4184,0,0,0,0,9 +"158",2009,5149,"AR","05","149",22145,0.958139534883721,1304,0.116143599006548,7.1731917424866,7.96901178110648,8.72290570100077,8.1,433.944069431051,54,12444,0,0,0,0,9 +"159",2009,4001,"AZ","04","001",71008,0.249704258675079,4697,0.107072442541685,8.454679286027,9.01760477683336,9.84659969032908,15.3615384615385,566.932471454685,214,37747,0,0,0,0,9 +"160",2009,4003,"AZ","04","003",130081,0.901830397982795,8136,0.132332931019903,9.0040539377284,9.59736991792866,10.4894948575382,7.76153846153846,417.378106621135,308,73794,0,0,0,0,9 +"161",2009,4005,"AZ","04","005",133477,0.676064040995827,15931,0.110768147321261,9.6760221755729,9.65892882446643,10.6269456795907,8.28461538461539,345.368534980725,284,82231,0,0,0,0,9 +"162",2009,4007,"AZ","04","007",53561,0.830641698250593,2562,0.161628797072497,7.84854348245668,8.57281709516423,9.57011052082222,11.0769230769231,530.17801341245,151,28481,0,0,0,0,9 +"163",2009,4009,"AZ","04","009",37525,0.815749500333111,3035,0.0968421052631579,8.0179667034936,8.42463920980563,9.11118280044296,14.7230769230769,318.865410241767,67,21012,0,0,0,0,9 +"164",2009,4011,"AZ","04","011",8635,0.943022582513028,485,0.112680949623625,6.18414889093748,6.96790920180188,7.73149202924568,18.4461538461538,309.725376832542,15,4843,0,0,0,0,9 +"165",2009,4012,"AZ","04","012",20514,0.804036267914595,786,0.157355952032758,6.66695679242921,7.45703208912238,8.49678638163858,9.63076923076923,703.579076170083,69,9807,0,0,0,0,9 +"166",2009,4013,"AZ","04","013",3803779,0.870962797786096,266318,0.101568203620663,12.492446362458,13.178102673662,13.9282855185655,8.88461538461539,291.86266257715,6505,2228788,0,0,0,0,9 +"167",2009,4015,"AZ","04","015",199696,0.941435982693694,9097,0.155085730310071,9.11569996782206,9.9345016060653,10.8979977926037,11.1153846153846,603.113923580827,650,107774,0,0,0,0,9 +"168",2009,4017,"AZ","04","017",107571,0.532941034293629,6694,0.117057571278504,8.80896688177127,9.40277726251123,10.2679570399408,14.9153846153846,537.243076496482,310,57702,0,0,0,0,9 +"169",2009,4019,"AZ","04","019",975580,0.87791467639763,74409,0.122808995674368,11.2173321812471,11.6674303677674,12.5710316814316,8.83076923076923,359.178999357166,2045,569354,0,0,0,0,9 +"170",2009,4021,"AZ","04","021",349830,0.846050939027528,19639,0.11300917588543,9.88527266411522,10.7545141667579,11.4306845095863,11.9692307692308,306.809578834124,616,200776,0,0,0,0,9 +"171",2009,4023,"AZ","04","023",47011,0.975282380719406,2556,0.115696326391696,7.84619881549743,8.6628507638386,9.50554408582681,15.3769230769231,272.424982973439,68,24961,0,0,0,0,9 +"172",2009,4025,"AZ","04","025",211172,0.956533063095486,10102,0.169208038944557,9.220488703028,9.94669070983678,10.9921841764169,10.1769230769231,460.559225846515,534,115946,0,0,0,0,9 +"173",2009,4027,"AZ","04","027",193714,0.931558896104567,14450,0.0945414373767513,9.57844969354058,10.0383243427583,10.8344501246422,22.3307692307692,307.062436028659,312,101608,0,0,0,0,9 +"174",2009,6001,"CA","06","001",1498539,0.555944823591511,105718,0.112228644032621,11.568530450643,12.3388231083083,13.0868170255102,10.7153846153846,250.77012493313,2386,951469,0,0,0,0,9 +"175",2009,6005,"CA","06","005",38238,0.926172916993567,1655,0.176525968931429,7.41155628781116,8.44225410475174,9.2011987140589,11.9,470.557762044552,109,23164,0,0,0,0,9 +"176",2009,6007,"CA","06","007",219777,0.900235238446243,23235,0.129039890434395,10.0534150415191,10.0675178393578,11.0754896984323,12.8,424.923736562651,553,130141,0,0,0,0,9 +"177",2009,6009,"CA","06","009",45900,0.946688453159041,1883,0.182331154684096,7.54062152865715,8.4767877767812,9.48766903234847,14.1461538461538,459.726443768997,121,26320,0,0,0,0,9 +"178",2009,6011,"CA","06","011",21250,0.933176470588235,1305,0.107341176470588,7.17395831975679,7.90581031265893,8.65782432115598,18.3461538461538,280.302386817294,33,11773,0,0,0,0,9 +"179",2009,6013,"CA","06","013",1037890,0.716432377226874,59142,0.120096542022758,10.9876966108935,11.916375210265,12.6738613235816,10.3769230769231,267.768722177532,1671,624046,0,0,0,0,9 +"180",2009,6015,"CA","06","015",28599,0.822825972936117,1774,0.128780726598832,7.48099216286952,8.27359179819963,8.90191122637961,12.2846153846154,467.52379362164,84,17967,0,0,0,0,9 +"181",2009,6017,"CA","06","017",180455,0.928292372059516,8842,0.150580477127262,9.08726837438619,10.0403758045983,10.9009895398351,11.3076923076923,310.321647927659,337,108597,0,0,0,0,9 +"182",2009,6019,"CA","06","019",921478,0.794849144526511,74193,0.0931145399022006,11.2144250850826,11.6487055773283,12.4613851818261,15.2846153846154,340.297486487058,1771,520427,0,0,0,0,9 +"183",2009,6021,"CA","06","021",28100,0.918790035587189,1730,0.113416370106762,7.45587668749182,8.12207437536222,8.94611437556074,14.7230769230769,364.636642784033,57,15632,0,0,0,0,9 +"184",2009,6023,"CA","06","023",133744,0.879725445627467,12105,0.140148343103242,9.40137386937216,9.61806958173741,10.6261935353376,11.1461538461538,424.237382799967,357,84151,0,0,0,0,9 +"185",2009,6025,"CA","06","025",172008,0.904562578484722,12895,0.092158504255616,9.46459491831544,10.0349981547383,10.7426380272159,28.2692307692308,271.116385660501,265,97744,0,0,0,0,9 +"186",2009,6027,"CA","06","027",18544,0.84286022433132,844,0.152825711820535,6.73815249459596,7.61283103040736,8.55487425838393,9.33846153846154,476.813762154076,51,10696,0,0,0,0,9 +"187",2009,6029,"CA","06","029",830137,0.849191157604106,64051,0.0897381998393036,11.0674349200055,11.5928266241647,12.3199235159034,14.6384615384615,367.60373705917,1747,475240,0,0,0,0,9 +"188",2009,6031,"CA","06","031",152278,0.833955003349138,13143,0.0823296864944378,9.48364457648201,10.000841097792,10.5166982697784,14.8230769230769,284.528495635804,266,93488,0,0,0,0,9 +"189",2009,6033,"CA","06","033",64413,0.908155186064925,3269,0.161364941859563,8.09223940672421,8.9005490139363,9.83910901859992,15.6153846153846,651.655629139073,246,37750,0,0,0,0,9 +"190",2009,6035,"CA","06","035",35160,0.841211604095563,2820,0.116581342434585,7.94449216393216,8.64488255255713,8.9187841379758,12.8384615384615,327.868852459016,80,24400,0,0,0,0,9 +"191",2009,6037,"CA","06","037",9787400,0.733279931340295,740291,0.100316631587551,13.5147986311237,14.1824621161536,14.9215822890182,11.7384615384615,257.991922080612,15495,6006002,0,0,0,0,9 +"192",2009,6039,"CA","06","039",149234,0.878298511063163,10624,0.103615798008497,9.27087087171621,9.86344650299894,10.7243460971634,13.9230769230769,308.456657130411,262,84939,0,0,0,0,9 +"193",2009,6041,"CA","06","041",250862,0.885662236608175,10331,0.157668359496456,9.24290436284945,10.5217225915309,11.2528066775311,7.84615384615385,214.536471200104,330,153820,0,0,0,0,9 +"194",2009,6043,"CA","06","043",18212,0.932901383703053,785,0.177520316274984,6.66568371778241,7.53955882930103,8.56522116042682,10.7923076923077,418.137892585021,45,10762,0,0,0,0,9 +"195",2009,6045,"CA","06","045",87722,0.895168828800073,4999,0.162319600556303,8.51699317141357,9.2389278288281,10.1682335937049,10.4846153846154,475.45082588271,251,52792,0,0,0,0,9 +"196",2009,6047,"CA","06","047",252302,0.839081735380615,19655,0.0861110890916441,9.88608703785596,10.3794732534594,11.1353332727761,17.2846153846154,320.642148950888,445,138784,0,0,0,0,9 +"197",2009,6049,"CA","06","049",9646,0.918930126477296,403,0.168981961434792,5.99893656194668,6.99576615630485,7.90838715929004,12.6923076923077,693.937180423667,38,5476,0,0,0,0,9 +"198",2009,6051,"CA","06","051",14008,0.949528840662479,1147,0.132495716733295,7.04490511712937,7.55118686729615,8.3654396361887,9.25384615384615,190.940914394823,18,9427,0,0,0,0,9 +"199",2009,6053,"CA","06","053",410263,0.845945162005835,32012,0.101895613301711,10.3738661114869,10.9129953661214,11.6502583726713,12.0692307692308,244.411252792831,594,243033,0,0,0,0,9 +"200",2009,6055,"CA","06","055",135280,0.880381431105855,8243,0.12854819633353,9.01711963431323,9.789198406134,10.5808355811871,8.71538461538461,290.613921910035,232,79831,0,0,0,0,9 +"201",2009,6057,"CA","06","057",98591,0.961477213944478,4493,0.177784990516376,8.41027590907016,9.27725107725881,10.2836690401098,10.7153846153846,317.651098901099,185,58240,0,0,0,0,9 +"202",2009,6059,"CA","06","059",2987177,0.773887854653407,209718,0.104521426082217,12.2535190501161,13.001990741626,13.7228874647071,9.04615384615385,207.594103733228,3773,1817489,0,0,0,0,9 +"203",2009,6061,"CA","06","061",343810,0.897966900322853,17766,0.124336115877956,9.78504179732965,10.7589236361398,11.5254664964645,10.6230769230769,254.291483501266,505,198591,0,0,0,0,9 +"204",2009,6063,"CA","06","063",20169,0.940502751747732,953,0.193167732659031,6.8596149036542,7.5740450053722,8.68828526625864,16.0923076923077,448.886253917168,53,11807,0,0,0,0,9 +"205",2009,6065,"CA","06","065",2146725,0.831267162771198,148638,0.094886862546437,11.9092690986288,12.5857788227326,13.3092727274956,13.6384615384615,296.539461539354,3579,1206922,0,0,0,0,9 +"206",2009,6067,"CA","06","067",1408601,0.68726204226747,100720,0.106703743643516,11.5200996687182,12.1664062330677,12.9744084641141,11.4769230769231,325.592795714383,2763,848606,0,0,0,0,9 +"207",2009,6069,"CA","06","069",54436,0.911290322580645,3479,0.104067161437284,8.15450017515194,8.9442893196507,9.66947262133328,14.5,303.566911206678,96,31624,0,0,0,0,9 +"208",2009,6071,"CA","06","071",2013960,0.797077399749747,156489,0.0937526068045046,11.9607409989521,12.5199888247862,13.2863885719152,13.1769230769231,315.191694012551,3697,1172937,0,0,0,0,9 +"209",2009,6073,"CA","06","073",3061203,0.795036134486997,266252,0.103818988809301,12.4921985077146,12.9508488141263,13.7461047440855,9.80769230769231,247.780725916884,4701,1897242,0,0,0,0,9 +"210",2009,6075,"CA","06","075",801922,0.564612269023671,60101,0.117902988071159,11.00378175932,11.8095871002026,12.5134691060911,9.07692307692308,252.055314972402,1433,568526,0,0,0,0,9 +"211",2009,6077,"CA","06","077",677736,0.714220581465349,47503,0.0977342209946056,10.7685481459231,11.4174712747969,12.1662137287683,15.5384615384615,351.433636403749,1354,385279,0,0,0,0,9 +"212",2009,6079,"CA","06","079",268145,0.917298476570512,27767,0.133718696973652,10.2316035442167,10.3033034002456,11.2620509399177,9.20769230769231,272.438138906964,448,164441,0,0,0,0,9 +"213",2009,6081,"CA","06","081",713617,0.670855655064271,40153,0.121474124074959,10.6004524363843,11.5972941865532,12.316378910781,8.57692307692308,221.806724766395,987,444982,0,0,0,0,9 +"214",2009,6083,"CA","06","083",420356,0.885704022304903,43180,0.103409966790054,10.6731327040688,10.8344501246422,11.7047847262447,8.6,257.656332276179,641,248781,0,0,0,0,9 +"215",2009,6085,"CA","06","085",1765137,0.611314589179197,112987,0.10171391795651,11.6350280468286,12.5385547894514,13.201695678953,11.0307692307692,192.320433614962,2119,1101807,0,0,0,0,9 +"216",2009,6087,"CA","06","087",260009,0.906045559961386,24571,0.133122314996789,10.1093221647277,10.4141831678514,11.3055937451721,11.5538461538462,293.289035736235,482,164343,0,0,0,0,9 +"217",2009,6089,"CA","06","089",177279,0.91819109990467,10998,0.141906260752825,9.30546871706776,9.90423727142667,10.8607090730122,14.9153846153846,465.039191982217,477,102572,0,0,0,0,9 +"218",2009,6093,"CA","06","093",44788,0.90789943734929,2157,0.171988032508708,7.67647364638916,8.43337670532313,9.46436224293533,14.8461538461538,561.447286338116,144,25648,0,0,0,0,9 +"219",2009,6095,"CA","06","095",410290,0.632728070389237,28460,0.120022423164103,10.2562548716438,10.9202388147239,11.7308313234882,10.8307692307692,337.301745516598,846,250814,0,0,0,0,9 +"220",2009,6097,"CA","06","097",479479,0.902508764721708,31855,0.138731831842479,10.3689496345506,11.0223598802116,11.9011087658439,9.80769230769231,288.060652960207,845,293341,0,0,0,0,9 +"221",2009,6099,"CA","06","099",511536,0.869565387382315,36652,0.0984564136248475,10.5092232760851,11.1157856056081,11.9029452389773,16.1384615384615,334.715185014586,981,293085,0,0,0,0,9 +"222",2009,6101,"CA","06","101",94366,0.78404298158235,6359,0.10405230697497,8.75762641126741,9.40607161568006,10.2001789191455,17.1153846153846,340.794815449365,183,53698,0,0,0,0,9 +"223",2009,6103,"CA","06","103",62891,0.935555166876024,3572,0.126790796775373,8.18088094199639,8.90354343566472,9.7690414559832,14.2,441.985799423993,155,35069,0,0,0,0,9 +"224",2009,6105,"CA","06","105",13762,0.915273942740881,547,0.195611103037349,6.30444880242198,7.21376830811864,8.28071107566285,17.4846153846154,522.732798443958,43,8226,0,0,0,0,9 +"225",2009,6107,"CA","06","107",436987,0.9015851730143,31952,0.0890667228086877,10.3719900556556,10.9066896563996,11.681384715771,15.4461538461538,343.535945436928,819,238403,0,0,0,0,9 +"226",2009,6109,"CA","06","109",55845,0.933512400393948,3055,0.167875369325813,8.0245348716057,8.7268056084461,9.62225132756774,12.6846153846154,421.398684997011,141,33460,0,0,0,0,9 +"227",2009,6111,"CA","06","111",815130,0.873919497503466,55366,0.110830174328021,10.9217209659216,11.6279045732939,12.3948400498075,10.0615384615385,246.218419699126,1192,484123,0,0,0,0,9 +"228",2009,6113,"CA","06","113",199791,0.792968652241592,27330,0.09740679009565,10.2157402789221,10.0871415545639,11.0502866487875,11.4769230769231,231.494597110365,286,123545,0,0,0,0,9 +"229",2009,6115,"CA","06","115",71607,0.830002653371877,5444,0.10193137542419,8.60226936377136,9.09974395063416,9.92930148742911,17.5153846153846,414.697656476034,172,41476,0,0,0,0,9 +"230",2009,8001,"CO","08","001",435700,0.893426669726876,29667,0.0925154923112233,10.2977905959381,11.0717191830843,11.7734187494766,9.13076923076923,295.576221860499,779,263553,0,0,0,0,9 +"231",2009,8003,"CO","08","003",15289,0.911832036104389,1531,0.117993328536857,7.33367639565768,7.39141523467536,8.40491994893345,6.84615384615385,379.930718516035,34,8949,0,0,0,0,9 +"232",2009,8005,"CO","08","005",563161,0.812604210873977,34674,0.114421985897461,10.4537454055458,11.307732336484,12.0887295131022,7.82307692307692,260.316512734558,907,348422,0,0,0,0,9 +"233",2009,8007,"CO","08","007",12169,0.954310132303394,454,0.200262963267319,6.11809719804135,7.16549347506085,8.22817689595132,8.08461538461538,469.294717082328,35,7458,0,0,0,0,9 +"234",2009,8011,"CO","08","011",6425,0.877976653696498,469,0.122801556420233,6.15060276844628,6.93731408122368,7.09340462586877,7.10769230769231,500,22,4400,0,0,0,0,9 +"235",2009,8013,"CO","08","013",293190,0.931675705174119,29595,0.116678604318019,10.2953607071248,10.6339546023282,11.4393542718018,6.62307692307692,200.129899618222,379,189377,0,0,0,0,9 +"236",2009,8014,"CO","08","014",54789,0.907718702659293,3124,0.105897169139791,8.04686951095958,9.09605122557405,9.7420268864095,7.43846153846154,208.461786899204,71,34059,0,0,0,0,9 +"237",2009,8015,"CO","08","015",17852,0.961684965269998,846,0.168944656060946,6.74051935960622,7.70120018085745,8.5099671463245,6.83846153846154,307.553143374039,34,11055,0,0,0,0,9 +"238",2009,8019,"CO","08","019",8994,0.975205692684012,290,0.183678007560596,5.66988092298052,7.23201033166476,7.97212112892166,7.76923076923077,406.834825061025,25,6145,0,0,0,0,9 +"239",2009,8021,"CO","08","021",8140,0.9502457002457,446,0.127272727272727,6.10031895202006,6.80793494369993,7.66152708135852,8.03076923076923,439.814814814815,19,4320,0,0,0,0,9 +"240",2009,8029,"CO","08","029",31156,0.971466170240082,1432,0.15467325715753,7.26682734752059,8.12355783506165,9.05672288331058,7.71538461538462,384.438834060133,67,17428,0,0,0,0,9 +"241",2009,8031,"CO","08","031",589011,0.819295395162399,46713,0.101877554069449,10.7517777775095,11.3873962550219,12.1489148199253,8.76923076923077,341.88609318143,1321,386386,0,0,0,0,9 +"242",2009,8035,"CO","08","035",281386,0.934531213351055,9818,0.103917749994669,9.191972714618,10.8590759176821,11.3805134456136,6.67692307692308,161.447883336356,276,170953,0,0,0,0,9 +"243",2009,8037,"CO","08","037",52513,0.965151486298631,3589,0.101612933940167,8.18562889114761,9.12608881952859,9.70454868991874,7.65384615384615,128.023155492472,46,35931,0,0,0,0,9 +"244",2009,8039,"CO","08","039",22965,0.972131504463314,771,0.155279773568474,6.64768837356333,8.11162807830774,8.88848084772282,7.57692307692308,229.709035222052,33,14366,0,0,0,0,9 +"245",2009,8041,"CO","08","041",608061,0.868953937187223,46691,0.107033669319361,10.7513067055981,11.3122525472834,12.1297422055234,8.5,286.94171564076,1060,369413,0,0,0,0,9 +"246",2009,8043,"CO","08","043",46871,0.929465981097054,2487,0.141836103347486,7.8188324438034,8.79270146293631,9.31063809329155,9.20769230769231,453.729726069143,134,29533,0,0,0,0,9 +"247",2009,8045,"CO","08","045",57089,0.958328224351451,3472,0.111229834118657,8.15248607578024,9.03753340755081,9.7430840310431,7.53846153846154,229.769110065008,82,35688,0,0,0,0,9 +"248",2009,8049,"CO","08","049",14902,0.976647429875184,784,0.154744329620185,6.66440902035041,7.65728279297819,8.4446224985814,7.25384615384615,168.902136115251,17,10065,0,0,0,0,9 +"249",2009,8051,"CO","08","051",15356,0.963792654337067,2014,0.124576712685595,7.60787807327851,7.6657534318617,8.45786772533142,5.9,161.735324897726,17,10511,0,0,0,0,9 +"250",2009,8055,"CO","08","055",6824,0.931858147713951,236,0.196512309495897,5.46383180502561,6.37161184723186,7.539027055824,9.43076923076923,453.333333333333,17,3750,0,0,0,0,9 +"251",2009,8059,"CO","08","059",531961,0.940292615436094,31638,0.134825673310637,10.3621142087585,11.2015789178797,12.0253957355629,7.70769230769231,287.946729854977,960,333395,0,0,0,0,9 +"252",2009,8065,"CO","08","065",7426,0.962698626447617,530,0.118771882574737,6.27287700654617,7.00669522683704,7.66058546170326,9.30769230769231,253.69978858351,12,4730,0,0,0,0,9 +"253",2009,8067,"CO","08","067",51105,0.911906858428725,4333,0.141003815673613,8.37401542173991,8.7702838190984,9.69010867127683,5.83076923076923,282.520201713348,93,32918,0,0,0,0,9 +"254",2009,8069,"CO","08","069",296696,0.95284061800631,30333,0.119408418044059,10.3199915077595,10.5077215488168,11.4390205491223,6.77692307692308,224.81314754503,419,186377,0,0,0,0,9 +"255",2009,8071,"CO","08","071",15775,0.936228209191759,953,0.15068145800317,6.8596149036542,7.47079377419506,8.36730010184162,8.77692307692308,521.512385919166,48,9204,0,0,0,0,9 +"256",2009,8075,"CO","08","075",22451,0.936706605496414,1675,0.114426974299586,7.42356844425917,7.9536697786498,8.58391682345914,5.36923076923077,291.290416545296,40,13732,0,0,0,0,9 +"257",2009,8077,"CO","08","077",147851,0.961677634916233,10379,0.12518007994535,9.24753981296529,9.73613342286396,10.6680247291827,9.03846153846154,355.207011878676,308,86710,0,0,0,0,9 +"258",2009,8081,"CO","08","081",13728,0.974868881118881,791,0.122450466200466,6.67329796776765,7.44073370738926,8.28526113406895,6.72307692307692,425.894378194208,35,8218,0,0,0,0,9 +"259",2009,8083,"CO","08","083",25507,0.857176461363547,1267,0.154741835574548,7.14440718032114,8.03008409426756,8.93287262193137,7.94615384615385,466.090245879492,69,14804,0,0,0,0,9 +"260",2009,8085,"CO","08","085",41535,0.963934031539665,1903,0.136607680269652,7.55118686729615,8.48694014824522,9.36922269703637,8.76153846153846,388.953714507974,90,23139,0,0,0,0,9 +"261",2009,8087,"CO","08","087",28099,0.945015836862522,1693,0.104665646464287,7.43425738213314,8.15937473677543,8.95647984799991,5.82307692307692,392.687009141239,61,15534,0,0,0,0,9 +"262",2009,8089,"CO","08","089",18743,0.941951661953796,1035,0.132049298404738,6.94215670569947,7.5999019592085,8.53738789870176,7.41538461538462,528.889332401956,53,10021,0,0,0,0,9 +"263",2009,8093,"CO","08","093",16098,0.97260529258293,467,0.190147844452727,6.1463292576689,7.72753511047545,8.55217416031148,7.51538461538462,370.061985382552,40,10809,0,0,0,0,9 +"264",2009,8097,"CO","08","097",17008,0.975070555032926,828,0.163393697083725,6.71901315438526,7.93880224815448,8.64064899534316,6.62307692307692,125.397090787494,15,11962,0,0,0,0,9 +"265",2009,8099,"CO","08","099",12593,0.972683236718812,776,0.121972524418328,6.65415252018322,7.21964204013074,8.14322675036744,6.30769230769231,568.430257979886,39,6861,0,0,0,0,9 +"266",2009,8101,"CO","08","101",157846,0.928379559824132,9839,0.127630728684921,9.19410935886576,9.85193106562173,10.7296785068538,8.84615384615385,461.412187493068,416,90158,0,0,0,0,9 +"267",2009,8105,"CO","08","105",11872,0.956283692722372,652,0.140414420485175,6.48004456192665,7.18765716411496,8.12266802334641,6.61538461538461,465.815176558978,31,6655,0,0,0,0,9 +"268",2009,8107,"CO","08","107",23688,0.979652144545762,1467,0.14661431948666,7.29097477814298,8.19450550976564,8.9300972286214,7.09230769230769,237.949969493594,39,16390,0,0,0,0,9 +"269",2009,8117,"CO","08","117",27678,0.970626490353349,2270,0.125153551557193,7.72753511047545,8.45062594714412,9.10386812746567,6.68461538461538,157.20180782079,32,20356,0,0,0,0,9 +"270",2009,8119,"CO","08","119",22937,0.970091991106073,821,0.195404804464403,6.71052310945243,7.97349996402463,8.91193433616143,8.14615384615385,330.121943003436,49,14843,0,0,0,0,9 +"271",2009,8123,"CO","08","123",248193,0.950872909389064,18564,0.103556506428465,9.82897950036107,10.4425215525657,11.200431439474,8.81538461538462,275.172493648556,404,146817,0,0,0,0,9 +"272",2009,8125,"CO","08","125",10022,0.983835561764119,511,0.120534823388545,6.2363695902037,7.0343879299155,7.88419993367604,3.61538461538462,331.004045605002,18,5438,0,0,0,0,9 +"273",2009,9001,"CT","09","001",910421,0.824630582994021,49464,0.114013187305653,10.8090004112384,11.8038547594851,12.5259435537968,7.83076923076923,218.163604151787,1176,539045,0,0,0,0,9 +"274",2009,9003,"CT","09","003",891667,0.798553720166834,54891,0.121258272426814,10.9131046796327,11.7084429051916,12.5172050959036,8.73846153846154,307.883851660735,1642,533318,0,0,0,0,9 +"275",2009,9005,"CT","09","005",190015,0.960913612083257,8717,0.144151777491251,9.07303042101158,10.1888168594043,10.9646056367767,8.26923076923077,267.897657858913,307,114596,0,0,0,0,9 +"276",2009,9007,"CT","09","007",165607,0.914731865198935,8829,0.137590802321158,9.08579703690158,10.0731459353767,10.8432408725379,6.98461538461538,281.639857990043,284,100838,0,0,0,0,9 +"277",2009,9009,"CT","09","009",860025,0.813446120752304,58612,0.119044213830993,10.9786947327579,11.666607463555,12.4911914355788,8.96923076923077,304.495271037547,1574,516921,0,0,0,0,9 +"278",2009,9011,"CT","09","011",273630,0.86680554032818,19233,0.124434455286336,9.86438283265537,10.5303346613388,11.321547018086,7.80769230769231,289.274190181378,485,167661,0,0,0,0,9 +"279",2009,9013,"CT","09","013",152330,0.922392174883477,16503,0.118125123088033,9.71129746154357,9.91591007253469,10.7448176411435,6.96923076923077,218.319985725232,208,95273,0,0,0,0,9 +"280",2009,9015,"CT","09","015",118112,0.945619412083446,8275,0.120741330262801,9.02099420024526,9.71486619359364,10.4942974207283,9.19230769230769,323.956141322406,234,72232,0,0,0,0,9 +"281",2009,11001,"DC","11","001",592228,0.417384858534213,61793,0.105955814314757,11.031545368422,11.3005734747342,12.2459181634523,10,414.350454307466,1654,399179,1,0,0,0,9 +"282",2009,10001,"DE","10","001",160081,0.712639226391639,12014,0.111487309549541,9.39382791541011,9.93856507914882,10.7925304099171,8.20769230769231,435.891640566982,405,92913,1,0,0,0,9 +"283",2009,10003,"DE","10","003",536898,0.700103185335017,39603,0.112738359986441,10.5866601519489,11.2209408163651,12.0323619089841,8.42307692307692,342.12994217393,1120,327361,1,0,0,0,9 +"284",2009,10005,"DE","10","005",194751,0.835122797829023,10079,0.150335556685203,9.21820933035488,10.0237120498425,10.9386806933346,8.33846153846154,387.695206348056,428,110396,1,0,0,0,9 +"285",2009,12001,"FL","12","001",246657,0.726997409357934,42244,0.10593252978833,10.6512176108664,10.1483143146815,11.3084073777792,6.59230769230769,289.18883468767,463,160103,0,0,0,0,9 +"286",2009,12003,"FL","12","003",27124,0.850575136410559,1793,0.114142456864769,7.49164547360513,8.24931374626064,8.93787526532926,9.36923076923077,512.03901249619,84,16405,0,0,0,0,9 +"287",2009,12005,"FL","12","005",167464,0.851974155639421,11516,0.120987197248364,9.35149265173207,9.9945614994355,10.835828783229,8.46923076923077,476.939718753073,485,101690,0,0,0,0,9 +"288",2009,12007,"FL","12","007",28979,0.776907415714828,1932,0.119189758100694,7.56631101477246,8.2960476427647,8.87738195465477,7.46153846153846,541.184110834506,100,18478,0,0,0,0,9 +"289",2009,12009,"FL","12","009",542109,0.860987366009419,29193,0.133240732029905,10.2816842334901,11.0742189320823,11.966011800339,9.63846153846154,434.994151745293,1350,310349,0,0,0,0,9 +"290",2009,12011,"FL","12","011",1733310,0.680814741736908,102760,0.115297321310095,11.5401514512238,12.446277816106,13.1989650947321,8.46153846153846,327.234639391416,3446,1053067,0,0,0,0,9 +"291",2009,12013,"FL","12","013",14692,0.834467737544242,919,0.119384699156003,6.82328612235569,7.62657020629066,8.22657347497711,7.88461538461539,467.549816319715,42,8983,0,0,0,0,9 +"292",2009,12015,"FL","12","015",159629,0.920496902191958,5747,0.168597184722074,8.65643325850774,9.58740600556265,10.6249549044734,11.0076923076923,446.092927672798,356,79804,0,0,0,0,9 +"293",2009,12017,"FL","12","017",141381,0.948656467276367,5393,0.166394352847978,8.59285709533723,9.50360682272186,10.5285967626888,11.2153846153846,592.370602733587,423,71408,0,0,0,0,9 +"294",2009,12019,"FL","12","019",189101,0.853533297021169,10606,0.1180480272447,9.26917515769708,10.2342650333435,10.9607742476771,8.58461538461538,359.802153456065,403,112006,0,0,0,0,9 +"295",2009,12021,"FL","12","021",318485,0.910730489661994,15455,0.13305493194342,9.64568785456622,10.495072550186,11.3452402721093,10.3153846153846,308.89374055325,515,166724,0,0,0,0,9 +"296",2009,12023,"FL","12","023",67412,0.800881148756898,4741,0.128968136236872,8.46400336290212,9.0217190130337,9.84097364714689,8.58461538461538,530.411068578148,212,39969,0,0,0,0,9 +"297",2009,12027,"FL","12","027",34592,0.845137604070305,2667,0.111210684551341,7.88870952418201,8.35443894011481,8.95647984799991,9.39230769230769,412.591687041565,81,19632,0,0,0,0,9 +"298",2009,12029,"FL","12","029",16403,0.902517832103883,889,0.151618606352496,6.7900972355139,7.56527528189893,8.3654396361887,10.6,625.256252562526,61,9756,0,0,0,0,9 +"299",2009,12031,"FL","12","031",859795,0.642067004344059,65920,0.112118586407225,11.0961971645834,11.681883121306,12.5228777456759,9.74615384615385,442.391261793838,2373,536403,0,0,0,0,9 +"300",2009,12033,"FL","12","033",297015,0.718563035536926,26268,0.120764944531421,10.1761067473109,10.4594968448774,11.3944009044522,9.12307692307692,470.11719189329,836,177828,0,0,0,0,9 +"301",2009,12035,"FL","12","035",94700,0.851277719112988,3856,0.153590285110876,8.25738565573044,9.2987174825936,10.2040364906947,13.6846153846154,419.83010613462,214,50973,0,0,0,0,9 +"302",2009,12037,"FL","12","037",11515,0.842726877985237,738,0.145896656534954,6.60394382460047,7.32909373624659,7.96970358327866,6.84615384615385,282.068502350571,21,7445,0,0,0,0,9 +"303",2009,12039,"FL","12","039",46264,0.419202835898323,2730,0.131873595019886,7.91205688817901,8.68761084370737,9.54523994403707,9.20769230769231,579.248425168344,160,27622,0,0,0,0,9 +"304",2009,12041,"FL","12","041",16829,0.933626478103274,1467,0.130845564204647,7.29097477814298,7.61283103040736,8.43250638324904,8.63846153846154,646.684459043318,63,9742,0,0,0,0,9 +"305",2009,12043,"FL","12","043",12839,0.813147441389516,710,0.132331178440689,6.56526497003536,7.42833319419081,7.96241568012106,8.58461538461538,391.944857413164,29,7399,0,0,0,0,9 +"306",2009,12045,"FL","12","045",15933,0.794891106508504,930,0.133559279482834,6.8351845861473,7.79975331828725,8.17948018535889,8.85384615384615,470.159278449434,49,10422,0,0,0,0,9 +"307",2009,12047,"FL","12","047",14930,0.628198258539853,1488,0.125184192900201,7.30518821539304,7.58781721999343,8.16621626859214,10.3615384615385,407.693915952331,39,9566,0,0,0,0,9 +"308",2009,12049,"FL","12","049",27661,0.898051408119735,2210,0.0957666027981635,7.7007477945118,8.15851624480683,8.84649693855884,9.83846153846154,360.03600360036,56,15554,0,0,0,0,9 +"309",2009,12051,"FL","12","051",39010,0.824557805690848,2991,0.0913868238913099,8.00336305862995,8.58988587680968,9.19715381017201,13.3076923076923,472.18138892601,106,22449,0,0,0,0,9 +"310",2009,12053,"FL","12","053",171950,0.925908694387903,7599,0.139802268101192,8.93577193866978,9.88149753464451,10.7654699229569,12.3,509.665885697154,459,90059,0,0,0,0,9 +"311",2009,12055,"FL","12","055",98956,0.876177290917175,4486,0.134989288168479,8.40871671508015,9.101417964752,10.0880150078792,10.0230769230769,467.27979439689,220,47081,0,0,0,0,9 +"312",2009,12057,"FL","12","057",1214050,0.777706025287262,89590,0.107243523742844,11.4029989855916,12.0709743116084,12.8468733457179,9.83076923076923,370.807007699405,2749,741356,0,0,0,0,9 +"313",2009,12059,"FL","12","059",20147,0.921129696729042,1307,0.128108403236214,7.17548971362422,7.89431806384162,8.57243866564222,7.38461538461539,512.518904385818,61,11902,0,0,0,0,9 +"314",2009,12061,"FL","12","061",137016,0.887159163893268,6008,0.140713493314649,8.70084719344397,9.58493381641726,10.5109134326906,12,436.030156408237,310,71096,0,0,0,0,9 +"315",2009,12063,"FL","12","063",50064,0.710930009587728,3267,0.12751677852349,8.09162741160107,8.87178596915065,9.45030170821655,6.85384615384615,463.86401972233,143,30828,0,0,0,0,9 +"316",2009,12065,"FL","12","065",14704,0.625340043525571,819,0.15329162132753,6.70808408385307,7.57147364885127,8.33926198292358,7.54615384615385,412.550211703398,38,9211,0,0,0,0,9 +"317",2009,12067,"FL","12","067",8435,0.841019561351512,728,0.105275637225845,6.59030104819669,7.19368581839511,7.50163445788341,6.88461538461539,503.731343283582,27,5360,0,0,0,0,9 +"318",2009,12069,"FL","12","069",295511,0.866201258159595,13251,0.132654960390645,9.49182830026464,10.4876565705263,11.3008207607712,10.3307692307692,452.942529323078,709,156532,0,0,0,0,9 +"319",2009,12071,"FL","12","071",612297,0.888715770287948,32531,0.138754558653725,10.3899487598495,11.1806085828925,12.0515393925311,11.4,361.841224308827,1216,336059,0,0,0,0,9 +"320",2009,12073,"FL","12","073",273263,0.653103420514303,44507,0.105597903850869,10.7034017591542,10.3213422582902,11.4289676030728,6.52307692307692,260.489083861595,459,176207,0,0,0,0,9 +"321",2009,12075,"FL","12","075",40880,0.888062622309198,2078,0.151002935420744,7.63916117165917,8.44912846050211,9.40590715552016,10.6153846153846,579.299691040165,135,23304,0,0,0,0,9 +"322",2009,12077,"FL","12","077",8347,0.798969689708877,549,0.107343955912304,6.30809844150953,7.18765716411496,7.56579328242851,5.33076923076923,452.570601013758,25,5524,0,0,0,0,9 +"323",2009,12079,"FL","12","079",19329,0.5935640747064,1288,0.133116043251074,7.1608459066643,7.80098207125774,8.54714026778419,9.9,479.846449136276,55,11462,0,0,0,0,9 +"324",2009,12081,"FL","12","081",320711,0.881148448291452,15844,0.137410316453131,9.67054615874181,10.5315093731356,11.3995775794789,10.7461538461538,401.645768025078,697,173536,0,0,0,0,9 +"325",2009,12083,"FL","12","083",330880,0.849455996131528,16133,0.13888418762089,9.68862214266614,10.513144422597,11.4317262554729,11.8615384615385,483.260320038432,845,174854,0,0,0,0,9 +"326",2009,12085,"FL","12","085",145506,0.917975891028549,6286,0.14344425659423,8.74608021735751,9.67545707964852,10.5497003459069,10.1769230769231,362.239155465283,280,77297,0,0,0,0,9 +"327",2009,12086,"FL","12","086",2463943,0.779790360410123,173907,0.107313359115856,12.0662759525512,12.8263480126542,13.5538158692809,9.05384615384615,281.445221879076,4234,1504378,0,0,0,0,9 +"328",2009,12087,"FL","12","087",72627,0.920484117476971,3686,0.175499469894117,8.21229713822977,9.21423278669153,10.0117588278199,6.33076923076923,485.316077650572,234,48216,0,0,0,0,9 +"329",2009,12089,"FL","12","089",72671,0.916610477356855,3743,0.15007361946306,8.22764270790443,9.18727643237763,10.0043278674622,8.88461538461539,483.414286043139,210,43441,0,0,0,0,9 +"330",2009,12091,"FL","12","091",181153,0.851810348158739,13869,0.115289285852291,9.53741141265633,10.0164590311953,10.9027582126865,6.63846153846154,378.039427978527,419,110835,0,0,0,0,9 +"331",2009,12093,"FL","12","093",39899,0.891651419835084,2573,0.11062933908118,7.85282781228174,8.52317526309379,9.21393390748631,11.0153846153846,476.232864518426,107,22468,0,0,0,0,9 +"332",2009,12095,"FL","12","095",1131351,0.713444368723765,104048,0.0968090362760982,11.5526076101089,12.0131490855908,12.794953156409,9.65384615384615,278.207153018135,1987,714216,0,0,0,0,9 +"333",2009,12097,"FL","12","097",265267,0.82404520728172,17742,0.103612586563726,9.78368998908053,10.5877957844289,11.3037464540064,10.4230769230769,315.305922569964,499,158259,0,0,0,0,9 +"334",2009,12099,"FL","12","099",1307371,0.785908514109614,72187,0.119278307381761,11.1870152532673,12.0304327168599,12.8201712074796,9.91538461538462,347.665409563621,2525,726273,0,0,0,0,9 +"335",2009,12101,"FL","12","101",462607,0.92170027690891,22078,0.128443797867304,10.0023369165783,11.029666368922,11.7955372049839,11.0384615384615,487.476236017486,1259,258269,0,0,0,0,9 +"336",2009,12103,"FL","12","103",915330,0.853091234855189,46899,0.142775829482263,10.7557516322454,11.6438045934497,12.5271628979698,10,475.425801607304,2558,538044,0,0,0,0,9 +"337",2009,12105,"FL","12","105",598683,0.817938708799147,36096,0.121852466163228,10.4939373348577,11.215071837197,12.0430535909907,10.4846153846154,428.905407025537,1431,333640,0,0,0,0,9 +"338",2009,12107,"FL","12","107",74546,0.817495237839723,4113,0.141617256459099,8.32190796823042,9.02364928266429,9.95184905341401,10.9,599.952003839693,250,41670,0,0,0,0,9 +"339",2009,12109,"FL","12","109",186281,0.91231526564706,9633,0.138017296449987,9.17294998275762,10.1582847976521,10.9434992114,7.77692307692308,332.119818611484,364,109599,0,0,0,0,9 +"340",2009,12111,"FL","12","111",274344,0.774808269909311,14430,0.122466684162949,9.57706465176792,10.4588944956975,11.2565999306149,12.4538461538462,418.879250634915,635,151595,0,0,0,0,9 +"341",2009,12113,"FL","12","113",149544,0.907505483336008,8812,0.120472904295726,9.08386970792223,9.96495887462423,10.7029972465864,8.37692307692308,355.012623896098,322,90701,0,0,0,0,9 +"342",2009,12115,"FL","12","115",377262,0.931347445541825,15107,0.151499488419189,9.62291349154373,10.570675693926,11.521211044557,10.5076923076923,413.046280778652,801,193925,0,0,0,0,9 +"343",2009,12117,"FL","12","117",419788,0.833058591479509,30534,0.118459793991253,10.3265960958169,10.9983427923265,11.8084492109757,9.11538461538461,286.84088744746,750,261469,0,0,0,0,9 +"344",2009,12119,"FL","12","119",90643,0.881237381816577,2540,0.195050914025352,7.83991936001258,8.93603509656604,9.87498519206342,8.43846153846154,442.076362874892,190,42979,0,0,0,0,9 +"345",2009,12121,"FL","12","121",41263,0.869519908877202,2252,0.13489082228631,7.71957398925958,8.48611523584538,9.33679679592874,8.94615384615385,516.336182583417,119,23047,0,0,0,0,9 +"346",2009,12123,"FL","12","123",22482,0.771372653678498,1409,0.137398807935237,7.25063551189868,8.02224091680654,8.63817111796914,9.95384615384615,526.952930285551,74,14043,0,0,0,0,9 +"347",2009,12125,"FL","12","125",15340,0.765189048239896,1058,0.146284224250326,6.96413561241824,7.71289096149013,8.06934236681164,6.96923076923077,931.080821654828,97,10418,0,0,0,0,9 +"348",2009,12127,"FL","12","127",494688,0.866354146451905,30454,0.139572821657287,10.3239726274007,10.9695422136441,11.8696554073965,10.0076923076923,484.202410047642,1369,282733,0,0,0,0,9 +"349",2009,12129,"FL","12","129",30459,0.839423487310811,1711,0.122328375849503,7.44483327389219,8.46294817656384,9.03907744253896,6.41538461538462,319.077762338531,62,19431,0,0,0,0,9 +"350",2009,12131,"FL","12","131",54534,0.913705211427733,2843,0.142975024755199,7.952615111651,8.86700463533357,9.67432592889636,7.02307692307692,505.963136971449,168,33204,0,0,0,0,9 +"351",2009,12133,"FL","12","133",24693,0.823998704086178,1490,0.127040051836553,7.3065313989395,8.14554963178358,8.77431295828538,9.31538461538462,560.597971169247,84,14984,0,0,0,0,9 +"352",2009,13001,"GA","13","001",18144,0.792328042328042,972,0.127204585537919,6.87935580446044,7.78364059622125,8.54461378699223,10.5846153846154,466.222645099905,49,10510,0,0,0,0,9 +"353",2009,13003,"GA","13","003",8386,0.784164082995469,567,0.102790364893871,6.34035930372775,6.98841318199959,7.74283595543075,15.6461538461538,463.255422194146,22,4749,0,0,0,0,9 +"354",2009,13005,"GA","13","005",11134,0.82602838153404,695,0.119813184839231,6.54391184556479,7.32251043399739,8.0643219609108,9.86153846153846,398.162327718224,26,6530,0,0,0,0,9 +"355",2009,13009,"GA","13","009",47087,0.560090895576274,5942,0.115998046169856,8.68980105602255,8.6095900406822,9.54531148247113,13.0153846153846,429.125613649628,125,29129,0,0,0,0,9 +"356",2009,13011,"GA","13","011",18208,0.958095342706503,1032,0.123242530755712,6.93925394604151,7.90691548867859,8.57866451350434,8,323.9241092087,35,10805,0,0,0,0,9 +"357",2009,13013,"GA","13","013",68548,0.8369026083912,4014,0.097231137305246,8.29754352935628,9.26397592114209,9.93793728726535,11.1153846153846,385.102856585746,158,41028,0,0,0,0,9 +"358",2009,13015,"GA","13","015",99807,0.876130932700111,6064,0.108168765717835,8.71012492732221,9.64017283653264,10.3113165311662,12.6923076923077,426.958421588085,256,59959,0,0,0,0,9 +"359",2009,13017,"GA","13","017",17581,0.632273477049087,1042,0.122461748478471,6.94889722231331,7.69393732550927,8.55062796750248,16.3153846153846,589.94100589941,59,10001,0,0,0,0,9 +"360",2009,13019,"GA","13","019",19067,0.878323805527875,1124,0.119473435779095,7.02464903045364,7.85476918349913,8.61920811682297,13.6692307692308,346.020761245675,38,10982,0,0,0,0,9 +"361",2009,13021,"GA","13","021",155154,0.451416012477925,11210,0.115704396921768,9.32456151606621,9.87364671052511,10.7806007703239,10.2,558.245451128651,505,90462,0,0,0,0,9 +"362",2009,13023,"GA","13","023",13034,0.709068589841952,1079,0.106107104495934,6.98378996525813,7.31521838975297,8.20740183337636,10.4153846153846,524.673851389677,37,7052,0,0,0,0,9 +"363",2009,13025,"GA","13","025",18129,0.963704561751889,1091,0.122786695349992,6.99484998583307,7.84854348245668,8.5816692106006,11.4,678.861022062983,72,10606,0,0,0,0,9 +"364",2009,13027,"GA","13","027",16375,0.633954198473282,990,0.129038167938931,6.89770494312864,7.64873978895624,8.48466999971068,8.99230769230769,484.41449031171,46,9496,0,0,0,0,9 +"365",2009,13029,"GA","13","029",29987,0.826358088505019,1642,0.107646646880315,7.40367029001237,8.44376191333035,9.1345386585599,8.21538461538461,358.905338716913,64,17832,0,0,0,0,9 +"366",2009,13031,"GA","13","031",68598,0.69800868829995,13171,0.0869413102422811,9.48577272199905,8.89604050162011,9.95337235546513,9.85384615384615,312.123146768816,132,42291,0,0,0,0,9 +"367",2009,13033,"GA","13","033",23117,0.491326729246875,1438,0.12008478608816,7.27100853828099,7.95717732345947,8.84893999503012,12.4461538461538,550.248376003057,72,13085,0,0,0,0,9 +"368",2009,13035,"GA","13","035",23682,0.71015961489739,1611,0.11933113757284,7.38461038317697,8.14148104145742,8.78140190768238,12.5923076923077,547.482257519432,81,14795,0,0,0,0,9 +"369",2009,13037,"GA","13","037",6670,0.366116941529235,455,0.117691154422789,6.12029741895095,6.97634807044775,7.31721240835984,11.7538461538462,405.862457722661,18,4435,0,0,0,0,9 +"370",2009,13039,"GA","13","039",50024,0.769090836398529,4872,0.0978130497361267,8.49125980938973,8.8155184239665,9.60992153692537,9.37692307692308,321.16405584322,98,30514,0,0,0,0,9 +"371",2009,13043,"GA","13","043",10880,0.74797794117647,755,0.129227941176471,6.62671774924902,7.16472037877186,8.03915739047324,9.74615384615385,583.279325988334,36,6172,0,0,0,0,9 +"372",2009,13045,"GA","13","045",110433,0.795034093070006,9517,0.103257178560756,9.16083495207234,9.62489735676257,10.4167302528177,11.5,458.184917952933,301,65694,0,0,0,0,9 +"373",2009,13047,"GA","13","047",63874,0.955913204120612,3483,0.118232770767448,8.155649270366,9.15271125913955,9.87075772791321,8.86153846153846,359.252754271116,135,37578,0,0,0,0,9 +"374",2009,13049,"GA","13","049",12665,0.683853138570865,927,0.103434662455586,6.83195356556585,7.61529833982581,8.04334217044161,11.4461538461538,321.106582684945,26,8097,0,0,0,0,9 +"375",2009,13051,"GA","13","051",262122,0.555848040225544,25014,0.111181053097413,10.1271909471089,10.3711133569959,11.3277277760708,9.06923076923077,396.531899686131,638,160895,0,0,0,0,9 +"376",2009,13053,"GA","13","053",11955,0.745378502718528,2508,0.0348808030112923,7.82724090175281,7.2034055210831,7.84698098213879,15.4923076923077,212.089077412513,16,7544,0,0,0,0,9 +"377",2009,13055,"GA","13","055",25894,0.87553101104503,1578,0.121920135938828,7.36391350140582,8.20740183337636,8.87863674743007,13.9,512,80,15625,0,0,0,0,9 +"378",2009,13057,"GA","13","057",212232,0.911431829318859,11161,0.106171548117155,9.32018083765571,10.4809151919697,11.0946486361347,9.3,233.515213169333,303,129756,0,0,0,0,9 +"379",2009,13059,"GA","13","059",116843,0.675034020009757,26576,0.0767782408873446,10.1877638318531,9.37339415841248,10.5921496903114,7.97692307692308,250.937782951753,194,77310,0,0,0,0,9 +"380",2009,13063,"GA","13","063",260067,0.25676075780472,19481,0.0888924777076676,9.8771949105812,10.616780438789,11.348463472477,12.3384615384615,349.224294956347,556,159210,0,0,0,0,9 +"381",2009,13065,"GA","13","065",6799,0.700691278129137,455,0.127812913663774,6.12029741895095,6.7945865808765,7.6182510978767,11.5769230769231,580.808080808081,23,3960,0,0,0,0,9 +"382",2009,13067,"GA","13","067",684776,0.685856396836338,45009,0.104806535275769,10.7146177487551,11.6094621650183,12.3152633167684,9.57692307692308,252.11930563105,1090,432335,0,0,0,0,9 +"383",2009,13069,"GA","13","069",42089,0.714177100905225,2961,0.109220936586757,7.99328232810159,8.68473946262804,9.38664385644458,16.1,417.586829953825,104,24905,0,0,0,0,9 +"384",2009,13071,"GA","13","071",45152,0.746744330262225,3043,0.107636428065202,8.02059914989697,8.69550672681265,9.44841194387463,9.55384615384615,456.745783885072,117,25616,0,0,0,0,9 +"385",2009,13073,"GA","13","073",121050,0.795786864931846,6533,0.117984304006609,8.78462153484075,9.79367268652892,10.5322295364037,7.26153846153846,264.231859998617,191,72285,0,0,0,0,9 +"386",2009,13075,"GA","13","075",17114,0.706497604300573,1058,0.11598691130069,6.96413561241824,7.7484600238997,8.50126704086598,13.3692307692308,534.979423868313,52,9720,0,0,0,0,9 +"387",2009,13077,"GA","13","077",125501,0.797061377996988,6512,0.109560879992988,8.78140190768238,9.90941992118924,10.5576080011272,10.3076923076923,318.636236906042,240,75321,0,0,0,0,9 +"388",2009,13079,"GA","13","079",12711,0.757768861615923,723,0.136495948391157,6.58340922215876,7.5109777520141,8.27026911143662,10.5230769230769,474.358974358974,37,7800,0,0,0,0,9 +"389",2009,13081,"GA","13","081",23378,0.548250491915476,1355,0.131662246556592,7.2115567333138,7.96032362914884,8.85437945877111,12.7846153846154,630.914826498423,84,13314,0,0,0,0,9 +"390",2009,13083,"GA","13","083",16657,0.976226211202497,1369,0.126973644713934,7.22183582528845,7.6434829070772,8.52377150677636,10.9692307692308,533.843674456084,53,9928,0,0,0,0,9 +"391",2009,13085,"GA","13","085",22325,0.982306830907055,1401,0.142889137737962,7.24494154633701,8.05356916913454,8.82878708391433,10.4461538461538,307.737397420868,42,13648,0,0,0,0,9 +"392",2009,13087,"GA","13","087",28058,0.569997861572457,1755,0.115083042269584,7.47022413589997,8.20028826028755,9.00097644407034,13.2538461538462,638.482519216464,103,16132,0,0,0,0,9 +"393",2009,13089,"GA","13","089",690658,0.377526938079339,51660,0.102028789936553,10.8524390666498,11.5933803953606,12.3590125927164,10.5,315.879103226865,1406,445107,0,0,0,0,9 +"394",2009,13091,"GA","13","091",21659,0.683226372408698,1420,0.119765455468858,7.25841215059531,8.0507033814703,8.68135077758252,11.2538461538462,558.096271606852,72,12901,0,0,0,0,9 +"395",2009,13093,"GA","13","093",14769,0.479450199742704,929,0.134403141715756,6.83410873881384,7.61480536471107,8.24380842366528,10.4076923076923,318.331503841932,29,9110,0,0,0,0,9 +"396",2009,13095,"GA","13","095",94688,0.310789117945252,8268,0.113298411625549,9.02014792080166,9.3064683990704,10.2940082132585,11.0230769230769,511.35948571846,280,54756,0,0,0,0,9 +"397",2009,13097,"GA","13","097",131292,0.573142308746915,7318,0.100188891935533,8.89809234557915,10.0052315364194,10.6408190686071,11.3461538461538,361.156203203846,287,79467,0,0,0,0,9 +"398",2009,13099,"GA","13","099",11101,0.489775695883254,593,0.12485361679128,6.38519439899773,7.21007962817079,8.07496035911586,11,592.787749053186,36,6073,0,0,0,0,9 +"399",2009,13103,"GA","13","103",51908,0.845996763504662,2809,0.102296370501657,7.94058382710424,8.97954260172511,9.64711032991276,8.61538461538461,372.807728466301,115,30847,0,0,0,0,9 +"400",2009,13105,"GA","13","105",20335,0.686697811654782,1192,0.129038603393165,7.0833878476253,7.86518795418747,8.69181854157572,12.8153846153846,678.927466483328,79,11636,0,0,0,0,9 +"401",2009,13107,"GA","13","107",22456,0.648512646954043,1461,0.12130388314927,7.2868764117507,7.91571319938212,8.7827830173932,11.1923076923077,536.39846743295,70,13050,0,0,0,0,9 +"402",2009,13109,"GA","13","109",11016,0.677287581699346,762,0.104212055192447,6.63594655568665,7.28207365809346,8.07433769408951,9.16923076923077,489.19046867603,31,6337,0,0,0,0,9 +"403",2009,13111,"GA","13","111",23661,0.98782807151008,1096,0.170660580702422,6.99942246750796,7.89989532313973,8.84707231256781,11,443.360673908224,60,13533,0,0,0,0,9 +"404",2009,13113,"GA","13","113",105493,0.748078071530813,4591,0.139393135089532,8.43185314424922,9.60951909544164,10.3839673644497,8.83846153846154,252.129361757148,156,61873,0,0,0,0,9 +"405",2009,13115,"GA","13","115",96383,0.827396947594493,6441,0.118371497048235,8.77043908654689,9.45868372431213,10.2488841341782,11.0615384615385,492.152406177855,275,55877,0,0,0,0,9 +"406",2009,13117,"GA","13","117",171993,0.902571616286709,6369,0.0954457448849663,8.75919775037137,10.4017445206263,10.8478019283165,8.56923076923077,203.59387447995,207,101673,0,0,0,0,9 +"407",2009,13119,"GA","13","119",22152,0.901905019862766,1436,0.129243409172987,7.26961674960817,7.93880224815448,8.76076662424196,12.4461538461538,677.752383954606,86,12689,0,0,0,0,9 +"408",2009,13121,"GA","13","121",905511,0.484757225478211,69251,0.100862385989789,11.1454928643785,11.8619189821451,12.5984119864194,10.5923076923077,344.751100022525,2005,581579,0,0,0,0,9 +"409",2009,13123,"GA","13","123",28174,0.979271668914602,1377,0.152481010861078,7.22766249872865,8.17244681834278,9.00429972856164,10.8923076923077,481.883615957057,79,16394,0,0,0,0,9 +"410",2009,13127,"GA","13","127",78946,0.712436348896714,4687,0.129734248726978,8.4525479979227,9.21453157659465,10.0950578740112,8.85384615384615,472.74146679967,218,46114,0,0,0,0,9 +"411",2009,13129,"GA","13","129",54945,0.938902538902539,3286,0.11025571025571,8.09742629859721,8.99553694493697,9.68408698750075,13.5846153846154,467.970372206899,151,32267,0,0,0,0,9 +"412",2009,13131,"GA","13","131",24893,0.68388703651629,1535,0.120837183143856,7.3362856600213,8.06495089174914,8.89109883061664,10.1769230769231,445.062586926287,64,14380,0,0,0,0,9 +"413",2009,13133,"GA","13","133",15934,0.600225931969374,776,0.172335885527802,6.65415252018322,7.41155628781116,8.45723085024355,11.8769230769231,484.688257325402,44,9078,0,0,0,0,9 +"414",2009,13135,"GA","13","135",796276,0.632732871516911,47328,0.091480843325681,10.7648573655105,11.8087170661271,12.426311983697,9.41538461538462,227.828530985292,1117,490281,0,0,0,0,9 +"415",2009,13137,"GA","13","137",42947,0.926304514867162,2719,0.122942231122081,7.90801944463247,8.64787051505785,9.4982974066224,10.4769230769231,364,91,25000,0,0,0,0,9 +"416",2009,13139,"GA","13","139",178503,0.888718957104362,11694,0.102317608107427,9.36683116873562,10.1587497337318,10.8534258038225,9.83846153846154,348.221480372971,363,104244,0,0,0,0,9 +"417",2009,13141,"GA","13","141",9508,0.248632730332352,611,0.147454774926378,6.4150969591716,7.11558212618445,7.82043951526218,20.4461538461538,600.300150075038,36,5997,0,0,0,0,9 +"418",2009,13143,"GA","13","143",28774,0.940918885104608,1750,0.119691388058664,7.46737106691756,8.32675881451173,9.03634406392822,12.5846153846154,634.04713482474,106,16718,0,0,0,0,9 +"419",2009,13145,"GA","13","145",31494,0.806598082174382,1464,0.148758493681336,7.28892769452126,8.43315919580623,9.16805897971958,7.60769230769231,453.610422490638,86,18959,0,0,0,0,9 +"420",2009,13147,"GA","13","147",25108,0.799426477616696,1308,0.138999522064681,7.17625453201714,8.07527154629746,8.8731879040501,14.0769230769231,500.660593839093,72,14381,0,0,0,0,9 +"421",2009,13149,"GA","13","149",11765,0.88380790480238,635,0.119932001699958,6.45362499889269,7.454719949364,8.14351740579748,13.6307692307692,658.183413777973,45,6837,0,0,0,0,9 +"422",2009,13151,"GA","13","151",199622,0.589864844556211,10498,0.0965224273877629,9.25894004181225,10.4498443993418,11.0496352502436,10.2153846153846,330.603477210177,394,119176,0,0,0,0,9 +"423",2009,13153,"GA","13","153",137416,0.672796472026547,9380,0.101400128078244,9.14633504200027,9.84527564278771,10.6583881293716,7.55384615384615,348.326334441828,287,82394,0,0,0,0,9 +"424",2009,13155,"GA","13","155",9536,0.725985738255034,529,0.11744966442953,6.2709884318583,7.17472430983638,7.88419993367604,15.7692307692308,571.217984153307,31,5427,0,0,0,0,9 +"425",2009,13157,"GA","13","157",60052,0.905498567907813,3253,0.11080396989276,8.08733292647335,9.13118893367075,9.7853794640558,11.6153846153846,386.468018371233,138,35708,0,0,0,0,9 +"426",2009,13159,"GA","13","159",13842,0.765207339979772,795,0.131194914029764,6.67834211465433,7.54327334670545,8.3250636936312,13.1153846153846,506.940253470127,42,8285,0,0,0,0,9 +"427",2009,13161,"GA","13","161",14892,0.835012087026591,882,0.121138866505506,6.78219205600679,7.58629630715272,8.372398606513,14.4076923076923,725.740372234578,62,8543,0,0,0,0,9 +"428",2009,13163,"GA","13","163",17067,0.43838987519775,1069,0.125095212984121,6.97447891102505,7.71199650704767,8.52516136106541,15.1307692307692,653.327888934259,64,9796,0,0,0,0,9 +"429",2009,13165,"GA","13","165",8339,0.568413478834393,482,0.128912339609066,6.1779441140506,6.88448665204278,7.78613643778307,20.3461538461538,589.519650655022,27,4580,0,0,0,0,9 +"430",2009,13167,"GA","13","167",9990,0.633433433433433,574,0.126526526526527,6.35262939631957,7.26961674960817,7.81075811652936,13.1,530.973451327434,33,6215,0,0,0,0,9 +"431",2009,13169,"GA","13","169",28710,0.743469174503657,1493,0.122048066875653,7.30854279753919,8.32651683023953,9.07199742235444,8.98461538461538,462.853073819131,78,16852,0,0,0,0,9 +"432",2009,13171,"GA","13","171",18233,0.675588219163056,1407,0.126967586244721,7.24921505711439,7.7376162828579,8.59433940059289,14.1615384615385,603.716630506556,64,10601,0,0,0,0,9 +"433",2009,13173,"GA","13","173",9810,0.730784913353721,703,0.0994903160040775,6.55535689181067,7.16780918431644,7.95787735848981,9.51538461538462,553.441715669319,32,5782,0,0,0,0,9 +"434",2009,13175,"GA","13","175",48601,0.624513898890969,2866,0.12001810662332,7.96067260838812,8.75573753930647,9.5800401236376,11.7384615384615,543.321819228555,151,27792,0,0,0,0,9 +"435",2009,13177,"GA","13","177",28326,0.784226505683824,1490,0.112687989832663,7.3065313989395,8.4213428657594,9.05695606507683,7.6,372.136294918014,64,17198,0,0,0,0,9 +"436",2009,13179,"GA","13","179",67061,0.516380608699542,8136,0.0765124289825681,9.0040539377284,8.99974278983049,9.92944765420566,8.90769230769231,322.191888634743,131,40659,0,0,0,0,9 +"437",2009,13181,"GA","13","181",8073,0.666171187910318,451,0.153846153846154,6.11146733950268,6.91869521902047,7.79523492900217,11.4076923076923,485.334458746571,23,4739,0,0,0,0,9 +"438",2009,13183,"GA","13","183",13787,0.706680205991151,1065,0.0923333575106985,6.97073007814353,7.52886925664225,8.31409733540581,6.85384615384615,466.028942850135,38,8154,0,0,0,0,9 +"439",2009,13185,"GA","13","185",107583,0.609975553758493,13303,0.0926168632590651,9.49574485268391,9.48250263276993,10.3970245861646,8.89230769230769,383.401339595042,249,64945,0,0,0,0,9 +"440",2009,13187,"GA","13","187",29723,0.972512868822124,3085,0.121993069340242,8.03430693633949,8.18283871076603,9.11526016572591,12.3076923076923,368.780273007486,67,18168,0,0,0,0,9 +"441",2009,13189,"GA","13","189",21836,0.590126396775966,1352,0.127266898699396,7.20934025660291,7.91132401896335,8.79754848848156,11.9461538461538,614.623243933589,77,12528,0,0,0,0,9 +"442",2009,13191,"GA","13","191",14268,0.623773479114102,713,0.151527894589291,6.5694814204143,7.48380668766583,8.38617292897783,10.6230769230769,394.784065079555,33,8359,0,0,0,0,9 +"443",2009,13193,"GA","13","193",14842,0.369424605848268,1016,0.128351974127476,6.92362862813843,7.58222919427646,8.2845042272585,12.9923076923077,593.311758360302,55,9270,0,0,0,0,9 +"444",2009,13195,"GA","13","195",28008,0.904562982005141,1519,0.127249357326478,7.32580750259577,8.26410576372896,9.02869858408699,9.13846153846154,471.128291857937,78,16556,0,0,0,0,9 +"445",2009,13197,"GA","13","197",8561,0.639644901296577,488,0.135848615815909,6.19031540585315,6.94889722231331,7.81681996576455,10.4153846153846,621.865596790371,31,4985,0,0,0,0,9 +"446",2009,13199,"GA","13","199",22446,0.589013632718524,1303,0.136193531141406,7.17242457712485,7.91899248816525,8.81239690526686,14.4,547.67047207652,71,12964,0,0,0,0,9 +"447",2009,13201,"GA","13","201",6131,0.700048931658783,339,0.129668895775567,5.82600010738045,6.67203294546107,7.46106551435428,9.10769230769231,589.448865310934,20,3393,0,0,0,0,9 +"448",2009,13205,"GA","13","205",23592,0.504196337741607,1561,0.111478467277043,7.35308192051543,8.08671792030391,8.75825524323279,10.4923076923077,514.579759862779,72,13992,0,0,0,0,9 +"449",2009,13207,"GA","13","207",26233,0.744520260740289,1554,0.13909960736477,7.34858753092759,8.18311807939475,8.96559006690791,9.5,450.788880540947,72,15972,0,0,0,0,9 +"450",2009,13209,"GA","13","209",9136,0.722197898423818,784,0.119746059544659,6.66440902035041,7.10496544826984,7.86518795418747,9.4,490.285091701471,27,5507,0,0,0,0,9 +"451",2009,13211,"GA","13","211",17921,0.743262094749177,804,0.13503710730428,6.68959926917897,7.81116338502528,8.57847641983314,10.4461538461538,435.455777046642,45,10334,0,0,0,0,9 +"452",2009,13213,"GA","13","213",39888,0.975055154432411,2433,0.110735058162856,7.79688034278352,8.7160440501614,9.38932302750462,13.5846153846154,517.393681908047,123,23773,0,0,0,0,9 +"453",2009,13215,"GA","13","215",188796,0.494814508781966,15801,0.102623996271107,9.6678285081515,10.0687901041605,10.9661962868579,9.53076923076923,473.096011711358,530,112028,0,0,0,0,9 +"454",2009,13217,"GA","13","217",99494,0.569662492210586,5621,0.101463404828432,8.63426486300208,9.67715141032275,10.3363408239632,12.8153846153846,343.263243233919,199,57973,0,0,0,0,9 +"455",2009,13219,"GA","13","219",32386,0.913264991045514,1422,0.124899647996048,7.25981961036319,8.51016857647927,9.1848174147451,6.54615384615385,206.808781419026,39,18858,0,0,0,0,9 +"456",2009,13221,"GA","13","221",14784,0.809929653679654,737,0.12696158008658,6.60258789218934,7.68982866873648,8.40088406901585,8.9,429.427053904396,38,8849,0,0,0,0,9 +"457",2009,13223,"GA","13","223",140761,0.805976087126406,7443,0.0854995346722459,8.91502927235991,10.1481185854918,10.6764158681009,10.5923076923077,307.108555166894,259,84335,0,0,0,0,9 +"458",2009,13225,"GA","13","225",27474,0.520746887966805,2738,0.113962291621169,7.91498300584839,8.09864284375942,9.02051069969191,10.8461538461538,482.822655524605,78,16155,0,0,0,0,9 +"459",2009,13227,"GA","13","227",29542,0.978775979960734,1510,0.15063299708889,7.31986492980897,8.32530602975258,9.09526616413072,11.1,602.615122228539,106,17590,0,0,0,0,9 +"460",2009,13229,"GA","13","229",18564,0.89538892480069,924,0.127828054298643,6.82871207164168,7.83241092718792,8.61613313927114,9.84615384615385,701.000093466679,75,10699,0,0,0,0,9 +"461",2009,13231,"GA","13","231",17721,0.883133006038034,860,0.11816488911461,6.75693238924755,7.91935619066062,8.56674497024549,11.4692307692308,484.073966502082,50,10329,0,0,0,0,9 +"462",2009,13233,"GA","13","233",41386,0.851447349345189,2795,0.112260184603489,7.9355873855892,8.57922858233569,9.38614071177987,11.2846153846154,574.592123474395,137,23843,0,0,0,0,9 +"463",2009,13235,"GA","13","235",11903,0.670083172309502,649,0.136688229858019,6.47543271670409,7.39018142822643,8.36637030168165,8.18461538461538,430.914651098137,31,7194,0,0,0,0,9 +"464",2009,13237,"GA","13","237",21179,0.71679493838236,1143,0.159025449737948,7.04141166379481,7.81399567500279,8.7668618216698,11.4846153846154,458.3835946924,57,12435,0,0,0,0,9 +"465",2009,13241,"GA","13","241",16295,0.973672905799325,808,0.156305615219392,6.6945620585211,7.54750168281497,8.41935983106747,10.9076923076923,563.53591160221,51,9050,0,0,0,0,9 +"466",2009,13243,"GA","13","243",7736,0.3717683557394,464,0.132238883143744,6.13988455222626,6.76272950693188,7.75833346749091,12.7538461538462,318.3989083466,14,4397,0,0,0,0,9 +"467",2009,13245,"GA","13","245",198489,0.415569628543647,17715,0.10926550085899,9.78216701729957,10.0597645415934,11.0326613767866,10.5846153846154,528.795549095283,633,119706,0,0,0,0,9 +"468",2009,13247,"GA","13","247",84625,0.508041358936484,5167,0.116868537666174,8.55004752828718,9.43196276691845,10.1920067744805,11.6692307692308,333.02277637917,168,50447,0,0,0,0,9 +"469",2009,13251,"GA","13","251",14905,0.548473666554847,890,0.13129822207313,6.79122146272619,7.48324441607385,8.37101068123816,14.8153846153846,557.929724596391,47,8424,0,0,0,0,9 +"470",2009,13253,"GA","13","253",8760,0.657077625570776,412,0.138698630136986,6.02102334934953,6.92951677076365,7.84776253747361,11.3076923076923,676.506765067651,33,4878,0,0,0,0,9 +"471",2009,13255,"GA","13","255",64135,0.650066266469167,3954,0.11787635456459,8.28248300373056,9.05765528431053,9.87029264767849,14.8153846153846,519.907689859147,196,37699,0,0,0,0,9 +"472",2009,13257,"GA","13","257",26069,0.872108634776938,1740,0.135755111435038,7.46164039220858,8.06180227453835,8.95776800997116,11.1076923076923,677.921042137445,102,15046,0,0,0,0,9 +"473",2009,13261,"GA","13","261",32724,0.455781689280039,2849,0.113494682801613,7.95472333449791,8.27026911143662,9.19238004659919,13.5769230769231,494.838778333511,93,18794,0,0,0,0,9 +"474",2009,13263,"GA","13","263",6873,0.394733013240215,322,0.164702458897134,5.77455154554441,6.67076632084587,7.67461749736436,9.91538461538462,634.146341463415,26,4100,0,0,0,0,9 +"475",2009,13267,"GA","13","267",25068,0.686891654699218,1935,0.106390617520345,7.56786260546388,8.2358907259285,8.70433643848941,9.43846153846154,473.991997537704,77,16245,0,0,0,0,9 +"476",2009,13269,"GA","13","269",8854,0.591484074994353,496,0.123334086288683,6.20657592672493,7.02019070831193,7.85864065562079,12.4461538461538,554.345674123936,28,5051,0,0,0,0,9 +"477",2009,13271,"GA","13","271",16200,0.617407407407407,1017,0.11783950617284,6.92461239604856,7.83082299513532,8.25244609024695,14.6615384615385,452.140452140452,47,10395,0,0,0,0,9 +"478",2009,13273,"GA","13","273",9596,0.365673197165486,648,0.132242601083785,6.47389069635227,7.00306545878646,7.9298464297425,10.8307692307692,612.612612612613,34,5550,0,0,0,0,9 +"479",2009,13275,"GA","13","275",44689,0.612454966546577,2549,0.126205553939448,7.84345640437612,8.66354208775137,9.50390510758612,9.63846153846154,565.544678029564,145,25639,0,0,0,0,9 +"480",2009,13277,"GA","13","277",39748,0.688110093589615,3016,0.11004327261749,8.01168672912785,8.49494758246892,9.36237452783168,11.4846153846154,397.737316598904,90,22628,0,0,0,0,9 +"481",2009,13279,"GA","13","279",27079,0.72975368366631,1673,0.1137043465416,7.42237370098682,8.1519098729409,8.97119446318447,10.3692307692308,533.4914048607,81,15183,0,0,0,0,9 +"482",2009,13281,"GA","13","281",10444,0.98745691306013,553,0.157793948678667,6.31535800152233,6.97541392745595,7.91534816926308,9.14615384615385,529.100529100529,28,5292,0,0,0,0,9 +"483",2009,13283,"GA","13","283",6906,0.667535476397336,435,0.117289313640313,6.07534603108868,6.76388490856244,7.56320059235807,11.9923076923077,669.476816265807,27,4033,0,0,0,0,9 +"484",2009,13285,"GA","13","285",66422,0.640405287404776,4321,0.115398512541026,8.37124213593193,9.09301972939964,9.89787181375049,13.4923076923077,524.661697098777,202,38501,0,0,0,0,9 +"485",2009,13287,"GA","13","287",8900,0.573258426966292,541,0.121460674157303,6.29341927884648,7.00760061395185,7.84424071814181,14.7230769230769,659.736105557777,33,5002,0,0,0,0,9 +"486",2009,13289,"GA","13","289",9257,0.572863778762018,546,0.147455979258939,6.3026189757449,6.99484998583307,7.95085485771999,11.5769230769231,753.228120516499,42,5576,0,0,0,0,9 +"487",2009,13291,"GA","13","291",21338,0.986596681975818,867,0.169275470990721,6.76503897678054,7.71467747380093,8.68152048483791,9.93846153846154,417.718214254634,48,11491,0,0,0,0,9 +"488",2009,13293,"GA","13","293",27360,0.7046783625731,1593,0.127741228070175,7.37337430991005,8.18646442942209,9.00109972583097,13.5384615384615,588.53309707632,93,15802,0,0,0,0,9 +"489",2009,13295,"GA","13","295",68612,0.947501894712295,3691,0.125080160904798,8.21365270303,9.15641202995063,9.9150207883498,11.4230769230769,505.012996658002,204,40395,0,0,0,0,9 +"490",2009,13297,"GA","13","297",83353,0.822297937686706,4605,0.114249037227214,8.43489794868941,9.45922963970881,10.1306231251199,10.8923076923077,438.337173031051,215,49049,0,0,0,0,9 +"491",2009,13299,"GA","13","299",35985,0.689426149784632,2428,0.12180075031263,7.79482315217939,8.422882511945,9.23131877836138,11.3769230769231,594.954783436459,125,21010,0,0,0,0,9 +"492",2009,13301,"GA","13","301",5914,0.371491376394995,316,0.138654041258032,5.75574221358691,6.48463523563525,7.49164547360513,18.8615384615385,719.208870242733,24,3337,0,0,0,0,9 +"493",2009,13303,"GA","13","303",21240,0.457062146892655,1307,0.118879472693032,7.17548971362422,7.93200315236138,8.69951474821019,14.3538461538462,361.635220125786,46,12720,0,0,0,0,9 +"494",2009,13305,"GA","13","305",30016,0.783382196162047,1754,0.118436833688699,7.46965417293213,8.37609035043824,9.01627006814768,12.3076923076923,559.94176605633,100,17859,0,0,0,0,9 +"495",2009,13309,"GA","13","309",7150,0.640699300699301,526,0.116363636363636,6.26530121273771,6.97166860472579,7.34987370473834,10.1076923076923,553.780617678381,26,4695,0,0,0,0,9 +"496",2009,13311,"GA","13","311",26949,0.971056439942113,1484,0.140302052024194,7.30249642372733,8.14496941708788,8.97246382105991,10.2461538461538,377.235772357724,58,15375,0,0,0,0,9 +"497",2009,13313,"GA","13","313",101009,0.927174806205388,6652,0.0995554851547882,8.80267284031282,9.57664876488315,10.2637809419976,13.3538461538462,397.33268838752,230,57886,0,0,0,0,9 +"498",2009,13315,"GA","13","315",9156,0.633573612931411,634,0.121996505024028,6.45204895443723,7.20711885620776,7.63482067774554,12.5615384615385,630.323679727428,37,5870,0,0,0,0,9 +"499",2009,13317,"GA","13","317",10571,0.551792640242172,532,0.141992242928767,6.27664348934164,7.14361760270412,8.00703401219341,12.5,550.091681946991,33,5999,0,0,0,0,9 +"500",2009,13319,"GA","13","319",9652,0.59966846249482,561,0.128056361375881,6.3297209055227,7.03878354138854,7.94590959861313,11.6615384615385,598.802395209581,33,5511,0,0,0,0,9 +"501",2009,13321,"GA","13","321",21799,0.710353685948897,1376,0.130969310518831,7.22693601849329,7.94093976232779,8.77183540978982,10.5615384615385,399.329127066528,50,12521,0,0,0,0,9 +"502",2009,15001,"HI","15","001",183629,0.334239145233051,10723,0.154752245015765,9.28014624622014,9.97752766524459,10.9173041894995,9.53076923076923,385.392974475613,427,110796,1,0,0,0,9 +"503",2009,15003,"HI","15","003",943177,0.208769933957253,71565,0.118506918637753,11.1783614066183,11.7414942729295,12.5452163107065,5.63076923076923,275.31088132652,1577,572807,1,0,0,0,9 +"504",2009,15007,"HI","15","007",66518,0.326062118524309,3527,0.14943323611654,8.16820293023605,9.03085479000144,9.88933791693169,9.12307692307692,355.07989297592,142,39991,1,0,0,0,9 +"505",2009,15009,"HI","15","009",153300,0.343144161774299,8327,0.136477495107632,9.02725852623582,9.9647237520067,10.755666338943,8.53846153846154,318.675655493737,303,95081,1,0,0,0,9 +"506",2009,19005,"IA","19","005",14263,0.980789455233822,693,0.135805931430975,6.5410299991899,7.36327958696304,8.22844388300403,10.2076923076923,370.749169010483,29,7822,1,0,0,0,9 +"507",2009,19007,"IA","19","007",12896,0.986740074441687,633,0.133529776674938,6.45047042214418,7.27309259599952,8.18423477409482,8.68461538461538,465.641315083957,33,7087,1,0,0,0,9 +"508",2009,19011,"IA","19","011",26117,0.988857832063407,1107,0.114599686028257,7.00940893270864,8.17385745477362,8.90136656405678,6.30769230769231,317.374569518536,47,14809,1,0,0,0,9 +"509",2009,19013,"IA","19","013",130595,0.883104253608484,15137,0.118006049236188,9.62489735676257,9.557823197546,10.5908178477745,6.10769230769231,285.906705465266,225,78697,1,0,0,0,9 +"510",2009,19015,"IA","19","015",26360,0.98247344461305,1354,0.12902124430956,7.21081845347222,8.0471895621705,8.92518842937803,5.92307692307692,376.386687797147,57,15144,1,0,0,0,9 +"511",2009,19017,"IA","19","017",24183,0.980564859612124,1978,0.12351651986933,7.58984151218266,7.94058382710424,8.82246957226897,5.40769230769231,228.951255539143,31,13540,1,0,0,0,9 +"512",2009,19019,"IA","19","019",21016,0.98743814236772,1076,0.119194899124477,6.98100574072173,7.83636976054512,8.65921345143667,6.61538461538461,336.671270718232,39,11584,1,0,0,0,9 +"513",2009,19021,"IA","19","021",20004,0.906868626274745,1528,0.114427114577085,7.33171496972647,7.70751219460034,8.59600437184053,5.23076923076923,259.577515216613,29,11172,1,0,0,0,9 +"514",2009,19023,"IA","19","023",14699,0.992040274848629,601,0.141438193074359,6.39859493453521,7.42595365707754,8.28828304520769,6.56923076923077,309.712586719524,25,8072,1,0,0,0,9 +"515",2009,19025,"IA","19","025",9684,0.990706319702602,406,0.143122676579926,6.00635315960173,6.91473089271856,7.85205020726589,5.13846153846154,446.255335661622,23,5154,1,0,0,0,9 +"516",2009,19027,"IA","19","027",20743,0.986260425203683,943,0.11729258062961,6.84906628263346,7.76599307940768,8.62532985002082,4.21538461538462,391.041592605759,44,11252,1,0,0,0,9 +"517",2009,19029,"IA","19","029",13949,0.988242884794609,608,0.130977130977131,6.41017488196617,7.28276117960559,8.22924441673591,6.75384615384615,426.325606181721,32,7506,1,0,0,0,9 +"518",2009,19031,"IA","19","031",18458,0.988406111171308,723,0.130079098493878,6.58340922215876,7.74716496652033,8.54422453046727,5.58461538461538,344.234079173838,36,10458,1,0,0,0,9 +"519",2009,19033,"IA","19","033",44239,0.97068197744072,2430,0.136531115079455,7.79564653633459,8.51418868239594,9.45852769372982,6.94615384615385,345.518080804115,88,25469,1,0,0,0,9 +"520",2009,19035,"IA","19","035",11953,0.982765832845311,559,0.141972726512173,6.3261494731551,7.05531284333975,8.04750951098142,4.58461538461538,336.700336700337,22,6534,1,0,0,0,9 +"521",2009,19039,"IA","19","039",9228,0.985153879497182,521,0.123320329432163,6.25575004175337,6.9782137426307,7.83320394864106,7.61538461538461,311.587147030185,16,5135,1,0,0,0,9 +"522",2009,19041,"IA","19","041",16708,0.98455829542734,780,0.128980129279387,6.65929391968364,7.54274354536855,8.4465561118168,6.8,224.023895882227,21,9374,1,0,0,0,9 +"523",2009,19043,"IA","19","043",18185,0.989551828430025,809,0.138025845477042,6.69579891705849,7.61579107203583,8.49453850085143,8.56923076923077,377.88385043755,38,10056,1,0,0,0,9 +"524",2009,19045,"IA","19","045",49147,0.957108267035628,2709,0.126192850021364,7.9043348420851,8.6821990260005,9.54581210826381,7.26153846153846,315.073397780165,88,27930,1,0,0,0,9 +"525",2009,19047,"IA","19","047",16944,0.96783522190746,964,0.117032577903683,6.87109129461055,7.57507169950756,8.38091517312361,4.60769230769231,295.760762405521,27,9129,1,0,0,0,9 +"526",2009,19049,"IA","19","049",64489,0.953666516770302,2989,0.0982338073159764,8.00269416228394,9.23395923757482,9.88532358190846,4.92307692307692,197.633597711611,76,38455,1,0,0,0,9 +"527",2009,19053,"IA","19","053",8506,0.968492828591582,839,0.118387020926405,6.73221070646721,6.75693238924755,7.73061406606374,6.72307692307692,391.644908616188,18,4596,1,0,0,0,9 +"528",2009,19055,"IA","19","055",17755,0.991101098282174,734,0.119628273725711,6.59850902861452,7.65728279297819,8.48735234940522,6.69230769230769,282.343450640315,28,9917,1,0,0,0,9 +"529",2009,19057,"IA","19","057",40379,0.927090814532306,2127,0.133311870031452,7.66246781520024,8.47595444339964,9.36246042003702,8.03076923076923,308.561495002173,71,23010,1,0,0,0,9 +"530",2009,19059,"IA","19","059",16666,0.990939637585503,667,0.161826473058922,6.50279004591562,7.49554194388426,8.44548234386224,7.20769230769231,201.805629314923,19,9415,1,0,0,0,9 +"531",2009,19061,"IA","19","061",92948,0.956513319275294,6791,0.118733055041529,8.82335348511379,9.31641063570325,10.1872369019602,6.6,276.780371035308,148,53472,1,0,0,0,9 +"532",2009,19063,"IA","19","063",10361,0.971431329022295,623,0.124891419747129,6.43454651878745,6.97914527506881,7.88570539124302,8.28461538461539,267.904983032684,15,5599,1,0,0,0,9 +"533",2009,19065,"IA","19","065",20939,0.98080137542385,1258,0.125459668561058,7.13727843726039,7.71646080017636,8.62299361030245,8.59230769230769,331.67495854063,38,11457,1,0,0,0,9 +"534",2009,19067,"IA","19","067",16248,0.971258000984737,729,0.134354997538159,6.59167373200866,7.52671756135271,8.38662882139512,8.72307692307692,434.633421022532,38,8743,1,0,0,0,9 +"535",2009,19069,"IA","19","069",10656,0.985641891891892,503,0.131193693693694,6.22059017009974,7.07157336421153,7.95014988765202,7.39230769230769,256.103807409937,15,5857,1,0,0,0,9 +"536",2009,19071,"IA","19","071",7453,0.98725345498457,319,0.146786528914531,5.76519110278484,6.69826805411541,7.59337419312129,6.87692307692308,462.287104622871,19,4110,1,0,0,0,9 +"537",2009,19073,"IA","19","073",9329,0.988637581734377,387,0.139671990567049,5.95842469302978,6.88857245956536,7.81035268372429,5.87692307692308,536.886060847087,27,5029,1,0,0,0,9 +"538",2009,19075,"IA","19","075",12447,0.992689001365791,545,0.130151843817787,6.30078579466324,7.28824440102012,8.12207437536222,5.80769230769231,176.004693458492,12,6818,1,0,0,0,9 +"539",2009,19077,"IA","19","077",10939,0.990127068287778,334,0.140963525002285,5.8111409929767,7.17165682276851,7.98989937494294,6.26923076923077,335.683115139308,20,5958,1,0,0,0,9 +"540",2009,19079,"IA","19","079",15739,0.96988372831819,710,0.124785564521253,6.56526497003536,7.54380286750151,8.365672383775,7.63076923076923,240.274599542334,21,8740,1,0,0,0,9 +"541",2009,19081,"IA","19","081",11371,0.987248263125495,458,0.136839328115381,6.12686918411419,7.09340462586877,8.03365842788615,9.97692307692308,395.444479595065,25,6322,1,0,0,0,9 +"542",2009,19083,"IA","19","083",17535,0.977701739378386,896,0.121642429426861,6.79794041297493,7.52779398772144,8.40938523878193,6.56153846153846,486.328758240571,45,9253,1,0,0,0,9 +"543",2009,19085,"IA","19","085",14972,0.991049959925194,638,0.127103927331018,6.45833828334479,7.51152464839087,8.32651683023953,4.94615384615385,407.722748530999,34,8339,1,0,0,0,9 +"544",2009,19087,"IA","19","087",20202,0.945401445401445,1243,0.126373626373626,7.12528309151071,7.86249719723055,8.61974977974133,9.31538461538462,230.296827021494,27,11724,1,0,0,0,9 +"545",2009,19091,"IA","19","091",9843,0.98689423956111,504,0.121202885299197,6.22257626807137,6.95177216439891,7.87016594646984,5.93846153846154,433.880399924543,23,5301,1,0,0,0,9 +"546",2009,19095,"IA","19","095",16406,0.98799219797635,676,0.120931366573205,6.51619307604296,7.63578686139558,8.40648506943182,7.10769230769231,337.617076889567,31,9182,1,0,0,0,9 +"547",2009,19097,"IA","19","097",19841,0.985232599163349,840,0.13159618970818,6.73340189183736,7.78655180642871,8.60190191934319,8.35384615384615,335.753176043557,37,11020,1,0,0,0,9 +"548",2009,19099,"IA","19","099",36879,0.977738008080479,1786,0.127037067165596,7.48773376143644,8.46716225781067,9.22473625225991,8.56923076923077,335.554830591415,72,21457,1,0,0,0,9 +"549",2009,19101,"IA","19","101",16782,0.901680371826957,1535,0.190740078655703,7.3362856600213,7.4205789054108,8.47699600166482,8.62307692307692,359.645887126522,39,10844,1,0,0,0,9 +"550",2009,19103,"IA","19","103",129864,0.888021314606049,21401,0.0963084457586398,9.97119292889014,9.61266722758384,10.6529205441067,4.46923076923077,188.668258312467,162,85865,1,0,0,0,9 +"551",2009,19105,"IA","19","105",20562,0.971160392957883,953,0.132136951658399,6.8596149036542,7.86518795418747,8.5921151179335,7.13846153846154,360.435875943001,43,11930,1,0,0,0,9 +"552",2009,19107,"IA","19","107",10552,0.990144048521607,466,0.125947687642153,6.14418563412565,7.05703698169789,7.94732502701646,7.97692307692308,276.43400138217,16,5788,1,0,0,0,9 +"553",2009,19109,"IA","19","109",15630,0.988675623800384,603,0.13320537428023,6.40191719672719,7.37963215260955,8.30424746507847,5.88461538461539,227.763126348597,19,8342,1,0,0,0,9 +"554",2009,19111,"IA","19","111",35856,0.954122043730477,1911,0.140673806336457,7.55538194424027,8.37101068123816,9.19968379178765,10.2307692307692,374.172503118104,78,20846,1,0,0,0,9 +"555",2009,19113,"IA","19","113",210217,0.928940095234924,13956,0.112911895802908,9.54366480230667,10.2348395602723,11.0413205543575,6.05384615384615,263.30999935778,328,124568,1,0,0,0,9 +"556",2009,19115,"IA","19","115",11416,0.977750525578136,534,0.120532585844429,6.2803958389602,7.28000825288419,8.03883475778775,8.26923076923077,247.754722824404,16,6458,1,0,0,0,9 +"557",2009,19117,"IA","19","117",8948,0.993518104604381,361,0.133661153330353,5.88887795833288,6.90475076996184,7.77485576666552,6.38461538461539,336.205085101912,16,4759,1,0,0,0,9 +"558",2009,19119,"IA","19","119",11557,0.994116120100372,491,0.115341351561824,6.19644412779452,7.19893124068817,8.0106915391303,4.27692307692308,228.534116878877,14,6126,1,0,0,0,9 +"559",2009,19121,"IA","19","121",15510,0.988974854932302,580,0.121018697614442,6.36302810354046,7.69302574841789,8.3774712482411,6.71538461538462,277.777777777778,24,8640,1,0,0,0,9 +"560",2009,19123,"IA","19","123",22364,0.970711858343767,1508,0.11988016455017,7.3185395485679,7.85979918056211,8.73117490093806,8.26923076923077,221.448908573236,28,12644,1,0,0,0,9 +"561",2009,19125,"IA","19","125",33468,0.976813672762041,2253,0.116409704792638,7.72001794043224,8.30325712085294,9.13583231980112,6.64615384615385,315.643055852771,59,18692,1,0,0,0,9 +"562",2009,19127,"IA","19","127",40280,0.956752730883813,2240,0.12850049652433,7.71423114484909,8.43728380818794,9.30528684928514,7.31538461538462,419.680328600768,94,22398,1,0,0,0,9 +"563",2009,19129,"IA","19","129",15056,0.985985653560043,601,0.145390541976621,6.39859493453521,7.57044325205737,8.38274709486331,4.6,419.596280335677,37,8818,1,0,0,0,9 +"564",2009,19133,"IA","19","133",9247,0.979236509138099,333,0.136044122418082,5.80814248998044,6.80350525760834,7.76174498465891,7.47692307692308,665.41900603036,32,4809,1,0,0,0,9 +"565",2009,19135,"IA","19","135",7924,0.986875315497224,358,0.133013629480061,5.8805329864007,6.85118492749374,7.67693714581808,7.58461538461538,343.563902885937,15,4366,1,0,0,0,9 +"566",2009,19137,"IA","19","137",10803,0.989354808849394,416,0.135795612329908,6.03068526026126,7.13169851046691,7.97762509878459,8.92307692307692,443.458980044346,26,5863,1,0,0,0,9 +"567",2009,19139,"IA","19","139",42783,0.967627328611832,2287,0.122338311946334,7.73499619402278,8.60593640125063,9.41172899148736,8.69230769230769,349.579285394903,86,24601,1,0,0,0,9 +"568",2009,19141,"IA","19","141",14412,0.985012489592007,656,0.126075492645018,6.48616078894409,7.28138566357028,8.22977775008189,5.27692307692308,325.224404839339,25,7687,1,0,0,0,9 +"569",2009,19145,"IA","19","145",15885,0.960088133459238,766,0.135914384639597,6.64118216974059,7.51043055637801,8.28500889544988,8.56923076923077,430.546113754815,38,8826,1,0,0,0,9 +"570",2009,19147,"IA","19","147",9510,0.986855941114616,561,0.123343848580442,6.3297209055227,6.85646198459459,7.80751004221619,7.06923076923077,276.679841897233,14,5060,1,0,0,0,9 +"571",2009,19149,"IA","19","149",24904,0.985383874076454,1044,0.123715065852875,6.95081476844258,7.99967857949945,8.82878708391433,4.67692307692308,224.898432965757,31,13784,1,0,0,0,9 +"572",2009,19151,"IA","19","151",7395,0.987018255578093,293,0.136984448951995,5.68017260901707,6.54391184556479,7.57095858316901,5.75384615384615,377.263581488934,15,3976,1,0,0,0,9 +"573",2009,19153,"IA","19","153",425737,0.889417645165912,28615,0.106558744013323,10.2616863348432,10.9946219513483,11.7902844370989,6.13846153846154,307.600027684002,800,260078,1,0,0,0,9 +"574",2009,19155,"IA","19","155",92395,0.967509064343309,5721,0.12327506899724,8.65189889426853,9.33873358674458,10.2068461043729,5.10769230769231,422.230041297061,228,53999,1,0,0,0,9 +"575",2009,19157,"IA","19","157",18958,0.966504905580757,1722,0.123061504378099,7.45124168498768,7.61972421378267,8.57904059474232,6.83076923076923,273.095395046615,29,10619,1,0,0,0,9 +"576",2009,19161,"IA","19","161",10342,0.990717462773158,368,0.139334751498743,5.90808293816893,7.03174125876313,7.89394513823596,5.08461538461538,453.885257806826,25,5508,1,0,0,0,9 +"577",2009,19163,"IA","19","163",163582,0.892653225905051,10414,0.123674976464403,9.25090633372284,9.94975071700577,10.8081711818685,7.06923076923077,331.654587888466,324,97692,1,0,0,0,9 +"578",2009,19165,"IA","19","165",12165,0.989560213727908,452,0.131196054254007,6.11368217983223,7.24779258176785,8.07930819205196,4,231.3743637205,15,6483,1,0,0,0,9 +"579",2009,19167,"IA","19","167",33587,0.981451156697532,2953,0.100395986542412,7.99057688174392,8.14989054440242,9.08000387024818,4.34615384615385,182.431311846979,33,18089,1,0,0,0,9 +"580",2009,19169,"IA","19","169",89285,0.906983255866047,19057,0.0886375091000728,9.85518976712838,9.02533521755303,10.1964183264236,4.73846153846154,163.777332520254,94,57395,1,0,0,0,9 +"581",2009,19171,"IA","19","171",17833,0.899007458083329,799,0.122525654685134,6.68336094576627,7.67554600253785,8.47114925291483,7.20769230769231,386.867419489753,37,9564,1,0,0,0,9 +"582",2009,19175,"IA","19","175",12527,0.98163965833799,712,0.13099704637982,6.56807791141198,7.22402480828583,8.16451026874704,6.59230769230769,359.971202303816,25,6945,1,0,0,0,9 +"583",2009,19179,"IA","19","179",35481,0.965869056678222,2291,0.125757447648037,7.7367436824535,8.33950090300594,9.2308290384035,8.73846153846154,465.27573709472,95,20418,1,0,0,0,9 +"584",2009,19181,"IA","19","181",45926,0.983582284544702,2766,0.118277228585115,7.9251575122247,8.75352933651643,9.51214721847336,5.88461538461539,298.327102450814,79,26481,1,0,0,0,9 +"585",2009,19183,"IA","19","183",21692,0.982896920523695,923,0.127281947261663,6.82762923450285,7.89431806384162,8.69951474821019,5.55384615384615,267.603278140157,32,11958,1,0,0,0,9 +"586",2009,19187,"IA","19","187",38316,0.942217350454118,2825,0.125482827017434,7.94626364358054,8.32457884513685,9.24927258197797,7.40769230769231,395.454545454545,87,22000,1,0,0,0,9 +"587",2009,19189,"IA","19","189",10917,0.978015938444628,716,0.133553173948887,6.57368016696065,7.07496319796604,7.99833539595298,9.39230769230769,358.890701468189,22,6130,1,0,0,0,9 +"588",2009,19191,"IA","19","191",21025,0.978834720570749,2290,0.118049940546968,7.73630709654828,7.68524360797583,8.67334187390617,6.23076923076923,125.754527162978,15,11928,1,0,0,0,9 +"589",2009,19193,"IA","19","193",101581,0.910475384176175,7280,0.112954194189858,8.89288614119073,9.43364391049176,10.279352190868,5.68461538461538,343.985415018403,200,58142,1,0,0,0,9 +"590",2009,19197,"IA","19","197",13262,0.987860051274318,620,0.131201930327251,6.42971947803914,7.24779258176785,8.14235427684983,7.36153846153846,478.940695872658,34,7099,1,0,0,0,9 +"591",2009,16001,"ID","16","001",388577,0.944062566749962,25691,0.107085596934456,10.1538960149984,10.9321958404794,11.6638251517558,8.86923076923077,236.152036122358,557,235865,0,0,0,0,9 +"592",2009,16005,"ID","16","005",81994,0.934483010952021,7435,0.108117667146377,8.91395385889425,9.10364563330522,10.0843914382425,7.8,345.948212600902,165,47695,0,0,0,0,9 +"593",2009,16009,"ID","16","009",9286,0.889618780960586,400,0.155395218608658,5.99146454710798,6.96224346426621,7.8659554139335,14.9923076923077,518.731988472622,27,5205,0,0,0,0,9 +"594",2009,16011,"ID","16","011",45087,0.908399316876261,2575,0.104331625523987,7.85360481309784,8.52377150677636,9.38773313553338,6.56923076923077,365.469439193447,87,23805,0,0,0,0,9 +"595",2009,16013,"ID","16","013",21590,0.969476609541454,954,0.145113478462251,6.86066367144829,8.02191277898571,8.80971354050827,8.33846153846154,198.924335076991,27,13573,0,0,0,0,9 +"596",2009,16015,"ID","16","015",7051,0.979151893348461,208,0.198127925117005,5.33753807970132,6.76157276880406,7.65396918047877,8.96153846153846,303.030303030303,13,4290,0,0,0,0,9 +"597",2009,16017,"ID","16","017",40809,0.97988188879904,1710,0.17231493053003,7.4442486494967,8.45998771764546,9.40285975374658,11.1076923076923,333.704115684093,81,24273,0,0,0,0,9 +"598",2009,16019,"ID","16","019",103016,0.967616680903937,6411,0.101013434806244,8.76577054398726,9.3808423519648,10.2589918114905,6.34615384615385,307.335663230361,175,56941,0,0,0,0,9 +"599",2009,16021,"ID","16","021",10819,0.966910065625289,417,0.158609853036325,6.0330862217988,7.08002649992259,8.01135510916129,13.5769230769231,648.91846921797,39,6010,0,0,0,0,9 +"600",2009,16027,"ID","16","027",187357,0.957348804688376,12027,0.0950751773352477,9.39490940131062,10.0979023570175,10.8573630447376,11.2307692307692,274.465910749915,282,102745,0,0,0,0,9 +"601",2009,16031,"ID","16","031",22476,0.970991279587115,1203,0.10001779676099,7.09257371597468,7.85438121065236,8.62209360124161,5.95384615384615,419.287211740042,48,11448,0,0,0,0,9 +"602",2009,16035,"ID","16","035",8761,0.963246204771145,314,0.172697180687136,5.74939298590825,6.87212810133899,7.72400465667607,14.8230769230769,494.364247577615,25,5057,0,0,0,0,9 +"603",2009,16039,"ID","16","039",26769,0.912548096678994,2696,0.0882737494863461,7.8995244720322,8.08147504013705,8.91891797990868,8.50769230769231,348.630831643002,55,15776,0,0,0,0,9 +"604",2009,16043,"ID","16","043",13173,0.978896227131253,706,0.106202080012146,6.55961523749324,7.25981961036319,8.08548677210285,8.9,335.130409441935,23,6863,0,0,0,0,9 +"605",2009,16045,"ID","16","045",16809,0.982330894163841,770,0.131834136474508,6.64639051484773,7.57507169950756,8.43620003220671,11.6692307692308,406.057945566286,37,9112,0,0,0,0,9 +"606",2009,16047,"ID","16","047",15270,0.970203012442698,880,0.100589390962672,6.77992190747225,7.47816969415979,8.2445967563825,6.22307692307692,236.494896689071,19,8034,0,0,0,0,9 +"607",2009,16049,"ID","16","049",16138,0.955756599330772,644,0.17245011773454,6.46769872610435,7.41034709782102,8.3584318990313,11.1461538461538,476.665558142113,43,9021,0,0,0,0,9 +"608",2009,16051,"ID","16","051",25770,0.976600698486612,1417,0.0893286767559177,7.25629723969068,8.01466637046494,8.81729778386658,7,221.762270845653,30,13528,0,0,0,0,9 +"609",2009,16053,"ID","16","053",22039,0.96488043922138,1431,0.0996415445346885,7.26612877955645,7.88231491898027,8.66785206770135,7.1,349.475786320519,42,12018,0,0,0,0,9 +"610",2009,16055,"ID","16","055",137407,0.968596941931634,7938,0.12986965729548,8.97941663334301,9.76548905437884,10.6106609048292,10.0923076923077,339.748009778725,271,79765,0,0,0,0,9 +"611",2009,16057,"ID","16","057",36939,0.955575408105255,6738,0.10111264517177,8.8155184239665,8.20220843643645,9.32197118814737,6.78461538461538,195.994887089902,46,23470,0,0,0,0,9 +"612",2009,16059,"ID","16","059",7870,0.980559085133418,280,0.183862770012706,5.63478960316925,6.6631326959908,7.70706265537047,9.12307692307692,561.041292639138,25,4456,0,0,0,0,9 +"613",2009,16065,"ID","16","065",37121,0.977586810700143,10028,0.0477088440505374,9.21313645927818,7.80425138352811,9.28051920659743,6.06153846153846,114.63683052091,25,21808,0,0,0,0,9 +"614",2009,16067,"ID","16","067",19884,0.964594648963991,1114,0.114765640716154,7.01571242048723,7.62803112693033,8.55660619377307,6.7,445.962615048866,47,10539,0,0,0,0,9 +"615",2009,16069,"ID","16","069",39049,0.921175958411227,2734,0.125867499807934,7.9135210172839,8.43010908450912,9.3206287258703,6.76923076923077,379.97317836388,85,22370,0,0,0,0,9 +"616",2009,16073,"ID","16","073",11547,0.929332294102364,646,0.117952714990907,6.4707995037826,7.2254814727823,8.00168997809913,4.44615384615385,381.618699316266,24,6289,0,0,0,0,9 +"617",2009,16075,"ID","16","075",22665,0.968850650783146,1188,0.113170086035738,7.08002649992259,7.92262357421729,8.73165920153676,9.9,403.624382207578,49,12140,0,0,0,0,9 +"618",2009,16079,"ID","16","079",12862,0.974576271186441,523,0.15775151609392,6.25958146406492,7.31388683163346,8.18674278711352,14.1153846153846,571.195430436557,42,7353,0,0,0,0,9 +"619",2009,16083,"ID","16","083",76271,0.963524799727288,5333,0.109884490828755,8.5816692106006,9.0685463663583,9.96740087827978,6.97692307692308,419.508308139399,179,42669,0,0,0,0,9 +"620",2009,16085,"ID","16","085",9975,0.983859649122807,392,0.1868671679198,5.97126183979046,7.11639414409346,8.00770001288403,14.5307692307692,208.936033429765,13,6222,0,0,0,0,9 +"621",2009,16087,"ID","16","087",10173,0.972377862970608,397,0.144008650348963,5.98393628068719,6.99759598298193,7.90838715929004,9.89230769230769,225.098480585256,12,5331,0,0,0,0,9 +"622",2009,17001,"IL","17","001",67039,0.948940169155268,4131,0.123286445203538,8.32627478739676,8.99454475832451,9.8633424122317,7.36923076923077,329.797899846974,125,37902,1,0,0,0,9 +"623",2009,17003,"IL","17","003",8295,0.62833031946956,526,0.134418324291742,6.26530121273771,6.86066367144829,7.71868549519847,12.3307692307692,756.302521008403,36,4760,1,0,0,0,9 +"624",2009,17005,"IL","17","005",17747,0.921057080069871,1306,0.122217839634868,7.17472430983638,7.79729127354747,8.50875771259514,9.95384615384615,283.674963396779,31,10928,1,0,0,0,9 +"625",2009,17007,"IL","17","007",54154,0.949052701554825,2748,0.106658787901171,7.91862865334224,9.01990599507168,9.63600018736987,15.5692307692308,244.63435318677,75,30658,1,0,0,0,9 +"626",2009,17011,"IL","17","011",35058,0.97809344514804,1677,0.132608819670261,7.42476176182321,8.36776467792431,9.19938053173984,10.6230769230769,363.691468404304,72,19797,1,0,0,0,9 +"627",2009,17015,"IL","17","015",15476,0.981261307831481,700,0.153528043422073,6.5510803350434,7.47477218239787,8.34759040703006,10.9769230769231,428.637627432808,37,8632,1,0,0,0,9 +"628",2009,17017,"IL","17","017",13623,0.957351537840417,780,0.115026058871027,6.65929391968364,7.50494206839617,8.2393294279018,6.99230769230769,437.299035369775,34,7775,1,0,0,0,9 +"629",2009,17019,"IL","17","019",199968,0.768057889262282,33966,0.0936299807969275,10.4331153032647,9.96913483377198,11.0473599726091,8.40769230769231,226.066134190337,287,126954,1,0,0,0,9 +"630",2009,17021,"IL","17","021",34808,0.974632268444036,1948,0.123477361526086,7.57455848420248,8.40559101483493,9.15218145780265,10.0923076923077,375.732678723511,75,19961,1,0,0,0,9 +"631",2009,17023,"IL","17","023",16431,0.990749193597468,875,0.123425232791674,6.77422388635761,7.66949525100769,8.43901541035221,13.1692307692308,430.385194749301,40,9294,1,0,0,0,9 +"632",2009,17025,"IL","17","025",13826,0.98777665268335,689,0.132431650513525,6.53524127101366,7.38709023565676,8.24800570160062,12.6615384615385,398.919058036289,31,7771,1,0,0,0,9 +"633",2009,17027,"IL","17","027",37459,0.951146586935049,2256,0.110894578072025,7.72134861261795,8.55967780302239,9.24290436284945,8.53846153846154,314.953644146742,71,22543,1,0,0,0,9 +"634",2009,17029,"IL","17","029",53612,0.942680743117213,9150,0.105125718122808,9.12150915826957,8.56121007683301,9.72226539118547,9.16153846153846,277.616766832423,91,32779,1,0,0,0,9 +"635",2009,17031,"IL","17","031",5181728,0.666673742813208,372218,0.106640487497607,12.8272349831171,13.4779769582965,14.3042562032372,10.4692307692308,338.922846023093,10801,3186861,1,0,0,0,9 +"636",2009,17033,"IL","17","033",19845,0.940639959687579,1197,0.127236079617032,7.08757370555797,7.86441990499457,8.5876516550648,10.0307692307692,353.654429100707,42,11876,1,0,0,0,9 +"637",2009,17035,"IL","17","035",11044,0.990854762767113,598,0.130387540746106,6.39359075395063,7.21229446850034,8.02878116248715,9.9,190.930787589499,12,6285,1,0,0,0,9 +"638",2009,17037,"IL","17","037",105146,0.90074753200312,16094,0.089665798033211,9.68620181070608,9.41328121597287,10.3775765751861,10.0769230769231,212.453764558432,139,65426,1,0,0,0,9 +"639",2009,17039,"IL","17","039",16538,0.98512516628371,775,0.127584955859233,6.65286302935335,7.67275789664251,8.45680604140114,8.6,365.993934957649,35,9563,1,0,0,0,9 +"640",2009,17041,"IL","17","041",19949,0.986766253947566,1132,0.116497067522182,7.03174125876313,7.75876054415766,8.6213730103259,8.81538461538462,233.939175814288,26,11114,1,0,0,0,9 +"641",2009,17043,"IL","17","043",912732,0.838904519618026,54591,0.119615615536653,10.9076243129814,11.7624538547891,12.5513771907965,8.51538461538462,205.080175044811,1143,557343,1,0,0,0,9 +"642",2009,17045,"IL","17","045",18668,0.98998285836726,935,0.136222412684808,6.84054652928869,7.69120009752286,8.57395152523485,10.3769230769231,386.209495101733,41,10616,1,0,0,0,9 +"643",2009,17047,"IL","17","047",6675,0.988314606741573,309,0.137378277153558,5.73334127689775,6.72503364216684,7.52833176670725,9.23846153846154,556.586270871985,21,3773,1,0,0,0,9 +"644",2009,17049,"IL","17","049",34275,0.988913202042305,1988,0.117636761487965,7.59488438721652,8.3228800217699,9.18266080286944,8.11538461538461,341.488277268094,67,19620,1,0,0,0,9 +"645",2009,17051,"IL","17","051",22089,0.949522386708316,1396,0.116483317488343,7.24136628332232,7.96415571884094,8.65189889426853,11.1076923076923,332.611386138614,43,12928,1,0,0,0,9 +"646",2009,17053,"IL","17","053",14084,0.985018460664584,662,0.115237148537347,6.49526555593701,7.42356844425917,8.2482674474469,10.0846153846154,454.722619202287,35,7697,1,0,0,0,9 +"647",2009,17055,"IL","17","055",39482,0.987715921179272,2101,0.130160579504584,7.650168700845,8.50613224405681,9.32830116960975,13.1461538461538,561.494924085886,125,22262,1,0,0,0,9 +"648",2009,17057,"IL","17","057",37090,0.952601779455379,2095,0.130412510110542,7.64730883235624,8.485083137498,9.20552881497896,11.4615384615385,463.451567016932,101,21793,1,0,0,0,9 +"649",2009,17059,"IL","17","059",5631,0.992186112591014,260,0.146687977268691,5.56068163101553,6.48920493132532,7.37400185935016,10.1,857.415052397587,27,3149,1,0,0,0,9 +"650",2009,17061,"IL","17","061",13926,0.986643688065489,743,0.122791900043085,6.61069604471776,7.46508273639955,8.24800570160062,8.43076923076923,389.056224899598,31,7968,1,0,0,0,9 +"651",2009,17063,"IL","17","063",49702,0.972978954569233,2530,0.10615266991268,7.83597458172157,8.90801832278489,9.59069277926927,12.1153846153846,295.476158130689,87,29444,1,0,0,0,9 +"652",2009,17065,"IL","17","065",8448,0.988636363636364,419,0.133877840909091,6.03787091992214,6.83947643822884,7.7596141506969,9.48461538461538,386.847195357834,18,4653,1,0,0,0,9 +"653",2009,17067,"IL","17","067",19080,0.990041928721174,882,0.140356394129979,6.78219205600679,7.67322312112171,8.57715877258367,11.2230769230769,375.763269140442,40,10645,1,0,0,0,9 +"654",2009,17069,"IL","17","069",4344,0.979281767955801,183,0.164825046040516,5.20948615284142,6.24416690066374,7.13089883029635,11.0461538461538,441.058540497193,11,2494,1,0,0,0,9 +"655",2009,17071,"IL","17","071",7340,0.98991825613079,292,0.150817438692098,5.67675380226828,6.70441435496411,7.63433723562832,9.62307692307692,263.09495336044,11,4181,1,0,0,0,9 +"656",2009,17073,"IL","17","073",50536,0.972237612790882,2371,0.132756846604401,7.77106708606541,8.72907355045174,9.5620530240851,9.26153846153846,273.473108477666,78,28522,1,0,0,0,9 +"657",2009,17075,"IL","17","075",29863,0.982319257944614,1331,0.129826206342296,7.19368581839511,8.17554759602103,9.01942196795671,9.68461538461538,426.049908703591,70,16430,1,0,0,0,9 +"658",2009,17077,"IL","17","077",59664,0.807337758112094,11443,0.101786672030035,9.34513346831771,8.68963274835574,9.81880074436893,7.36153846153846,344.559585492228,133,38600,1,0,0,0,9 +"659",2009,17079,"IL","17","079",9701,0.992990413359447,521,0.126687970312339,6.25575004175337,7.05703698169789,7.90211754627645,9.27692307692308,270.318976392143,15,5549,1,0,0,0,9 +"660",2009,17081,"IL","17","081",38970,0.896792404413651,2252,0.130818578393636,7.71957398925958,8.52912176228151,9.27472263090545,9.63846153846154,388.816076889471,89,22890,1,0,0,0,9 +"661",2009,17083,"IL","17","083",23060,0.986036426712923,1579,0.121162185602775,7.36454701425564,7.96102146588337,8.81759403627579,9.48461538461538,282.464877722441,38,13453,1,0,0,0,9 +"662",2009,17085,"IL","17","085",22685,0.98712805818823,984,0.160370288737051,6.89162589705225,7.84109976542212,8.74432876399998,9.08461538461538,267.611176702086,34,12705,1,0,0,0,9 +"663",2009,17087,"IL","17","087",12604,0.905347508727388,783,0.13416375753729,6.6631326959908,7.44541755670169,8.0452677166078,10.6153846153846,454.545454545455,35,7700,1,0,0,0,9 +"664",2009,17089,"IL","17","089",511273,0.886094121927033,29525,0.102293686543197,10.2929926410656,11.252080046472,11.9186905280874,10.5230769230769,225.93013442843,680,300978,1,0,0,0,9 +"665",2009,17091,"IL","17","091",113107,0.823087872545466,7787,0.115253697825952,8.96021095557699,9.56906321753222,10.4043537454075,12.3384615384615,394.899973979459,258,65333,1,0,0,0,9 +"666",2009,17093,"IL","17","093",112490,0.899662192194862,5328,0.0840430260467597,8.58073121222023,9.88511989517794,10.429310157308,10.0384615384615,200.201706982975,133,66433,1,0,0,0,9 +"667",2009,17095,"IL","17","095",52817,0.9049359107863,3594,0.135240547550978,8.1870210673435,8.71817293002873,9.59246861471991,9.71538461538461,399.646214826219,122,30527,1,0,0,0,9 +"668",2009,17097,"IL","17","097",701042,0.846163282656389,41732,0.109454212443762,10.6390234995879,11.5332475651601,12.2428239660878,9.91538461538462,233.300234264285,968,414916,1,0,0,0,9 +"669",2009,17099,"IL","17","099",113999,0.965833033623102,6452,0.123395819261572,8.7721454392451,9.56773505683926,10.3758010120688,12.3,374.435315162356,247,65966,1,0,0,0,9 +"670",2009,17101,"IL","17","101",16802,0.894655398166885,1163,0.113379359600048,7.05875815251866,7.76684053708551,8.32360844234357,10.1230769230769,509.370494954349,53,10405,1,0,0,0,9 +"671",2009,17103,"IL","17","103",36189,0.93743955345547,1984,0.129127635469342,7.59287028784482,8.48135873840702,9.19329593736692,10.5692307692308,468.620784710098,102,21766,1,0,0,0,9 +"672",2009,17105,"IL","17","105",39054,0.938853894607467,2273,0.120192553899729,7.72885582385254,8.51278348292754,9.32384761276978,10.3615384615385,355.62494578888,82,23058,1,0,0,0,9 +"673",2009,17107,"IL","17","107",30342,0.909696130775822,2250,0.117922351855514,7.71868549519847,8.2728260036504,9.06981313683921,9.35384615384615,358.734645070116,66,18398,1,0,0,0,9 +"674",2009,17109,"IL","17","109",32611,0.922081506240226,6928,0.103891325013032,8.84332645024227,7.95752740223077,9.18070556684649,8.68461538461538,241.987258630056,49,20249,1,0,0,0,9 +"675",2009,17111,"IL","17","111",308067,0.953471160494308,15299,0.109589797024673,9.63554274576738,10.7935575047672,11.4301849548312,9.72307692307692,240.108401084011,443,184500,1,0,0,0,9 +"676",2009,17113,"IL","17","113",168727,0.871057981235961,21000,0.0998773166120419,9.95227771670556,9.95551058060328,10.8829408593679,7.28461538461538,251.273085117563,263,104667,1,0,0,0,9 +"677",2009,17115,"IL","17","115",110732,0.812601596647762,7017,0.131777625257378,8.85609105525229,9.47162713306843,10.4065934557869,11.5538461538462,410.181228360211,263,64118,1,0,0,0,9 +"678",2009,17117,"IL","17","117",47630,0.98467352508923,2734,0.129981104346,7.9135210172839,8.67573421954479,9.53148139817163,10.6923076923077,401.489159792686,110,27398,1,0,0,0,9 +"679",2009,17119,"IL","17","119",268978,0.901913911174892,19823,0.1171248206173,9.89459815869021,10.4550999702028,11.3112375856853,10.3230769230769,405.819010916841,655,161402,1,0,0,0,9 +"680",2009,17121,"IL","17","121",39465,0.943848980108957,2188,0.128012162675789,7.69074316354187,8.4368504387337,9.32634404773249,12.0230769230769,406.81643538399,90,22123,1,0,0,0,9 +"681",2009,17123,"IL","17","123",12671,0.988635466813985,576,0.141898824086497,6.35610766069589,7.29097477814298,8.16763571524637,10.5692307692308,465.707027942422,33,7086,1,0,0,0,9 +"682",2009,17125,"IL","17","125",14787,0.988706296070873,681,0.139852573206195,6.52356230614951,7.50988306115491,8.33447155460094,12.3692307692308,468.131076701476,39,8331,1,0,0,0,9 +"683",2009,17127,"IL","17","127",15435,0.924327826368643,754,0.124586977648202,6.62539236800796,7.57095858316901,8.3999849905107,9.04615384615385,402.854511970534,35,8688,1,0,0,0,9 +"684",2009,17129,"IL","17","129",12720,0.985849056603774,591,0.139858490566038,6.3818160174061,7.41276401742656,8.24038511551633,7.46153846153846,363.440570736304,27,7429,1,0,0,0,9 +"685",2009,17131,"IL","17","131",16438,0.990570629030296,727,0.137851320111936,6.58892647753352,7.63626960337937,8.44397712908498,10.4076923076923,331.267364821543,31,9358,1,0,0,0,9 +"686",2009,17133,"IL","17","133",32848,0.989131758402338,1603,0.117176083779834,7.37963215260955,8.43294163896865,9.18553525305721,7.87692307692308,293.345684730585,57,19431,1,0,0,0,9 +"687",2009,17135,"IL","17","135",30124,0.959832691541628,1701,0.122493692736688,7.43897159239586,8.28702502516506,8.98406692765304,11.9923076923077,500.562429696288,89,17780,1,0,0,0,9 +"688",2009,17137,"IL","17","137",35602,0.923712151002753,2508,0.129796078871973,7.82724090175281,8.34474275441755,9.22473625225991,8.15384615384615,353.491927008694,74,20934,1,0,0,0,9 +"689",2009,17139,"IL","17","139",14787,0.990599851220667,725,0.124095489281125,6.58617165485467,7.42595365707754,8.32069157104845,8.77692307692308,334.117064719713,27,8081,1,0,0,0,9 +"690",2009,17141,"IL","17","141",53621,0.978963465806307,2688,0.122507972622666,7.89655270164304,8.88889466937159,9.64069319559213,12.5538461538462,263.414634146341,81,30750,1,0,0,0,9 +"691",2009,17143,"IL","17","143",186930,0.771288717701814,13473,0.119595570534425,9.50844296175585,10.040114150068,10.938947026199,11.1153846153846,376.281538573402,414,110024,1,0,0,0,9 +"692",2009,17145,"IL","17","145",22374,0.899660320014302,1561,0.122597657995888,7.35308192051543,8.00736706798333,8.64874763115654,12.0846153846154,318.353446361146,43,13507,1,0,0,0,9 +"693",2009,17147,"IL","17","147",16774,0.988017169428878,729,0.130678430904972,6.59167373200866,7.65349490966125,8.48590890137647,8.09230769230769,259.443752594438,25,9636,1,0,0,0,9 +"694",2009,17149,"IL","17","149",16473,0.977174770837127,911,0.130152370545742,6.81454289725996,7.60290046220476,8.4013333053217,8.12307692307692,260.727865290603,24,9205,1,0,0,0,9 +"695",2009,17153,"IL","17","153",6164,0.651200519143413,356,0.13465282284231,5.87493073085203,6.47697236288968,7.46794233228585,11.2307692307692,410.557184750733,14,3410,1,0,0,0,9 +"696",2009,17157,"IL","17","157",33528,0.891105941302792,1987,0.12443330947268,7.59438124255182,8.43424627059531,9.03741453682259,9.32307692307692,395.676510326192,82,20724,1,0,0,0,9 +"697",2009,17159,"IL","17","159",16229,0.983547969683899,860,0.122681619323433,6.75693238924755,7.56216163122565,8.41913925094085,10.1384615384615,453.138815207781,41,9048,1,0,0,0,9 +"698",2009,17161,"IL","17","161",147552,0.874213836477987,9434,0.129594990240729,9.15207546384421,9.77372049447706,10.6762542743242,9.3,340.305348812983,294,86393,1,0,0,0,9 +"699",2009,17163,"IL","17","163",268489,0.667040362919896,17331,0.111416110157213,9.76025208444937,10.481083579936,11.3171052093049,10.9769230769231,431.132146723396,685,158884,1,0,0,0,9 +"700",2009,17165,"IL","17","165",24911,0.94283649793264,1355,0.12994259564048,7.2115567333138,8.01730750768858,8.85978949474541,9.99230769230769,570.397111913357,79,13850,1,0,0,0,9 +"701",2009,17167,"IL","17","167",196180,0.853608930573963,11598,0.128774594759914,9.35858794843639,10.134996020182,11.0156410767709,7.51538461538462,392.783662920202,462,117622,1,0,0,0,9 +"702",2009,17173,"IL","17","173",22386,0.991423210935406,1113,0.138077369784687,7.01481435127554,7.89170465933011,8.74129628222515,9.93846153846154,406.277383892297,51,12553,1,0,0,0,9 +"703",2009,17177,"IL","17","177",47792,0.889437562772012,2482,0.132595413458319,7.81681996576455,8.65277248565806,9.51569044208137,11.5153846153846,404.115996258185,108,26725,1,0,0,0,9 +"704",2009,17179,"IL","17","179",135054,0.975246938261732,7086,0.125298028936574,8.86587628542542,9.77582462104597,10.5798954090918,10.6307692307692,325.390595325517,257,78982,1,0,0,0,9 +"705",2009,17181,"IL","17","181",17909,0.976994807080239,1044,0.135462616561505,6.95081476844258,7.68202151082687,8.54071438645758,11.2923076923077,494.617398894385,51,10311,1,0,0,0,9 +"706",2009,17183,"IL","17","183",81710,0.848256027414025,4476,0.127475217231673,8.40648506943182,9.18615013317497,10.0360059322363,11.6384615384615,511.867994211788,237,46301,1,0,0,0,9 +"707",2009,17185,"IL","17","185",12040,0.980647840531562,622,0.129900332225914,6.43294009273918,7.2152399787301,8.12976444579417,10.4769230769231,354.505169867061,24,6770,1,0,0,0,9 +"708",2009,17187,"IL","17","187",17689,0.966024082763299,1379,0.12753688733111,7.2291138777933,7.60638738977265,8.51539156946961,7.53076923076923,429.484618457851,43,10012,1,0,0,0,9 +"709",2009,17189,"IL","17","189",14755,0.986174178244663,775,0.127685530328702,6.65286302935335,7.50273821075485,8.3197173868506,8.16923076923077,280.767430978007,24,8548,1,0,0,0,9 +"710",2009,17191,"IL","17","191",16788,0.98963545389564,812,0.130688587086014,6.69950034016168,7.60339933974067,8.43814998407578,10.0538461538462,441.382280116267,41,9289,1,0,0,0,9 +"711",2009,17193,"IL","17","193",14767,0.988623281641498,729,0.130425949752827,6.59167373200866,7.39510754656249,8.32603268595508,8.67692307692308,377.083079917285,31,8221,1,0,0,0,9 +"712",2009,17195,"IL","17","195",58667,0.969437673649582,3090,0.131317435696388,8.03592636989179,8.89178663585731,9.71093382517592,10.4384615384615,332.045399661917,110,33128,1,0,0,0,9 +"713",2009,17197,"IL","17","197",674970,0.829690208453709,35736,0.0986843859727099,10.483913863032,11.6066798897605,12.2050421147156,10.2384615384615,263.137391898786,1047,397891,1,0,0,0,9 +"714",2009,17199,"IL","17","199",66229,0.942547826480847,3940,0.126847755514956,8.27893600229198,9.05275045140141,9.86744578118886,9.33846153846154,463.710193938462,181,39033,1,0,0,0,9 +"715",2009,17201,"IL","17","201",295612,0.835845635495176,17370,0.119589191237162,9.76249985923515,10.5888041539809,11.384387299697,15.1538461538462,403.546598102178,700,173462,1,0,0,0,9 +"716",2009,17203,"IL","17","203",38675,0.98414996767938,2094,0.121628959276018,7.64683139143048,8.4848765899397,9.29422185595688,8.30769230769231,261.756061719324,57,21776,1,0,0,0,9 +"717",2009,20001,"KS","20","001",13407,0.958827478183039,794,0.124188856567465,6.67708346124714,7.2848209125686,8.21311069759668,7.86923076923077,574.712643678161,42,7308,0,0,0,0,9 +"718",2009,20003,"KS","20","003",8101,0.982471299839526,355,0.117886680656709,5.87211778947542,6.84054652928869,7.64396194900253,7.66923076923077,428.469412044751,18,4201,0,0,0,0,9 +"719",2009,20005,"KS","20","005",16965,0.927379899793693,1560,0.107751252578839,7.35244110024358,7.55851674304564,8.46800294722547,9.23076923076923,392.156862745098,37,9435,0,0,0,0,9 +"720",2009,20009,"KS","20","009",27526,0.967448957349415,1671,0.11828816391775,7.42117752859539,7.98036576511125,8.92585319042092,5.65384615384615,401.131058065365,61,15207,0,0,0,0,9 +"721",2009,20011,"KS","20","011",15157,0.950056079699149,938,0.126212311143366,6.84374994900622,7.31721240835984,8.30943074214033,7.00769230769231,446.373217606944,36,8065,0,0,0,0,9 +"722",2009,20013,"KS","20","013",9972,0.871540312876053,464,0.129562775772162,6.13988455222626,6.95844839329766,7.90137735379262,5.66153846153846,558.139534883721,30,5375,0,0,0,0,9 +"723",2009,20015,"KS","20","015",65617,0.957434811100782,3831,0.113674809881586,8.25088114470065,9.03836510723637,9.81230384711351,7.38461538461538,291.070284127323,109,37448,0,0,0,0,9 +"724",2009,20021,"KS","20","021",21658,0.933234832394496,1151,0.126281281743467,7.04838640872188,7.92624152317096,8.7168633865448,8.43846153846154,614.451908897264,75,12206,0,0,0,0,9 +"725",2009,20027,"KS","20","027",8500,0.984941176470588,373,0.136470588235294,5.92157841964382,6.89162589705225,7.72665366484764,4.48461538461538,456.62100456621,21,4599,0,0,0,0,9 +"726",2009,20029,"KS","20","029",9545,0.984808800419068,635,0.124882137244631,6.45362499889269,6.83733281468559,7.8046592970561,4.43846153846154,457.165573444643,23,5031,0,0,0,0,9 +"727",2009,20031,"KS","20","031",8566,0.980037356992762,360,0.139738501050665,5.88610403145016,6.91075078796194,7.77821147451249,5.83076923076923,229.885057471264,11,4785,0,0,0,0,9 +"728",2009,20035,"KS","20","035",36195,0.917115623704932,2502,0.120596767509324,7.82484569102686,8.34806422840827,9.19755903761145,6.97692307692308,459.236580909585,93,20251,0,0,0,0,9 +"729",2009,20037,"KS","20","037",38966,0.944541395062362,5073,0.105040291536211,8.53168763756669,8.33663008763715,9.33317728193525,8.58461538461538,389.796006756464,90,23089,0,0,0,0,9 +"730",2009,20041,"KS","20","041",19730,0.974404460212874,919,0.119260010136847,6.82328612235569,7.75662333453886,8.59433940059289,5.23076923076923,268.966796512706,29,10782,0,0,0,0,9 +"731",2009,20045,"KS","20","045",110039,0.877107207444633,20387,0.0927852852170594,9.92265272179714,9.3805049984995,10.471241563688,5.76153846153846,200.314382294434,144,71887,0,0,0,0,9 +"732",2009,20051,"KS","20","051",28353,0.968786371812507,4074,0.106655380383028,8.31238059678675,7.94732502701646,9.05251628678262,3.90769230769231,264.550264550265,46,17388,0,0,0,0,9 +"733",2009,20055,"KS","20","055",36300,0.921129476584022,2668,0.0914600550964187,7.88908440703551,8.45680604140114,9.22857314023724,4.40769230769231,287.973447871925,59,20488,0,0,0,0,9 +"734",2009,20057,"KS","20","057",33158,0.937028771337234,2314,0.0889679715302491,7.74673290775362,8.35514473946184,9.07840770071536,3.5,276.467718328183,51,18447,0,0,0,0,9 +"735",2009,20059,"KS","20","059",25870,0.964051024352532,1506,0.1126401236954,7.31721240835984,8.09132127353041,8.9095055129461,9.18461538461538,394.155623513422,58,14715,0,0,0,0,9 +"736",2009,20061,"KS","20","061",31537,0.717823508894315,3288,0.079050004756318,8.09803475617607,8.24538446812075,9.14195445910972,7.39230769230769,408.674803836094,75,18352,0,0,0,0,9 +"737",2009,20073,"KS","20","073",6724,0.977840571088638,280,0.144705532421178,5.63478960316925,6.59714570188665,7.49164547360513,6.69230769230769,520.690600164429,19,3649,0,0,0,0,9 +"738",2009,20079,"KS","20","079",34547,0.960054418618114,2004,0.117665788635772,7.60290046220476,8.25062008217469,9.15408743042538,7.06153846153846,329.191887012849,62,18834,0,0,0,0,9 +"739",2009,20085,"KS","20","085",13369,0.897972922432493,633,0.129553444535867,6.45047042214418,7.4713630881871,8.23827262463303,7,335.435395142895,25,7453,0,0,0,0,9 +"740",2009,20087,"KS","20","087",19037,0.978830698114199,816,0.137416609759941,6.70441435496411,7.79564653633459,8.60502090178176,7.60769230769231,335.175287616632,37,11039,0,0,0,0,9 +"741",2009,20091,"KS","20","091",539396,0.900596222441397,28073,0.113565914467293,10.2425635393131,11.2717324985847,12.0328614629642,6.56923076923077,200.41850307481,658,328313,0,0,0,0,9 +"742",2009,20095,"KS","20","095",7885,0.986049461001902,374,0.125301204819277,5.92425579741453,6.70808408385307,7.6314316645769,5.62307692307692,431.137724550898,18,4175,0,0,0,0,9 +"743",2009,20099,"KS","20","099",21759,0.910152120961441,1256,0.127211728480169,7.13568734702814,7.84502441724148,8.70847448958166,8.60769230769231,402.034788316377,49,12188,0,0,0,0,9 +"744",2009,20103,"KS","20","103",75461,0.866646347119704,4205,0.117067094260611,8.34402957240705,9.34583234141334,9.93953014388306,8.06153846153846,322.525156962243,150,46508,0,0,0,0,9 +"745",2009,20107,"KS","20","107",9669,0.983245423518461,376,0.14820560554349,5.9295891433899,7.01571242048723,7.88231491898027,11.2076923076923,578.142484147706,31,5362,0,0,0,0,9 +"746",2009,20111,"KS","20","111",33777,0.93095893655446,4139,0.107232732332652,8.32820949174873,8.20056279700856,9.21751457572418,6.16153846153846,338.291627282225,68,20101,0,0,0,0,9 +"747",2009,20113,"KS","20","113",29222,0.972657586749709,1810,0.122578878926836,7.50108212425987,8.04076899436758,8.98419231164167,4.96923076923077,334.448160535117,54,16146,0,0,0,0,9 +"748",2009,20115,"KS","20","115",12654,0.980006322111585,771,0.130472577840999,6.64768837356333,7.13727843726039,8.09833884618906,5.53846153846154,297.176820208024,20,6730,0,0,0,0,9 +"749",2009,20117,"KS","20","117",10121,0.987847050686691,435,0.12844580575042,6.07534603108868,6.92165818415113,7.8808043446749,5.60769230769231,366.837857666911,20,5452,0,0,0,0,9 +"750",2009,20121,"KS","20","121",32445,0.970781322237633,1375,0.117860995530898,7.22620901010067,8.42485858021344,9.14931567013841,8.22307692307692,335.749307183969,63,18764,0,0,0,0,9 +"751",2009,20125,"KS","20","125",35589,0.87819269999157,2177,0.122032088566692,7.68570306123455,8.27868216297091,9.19776158976932,9.86923076923077,503.996334572112,99,19643,0,0,0,0,9 +"752",2009,20133,"KS","20","133",16568,0.965113471752776,960,0.122827136648962,6.86693328446188,7.5137092478397,8.4071550862073,8.46153846153846,453.841044941333,41,9034,0,0,0,0,9 +"753",2009,20139,"KS","20","139",16297,0.983371172608456,695,0.131496594465239,6.54391184556479,7.53422832627409,8.42332197580617,7.8,560.624381664285,51,9097,0,0,0,0,9 +"754",2009,20143,"KS","20","143",6114,0.982662741249591,217,0.130356558717697,5.37989735354046,6.61873898351722,7.40610338123702,5.59230769230769,383.480825958702,13,3390,0,0,0,0,9 +"755",2009,20145,"KS","20","145",6927,0.930561570665512,348,0.140031759780569,5.85220247977447,6.64768837356333,7.42356844425917,3.84615384615385,397.713149391002,16,4023,0,0,0,0,9 +"756",2009,20149,"KS","20","149",21206,0.964161086484957,1079,0.108365556917853,6.98378996525813,7.85670679309584,8.68169016329764,5.71538461538462,296.786229118969,35,11793,0,0,0,0,9 +"757",2009,20155,"KS","20","155",64196,0.946756807277712,3897,0.125662035017758,8.26796230533871,8.88072457615146,9.76531684347746,5.85384615384615,400.187674219634,145,36233,0,0,0,0,9 +"758",2009,20159,"KS","20","159",10047,0.967950632029462,796,0.116950333432866,6.67959918584438,6.94022246911964,7.88870952418201,5.04615384615385,404.040404040404,22,5445,0,0,0,0,9 +"759",2009,20161,"KS","20","161",69995,0.869590685048932,18381,0.0689906421887278,9.81907280139376,8.65799806800726,9.97710969240674,4.48461538461538,179.339253689419,83,46281,0,0,0,0,9 +"760",2009,20169,"KS","20","169",55164,0.923772750344428,3669,0.119353201363208,8.20767442435528,8.81150325015824,9.67092477930543,5.52307692307692,309.752510872626,99,31961,0,0,0,0,9 +"761",2009,20173,"KS","20","173",495006,0.832222235690072,34524,0.108006771635091,10.4494100133395,11.0359697257119,11.8900939739233,8.43076923076923,376.247566771906,1094,290766,0,0,0,0,9 +"762",2009,20175,"KS","20","175",22729,0.908970918210216,1870,0.0813938140701307,7.53369370984863,8.00001409367807,8.70251025718999,4.88461538461539,365.195300095268,46,12596,0,0,0,0,9 +"763",2009,20177,"KS","20","177",176786,0.864220017422194,11045,0.127198986345073,9.30973311585422,9.95698092497613,10.8826216195316,6.56923076923077,405.563675432908,419,103313,0,0,0,0,9 +"764",2009,20181,"KS","20","181",6004,0.977514990006662,369,0.128580946035976,5.91079664404053,6.42162226780652,7.41577697541539,4.00769230769231,567.333532397731,19,3349,0,0,0,0,9 +"765",2009,20191,"KS","20","191",24160,0.968046357615894,1227,0.123427152317881,7.11232744471091,7.91278922069068,8.80492526261806,8.70769230769231,405.246094901267,55,13572,0,0,0,0,9 +"766",2009,20205,"KS","20","205",9485,0.977543489720611,432,0.136742224565103,6.06842558824411,6.90875477931522,7.86288203464149,10.8230769230769,522.344747533372,27,5169,0,0,0,0,9 +"767",2009,20209,"KS","20","209",156416,0.678856382978723,10709,0.101588072831424,9.27883978840087,9.89131375160442,10.7313622850367,10.7076923076923,467.095019846056,426,91202,0,0,0,0,9 +"768",2009,21001,"KY","21","001",18729,0.965027497463826,1401,0.125100112125581,7.24494154633701,7.7596141506969,8.60116662519242,11.2076923076923,618.366405168436,67,10835,1,0,0,0,9 +"769",2009,21003,"KY","21","003",19811,0.983796880520923,1128,0.128211599616375,7.028201432058,7.91132401896335,8.67299964255444,14.9846153846154,581.244035742171,67,11527,1,0,0,0,9 +"770",2009,21005,"KY","21","005",21328,0.968960990247562,1047,0.122983870967742,6.95368421087054,8.09833884618906,8.79618763547045,10.8307692307692,326.441784548422,42,12866,1,0,0,0,9 +"771",2009,21007,"KY","21","007",8204,0.962457337883959,397,0.13846903949293,5.98393628068719,7.02642680869964,7.77233157516961,10.3692307692308,522.356874216465,25,4786,1,0,0,0,9 +"772",2009,21009,"KY","21","009",42171,0.946290104574233,2221,0.120793910507221,7.70571282389443,8.64839687703158,9.42512911890764,12.8307692307692,420.579828501429,103,24490,1,0,0,0,9 +"773",2009,21011,"KY","21","011",11544,0.978516978516978,556,0.128898128898129,6.32076829425058,7.36518012602101,8.12592680270789,16.0307692307692,582.17644424541,39,6699,1,0,0,0,9 +"774",2009,21013,"KY","21","013",28667,0.96836083301357,1737,0.136498412809153,7.4599147662411,8.25919936266628,9.07577987858049,12.4846153846154,762.7365356623,131,17175,1,0,0,0,9 +"775",2009,21015,"KY","21","015",117461,0.943334383327232,6296,0.106111815836746,8.74766979009724,9.82827897493837,10.4835780108038,9.34615384615385,325.576128192062,230,70644,1,0,0,0,9 +"776",2009,21017,"KY","21","017",20027,0.925001248314775,1039,0.130773455834623,6.94601399109923,7.93844555116479,8.69148257651293,10.0692307692308,647.028775753448,76,11746,1,0,0,0,9 +"777",2009,21019,"KY","21","019",49362,0.960617479032454,2525,0.133766865199951,7.83399634170946,8.80612448326845,9.57796514710117,8.77692307692308,565.277730765325,167,29543,1,0,0,0,9 +"778",2009,21021,"KY","21","021",28297,0.903275965650069,2056,0.129660388026999,7.62851762657506,8.23880116587155,9.01444713515213,11.8,427.917068466731,71,16592,1,0,0,0,9 +"779",2009,21023,"KY","21","023",8473,0.990558243833353,466,0.122506786262245,6.14418563412565,7.05098944706805,7.80547462527086,11.7,586.925723537745,29,4941,1,0,0,0,9 +"780",2009,21025,"KY","21","025",14009,0.988507388107645,778,0.134913270040688,6.65672652417839,7.56423847517049,8.34735341212434,10.6307692307692,801.414260459635,68,8485,1,0,0,0,9 +"781",2009,21027,"KY","21","027",19979,0.969768256669503,1000,0.141949046498824,6.90775527898214,7.82404601085629,8.66077391989376,12.2692307692308,449.205252246026,52,11576,1,0,0,0,9 +"782",2009,21029,"KY","21","029",73743,0.981123632073553,3967,0.121936997409924,8.28576542051433,9.32215004702819,10.0335943378813,11.2230769230769,338.428189077396,153,45209,1,0,0,0,9 +"783",2009,21031,"KY","21","031",12670,0.989265982636148,752,0.125414364640884,6.62273632394984,7.4079243225596,8.22443157322116,14.8615384615385,440.117364630568,33,7498,1,0,0,0,9 +"784",2009,21033,"KY","21","033",12996,0.939212065250846,631,0.146275777162204,6.44730586254121,7.44366368311559,8.24774388722552,10.4153846153846,719.041278295606,54,7510,1,0,0,0,9 +"785",2009,21035,"KY","21","035",36886,0.937293282004012,5707,0.113132353738546,8.64944877053671,8.26075135470051,9.34469642447526,8.67692307692308,412.581518122532,93,22541,1,0,0,0,9 +"786",2009,21037,"KY","21","037",89664,0.960173536759457,6899,0.114995985010707,8.83913175254611,9.3573801146255,10.2204128434576,10.3692307692308,354.869393429429,194,54668,1,0,0,0,9 +"787",2009,21039,"KY","21","039",5113,0.981811069822022,272,0.135341286915705,5.605802066296,6.4150969591716,7.25700270709207,9.20769230769231,521.014241055922,15,2879,1,0,0,0,9 +"788",2009,21041,"KY","21","041",10852,0.968945816439366,623,0.120715075562108,6.43454651878745,7.31388683163346,8.04654935728308,13.5923076923077,646.551724137931,42,6496,1,0,0,0,9 +"789",2009,21043,"KY","21","043",27785,0.98945474176714,1717,0.127298902285406,7.44833386089748,8.20549161312024,9.00908061416198,12.9692307692308,583.394743306313,95,16284,1,0,0,0,9 +"790",2009,21045,"KY","21","045",15946,0.987959362849617,856,0.136774112630127,6.75227037614174,7.64873978895624,8.45871626165726,11.0307692307692,646.482060122832,60,9281,1,0,0,0,9 +"791",2009,21047,"KY","21","047",73457,0.745075350204882,8073,0.0859414351253114,8.99628043939502,9.04840950482996,9.94054246048714,12.8153846153846,399.066511085181,171,42850,1,0,0,0,9 +"792",2009,21049,"KY","21","049",35607,0.940433060914989,1902,0.130142949420058,7.55066124310534,8.53522955390234,9.30446803470088,11.4615384615385,527.815404736326,113,21409,1,0,0,0,9 +"793",2009,21051,"KY","21","051",21950,0.952892938496583,1343,0.120182232346241,7.20266119652324,8.13094230223188,8.71915396346254,14.2153846153846,651.23010130246,90,13820,1,0,0,0,9 +"794",2009,21053,"KY","21","053",10227,0.98797301261367,502,0.134936931651511,6.21860011969173,7.20711885620776,7.98241634682773,9.83846153846154,524.268560798241,31,5913,1,0,0,0,9 +"795",2009,21055,"KY","21","055",9301,0.983442640576282,469,0.140630039780669,6.15060276844628,7.02197642307216,7.87169266432365,11.0153846153846,449.690837549185,24,5337,1,0,0,0,9 +"796",2009,21057,"KY","21","057",6855,0.965280816921955,334,0.133916849015317,5.8111409929767,6.76734312526539,7.55851674304564,13.3846153846154,843.659372528342,32,3793,1,0,0,0,9 +"797",2009,21059,"KY","21","059",96261,0.93508274379032,5807,0.121627658137771,8.66681936537205,9.4081250888235,10.2581154026072,9.68461538461538,383.216882931698,215,56104,1,0,0,0,9 +"798",2009,21061,"KY","21","061",12122,0.979541329813562,693,0.138508496947698,6.5410299991899,7.32251043399739,8.17723488551019,14.2,480.973263545056,34,7069,1,0,0,0,9 +"799",2009,21063,"KY","21","063",7727,0.963892843276822,452,0.131357577326259,6.11368217983223,7.0343879299155,7.5999019592085,13.9615384615385,411.861614497529,20,4856,1,0,0,0,9 +"800",2009,21065,"KY","21","065",14672,0.993320610687023,697,0.135155398037077,6.54678541076052,7.63482067774554,8.38867776918081,12.9923076923077,515.995872033024,45,8721,1,0,0,0,9 +"801",2009,21067,"KY","21","067",292514,0.805677676965889,30858,0.104993265279611,10.337151315003,10.5699570265097,11.457993981444,8.13076923076923,294.662222927578,557,189030,1,0,0,0,9 +"802",2009,21069,"KY","21","069",14280,0.980952380952381,749,0.130812324929972,6.61873898351722,7.60936653795421,8.34283980427146,12.8307692307692,681.981335247667,57,8358,1,0,0,0,9 +"803",2009,21071,"KY","21","071",39643,0.987992836061852,2285,0.137830133945463,7.7341213033283,8.59655874679698,9.43172237267073,11.3615384615385,740.436034553682,180,24310,1,0,0,0,9 +"804",2009,21073,"KY","21","073",49253,0.871236269871886,3206,0.135484132946216,8.0727793331695,8.80357441813497,9.64134326387219,9.27692307692308,436.984804846559,132,30207,1,0,0,0,9 +"805",2009,21075,"KY","21","075",6793,0.746503753864272,433,0.139408214338289,6.07073772800249,6.7093043402583,7.58120982619635,13.2230769230769,701.930308347957,28,3989,1,0,0,0,9 +"806",2009,21077,"KY","21","077",8533,0.978553849759756,456,0.1161373491152,6.12249280951439,7.11069612297883,7.81963630236759,12.6076923076923,515.055467511886,26,5048,1,0,0,0,9 +"807",2009,21079,"KY","21","079",16900,0.973076923076923,814,0.129171597633136,6.70196036600254,7.78113850984502,8.53954159508,12.2692307692308,383.971645170818,39,10157,1,0,0,0,9 +"808",2009,21081,"KY","21","081",24697,0.983277321132121,1434,0.105518888933879,7.26822302115957,8.17131687471973,8.8879288190033,11.9923076923077,456.652598076524,66,14453,1,0,0,0,9 +"809",2009,21083,"KY","21","083",36932,0.943030434311708,2010,0.127396295895159,7.60589000105312,8.44762872803033,9.26046298137939,10.3846153846154,438.70106337323,92,20971,1,0,0,0,9 +"810",2009,21085,"KY","21","085",25619,0.983254615714899,1305,0.132128498380109,7.17395831975679,8.1199938277251,8.8967249174979,15.2923076923077,588.313945714668,88,14958,1,0,0,0,9 +"811",2009,21087,"KY","21","087",11359,0.972972972972973,527,0.13522317105379,6.26720054854136,7.29844510150815,8.10802122137675,12.2846153846154,350.289369479135,23,6566,1,0,0,0,9 +"812",2009,21089,"KY","21","089",37053,0.983483118775808,1789,0.136264270099587,7.48941208350872,8.50004703258127,9.31109027507633,9.69230769230769,530.380571322229,114,21494,1,0,0,0,9 +"813",2009,21091,"KY","21","091",8558,0.983641037625614,376,0.133559242813742,5.9295891433899,7.04490511712937,7.79069603117474,12.1846153846154,488.599348534202,24,4912,1,0,0,0,9 +"814",2009,21093,"KY","21","093",101254,0.839077962352105,7258,0.107561182768088,8.88985958777302,9.53191649607552,10.3260391843678,10.7230769230769,428.910534501105,262,61085,1,0,0,0,9 +"815",2009,21095,"KY","21","095",29534,0.969729802938986,1715,0.145120877632559,7.44716835960004,8.26770566476243,9.1099673978294,11.3230769230769,744.626840412929,132,17727,1,0,0,0,9 +"816",2009,21097,"KY","21","097",18894,0.971366571398327,912,0.12517201227903,6.81563999007433,7.8898337513943,8.61848544289811,11.8461538461538,438.716753496024,48,10941,1,0,0,0,9 +"817",2009,21099,"KY","21","099",18197,0.940484695279442,970,0.127383634665055,6.87729607149743,7.76429600645052,8.56769617358934,10.7769230769231,421.254188606989,44,10445,1,0,0,0,9 +"818",2009,21101,"KY","21","101",46037,0.908834198579404,2544,0.128027456176554,7.84149292446001,8.70781355102489,9.55986984775404,11.0923076923077,514.157433557825,142,27618,1,0,0,0,9 +"819",2009,21103,"KY","21","103",15530,0.962009014810045,733,0.13386992916935,6.59714570188665,7.65633716643018,8.43163530305459,10.9384615384615,518.077601410935,47,9072,1,0,0,0,9 +"820",2009,21105,"KY","21","105",4945,0.895652173913044,239,0.136299292214358,5.47646355193151,6.42324696353352,7.26052259808985,9.20769230769231,858.369098712446,24,2796,1,0,0,0,9 +"821",2009,21107,"KY","21","107",46921,0.920184991794719,2515,0.131412373990324,7.83002808253384,8.7160440501614,9.55258164991731,9.62307692307692,501.968148495901,139,27691,1,0,0,0,9 +"822",2009,21109,"KY","21","109",13463,0.99554334100869,704,0.127757557750873,6.55677835615804,7.55799495853081,8.31581113188354,17.0692307692308,558.659217877095,45,8055,1,0,0,0,9 +"823",2009,21111,"KY","21","111",736705,0.755689183594519,48205,0.119768428339702,10.7832180290985,11.4829609804508,12.3437803053981,10.5769230769231,430.134860323237,1929,448464,1,0,0,0,9 +"824",2009,21113,"KY","21","113",48153,0.950948019853384,3259,0.109733557618425,8.08917567883756,8.80881748310064,9.60575514423085,9.46153846153846,368.529012968049,106,28763,1,0,0,0,9 +"825",2009,21115,"KY","21","115",23220,0.990697674418605,1327,0.140697674418605,7.19067603433221,8.09040229659332,8.8816974064693,10.7153846153846,705.76610911144,100,14169,1,0,0,0,9 +"826",2009,21117,"KY","21","117",159239,0.9343753728672,10163,0.112811559982165,9.22650895313777,9.98883921963563,10.7983912025286,10.2769230769231,394.582162024023,386,97825,1,0,0,0,9 +"827",2009,21119,"KY","21","119",16543,0.99014688992323,1046,0.137520401378226,6.95272864462487,7.74370325817375,8.53346016388011,11.0153846153846,576.904273002836,59,10227,1,0,0,0,9 +"828",2009,21121,"KY","21","121",31920,0.982644110275689,2065,0.12327694235589,7.63288550539513,8.36100710822691,9.1586259362895,12.0615384615385,636.496035384864,118,18539,1,0,0,0,9 +"829",2009,21123,"KY","21","123",14172,0.960697149308496,784,0.124047417442845,6.66440902035041,7.49942329059223,8.31188955823036,12.3076923076923,460.271317829457,38,8256,1,0,0,0,9 +"830",2009,21125,"KY","21","125",58513,0.981662194725958,3333,0.123305932015108,8.11162807830774,9.01796847932873,9.7935052617999,10.6307692307692,470.348227693877,166,35293,1,0,0,0,9 +"831",2009,21127,"KY","21","127",15889,0.992888161621247,870,0.13436968972245,6.76849321164863,7.65491704784832,8.48032171664033,12.3384615384615,655.52971029816,62,9458,1,0,0,0,9 +"832",2009,21129,"KY","21","129",7885,0.970323398858592,496,0.137349397590361,6.20657592672493,7.06561336359772,7.6685611080159,12.1923076923077,784.62142016477,40,5098,1,0,0,0,9 +"833",2009,21131,"KY","21","131",11361,0.99445471349353,679,0.129390018484288,6.5206211275587,7.35627987655075,8.15507488781144,12.9538461538462,700.400228702115,49,6996,1,0,0,0,9 +"834",2009,21133,"KY","21","133",24364,0.992858315547529,1348,0.143941881464456,7.20637729147225,8.06274790108635,8.92119055624937,11.1307692307692,627.419570150848,94,14982,1,0,0,0,9 +"835",2009,21135,"KY","21","135",13915,0.993316564858067,743,0.127919511318721,6.61069604471776,7.55276208421415,8.32482129876878,15.7769230769231,487.626478117762,40,8203,1,0,0,0,9 +"836",2009,21137,"KY","21","137",24776,0.969769131417501,1256,0.1222554084598,7.13568734702814,8.16365617616843,8.88516409509682,13.0846153846154,523.706445080651,75,14321,1,0,0,0,9 +"837",2009,21139,"KY","21","139",9476,0.989658083579569,447,0.156078514140988,6.10255859461357,7.0833878476253,7.9561263512135,10.3,463.045414069457,26,5615,1,0,0,0,9 +"838",2009,21141,"KY","21","141",26872,0.920660910985412,1355,0.127083953557606,7.2115567333138,8.13973227971767,8.96469555531546,11.3461538461538,554.731342320841,86,15503,1,0,0,0,9 +"839",2009,21143,"KY","21","143",8332,0.939030244839174,368,0.161185789726356,5.90808293816893,7.00760061395185,7.63385355968177,12.8153846153846,487.614589428516,25,5127,1,0,0,0,9 +"840",2009,21145,"KY","21","145",65654,0.870640021933165,3330,0.13543729247266,8.11072758297449,9.02220192986066,9.88761220337784,9.14615384615385,491.675338189386,189,38440,1,0,0,0,9 +"841",2009,21147,"KY","21","147",18207,0.933926511781183,1072,0.122535288625254,6.97728134163075,7.9483852851119,8.49943646982698,14.5692307692308,568.990042674253,64,11248,1,0,0,0,9 +"842",2009,21149,"KY","21","149",9566,0.987664645619904,470,0.129312147187957,6.1527326947041,7.17165682276851,7.91753635394363,10.9153846153846,512.820512820513,28,5460,1,0,0,0,9 +"843",2009,21151,"KY","21","151",82299,0.936317573725076,9598,0.107692681563567,9.16931002241819,9.27921323626256,10.1659671949627,9.51538461538462,348.227560842006,178,51116,1,0,0,0,9 +"844",2009,21153,"KY","21","153",13335,0.994675665541807,725,0.122909636295463,6.58617165485467,7.55276208421415,8.29529885950246,19.1307692307692,511.796280114842,41,8011,1,0,0,0,9 +"845",2009,21155,"KY","21","155",19769,0.902473569730386,1080,0.115989680813395,6.98471632011827,7.9043348420851,8.59877317840866,13.7538461538462,616.710315113627,73,11837,1,0,0,0,9 +"846",2009,21157,"KY","21","157",31411,0.992709560345102,1461,0.141574607621534,7.2868764117507,8.30251371851416,9.11537013438496,11.0153846153846,602.87610619469,109,18080,1,0,0,0,9 +"847",2009,21159,"KY","21","159",13040,0.925076687116564,801,0.118251533742331,6.68586094706836,7.60539236481493,8.16961956172385,11.7923076923077,745.738636363636,63,8448,1,0,0,0,9 +"848",2009,21161,"KY","21","161",17464,0.920865781035273,967,0.125801649106734,6.87419849545329,7.7944112057266,8.54616929965275,11.2769230769231,475.671390347835,48,10091,1,0,0,0,9 +"849",2009,21163,"KY","21","163",28403,0.945111431890997,1821,0.107840721050593,7.50714107972761,8.2960476427647,9.04404963225476,13.4,440.244188776708,75,17036,1,0,0,0,9 +"850",2009,21165,"KY","21","165",6317,0.976729460186798,376,0.141047965806554,5.9295891433899,6.67959918584438,7.49720722320332,17.0769230769231,1050.59441526127,38,3617,1,0,0,0,9 +"851",2009,21167,"KY","21","167",21286,0.950718782298224,995,0.136615615897773,6.90274273715859,7.9665866976384,8.7533714210009,11.8076923076923,601.443464314354,75,12470,1,0,0,0,9 +"852",2009,21169,"KY","21","169",10067,0.980629780470845,554,0.125956094169067,6.31716468674728,7.19893124068817,7.9820748750812,16.2461538461538,639.474593847217,37,5786,1,0,0,0,9 +"853",2009,21171,"KY","21","171",10969,0.97310602607348,524,0.132737715379706,6.26149168432104,7.25347038268453,8.05006542291597,14.4230769230769,620.031796502385,39,6290,1,0,0,0,9 +"854",2009,21173,"KY","21","173",26407,0.962434203052221,1448,0.123641458704131,7.27793857294566,8.25322764558177,9.00183909739884,12.9076923076923,458.7732528909,73,15912,1,0,0,0,9 +"855",2009,21175,"KY","21","175",13928,0.948879954049397,870,0.122774267662263,6.76849321164863,7.629489916394,8.18535022317869,14.1923076923077,659.660107334526,59,8944,1,0,0,0,9 +"856",2009,21177,"KY","21","177",31505,0.947976511664815,1867,0.131153785113474,7.53208814354172,8.35161075062656,9.10908253990196,11.2384615384615,650.319829424307,122,18760,1,0,0,0,9 +"857",2009,21179,"KY","21","179",42974,0.938404616745009,2284,0.119514124819658,7.7336835707759,8.7157161275482,9.47231994707559,12.8538461538462,428.015564202335,110,25700,1,0,0,0,9 +"858",2009,21181,"KY","21","181",7125,0.990175438596491,337,0.128280701754386,5.82008293035236,6.9177056098353,7.63916117165917,12.6769230769231,725.864989112025,30,4133,1,0,0,0,9 +"859",2009,21183,"KY","21","183",23888,0.984678499665104,1328,0.124916275954454,7.19142933003638,8.021256180144,8.83331693749932,10.1230769230769,482.738443534231,66,13672,1,0,0,0,9 +"860",2009,21185,"KY","21","185",59777,0.933753784900547,2486,0.120681867607943,7.81843027207066,9.22788555119193,9.72280465241068,8.70769230769231,317.434255534576,116,36543,1,0,0,0,9 +"861",2009,21187,"KY","21","187",10909,0.985516545971216,525,0.130901090842424,6.26339826259162,7.27031288607902,8.06557942728209,10.2,485.512920908379,31,6385,1,0,0,0,9 +"862",2009,21189,"KY","21","189",4713,0.991725015913431,267,0.133248461701676,5.58724865840025,6.41673228251233,7.22183582528845,10.9230769230769,797.679477882524,22,2758,1,0,0,0,9 +"863",2009,21191,"KY","21","191",14786,0.990802110104153,849,0.12193967266333,6.74405918631135,7.67461749736436,8.37170488466763,12.8384615384615,573.484763296975,51,8893,1,0,0,0,9 +"864",2009,21193,"KY","21","193",28713,0.976317347542925,1732,0.13429457040365,7.45703208912238,8.33254893925264,9.11173476822206,11.1307692307692,928.619377936899,166,17876,1,0,0,0,9 +"865",2009,21195,"KY","21","195",65255,0.987280668148035,3574,0.137537353459505,8.18144069571937,9.11613957657736,9.92122923401229,10.0461538461538,594.187405215921,239,40223,1,0,0,0,9 +"866",2009,21197,"KY","21","197",12644,0.988532110091743,694,0.127570389117368,6.5424719605068,7.45645455517621,8.22684089040858,16.1769230769231,676.213206046142,51,7542,1,0,0,0,9 +"867",2009,21199,"KY","21","199",62711,0.978568353239464,3253,0.134458069557175,8.08733292647335,9.03895875522056,9.84108009240751,10.8,484.525138144105,178,36737,1,0,0,0,9 +"868",2009,21203,"KY","21","203",17074,0.994494553121706,938,0.125043926437859,6.84374994900622,7.79811262882979,8.54286093816481,13.7923076923077,700.750098697197,71,10132,1,0,0,0,9 +"869",2009,21205,"KY","21","205",23340,0.972193658954584,3435,0.101756640959726,8.14177220465645,7.90470391387375,8.88253050843362,9.5,324.400564174894,46,14180,1,0,0,0,9 +"870",2009,21207,"KY","21","207",17632,0.987068965517241,956,0.13543557168784,6.8627579130514,7.77863014732581,8.55275336681479,12.5,639.720849084036,66,10317,1,0,0,0,9 +"871",2009,21209,"KY","21","209",46325,0.929260658391797,2856,0.104565569347005,7.95717732345947,8.8961774222748,9.57157490517093,10.0538461538462,269.522661181644,76,28198,1,0,0,0,9 +"872",2009,21211,"KY","21","211",41576,0.903213392341736,2281,0.12665961131422,7.73236922228439,8.72388210465849,9.49341183187028,9.78461538461539,277.238702522872,70,25249,1,0,0,0,9 +"873",2009,21213,"KY","21","213",17227,0.889243629186742,1018,0.12410750565972,6.92559519711047,7.75061473277041,8.54655780004614,13.4461538461538,413.833875258646,42,10149,1,0,0,0,9 +"874",2009,21215,"KY","21","215",16971,0.974014495315538,728,0.120263979730128,6.59030104819669,7.9391588179568,8.56178407474411,10.7384615384615,344.695518958254,36,10444,1,0,0,0,9 +"875",2009,21217,"KY","21","217",24367,0.93831821726105,1899,0.125169286329872,7.54908271081229,7.97968130238774,8.88405606174246,10.9153846153846,503.796210884836,71,14093,1,0,0,0,9 +"876",2009,21219,"KY","21","219",12485,0.911734080897077,757,0.10957148578294,6.62936325343745,7.40488757561612,8.16735198705607,12.4538461538462,470.554684157992,33,7013,1,0,0,0,9 +"877",2009,21221,"KY","21","221",14222,0.905639150611728,636,0.153283645056954,6.45519856334012,7.50878717063428,8.31458729131958,16.0615384615385,635.039223010833,51,8031,1,0,0,0,9 +"878",2009,21223,"KY","21","223",8855,0.9828345567476,451,0.128853754940711,6.11146733950268,7.17930796950403,7.86211221166275,12.2076923076923,547.376368440921,29,5298,1,0,0,0,9 +"879",2009,21225,"KY","21","225",15004,0.868701679552119,1360,0.125899760063983,7.2152399787301,7.43248380791712,8.33950090300594,11.8307692307692,689.417442261289,60,8703,1,0,0,0,9 +"880",2009,21227,"KY","21","227",112375,0.868565072302558,12937,0.104827586206897,9.4678467019179,9.55037767476189,10.4621314397576,10.3307692307692,359.644688380155,249,69235,1,0,0,0,9 +"881",2009,21229,"KY","21","229",11550,0.925367965367965,675,0.124329004329004,6.51471269087253,7.33432935030054,8.10167774745457,13.5,359.658324591638,24,6673,1,0,0,0,9 +"882",2009,21231,"KY","21","231",20793,0.975328235463858,1127,0.139325734622229,7.02731451403978,7.91425227874244,8.71193726820875,14.3153846153846,458.452722063037,56,12215,1,0,0,0,9 +"883",2009,21233,"KY","21","233",13681,0.945398728163146,805,0.13266574080842,6.69084227741856,7.49609734517596,8.27384693278451,10.0153846153846,485.074626865672,39,8040,1,0,0,0,9 +"884",2009,21235,"KY","21","235",35994,0.985469800522309,2629,0.12288159137634,7.87435882472988,8.454679286027,9.27265767804104,11.7461538461538,604.75161987041,126,20835,1,0,0,0,9 +"885",2009,21237,"KY","21","237",7351,0.994422527547272,338,0.134131410692423,5.82304589548302,6.79234442747081,7.69074316354187,14.0076923076923,989.865661088852,42,4243,1,0,0,0,9 +"886",2009,21239,"KY","21","239",24702,0.93389199255121,1252,0.144117885191482,7.13249755166004,8.11372608597075,8.95195816856926,8.58461538461538,474.09188034188,71,14976,1,0,0,0,9 +"887",2009,25001,"MA","25","001",215994,0.95365612007741,9522,0.162462846190172,9.16136018975446,10.0763057618983,11.0380138110519,8.46153846153846,363.10941586022,436,120074,1,0,0,0,9 +"888",2009,25003,"MA","25","003",131264,0.948432167235495,8175,0.144258898098489,9.00883599576545,9.67054615874181,10.5779869387236,7.7,341.332364278205,263,77051,1,0,0,0,9 +"889",2009,25005,"MA","25","005",547324,0.92616621964321,35665,0.11985588061185,10.4819250947121,11.2778737925816,12.0367541809109,10.6461538461538,329.855389704037,1091,330751,1,0,0,0,9 +"890",2009,25007,"MA","25","007",16373,0.928846271300311,741,0.171868319794784,6.60800062529609,7.70391020961631,8.54772239645106,6.77692307692308,193.404893143797,20,10341,1,0,0,0,9 +"891",2009,25009,"MA","25","009",739086,0.895956627510195,44447,0.124670200761481,10.7020527471008,11.5404044359585,12.3422324558365,8.65384615384615,285.463279349758,1264,442789,1,0,0,0,9 +"892",2009,25011,"MA","25","011",71392,0.964519834155087,4194,0.162371134020619,8.34141021146186,9.11239672764606,10.032364379457,7.58461538461538,281.828755480004,126,44708,1,0,0,0,9 +"893",2009,25013,"MA","25","013",462777,0.857328691788918,32805,0.119683994666978,10.398336221779,10.9977068728995,11.8503258421643,9.3,362.145138330592,982,271162,1,0,0,0,9 +"894",2009,25015,"MA","25","015",157910,0.915559495915395,21933,0.127648660629472,9.99574763096143,9.80134407886742,10.8636994714682,6.43846153846154,252.878890153843,251,99257,1,0,0,0,9 +"895",2009,25017,"MA","25","017",1494764,0.846858768340688,101167,0.115437620922099,11.5245278957011,12.2847729140738,13.075259191175,6.86923076923077,219.246096278468,2056,937759,1,0,0,0,9 +"896",2009,25021,"MA","25","021",666301,0.847327259001562,38627,0.122713308249575,10.5617067927948,11.4686391432588,12.2489549162232,7.3,241.064955957855,971,402796,1,0,0,0,9 +"897",2009,25023,"MA","25","023",492738,0.887262602031911,26681,0.130771322690761,10.1917069805865,11.179562389893,11.917923797489,8.45384615384615,298.643121469844,874,292657,1,0,0,0,9 +"898",2009,25025,"MA","25","025",716214,0.644625768275962,93997,0.0913372260246239,11.4510181458492,11.4438540189678,12.4151781225405,7.69230769230769,264.781555216946,1272,480396,1,0,0,0,9 +"899",2009,25027,"MA","25","027",795251,0.902962712401493,51305,0.116618526729297,10.8455434922963,11.658513878708,12.3950387450428,8.85384615384615,297.290110273648,1431,481348,1,0,0,0,9 +"900",2009,24001,"MD","24","001",75101,0.906046524014327,6390,0.125404455333484,8.76248954737158,9.16188515170678,9.92299601892417,9.16923076923077,436.768802228412,196,44875,1,0,0,0,9 +"901",2009,24003,"MD","24","003",532395,0.792229453695095,34980,0.12163900863081,10.4625317485726,11.2513398972397,12.0277769739742,6.86923076923077,310.465578031552,1032,332404,1,0,0,0,9 +"902",2009,24005,"MD","24","005",801808,0.675189072695708,56875,0.122172639833975,10.9486111562533,11.5563105719096,12.4467495846965,8,369.398812218481,1787,483759,1,0,0,0,9 +"903",2009,24009,"MD","24","009",88244,0.8347083087802,4649,0.119566202801324,8.44440742169058,9.48196927910572,10.2021095650262,6.30769230769231,288.488733855001,153,53035,1,0,0,0,9 +"904",2009,24011,"MD","24","011",33013,0.835579923060612,1946,0.119589252718626,7.57353126274595,8.39525152061099,9.19776158976932,9.69230769230769,437.693099897013,85,19420,1,0,0,0,9 +"905",2009,24013,"MD","24","013",167028,0.945625883085471,9278,0.123476303374285,9.13540128531169,10.1105423715008,10.8135589845964,6.93846153846154,293.40001209897,291,99182,1,0,0,0,9 +"906",2009,24015,"MD","24","015",100816,0.916154181875893,5812,0.123204650055547,8.66768002469017,9.59865932124938,10.3266615944251,9.78461538461539,462.361168243521,281,60775,1,0,0,0,9 +"907",2009,24017,"MD","24","017",144804,0.533534985221403,8513,0.105943205988785,9.04934968588406,10.0754220164436,10.7419248452054,6.31538461538462,323.624595469256,287,88683,1,0,0,0,9 +"908",2009,24019,"MD","24","019",32470,0.699722821065599,1753,0.138620264859871,7.46908388492123,8.29329935871132,9.19816657104447,11.4538461538462,396.112812929122,75,18934,1,0,0,0,9 +"909",2009,24021,"MD","24","021",230942,0.858167851668384,13149,0.114102242121398,9.48410098908692,10.4774006451724,11.1723066431351,6.78461538461538,283.500014246232,398,140388,1,0,0,0,9 +"910",2009,24023,"MD","24","023",30145,0.984906286282966,1576,0.13932658815724,7.36264527041782,8.26255897301066,9.07291569606451,8.37692307692308,333.947489636112,58,17368,1,0,0,0,9 +"911",2009,24025,"MD","24","025",243685,0.835718242813468,13736,0.121250795083817,9.52777540257731,10.4668107452599,11.2244964469574,7.68461538461538,299.138019147559,439,146755,1,0,0,0,9 +"912",2009,24027,"MD","24","027",283061,0.662313070327597,14452,0.119129798877274,9.57858809226753,10.6768543481975,11.4090083515505,5.6,177.168166880983,310,174975,1,0,0,0,9 +"913",2009,24029,"MD","24","029",20132,0.824408901251738,1619,0.143353864494337,7.38956395367764,7.62608275807238,8.67778025606419,8.2,442.399575296408,50,11302,1,0,0,0,9 +"914",2009,24031,"MD","24","031",959013,0.657628207333999,53618,0.120324750550827,10.8896401115792,11.8522935047035,12.6395225021731,5.76923076923077,174.19245729748,1030,591300,1,0,0,0,9 +"915",2009,24033,"MD","24","033",856161,0.265999035228187,68343,0.110033042850585,11.1322944228621,11.7415977048813,12.5545722623641,7.49230769230769,367.508673167602,1982,539307,1,0,0,0,9 +"916",2009,24035,"MD","24","035",47532,0.90959774467727,2214,0.130817133720441,7.70255611326858,8.84072491676172,9.55194228641739,7.2,311.426116838488,87,27936,1,0,0,0,9 +"917",2009,24037,"MD","24","037",103273,0.812632537061962,7080,0.10474180085792,8.86502918668777,9.61433773680931,10.3521079309582,6.03076923076923,346.026304407029,216,62423,1,0,0,0,9 +"918",2009,24039,"MD","24","039",26425,0.554966887417219,3248,0.117994323557237,8.08579470128157,8.04974629095219,8.85466492837053,10.1769230769231,430.407371483996,71,16496,1,0,0,0,9 +"919",2009,24041,"MD","24","041",37496,0.846650309366332,1713,0.150389374866652,7.44600149832412,8.38343320123671,9.29127498947218,7.80769230769231,357.799052316024,74,20682,1,0,0,0,9 +"920",2009,24043,"MD","24","043",146953,0.877736419127204,8763,0.116778834048982,9.07829359105585,9.9723604168225,10.6486102946864,10.4230769230769,364.033901361464,323,88728,1,0,0,0,9 +"921",2009,24045,"MD","24","045",98069,0.717117539691442,9196,0.115745036657863,9.12652388588307,9.37483734385759,10.3200904050547,8.99230769230769,432.009874511417,252,58332,1,0,0,0,9 +"922",2009,24047,"MD","24","047",51313,0.841034435718044,2480,0.157250599263345,7.81601383915903,8.6941671418836,9.6040027679652,12.0769230769231,378.136816775524,110,29090,1,0,0,0,9 +"923",2009,24510,"MD","24","510",620509,0.314329042769726,55581,0.108839678393061,10.9255966952181,11.2625520223948,12.2368540011196,10.9923076923077,640.92711567428,2502,390372,1,0,0,0,9 +"924",2009,23001,"ME","23","001",107830,0.947649077251229,6949,0.124427339330428,8.84635304331433,9.60998859476278,10.4046567022688,8.71538461538461,286.5680790744,187,65255,0,0,0,0,9 +"925",2009,23003,"ME","23","003",72258,0.967602203216253,3892,0.150779152481386,8.2666784433059,9.08986621850831,9.95370526869675,10.0923076923077,398.614340625445,168,42146,0,0,0,0,9 +"926",2009,23005,"ME","23","005",281969,0.944784710375963,17781,0.130436324560501,9.78588575045595,10.5943070260869,11.3957959657124,6.73076923076923,286.10829771285,500,174759,0,0,0,0,9 +"927",2009,23007,"ME","23","007",30779,0.986484291237532,2358,0.144254199291725,7.76556908109732,8.17611034223734,9.14430740137174,10.7923076923077,348.432055749129,64,18368,0,0,0,0,9 +"928",2009,23009,"ME","23","009",54499,0.980238169507697,3084,0.165452577111507,8.03398273468322,8.81343849452851,9.73595608121481,9.09230769230769,324.528982241053,108,33279,0,0,0,0,9 +"929",2009,23011,"ME","23","011",122084,0.976450640542577,7243,0.140837456177714,8.88779076419533,9.69264305680893,10.5417560715861,7.86923076923077,332.158898362067,247,74362,0,0,0,0,9 +"930",2009,23013,"ME","23","013",39924,0.984019637310891,1803,0.16017934074742,7.49720722320332,8.53030683056162,9.37305428246393,8.23076923076923,302.038761641077,72,23838,0,0,0,0,9 +"931",2009,23015,"ME","23","015",34627,0.986022468016288,1458,0.167845900597799,7.2848209125686,8.3221510702129,9.24028744834414,7.92307692307692,338.173861149791,68,20108,0,0,0,0,9 +"932",2009,23017,"ME","23","017",57923,0.982839286639159,2681,0.145727949173903,7.89394513823596,8.89439598980643,9.75440732952197,11.1153846153846,402.649315787938,138,34273,0,0,0,0,9 +"933",2009,23019,"ME","23","019",153770,0.965975157703063,13775,0.127989854978214,9.53061063402112,9.88323382350886,10.7721624304686,8.5,351.051044719475,333,94858,0,0,0,0,9 +"934",2009,23021,"ME","23","021",17433,0.981299833648827,663,0.171054895887111,6.49677499018586,7.66434663209862,8.54578064826815,12.6461538461538,462.279925248352,47,10167,0,0,0,0,9 +"935",2009,23023,"ME","23","023",35567,0.976213906148958,1700,0.146427868529817,7.43838353004431,8.50329708622413,9.31650056780457,7.4,360.760371860691,78,21621,0,0,0,0,9 +"936",2009,23025,"ME","23","025",52104,0.98211269768156,2450,0.145804544756641,7.80384330353877,8.8794724020748,9.65905652207866,11.3307692307692,360.884006131834,113,31312,0,0,0,0,9 +"937",2009,23027,"ME","23","027",38706,0.984472691572366,1956,0.160801942851238,7.57865685059476,8.49902922078857,9.3888212293842,9.22307692307692,329.270900149669,77,23385,0,0,0,0,9 +"938",2009,23029,"ME","23","029",32925,0.934305239179954,1623,0.15705391040243,7.39203156751459,8.27461194620955,9.16868469670735,11.4076923076923,480.744108271934,92,19137,0,0,0,0,9 +"939",2009,23031,"ME","23","031",197192,0.976636983244756,10555,0.140593938902187,9.26435496028242,10.2057010308338,11.0168570821791,7.96153846153846,322.491937701557,387,120003,0,0,0,0,9 +"940",2009,26001,"MI","26","001",11106,0.989465153970827,305,0.188096524401225,5.72031177660741,6.91373735065968,7.96067260838812,18.3692307692308,482.010673093476,28,5809,1,0,0,0,9 +"941",2009,26003,"MI","26","003",9334,0.900578530104992,444,0.163274051853439,6.09582456243222,7.00760061395185,7.81762544305337,13.3538461538462,375,21,5600,1,0,0,0,9 +"942",2009,26005,"MI","26","005",111252,0.967632042570021,5738,0.122514651421997,8.65486599654131,9.61673837813295,10.3822960548685,12.5538461538462,281.102787860066,182,64745,1,0,0,0,9 +"943",2009,26007,"MI","26","007",29755,0.983935473029743,1468,0.141589648798521,7.29165620917446,8.12769985281777,9.05368656193081,13.4923076923077,487.83354884213,83,17014,1,0,0,0,9 +"944",2009,26009,"MI","26","009",23796,0.981677592872752,945,0.156791057320558,6.85118492749374,7.92948652331429,8.80267284031282,14.8846153846154,409.991648318275,54,13171,1,0,0,0,9 +"945",2009,26011,"MI","26","011",16243,0.978021301483716,744,0.149048821030598,6.61204103483309,7.50163445788341,8.41516046585109,16.2769230769231,486.066104990279,45,9258,1,0,0,0,9 +"946",2009,26013,"MI","26","013",8874,0.771917962587334,433,0.143002028397566,6.07073772800249,7.12689080889881,7.70885960104718,23.6846153846154,372.43947858473,20,5370,1,0,0,0,9 +"947",2009,26015,"MI","26","015",59469,0.983369486623283,2901,0.134607946997595,7.9728107841214,8.93537707193218,9.74800264969573,10.1076923076923,320.485058466869,111,34635,1,0,0,0,9 +"948",2009,26017,"MI","26","017",107913,0.964230444895425,6292,0.134562100951693,8.74703426417817,9.50643694302898,10.3711760038244,11.6307692307692,411.366967705329,261,63447,1,0,0,0,9 +"949",2009,26019,"MI","26","019",17564,0.974664085629697,694,0.146322022318379,6.5424719605068,7.65491704784832,8.5137873982814,13.4538461538462,374.190938511327,37,9888,1,0,0,0,9 +"950",2009,26021,"MI","26","021",157059,0.811745904405351,8880,0.130116707734036,9.09155683598622,9.88333586432528,10.7390453385772,12.4,342.082830541686,309,90329,1,0,0,0,9 +"951",2009,26023,"MI","26","023",45378,0.956829300542113,2518,0.124465600070519,7.83122021460429,8.70665585636156,9.40376670850224,13.7615384615385,359.968502756009,96,26669,1,0,0,0,9 +"952",2009,26025,"MI","26","025",136301,0.850206528198619,8409,0.12633803126903,9.0370578398329,9.76140542060167,10.5982833733416,11.4538461538462,471.130586760217,372,78959,1,0,0,0,9 +"953",2009,26027,"MI","26","027",52362,0.914327183835606,2564,0.145009739887705,7.84932381804056,8.81224801819743,9.62152244041358,11.0846153846154,432.328966040725,131,30301,1,0,0,0,9 +"954",2009,26029,"MI","26","029",26068,0.971612705232469,1127,0.151219886450821,7.02731451403978,8.03106018024062,8.92532141694389,14.4384615384615,335.053273470482,50,14923,1,0,0,0,9 +"955",2009,26031,"MI","26","031",26330,0.951804025826054,1148,0.154956323585264,7.04577657687951,8.06934236681164,8.9187841379758,13.7692307692308,425.675675675676,63,14800,1,0,0,0,9 +"956",2009,26033,"MI","26","033",39174,0.743043855618522,3196,0.119594629090723,8.06965530688617,8.62532985002082,9.20150142330898,12.3923076923077,367.944363577551,91,24732,1,0,0,0,9 +"957",2009,26035,"MI","26","035",30856,0.980943738656987,1615,0.149954627949183,7.38709023565676,8.1820001362934,9.08023168662916,16.1923076923077,551.407237219988,96,17410,1,0,0,0,9 +"958",2009,26037,"MI","26","037",74828,0.953653712514032,5804,0.12244079756241,8.66630261400408,9.19461741151095,10.028356534582,9.19230769230769,229.079638862687,102,44526,1,0,0,0,9 +"959",2009,26039,"MI","26","039",14157,0.983188528643074,588,0.155470791834428,6.37672694789863,7.37588214821501,8.2960476427647,13.1769230769231,494.80455220188,40,8084,1,0,0,0,9 +"960",2009,26041,"MI","26","041",37059,0.961574786151812,1742,0.15129927952724,7.46278915741245,8.35066624052092,9.26766543859545,11.9384615384615,365.922311878401,78,21316,1,0,0,0,9 +"961",2009,26043,"MI","26","043",26357,0.983382023750806,1202,0.137989907804378,7.09174211509515,8.07090608878782,8.92132407651127,11.3076923076923,339.773484343771,51,15010,1,0,0,0,9 +"962",2009,26045,"MI","26","045",107430,0.905240621800242,6683,0.134320022340128,8.80732226751107,9.5324238711453,10.4010759495201,10.1615384615385,293.733681462141,189,64344,1,0,0,0,9 +"963",2009,26047,"MI","26","047",32765,0.942774301846482,1699,0.146619868762399,7.43779512167193,8.28979058318164,9.18553525305721,13.9769230769231,249.882867405903,48,19209,1,0,0,0,9 +"964",2009,26049,"MI","26","049",427989,0.765040690298115,25129,0.119652607894128,10.1317778366699,10.9454413024059,11.7707177554127,14.4923076923077,487.902579714789,1218,249640,1,0,0,0,9 +"965",2009,26051,"MI","26","051",25738,0.987994405159686,1153,0.15964721423576,7.05012252026906,7.97453284413023,8.85879510585745,16.1307692307692,579.874124885086,82,14141,1,0,0,0,9 +"966",2009,26053,"MI","26","053",16390,0.929286150091519,912,0.153386211104332,6.81563999007433,7.58731050602262,8.34021732094704,12.5846153846154,456.289536451312,44,9643,1,0,0,0,9 +"967",2009,26055,"MI","26","055",86767,0.963580623969942,4890,0.136330632613782,8.49494758246892,9.31686021535386,10.1666591833034,11.5153846153846,325.03537149631,170,52302,1,0,0,0,9 +"968",2009,26057,"MI","26","057",42285,0.934468487643372,3238,0.114295849592054,8.08271113423758,8.63550941823428,9.31560088263368,13.6,375.449551436589,95,25303,1,0,0,0,9 +"969",2009,26059,"MI","26","059",46735,0.984401412217824,3037,0.132577297528619,8.01862546504575,8.63692987301857,9.49912183987126,16.9076923076923,402.699578656922,108,26819,1,0,0,0,9 +"970",2009,26061,"MI","26","061",36378,0.956814558249491,5204,0.114492275551157,8.5571828396324,8.1605182474775,9.13830716907635,10.5307692307692,232.635427052177,49,21063,1,0,0,0,9 +"971",2009,26063,"MI","26","063",33269,0.986534010640536,1442,0.147073852535393,7.2737863178449,8.26333266743997,9.11239672764606,14.2538461538462,470.651879902624,87,18485,1,0,0,0,9 +"972",2009,26065,"MI","26","065",280889,0.80194311631997,38531,0.108943390449608,10.5592183910856,10.3660888520151,11.4074760564727,11.1307692307692,298.81949257496,526,176026,1,0,0,0,9 +"973",2009,26067,"MI","26","067",63858,0.938472861661812,4308,0.112217733095305,8.36822903827628,9.11261728344757,9.75353637577262,13.7153846153846,314.128102972724,123,39156,1,0,0,0,9 +"974",2009,26069,"MI","26","069",26174,0.979101398334225,1077,0.168143959654619,6.98193467715639,7.88720858581393,8.87276752991094,17.3307692307692,478.166092398566,68,14221,1,0,0,0,9 +"975",2009,26071,"MI","26","071",11959,0.980433146584163,420,0.1694957772389,6.04025471127741,6.99301512293296,8.05801080080209,11.7846153846154,475.678993401872,31,6517,1,0,0,0,9 +"976",2009,26073,"MI","26","073",70026,0.911361494302116,15322,0.0887813097992174,9.63704498307677,8.77817188103347,9.9986158976277,8.63076923076923,242.929825365541,106,43634,1,0,0,0,9 +"977",2009,26075,"MI","26","075",160114,0.896954669797769,9774,0.125560538116592,9.1874810778301,9.98644907325047,10.7207532129325,13.2230769230769,403.386349825025,385,95442,1,0,0,0,9 +"978",2009,26077,"MI","26","077",249023,0.846933817358236,28005,0.110945575308305,10.2401383446439,10.3016594631502,11.2489208558728,9.9,337.088268406534,512,151889,1,0,0,0,9 +"979",2009,26079,"MI","26","079",17223,0.981652441502642,852,0.142135516460547,6.74758652682932,7.67415292128168,8.49780647761605,14.0846153846154,466.732869910626,47,10070,1,0,0,0,9 +"980",2009,26081,"MI","26","081",601437,0.854012972264759,45314,0.105402560866724,10.7213713144974,11.2699617862067,12.1116520699107,10.6923076923077,277.206075107787,994,358578,1,0,0,0,9 +"981",2009,26085,"MI","26","085",11593,0.88061761407746,465,0.179591132580005,6.14203740558736,7.12125245324454,8.08517874807454,16.2846153846154,409.773865533465,27,6589,1,0,0,0,9 +"982",2009,26087,"MI","26","087",88774,0.976727420190596,4487,0.131953049316241,8.40893960597598,9.43851126500442,10.1691157154565,16.5,360.044487172237,191,53049,1,0,0,0,9 +"983",2009,26089,"MI","26","089",21724,0.94655680353526,836,0.179985269747744,6.7286286130847,7.66387725870347,8.71440336070394,9.05384615384615,225.884715134276,27,11953,1,0,0,0,9 +"984",2009,26091,"MI","26","091",100250,0.955940149625935,6150,0.130224438902743,8.72420736080056,9.49912183987126,10.2597624164535,15.1692307692308,285.733608358976,169,59146,1,0,0,0,9 +"985",2009,26093,"MI","26","093",181082,0.978711302062049,8223,0.129764416120873,9.0146903849709,10.2082110908428,10.9025557108679,11.3076923076923,284.952661090174,310,108790,1,0,0,0,9 +"986",2009,26097,"MI","26","097",11159,0.798637870776951,442,0.168473877587597,6.0913098820777,7.1074254741107,8.07246736935477,14.9615384615385,530.586766541823,34,6408,1,0,0,0,9 +"987",2009,26099,"MI","26","099",839435,0.875683048717292,48313,0.119642378504589,10.7854559545647,11.7015852261753,12.4526592485708,14.9846153846154,358.739061927083,1810,504545,1,0,0,0,9 +"988",2009,26101,"MI","26","101",24818,0.940365863486179,1224,0.160206301877669,7.10987946307227,7.96797317966293,8.81477608854528,12.6384615384615,441.897396948146,64,14483,1,0,0,0,9 +"989",2009,26103,"MI","26","103",66765,0.953223994607953,7072,0.138740357971991,8.86389860431748,8.91556654571064,9.90882329212565,10.1153846153846,343.428036216047,143,41639,1,0,0,0,9 +"990",2009,26105,"MI","26","105",28656,0.972012841987716,1371,0.151486599664992,7.22329567956231,8.07868822922987,9.00577320623491,12.9923076923077,314.562388206994,51,16213,1,0,0,0,9 +"991",2009,26107,"MI","26","107",42621,0.950681588888107,6134,0.11972971070599,8.7216023446742,8.33327035325531,9.39922368660528,12.5461538461538,210.016155088853,52,24760,1,0,0,0,9 +"992",2009,26109,"MI","26","109",24118,0.961024960610332,1029,0.153702628742018,6.93634273583405,7.93808872689695,8.82658783077367,11.5461538461538,379.656160458453,53,13960,1,0,0,0,9 +"993",2009,26111,"MI","26","111",83639,0.959528449646696,5207,0.120553808629945,8.5577591531629,9.3064683990704,10.1145180359665,9.45384615384615,266.169816342827,130,48841,1,0,0,0,9 +"994",2009,26113,"MI","26","113",14898,0.984427439924822,728,0.13867633239361,6.59030104819669,7.46508273639955,8.32482129876878,15.1692307692308,347.097546379414,29,8355,1,0,0,0,9 +"995",2009,26115,"MI","26","115",152296,0.96240873036718,8565,0.127948206124915,9.05543941075822,9.93663215112843,10.722407984014,14.1692307692308,362.630337499724,329,90726,1,0,0,0,9 +"996",2009,26117,"MI","26","117",63496,0.962155096384024,3561,0.11915711225904,8.17779668327778,9.07440609473535,9.76955607989027,16.2153846153846,377.14652543733,141,37386,1,0,0,0,9 +"997",2009,26119,"MI","26","119",9794,0.989483357157443,356,0.17970185828058,5.87493073085203,6.84374994900622,7.87283617502572,20.2615384615385,633.383010432191,34,5368,1,0,0,0,9 +"998",2009,26121,"MI","26","121",172755,0.826882000520969,10724,0.12166362768082,9.28023949935585,9.99634016955075,10.8216365567522,14.5384615384615,428.832567560891,434,101205,1,0,0,0,9 +"999",2009,26123,"MI","26","123",48649,0.97089354354663,2582,0.129416843100578,7.85631957140659,8.69533937679971,9.5206152930806,13.5769230769231,413.103348311349,114,27596,1,0,0,0,9 +"1000",2009,26125,"MI","26","125",1200890,0.795885551549268,62557,0.127731932150322,11.0438334201052,12.0644745183991,12.8369134784652,12.2923076923077,295.754926402787,2165,732025,1,0,0,0,9 +"1001",2009,26127,"MI","26","127",26779,0.974009485044251,1349,0.135740692333545,7.20711885620776,8.02256894698825,8.90272766403552,15.7923076923077,418.240690771722,62,14824,1,0,0,0,9 +"1002",2009,26129,"MI","26","129",21856,0.984672401171303,945,0.154785871156662,6.85118492749374,7.73587031995257,8.71669957296429,13.2,370.37037037037,45,12150,1,0,0,0,9 +"1003",2009,26131,"MI","26","131",6828,0.983889865260691,193,0.189953134153486,5.26269018890489,6.58892647753352,7.53315880745556,15.4153846153846,590.804007192397,23,3893,1,0,0,0,9 +"1004",2009,26133,"MI","26","133",23522,0.980911487118442,1192,0.133959697304651,7.0833878476253,7.9251575122247,8.78981238619097,14.8615384615385,319.683361242198,42,13138,1,0,0,0,9 +"1005",2009,26135,"MI","26","135",8717,0.989331191923827,380,0.167029941493633,5.94017125272043,6.72142570079064,7.75448154747038,20.8,510.204081632653,24,4704,1,0,0,0,9 +"1006",2009,26137,"MI","26","137",24190,0.981107895824721,1240,0.138735014468789,7.12286665859908,8.04558828080353,8.85309383613849,14.3076923076923,358.937544867193,50,13930,1,0,0,0,9 +"1007",2009,26139,"MI","26","139",262879,0.94573168644129,21818,0.10650147025818,9.9904905961577,10.4232630068217,11.2491942666742,12.1307692307692,209.682311516702,318,151658,1,0,0,0,9 +"1008",2009,26141,"MI","26","141",13505,0.98326545723806,451,0.173269159570529,6.11146733950268,7.19368581839511,8.1958853913148,18.3615384615385,421.024039114491,31,7363,1,0,0,0,9 +"1009",2009,26143,"MI","26","143",24499,0.984244254867546,875,0.187028041960896,6.77422388635761,7.76046702921342,8.80642406385787,14.7153846153846,504.822182037372,67,13272,1,0,0,0,9 +"1010",2009,26145,"MI","26","145",200835,0.779152040232031,13871,0.127099360171285,9.53755560876329,10.1046308635707,10.9920831748176,12.1923076923077,423.637228202135,490,115665,1,0,0,0,9 +"1011",2009,26147,"MI","26","147",164011,0.957630890610996,8855,0.129832755120083,9.08873755021693,10.0357869365496,10.7911112843949,16.8153846153846,434.930483267544,422,97027,1,0,0,0,9 +"1012",2009,26149,"MI","26","149",61417,0.952732956673234,3470,0.123532572414804,8.1519098729409,8.93022956502072,9.76100190423937,14.3538461538462,398.875114784206,139,34848,1,0,0,0,9 +"1013",2009,26151,"MI","26","151",43319,0.985387474318428,2191,0.132874720099725,7.69211333959547,8.5608272284363,9.39798109024774,17.0769230769231,443.550043122921,108,24349,1,0,0,0,9 +"1014",2009,26153,"MI","26","153",8487,0.897843761046306,325,0.160009426181218,5.78382518232974,6.88448665204278,7.7873820264847,14.2307692307692,435.413642960813,21,4823,1,0,0,0,9 +"1015",2009,26155,"MI","26","155",70710,0.982180738226559,3779,0.127648140291331,8.23721470334949,9.15725600088373,9.94314086441278,14.4846153846154,419.251647925553,173,41264,1,0,0,0,9 +"1016",2009,26157,"MI","26","157",55901,0.976458381782079,2958,0.134595087744405,7.99226864327075,8.8667226671941,9.67921836793441,15.4769230769231,419.597679871652,136,32412,1,0,0,0,9 +"1017",2009,26159,"MI","26","159",76581,0.930152387667959,4022,0.129993079223306,8.2995345703326,9.18142636181154,10.0122074192504,12.4615384615385,474.605245400153,211,44458,1,0,0,0,9 +"1018",2009,26161,"MI","26","161",343520,0.77241208663251,40666,0.110753376804844,10.6131476414703,10.6994845997105,11.6122910468678,8.39230769230769,229.924909444257,504,219202,1,0,0,0,9 +"1019",2009,26163,"MI","26","163",1837536,0.547529953154659,116512,0.116071739546871,11.6657495509752,12.4364698255557,13.2322217624646,15.3692307692308,515.657263395576,5554,1077072,1,0,0,0,9 +"1020",2009,26165,"MI","26","165",32658,0.978596362300202,1762,0.127350113295364,7.47420480649612,8.31188955823036,9.1381996941985,17.1384615384615,421.873331197266,79,18726,1,0,0,0,9 +"1021",2009,27001,"MN","27","001",16168,0.965301830776843,534,0.172872340425532,6.2803958389602,7.35627987655075,8.34711636103872,10.4692307692308,371.488274901323,32,8614,1,0,0,0,9 +"1022",2009,27003,"MN","27","003",329635,0.89824199493379,18535,0.11102886526006,9.82741611558483,10.8059835733881,11.5247650990744,8.50769230769231,231.635167234689,471,203337,1,0,0,0,9 +"1023",2009,27005,"MN","27","005",32407,0.900021600271546,1528,0.143209800351776,7.33171496972647,8.19118600464279,9.09088093193886,8.74615384615385,424.28917787084,77,18148,1,0,0,0,9 +"1024",2009,27007,"MN","27","007",44226,0.764640709085154,4445,0.116198616198616,8.399535147948,8.41493895737748,9.44327582575286,8.80769230769231,346.007156057091,88,25433,1,0,0,0,9 +"1025",2009,27009,"MN","27","009",38418,0.959550210838669,3142,0.0996928523088136,8.05261481881557,8.52773740529191,9.3439092638976,8.61538461538461,209.527067476268,49,23386,1,0,0,0,9 +"1026",2009,27013,"MN","27","013",63565,0.943018956973177,10754,0.0979312514748682,9.28303305736962,8.77539495854551,9.86235300917757,6.53846153846154,215.592880421158,86,39890,1,0,0,0,9 +"1027",2009,27015,"MN","27","015",25890,0.988258014677482,1638,0.126226342217072,7.40123126441302,7.92660259918138,8.87248718227804,7.42307692307692,261.816177483809,38,14514,1,0,0,0,9 +"1028",2009,27017,"MN","27","017",35269,0.912075760582948,1772,0.123621310499305,7.47986413116503,8.46463594067756,9.16774597434376,8.60769230769231,357.142857142857,74,20720,1,0,0,0,9 +"1029",2009,27019,"MN","27","019",90242,0.951663305334545,3955,0.0948892976662751,8.28273588020175,9.59376434920747,10.1994725600255,7.37692307692308,188.785046728972,101,53500,1,0,0,0,9 +"1030",2009,27021,"MN","27","021",28483,0.870027735842432,1229,0.159287996348699,7.11395610956603,7.99564360428727,8.94533261656327,10.8615384615385,464.376590330789,73,15720,1,0,0,0,9 +"1031",2009,27023,"MN","27","023",12360,0.968608414239482,613,0.129935275080906,6.41836493593621,7.2115567333138,8.10741881171997,7.9,296.6038855109,20,6743,1,0,0,0,9 +"1032",2009,27025,"MN","27","025",53526,0.967791353734634,2644,0.108022269551246,7.88004820097158,9.0368199711353,9.63782786411884,10.0923076923077,229.357798165138,74,32264,1,0,0,0,9 +"1033",2009,27027,"MN","27","027",58351,0.950197940052441,7140,0.098250244211753,8.87346805533363,8.791638037086,9.75138477432617,4.91538461538462,240.740203614004,83,34477,1,0,0,0,9 +"1034",2009,27029,"MN","27","029",8645,0.888259109311741,409,0.131983805668016,6.0137151560428,6.86797440897029,7.73149202924568,14.8384615384615,321.888412017167,15,4660,1,0,0,0,9 +"1035",2009,27033,"MN","27","033",11632,0.959680192572215,520,0.129814305364512,6.25382881157547,7.14045304310116,8.00302866638473,6.38461538461539,297.47149231532,18,6051,1,0,0,0,9 +"1036",2009,27035,"MN","27","035",62307,0.976615789558156,3171,0.133740992183864,8.06180227453835,8.86064104177388,9.76232713274711,9.86153846153846,274.874731567645,96,34925,1,0,0,0,9 +"1037",2009,27037,"MN","27","037",396906,0.890812938076018,22103,0.109486881024726,10.0034686248994,10.9707467635462,11.7300831365996,7.33076923076923,218.626304887303,533,243795,1,0,0,0,9 +"1038",2009,27039,"MN","27","039",19921,0.985492696149792,921,0.100496963003865,6.82546003625531,7.94979721616185,8.61486421858968,7.51538461538462,187.132418463732,21,11222,1,0,0,0,9 +"1039",2009,27041,"MN","27","041",36076,0.985613704401818,2002,0.13158332409358,7.60190195987517,8.2630748358026,9.20361782621536,6.78461538461538,317.460317460317,64,20160,1,0,0,0,9 +"1040",2009,27043,"MN","27","043",14651,0.986826837758515,654,0.135622141833322,6.4831073514572,7.28276117960559,8.24905227417129,9.34615384615385,254.097319273282,20,7871,1,0,0,0,9 +"1041",2009,27045,"MN","27","045",20921,0.990392428660198,925,0.128244347784523,6.82979373751242,7.77946696745832,8.63408694288774,8.23076923076923,280.898876404494,32,11392,1,0,0,0,9 +"1042",2009,27047,"MN","27","047",31313,0.977549260690448,1583,0.131894101491393,7.36707705988101,8.18479265416508,9.04215837873595,8.57692307692308,270.643786709663,47,17366,1,0,0,0,9 +"1043",2009,27049,"MN","27","049",46035,0.965852069077876,2273,0.129053980666884,7.72885582385254,8.62873456614915,9.48895647241422,7.77692307692308,333.745828177148,89,26667,1,0,0,0,9 +"1044",2009,27053,"MN","27","053",1146721,0.791035482911711,84819,0.11268477685505,11.3482748532868,11.9590013452928,12.8097900726386,7.37692307692308,240.805875003608,1752,727557,1,0,0,0,9 +"1045",2009,27055,"MN","27","055",19051,0.983727888299827,869,0.136318303501129,6.76734312526539,7.70481192293259,8.5921151179335,8.08461538461538,285.188592456302,31,10870,1,0,0,0,9 +"1046",2009,27057,"MN","27","057",20389,0.959831281573397,835,0.155672176173427,6.72743172485086,7.70300768247924,8.63159273172473,10.1846153846154,310.228682857649,35,11282,1,0,0,0,9 +"1047",2009,27059,"MN","27","059",37809,0.975032399693195,2128,0.107937263614483,7.66293785046154,8.54539184577492,9.29366997956319,10.2230769230769,258.917012633365,58,22401,1,0,0,0,9 +"1048",2009,27061,"MN","27","061",45066,0.950805485288244,2047,0.154440154440154,7.62413058566129,8.52038808231276,9.44192817007306,10.9692307692308,371.572730472875,95,25567,1,0,0,0,9 +"1049",2009,27063,"MN","27","063",10276,0.975963409887116,470,0.131957960295835,6.1527326947041,7.03085747611612,7.89655270164304,5.5,336.939173612343,19,5639,1,0,0,0,9 +"1050",2009,27065,"MN","27","065",16294,0.983429483245366,713,0.132134528047134,6.5694814204143,7.58882987830781,8.42441979126388,13.2769230769231,375.738056897477,35,9315,1,0,0,0,9 +"1051",2009,27067,"MN","27","067",42058,0.966094441010034,2726,0.12394788149698,7.91059061225648,8.45998771764546,9.37330920025432,6.79230769230769,256.604408547871,61,23772,1,0,0,0,9 +"1052",2009,27071,"MN","27","071",13276,0.959475745706538,565,0.15456462789997,6.33682573114644,7.33432935030054,8.21851757748959,9.61538461538461,239.520958083832,18,7515,1,0,0,0,9 +"1053",2009,27075,"MN","27","075",10872,0.987766740250184,502,0.153237674760854,6.21860011969173,7.01391547481053,8.00770001288403,9.22307692307692,389.105058365759,24,6168,1,0,0,0,9 +"1054",2009,27079,"MN","27","079",27730,0.985286693112153,1308,0.121745402091598,7.17625453201714,8.22603842948548,8.96187901267768,10.7923076923077,248.339231390079,40,16107,1,0,0,0,9 +"1055",2009,27083,"MN","27","083",25768,0.940080720273207,2442,0.104703508227259,7.80057265467065,7.96067260838812,8.90598676523643,5.90769230769231,200.213561131874,30,14984,1,0,0,0,9 +"1056",2009,27085,"MN","27","085",36662,0.980306584474388,1918,0.11466913970869,7.55903825544338,8.50349986428423,9.23561817916045,9.68461538461538,328.55578305795,69,21001,1,0,0,0,9 +"1057",2009,27087,"MN","27","087",5357,0.554788127683405,249,0.122643270487213,5.51745289646471,6.25382881157547,7.16857989726403,7.9,770.07700770077,21,2727,1,0,0,0,9 +"1058",2009,27091,"MN","27","091",20790,0.985521885521886,951,0.137469937469937,6.85751406254539,7.67693714581808,8.62371303479391,7.59230769230769,423.50449973531,48,11334,1,0,0,0,9 +"1059",2009,27093,"MN","27","093",23298,0.988411022405357,1092,0.128938106275217,6.99576615630485,7.9124231214737,8.74273386733017,9.70769230769231,237.949032852318,31,13028,1,0,0,0,9 +"1060",2009,27095,"MN","27","095",26127,0.926053507865427,1313,0.112259348566617,7.1800698743028,8.09894674894334,8.8750074860484,12.7461538461538,371.006526966678,54,14555,1,0,0,0,9 +"1061",2009,27097,"MN","27","097",33156,0.988146941730004,1792,0.123024490288334,7.49108759353488,8.28677323113125,9.11855397634547,11.2076923076923,343.93354145722,65,18899,1,0,0,0,9 +"1062",2009,27099,"MN","27","099",39023,0.95392460856418,2169,0.114727212156933,7.68202151082687,8.41582469702795,9.24445190160495,6.35384615384615,244.05125076266,52,21307,1,0,0,0,9 +"1063",2009,27103,"MN","27","103",32546,0.958612425490076,3540,0.114760646469612,8.17188200612782,8.19063168090354,9.18440698994968,6.36923076923077,267.582167920432,53,19807,1,0,0,0,9 +"1064",2009,27105,"MN","27","105",21318,0.895299746692936,1306,0.111267473496576,7.17472430983638,7.83755436088108,8.61920811682297,5.30769230769231,202.360876897133,24,11860,1,0,0,0,9 +"1065",2009,27109,"MN","27","109",143521,0.886427770152103,8500,0.107426787717477,9.04782144247841,9.82536383575455,10.6929217084076,6.20769230769231,226.93327467031,196,86369,1,0,0,0,9 +"1066",2009,27111,"MN","27","111",57333,0.97856382885947,2577,0.143948511328554,7.85438121065236,8.69851424787661,9.64555843823369,8.13076923076923,363.970122800354,115,31596,1,0,0,0,9 +"1067",2009,27113,"MN","27","113",13873,0.959201326317307,860,0.122035608736394,6.75693238924755,7.41397029019044,8.28475659319044,8.99230769230769,374.298190892077,30,8015,1,0,0,0,9 +"1068",2009,27115,"MN","27","115",29655,0.935120553026471,1512,0.12551003203507,7.32118855673948,8.25919936266628,8.96865090337487,11.3923076923077,339.366515837104,60,17680,1,0,0,0,9 +"1069",2009,27117,"MN","27","117",9624,0.965191188694929,443,0.115128844555278,6.09356977004514,6.95939851213398,7.82084087990734,6.42307692307692,376.163136012671,19,5051,1,0,0,0,9 +"1070",2009,27119,"MN","27","119",31423,0.963370779365433,2222,0.122203481526271,7.70616297019958,8.1744211526465,9.05122740031911,6,338.066260987153,60,17748,1,0,0,0,9 +"1071",2009,27121,"MN","27","121",11034,0.987765089722675,518,0.14536885988762,6.24997524225948,7.07580886397839,7.99496952269788,7.25384615384615,243.348475016223,15,6164,1,0,0,0,9 +"1072",2009,27123,"MN","27","123",506590,0.748017134171618,44142,0.112732189739237,10.6951669891603,11.0280924214785,11.9764330404723,7.75384615384615,279.704523874664,869,310685,1,0,0,0,9 +"1073",2009,27127,"MN","27","127",16011,0.906814065330086,764,0.126350633939167,6.63856778916652,7.47760424319759,8.33758794211651,6.86923076923077,329.566854990584,28,8496,1,0,0,0,9 +"1074",2009,27129,"MN","27","129",15832,0.983703890853967,714,0.12733703890854,6.57088296233958,7.4730690880322,8.33230835221912,8.01538461538462,320.549513451631,28,8735,1,0,0,0,9 +"1075",2009,27131,"MN","27","131",63859,0.935122692181212,6146,0.104965627397861,8.72355674269043,9.00048316498771,9.78633556772527,8.64615384615385,182.501057977148,69,37808,1,0,0,0,9 +"1076",2009,27135,"MN","27","135",15836,0.956175801970194,649,0.118274816872948,6.47543271670409,7.66293785046154,8.36753241686183,7.7,233.126110124334,21,9008,1,0,0,0,9 +"1077",2009,27137,"MN","27","137",200198,0.946038421962257,17729,0.138063317315857,9.78295699589838,9.99620346103587,10.9834605369853,9.29230769230769,368.187296712731,446,121134,1,0,0,0,9 +"1078",2009,27139,"MN","27","139",128530,0.89807826966467,5662,0.087707150081693,8.64153246567185,10.0204702680217,10.5662012984751,7.40769230769231,187.440213035497,145,77358,1,0,0,0,9 +"1079",2009,27141,"MN","27","141",87880,0.956713700500683,5363,0.0902025489303596,8.58727879898293,9.56156046523195,10.1439600859721,9.23076923076923,210.231254379818,111,52799,1,0,0,0,9 +"1080",2009,27143,"MN","27","143",15140,0.984015852047556,711,0.117305151915456,6.56667242980324,7.53208814354172,8.32044811395656,8.02307692307692,199.671129903688,17,8514,1,0,0,0,9 +"1081",2009,27145,"MN","27","145",149696,0.941040508764429,16680,0.103316053869175,9.72196567591274,9.78323897993995,10.6839585612677,7.89230769230769,184.438296501228,166,90003,1,0,0,0,9 +"1082",2009,27147,"MN","27","147",36684,0.956275215352742,1845,0.115527205321121,7.52023455647463,8.49269555981584,9.24338822602238,8.74615384615385,186.451211932878,39,20917,1,0,0,0,9 +"1083",2009,27153,"MN","27","153",24839,0.982044365715206,1281,0.13333870123596,7.15539630189673,7.91278922069068,8.7937637591133,9.07692307692308,320.676335544057,44,13721,1,0,0,0,9 +"1084",2009,27157,"MN","27","157",21734,0.986748872733965,998,0.134259685285727,6.90575327631146,7.9098566672694,8.72469504674049,7.73076923076923,279.753816641356,35,12511,1,0,0,0,9 +"1085",2009,27159,"MN","27","159",13825,0.97880650994575,667,0.123905967450271,6.50279004591562,7.27931883541462,8.17075142375753,11.0846153846154,455.738157713023,33,7241,1,0,0,0,9 +"1086",2009,27161,"MN","27","161",18639,0.965502441118086,963,0.122914319437738,6.87005341179813,7.7621706071382,8.65399423290838,8.35384615384615,154.559505409583,17,10999,1,0,0,0,9 +"1087",2009,27163,"MN","27","163",235684,0.898733049337248,11954,0.118281257955568,9.3888212293842,10.4633890139487,11.1858925375638,7.36923076923077,210.641231096524,301,142897,1,0,0,0,9 +"1088",2009,27165,"MN","27","165",11171,0.970011637275087,562,0.118252618386895,6.33150184989369,7.12929754892937,7.97384437594469,8.98461538461538,233.488992661775,14,5996,1,0,0,0,9 +"1089",2009,27169,"MN","27","169",51422,0.958791956750029,7500,0.114095134378282,8.9226582995244,8.55140136274597,9.6431612100942,7.8,254.871596335011,79,30996,1,0,0,0,9 +"1090",2009,27171,"MN","27","171",123320,0.966882906260136,5631,0.0939669153421992,8.63604232525462,9.87142912884224,10.481840975094,9.10769230769231,242.661231055091,175,72117,1,0,0,0,9 +"1091",2009,29001,"MO","29","001",25577,0.957852758337569,4690,0.0995034601399695,8.45318786144033,7.82763954636642,8.98444303246535,6.43846153846154,255.352582989589,39,15273,0,0,0,0,9 +"1092",2009,29003,"MO","29","003",17036,0.985442592157784,831,0.131016670579948,6.72262979485545,7.69028602067677,8.50653661122771,7.49230769230769,314.752766778353,31,9849,0,0,0,0,9 +"1093",2009,29007,"MO","29","007",25628,0.916731699703449,1453,0.114211019197752,7.28138566357028,8.06965530688617,8.99255742690407,9.1,395.31174145225,57,14419,0,0,0,0,9 +"1094",2009,29009,"MO","29","009",35640,0.968630751964085,1832,0.129096520763187,7.51316354523408,8.37999795223839,9.19836900019496,8.01538461538462,471.243982771725,93,19735,0,0,0,0,9 +"1095",2009,29011,"MO","29","011",12454,0.97575076280713,634,0.120443231090413,6.45204895443723,7.24708058458576,8.13388088794921,10.4,503.927671557729,34,6747,0,0,0,0,9 +"1096",2009,29013,"MO","29","013",17044,0.980110302745834,882,0.121274348744426,6.78219205600679,7.59387784460512,8.4497705150988,10.3846153846154,363.053924185798,34,9365,0,0,0,0,9 +"1097",2009,29015,"MO","29","015",18996,0.985049484101916,725,0.177300484312487,6.58617165485467,7.56579328242851,8.55159461813357,9.7,612.185404722573,63,10291,0,0,0,0,9 +"1098",2009,29017,"MO","29","017",12412,0.987753786658073,648,0.131163390267483,6.47389069635227,7.36073990305828,8.16137502319749,10.0230769230769,410.241901259018,29,7069,0,0,0,0,9 +"1099",2009,29019,"MO","29","019",160565,0.851219132438576,24737,0.0968206022483107,10.1160553774782,9.83852227368377,10.8704523871382,6.13846153846154,251.014272788302,258,102783,0,0,0,0,9 +"1100",2009,29021,"MO","29","021",89233,0.922057983033183,6909,0.111909271233736,8.8405801884888,9.30655922971673,10.1516748742898,8.26923076923077,382.503313766332,202,52810,0,0,0,0,9 +"1101",2009,29023,"MO","29","023",42683,0.925309842325985,2417,0.127826066583886,7.79028238070348,8.55545190353333,9.44200749423127,7.86923076923077,516.965494604686,126,24373,0,0,0,0,9 +"1102",2009,29025,"MO","29","025",9365,0.985584623598505,401,0.129845168179391,5.99396142730657,7.06133436691044,7.85127199710988,9.50769230769231,405.170750530581,21,5183,0,0,0,0,9 +"1103",2009,29027,"MO","29","027",44041,0.93338025930383,3479,0.120365114325288,8.15450017515194,8.66509582133973,9.45258041898138,7.86153846153846,384.871586115017,104,27022,0,0,0,0,9 +"1104",2009,29029,"MO","29","029",43762,0.982679036607102,2000,0.177871212467438,7.60090245954208,8.42266270757,9.45907369428939,9.51538461538462,437.43842364532,111,25375,0,0,0,0,9 +"1105",2009,29031,"MO","29","031",74927,0.90785698079464,7403,0.115952860784497,8.9096406024431,9.08772065842827,10.026545540028,7.08461538461538,298.561070330213,133,44547,0,0,0,0,9 +"1106",2009,29033,"MO","29","033",9314,0.974661799441701,431,0.130126691002792,6.06610809010375,7.0604763659998,7.85438121065236,10.1692307692308,487.995315244974,25,5123,0,0,0,0,9 +"1107",2009,29035,"MO","29","035",6138,0.981264255457804,342,0.132127728901922,5.8348107370626,6.59578051396131,7.46393660446893,9.55384615384615,870.574579222287,30,3446,0,0,0,0,9 +"1108",2009,29037,"MO","29","037",98835,0.943653564020843,5028,0.112429807254515,8.52277756971014,9.50233811849557,10.2766016304266,9.32307692307692,360.560011256508,205,56856,0,0,0,0,9 +"1109",2009,29039,"MO","29","039",13964,0.986751647092524,598,0.136780292179891,6.39359075395063,7.34987370473834,8.20494516501921,8.91538461538462,512.110726643599,37,7225,0,0,0,0,9 +"1110",2009,29041,"MO","29","041",7767,0.972576284279645,356,0.133256083429896,5.87493073085203,6.70318811324086,7.64012317269536,9.52307692307692,450.985046285307,19,4213,0,0,0,0,9 +"1111",2009,29043,"MO","29","043",76309,0.975795777693326,3975,0.108860029616428,8.28778002708843,9.28998299962838,10.0387175017962,8.00769230769231,245.91643353488,109,44324,0,0,0,0,9 +"1112",2009,29045,"MO","29","045",7111,0.990437350583603,340,0.137814653353959,5.82894561761021,6.76272950693188,7.57967882309046,11.6615384615385,476.907630522088,19,3984,0,0,0,0,9 +"1113",2009,29047,"MO","29","047",219669,0.90932721503717,12808,0.110539038280322,9.45782525467655,10.3702358890612,11.1279245299944,8.2,305.923030667468,407,133040,0,0,0,0,9 +"1114",2009,29049,"MO","29","049",20765,0.969419696604864,995,0.123573320491211,6.90274273715859,7.89878235697031,8.68609172787805,9.56153846153846,473.412799053174,56,11829,0,0,0,0,9 +"1115",2009,29051,"MO","29","051",75408,0.862799702949289,4864,0.12244058985784,8.489616423646,9.24744345992769,10.0038305012322,6.63076923076923,352.135496554257,163,46289,0,0,0,0,9 +"1116",2009,29053,"MO","29","053",17564,0.913402414028695,1267,0.118822591664769,7.14440718032114,7.63530388625941,8.45998771764546,8.65384615384615,296.62233279112,31,10451,0,0,0,0,9 +"1117",2009,29055,"MO","29","055",24802,0.98625110878155,1339,0.12430449157326,7.19967834569117,8.01862546504575,8.8499442272356,10.7307692307692,433.330965404561,61,14077,0,0,0,0,9 +"1118",2009,29057,"MO","29","057",7885,0.980596068484464,309,0.145466074825618,5.73334127689775,6.75693238924755,7.66105638236183,8.63846153846154,537.63440860215,23,4278,0,0,0,0,9 +"1119",2009,29059,"MO","29","059",16816,0.982397716460514,869,0.127735490009515,6.76734312526539,7.5963923040642,8.45935219172639,11.3307692307692,479.080166081124,45,9393,0,0,0,0,9 +"1120",2009,29061,"MO","29","061",8382,0.990097828680506,389,0.134454784061083,5.96357934361845,6.82654522355659,7.72444664563354,8.69230769230769,486.941124391324,22,4518,0,0,0,0,9 +"1121",2009,29063,"MO","29","063",12825,0.877738791423002,843,0.110409356725146,6.73696695800186,7.64826303090192,7.87245515006398,9.20769230769231,280.93175699403,24,8543,0,0,0,0,9 +"1122",2009,29065,"MO","29","065",15544,0.980892949047864,756,0.128731343283582,6.62804137617953,7.49886973397693,8.36357570275064,9.25384615384615,640.353941087437,55,8589,0,0,0,0,9 +"1123",2009,29067,"MO","29","067",13793,0.986949902124266,684,0.143333575001813,6.52795791762255,7.31455283232408,8.25919936266628,8.63846153846154,460.163029187484,35,7606,0,0,0,0,9 +"1124",2009,29069,"MO","29","069",31977,0.888544891640867,1745,0.12377646433374,7.46450983463653,8.29454951514368,9.12608881952859,10.4538461538462,835.686053077358,148,17710,0,0,0,0,9 +"1125",2009,29071,"MO","29","071",101422,0.980152235215239,5813,0.11688785470608,8.66785206770135,9.5184131340757,10.3017601900628,11.7307692307692,405.550341868883,242,59672,0,0,0,0,9 +"1126",2009,29073,"MO","29","073",15204,0.989936858721389,722,0.133846356222047,6.58202513889283,7.4730690880322,8.33686963728496,11.2538461538462,591.926127619273,50,8447,0,0,0,0,9 +"1127",2009,29075,"MO","29","075",6740,0.989910979228487,333,0.110682492581602,5.80814248998044,6.5875500148248,7.45414107814668,6.15384615384615,376.048597049465,13,3457,0,0,0,0,9 +"1128",2009,29077,"MO","29","077",274013,0.936751176039093,28325,0.11351286252842,10.2515000858962,10.4064120444059,11.3442227493343,8.17692307692308,386.035982366258,648,167860,0,0,0,0,9 +"1129",2009,29079,"MO","29","079",10215,0.984532550171317,602,0.12148800783162,6.40025744530882,6.99209642741589,7.90285719128058,7.46923076923077,485.074626865672,26,5360,0,0,0,0,9 +"1130",2009,29081,"MO","29","081",8987,0.987315010570824,425,0.119060865694893,6.05208916892442,6.84587987526405,7.74802852443238,7.46153846153846,515.021459227468,24,4660,0,0,0,0,9 +"1131",2009,29083,"MO","29","083",22277,0.97858778111954,1075,0.134802711316605,6.98007594056176,7.87739718635329,8.74289347151214,9.3,585.921823581347,73,12459,0,0,0,0,9 +"1132",2009,29085,"MO","29","085",9561,0.985775546490953,313,0.180629641250915,5.74620319054015,6.84268328223842,7.83715965000168,13.0692307692308,568.758886857607,28,4923,0,0,0,0,9 +"1133",2009,29089,"MO","29","089",10172,0.929414077860794,886,0.123672827369249,6.78671695060508,6.99025650049388,7.97831096986772,8.21538461538461,288.526816021724,17,5892,0,0,0,0,9 +"1134",2009,29091,"MO","29","091",39917,0.979582633965478,2306,0.126537565448305,7.743269700829,8.45701846838017,9.33573878137052,9.40769230769231,544.020310091577,120,22058,0,0,0,0,9 +"1135",2009,29093,"MO","29","093",10715,0.978441437237518,539,0.136724218385441,6.289715570909,7.18538701558042,8.02092771898158,8.60769230769231,620.813592550237,38,6121,0,0,0,0,9 +"1136",2009,29095,"MO","29","095",670763,0.718805300829056,44721,0.11193670491664,10.7081984689385,11.3829192800646,12.2440233217586,9.92307692307692,439.497420609908,1778,404553,0,0,0,0,9 +"1137",2009,29097,"MO","29","097",116448,0.937079211321792,8637,0.107867889530091,9.06381057928029,9.5869257805337,10.4407700852645,7.95384615384615,434.041922820532,293,67505,0,0,0,0,9 +"1138",2009,29099,"MO","29","099",217764,0.977723590676145,12464,0.117397733325986,9.43059976811053,10.3382525296892,11.1074953562496,10.3076923076923,392.29832709564,522,133062,0,0,0,0,9 +"1139",2009,29101,"MO","29","101",52351,0.923535367041699,7679,0.0940956237703196,8.94624460933054,8.68338536628031,9.65637144183101,8.24615384615385,237.596523587708,76,31987,0,0,0,0,9 +"1140",2009,29105,"MO","29","105",35355,0.976438976099562,1912,0.121001272804412,7.55590509361135,8.39931015075952,9.22660734444005,12.2,399.6003996004,80,20020,0,0,0,0,9 +"1141",2009,29107,"MO","29","107",33246,0.960957709198099,1809,0.120796486795404,7.5005294853953,8.34212526333359,9.1557785839835,9.50769230769231,478.214665249734,90,18820,0,0,0,0,9 +"1142",2009,29109,"MO","29","109",38652,0.979431853461658,1919,0.120071406395529,7.5595594960077,8.49617382419216,9.27743811550868,8.09230769230769,467.069258350632,99,21196,0,0,0,0,9 +"1143",2009,29111,"MO","29","111",10204,0.956193649549196,830,0.116130929047432,6.72142570079064,7.05789793741186,7.95437227253187,8.05384615384615,363.636363636364,21,5775,0,0,0,0,9 +"1144",2009,29113,"MO","29","113",52243,0.966808950481404,2894,0.103592825833126,7.97039490719143,8.86911686592948,9.63488889456061,11.5384615384615,416.243322080561,127,30511,0,0,0,0,9 +"1145",2009,29115,"MO","29","115",12775,0.983639921722113,571,0.127358121330724,6.34738920965601,7.26682734752059,8.16422565226583,9.30769230769231,463.231036479444,32,6908,0,0,0,0,9 +"1146",2009,29117,"MO","29","117",15110,0.964990072799471,825,0.124420913302449,6.71538338633468,7.55066124310534,8.49964003216865,7.52307692307692,359.50365302099,31,8623,0,0,0,0,9 +"1147",2009,29119,"MO","29","119",23076,0.932180620558156,1283,0.112324492979719,7.15695636461564,8.02780284837031,8.77663009842772,7.59230769230769,581.084180747764,76,13079,0,0,0,0,9 +"1148",2009,29121,"MO","29","121",15509,0.964214327164872,718,0.133728802630731,6.57646956904822,7.4770384723197,8.34616759436413,8.21538461538461,370.813397129187,31,8360,0,0,0,0,9 +"1149",2009,29123,"MO","29","123",12313,0.988061398521887,723,0.119548444733209,6.58340922215876,7.28824440102012,8.13534694890671,10.0307692307692,586.854460093897,40,6816,0,0,0,0,9 +"1150",2009,29125,"MO","29","125",9122,0.989256741942556,469,0.129247971935979,6.15060276844628,6.99668148817654,7.83082299513532,7.84615384615385,352.112676056338,18,5112,0,0,0,0,9 +"1151",2009,29127,"MO","29","127",28720,0.932103064066852,1874,0.12183147632312,7.53583046279837,8.14699869738999,9.03931477492408,9.19230769230769,369.070667957406,61,16528,0,0,0,0,9 +"1152",2009,29131,"MO","29","131",24840,0.983252818035427,1362,0.125805152979066,7.21670948670946,8.0532511535491,8.86601739881026,11.3769230769231,472.79655634747,67,14171,0,0,0,0,9 +"1153",2009,29133,"MO","29","133",14146,0.751237098826523,855,0.122437438145059,6.75110146893676,7.55328660560042,8.23084356419823,8.42307692307692,585.480093676815,50,8540,0,0,0,0,9 +"1154",2009,29135,"MO","29","135",15545,0.952074622064973,877,0.113091026053393,6.77650699237218,7.68799716639302,8.30127348519135,7.95384615384615,274.634735801384,25,9103,0,0,0,0,9 +"1155",2009,29137,"MO","29","137",9014,0.959174617262037,434,0.137009096960284,6.0730445341004,6.94985645500077,7.79688034278352,12.6230769230769,381.219903691814,19,4984,0,0,0,0,9 +"1156",2009,29139,"MO","29","139",12179,0.974546350275064,558,0.12792511700468,6.32435896238131,7.24565506759454,8.10982627601848,11.5,428.867199053534,29,6762,0,0,0,0,9 +"1157",2009,29141,"MO","29","141",20566,0.980307303316153,941,0.151852572206555,6.84694313958538,7.71467747380093,8.61740045183326,12.2769230769231,596.152109113901,66,11071,0,0,0,0,9 +"1158",2009,29143,"MO","29","143",18896,0.827265029635902,1044,0.128651566469094,6.95081476844258,7.77191025643576,8.63194942871443,9.07692307692308,544.833317942562,59,10829,0,0,0,0,9 +"1159",2009,29145,"MO","29","145",57946,0.936354536982708,3419,0.122734960135298,8.1371033896393,8.89986721122359,9.70613357290821,7.90769230769231,446.647087616251,146,32688,0,0,0,0,9 +"1160",2009,29147,"MO","29","147",23242,0.954694088288443,4390,0.0933654590826951,8.38708450606922,7.69712131728263,8.79011689289247,6.20769230769231,186.259760727846,26,13959,0,0,0,0,9 +"1161",2009,29149,"MO","29","149",10724,0.978646027601641,468,0.154699738903394,6.14846829591765,7.09506437728713,7.99463231143183,8.92307692307692,439.78349120433,26,5912,0,0,0,0,9 +"1162",2009,29151,"MO","29","151",13886,0.992654472130203,817,0.113999711940084,6.70563909486,7.51207124583547,8.21635833238616,6.56923076923077,266.63280853225,21,7876,0,0,0,0,9 +"1163",2009,29153,"MO","29","153",9673,0.987490954202419,381,0.159516179055102,5.9427993751267,6.92755790627832,7.89058253465654,7.91538461538462,664.388762338648,35,5268,0,0,0,0,9 +"1164",2009,29155,"MO","29","155",18378,0.718685384699097,1056,0.112743497660246,6.96224346426621,7.68570306123455,8.57054436691323,11.4615384615385,706.748954807884,71,10046,0,0,0,0,9 +"1165",2009,29157,"MO","29","157",19050,0.985459317585302,1036,0.119790026246719,6.94312242281943,7.79276172081653,8.57111303340567,6.87692307692308,381.111730804982,41,10758,0,0,0,0,9 +"1166",2009,29159,"MO","29","159",41907,0.947097143675281,2768,0.111437230057031,7.92588031673756,8.52118521268578,9.38008314656328,8.51538461538462,378.262514184844,90,23793,0,0,0,0,9 +"1167",2009,29161,"MO","29","161",44540,0.936124831612034,5537,0.109474629546475,8.61920811682297,8.47324130388705,9.43779461887748,7.08461538461538,420.941857405946,112,26607,0,0,0,0,9 +"1168",2009,29163,"MO","29","163",18544,0.912532355478861,1130,0.119661345987921,7.02997291170639,7.77022320415879,8.43163530305459,8.86923076923077,406.945198046663,45,11058,0,0,0,0,9 +"1169",2009,29165,"MO","29","165",88219,0.902356635191965,4904,0.124814382389281,8.49780647761605,9.45821555950958,10.2305585932163,7.50769230769231,267.037348648352,146,54674,0,0,0,0,9 +"1170",2009,29167,"MO","29","167",31085,0.978510535628116,2383,0.113784783657713,7.77611547709874,8.21365270303,9.07680897935166,9.71538461538461,510.470444921399,88,17239,0,0,0,0,9 +"1171",2009,29169,"MO","29","169",50630,0.817776022121272,7438,0.0706300612285206,8.91435727448502,8.68710472813351,9.49574485268391,6.96923076923077,303.97123713025,93,30595,0,0,0,0,9 +"1172",2009,29171,"MO","29","171",4988,0.990577385725742,212,0.135926222935044,5.35658627467201,6.30627528694802,7.19218205871325,7.10769230769231,375.657400450789,10,2662,0,0,0,0,9 +"1173",2009,29173,"MO","29","173",10109,0.982985458502325,412,0.151647047185676,6.02102334934953,7.11558212618445,7.98378106897745,8.54615384615385,287.45350016909,17,5914,0,0,0,0,9 +"1174",2009,29175,"MO","29","175",25364,0.924105030752247,1720,0.114256426431162,7.4500795698075,8.1146238864201,8.82511897034506,10.3461538461538,467.782316510739,71,15178,0,0,0,0,9 +"1175",2009,29177,"MO","29","177",23541,0.974427594409753,1155,0.125610636761395,7.05185562295589,8.04686951095958,8.81818627792769,9.77692307692308,516.3765122455,70,13556,0,0,0,0,9 +"1176",2009,29179,"MO","29","179",6667,0.982900854957252,309,0.141742912854357,5.73334127689775,6.68336094576627,7.51697722460432,12.7769230769231,434.192672998643,16,3685,0,0,0,0,9 +"1177",2009,29181,"MO","29","181",14033,0.980973419796195,716,0.130193116226039,6.57368016696065,7.41457288135059,8.27205962221041,9.16923076923077,646.078304690529,50,7739,0,0,0,0,9 +"1178",2009,29183,"MO","29","183",356902,0.927069615748861,21230,0.110089044051308,9.9631705546973,10.8461670187482,11.6044831584506,8.31538461538462,238.740931321419,515,215715,0,0,0,0,9 +"1179",2009,29185,"MO","29","185",9708,0.98259167696745,397,0.155850844664194,5.98393628068719,6.99209642741589,7.85748078694253,9.53076923076923,770.821583004324,41,5319,0,0,0,0,9 +"1180",2009,29186,"MO","29","186",18156,0.984853491958581,916,0.131361533377396,6.82001636467413,7.71690613529839,8.54461378699223,9.16153846153846,511.073253833049,54,10566,0,0,0,0,9 +"1181",2009,29187,"MO","29","187",64864,0.946688455846078,4347,0.112959422792304,8.37724123098879,9.06889200839181,9.75892410134477,10.7384615384615,515.307668990603,204,39588,0,0,0,0,9 +"1182",2009,29189,"MO","29","189",998618,0.721565203110699,59907,0.125012767644885,11.0005486387115,11.7407858743979,12.643346450153,8.73846153846154,336.321916864895,1978,588127,0,0,0,0,9 +"1183",2009,29195,"MO","29","195",23221,0.915852030489643,1766,0.122389216657336,7.4764723811639,7.88306935130575,8.78508063653984,7.56923076923077,377.273070248246,50,13253,0,0,0,0,9 +"1184",2009,29201,"MO","29","201",39185,0.872221513334184,2219,0.123516651780018,7.70481192293259,8.5131851700187,9.36511942576374,8.63076923076923,574.533469914933,129,22453,0,0,0,0,9 +"1185",2009,29203,"MO","29","203",8446,0.980108927302865,444,0.14207909069382,6.09582456243222,6.8596149036542,7.76472054477148,11.8846153846154,416.146483562214,20,4806,0,0,0,0,9 +"1186",2009,29205,"MO","29","205",6369,0.988381221541843,280,0.128277594598838,5.63478960316925,6.44094654063292,7.43543801981455,8.60769230769231,469.759248385203,16,3406,0,0,0,0,9 +"1187",2009,29207,"MO","29","207",29821,0.98262969048657,1600,0.126186244592737,7.37775890822787,8.21797820315073,9.05637300867876,9.29230769230769,499.019782569952,84,16833,0,0,0,0,9 +"1188",2009,29209,"MO","29","209",32214,0.985658409387223,1242,0.174116843608369,7.12447826249342,8.15392513200786,9.1235835080499,11.8615384615385,465.768799102132,83,17820,0,0,0,0,9 +"1189",2009,29213,"MO","29","213",50794,0.967929282986179,3457,0.131354096940584,8.14815643992162,8.71915396346254,9.61979750135388,11.7692307692308,432.558618558825,126,29129,0,0,0,0,9 +"1190",2009,29215,"MO","29","215",25790,0.950872431174874,1478,0.132531989143079,7.29844510150815,7.99091546309133,8.82864061741828,8.97692307692308,424.528301886792,63,14840,0,0,0,0,9 +"1191",2009,29217,"MO","29","217",21071,0.978074130321295,1153,0.129182288453324,7.05012252026906,7.81359155295243,8.69834740045819,7.61538461538461,470.60836827244,55,11687,0,0,0,0,9 +"1192",2009,29219,"MO","29","219",32320,0.964511138613861,1785,0.120235148514851,7.48717369421374,8.29903718161307,9.15292310110623,11.0230769230769,446.4997608037,84,18813,0,0,0,0,9 +"1193",2009,29221,"MO","29","221",25111,0.968021982398152,1460,0.123252757755565,7.28619171470238,8.15334975799889,8.87234697898303,13.8692307692308,587.30368219612,89,15154,0,0,0,0,9 +"1194",2009,29223,"MO","29","223",13486,0.986504523209254,662,0.147486282070295,6.49526555593701,7.35308192051543,8.23747928861363,8.84615384615385,495.248293401151,37,7471,0,0,0,0,9 +"1195",2009,29225,"MO","29","225",35997,0.977803705864378,1854,0.115398505431008,7.5251007461258,8.48363640788739,9.20923976653215,9.42307692307692,450.472506487783,92,20423,0,0,0,0,9 +"1196",2009,29229,"MO","29","229",18633,0.983470187302098,948,0.123705254119036,6.85435450225502,7.67878899819915,8.54539184577492,9.91538461538462,586.714399363564,59,10056,0,0,0,0,9 +"1197",2009,29510,"MO","29","510",318842,0.45493692800823,28253,0.104939123452996,10.2489549256266,10.6142044772061,11.5514728745825,11.4,510.943899045716,1043,204132,0,0,0,0,9 +"1198",2009,28001,"MS","28","001",32305,0.44875406283857,1896,0.131837176907599,7.54750168281497,8.25816336153762,9.12750209366718,9.01538461538462,593.082454206687,113,19053,0,0,0,0,9 +"1199",2009,28003,"MS","28","003",36868,0.876179884995118,1991,0.123196267766084,7.5963923040642,8.48694014824522,9.27939990790768,11.7230769230769,572.618427902134,121,21131,0,0,0,0,9 +"1200",2009,28005,"MS","28","005",13171,0.57801229974945,741,0.138486067876395,6.60800062529609,7.29979736675816,8.2553088117856,10.5,690.662770620268,52,7529,0,0,0,0,9 +"1201",2009,28007,"MS","28","007",19611,0.572280862781092,1040,0.123502116159298,6.94697599213542,7.78779687818117,8.62532985002082,13.1923076923077,396.07695209355,42,10604,0,0,0,0,9 +"1202",2009,28009,"MS","28","009",8689,0.623201749338244,513,0.118195419495914,6.24027584517077,6.99117688712121,7.83518375526675,13.9846153846154,463.990316723825,23,4957,0,0,0,0,9 +"1203",2009,28011,"MS","28","011",34450,0.342612481857765,3070,0.121451378809869,8.02943284058124,8.27842825919907,9.29118275982028,10.4615384615385,798.737797061434,162,20282,0,0,0,0,9 +"1204",2009,28013,"MS","28","013",14940,0.709973226238287,815,0.121151271753681,6.70318811324086,7.56992765524265,8.36613771649628,10.9384615384615,585.704040162563,49,8366,0,0,0,0,9 +"1205",2009,28015,"MS","28","015",10604,0.659751037344398,566,0.14334213504338,6.33859407820318,7.18841273649695,8.02355239240435,10.5923076923077,499.355670103093,31,6208,0,0,0,0,9 +"1206",2009,28017,"MS","28","017",17439,0.562474912552325,1049,0.118412753024829,6.9555926083963,7.69621263934641,8.53660358493606,13.0846153846154,540.099867522674,53,9813,0,0,0,0,9 +"1207",2009,28019,"MS","28","019",8576,0.686800373134328,416,0.13339552238806,6.03068526026126,6.86901445066571,7.79811262882979,12.0538461538462,592.216582064298,28,4728,0,0,0,0,9 +"1208",2009,28021,"MS","28","021",9822,0.149664019547954,1080,0.125839951130116,6.98471632011827,6.90274273715859,7.9973268229981,15.4153846153846,593.782745371987,34,5726,0,0,0,0,9 +"1209",2009,28023,"MS","28","023",16671,0.645792094055546,872,0.1322056265371,6.77078942390898,7.62997570702779,8.49167023418515,10.9615384615385,537.807895019899,50,9297,0,0,0,0,9 +"1210",2009,28025,"MS","28","025",20804,0.412132282253413,1219,0.124639492405307,7.10578612948127,7.79893331004122,8.74113642290101,17.5153846153846,517.519300924748,61,11787,0,0,0,0,9 +"1211",2009,28027,"MS","28","027",26257,0.236698785085882,1865,0.106257378984652,7.53101633207792,8.00770001288403,8.9677591267695,11.9538461538462,711.892797319933,102,14328,0,0,0,0,9 +"1212",2009,28029,"MS","28","029",29484,0.476902726902727,2131,0.119318952652286,7.66434663209862,8.12976444579417,9.07257144223129,10.0538461538462,640.151739671626,108,16871,0,0,0,0,9 +"1213",2009,28031,"MS","28","031",19516,0.639833982373437,1192,0.117544578807133,7.0833878476253,7.75619534394812,8.62819774945915,8.14615384615385,561.694290976059,61,10860,0,0,0,0,9 +"1214",2009,28033,"MS","28","033",159706,0.763208645886817,8641,0.101286113233066,9.0642735958414,10.1359871987744,10.7955470653615,7.02307692307692,370.959194488606,350,94350,0,0,0,0,9 +"1215",2009,28035,"MS","28","035",74863,0.621722346152305,8891,0.0966432015815556,9.09279480812114,9.06612352121577,10.0566806311525,7.72307692307692,467.362172458857,211,45147,0,0,0,0,9 +"1216",2009,28037,"MS","28","037",8112,0.649038461538462,428,0.1267258382643,6.0591231955818,6.87212810133899,7.76726399675731,10.9769230769231,505.716798592788,23,4548,0,0,0,0,9 +"1217",2009,28039,"MS","28","039",22280,0.910188509874327,1301,0.111669658886894,7.1708884785125,8.02943284058124,8.72972059026726,9.9,484.867443497302,62,12787,0,0,0,0,9 +"1218",2009,28041,"MS","28","041",14449,0.727870440860959,1021,0.106235725655755,6.92853781816467,7.69757534680234,8.10379671298179,11.4153846153846,418.006430868167,39,9330,0,0,0,0,9 +"1219",2009,28043,"MS","28","043",22036,0.574832092938827,1189,0.125839535305863,7.08086789669078,7.98002359231065,8.80627428478173,12.1153846153846,618.213521439328,78,12617,0,0,0,0,9 +"1220",2009,28045,"MS","28","045",43471,0.906144326102459,2343,0.134687492811299,7.7591874385078,8.6294498737619,9.45540195859132,7.89230769230769,473.971087763646,120,25318,0,0,0,0,9 +"1221",2009,28047,"MS","28","047",184930,0.730270913318553,14225,0.111274536311037,9.56275625899453,10.0784067795633,10.9368321654091,7.58461538461538,440.104769880441,494,112246,0,0,0,0,9 +"1222",2009,28049,"MS","28","049",244474,0.296792296931371,19665,0.106097171887399,9.88659568486591,10.3115492864916,11.2524045005808,8.13076923076923,473.281487813523,681,143889,0,0,0,0,9 +"1223",2009,28051,"MS","28","051",19461,0.162273264477673,1477,0.105390267714917,7.29776828253138,7.63723438878947,8.64488255255713,18.9769230769231,840.336134453781,88,10472,0,0,0,0,9 +"1224",2009,28053,"MS","28","053",9517,0.246085951455291,636,0.109698434380582,6.45519856334012,6.94505106372583,7.9536697786498,12.4076923076923,1043.64326375712,55,5270,0,0,0,0,9 +"1225",2009,28057,"MS","28","057",23329,0.931030048437567,1511,0.119207852886965,7.32052696227274,8.02812905943176,8.79437027922287,11.3769230769231,525.074195266722,69,13141,0,0,0,0,9 +"1226",2009,28059,"MS","28","059",139176,0.750890958211186,8374,0.116938265218141,9.03288694657909,9.85492736192075,10.6407712285842,8.16923076923077,491.326339679129,407,82837,0,0,0,0,9 +"1227",2009,28061,"MS","28","061",17344,0.463387915129151,955,0.129439575645756,6.86171134048073,7.65396918047877,8.52793528794814,10.4846153846154,548.334687246141,54,9848,0,0,0,0,9 +"1228",2009,28063,"MS","28","063",7842,0.13976026523846,619,0.117827084927314,6.4281052726846,6.85329909318608,7.77569574991525,16.4615384615385,578.751550227367,28,4838,0,0,0,0,9 +"1229",2009,28065,"MS","28","065",12553,0.393531426750578,754,0.134071536684458,6.62539236800796,7.35819375273303,8.24222989137223,10.3230769230769,748.959778085992,54,7210,0,0,0,0,9 +"1230",2009,28067,"MS","28","067",67443,0.703512595821657,4454,0.116053556336462,8.40155784781731,9.00663173330058,9.87080939014555,7.36153846153846,513.048713451823,196,38203,0,0,0,0,9 +"1231",2009,28069,"MS","28","069",10526,0.358350750522516,695,0.121413642409272,6.54391184556479,7.16162200293919,8.00869818298853,12.4230769230769,471.142520612485,28,5943,0,0,0,0,9 +"1232",2009,28071,"MS","28","071",46712,0.731996060969344,8883,0.0895487240965919,9.0918946167697,8.48052920704465,9.58706301121869,7.89230769230769,310.580204778157,91,29300,0,0,0,0,9 +"1233",2009,28073,"MS","28","073",54197,0.796058822444047,4660,0.100079340184881,8.44677072711969,8.88972179927814,9.73115592977152,6.6,291.786964801278,95,32558,0,0,0,0,9 +"1234",2009,28075,"MS","28","075",80275,0.559676113360324,5308,0.115876673933354,8.5769703954521,9.22532750178443,10.0705262524656,9.34615384615385,433.134813210612,200,46175,0,0,0,0,9 +"1235",2009,28077,"MS","28","077",13054,0.682549410142485,759,0.124636126857668,6.63200177739563,7.40000951716269,8.23774380389093,11.0153846153846,544.705726052876,41,7527,0,0,0,0,9 +"1236",2009,28079,"MS","28","079",23790,0.51807482135351,1434,0.104833963850357,7.26822302115957,7.94803199063728,8.7516327024723,9.11538461538461,608.888185987664,77,12646,0,0,0,0,9 +"1237",2009,28081,"MS","28","081",82436,0.71363239361444,4734,0.108678247367655,8.46252579007393,9.32384761276978,10.1244286802951,10.3923076923077,483.558994197292,230,47564,0,0,0,0,9 +"1238",2009,28083,"MS","28","083",32508,0.266826627291744,2649,0.104958779377384,7.88193748927207,8.22790983759748,9.16450583563238,12.4076923076923,667.995474869364,124,18563,0,0,0,0,9 +"1239",2009,28085,"MS","28","085",34877,0.690856438340454,1884,0.122143532987356,7.54115245513631,8.40110871239544,9.2351305407834,10.1384615384615,462.497486426704,92,19892,0,0,0,0,9 +"1240",2009,28087,"MS","28","087",59663,0.551296448385096,4561,0.115968020381141,8.4252971767117,8.9270486478257,9.82151798966888,10.4692307692308,430.407889861186,151,35083,0,0,0,0,9 +"1241",2009,28089,"MS","28","089",94071,0.588576713333546,5603,0.111756014074476,8.63105744756528,9.47914538865827,10.2948199290672,6.77692307692308,415.482954545455,234,56320,0,0,0,0,9 +"1242",2009,28091,"MS","28","091",26979,0.667407983987546,1580,0.1190555617332,7.36518012602101,8.09132127353041,8.96559006690791,10.0461538461538,633.117942693036,97,15321,0,0,0,0,9 +"1243",2009,28093,"MS","28","093",37231,0.516907953049878,2548,0.125379388144288,7.84306401669205,8.47969898698866,9.31280670352067,11.6615384615385,568.232264938293,128,22526,0,0,0,0,9 +"1244",2009,28095,"MS","28","095",37258,0.683772612593269,2137,0.124832250791776,7.66715825531915,8.47345026846832,9.30428598481871,13.6384615384615,372.465818010372,79,21210,0,0,0,0,9 +"1245",2009,28097,"MS","28","097",10948,0.535531603945926,561,0.131530873218853,6.3297209055227,7.14519613499717,8.07153089355666,13.7307692307692,530.240265120133,32,6035,0,0,0,0,9 +"1246",2009,28099,"MS","28","099",29694,0.618778204351047,1788,0.116151411059473,7.48885295573346,8.1969879272589,9.05040633405986,9.13846153846154,629.692419472027,104,16516,0,0,0,0,9 +"1247",2009,28101,"MS","28","101",21790,0.638320330426801,1229,0.116383662230381,7.11395610956603,7.91388671485608,8.74129628222515,9.06153846153846,601.353044349787,72,11973,0,0,0,0,9 +"1248",2009,28103,"MS","28","103",11646,0.281384166237335,770,0.111798042246265,6.64639051484773,7.25770767716004,8.14960173573616,18.3307692307692,467.995169082126,31,6624,0,0,0,0,9 +"1249",2009,28105,"MS","28","105",47400,0.600696202531646,10788,0.0813713080168776,9.28618968425962,8.35537989525363,9.61613875787447,8.69230769230769,309.587326680499,94,30363,0,0,0,0,9 +"1250",2009,28107,"MS","28","107",34768,0.506212609295904,2170,0.117004141739531,7.68248244653451,8.3774712482411,9.2498495050709,12.0923076923077,615.167406212182,122,19832,0,0,0,0,9 +"1251",2009,28109,"MS","28","109",56085,0.860996701435321,3404,0.129606846750468,8.13270648969326,8.8685540405312,9.70008535213093,8.92307692307692,536.134870459898,173,32268,0,0,0,0,9 +"1252",2009,28111,"MS","28","111",12206,0.790021300999508,674,0.126822873996395,6.51323011091231,7.34665516317654,8.17807746384961,10.5923076923077,642.123287671233,45,7008,0,0,0,0,9 +"1253",2009,28113,"MS","28","113",40332,0.476247148666072,2285,0.121218883268868,7.7341213033283,8.47699600166482,9.38999170021426,9.97692307692308,692.871419053964,156,22515,0,0,0,0,9 +"1254",2009,28115,"MS","28","115",29770,0.849109842122943,1772,0.111454484380249,7.47986413116503,8.29329935871132,9.05625635659347,10.0692307692308,350.754121360926,60,17106,0,0,0,0,9 +"1255",2009,28117,"MS","28","117",25553,0.853911478104332,1900,0.117403044652291,7.54960916515453,8.09833884618906,8.90123035211078,12.7461538461538,381.497377205532,56,14679,0,0,0,0,9 +"1256",2009,28119,"MS","28","119",8336,0.298464491362764,553,0.119241842610365,6.31535800152233,6.94022246911964,7.79893331004122,12.2461538461538,914.504466184602,43,4702,0,0,0,0,9 +"1257",2009,28121,"MS","28","121",140634,0.793911856307863,8353,0.114318016980247,9.03037603475591,9.92695990872127,10.7060271098673,5.92307692307692,358.472836111788,309,86199,0,0,0,0,9 +"1258",2009,28123,"MS","28","123",28101,0.595281306715064,1920,0.111953311270062,7.56008046502183,8.16848641712668,9.0079793598445,6.92307692307692,581.179671077037,94,16174,0,0,0,0,9 +"1259",2009,28125,"MS","28","125",5076,0.28230890464933,299,0.135933806146572,5.70044357339069,6.34212141872115,7.36391350140582,10.6615384615385,757.314974182444,22,2905,0,0,0,0,9 +"1260",2009,28127,"MS","28","127",27512,0.637321895899971,1563,0.125835998836871,7.35436233042148,8.11731246160197,8.99727090623345,8.46923076923077,549.415447518048,86,15653,0,0,0,0,9 +"1261",2009,28129,"MS","28","129",16520,0.763256658595642,974,0.121610169491525,6.88141130364254,7.65917136766606,8.46104603079324,9.00769230769231,418.006430868167,39,9330,0,0,0,0,9 +"1262",2009,28131,"MS","28","131",17408,0.796185661764706,1275,0.119083180147059,7.15070145759253,7.74932246466036,8.5271435222694,7.85384615384615,457.866536775451,47,10265,0,0,0,0,9 +"1263",2009,28133,"MS","28","133",29574,0.260093325218097,2393,0.103232569148576,7.78030308790837,8.27001306227379,8.97651497231511,12.5769230769231,576.923076923077,105,18200,0,0,0,0,9 +"1264",2009,28135,"MS","28","135",15266,0.411175160487358,1295,0.103563474387528,7.16626597413364,7.68982866873648,8.27614021955846,11.0538461538462,460.877762647952,44,9547,0,0,0,0,9 +"1265",2009,28137,"MS","28","137",28509,0.688344031709285,2039,0.120418113578168,7.62021477057445,8.19478163844336,9.04723303410603,10.5692307692308,631.708065010733,103,16305,0,0,0,0,9 +"1266",2009,28139,"MS","28","139",22171,0.832574083261919,1373,0.118803842857787,7.22475340576797,7.96935774201635,8.7662383802531,14.5461538461538,488.650693568726,62,12688,0,0,0,0,9 +"1267",2009,28141,"MS","28","141",19552,0.966959901800327,949,0.132620703764321,6.85540879860993,7.86978390253015,8.62622695244036,12.3461538461538,545.157186988915,60,11006,0,0,0,0,9 +"1268",2009,28143,"MS","28","143",10862,0.255109556251151,788,0.106426072546492,6.66949808985788,7.1731917424866,8.12681372072611,14.3307692307692,600.031580609506,38,6333,0,0,0,0,9 +"1269",2009,28145,"MS","28","145",27070,0.846545991872922,1633,0.116808274843,7.39817409297047,8.21743853773019,8.96546232851597,10.2230769230769,399.433062749646,62,15522,0,0,0,0,9 +"1270",2009,28147,"MS","28","147",15505,0.537568526281845,864,0.125185424056756,6.76157276880406,7.47986413116503,8.39366870513074,11.1923076923077,591.922005571031,51,8616,0,0,0,0,9 +"1271",2009,28149,"MS","28","149",48548,0.51647853670594,2599,0.125628244211914,7.86288203464149,8.71423914360857,9.60824362787706,9.68461538461538,546.54442877292,155,28360,0,0,0,0,9 +"1272",2009,28151,"MS","28","151",51565,0.278018035489188,3310,0.1206244545719,8.10470346837111,8.68592279469073,9.66706877402189,13.4307692307692,701.585445541149,204,29077,0,0,0,0,9 +"1273",2009,28153,"MS","28","153",20763,0.605500168569089,1234,0.118142850262486,7.11801620446533,7.81480342948936,8.72566970568704,10.6692307692308,456.235214599527,54,11836,0,0,0,0,9 +"1274",2009,28155,"MS","28","155",10164,0.795848091302637,594,0.118162140889414,6.38687931936265,7.1785454837637,7.986504938554,13.5538461538462,537.541182590602,31,5767,0,0,0,0,9 +"1275",2009,28157,"MS","28","157",9994,0.291875125075045,720,0.114368621172704,6.5792512120101,7.10085190894405,7.87929148508227,10.6230769230769,657.462195923734,40,6084,0,0,0,0,9 +"1276",2009,28159,"MS","28","159",19211,0.527926708656499,1083,0.127426994950809,6.98749024700099,7.74240202181578,8.61359368570255,16.6461538461538,519.191544594845,56,10786,0,0,0,0,9 +"1277",2009,28161,"MS","28","161",12827,0.612614017307243,684,0.134715833788103,6.52795791762255,7.36770857237437,8.23350314023399,13.9692307692308,606.478290833908,44,7255,0,0,0,0,9 +"1278",2009,28163,"MS","28","163",28201,0.41785752278288,1762,0.0974078933371157,7.47420480649612,8.30375241556341,8.86615849228492,11.5307692307692,517.860295415759,88,16993,0,0,0,0,9 +"1279",2009,37001,"NC","37","001",149954,0.774750923616576,10519,0.116855835789642,9.26093842473927,9.95065735701252,10.7325414274565,12.1538461538462,382.814369210787,336,87771,0,0,0,0,9 +"1280",2009,37003,"NC","37","003",37053,0.924486546298545,1841,0.130596712816776,7.51806418123308,8.6095900406822,9.28070563463675,14.4692307692308,485.218797735646,108,22258,0,0,0,0,9 +"1281",2009,37005,"NC","37","005",11125,0.973033707865169,477,0.156943820224719,6.16751649088834,7.20711885620776,8.04076899436758,12.4153846153846,536.78560151563,34,6334,0,0,0,0,9 +"1282",2009,37007,"NC","37","007",26917,0.487201396886726,1667,0.126537132667088,7.41878088275079,8.22013395715186,8.8858559930003,15.3769230769231,459.925185503158,75,16307,0,0,0,0,9 +"1283",2009,37009,"NC","37","009",27144,0.983642793987622,1189,0.155135573239022,7.08086789669078,8.15679704667565,8.97170239970333,12.5153846153846,495.422049416782,79,15946,0,0,0,0,9 +"1284",2009,37011,"NC","37","011",17925,0.949846582984658,1243,0.137015341701534,7.12528309151071,7.86633892304654,8.45340105832846,9.68461538461538,409.945637643704,46,11221,0,0,0,0,9 +"1285",2009,37013,"NC","37","013",47485,0.720122143834895,2268,0.154764662525008,7.72665366484764,8.64611397148308,9.56008133131199,11.8384615384615,567.640811543251,155,27306,0,0,0,0,9 +"1286",2009,37015,"NC","37","015",21216,0.35770173453997,1287,0.134662518853695,7.16006920759613,7.83597458172157,8.72404474595347,11.4076923076923,500.516405815524,63,12587,0,0,0,0,9 +"1287",2009,37017,"NC","37","017",34852,0.607282221967176,1891,0.14550097555377,7.54486106865846,8.38981426208641,9.26662618298677,12.7,663.026521060842,136,20512,0,0,0,0,9 +"1288",2009,37019,"NC","37","019",105777,0.863202775650661,4620,0.182771301889825,8.43814998407578,9.42060129745938,10.3799080495779,11.1769230769231,467.554318810568,289,61811,0,0,0,0,9 +"1289",2009,37021,"NC","37","021",236349,0.911448747403205,14501,0.133929062530411,9.5819728915479,10.3724906814483,11.2177487107562,8.7,366.84039674135,530,144477,0,0,0,0,9 +"1290",2009,37023,"NC","37","023",91178,0.878654938691351,5205,0.129724275592797,8.55737498104907,9.43316387207947,10.1825954717678,14.7076923076923,486.988567990373,259,53184,0,0,0,0,9 +"1291",2009,37025,"NC","37","025",175993,0.811674327956226,8972,0.103543890950208,9.1018638956401,10.2500869077773,10.8841230367759,11.4153846153846,348.670333163172,362,103823,0,0,0,0,9 +"1292",2009,37027,"NC","37","027",82798,0.933657817821687,4239,0.134725476460784,8.35208267135264,9.42076335888101,10.1105017219205,15.6307692307692,477.467593156975,235,49218,0,0,0,0,9 +"1293",2009,37031,"NC","37","031",65670,0.916445865692097,3311,0.160925841327851,8.10500553754725,9.00023643416978,9.89842475819367,9.06153846153846,545.200963611005,215,39435,0,0,0,0,9 +"1294",2009,37033,"NC","37","033",23725,0.646111696522655,1186,0.148703898840885,7.07834157955767,8.07527154629746,8.83695515733143,13.0307692307692,413.052457662123,60,14526,0,0,0,0,9 +"1295",2009,37035,"NC","37","035",154610,0.867971023866503,8622,0.124759071211435,9.06207235530708,10.0161910424492,10.7469925146846,14.5307692307692,432.336135914315,398,92058,0,0,0,0,9 +"1296",2009,37037,"NC","37","037",62693,0.830985915492958,2756,0.145343180259359,7.92153563213355,9.06981313683921,9.84060099948094,8.27692307692308,336.405655991029,123,36563,0,0,0,0,9 +"1297",2009,37039,"NC","37","039",27378,0.960150485791511,1080,0.171159325005479,6.98471632011827,8.07620452723903,8.97537724385663,15.9230769230769,428.321111039003,66,15409,0,0,0,0,9 +"1298",2009,37041,"NC","37","041",14915,0.638082467314784,750,0.145222929936306,6.62007320653036,7.38770923908104,8.38297584929643,12.2923076923077,420.268972142171,35,8328,0,0,0,0,9 +"1299",2009,37043,"NC","37","043",10540,0.985294117647059,470,0.179506641366224,6.1527326947041,7.0335064842877,8.01961279440027,12.1692307692308,556.211023091185,33,5933,0,0,0,0,9 +"1300",2009,37045,"NC","37","045",98211,0.773925527690381,5770,0.131095294824409,8.66042735950215,9.5101486242258,10.2947523112432,15.6692307692308,547.105047653895,314,57393,0,0,0,0,9 +"1301",2009,37047,"NC","37","047",58163,0.644877327510617,3479,0.132455341024363,8.15450017515194,8.9457235724554,9.72531736686465,13.4076923076923,546.845457983071,188,34379,0,0,0,0,9 +"1302",2009,37049,"NC","37","049",101923,0.732376401793511,9600,0.117922353148946,9.16951837745593,9.33767762043738,10.2914334244254,10.8153846153846,378.10345981396,226,59772,0,0,0,0,9 +"1303",2009,37051,"NC","37","051",317252,0.558461412378803,30870,0.093865444504684,10.3375401174962,10.6180781703897,11.50745050469,9.32307692307692,393.323400398012,755,191954,0,0,0,0,9 +"1304",2009,37053,"NC","37","053",23335,0.920205699592886,1127,0.12924791086351,7.02731451403978,8.16536363247398,8.88308552440458,7.16923076923077,355.946398659967,51,14328,0,0,0,0,9 +"1305",2009,37055,"NC","37","055",33679,0.956649544226372,1588,0.153894117996378,7.37023064180708,8.44009614103127,9.27565983809682,10.9384615384615,342.980642736328,73,21284,0,0,0,0,9 +"1306",2009,37057,"NC","37","057",162406,0.884253044838245,8297,0.126442372818738,9.02364928266429,10.0884722267496,10.7984320663907,13.3076923076923,441.560595381235,426,96476,0,0,0,0,9 +"1307",2009,37059,"NC","37","059",41035,0.919239673449494,1696,0.136298281954429,7.43602781635185,8.66664714458457,9.39615581802439,11.8230769230769,296.170932938439,70,23635,0,0,0,0,9 +"1308",2009,37061,"NC","37","061",57434,0.711790925235923,3409,0.123028171466379,8.1341742721379,8.93471861401677,9.72681003812726,9.84615384615385,410.893167776378,137,33342,0,0,0,0,9 +"1309",2009,37063,"NC","37","063",265356,0.54261068149957,22781,0.102628167442982,10.033682134194,10.537494945867,11.4030101474894,8.1,290.491668862924,496,170745,0,0,0,0,9 +"1310",2009,37065,"NC","37","065",56237,0.409605775557018,3272,0.134857833810481,8.09315669772264,8.84735987547417,9.78273135140033,16.4384615384615,509.550253249527,167,32774,0,0,0,0,9 +"1311",2009,37067,"NC","37","067",348532,0.693646494439535,23857,0.115897535950788,10.0798329543017,10.7737134032812,11.6033053288988,9.86153846153846,359.21857920866,746,207673,0,0,0,0,9 +"1312",2009,37069,"NC","37","069",59959,0.70594906519455,3266,0.12328424423356,8.09132127353041,9.1034230896301,9.79896002318219,10.7076923076923,417.623143513013,151,36157,0,0,0,0,9 +"1313",2009,37071,"NC","37","071",205884,0.822822560276661,12101,0.122209593751821,9.40104337279805,10.3473717705482,11.0615001844857,14.3461538461538,486.904368435054,604,124049,0,0,0,0,9 +"1314",2009,37073,"NC","37","073",12138,0.644010545394628,627,0.130911188004614,6.44094654063292,7.40853056689463,8.20248244657654,7.76153846153846,577.383467117307,41,7101,0,0,0,0,9 +"1315",2009,37075,"NC","37","075",8749,0.921819636529889,425,0.149045605212024,6.05208916892442,6.96129604591017,7.82204400818562,17.8384615384615,428.833979987748,21,4897,0,0,0,0,9 +"1316",2009,37077,"NC","37","077",59411,0.643180555789332,3349,0.123310498055916,8.1164170727942,9.15957325492253,9.71208488700598,10.9307692307692,448.527425020265,166,37010,0,0,0,0,9 +"1317",2009,37079,"NC","37","079",21253,0.587916999952948,1343,0.118806756693173,7.20266119652324,7.99361999482774,8.64011853825354,10.8923076923077,326.474831068256,43,13171,0,0,0,0,9 +"1318",2009,37081,"NC","37","081",484180,0.613990664628857,38704,0.112910487835103,10.5636982328498,11.1218365228066,11.9430181429031,11.0769230769231,327.162681643447,960,293432,0,0,0,0,9 +"1319",2009,37083,"NC","37","083",55033,0.412170879290607,3081,0.135900278015009,8.03300949859667,8.83419131820207,9.70564618408414,14.1307692307692,679.095796522778,216,31807,0,0,0,0,9 +"1320",2009,37085,"NC","37","085",111866,0.743460926465593,7686,0.0999499401069136,8.94715577112479,9.69713966113932,10.4169995647274,11.8615384615385,391.54148511533,257,65638,0,0,0,0,9 +"1321",2009,37087,"NC","37","087",59152,0.977600081146876,2836,0.148143765215039,7.95014988765202,8.9550609506319,9.76388059814971,9.99230769230769,410.0778852962,139,33896,0,0,0,0,9 +"1322",2009,37089,"NC","37","089",105813,0.9461786358954,4608,0.141816222959372,8.43554920237573,9.48789634812895,10.3080522554011,9.2,375.247322098656,220,58628,0,0,0,0,9 +"1323",2009,37091,"NC","37","091",24580,0.366436126932465,1557,0.133604556550041,7.350516171834,8.01102337918644,8.88322423027899,10.1,407.149265061072,59,14491,0,0,0,0,9 +"1324",2009,37093,"NC","37","093",45406,0.515460511826631,3031,0.0896797780029071,8.0166478770578,8.7558950816463,9.54702687135578,8.36153846153846,316.665439281243,86,27158,0,0,0,0,9 +"1325",2009,37097,"NC","37","097",158387,0.84901538636378,8245,0.115508217214797,9.0173622349937,10.0998352810632,10.767157793898,13.2461538461538,413.024685428873,387,93699,0,0,0,0,9 +"1326",2009,37099,"NC","37","099",39856,0.865490766760337,5164,0.130494781212365,8.54946675196653,8.38045666784277,9.39897529082673,9.32307692307692,313.208324747579,76,24265,0,0,0,0,9 +"1327",2009,37101,"NC","37","101",166478,0.822174701762395,8172,0.107371544588474,9.00846895593751,10.2362385883555,10.826694313452,10.3615384615385,362.599840858959,360,99283,0,0,0,0,9 +"1328",2009,37103,"NC","37","103",10143,0.651878142561372,568,0.148772552499261,6.34212141872115,7.06133436691044,8.02910705461974,11.2153846153846,383.397232872145,23,5999,0,0,0,0,9 +"1329",2009,37105,"NC","37","105",57359,0.766523126274865,3411,0.115640091354452,8.13476078241865,8.96954188542325,9.73441780141792,14.7615384615385,419.463087248322,140,33376,0,0,0,0,9 +"1330",2009,37107,"NC","37","107",59421,0.571818044125814,3204,0.13559179414685,8.07215530818825,8.87752145385287,9.78543573075999,12.3461538461538,604.194163367063,206,34095,0,0,0,0,9 +"1331",2009,37109,"NC","37","109",77573,0.929459992523172,3861,0.130960514612043,8.25868149626424,9.4111565114063,10.0733990892534,14.4230769230769,411.156324177687,194,47184,0,0,0,0,9 +"1332",2009,37111,"NC","37","111",44865,0.94062186559679,2238,0.137635127605037,7.71333788887187,8.76201995356159,9.48074911575751,15.8615384615385,452.437930002991,121,26744,0,0,0,0,9 +"1333",2009,37113,"NC","37","113",33820,0.970047309284447,1734,0.159225310467179,7.45818615734049,8.18841130807903,9.15936281721132,11.5153846153846,397.294105014496,74,18626,0,0,0,0,9 +"1334",2009,37115,"NC","37","115",20700,0.980144927536232,1290,0.149371980676329,7.16239749735572,7.86863689418417,8.72143930562598,9.81538461538462,401.80401804018,49,12195,0,0,0,0,9 +"1335",2009,37117,"NC","37","117",24408,0.548959357587676,1260,0.152163225172075,7.13886699994552,8.00636756765025,8.91664022719884,11.1076923076923,566.772936592278,80,14115,0,0,0,0,9 +"1336",2009,37119,"NC","37","119",908704,0.62267140895165,63222,0.0954458217417333,11.0544076208276,11.8880069641106,12.600823898041,11.0230769230769,271.036676119005,1557,574461,0,0,0,0,9 +"1337",2009,37121,"NC","37","121",15671,0.983408844362198,783,0.14893752791781,6.6631326959908,7.5847730776122,8.43381158247719,12.9384615384615,494.39683586025,45,9102,0,0,0,0,9 +"1338",2009,37123,"NC","37","123",27710,0.777120173222663,1479,0.133453626849513,7.2991214627108,8.19063168090354,9.01225522000275,14.0307692307692,461.059190031153,74,16050,0,0,0,0,9 +"1339",2009,37125,"NC","37","125",87244,0.838143597267434,3711,0.137694282701389,8.2190566610606,9.25903529351494,10.1084671332227,10.5846153846154,379.919747289337,178,46852,0,0,0,0,9 +"1340",2009,37127,"NC","37","127",95492,0.601013697482512,5308,0.132136723495162,8.5769703954521,9.46575748384069,10.2805531861226,12.5461538461538,486.180838133488,276,56769,0,0,0,0,9 +"1341",2009,37129,"NC","37","129",200178,0.822602883433744,18448,0.122590894104247,9.82271124250884,10.1877262032101,11.0704280474057,9.65384615384615,340.860334662874,429,125858,0,0,0,0,9 +"1342",2009,37131,"NC","37","131",22102,0.399375622115646,1133,0.149036286308931,7.03262426102801,7.82364593083495,8.75683981482946,11.8076923076923,622.307324078506,78,12534,0,0,0,0,9 +"1343",2009,37133,"NC","37","133",173064,0.788789118476402,31994,0.0721178292423612,10.3733036642015,9.82773977509785,10.7857043040765,8.85384615384615,283.467192841064,306,107949,0,0,0,0,9 +"1344",2009,37135,"NC","37","135",132369,0.79557147066156,17040,0.112518792164329,9.74331880038331,9.74619026064691,10.6981302894117,6.74615384615385,229.195217617315,194,84644,0,0,0,0,9 +"1345",2009,37137,"NC","37","137",13136,0.781516443361754,623,0.167859317904994,6.43454651878745,7.29437729928882,8.19505769089508,10.4076923076923,455.491931285789,35,7684,0,0,0,0,9 +"1346",2009,37139,"NC","37","139",40541,0.592239954613848,3475,0.113317382402999,8.15334975799889,8.52098598965493,9.40459049963541,10.3615384615385,393.61922519163,95,24135,0,0,0,0,9 +"1347",2009,37141,"NC","37","141",51636,0.796672863893408,2627,0.138508017662096,7.87359778968554,8.87738195465477,9.63187566026184,11.4153846153846,402.049153751378,124,30842,0,0,0,0,9 +"1348",2009,37143,"NC","37","143",13273,0.733820537934152,643,0.15595569954042,6.46614472423762,7.29979736675816,8.2666784433059,11.0307692307692,375.234521575985,28,7462,0,0,0,0,9 +"1349",2009,37145,"NC","37","145",39335,0.70814795983221,1950,0.135528155586628,7.57558465155779,8.58110651715989,9.38462975707287,11.7923076923077,451.089057868282,105,23277,0,0,0,0,9 +"1350",2009,37147,"NC","37","147",165581,0.625264976054016,21333,0.100005435406236,9.96801044855163,9.92122923401229,10.9026293526375,10.4923076923077,310.331703603946,318,102471,0,0,0,0,9 +"1351",2009,37149,"NC","37","149",20531,0.9407724903804,818,0.161024791778286,6.70686233660275,7.81561053203519,8.6675079520751,9.49230769230769,364.47684238599,41,11249,0,0,0,0,9 +"1352",2009,37151,"NC","37","151",141175,0.915353284930051,7622,0.124349211970958,8.9387940814338,9.94241976253791,10.6464006115776,11.7230769230769,426.986506746627,356,83375,0,0,0,0,9 +"1353",2009,37153,"NC","37","153",46537,0.643273094526936,2828,0.12875776264048,7.94732502701646,8.73182058296211,9.51922115556896,14.5538461538462,546.77109501995,148,27068,0,0,0,0,9 +"1354",2009,37155,"NC","37","155",132984,0.337085664440835,9555,0.114224267581062,9.16481985667437,9.76428295481558,10.5882748867516,12.4076923076923,525.450709876144,406,77267,0,0,0,0,9 +"1355",2009,37157,"NC","37","157",93547,0.792959688712626,4824,0.136198916052893,8.48135873840702,9.48044384215367,10.2532285118719,13.1846153846154,519.799299714832,288,55406,0,0,0,0,9 +"1356",2009,37159,"NC","37","159",138562,0.813541952339025,8624,0.122580505477692,9.06230429314878,9.85087760226383,10.6163883395829,13.2307692307692,464.962619452568,380,81727,0,0,0,0,9 +"1357",2009,37161,"NC","37","161",67561,0.883423868800047,3309,0.139799588520004,8.10440130792161,9.11327865913305,9.89267935381952,16.9307692307692,496.577985900273,193,38866,0,0,0,0,9 +"1358",2009,37163,"NC","37","163",63127,0.6768419218401,3409,0.121136756063174,8.1341742721379,9.06900719585954,9.80939662913653,9.17692307692308,470.245297547025,171,36364,0,0,0,0,9 +"1359",2009,37165,"NC","37","165",36313,0.483160300718751,2274,0.134497287472806,7.72929567431048,8.43141741439483,9.29486532704587,17.5076923076923,596.901795442702,126,21109,0,0,0,0,9 +"1360",2009,37167,"NC","37","167",60496,0.860850304152341,3760,0.129496165035705,8.23217423638394,9.03252863066006,9.77195416257428,12.5538461538462,387.792952284606,138,35586,0,0,0,0,9 +"1361",2009,37169,"NC","37","169",47422,0.949116443844629,2259,0.136202606385222,7.722677516468,8.84318209802261,9.56766510475641,11.0461538461538,461.795318105929,130,28151,0,0,0,0,9 +"1362",2009,37171,"NC","37","171",73505,0.946439017753894,3587,0.131147540983607,8.18507147753228,9.24696155543183,9.96307634394778,12.9692307692308,451.97472727703,191,42259,0,0,0,0,9 +"1363",2009,37173,"NC","37","173",13933,0.692097897078877,771,0.136869303093375,6.64768837356333,7.41457288135059,8.30943074214033,12.5076923076923,712.7672877329,57,7997,0,0,0,0,9 +"1364",2009,37175,"NC","37","175",32852,0.946609034457567,1811,0.15344575672714,7.50163445788341,8.12474302038557,9.10941445338622,9.7,406.894602995196,72,17695,0,0,0,0,9 +"1365",2009,37179,"NC","37","179",198533,0.851299280220417,9103,0.0981902253025945,9.11635930850529,10.4426965306939,10.9668870854485,10.4307692307692,283.573729169584,324,114256,0,0,0,0,9 +"1366",2009,37181,"NC","37","181",45223,0.474758419388364,2748,0.128385998275214,7.91862865334224,8.69131455164485,9.52784820132521,14.2230769230769,558.896083872957,145,25944,0,0,0,0,9 +"1367",2009,37183,"NC","37","183",883624,0.716707558871194,60027,0.0961200691696921,11.0025497399846,11.8844062593573,12.5604058497354,8.6,197.637019308866,1095,554046,0,0,0,0,9 +"1368",2009,37185,"NC","37","185",20959,0.404313182880863,1188,0.154110406030822,7.08002649992259,7.77022320415879,8.65851912750667,13.7076923076923,551.258844824749,67,12154,0,0,0,0,9 +"1369",2009,37187,"NC","37","187",13252,0.479248415333535,636,0.155221853305161,6.45519856334012,7.3178761986265,8.27893600229198,12.2692307692308,472.525988929391,35,7407,0,0,0,0,9 +"1370",2009,37189,"NC","37","189",50706,0.966374787993531,11438,0.111702757070169,9.34469642447526,8.44074401925283,9.67451454289836,8.29230769230769,241.531123884065,79,32708,0,0,0,0,9 +"1371",2009,37191,"NC","37","191",121217,0.650205829215374,8723,0.116312068439245,9.07371849443322,9.65713934357732,10.4975875794948,9.13076923076923,478.215406064831,343,71725,0,0,0,0,9 +"1372",2009,37193,"NC","37","193",69258,0.946446619885067,3412,0.137630309855901,8.13505390861157,9.13733947909169,9.91175329695316,13.2076923076923,484.285431903538,196,40472,0,0,0,0,9 +"1373",2009,37195,"NC","37","195",80664,0.582874640483983,4843,0.12769017157592,8.48528964240323,9.26520727341702,10.1088743822611,13.1692307692308,434.005616543273,204,47004,0,0,0,0,9 +"1374",2009,37197,"NC","37","197",38293,0.956597811610477,1940,0.130023764134437,7.57044325205737,8.61395685984855,9.32652212626559,10.8384615384615,427.677486156755,95,22213,0,0,0,0,9 +"1375",2009,37199,"NC","37","199",17931,0.979644191623445,806,0.153532987563438,6.69208374250663,7.74500280351584,8.55410354543633,12.4461538461538,504.315779264863,52,10311,0,0,0,0,9 +"1376",2009,38003,"ND","38","003",11028,0.976060935799782,731,0.141820819731592,6.59441345974978,7.0604763659998,8.00703401219341,4.13076923076923,385.852090032154,24,6220,1,0,0,0,9 +"1377",2009,38005,"ND","38","005",6609,0.447874111060675,373,0.110001513088213,5.92157841964382,6.56667242980324,7.40184157874383,5.76923076923077,1046.02510460251,35,3346,1,0,0,0,9 +"1378",2009,38015,"ND","38","015",80122,0.94138938119368,5971,0.120229150545418,8.69466969654699,9.19023970026918,10.1026662263965,3.40769230769231,251.729360239041,123,48862,1,0,0,0,9 +"1379",2009,38017,"ND","38","017",147872,0.935964888552261,18460,0.099782244103008,9.82336150805684,9.80730699406216,10.7443001432343,3.93846153846154,231.399074403702,221,95506,1,0,0,0,9 +"1380",2009,38035,"ND","38","035",66518,0.926035058179741,10799,0.100664481794402,9.28720881623276,8.85123390284603,9.91254639702447,3.78461538461538,240.033887137008,102,42494,1,0,0,0,9 +"1381",2009,38053,"ND","38","053",6159,0.761974346484819,369,0.131027764247443,5.91079664404053,6.49223983502047,7.40610338123702,3.1,513.845275478162,18,3503,1,0,0,0,9 +"1382",2009,38055,"ND","38","055",8860,0.919300225733634,296,0.176523702031603,5.69035945432406,6.83087423464618,7.78779687818117,4.54615384615385,497.809637594584,25,5022,1,0,0,0,9 +"1383",2009,38057,"ND","38","057",8390,0.967342073897497,316,0.151609058402861,5.75574221358691,6.78558764500793,7.78322401633604,4.12307692307692,196.850393700787,10,5080,1,0,0,0,9 +"1384",2009,38059,"ND","38","059",27043,0.951928410309507,1401,0.126908996782901,7.24494154633701,8.08548677210285,8.97903863296051,4.16923076923077,231.409093751954,37,15989,1,0,0,0,9 +"1385",2009,38061,"ND","38","061",7439,0.666084151095577,566,0.127974190079312,6.33859407820318,6.69950034016168,7.54327334670545,3.78461538461538,369.259173782599,16,4333,1,0,0,0,9 +"1386",2009,38067,"ND","38","067",7407,0.973133522343729,326,0.149858242203321,5.78689738136671,6.65286302935335,7.58018941794454,5.64615384615385,456.730769230769,19,4160,1,0,0,0,9 +"1387",2009,38071,"ND","38","071",11328,0.89256709039548,666,0.13135593220339,6.50128967054039,7.09506437728713,8.06495089174914,4.00769230769231,451.010886469673,29,6430,1,0,0,0,9 +"1388",2009,38077,"ND","38","077",16178,0.96192359995055,1352,0.121584868339721,7.20934025660291,7.4500795698075,8.38366179879172,4.91538461538462,375.496191395773,35,9321,1,0,0,0,9 +"1389",2009,38079,"ND","38","079",13798,0.210682707638788,915,0.100594289027395,6.81892406527552,7.3664451483276,8.23244015847034,11,586.310335424052,43,7334,1,0,0,0,9 +"1390",2009,38085,"ND","38","085",4134,0.122157716497339,327,0.0737784228350266,5.78996017089725,6.28226674689601,6.96790920180188,4.76923076923077,1167.67865483419,25,2141,1,0,0,0,9 +"1391",2009,38089,"ND","38","089",23786,0.965441856554276,2143,0.116160766837636,7.66996199547358,7.8458075026378,8.82187986268384,3.04615384615385,327.495372347999,46,14046,1,0,0,0,9 +"1392",2009,38093,"ND","38","093",21009,0.970155647579609,1556,0.132609833880718,7.34987370473834,7.78030308790837,8.67812085552252,3.38461538461538,312.951372171401,39,12462,1,0,0,0,9 +"1393",2009,38099,"ND","38","099",11195,0.97597141581063,498,0.140955783832068,6.21060007702465,7.05272104923232,7.99598047476376,4.68461538461538,339.805825242718,21,6180,1,0,0,0,9 +"1394",2009,38101,"ND","38","101",60213,0.920897480610499,6235,0.101273811303207,8.73793385811414,8.84130362048157,9.76886985581118,3.53846153846154,276.388159531246,100,36181,1,0,0,0,9 +"1395",2009,38105,"ND","38","105",21820,0.936296975252062,1444,0.125160403299725,7.27517231945277,7.7510451179718,8.69767973226446,2.38461538461538,301.042068699344,39,12955,1,0,0,0,9 +"1396",2009,31001,"NE","31","001",31280,0.964098465473146,2461,0.119149616368286,7.80832305039106,8.15392513200786,9.0663545214478,5.09230769230769,294.767870302137,52,17641,0,0,0,0,9 +"1397",2009,31013,"NE","31","013",11347,0.941658588173085,480,0.143385916982462,6.17378610390194,7.13489085156588,8.06902932877496,6.61538461538461,292.803205424565,19,6489,0,0,0,0,9 +"1398",2009,31019,"NE","31","019",45970,0.970676528170546,5379,0.104198390254514,8.59025776227324,8.52793528794814,9.52449396163376,3.62307692307692,259.332310614362,71,27378,0,0,0,0,9 +"1399",2009,31023,"NE","31","023",8387,0.991176821271015,318,0.132466913079766,5.76205138278018,6.85224256905188,7.69848278788095,4.19230769230769,463.678516228748,21,4529,0,0,0,0,9 +"1400",2009,31025,"NE","31","025",25122,0.985550513494149,1060,0.136653132712364,6.96602418710611,8.10621290261996,8.88405606174246,5.22307692307692,382.879803090387,56,14626,0,0,0,0,9 +"1401",2009,31033,"NE","31","033",10032,0.973086124401914,446,0.121810207336523,6.10031895202006,7.05789793741186,7.95085485771999,4.46923076923077,278.357689631176,16,5748,0,0,0,0,9 +"1402",2009,31037,"NE","31","037",10380,0.948265895953757,655,0.0982658959537572,6.48463523563525,7.14519613499717,7.88945914940452,3.73846153846154,281.442392260334,16,5685,0,0,0,0,9 +"1403",2009,31041,"NE","31","041",10999,0.989999090826439,421,0.137467042458405,6.04263283368238,7.04577657687951,7.95787735848981,3.33846153846154,548.414738646101,32,5835,0,0,0,0,9 +"1404",2009,31043,"NE","31","043",20924,0.896912636207226,1358,0.10337411584783,7.21376830811864,7.85049318087114,8.66354208775137,6.07692307692308,255.929022351135,30,11722,0,0,0,0,9 +"1405",2009,31045,"NE","31","045",9218,0.920698633109134,1343,0.109785202863962,7.20266119652324,6.74523634948436,7.85127199710988,4.42307692307692,362.249761677788,19,5245,0,0,0,0,9 +"1406",2009,31047,"NE","31","047",24212,0.942094829010408,1300,0.114447381463737,7.17011954344963,8.021256180144,8.76405326934776,4.63846153846154,332.251000528581,44,13243,0,0,0,0,9 +"1407",2009,31053,"NE","31","053",36604,0.972516664845372,2194,0.119058026445197,7.69348164083518,8.31727776622123,9.22157700390217,5.05384615384615,360.903742522371,73,20227,0,0,0,0,9 +"1408",2009,31055,"NE","31","055",511902,0.830324945009006,38438,0.105229125887377,10.5568018325943,11.1165737038786,11.9589117223493,5.15384615384615,301.491641192667,934,309793,0,0,0,0,9 +"1409",2009,31067,"NE","31","067",22364,0.98350026828832,1143,0.128062958325881,7.04141166379481,7.86018505747217,8.71915396346254,6.27692307692308,379.062827647391,47,12399,0,0,0,0,9 +"1410",2009,31079,"NE","31","079",57955,0.943663186955396,3452,0.11165559485808,8.14670905220332,8.89027283938025,9.69910441893965,4.25384615384615,300.236550009098,99,32974,0,0,0,0,9 +"1411",2009,31081,"NE","31","081",9113,0.991550532206738,344,0.133216284428838,5.8406416573734,7.01660968389422,7.82364593083495,3.26153846153846,396.432111000991,20,5045,0,0,0,0,9 +"1412",2009,31089,"NE","31","089",10406,0.98962137228522,380,0.139150490101864,5.94017125272043,6.98749024700099,7.90838715929004,3.12307692307692,302.706552706553,17,5616,0,0,0,0,9 +"1413",2009,31095,"NE","31","095",7602,0.986845566956064,302,0.146277295448566,5.71042701737487,6.70073110954781,7.60190195987517,4.83076923076923,292.96875,12,4096,0,0,0,0,9 +"1414",2009,31101,"NE","31","101",8320,0.983413461538462,353,0.153846153846154,5.8664680569333,6.79234442747081,7.74413662762799,4.51538461538462,432.338953739732,20,4626,0,0,0,0,9 +"1415",2009,31107,"NE","31","107",8700,0.903448275862069,288,0.139310344827586,5.66296048013595,6.80682936039218,7.68799716639302,3.6,378.787878787879,17,4488,0,0,0,0,9 +"1416",2009,31109,"NE","31","109",283097,0.908575505921998,31375,0.106680749001226,10.3537666764341,10.4403901960122,11.363566619279,4.33076923076923,207.910836926328,366,176037,0,0,0,0,9 +"1417",2009,31111,"NE","31","111",36280,0.975633958103638,1906,0.130705622932745,7.55276208421415,8.35585004100747,9.2369823029226,4.02307692307692,309.4179075614,64,20684,0,0,0,0,9 +"1418",2009,31119,"NE","31","119",34609,0.958132277731226,2426,0.112022884220867,7.793999089504,8.23615566168312,9.18101454259435,4.35384615384615,321.182768289574,63,19615,0,0,0,0,9 +"1419",2009,31121,"NE","31","121",7813,0.98284909765775,344,0.133111480865225,5.8406416573734,6.7990558620588,7.64300363556072,4.17692307692308,307.038261691072,13,4234,0,0,0,0,9 +"1420",2009,31131,"NE","31","131",15608,0.984046642747309,681,0.127562788313685,6.52356230614951,7.52131798019924,8.36194190614495,4.98461538461538,303.631904706295,26,8563,0,0,0,0,9 +"1421",2009,31137,"NE","31","137",9148,0.989943156974202,397,0.130629645824224,5.98393628068719,6.97354301952014,7.80628928926703,3.55384615384615,200.2002002002,10,4995,0,0,0,0,9 +"1422",2009,31141,"NE","31","141",32017,0.973857638129744,1676,0.116844176531218,7.42416528104203,8.2451219664786,9.07635173197287,4.1,239.088128996386,43,17985,0,0,0,0,9 +"1423",2009,31145,"NE","31","145",11018,0.982029406425849,611,0.121800689780359,6.4150969591716,7.05098944706805,7.99429498641598,4.5,297.520661157025,18,6050,0,0,0,0,9 +"1424",2009,31147,"NE","31","147",8383,0.956936657521174,313,0.140522485983538,5.74620319054015,6.79570577517351,7.7106533235012,6.05384615384615,401.158903498997,18,4487,0,0,0,0,9 +"1425",2009,31151,"NE","31","151",14166,0.956868558520401,1148,0.104687279401384,7.04577657687951,7.45587668749182,8.25140306538056,4.58461538461538,301.091456529921,24,7971,0,0,0,0,9 +"1426",2009,31153,"NE","31","153",156147,0.916360865082262,10235,0.0959352405105446,9.23356849809539,10.0347789382173,10.7741740398053,4.66923076923077,222.785669577026,210,94261,0,0,0,0,9 +"1427",2009,31155,"NE","31","155",20515,0.986643919083597,845,0.130197416524494,6.73933662735717,7.83834331555712,8.63444275146648,5.04615384615385,354.886176750628,41,11553,0,0,0,0,9 +"1428",2009,31157,"NE","31","157",36677,0.95310412520108,2143,0.128909125610055,7.66996199547358,8.29229810706322,9.25004173882773,5.17692307692308,452.755905511811,92,20320,0,0,0,0,9 +"1429",2009,31159,"NE","31","159",16536,0.985304789550073,1363,0.117380261248186,7.21744343169653,7.51316354523408,8.40380050406115,4.1,292.271054340766,27,9238,0,0,0,0,9 +"1430",2009,31173,"NE","31","173",6866,0.394698514418876,446,0.0854937372560443,6.10031895202006,6.58202513889283,7.41997992366183,10.4615384615385,564.971751412429,19,3363,0,0,0,0,9 +"1431",2009,31177,"NE","31","177",20124,0.985937189425562,1039,0.134168157423971,6.94601399109923,7.83991936001258,8.66181288102618,4.60769230769231,319.461232947677,37,11582,0,0,0,0,9 +"1432",2009,31185,"NE","31","185",13689,0.97618525823654,830,0.131200233764336,6.72142570079064,7.30249642372733,8.25009775257285,4.89230769230769,340.49240440021,26,7636,0,0,0,0,9 +"1433",2009,34001,"NJ","34","001",274049,0.731628285452602,17431,0.121036748902569,9.76600550921487,10.5241446821709,11.3342054149579,11.7692307692308,385.620634988646,630,163373,1,0,0,0,9 +"1434",2009,34003,"NJ","34","003",900319,0.779522591437035,46880,0.12372170308524,10.7553464242509,11.7874919022746,12.5352612781337,7.70769230769231,209.643605870021,1133,540441,1,0,0,0,9 +"1435",2009,34005,"NJ","34","005",447391,0.769418696397558,26133,0.121247409983661,10.170954162487,11.0685583929029,11.816608831149,8.34615384615385,322.513832588691,872,270376,1,0,0,0,9 +"1436",2009,34007,"NJ","34","007",513668,0.722692478410179,32711,0.115288474267426,10.3954666917557,11.1735429977329,11.9782619701158,9.8,358.690293957398,1106,308344,1,0,0,0,9 +"1437",2009,34009,"NJ","34","009",97238,0.930634114235176,5358,0.154959995063658,8.58634605010455,9.27190572763434,10.2412090085578,11.4230769230769,481.462781304097,267,55456,1,0,0,0,9 +"1438",2009,34011,"NJ","34","011",156531,0.739808727983594,10443,0.108802729171857,9.25368717647955,10.0183329442052,10.6887352218944,12.4076923076923,381.006659700894,361,94749,1,0,0,0,9 +"1439",2009,34013,"NJ","34","013",781943,0.507325981561316,51919,0.106639486509886,10.8574400907919,11.6726690467509,12.4158674980747,10.2153846153846,360.278458210224,1712,475188,1,0,0,0,9 +"1440",2009,34015,"NJ","34","015",287362,0.85991188814109,18667,0.11653593724988,9.8345125380326,10.6379925840196,11.3956610448096,9.16153846153846,345.473945266315,599,173385,1,0,0,0,9 +"1441",2009,34017,"NJ","34","017",628572,0.686191876189203,47932,0.0963310487899556,10.7775386188024,11.4682104859428,12.2441580991355,10.4153846153846,252.282412414597,1052,416993,1,0,0,0,9 +"1442",2009,34019,"NJ","34","019",128364,0.932574553613163,6123,0.138185160948553,8.71980745147795,9.84054775276225,10.5844356256391,6.63076923076923,225.570579513629,178,78911,1,0,0,0,9 +"1443",2009,34021,"NJ","34","021",365388,0.683665035523881,27189,0.113709262482621,10.2105677587229,10.8716114330503,11.6332918276289,7.50769230769231,262.679781264264,587,223466,1,0,0,0,9 +"1444",2009,34023,"NJ","34","023",805204,0.663778371692143,56952,0.109246849245657,10.9499640867837,11.6840006847911,12.4304474385551,8.41538461538462,231.304403842592,1149,496748,1,0,0,0,9 +"1445",2009,34025,"NJ","34","025",628669,0.862714719510585,33561,0.125762523680983,10.421119957515,11.4025412404807,12.1632121162758,8.24615384615385,290.482897919047,1093,376270,1,0,0,0,9 +"1446",2009,34027,"NJ","34","027",490779,0.868081152616554,23622,0.123629984168027,10.0699337601718,11.2177218431196,11.9145431813495,6.99230769230769,203.957660968748,601,294669,1,0,0,0,9 +"1447",2009,34029,"NJ","34","029",573123,0.941851923583594,29878,0.121621362255572,10.3048777026023,11.1343992252177,11.9605876217782,9.44615384615385,361.920828592726,1107,305868,1,0,0,0,9 +"1448",2009,34031,"NJ","34","031",498641,0.77434266335901,35301,0.108452774641476,10.471666571132,11.1565361945087,11.9366364336863,10.8846153846154,274.012017718775,819,298892,1,0,0,0,9 +"1449",2009,34033,"NJ","34","033",66183,0.830590937249747,3693,0.131211942643881,8.21419441485256,9.07726601775084,9.90028242158718,10.5076923076923,404.040404040404,158,39105,1,0,0,0,9 +"1450",2009,34035,"NJ","34","035",321564,0.756051672450896,14410,0.116421614359816,9.57567768899357,10.8227538530118,11.5091784536833,7.16923076923077,207.613521022791,405,195074,1,0,0,0,9 +"1451",2009,34037,"NJ","34","037",149487,0.956370788095286,7413,0.134894673115388,8.91099049465672,10.0122074192504,10.739392184451,8.48461538461538,313.435272351309,288,91885,1,0,0,0,9 +"1452",2009,34039,"NJ","34","039",532434,0.706470661152368,31690,0.110806221991834,10.363756452685,11.2771271791978,12.0076704861044,9.20769230769231,275.86679841774,885,320807,1,0,0,0,9 +"1453",2009,34041,"NJ","34","041",108693,0.931817136338127,5637,0.123559014839962,8.63710728808157,9.6814059371683,10.4047778593188,8.66923076923077,290.226469271501,188,64777,1,0,0,0,9 +"1454",2009,35001,"NM","35","001",655279,0.871235000663839,49192,0.117186725043836,10.8034862876333,11.3439149222359,12.2183272501972,7.08461538461538,358.781894158089,1433,399407,1,0,0,0,9 +"1455",2009,35005,"NM","35","005",65110,0.939594532329903,4283,0.111319305790201,8.36240897761537,8.88999735728484,9.78818892817267,6.56153846153846,568.617974014159,200,35173,1,0,0,0,9 +"1456",2009,35006,"NM","35","006",27097,0.544968077646972,1756,0.115769273351294,7.47079377419506,8.13446757027756,8.95195816856926,6.42307692307692,444.16640600563,71,15985,1,0,0,0,9 +"1457",2009,35007,"NM","35","007",13731,0.964314325249436,610,0.156798485179521,6.41345895716736,7.28824440102012,8.24852912480022,7.16153846153846,460.358056265985,36,7820,1,0,0,0,9 +"1458",2009,35009,"NM","35","009",46555,0.883299323380947,3672,0.0964880249167651,8.20849175174038,8.6294498737619,9.48888078651068,4.24615384615385,346.542112400181,92,26548,1,0,0,0,9 +"1459",2009,35013,"NM","35","013",205401,0.938179463585864,18668,0.105311074434886,9.83456610706971,10.0562944727799,10.998008148301,6.89230769230769,331.80719172797,387,116634,1,0,0,0,9 +"1460",2009,35015,"NM","35","015",53578,0.947851730187764,3158,0.121803725409683,8.05769419481559,8.75004942158424,9.62211884214094,5.5,472.0692368214,144,30504,1,0,0,0,9 +"1461",2009,35017,"NM","35","017",29865,0.961493386907752,1577,0.16082370668006,7.36327958696304,7.98718474823347,9.045347797304,12,483.298666340389,79,16346,1,0,0,0,9 +"1462",2009,35025,"NM","35","025",64483,0.926197602468868,4565,0.0971728982832685,8.42617379302907,8.97271749939714,9.76955607989027,7.45384615384615,321.859145709454,118,36662,1,0,0,0,9 +"1463",2009,35027,"NM","35","027",20521,0.95565518249598,849,0.183032015983627,6.74405918631135,7.6434829070772,8.71997075677757,5.47692307692308,397.765741367637,47,11816,1,0,0,0,9 +"1464",2009,35028,"NM","35","028",17742,0.918047570736106,497,0.151955811069778,6.20859002609663,7.77779262633883,8.56044423341055,3.03846153846154,217.84428869104,23,10558,1,0,0,0,9 +"1465",2009,35029,"NM","35","029",25119,0.955889963772443,1462,0.125562323340897,7.28756064030972,7.87739718635329,8.77647578934632,16.6461538461538,477.196276304467,61,12783,1,0,0,0,9 +"1466",2009,35031,"NM","35","031",70567,0.196579137557215,5453,0.0954128700384032,8.60392119492606,9.05893591781695,9.91155492361389,7.82307692307692,533.092969353593,207,38830,1,0,0,0,9 +"1467",2009,35035,"NM","35","035",62462,0.860427139700938,4760,0.117895680573789,8.46800294722547,8.86432272251144,9.77951037271642,6.33846153846154,419.74479516454,150,35736,1,0,0,0,9 +"1468",2009,35037,"NM","35","037",8920,0.949775784753363,334,0.1597533632287,5.8111409929767,6.89871453432999,7.83636976054512,6.38461538461539,569.80056980057,28,4914,1,0,0,0,9 +"1469",2009,35039,"NM","35","039",40023,0.797616370586912,2471,0.131599330385029,7.81237820598861,8.51639287124547,9.3657188691557,7.16153846153846,619.049652051402,145,23423,1,0,0,0,9 +"1470",2009,35041,"NM","35","041",19192,0.944716548561901,2224,0.0955606502709462,7.70706265537047,7.62119516280984,8.59192953753026,4.53846153846154,415.014294936826,45,10843,1,0,0,0,9 +"1471",2009,35043,"NM","35","043",128985,0.807202387874559,6767,0.12602240570609,8.81981313623223,9.77622220149025,10.570675693926,8.00769230769231,322.231319827791,244,75722,1,0,0,0,9 +"1472",2009,35045,"NM","35","045",129359,0.593572924960768,8888,0.104291158713348,9.09245733131947,9.63600018736987,10.5127910609005,7.42307692307692,417.346383904296,307,73560,1,0,0,0,9 +"1473",2009,35047,"NM","35","047",29336,0.938914644123262,2025,0.14303245159531,7.61332497954064,8.11880299698004,9.0594011964109,6.90769230769231,588.574725908829,102,17330,1,0,0,0,9 +"1474",2009,35049,"NM","35","049",143205,0.927942460109633,7624,0.166202297405817,8.93905644533404,9.82341567777057,10.720709048198,6.14615384615385,315.532065946202,280,88739,1,0,0,0,9 +"1475",2009,35051,"NM","35","051",11940,0.961139028475712,483,0.179313232830821,6.18001665365257,6.93537044601511,8.04076899436758,5.41538461538462,915.33180778032,56,6118,1,0,0,0,9 +"1476",2009,35053,"NM","35","053",17927,0.843308975288671,1549,0.128465443186255,7.34536484041687,7.568895663407,8.51579221050061,4.94615384615385,529.151433519338,55,10394,1,0,0,0,9 +"1477",2009,35055,"NM","35","055",32792,0.898908270309832,1581,0.175500121980971,7.36581283720947,8.29254851397576,9.21552689866348,8.31538461538462,469.270360278535,93,19818,1,0,0,0,9 +"1478",2009,35057,"NM","35","057",16414,0.931948336785671,883,0.153588400146217,6.78332520060396,7.6004023345004,8.4359831359907,8.83076923076923,413.308534821244,40,9678,1,0,0,0,9 +"1479",2009,35061,"NM","35","061",75770,0.917896265012538,4519,0.127015969381022,8.41604600941128,9.17409123930106,9.9869091606752,8.01538461538462,462.298740634465,203,43911,1,0,0,0,9 +"1480",2009,32001,"NV","32","001",25067,0.884908445366418,1511,0.128336059360913,7.32052696227274,8.00636756765025,8.8722067560283,8.95384615384615,483.938841352223,69,14258,1,0,0,0,9 +"1481",2009,32003,"NV","32","003",1939407,0.762742425906476,127165,0.108211943135195,11.7532407347928,12.5780257812392,13.2783991364956,11.9230769230769,356.4812902127,4228,1186037,1,0,0,0,9 +"1482",2009,32005,"NV","32","005",46965,0.948429681677845,2007,0.166996699669967,7.60439634879634,8.55622157838371,9.5239825460975,11.9769230769231,396.443127084105,107,26990,1,0,0,0,9 +"1483",2009,32007,"NV","32","007",48445,0.909134069563422,3123,0.110579007121478,8.04654935728308,8.78094111357239,9.52864863796972,6.50769230769231,399.916539157045,115,28756,1,0,0,0,9 +"1484",2009,32013,"NV","32","013",16290,0.926396562308164,974,0.126151012891344,6.88141130364254,7.66105638236183,8.42814337458273,7.57692307692308,482.645307044568,47,9738,1,0,0,0,9 +"1485",2009,32015,"NV","32","015",5660,0.931448763250883,333,0.130742049469965,5.80814248998044,6.55535689181067,7.35179986905778,6.06153846153846,367.534456355283,12,3265,1,0,0,0,9 +"1486",2009,32019,"NV","32","019",51819,0.931492309770548,2335,0.13996796541809,7.755767170103,8.79588497202989,9.60938491228142,15.9846153846154,451.087322426446,134,29706,1,0,0,0,9 +"1487",2009,32021,"NV","32","021",4769,0.760117425036695,240,0.170475990773747,5.48063892334199,6.05208916892442,7.20117088328168,8.97692307692308,677.455777192322,18,2657,1,0,0,0,9 +"1488",2009,32023,"NV","32","023",44446,0.929374971875984,1822,0.161634342798002,7.5076900778199,8.44268513924118,9.4034370019381,14.3538461538462,682.849648165883,164,24017,1,0,0,0,9 +"1489",2009,32031,"NV","32","031",417722,0.880406107411149,31716,0.123797645323924,10.3645765643923,10.9288299792765,11.7451952452827,11.5076923076923,352.737123146181,905,256565,1,0,0,0,9 +"1490",2009,32033,"NV","32","033",9900,0.896969696969697,585,0.140909090909091,6.37161184723186,7.13966033596492,7.79770203551669,7.2,439.739413680782,27,6140,1,0,0,0,9 +"1491",2009,32510,"NV","32","510",55401,0.919784841428855,3257,0.136044475731485,8.08856180527623,8.88944616531829,9.63023421673647,11.4538461538462,461.079468402495,153,33183,1,0,0,0,9 +"1492",2009,36001,"NY","36","001",304733,0.807753016575166,28410,0.123773926683359,10.2544964748482,10.5461306009223,11.4752132135163,6.88461538461538,300.788510726182,568,188837,1,0,0,0,9 +"1493",2009,36003,"NY","36","003",48969,0.973248381629194,4735,0.124711552206498,8.46273700562018,8.57885257180297,9.52770259852938,8.86923076923077,297.224709042077,83,27925,1,0,0,0,9 +"1494",2009,36005,"NY","36","005",1376261,0.463800107683063,109383,0.094333850919266,11.6026107638423,12.1473571376954,12.9878005959383,11.9846153846154,376.101004369011,3062,814143,1,0,0,0,9 +"1495",2009,36007,"NY","36","007",200935,0.90260034339463,17662,0.122288302187274,9.77917071802875,10.037187680924,10.9913253374806,8.3,333.750872207884,397,118951,1,0,0,0,9 +"1496",2009,36009,"NY","36","009",80491,0.940738716129754,5345,0.133468338075064,8.58391682345914,9.16607495567817,10.0541894349496,8.75384615384615,416.487762988407,194,46580,1,0,0,0,9 +"1497",2009,36011,"NY","36","011",80172,0.941762710173128,4822,0.128411415456768,8.48094405874112,9.27444129738271,10.0314849105995,8.4,330.122082883481,159,48164,1,0,0,0,9 +"1498",2009,36013,"NY","36","013",135197,0.954214960391133,10074,0.129418552186809,9.2177131263056,9.67664968563365,10.5658919802615,8.43076923076923,351.823317925013,274,77880,1,0,0,0,9 +"1499",2009,36015,"NY","36","015",88849,0.907292147351124,5460,0.128082477011559,8.60520406873895,9.32509660927437,10.1519479118341,9.06923076923077,348.737494044783,183,52475,1,0,0,0,9 +"1500",2009,36017,"NY","36","017",50639,0.981832184679792,2519,0.136199372025514,7.83161727635261,8.75605259917045,9.58809164151683,9.06153846153846,368.827265897138,108,29282,1,0,0,0,9 +"1501",2009,36019,"NY","36","019",82280,0.93886728245017,7514,0.118364122508508,8.92452322613391,9.30054663986233,10.0990132168137,9.45384615384615,283.72900984366,147,51810,1,0,0,0,9 +"1502",2009,36021,"NY","36","021",63023,0.925471653205972,3183,0.152531615441981,8.06557942728209,8.99603266932437,9.82189781549617,7.46923076923077,359.499919514943,134,37274,1,0,0,0,9 +"1503",2009,36023,"NY","36","023",49358,0.966388427407918,5707,0.117063090076583,8.64944877053671,8.66939912430557,9.60649561075857,9.26923076923077,307.598702001082,91,29584,1,0,0,0,9 +"1504",2009,36025,"NY","36","025",48182,0.967124652359802,2836,0.151737163255988,7.95014988765202,8.59932602095476,9.51451076193277,8.69230769230769,349.319554617568,96,27482,1,0,0,0,9 +"1505",2009,36027,"NY","36","027",296887,0.845938016821215,21088,0.120840589180395,9.95645943730223,10.6259750648727,11.3910063876739,7.8,286.339432233001,513,179158,1,0,0,0,9 +"1506",2009,36029,"NY","36","029",919334,0.82313065762824,67609,0.122892224153572,11.1214963892639,11.6559083016484,12.5356245633147,8.23076923076923,370.731635766252,2022,545408,1,0,0,0,9 +"1507",2009,36031,"NY","36","031",39478,0.956558082982927,2110,0.143396322002128,7.65444322647011,8.54578064826815,9.30237245742268,9.26923076923077,331.070321012488,79,23862,1,0,0,0,9 +"1508",2009,36033,"NY","36","033",51706,0.852783042586934,3859,0.120295516961281,8.25816336153762,8.87234697898303,9.52178779797823,8.63076923076923,322.76905105899,105,32531,1,0,0,0,9 +"1509",2009,36035,"NY","36","035",55558,0.966557471471255,2988,0.13251016955254,8.00235954625271,8.9130119224726,9.69609431131315,9.77692307692308,386.088648385724,127,32894,1,0,0,0,9 +"1510",2009,36037,"NY","36","037",59932,0.947857571914837,3638,0.123056130280985,8.19918935907807,8.97689392766608,9.76846934085804,7.76923076923077,352.00360451691,125,35511,1,0,0,0,9 +"1511",2009,36039,"NY","36","039",49372,0.920481244430041,3173,0.14234788949202,8.0624327915832,8.78186248955894,9.53762769902032,8.46153846153846,446.938638349351,133,29758,1,0,0,0,9 +"1512",2009,36043,"NY","36","043",64381,0.977400164644849,3747,0.134465137229928,8.22871079879369,8.98557049891739,9.83091685970129,8.08461538461538,374.209180239602,139,37145,1,0,0,0,9 +"1513",2009,36045,"NY","36","045",115023,0.914364953096337,10943,0.0996931048572894,9.30045526141844,9.60985447459091,10.4065632228421,8.99230769230769,293.036083658929,204,69616,1,0,0,0,9 +"1514",2009,36047,"NY","36","047",2487751,0.503194250549995,192417,0.104304249098885,12.1674201708988,12.7403823470243,13.6115493435667,9.86153846153846,291.675986080697,4486,1538008,1,0,0,0,9 +"1515",2009,36049,"NY","36","049",27047,0.985432765186527,1524,0.12311901504788,7.32909373624659,8.12622252945853,8.93234456911382,8.92307692307692,301.881944890487,47,15569,1,0,0,0,9 +"1516",2009,36051,"NY","36","051",65420,0.953821461326811,6410,0.125007642922654,8.76561454991472,9.0280988119824,9.88067941321012,8.53076923076923,246.882793017456,99,40100,1,0,0,0,9 +"1517",2009,36053,"NY","36","053",73169,0.961773428637811,6234,0.123180581940439,8.73777346032728,9.11393959768983,9.98285310791687,8.2,294.574722241551,127,43113,1,0,0,0,9 +"1518",2009,36055,"NY","36","055",743386,0.795719854826429,57291,0.120467697804371,10.9558988223035,11.4634830881564,12.3410186621023,7.98461538461538,281.285090315017,1250,444389,1,0,0,0,9 +"1519",2009,36057,"NY","36","057",50001,0.959880802383952,2882,0.128457430851383,7.96623977655947,8.7448067374019,9.57435829017017,9.60769230769231,388.655462184874,111,28560,1,0,0,0,9 +"1520",2009,36059,"NY","36","059",1332088,0.793933283686964,77889,0.125600560923903,11.263040015213,12.1035026771156,12.9014174096336,7.02307692307692,236.473933600877,1852,783173,1,0,0,0,9 +"1521",2009,36061,"NY","36","061",1583431,0.669359132163006,139851,0.111124513793149,11.848332849123,12.3798746807084,13.2624417914362,8.4,216.682745974621,2374,1095611,1,0,0,0,9 +"1522",2009,36063,"NY","36","063",216043,0.902681410645103,13831,0.129659373365487,9.53466772862471,10.2201214469377,11.0862265058537,9.39230769230769,388.348003393181,499,128493,1,0,0,0,9 +"1523",2009,36065,"NY","36","065",234619,0.896947817525435,15956,0.124857748093718,9.6775902130253,10.3093192601052,11.1121642760665,7.48461538461538,367.515956014526,505,137409,1,0,0,0,9 +"1524",2009,36067,"NY","36","067",465633,0.835189945729791,35246,0.118408703850457,10.4701073266243,10.9835284556188,11.86325129588,7.76923076923077,305.676381429073,844,276109,1,0,0,0,9 +"1525",2009,36069,"NY","36","069",107214,0.956488891376126,6555,0.13872255489022,8.7879833961978,9.55704578487742,10.3784165323044,7.36923076923077,320.310527644534,203,63376,1,0,0,0,9 +"1526",2009,36071,"NY","36","071",372079,0.845516677909799,24225,0.110111024809248,10.095140436759,10.8882029945241,11.5926696665568,7.95384615384615,290.430920569667,633,217952,1,0,0,0,9 +"1527",2009,36073,"NY","36","073",42975,0.919767306573589,2705,0.124421175101803,7.90285719128058,8.68202943386917,9.47147310919443,9.46153846153846,351.066702673508,91,25921,1,0,0,0,9 +"1528",2009,36075,"NY","36","075",122055,0.977067715374217,9965,0.120167137765761,9.2068342326469,9.68539372985402,10.4965933789158,9.97692307692308,328.420706925572,240,73077,1,0,0,0,9 +"1529",2009,36077,"NY","36","077",62280,0.962363519588953,6641,0.134922928709056,8.80101783354071,8.84159284680318,9.83980200085,7.66153846153846,304.058639880548,112,36835,1,0,0,0,9 +"1530",2009,36079,"NY","36","079",99666,0.946932755403046,4999,0.130375454016415,8.51699317141357,9.63600018736987,10.3271854289054,6.81538461538462,281.703901517619,173,61412,1,0,0,0,9 +"1531",2009,36081,"NY","36","081",2217166,0.519510943249175,157980,0.111266815385046,11.9702237217184,12.7000887780956,13.4901363102164,8.37692307692308,235.95305530587,3339,1415112,1,0,0,0,9 +"1532",2009,36083,"NY","36","083",159150,0.899868049010368,12284,0.127709707822809,9.41605288156071,9.94955974063851,10.7985137891056,7.52307692307692,330.236088035608,322,97506,1,0,0,0,9 +"1533",2009,36085,"NY","36","085",466965,0.794258670350026,30723,0.1226301757091,10.3327668387435,11.1073453502491,11.896846830921,8.16153846153846,297.626325258065,852,286265,1,0,0,0,9 +"1534",2009,36087,"NY","36","087",308652,0.79668688361002,18679,0.115975273123129,9.8351551771593,10.5792087792727,11.3774149723615,7,218.393875678125,376,172166,1,0,0,0,9 +"1535",2009,36089,"NY","36","089",112169,0.9513056191996,10868,0.120924676158297,9.29357797054624,9.5216413100266,10.3683530039257,9.96153846153846,305.759978416943,204,66719,1,0,0,0,9 +"1536",2009,36091,"NY","36","091",218652,0.959629914201562,12057,0.130705413167956,9.39740068311731,10.3968719586822,11.1214372237929,6.45384615384615,256.83908732529,344,133936,1,0,0,0,9 +"1537",2009,36093,"NY","36","093",154050,0.837383966244726,9930,0.120681596884129,9.20331575703922,9.91832690273277,10.7496991088229,7.4,326.876247723932,298,91166,1,0,0,0,9 +"1538",2009,36095,"NY","36","095",32776,0.972662924090798,2305,0.143428118135221,7.74283595543075,8.29903718161307,9.17066355482328,8.99230769230769,339.750849377123,66,19426,1,0,0,0,9 +"1539",2009,36097,"NY","36","097",18398,0.981247961734971,981,0.145776714860311,6.88857245956536,7.7828072628397,8.59969441292798,8.49230769230769,367.073506469671,40,10897,1,0,0,0,9 +"1540",2009,36099,"NY","36","099",35286,0.939494417049255,2441,0.134699314175594,7.80016307039296,8.39728289474368,9.18409906077096,7.72307692307692,310.121229207781,66,21282,1,0,0,0,9 +"1541",2009,36101,"NY","36","101",98949,0.964840473375173,5244,0.133765879392414,8.56483984488359,9.44525437888931,10.2605324280417,9.8,382.588734500809,220,57503,1,0,0,0,9 +"1542",2009,36103,"NY","36","103",1487206,0.871815336947269,88093,0.116766607988402,11.386148353603,12.2988979223369,13.0124927062686,7.41538461538462,273.718113076844,2434,889236,1,0,0,0,9 +"1543",2009,36105,"NY","36","105",77647,0.869756719512666,4458,0.137532679949,8.40245551394581,9.2259184019395,10.0210927946104,8.83846153846154,425.898042589804,198,46490,1,0,0,0,9 +"1544",2009,36107,"NY","36","107",51236,0.980580060894683,2541,0.128288703255523,7.84031298332016,8.77924971622905,9.61840210593161,8.21538461538461,310.641993453136,93,29938,1,0,0,0,9 +"1545",2009,36109,"NY","36","109",101497,0.856045006256342,17618,0.10814112732396,9.77667638566974,9.2621735206162,10.3920675673548,5.97692307692308,173.326317744282,112,64618,1,0,0,0,9 +"1546",2009,36111,"NY","36","111",182638,0.903333369835412,12375,0.137074431388868,9.42343358743689,10.1227837121214,10.9245166065459,7.83076923076923,339.115113200698,383,112941,1,0,0,0,9 +"1547",2009,36113,"NY","36","113",65694,0.977669193533656,3398,0.146269065668098,8.13094230223188,9.06149227523977,9.89917828094803,8.05384615384615,252.248579509262,99,39247,1,0,0,0,9 +"1548",2009,36115,"NY","36","115",63077,0.958336636174834,3817,0.130903498898172,8.24722005274523,9.07977600195507,9.7938400832316,7.57692307692308,333.950794437632,128,38329,1,0,0,0,9 +"1549",2009,36117,"NY","36","117",93643,0.953130506284506,4737,0.132268295547985,8.46315930292375,9.47155012409685,10.229873377617,8.44615384615385,381.315538608198,212,55597,1,0,0,0,9 +"1550",2009,36119,"NY","36","119",944201,0.7696369734834,52486,0.118649524836343,10.8683017463512,11.8152276409641,12.564530000031,7.20769230769231,222.962629446195,1238,555250,1,0,0,0,9 +"1551",2009,36121,"NY","36","121",42236,0.929917605833886,2451,0.129013164125391,7.80425138352811,8.74225490188635,9.33353098253138,9.1,238.672384859221,64,26815,1,0,0,0,9 +"1552",2009,36123,"NY","36","123",25303,0.983085009682646,1703,0.13559656957673,7.44014668066269,7.88870952418201,8.8758461777386,6.86923076923077,337.498204796783,47,13926,1,0,0,0,9 +"1553",2009,39001,"OH","39","001",28500,0.988736842105263,1522,0.125894736842105,7.32778053842163,8.25660734462616,9.01651287499603,14.6307692307692,492.670762119093,81,16441,1,0,0,0,9 +"1554",2009,39003,"OH","39","003",106518,0.855864736476464,7502,0.121847950581122,8.92292493064183,9.44557058442554,10.3010548885172,11.2769230769231,363.891517900852,223,61282,1,0,0,0,9 +"1555",2009,39005,"OH","39","005",53305,0.980996154206922,3675,0.122671419191445,8.20930841164694,8.77338459677665,9.64140824746385,12.4846153846154,392.118096744431,119,30348,1,0,0,0,9 +"1556",2009,39007,"OH","39","007",101584,0.948732083792723,5475,0.130246889273901,8.6079475546847,9.49859727917881,10.273256395986,13.5538461538462,449.289613780475,265,58982,1,0,0,0,9 +"1557",2009,39009,"OH","39","009",64618,0.934368132718438,14281,0.0960568262713176,9.56668526145293,8.7160440501614,9.9020865716205,8.8,330.554407797195,136,41143,1,0,0,0,9 +"1558",2009,39011,"OH","39","011",45996,0.987694582137577,2350,0.124423862944604,7.7621706071382,8.68457030082437,9.46684132694439,10.6230769230769,318.777124860775,83,26037,1,0,0,0,9 +"1559",2009,39013,"OH","39","013",70439,0.949119095955366,4201,0.140135436334985,8.34307787116938,9.08783369748339,9.90678211948556,9.2,380.192221408837,161,42347,1,0,0,0,9 +"1560",2009,39015,"OH","39","015",44740,0.984152883325883,2317,0.123446580241395,7.74802852443238,8.70549681988774,9.48143564082356,12.7230769230769,523.560209424084,137,26167,1,0,0,0,9 +"1561",2009,39017,"OH","39","017",366633,0.889510764170165,28554,0.112960371815958,10.2595523103492,10.8119477052951,11.6200474283677,9.63076923076923,375.771837177698,824,219282,1,0,0,0,9 +"1562",2009,39019,"OH","39","019",28917,0.987688902721582,1360,0.141958017775011,7.2152399787301,8.19367666595524,9.02364928266429,13.7307692307692,364.287847118543,61,16745,1,0,0,0,9 +"1563",2009,39021,"OH","39","021",40265,0.961182168136098,2258,0.125568111262883,7.72223474470961,8.61884684514274,9.36614682311438,11.9230769230769,411.893422576908,96,23307,1,0,0,0,9 +"1564",2009,39023,"OH","39","023",138778,0.888188329562323,8549,0.132881292423871,9.05356959602623,9.74648280372596,10.6149165967741,10.5615384615385,487.098804279421,387,79450,1,0,0,0,9 +"1565",2009,39025,"OH","39","025",196512,0.971289285132715,10838,0.121539651522553,9.29081375612606,10.2379577864867,10.9965008628038,9.78461538461539,359.392084897904,424,117977,1,0,0,0,9 +"1566",2009,39027,"OH","39","027",42418,0.961714366542506,2779,0.120774199632232,7.9298464297425,8.61195776786066,9.44438429775868,14.8615384615385,467.308383592283,117,25037,1,0,0,0,9 +"1567",2009,39029,"OH","39","029",107948,0.966557972357061,5720,0.137065994738207,8.65172408437384,9.55874117946267,10.3412584953962,13.3769230769231,370.335645977874,237,63996,1,0,0,0,9 +"1568",2009,39031,"OH","39","031",36878,0.979364390693638,1948,0.130430066706437,7.57455848420248,8.45105338891169,9.26634256209147,13.5,407.544308596342,86,21102,1,0,0,0,9 +"1569",2009,39033,"OH","39","033",43921,0.982491291181895,2187,0.131053482388834,7.69028602067677,8.61703852638595,9.44041981429151,14.7692307692308,434.730105059775,108,24843,1,0,0,0,9 +"1570",2009,39035,"OH","39","035",1285082,0.661645715993221,77367,0.123560986769716,11.2563156120729,12.0006093728835,12.8838168063116,7.91538461538462,420.379001659321,3182,756936,1,0,0,0,9 +"1571",2009,39037,"OH","39","037",52829,0.986749701868292,2648,0.124231009483428,7.8815599170569,8.8128434335172,9.59750572291291,11.3615384615385,387.162506367804,114,29445,1,0,0,0,9 +"1572",2009,39039,"OH","39","039",39060,0.967281105990783,2311,0.128443420378904,7.74543561027438,8.48156601377309,9.33167265714371,14.1,434.53199130936,98,22553,1,0,0,0,9 +"1573",2009,39041,"OH","39","041",170676,0.914586702289719,7071,0.110636527689892,8.86375719160424,10.3000128190748,10.8542183577238,7.03076923076923,251.256281407035,255,101490,1,0,0,0,9 +"1574",2009,39043,"OH","39","043",77085,0.887877018875268,3984,0.143257443082312,8.29004161870449,9.15334665045606,10.0320126847244,11.8307692307692,421.997454618528,189,44787,1,0,0,0,9 +"1575",2009,39045,"OH","39","045",145446,0.919255256246304,7689,0.117541905586953,8.94754601503218,9.95284898207385,10.6691879257778,8.70769230769231,310.482882588447,266,85673,1,0,0,0,9 +"1576",2009,39047,"OH","39","047",28929,0.961353658958139,1560,0.126343807252238,7.35244110024358,8.25166392360559,9.04357715409808,11.1923076923077,448.430493273543,75,16725,1,0,0,0,9 +"1577",2009,39049,"OH","39","049",1155408,0.727922950161328,100863,0.10182377134311,11.5215184393882,11.9712612893483,12.8246767592964,8.46153846153846,354.393892928212,2577,727157,1,0,0,0,9 +"1578",2009,39051,"OH","39","051",42747,0.984349778931855,2186,0.125950359089527,7.68982866873648,8.63319686717254,9.4362800105924,13.9230769230769,295.140292714482,73,24734,1,0,0,0,9 +"1579",2009,39053,"OH","39","053",30857,0.957740545095116,1915,0.124380205463914,7.55747290161475,8.22737550683403,9.10108338603923,9.5,481.63082437276,86,17856,1,0,0,0,9 +"1580",2009,39055,"OH","39","055",93446,0.97673522676198,4065,0.140947713117736,8.31016902198191,9.39424400995279,10.195746634481,6.24615384615385,229.279569484974,121,52774,1,0,0,0,9 +"1581",2009,39057,"OH","39","057",161075,0.883998137513581,16047,0.121502405711625,9.68327719519936,9.84363138538276,10.7993714746326,9.73846153846154,302.801690728894,293,96763,1,0,0,0,9 +"1582",2009,39059,"OH","39","059",40242,0.970553153421798,2183,0.130858307241191,7.68845535654994,8.5424709986005,9.36845461506987,12.1615384615385,467.471756914686,108,23103,1,0,0,0,9 +"1583",2009,39061,"OH","39","061",802149,0.70795450720502,59202,0.115414966546115,10.9887106040852,11.5099610755062,12.4198928693835,9.04615384615385,387.601745458183,1860,479874,1,0,0,0,9 +"1584",2009,39063,"OH","39","063",74964,0.956952670615229,5365,0.119764153460328,8.5876516550648,9.15525040565822,10.0182437898343,10.4076923076923,281.064418151321,124,44118,1,0,0,0,9 +"1585",2009,39065,"OH","39","065",32185,0.979027497281342,3537,0.111045518098493,8.17103418920548,8.22657347497711,9.14302466469132,12.2307692307692,316.353887399464,59,18650,1,0,0,0,9 +"1586",2009,39067,"OH","39","067",15860,0.96891551071879,761,0.144514501891551,6.63463335786169,7.55903825544338,8.43141741439483,11.6307692307692,439.51214152291,40,9101,1,0,0,0,9 +"1587",2009,39069,"OH","39","069",28322,0.985453004731304,1468,0.119942094484853,7.29165620917446,8.16848641712668,8.9851948179913,13.5384615384615,248.957490508496,40,16067,1,0,0,0,9 +"1588",2009,39071,"OH","39","071",43578,0.973587590068383,2269,0.121047317453761,7.72709448477984,8.66336930157384,9.43420366421474,15.5307692307692,524.595456196279,130,24781,1,0,0,0,9 +"1589",2009,39073,"OH","39","073",29358,0.98351386334219,1511,0.133660331085224,7.32052696227274,8.25712628599743,9.05881956433494,11.3307692307692,420.094521267285,72,17139,1,0,0,0,9 +"1590",2009,39075,"OH","39","075",42275,0.99304553518628,2880,0.0940035481963335,7.96554557312999,8.44891435066294,9.28433405188451,7.9,278.344776396363,60,21556,1,0,0,0,9 +"1591",2009,39077,"OH","39","077",59754,0.977926163938816,3137,0.121247113163972,8.05102220819068,8.98205864280585,9.76290277172225,15.7307692307692,339.780449555672,117,34434,1,0,0,0,9 +"1592",2009,39079,"OH","39","079",33115,0.983179827872565,1917,0.129578740751925,7.55851674304564,8.37953902611744,9.18686701579054,11.3230769230769,525.55647155812,102,19408,1,0,0,0,9 +"1593",2009,39081,"OH","39","081",69833,0.930405395729813,4513,0.143828848825054,8.414717399827,9.02581639162703,9.93827537802179,12.3307692307692,641.1988699177,261,40705,1,0,0,0,9 +"1594",2009,39083,"OH","39","083",60633,0.97959856843633,4724,0.121122161199347,8.46041117731725,8.89384721767028,9.77661962392714,9.80769230769231,378.536134308088,131,34607,1,0,0,0,9 +"1595",2009,39085,"OH","39","085",229954,0.948881080563939,11813,0.133130974020891,9.37695589894852,10.3310076514251,11.1448139434034,7.28461538461538,359.691191952275,492,136784,1,0,0,0,9 +"1596",2009,39087,"OH","39","087",62667,0.967973574608646,3408,0.127866341136483,8.13388088794921,9.05146186690869,9.84495761034573,8.27692307692308,463.745976321676,170,36658,1,0,0,0,9 +"1597",2009,39089,"OH","39","089",165283,0.947955930131955,9479,0.122904351929721,9.15683410445304,10.0297236490813,10.8139211649259,9.56153846153846,401.758719291593,392,97571,1,0,0,0,9 +"1598",2009,39091,"OH","39","091",46055,0.965714906090544,2364,0.128780805558571,7.76811037852599,8.67317077287059,9.50024497278106,11.9923076923077,420.215786484952,111,26415,1,0,0,0,9 +"1599",2009,39093,"OH","39","093",300893,0.885102013007946,16834,0.127969078709043,9.73115592977152,10.6202047646085,11.3958971444447,8.67692307692308,350.198502210593,621,177328,1,0,0,0,9 +"1600",2009,39095,"OH","39","095",442603,0.773905734936275,33143,0.11921970705124,10.4085868119287,10.9280405858126,11.810545491961,12.4076923076923,400.395076736058,1054,263240,1,0,0,0,9 +"1601",2009,39097,"OH","39","097",43353,0.918575415772842,2510,0.11424814891703,7.82803803212583,8.8376812155932,9.33617975681533,9.49230769230769,366.884079454492,99,26984,1,0,0,0,9 +"1602",2009,39099,"OH","39","099",240050,0.820079150177046,13783,0.136063320141637,9.53119122769444,10.273532715413,11.1532603406089,12.5461538461538,454.38481344979,630,138649,1,0,0,0,9 +"1603",2009,39101,"OH","39","101",66497,0.925951546686317,4219,0.128231348782652,8.34735341212434,9.10963566785455,9.81378163945164,11.4615384615385,420.891995668012,171,40628,1,0,0,0,9 +"1604",2009,39103,"OH","39","103",171688,0.972415078514515,7792,0.128174362797633,8.96085284532237,10.1519869111126,10.8495118286651,7.01538461538462,258.687676433848,263,101667,1,0,0,0,9 +"1605",2009,39105,"OH","39","105",23770,0.983466554480438,1271,0.135506941522928,7.14755927118945,8.05706068196577,8.85366542803745,14.9,554.055973859923,78,14078,1,0,0,0,9 +"1606",2009,39107,"OH","39","107",40855,0.985754497613511,2119,0.122359564312814,7.6586995582683,8.4728232436803,9.30873669383238,8.93846153846154,274.640088593577,62,22575,1,0,0,0,9 +"1607",2009,39109,"OH","39","109",102526,0.957825332110879,5273,0.131225250180442,8.57035473953047,9.51384657977485,10.310518101369,11.8230769230769,371.241390895347,221,59530,1,0,0,0,9 +"1608",2009,39111,"OH","39","111",14742,0.991317324650658,697,0.149911816578483,6.54678541076052,7.49220304261874,8.33639048059155,12.7153846153846,486.300557466493,41,8431,1,0,0,0,9 +"1609",2009,39113,"OH","39","113",535294,0.757611704969606,35783,0.124161675639929,10.4852281992717,11.1139393229598,12.0005970918694,11.6153846153846,458.262027001331,1446,315540,1,0,0,0,9 +"1610",2009,39115,"OH","39","115",15073,0.946327871027665,746,0.134014462946991,6.61472560020376,7.49443021503157,8.36124088964235,14.5692307692308,445.43429844098,38,8531,1,0,0,0,9 +"1611",2009,39117,"OH","39","117",34907,0.988426390122325,1639,0.124559543931017,7.40184157874383,8.49105453380654,9.22749243079375,11.1923076923077,399.447677285728,81,20278,1,0,0,0,9 +"1612",2009,39119,"OH","39","119",85779,0.942899777334779,5497,0.123818183937794,8.61195776786066,9.31937413300031,10.1463945146913,12.6538461538462,500.925404361471,249,49708,1,0,0,0,9 +"1613",2009,39121,"OH","39","121",14649,0.964912280701754,748,0.18253805720527,6.61740297797448,7.34407285057307,8.16223106548118,14.5230769230769,316.938607817819,27,8519,1,0,0,0,9 +"1614",2009,39123,"OH","39","123",41498,0.982360595691359,1888,0.155814738059666,7.54327334670545,8.49678638163858,9.3982297330736,14.2230769230769,381.331343778496,92,24126,1,0,0,0,9 +"1615",2009,39125,"OH","39","125",19659,0.979653085100972,1003,0.132814487003408,6.91075078796194,7.81722278550817,8.63675242647388,13.8153846153846,405.000880436697,46,11358,1,0,0,0,9 +"1616",2009,39127,"OH","39","127",35996,0.99011001222358,1916,0.123402600288921,7.55799495853081,8.50106380948635,9.24850283307053,13.4461538461538,386.505702152026,81,20957,1,0,0,0,9 +"1617",2009,39129,"OH","39","129",55323,0.95394320626141,3307,0.11729298844965,8.10379671298179,9.01396045793119,9.63102244588921,11.0923076923077,413.776679665407,139,33593,1,0,0,0,9 +"1618",2009,39131,"OH","39","131",28679,0.97771888838523,1559,0.120192475330381,7.35179986905778,8.2445967563825,9.01808968410434,15.2923076923077,580.55152394775,96,16536,1,0,0,0,9 +"1619",2009,39133,"OH","39","133",161226,0.935419845434359,17116,0.119651917184573,9.74776897753671,9.90163583917265,10.8192381385578,10.1384615384615,321.452111747706,317,98615,1,0,0,0,9 +"1620",2009,39135,"OH","39","135",42424,0.985998491419951,2221,0.133367904959457,7.70571282389443,8.64047220757641,9.42424134192346,12.2769230769231,401.280856065826,99,24671,1,0,0,0,9 +"1621",2009,39137,"OH","39","137",34583,0.988693866928838,1813,0.115461353844374,7.50273821075485,8.36985260351753,9.16481985667437,10.6615384615385,312.772393990668,61,19503,1,0,0,0,9 +"1622",2009,39139,"OH","39","139",125308,0.887980017237527,7284,0.129050020748875,8.8934354408475,9.68021899340877,10.4639315688243,12.9,359.73673811438,264,73387,1,0,0,0,9 +"1623",2009,39141,"OH","39","141",77862,0.921065474814415,4271,0.122575839305438,8.35960327084147,9.33926115204302,9.98030969513741,12.1846153846154,486.678729643726,234,48081,1,0,0,0,9 +"1624",2009,39143,"OH","39","143",61039,0.955536624125559,3278,0.129294385556775,8.09498875930377,8.95053283629038,9.77820773610937,12.1538461538462,330.742049469965,117,35375,1,0,0,0,9 +"1625",2009,39145,"OH","39","145",79241,0.957370553122752,5309,0.122222082003003,8.57715877258367,9.23639790629547,10.0470682810137,12.5076923076923,610.739553988086,284,46501,1,0,0,0,9 +"1626",2009,39147,"OH","39","147",56897,0.960560310736946,4002,0.12496265180941,8.29454951514368,8.81892608709068,9.6868850617653,12.7461538461538,356.22944830106,117,32844,1,0,0,0,9 +"1627",2009,39149,"OH","39","149",49540,0.960738796931772,2563,0.11980218005652,7.84893372636407,8.80926561216931,9.55066233175214,13.7384615384615,390.501319261214,111,28425,1,0,0,0,9 +"1628",2009,39151,"OH","39","151",376210,0.902235453603041,22111,0.131184710666915,10.0038305012322,10.7646249179423,11.6219592259944,11.4076923076923,367.314932429644,801,218069,1,0,0,0,9 +"1629",2009,39153,"OH","39","153",542135,0.821387661744768,33680,0.127326219484077,10.4246594683563,11.1733744939061,12.0165572751959,9.99230769230769,421.59011179556,1364,323537,1,0,0,0,9 +"1630",2009,39155,"OH","39","155",211290,0.902309621846751,11502,0.139486014482465,9.3502762122737,10.1767537132535,11.0370003382123,13.9076923076923,483.600865906956,592,122415,1,0,0,0,9 +"1631",2009,39157,"OH","39","157",92584,0.979640110602264,4946,0.130681327227167,8.50633444808136,9.35409433562088,10.1932050521,11.3076923076923,324.541327430308,173,53306,1,0,0,0,9 +"1632",2009,39159,"OH","39","159",51798,0.94279701918993,2546,0.101335958917333,7.84227877911735,9.07406235368355,9.74624877610964,8.56923076923077,256.069802731411,81,31632,1,0,0,0,9 +"1633",2009,39161,"OH","39","161",28849,0.981801795556172,1430,0.125446289299456,7.26542972325395,8.15908865466791,9.00257792270028,14.9153846153846,302.021696252465,49,16224,1,0,0,0,9 +"1634",2009,39163,"OH","39","163",13474,0.987976844292712,687,0.128543862253228,6.53233429222235,7.48717369421374,8.26642147298455,13.2076923076923,509.748948642793,40,7847,1,0,0,0,9 +"1635",2009,39165,"OH","39","165",211231,0.921682896923274,9604,0.107990777868779,9.16993495734114,10.4438913958309,11.0332754586727,8.9,292.307081297907,368,125895,1,0,0,0,9 +"1636",2009,39167,"OH","39","167",61968,0.976019881229021,3685,0.139265427317325,8.21202580462344,8.94923531437485,9.82476896782472,9.56923076923077,428.960321170292,156,36367,1,0,0,0,9 +"1637",2009,39169,"OH","39","169",114588,0.969848500715607,7436,0.122203023004154,8.91408834884133,9.54545454398782,10.3936613885712,10.0461538461538,330.124218833971,215,65127,1,0,0,0,9 +"1638",2009,39171,"OH","39","171",37950,0.979789196310935,2021,0.123425559947299,7.61134771740362,8.47365918939251,9.27977314669152,15.8615384615385,320.131711332663,70,21866,1,0,0,0,9 +"1639",2009,39173,"OH","39","173",125384,0.952362342882664,14500,0.116976647738148,9.58190392840867,9.62019582838564,10.5632072069836,11.4307692307692,283.656422791859,217,76501,1,0,0,0,9 +"1640",2009,39175,"OH","39","175",22644,0.987899664370253,1129,0.125463698993111,7.02908756414966,7.98989937494294,8.76732914779405,14.0307692307692,371.689639151309,48,12914,1,0,0,0,9 +"1641",2009,40001,"OK","40","001",22477,0.495662232504338,1246,0.115184410730969,7.1276936993474,7.97590836016554,8.74608021735751,8.23846153846154,558.614635703455,70,12531,0,0,0,0,9 +"1642",2009,40003,"OK","40","003",5585,0.9183527305282,239,0.13142345568487,5.47646355193151,6.74993119378857,7.09174211509515,4.96153846153846,327.478416195296,11,3359,0,0,0,0,9 +"1643",2009,40005,"OK","40","005",14155,0.788272695160721,797,0.13069586718474,6.68085467879022,7.49942329059223,8.24380842366528,8.46923076923077,509.894379021488,42,8237,0,0,0,0,9 +"1644",2009,40007,"OK","40","007",5562,0.973031283710895,250,0.135203164329378,5.52146091786225,6.46925031679577,7.32383056620232,3.58461538461538,511.836212412028,16,3126,0,0,0,0,9 +"1645",2009,40009,"OK","40","009",22369,0.909830569091153,1658,0.102642049264607,7.41336733569524,7.95014988765202,8.67385500142962,6.03846153846154,488.888888888889,66,13500,0,0,0,0,9 +"1646",2009,40011,"OK","40","011",11896,0.857683254875588,842,0.107178883658373,6.73578001424233,7.36073990305828,7.85438121065236,5.76153846153846,356.213179887656,26,7299,0,0,0,0,9 +"1647",2009,40013,"OK","40","013",41859,0.817100265175948,3334,0.118731933395447,8.11192806331074,8.48446336679332,9.4090272828564,5.38461538461538,525.28452911994,126,23987,0,0,0,0,9 +"1648",2009,40015,"OK","40","015",29459,0.677483960759021,1724,0.118198173732985,7.45240245122364,8.1934002319521,8.9455932708069,6.36923076923077,634.600557499555,107,16861,0,0,0,0,9 +"1649",2009,40017,"OK","40","017",113186,0.880630113264891,6196,0.112319544820031,8.73165920153676,9.67558268412021,10.4292806034239,5.71538461538462,315.937107846756,214,67735,0,0,0,0,9 +"1650",2009,40019,"OK","40","019",47421,0.796524746420362,2590,0.121422998249721,7.85941315469358,8.66423293406555,9.51944141180126,5.70769230769231,646.431623137794,174,26917,0,0,0,0,9 +"1651",2009,40021,"OK","40","021",46492,0.590961885915857,4514,0.117826722877054,8.41493895737748,8.57828829077605,9.5188539540079,5.53076923076923,428.708699829995,116,27058,0,0,0,0,9 +"1652",2009,40023,"OK","40","023",15127,0.683942619157797,804,0.138956832154426,6.68959926917897,7.39694860262101,8.36007143564403,7.22307692307692,776.133883094834,64,8246,0,0,0,0,9 +"1653",2009,40027,"OK","40","027",251803,0.851129652942975,26841,0.106202070666354,10.1976858482157,10.3719274598057,11.2712996642771,5.5,299.227311751932,474,158408,0,0,0,0,9 +"1654",2009,40029,"OK","40","029",5962,0.791680644079168,277,0.127977188862798,5.62401750618734,6.44730586254121,7.38894609761844,8.79230769230769,657.894736842105,21,3192,0,0,0,0,9 +"1655",2009,40031,"OK","40","031",119952,0.696003401360544,11729,0.0921201814058957,9.3698196865215,9.61440449916872,10.4458990488613,5.36923076923077,378.819186158636,275,72594,0,0,0,0,9 +"1656",2009,40033,"OK","40","033",6179,0.860171548794303,267,0.128985272697848,5.58724865840025,6.67582322163485,7.46049030582534,4.55384615384615,552.486187845304,19,3439,0,0,0,0,9 +"1657",2009,40035,"OK","40","035",14914,0.727303205042242,783,0.125787850341961,6.6631326959908,7.56786260546388,8.30943074214033,5.75384615384615,616.279069767442,53,8600,0,0,0,0,9 +"1658",2009,40037,"OK","40","037",69535,0.84788955202416,3652,0.129632559142878,8.20303024171486,9.08239335764556,9.90877355696536,8.2,623.731870444127,249,39921,0,0,0,0,9 +"1659",2009,40039,"OK","40","039",27284,0.87479841665445,3524,0.100608415188389,8.16735198705607,7.91607809630279,8.97144846369383,4.73846153846154,437.664124046517,70,15994,0,0,0,0,9 +"1660",2009,40041,"OK","40","041",41290,0.723371276338096,1947,0.148437878420925,7.5740450053722,8.43944784279138,9.35157948366891,6.64615384615385,533.792129874713,121,22668,0,0,0,0,9 +"1661",2009,40047,"OK","40","047",59989,0.905716047942123,3892,0.115054426644885,8.2666784433059,8.81537000096066,9.7430840310431,4.49230769230769,480.195570559646,165,34361,0,0,0,0,9 +"1662",2009,40049,"OK","40","049",27582,0.866543397868175,1457,0.123885142484229,7.2841348061952,8.10621290261996,8.95802544336169,5.83846153846154,641.981713248168,99,15421,0,0,0,0,9 +"1663",2009,40051,"OK","40","051",52231,0.897608699814286,3065,0.120924355267944,8.02780284837031,8.82158487743096,9.64510534912921,7.34615384615385,451.925596017815,138,30536,0,0,0,0,9 +"1664",2009,40055,"OK","40","055",6273,0.886816515223976,424,0.107922843934322,6.04973345523196,6.71417052990947,7.23705902612474,7.88461538461539,450.808804030761,17,3771,0,0,0,0,9 +"1665",2009,40061,"OK","40","061",12772,0.80089257751331,677,0.13373003445036,6.51767127291227,7.30854279753919,8.17075142375753,7.89230769230769,513.405590416429,36,7012,0,0,0,0,9 +"1666",2009,40063,"OK","40","063",13705,0.733746807734403,695,0.124990879241153,6.54391184556479,7.44949800538285,8.14409846333852,10.4461538461538,557.314756174794,44,7895,0,0,0,0,9 +"1667",2009,40065,"OK","40","065",26256,0.865821145642901,2022,0.108356185252895,7.61184239958042,8.06180227453835,8.93353229607628,5.15384615384615,348.661272284718,53,15201,0,0,0,0,9 +"1668",2009,40067,"OK","40","067",6521,0.911976690691612,332,0.127587793283239,5.80513496891649,6.57228254269401,7.4899708988348,8.5,589.887640449438,21,3560,0,0,0,0,9 +"1669",2009,40069,"OK","40","069",10838,0.785938365011995,706,0.128160177154457,6.55961523749324,7.14913159855741,8.01532730902172,7.68461538461538,940.904588973259,57,6058,0,0,0,0,9 +"1670",2009,40071,"OK","40","071",46814,0.853975306532234,2661,0.125133507070534,7.88645727097769,8.53699581871242,9.45790332783114,7.65384615384615,640.851361323649,165,25747,0,0,0,0,9 +"1671",2009,40073,"OK","40","073",14901,0.944164821152943,746,0.115092946782095,6.61472560020376,7.53689712956617,8.33926198292358,4.55384615384615,383.004189108318,32,8355,0,0,0,0,9 +"1672",2009,40075,"OK","40","075",9445,0.863313922710429,455,0.132662784542086,6.12029741895095,6.93049476595163,7.85593219971861,6.36923076923077,705.030487804878,37,5248,0,0,0,0,9 +"1673",2009,40077,"OK","40","077",11155,0.747646795159121,678,0.12666965486329,6.5191472879404,7.1420365747068,8.00803284696931,11.0307692307692,379.475334103283,23,6061,0,0,0,0,9 +"1674",2009,40079,"OK","40","079",49989,0.824481385904899,2960,0.128228210206245,7.99294454731811,8.72095002893026,9.54531148247113,10.0615384615385,667.972301881514,191,28594,0,0,0,0,9 +"1675",2009,40081,"OK","40","081",34027,0.893731448555559,1756,0.129103359097188,7.47079377419506,8.34877453979127,9.17988116449147,7.27692307692308,423.772609819121,82,19350,0,0,0,0,9 +"1676",2009,40083,"OK","40","083",41116,0.853244479034926,2715,0.12216655316665,7.90654723236804,8.536211197252,9.40672918598157,5.83076923076923,342.852364426977,82,23917,0,0,0,0,9 +"1677",2009,40085,"OK","40","085",9340,0.88865096359743,510,0.132441113490364,6.23441072571837,7.05531284333975,7.87435882472988,5.30769230769231,815.475061634743,43,5273,0,0,0,0,9 +"1678",2009,40087,"OK","40","087",33822,0.910235941103424,1596,0.121104606469162,7.37525577800975,8.43533216493592,9.20502627715241,5.86153846153846,383.220070512493,75,19571,0,0,0,0,9 +"1679",2009,40089,"OK","40","089",33002,0.720744197321375,1790,0.124780316344464,7.4899708988348,8.31409733540581,9.14345242643455,10.7076923076923,721.942682126449,132,18284,0,0,0,0,9 +"1680",2009,40091,"OK","40","091",20160,0.739583333333333,862,0.151736111111111,6.75925527066369,7.69165682281055,8.63177109612367,8.14615384615385,651.524748891503,72,11051,0,0,0,0,9 +"1681",2009,40093,"OK","40","093",7557,0.962551276961757,367,0.131136694455472,5.90536184805457,6.70563909486,7.6251071482389,4.59230769230769,314.085527905291,13,4139,0,0,0,0,9 +"1682",2009,40095,"OK","40","095",15652,0.856120623562484,787,0.134807053411705,6.6682282484174,7.46336304552002,8.3584318990313,8.35384615384615,531.412376003779,45,8468,0,0,0,0,9 +"1683",2009,40097,"OK","40","097",41093,0.739955710218285,2169,0.127272284817365,7.68202151082687,8.52018870039604,9.34984141075374,8.76153846153846,575.583156619206,133,23107,0,0,0,0,9 +"1684",2009,40099,"OK","40","099",13373,0.833545203021013,654,0.131234577133029,6.4831073514572,7.39694860262101,8.22844388300403,4.33846153846154,637.958532695375,48,7524,0,0,0,0,9 +"1685",2009,40101,"OK","40","101",70677,0.659903504676203,4491,0.12252925279794,8.40983067308774,9.06044728240157,9.94126491687016,7.76923076923077,542.628079780993,222,40912,0,0,0,0,9 +"1686",2009,40103,"OK","40","103",11536,0.875173370319001,571,0.121966019417476,6.34738920965601,7.27309259599952,8.06652149046999,7.89230769230769,631.15763546798,41,6496,0,0,0,0,9 +"1687",2009,40105,"OK","40","105",10595,0.749598867390278,484,0.130344502123643,6.18208490671663,7.09090982207998,7.98989937494294,8.96153846153846,547.19562243502,32,5848,0,0,0,0,9 +"1688",2009,40107,"OK","40","107",12094,0.684802381346122,610,0.125682156441211,6.41345895716736,7.35564110297425,8.02780284837031,8.3,740.318906605923,52,7024,0,0,0,0,9 +"1689",2009,40109,"OK","40","109",711595,0.747485578172978,54733,0.109288288984605,10.9102220971798,11.3914468590984,12.2849207938479,6.28461538461538,426.555604486212,1821,426908,0,0,0,0,9 +"1690",2009,40111,"OK","40","111",39817,0.706457040962403,2533,0.124444332822664,7.83715965000168,8.4525479979227,9.330431852234,9.31538461538462,641.428186956132,143,22294,0,0,0,0,9 +"1691",2009,40113,"OK","40","113",47445,0.708968279059964,2360,0.13558857624618,7.76641689801966,8.65869275368994,9.51044496442652,7.73846153846154,563.923451939169,155,27486,0,0,0,0,9 +"1692",2009,40115,"OK","40","115",31883,0.758397892293699,1987,0.124078662610168,7.59438124255182,8.22309055116153,9.09414357757367,6.4,640.182909402687,112,17495,0,0,0,0,9 +"1693",2009,40117,"OK","40","117",16559,0.846548704631922,778,0.135696600036234,6.65672652417839,7.64491934495886,8.454679286027,8.78461538461539,612.047675292602,57,9313,0,0,0,0,9 +"1694",2009,40119,"OK","40","119",76859,0.86086209812774,15202,0.088929077921909,9.62918227712599,8.89178663585731,10.0669660215286,6.25384615384615,306.259953448487,150,48978,0,0,0,0,9 +"1695",2009,40121,"OK","40","121",45887,0.788066336871009,2711,0.131518730795214,7.90507284949867,8.6255093348997,9.43308384326905,6.33846153846154,631.539611360239,169,26760,0,0,0,0,9 +"1696",2009,40123,"OK","40","123",37283,0.7591127323445,3460,0.114127082048118,8.14902386805177,8.34069464792507,9.30828344630615,5.57692307692308,705.719557195572,153,21680,0,0,0,0,9 +"1697",2009,40125,"OK","40","125",69002,0.807628764383641,4871,0.115677806440393,8.49105453380654,9.05858681674865,9.94702585455061,6.48461538461538,528.820729772607,210,39711,0,0,0,0,9 +"1698",2009,40127,"OK","40","127",11574,0.789182650768965,550,0.136599274235355,6.30991827822652,7.14519613499717,8.05674377497531,8.54615384615385,848.271446862996,53,6248,0,0,0,0,9 +"1699",2009,40131,"OK","40","131",86577,0.820945516707671,4968,0.116855515899142,8.51077262361331,9.38588904448271,10.1364626157636,7.10769230769231,365.970722342213,183,50004,0,0,0,0,9 +"1700",2009,40133,"OK","40","133",25428,0.725853389963819,1380,0.12356457448482,7.22983877815125,7.97384437594469,8.86686366120209,8.83846153846154,742.235353462564,103,13877,0,0,0,0,9 +"1701",2009,40135,"OK","40","135",42208,0.735974222896133,2254,0.124360310841547,7.72046169459972,8.6312359074569,9.40640045488065,9.79230769230769,699.154316335929,167,23886,0,0,0,0,9 +"1702",2009,40137,"OK","40","137",44799,0.905779146855957,2347,0.127659099533472,7.76089319585102,8.53227882883428,9.454540665816,7.62307692307692,475.096998970623,120,25258,0,0,0,0,9 +"1703",2009,40139,"OK","40","139",20128,0.935612082670906,1740,0.0967309220985692,7.46164039220858,7.81923445385907,8.60171814648593,5.31538461538462,364.931792510209,42,11509,0,0,0,0,9 +"1704",2009,40141,"OK","40","141",8016,0.86439620758483,391,0.127245508982036,5.96870755998537,6.92165818415113,7.66152708135852,7.18461538461538,497.962879130828,22,4418,0,0,0,0,9 +"1705",2009,40143,"OK","40","143",597748,0.778570568199308,41608,0.110966494241721,10.6360477354529,11.2685582772044,12.1076049861295,6.72307692307692,432.310590768403,1542,356688,0,0,0,0,9 +"1706",2009,40145,"OK","40","145",72143,0.820911245720305,3611,0.124918564517694,8.19174002127746,9.20008799551183,9.97840947905339,6.70769230769231,428.666161424782,181,42224,0,0,0,0,9 +"1707",2009,40147,"OK","40","147",50754,0.833707688063995,2892,0.128265752453009,7.96970358327866,8.65172408437384,9.59682651348654,5.63846153846154,489.092188599578,139,28420,0,0,0,0,9 +"1708",2009,40149,"OK","40","149",11664,0.942901234567901,622,0.113597393689986,6.43294009273918,7.18992217074581,8.06934236681164,5.76153846153846,688.899326757476,44,6387,0,0,0,0,9 +"1709",2009,40151,"OK","40","151",8708,0.927423059255857,1170,0.109324758842444,7.0647590277918,6.73696695800186,7.74759683869289,4.33076923076923,253.460713589394,13,5129,0,0,0,0,9 +"1710",2009,40153,"OK","40","153",20467,0.939072653539845,1340,0.106024331851273,7.20042489294496,7.83201418050547,8.61631428228404,6.37692307692308,580.634609093883,71,12228,0,0,0,0,9 +"1711",2009,41001,"OR","41","001",16225,0.974298921417565,710,0.165731895223421,6.56526497003536,7.4301141385618,8.39479954320217,9.99230769230769,497.732551708882,45,9041,1,0,0,0,9 +"1712",2009,41003,"OR","41","003",85390,0.916126010071437,13943,0.120178006792364,9.54273286919502,9.07153796909572,10.190094046761,7.64615384615385,197.249566788335,107,54246,1,0,0,0,9 +"1713",2009,41005,"OR","41","005",374085,0.930277878022375,19672,0.140259566676023,9.88695158389603,10.829550381559,11.6436729862181,9.96923076923077,294.923763315919,665,225482,1,0,0,0,9 +"1714",2009,41007,"OR","41","007",36972,0.95996970680515,2218,0.163123444769014,7.70436116791031,8.33734856449717,9.31244559491334,8.79230769230769,430.454667742803,96,22302,1,0,0,0,9 +"1715",2009,41009,"OR","41","009",49394,0.958274284326031,2412,0.144592460622748,7.78821155784708,8.80881748310064,9.60615910303254,12.8153846153846,391.112309922789,116,29659,1,0,0,0,9 +"1716",2009,41011,"OR","41","011",63079,0.942247023573614,3225,0.162494649566417,8.07868822922987,8.76826314537129,9.80884714838201,12.5153846153846,549.801460583678,198,36013,1,0,0,0,9 +"1717",2009,41013,"OR","41","013",21410,0.972629612330687,895,0.155721625408688,6.79682371827486,7.79646924308606,8.72842609170461,17.4769230769231,338.228015179013,41,12122,1,0,0,0,9 +"1718",2009,41015,"OR","41","015",22341,0.957119197887292,849,0.189472270713039,6.74405918631135,7.60439634879634,8.73101341526956,12.6769230769231,626.64907651715,76,12128,1,0,0,0,9 +"1719",2009,41017,"OR","41","017",157345,0.966691029266898,8454,0.137500397216308,9.04239498112674,9.97166008763918,10.7778515131822,14.3307692307692,268.334424982569,254,94658,1,0,0,0,9 +"1720",2009,41019,"OR","41","019",107378,0.957207249157183,5531,0.155944420644825,8.61812390999468,9.34792603492875,10.3257770010346,15.0846153846154,427.598322753866,258,60337,1,0,0,0,9 +"1721",2009,41023,"OR","41","023",7343,0.975078305869536,286,0.176903173090018,5.65599181081985,6.62539236800796,7.63336964967958,13.1769230769231,417.280314187531,17,4074,1,0,0,0,9 +"1722",2009,41025,"OR","41","025",7432,0.951426264800861,325,0.153525296017223,5.78382518232974,6.63200177739563,7.64156444126097,15.7384615384615,530.503978779841,22,4147,1,0,0,0,9 +"1723",2009,41027,"OR","41","027",22015,0.961753349988644,1175,0.117238246650011,7.06902342657826,8.0471895621705,8.76201995356159,7.87692307692308,307.810696421701,40,12995,1,0,0,0,9 +"1724",2009,41029,"OR","41","029",202301,0.95272391139935,12064,0.145125333043336,9.39798109024774,10.0538453341247,10.997288284207,12.3076923076923,392.571857718304,460,117176,1,0,0,0,9 +"1725",2009,41031,"OR","41","031",21730,0.78780487804878,1200,0.135664979291302,7.09007683577609,7.93487156594518,8.68253812400308,14.4615384615385,638.641875505255,79,12370,1,0,0,0,9 +"1726",2009,41033,"OR","41","033",82315,0.960736196319018,3840,0.161124946850513,8.25322764558177,9.0595174822416,10.0590800495881,13.9230769230769,519.274775567682,236,45448,1,0,0,0,9 +"1727",2009,41035,"OR","41","035",66460,0.922494733674391,4255,0.14690039121276,8.35585004100747,8.94793610670867,9.86204036262195,13.5692307692308,493.459700791102,189,38301,1,0,0,0,9 +"1728",2009,41037,"OR","41","037",7901,0.954689279837995,325,0.164029869636755,5.78382518232974,6.87316383421252,7.68294316987829,12.1846153846154,368.284228769497,17,4616,1,0,0,0,9 +"1729",2009,41039,"OR","41","039",350850,0.936545532278752,31597,0.138751603249252,10.3608174583594,10.6251493009943,11.5937955226031,11.8153846153846,353.224213937059,762,215727,1,0,0,0,9 +"1730",2009,41041,"OR","41","041",45989,0.931222683685229,2113,0.191545804431494,7.65586401761606,8.43641688138895,9.54423786822493,10.2,523.328665143363,142,27134,1,0,0,0,9 +"1731",2009,41043,"OR","41","043",116001,0.958577943293592,6720,0.132671270075258,8.8128434335172,9.56366972566382,10.4279793670659,13.4076923076923,393.794749403341,264,67040,1,0,0,0,9 +"1732",2009,41045,"OR","41","045",31265,0.942075803614265,2081,0.11280985127139,7.64060382639363,8.2550489027523,8.91771275713139,10.4846153846154,385.138196647032,68,17656,1,0,0,0,9 +"1733",2009,41047,"OR","41","047",313389,0.922728621617223,21097,0.115185919097352,9.95688612926082,10.5844862380492,11.3988605086823,10.6846153846154,330.266702809756,597,180763,1,0,0,0,9 +"1734",2009,41049,"OR","41","049",11102,0.958115654836966,518,0.125292740046838,6.24997524225948,7.25205395185281,8.00836557031292,9,419.490158115521,26,6198,1,0,0,0,9 +"1735",2009,41051,"OR","41","051",727721,0.835092020156076,53355,0.116665590246812,10.8847229730507,11.6155362034537,12.3932075993197,10.1384615384615,313.807531380753,1518,483736,1,0,0,0,9 +"1736",2009,41053,"OR","41","053",74934,0.935263031467692,6010,0.127525555822457,8.70118002752925,9.07863588097876,9.99970641027667,9.09230769230769,338.539842637342,145,42831,1,0,0,0,9 +"1737",2009,41057,"OR","41","057",25179,0.967194884626077,1124,0.175106239326423,7.02464903045364,7.88532923927319,8.86545282575362,9.19230769230769,480.668756530825,69,14355,1,0,0,0,9 +"1738",2009,41059,"OR","41","059",75199,0.92862937007141,4755,0.118804771340044,8.46695197497949,9.17357264778397,9.9082263068833,9.39230769230769,361.684482123111,157,43408,1,0,0,0,9 +"1739",2009,41061,"OR","41","061",25580,0.959773260359656,1967,0.141673182173573,7.58426481838906,7.85282781228174,8.90788301394225,11.1615384615385,458.182315530329,67,14623,1,0,0,0,9 +"1740",2009,41063,"OR","41","063",6948,0.981577432354634,265,0.187967760506621,5.57972982598622,6.40687998606931,7.60936653795421,11.6846153846154,381.970970206264,15,3927,1,0,0,0,9 +"1741",2009,41065,"OR","41","065",24981,0.925943717225091,1386,0.147672230895481,7.23417717974985,7.93236215433975,8.86502918668777,8.90769230769231,402.428692459757,57,14164,1,0,0,0,9 +"1742",2009,41067,"OR","41","067",524699,0.860716334507975,31549,0.107444458632473,10.359297171746,11.3010803453138,12.0133370503873,9.1,224.123129752269,731,326160,1,0,0,0,9 +"1743",2009,41071,"OR","41","071",98647,0.941701217472402,6798,0.117864709519803,8.82438373025606,9.45938556081305,10.2433113093909,11.1538461538462,259.862569325753,149,57338,1,0,0,0,9 +"1744",2009,44001,"RI","44","001",50075,0.971223165252122,3989,0.129106340489266,8.29129585190541,8.71358200542163,9.62039493241815,10.4692307692308,269.550975842773,79,29308,1,0,0,0,9 +"1745",2009,44003,"RI","44","003",166766,0.954343211445978,8952,0.132473046064546,9.09963224999176,10.0696797274002,10.8680159150088,10.8769230769231,343.266212238272,351,102253,1,0,0,0,9 +"1746",2009,44005,"RI","44","005",82896,0.929236633854468,5169,0.144253039953677,8.55043452519604,9.2981680823417,10.1370961536981,10.1615384615385,260.515821326226,130,49901,1,0,0,0,9 +"1747",2009,44007,"RI","44","007",626304,0.828121806662579,52290,0.109116339668915,10.8645604271822,11.3391195469845,12.1742774945238,12.3384615384615,317.690291479525,1206,379615,1,0,0,0,9 +"1748",2009,44009,"RI","44","009",127605,0.953622506955057,10877,0.13993965753693,9.29440574709385,9.65233025476672,10.5680037502969,9.26153846153846,256.336480866313,196,76462,1,0,0,0,9 +"1749",2009,45001,"SC","45","001",25614,0.705278363395018,1548,0.142890606699461,7.34471905414967,8.07309119969315,8.9201217518724,14.3692307692308,423.902639135786,62,14626,0,0,0,0,9 +"1750",2009,45003,"SC","45","003",158499,0.729790093312892,9927,0.131388841569978,9.20301359658972,9.88725653942571,10.782553977112,9.36153846153846,445.43429844098,416,93392,0,0,0,0,9 +"1751",2009,45005,"SC","45","005",10619,0.25454374234862,688,0.135605989264526,6.53378883793334,7.26822302115957,7.95472333449791,20.8923076923077,670.731707317073,44,6560,0,0,0,0,9 +"1752",2009,45007,"SC","45","007",186544,0.822133116047688,10615,0.126506347028047,9.27002337413736,10.130901970701,10.932660441467,12.1846153846154,433.997383115567,471,108526,0,0,0,0,9 +"1753",2009,45009,"SC","45","009",16022,0.368243664960679,1309,0.137498439645487,7.1770187659099,7.45066079621154,8.45765547870004,15.8846153846154,636.160714285714,57,8960,0,0,0,0,9 +"1754",2009,45011,"SC","45","011",22611,0.540710273760559,1343,0.130998186723276,7.20266119652324,7.94732502701646,8.83550145740978,17.3846153846154,682.20144105473,89,13046,0,0,0,0,9 +"1755",2009,45013,"SC","45","013",159737,0.774573204705234,11796,0.136198876903911,9.37551576993517,9.7749721303007,10.724324094237,8.86923076923077,302.324539794867,270,89308,0,0,0,0,9 +"1756",2009,45015,"SC","45","015",175092,0.702202270806205,13269,0.110610421949604,9.49318576653644,10.1010260751349,10.9002147607006,10.4153846153846,358.333333333333,387,108000,0,0,0,0,9 +"1757",2009,45017,"SC","45","017",15268,0.554886036154048,796,0.153065234477338,6.67959918584438,7.55851674304564,8.44397712908498,12.4384615384615,518.935629899525,47,9057,0,0,0,0,9 +"1758",2009,45019,"SC","45","019",346795,0.669444484493721,31368,0.120584206808057,10.3535435439722,10.6779151360472,11.6267897211193,8.89230769230769,373.250104948073,818,219156,0,0,0,0,9 +"1759",2009,45021,"SC","45","021",55149,0.780630655134273,3518,0.125877169123647,8.1656479252975,8.96520680277036,9.72208557280156,16.0769230769231,523.399957148541,171,32671,0,0,0,0,9 +"1760",2009,45023,"SC","45","023",33210,0.60834086118639,1898,0.132399879554351,7.54855597916987,8.40469616018909,9.21054035197885,20.1,694.730341704405,135,19432,0,0,0,0,9 +"1761",2009,45025,"SC","45","025",46638,0.65227925725803,2681,0.131566533727861,7.89394513823596,8.77199043653224,9.54387974051276,16.7307692307692,547.745115939383,150,27385,0,0,0,0,9 +"1762",2009,45027,"SC","45","027",34942,0.483630015454181,2486,0.144782782897373,7.81843027207066,8.2666784433059,9.22513045744882,15.2538461538462,604.978676981057,122,20166,0,0,0,0,9 +"1763",2009,45029,"SC","45","029",38864,0.586378139151914,2206,0.138611568546727,7.69893619981345,8.47762041629641,9.36288977043647,13.2384615384615,679.906960100197,152,22356,0,0,0,0,9 +"1764",2009,45031,"SC","45","031",68705,0.570846372170876,3922,0.136394731096718,8.27435700675629,9.10063710688422,9.95911145628413,13.1769230769231,623.565798663075,250,40092,0,0,0,0,9 +"1765",2009,45033,"SC","45","033",31817,0.498852814533111,1929,0.122544551654776,7.56475701290573,8.28928832300032,9.1783335758411,15.5461538461538,656.203860666047,120,18287,0,0,0,0,9 +"1766",2009,45035,"SC","45","035",133560,0.70675351901767,7709,0.110983827493261,8.95014375645926,9.9028873724641,10.6339786862365,9.9,319.40543362084,257,80462,0,0,0,0,9 +"1767",2009,45037,"SC","45","037",27032,0.608242083456644,1541,0.135173128144421,7.34018683532012,8.28526113406895,8.89768231345422,10.3230769230769,401.132609721567,68,16952,0,0,0,0,9 +"1768",2009,45039,"SC","45","039",24084,0.396362730443448,1328,0.150556385982395,7.19142933003638,8.00936307663004,8.92065629685373,13.3461538461538,590.277777777778,85,14400,0,0,0,0,9 +"1769",2009,45041,"SC","45","041",136120,0.565111666176903,9317,0.127071701439906,9.13959596745043,9.79584666101874,10.672414521272,11.3153846153846,518.281772523662,420,81037,0,0,0,0,9 +"1770",2009,45043,"SC","45","043",60369,0.649472411336944,2827,0.16324603687323,7.94697135769359,8.83608319099221,9.80780230240172,12.1307692307692,580.713280150164,198,34096,0,0,0,0,9 +"1771",2009,45045,"SC","45","045",446655,0.785313049221435,29614,0.115520927785427,10.2960025014687,11.0579444293901,11.8321861431467,9.93076923076923,378.837166937442,1019,268981,0,0,0,0,9 +"1772",2009,45047,"SC","45","047",69598,0.665090950889393,4905,0.11950056036093,8.49801037199946,9.09481728072064,9.9661336591864,12.6846153846154,467.568643056108,188,40208,0,0,0,0,9 +"1773",2009,45049,"SC","45","049",21205,0.442961565668474,1219,0.123037019570856,7.10578612948127,7.98684490116138,8.68592279469073,15,571.655418816991,72,12595,0,0,0,0,9 +"1774",2009,45051,"SC","45","051",265640,0.837927269989459,17956,0.142410781508809,9.79567959990182,10.4267356963007,11.3079901333047,11.9153846153846,442.926316579708,708,159846,0,0,0,0,9 +"1775",2009,45053,"SC","45","053",24234,0.504043905257077,1831,0.110010728728233,7.51261754467451,8.090708716084,8.82922635473185,10.4923076923077,427.495419691932,63,14737,0,0,0,0,9 +"1776",2009,45055,"SC","45","055",61143,0.734474919451123,3199,0.135763701486679,8.07059353994952,8.98857087621512,9.82757795843578,10.7307692307692,521.95271722444,187,35827,0,0,0,0,9 +"1777",2009,45057,"SC","45","057",75394,0.740151736212431,4027,0.129983818340982,8.30077696085145,9.2897982933109,10.0101422304047,17.6153846153846,480.920490808576,214,44498,0,0,0,0,9 +"1778",2009,45059,"SC","45","059",66897,0.731751797539501,4365,0.131396026727656,8.3813734682737,9.08828572596888,9.90313749127183,11.9153846153846,596.609822297332,233,39054,0,0,0,0,9 +"1779",2009,45061,"SC","45","061",19352,0.344512195121951,1389,0.127428689541133,7.23633934275434,7.7591874385078,8.58858318750291,14.4769230769231,770.99042616284,91,11803,0,0,0,0,9 +"1780",2009,45063,"SC","45","063",258983,0.82820107883529,15906,0.121359317020808,9.67445167551708,10.5172397322818,11.2971794840365,8.16153846153846,353.101065653936,556,157462,0,0,0,0,9 +"1781",2009,45065,"SC","45","065",10235,0.489399120664387,464,0.177918905715681,6.13988455222626,7.12044437239249,7.87435882472988,16.3230769230769,437.246963562753,27,6175,0,0,0,0,9 +"1782",2009,45067,"SC","45","067",33277,0.425038314751931,1857,0.144063467259669,7.52671756135271,8.30474226964077,9.26983494376182,20.6384615384615,685.390363308426,133,19405,0,0,0,0,9 +"1783",2009,45069,"SC","45","069",29189,0.429922230977423,1748,0.127342492034671,7.46622755621548,8.34283980427146,9.00097644407034,19.3384615384615,517.711171662125,95,18350,0,0,0,0,9 +"1784",2009,45071,"SC","45","071",37413,0.663646326143319,2463,0.132440595514928,7.80913539812054,8.44870019497094,9.29862593684354,11.5230769230769,547.504025764895,119,21735,0,0,0,0,9 +"1785",2009,45073,"SC","45","073",73829,0.909954083083883,4183,0.145471291768817,8.3387839714422,9.11646915636611,9.97441189087283,13.4692307692308,452.147701582517,192,42464,0,0,0,0,9 +"1786",2009,45075,"SC","45","075",92755,0.356627675057948,7719,0.130688372594469,8.95144010094985,9.26662618298677,10.263885557275,15.5153846153846,605.857865001487,326,53808,0,0,0,0,9 +"1787",2009,45077,"SC","45","077",119183,0.910549323309532,14644,0.112516046751634,9.59178597424013,9.57164458429858,10.475539969718,10.6538461538462,416.9804479402,299,71706,0,0,0,0,9 +"1788",2009,45079,"SC","45","079",380245,0.497016397322779,39782,0.104650948730424,10.591169827665,10.8247658259213,11.7119156582702,9.39230769230769,369.641460399162,879,237798,0,0,0,0,9 +"1789",2009,45081,"SC","45","081",19677,0.700767393403466,1135,0.129033897443716,7.0343879299155,7.82124208352356,8.61703852638595,9.63846153846154,412.316869900868,47,11399,0,0,0,0,9 +"1790",2009,45083,"SC","45","083",283335,0.761561402579985,18447,0.120708701713519,9.82265703462158,10.581901733494,11.3568095219444,12.0692307692308,456.577286028017,763,167113,0,0,0,0,9 +"1791",2009,45085,"SC","45","085",107004,0.503523232776345,8180,0.111388359313671,9.00944742959679,9.49484239342133,10.3793179233049,12.4692307692308,477.556449415875,298,62401,0,0,0,0,9 +"1792",2009,45087,"SC","45","087",29100,0.674810996563574,1557,0.138041237113402,7.350516171834,8.23057721714645,9.0853438818015,19.4076923076923,683.438402168149,116,16973,0,0,0,0,9 +"1793",2009,45089,"SC","45","089",34622,0.326815319738894,1957,0.143088209808792,7.57916796739608,8.38480400337049,9.2370796691658,14.7461538461538,623.037676609105,127,20384,0,0,0,0,9 +"1794",2009,45091,"SC","45","091",223616,0.777238659129937,13971,0.11488444476245,9.54473903165049,10.4267949538042,11.1568646181495,13.6923076923077,356.064596052134,480,134807,0,0,0,0,9 +"1795",2009,46005,"SD","46","005",17288,0.93504164738547,983,0.125809810273022,6.89060912014717,7.52779398772144,8.44052810648075,3.40769230769231,424.782428512225,41,9652,0,0,0,0,9 +"1796",2009,46011,"SD","46","011",31729,0.950833622238331,6523,0.0868606007122821,8.7830896717961,7.98616486033273,9.13755460225053,3.46153846153846,161.828663902094,32,19774,0,0,0,0,9 +"1797",2009,46013,"SD","46","013",36181,0.948066664824079,2784,0.119068019126061,7.93164402145431,8.29479935899257,9.2533040714083,3.36153846153846,287.769784172662,60,20850,0,0,0,0,9 +"1798",2009,46019,"SD","46","019",9989,0.966663329662629,483,0.136550205225748,6.18001665365257,6.98193467715639,7.93844555116479,4.7,406.863612241288,23,5653,0,0,0,0,9 +"1799",2009,46023,"SD","46","023",9079,0.655138231082718,415,0.112237030509968,6.0282785202307,6.84694313958538,7.70391020961631,4.56923076923077,530.035335689046,24,4528,0,0,0,0,9 +"1800",2009,46027,"SD","46","027",13846,0.930665896287737,3314,0.0873898598873321,8.10591119798651,7.05789793741186,8.39253658681668,3.72307692307692,228.206298493838,20,8764,0,0,0,0,9 +"1801",2009,46029,"SD","46","029",27137,0.967387699450934,1791,0.112945425065409,7.49052940206071,8.07153089355666,8.94585385712759,5.73076923076923,268.782797900934,42,15626,0,0,0,0,9 +"1802",2009,46031,"SD","46","031",3983,0.313331659553101,254,0.0853627918654281,5.53733426701854,6.09807428216624,6.91968384984741,6.16923076923077,916.104146576664,19,2074,0,0,0,0,9 +"1803",2009,46033,"SD","46","033",8095,0.957998764669549,255,0.19715873996294,5.54126354515843,6.66440902035041,7.76004068088038,4.02307692307692,430.292598967298,20,4648,0,0,0,0,9 +"1804",2009,46035,"SD","46","035",19377,0.957785002838417,1425,0.115239717190484,7.26192709270275,7.6177595766085,8.57602797713713,4.49230769230769,294.361144328949,32,10871,0,0,0,0,9 +"1805",2009,46041,"SD","46","041",5252,0.226389946686976,354,0.0835872048743336,5.86929691313377,6.41836493593621,7.23993259132047,10.0307692307692,726.480203414457,20,2753,0,0,0,0,9 +"1806",2009,46047,"SD","46","047",7056,0.910147392290249,240,0.187074829931973,5.48063892334199,6.44413125670044,7.56216163122565,5.57692307692308,660.904931367565,26,3934,0,0,0,0,9 +"1807",2009,46065,"SD","46","065",16867,0.872887887591154,812,0.134167308946464,6.69950034016168,7.68753876620163,8.56883642456808,2.98461538461538,264.628050573361,27,10203,0,0,0,0,9 +"1808",2009,46071,"SD","46","071",2982,0.447686116700201,200,0.105969148222669,5.29831736654804,5.76519110278484,6.63068338564237,6.6,651.041666666667,10,1536,0,0,0,0,9 +"1809",2009,46079,"SD","46","079",11084,0.97807650667629,941,0.126127751714183,6.84694313958538,6.98749024700099,8.02224091680654,5.91538461538462,237.454487889821,15,6317,0,0,0,0,9 +"1810",2009,46081,"SD","46","081",23781,0.960809049240991,2237,0.140153904377444,7.71289096149013,7.78405700263993,8.85637603673042,4.03846153846154,268.399491453595,38,14158,0,0,0,0,9 +"1811",2009,46083,"SD","46","083",43522,0.972404760810625,2310,0.0947566747851661,7.74500280351584,8.75872660784204,9.4844811738613,4.01538461538462,127.398370845076,33,25903,0,0,0,0,9 +"1812",2009,46093,"SD","46","093",25314,0.944615627715888,2003,0.126886307971873,7.60240133566582,7.95752740223077,8.91462612782714,4.64615384615385,281.579464344182,43,15271,0,0,0,0,9 +"1813",2009,46099,"SD","46","099",168482,0.912067757980081,12534,0.107115300150758,9.43620023078462,9.99911586354954,10.833543112986,4.64615384615385,284.074382889609,293,103142,0,0,0,0,9 +"1814",2009,46103,"SD","46","103",99845,0.860774200010015,6957,0.12084731333567,8.84750362592364,9.37568530456302,10.2864684410913,4.53076923076923,341.782003993097,202,59102,0,0,0,0,9 +"1815",2009,46109,"SD","46","109",10013,0.630480375511835,488,0.128932387895736,6.19031540585315,6.9985096422506,7.82524529143177,5.58461538461538,423.402617397998,22,5196,0,0,0,0,9 +"1816",2009,46113,"SD","46","113",13425,0.0268156424581006,1276,0.0688268156424581,7.15148546390474,7.35308192051543,8.14031554015999,NA,879.546809779368,59,6708,0,0,0,0,9 +"1817",2009,46115,"SD","46","115",6435,0.981818181818182,268,0.132711732711733,5.59098698051086,6.48157712927643,7.40245152081824,3.89230769230769,296.73590504451,10,3370,0,0,0,0,9 +"1818",2009,46121,"SD","46","121",9521,0.0902216153765361,774,0.0771977733431362,6.65157187358973,6.92559519711047,7.81439963380449,6.61538461538461,939.368061485909,44,4684,0,0,0,0,9 +"1819",2009,46125,"SD","46","125",8317,0.984850306600938,328,0.132980642058435,5.79301360838414,6.85856503479136,7.70436116791031,4.77692307692308,306.010928961749,14,4575,0,0,0,0,9 +"1820",2009,46127,"SD","46","127",14127,0.971119133574007,565,0.136688610462235,6.33682573114644,7.54855597916987,8.30474226964077,5.56153846153846,158.924205378973,13,8180,0,0,0,0,9 +"1821",2009,46135,"SD","46","135",22331,0.945456988043527,1264,0.120863373785321,7.1420365747068,7.94129557090653,8.70251025718999,5.19230769230769,272.252892686985,36,13223,0,0,0,0,9 +"1822",2009,47001,"TN","47","001",75031,0.941477522623982,3962,0.136996708027349,8.2845042272585,9.166388484447,10.0151183687073,9.58461538461538,479.572495375551,210,43789,0,0,0,0,9 +"1823",2009,47003,"TN","47","003",44845,0.892763964767533,2630,0.111651243170922,7.87473912517181,8.73857519211079,9.46861938005865,11.8769230769231,444.186944766319,115,25890,0,0,0,0,9 +"1824",2009,47005,"TN","47","005",16424,0.969495859717487,709,0.155869459327813,6.56385552653213,7.64921631982063,8.47365918939251,13.4769230769231,730.622617534943,69,9444,0,0,0,0,9 +"1825",2009,47007,"TN","47","007",12924,0.95411637264005,602,0.141442277932529,6.40025744530882,7.54908271081229,8.13651825211529,13.6153846153846,486.742666837454,38,7807,0,0,0,0,9 +"1826",2009,47009,"TN","47","009",122689,0.955244561452127,6801,0.135285151888107,8.82482493917564,9.74507781578849,10.5268022234974,9.55384615384615,394.39329393981,287,72770,0,0,0,0,9 +"1827",2009,47011,"TN","47","011",98360,0.936102074013827,7110,0.120191134607564,8.86925752279729,9.5124429670892,10.3068170485139,9.19230769230769,441.271680239888,259,58694,0,0,0,0,9 +"1828",2009,47013,"TN","47","013",40790,0.989482716352047,2078,0.137092424613876,7.63916117165917,8.65189889426853,9.40195197567723,12.7615384615385,666.052278820375,159,23872,0,0,0,0,9 +"1829",2009,47015,"TN","47","015",13823,0.981769514577154,784,0.125370758880127,6.66440902035041,7.56837926783652,8.31188955823036,11.5846153846154,478.880157170923,39,8144,0,0,0,0,9 +"1830",2009,47017,"TN","47","017",28474,0.883823839291986,1778,0.134473554821943,7.48324441607385,8.20521842639541,9.02340820262454,15.5461538461538,695.55582912717,113,16246,0,0,0,0,9 +"1831",2009,47019,"TN","47","019",57639,0.977740765800933,3862,0.137632505768664,8.25894046298846,8.9677591267695,9.76852656710201,9.97692307692308,525.025241598154,182,34665,0,0,0,0,9 +"1832",2009,47021,"TN","47","021",39170,0.973934133265254,2000,0.12387030890988,7.60090245954208,8.70731756027321,9.40021665317425,9.14615384615385,537.034742016772,130,24207,0,0,0,0,9 +"1833",2009,47023,"TN","47","023",16864,0.891781309297913,1494,0.11201375711575,7.30921236569276,7.66715825531915,8.50976567558744,10.9230769230769,402.892561983471,39,9680,0,0,0,0,9 +"1834",2009,47025,"TN","47","025",32056,0.980440479161467,2140,0.140160968305465,7.6685611080159,8.39026849784257,9.17884970488481,11.6615384615385,653.560869339696,126,19279,0,0,0,0,9 +"1835",2009,47027,"TN","47","027",7830,0.978416347381865,360,0.14367816091954,5.88610403145016,6.89770494312864,7.70029520342012,14.2,649.059982094897,29,4468,0,0,0,0,9 +"1836",2009,47029,"TN","47","029",35811,0.967914886487392,1812,0.145653570132082,7.50218648660292,8.48446336679332,9.30410390178835,13.5307692307692,721.852442111184,154,21334,0,0,0,0,9 +"1837",2009,47031,"TN","47","031",52813,0.946206426448034,2917,0.122678128491091,7.97831096986772,8.84893999503012,9.64153820197995,10.4153846153846,603.508306529164,182,30157,0,0,0,0,9 +"1838",2009,47033,"TN","47","033",14573,0.85534893295821,810,0.117134426679476,6.69703424766648,7.53101633207792,8.33278946841796,12.7307692307692,546.116504854369,45,8240,0,0,0,0,9 +"1839",2009,47035,"TN","47","035",55672,0.986438425061072,2489,0.151189107630407,7.81963630236759,8.72923534965927,9.63997763205533,11.0153846153846,510.462797065684,151,29581,0,0,0,0,9 +"1840",2009,47037,"TN","47","037",621008,0.672791654857908,53862,0.104840839409476,10.8941804989847,11.3614512003464,12.233639173248,8.6,392.107134509903,1577,402186,0,0,0,0,9 +"1841",2009,47039,"TN","47","039",11779,0.961881314203243,554,0.141438152644537,6.31716468674728,7.26542972325395,8.09346227450118,12.9846153846154,849.385712118914,56,6593,0,0,0,0,9 +"1842",2009,47041,"TN","47","041",18720,0.975587606837607,1012,0.133760683760684,6.91968384984741,7.83439230291044,8.61558951327243,10.5692307692308,587.01345615461,65,11073,0,0,0,0,9 +"1843",2009,47043,"TN","47","043",49380,0.942851356824625,2771,0.117962737950587,7.92696354486298,8.86347430617095,9.61467150404314,10.6923076923077,435.997002520608,128,29358,0,0,0,0,9 +"1844",2009,47045,"TN","47","045",38254,0.8417420400481,2048,0.126914832435824,7.6246189861594,8.54539184577492,9.345919666218,13.5230769230769,455.139470956694,101,22191,0,0,0,0,9 +"1845",2009,47047,"TN","47","047",38386,0.706429427395405,1821,0.146068879278904,7.50714107972761,8.49290049884719,9.36168712447071,10.7384615384615,443.458980044346,102,23001,0,0,0,0,9 +"1846",2009,47049,"TN","47","049",17975,0.99221140472879,854,0.146036161335188,6.74993119378857,7.79729127354747,8.57941653459637,12.9846153846154,712.566201251806,74,10385,0,0,0,0,9 +"1847",2009,47051,"TN","47","051",41141,0.932160132228191,2786,0.133637976714227,7.93236215433975,8.53129331579502,9.39082691282441,10.5538461538462,477.0750654395,113,23686,0,0,0,0,9 +"1848",2009,47053,"TN","47","053",49575,0.801875945537065,2536,0.122642460917801,7.83834331555712,8.75621009188674,9.57948721741024,14.2615384615385,671.116853287396,187,27864,0,0,0,0,9 +"1849",2009,47055,"TN","47","055",29695,0.882269742380872,1766,0.137262165347702,7.4764723811639,8.23110984032815,9.07977600195507,14.4692307692308,484.373198016376,84,17342,0,0,0,0,9 +"1850",2009,47057,"TN","47","057",22513,0.989561586638831,1154,0.142628703415804,7.05098944706805,8.08948247436075,8.82202732268558,13.6076923076923,571.810485667607,77,13466,0,0,0,0,9 +"1851",2009,47059,"TN","47","059",68744,0.969510066333062,3727,0.140521354590946,8.22335889947926,9.14494815320913,9.92783864339996,15.3615384615385,560.521507234925,227,40498,0,0,0,0,9 +"1852",2009,47061,"TN","47","061",13777,0.990055890251869,690,0.138636858532337,6.5366915975913,7.45818615734049,8.28172399041139,13.6846153846154,776.872134488028,61,7852,0,0,0,0,9 +"1853",2009,47063,"TN","47","063",62330,0.934076688592973,3544,0.12555751644473,8.17301131172497,9.06670092177457,9.81939917215384,12.3,530.671725920427,193,36369,0,0,0,0,9 +"1854",2009,47065,"TN","47","065",332659,0.765654919902964,23631,0.129002973014408,10.0703146883714,10.6747062685162,11.5456346393799,8.71538461538461,416.189782540839,840,201831,0,0,0,0,9 +"1855",2009,47067,"TN","47","067",6768,0.989066193853428,327,0.145390070921986,5.78996017089725,6.71901315438526,7.58731050602262,14.4230769230769,627.825213460573,25,3982,0,0,0,0,9 +"1856",2009,47069,"TN","47","069",27612,0.57083876575402,1865,0.126285672895842,7.53101633207792,8.21797820315073,8.87961160998204,12.3076923076923,498.868843900458,86,17239,0,0,0,0,9 +"1857",2009,47071,"TN","47","071",26045,0.954194663083125,1267,0.143213668650413,7.14440718032114,8.1146238864201,8.92890541228487,12.1,624.622204311908,93,14889,0,0,0,0,9 +"1858",2009,47073,"TN","47","073",56856,0.976906570986351,2694,0.141093288307303,7.89878235697031,9.01127949117793,9.74607321944827,10.9230769230769,526.096778028772,177,33644,0,0,0,0,9 +"1859",2009,47075,"TN","47","075",18860,0.48101802757158,1013,0.129851537645811,6.92067150424868,7.73280753042202,8.66336930157384,15.4769230769231,569.068379990821,62,10895,0,0,0,0,9 +"1860",2009,47077,"TN","47","077",27748,0.907885252991207,1494,0.127901109989909,7.30921236569276,8.24931374626064,9.0395520509959,17.5923076923077,612.032560132199,100,16339,0,0,0,0,9 +"1861",2009,47079,"TN","47","079",32234,0.906558292486195,1550,0.143668176459639,7.34601020991329,8.28752842311176,9.13970329237674,12.9615384615385,691.889517324694,126,18211,0,0,0,0,9 +"1862",2009,47081,"TN","47","081",24597,0.945399845509615,1473,0.127373256901248,7.29505641646263,8.19229373114764,8.83927669058535,12.6,527.722110888444,79,14970,0,0,0,0,9 +"1863",2009,47083,"TN","47","083",8375,0.968119402985075,449,0.137074626865672,6.10702288774225,6.97728134163075,7.76853330092603,11.7307692307692,556.268720581943,26,4674,0,0,0,0,9 +"1864",2009,47085,"TN","47","085",18477,0.965795313091952,879,0.136602262272014,6.77878489768518,7.793999089504,8.58335539366991,12.3615384615385,495.285265263358,52,10499,0,0,0,0,9 +"1865",2009,47087,"TN","47","087",11539,0.990120461045151,512,0.153652829534622,6.23832462503951,7.33823815006559,8.13622555490846,13.2846153846154,655.97667638484,45,6860,0,0,0,0,9 +"1866",2009,47089,"TN","47","089",51288,0.967263297457495,3310,0.131668226485728,8.10470346837111,8.86021535890118,9.63867529417509,12.2307692307692,485.469176032453,146,30074,0,0,0,0,9 +"1867",2009,47091,"TN","47","091",18203,0.97319123221447,1023,0.141350326869197,6.93049476595163,7.87587915949631,8.50572771330696,12.4615384615385,611.702127659574,69,11280,0,0,0,0,9 +"1868",2009,47093,"TN","47","093",429475,0.881364456603993,36751,0.117918388730427,10.5119207151551,10.9645018107889,11.8160994161899,7.82307692307692,416.274605743536,1106,265690,0,0,0,0,9 +"1869",2009,47095,"TN","47","095",7804,0.704382368016402,657,0.118785238339313,6.48768401848461,7.07326971745971,7.41034709782102,10.7153846153846,869.894099848714,46,5288,0,0,0,0,9 +"1870",2009,47097,"TN","47","097",27860,0.631658291457286,1918,0.109511844938981,7.55903825544338,8.2666784433059,8.94089106778546,18.2461538461538,467.096316442973,79,16913,0,0,0,0,9 +"1871",2009,47099,"TN","47","099",41487,0.974690867018584,2239,0.121893605225733,7.71378461659875,8.60886037994206,9.37330920025432,14.9615384615385,555.555555555556,129,23220,0,0,0,0,9 +"1872",2009,47101,"TN","47","101",12078,0.972263619804603,612,0.137936744494122,6.41673228251233,7.30518821539304,8.16876982367527,15.2230769230769,530.998851894374,37,6968,0,0,0,0,9 +"1873",2009,47103,"TN","47","103",33138,0.916591224576015,1766,0.131208884060595,7.4764723811639,8.33062262033287,9.1756454021793,6.96153846153846,544.274649361524,104,19108,0,0,0,0,9 +"1874",2009,47105,"TN","47","105",47940,0.973738005840634,2190,0.155882352941176,7.69165682281055,8.68811670325782,9.52864863796972,9.37692307692308,436.648904677324,118,27024,0,0,0,0,9 +"1875",2009,47107,"TN","47","107",52332,0.943457158144157,2794,0.133207215470458,7.93522953981691,8.85495031650033,9.65007807402644,13.5538461538462,580.130529369108,176,30338,0,0,0,0,9 +"1876",2009,47109,"TN","47","109",25940,0.931572860447186,1281,0.138203546646106,7.15539630189673,8.10591119798651,8.91529794511811,13.5615384615385,554.878874001895,82,14778,0,0,0,0,9 +"1877",2009,47111,"TN","47","111",22110,0.98561736770692,1248,0.125327905924921,7.12929754892937,8.05547514175727,8.76795190976342,11.9,566.550252231277,73,12885,0,0,0,0,9 +"1878",2009,47113,"TN","47","113",97727,0.618795215242461,7219,0.118237539267551,8.88447171813916,9.42052025689853,10.3194638902699,10.3076923076923,426.57233522343,246,57669,0,0,0,0,9 +"1879",2009,47115,"TN","47","115",28143,0.952847955086522,1518,0.146501794407135,7.32514895795557,8.22067217029725,9.05742226555147,11.9384615384615,548.478414720453,93,16956,0,0,0,0,9 +"1880",2009,47117,"TN","47","117",30403,0.918461993882183,1646,0.130151629773378,7.40610338123702,8.33591109419694,9.12880488399366,16.8769230769231,467.67537826685,85,18175,0,0,0,0,9 +"1881",2009,47119,"TN","47","119",80685,0.855735266778212,4594,0.126367974220735,8.43250638324904,9.26226846483654,10.1314196205821,13.3384615384615,496.726123278392,242,48719,0,0,0,0,9 +"1882",2009,47121,"TN","47","121",11753,0.979749851101846,552,0.153833063898579,6.3135480462771,7.39939808333135,8.16905314992734,14.1230769230769,622.171945701357,44,7072,0,0,0,0,9 +"1883",2009,47123,"TN","47","123",44341,0.964863219142554,2309,0.144403599377551,7.7445698093545,8.70001462325184,9.47753908548656,16.9769230769231,513.771391045699,133,25887,0,0,0,0,9 +"1884",2009,47125,"TN","47","125",168866,0.751554486989684,15544,0.0830007224663342,9.65142999105728,10.0531137264919,10.8678253153818,8.6,345.680454934954,355,102696,0,0,0,0,9 +"1885",2009,47127,"TN","47","127",6334,0.967950742027155,284,0.14382696558257,5.64897423816121,6.73221070646721,7.50439155916124,9.19230769230769,468.965517241379,17,3625,0,0,0,0,9 +"1886",2009,47129,"TN","47","129",21832,0.956577500916087,1289,0.128160498351044,7.16162200293919,8.11222795834972,8.65938695711941,10.9846153846154,597.449908925319,82,13725,0,0,0,0,9 +"1887",2009,47131,"TN","47","131",31791,0.884275423862099,1628,0.135384228240697,7.39510754656249,8.36077327214494,9.15005944109125,9.96923076923077,579.349179706535,107,18469,0,0,0,0,9 +"1888",2009,47133,"TN","47","133",21988,0.98858468255412,1029,0.139894487902492,6.93634273583405,8.00068478451475,8.76264602965028,12.9384615384615,657.321612417835,83,12627,0,0,0,0,9 +"1889",2009,47135,"TN","47","135",7851,0.973633931983187,404,0.149025601834161,6.00141487796115,6.82654522355659,7.7106533235012,22.2538461538462,446.827524575514,20,4476,0,0,0,0,9 +"1890",2009,47139,"TN","47","139",16730,0.989300657501494,812,0.142319187089062,6.69950034016168,7.7510451179718,8.49658223751211,12.2230769230769,573.359271014641,56,9767,0,0,0,0,9 +"1891",2009,47141,"TN","47","141",71579,0.956314002710292,7425,0.11413962195616,8.9126079636709,9.06658546833104,9.95688612926082,9.39230769230769,464.140985769484,197,42444,0,0,0,0,9 +"1892",2009,47143,"TN","47","143",31717,0.967304600056752,2051,0.132578743260712,7.62608275807238,8.3250636936312,9.14120463314132,13.1307692307692,527.91988679656,97,18374,0,0,0,0,9 +"1893",2009,47145,"TN","47","145",54367,0.960748248018099,2541,0.152463810767561,7.84031298332016,8.85580599253656,9.68775397939693,8.82307692307692,576.595878757326,183,31738,0,0,0,0,9 +"1894",2009,47147,"TN","47","147",65791,0.910474077001414,3628,0.116338100956058,8.19643681123503,9.14313162228273,9.90198642640986,9.89230769230769,415.231922219972,164,39496,0,0,0,0,9 +"1895",2009,47149,"TN","47","149",259078,0.82870795667714,22774,0.0911347161858591,10.0333748133705,10.5583096187744,11.3053845568834,9.36153846153846,285.87409110683,460,160910,0,0,0,0,9 +"1896",2009,47151,"TN","47","151",22195,0.993196665915747,1212,0.122640234287002,7.10002716662926,8.0258433441509,8.7879833961978,17.8230769230769,730.544447862196,95,13004,0,0,0,0,9 +"1897",2009,47153,"TN","47","153",14137,0.9874796632949,727,0.133196576359907,6.58892647753352,7.58426481838906,8.3291754420774,11.9846153846154,569.69696969697,47,8250,0,0,0,0,9 +"1898",2009,47155,"TN","47","155",89096,0.974140253210021,5123,0.136156505342552,8.5414954839392,9.42464497462319,10.2141290291228,10.5461538461538,479.683446254923,257,53577,0,0,0,0,9 +"1899",2009,47157,"TN","47","157",922541,0.441806922402365,65415,0.110609718158868,11.088506868945,11.7436720399108,12.5812297374728,9.8,457.560828039241,2541,555336,0,0,0,0,9 +"1900",2009,47159,"TN","47","159",19219,0.968208543628701,1045,0.128050366824497,6.95177216439891,7.8995244720322,8.66215896166642,13.1615384615385,426.717756683793,49,11483,0,0,0,0,9 +"1901",2009,47161,"TN","47","161",13253,0.966649060590055,664,0.140345582132347,6.49828214947643,7.49387388678356,8.25114213909075,11.5461538461538,650.702758979698,50,7684,0,0,0,0,9 +"1902",2009,47163,"TN","47","163",156661,0.966156222671884,8087,0.140002936276419,8.99801311309582,9.96932210845767,10.7545355153483,8.53076923076923,479.349827325119,440,91791,0,0,0,0,9 +"1903",2009,47165,"TN","47","165",158819,0.915570555160277,8366,0.12135827577305,9.03193115200214,10.064159777925,10.7904730500177,9.51538461538462,367.581231239138,349,94945,0,0,0,0,9 +"1904",2009,47167,"TN","47","167",60866,0.792823579666809,3565,0.112542306049354,8.1789193328484,9.07280095795412,9.81400038603459,12.0153846153846,479.84377179523,172,35845,0,0,0,0,9 +"1905",2009,47169,"TN","47","169",7881,0.889607917776932,428,0.127521888085268,6.0591231955818,7.01391547481053,7.76344638872736,11.7153846153846,492.821941289908,23,4667,0,0,0,0,9 +"1906",2009,47171,"TN","47","171",18367,0.992540970218326,878,0.147656122393423,6.77764659363512,7.78197323443438,8.59526472683639,11.2461538461538,533.009164017206,57,10694,0,0,0,0,9 +"1907",2009,47173,"TN","47","173",19225,0.992717815344603,1115,0.130715214564369,7.01660968389422,7.86365126544865,8.65765054411149,10.4846153846154,600.365439832942,69,11493,0,0,0,0,9 +"1908",2009,47175,"TN","47","175",5540,0.991335740072202,232,0.168231046931408,5.44673737166631,6.55819780281227,7.42177579364465,14.4384615384615,301.932367149758,10,3312,0,0,0,0,9 +"1909",2009,47177,"TN","47","177",39709,0.956433050441965,2149,0.123725100103251,7.67275789664251,8.5855992240803,9.34949343336876,13.8846153846154,515.017744308838,119,23106,0,0,0,0,9 +"1910",2009,47179,"TN","47","179",121692,0.939535877461131,9811,0.126631167209019,9.19125948416339,9.70485367024987,10.5360616724503,8.42307692307692,404.825737265416,302,74600,0,0,0,0,9 +"1911",2009,47181,"TN","47","181",17048,0.93301267010793,1019,0.127932895354294,6.92657703322272,7.84188592898462,8.38434727808281,13.0230769230769,574.496138632511,61,10618,0,0,0,0,9 +"1912",2009,47183,"TN","47","183",34732,0.903633536796038,4087,0.121098698606472,8.31556648356428,8.31164394850298,9.2424202654396,12.0846153846154,478.931836872914,99,20671,0,0,0,0,9 +"1913",2009,47185,"TN","47","185",25789,0.970956609407112,1348,0.138702547597813,7.20637729147225,8.12976444579417,8.91931939825889,13.7230769230769,543.478260869565,81,14904,0,0,0,0,9 +"1914",2009,47187,"TN","47","187",180332,0.919243395514939,6777,0.117361311359049,8.82128980513611,10.2883417067402,10.9185370564335,7.29230769230769,177.541473312417,189,106454,0,0,0,0,9 +"1915",2009,47189,"TN","47","189",112350,0.914303515798843,5520,0.124646194926569,8.61613313927114,9.7524902289842,10.4561074979591,8.73846153846154,339.511162715501,231,68039,0,0,0,0,9 +"1916",2009,48001,"TX","48","001",58410,0.76211265194316,3551,0.113439479541174,8.17498453294309,9.16858043772795,9.45571497213171,8.64615384615385,566.077111702405,217,38334,0,0,0,0,9 +"1917",2009,48003,"TX","48","003",14601,0.961030066433806,1021,0.100061639613725,6.92853781816467,7.49164547360513,8.33206770728955,6.99230769230769,338.57315598549,28,8270,0,0,0,0,9 +"1918",2009,48005,"TX","48","005",86029,0.824361552499738,5388,0.113450115658673,8.59192953753026,9.3101857069459,10.1135458643017,8.15384615384615,500.841578061497,244,48718,0,0,0,0,9 +"1919",2009,48007,"TX","48","007",23291,0.95174101584303,1050,0.163711304795844,6.95654544315157,7.78821155784708,8.78232285939751,6.78461538461538,793.775542282301,101,12724,0,0,0,0,9 +"1920",2009,48009,"TX","48","009",9023,0.981713399091211,435,0.12623296021279,6.07534603108868,7.03614849375054,7.83557924666997,5.88461538461539,291.488534784298,15,5146,0,0,0,0,9 +"1921",2009,48013,"TX","48","013",44623,0.972570199224615,2585,0.119758868744818,7.85748078694253,8.62819774945915,9.44248330708719,7.37692307692308,423.43831915151,105,24797,0,0,0,0,9 +"1922",2009,48015,"TX","48","015",28254,0.883556310610887,1423,0.133538614001557,7.26052259808985,8.12503909736775,8.98907006504365,7.3,412.190856857357,66,16012,0,0,0,0,9 +"1923",2009,48019,"TX","48","019",20365,0.979867419592438,773,0.174269580162043,6.65027904858742,7.72665366484764,8.71111388405354,6.5,437.231985201379,52,11893,0,0,0,0,9 +"1924",2009,48021,"TX","48","021",73587,0.885101988122902,3803,0.128378653838314,8.24354550792826,9.24965723435313,9.96279365843353,7.88461538461539,407.867307169401,180,44132,0,0,0,0,9 +"1925",2009,48023,"TX","48","023",3726,0.968599033816425,157,0.134997316156736,5.05624580534831,5.97380961186926,6.90274273715859,5.60769230769231,762.582613116421,15,1967,0,0,0,0,9 +"1926",2009,48025,"TX","48","025",31864,0.898380617624906,2640,0.0978219934722571,7.87853419614036,8.45574322910002,8.85437945877111,8.95384615384615,312.62211801485,64,20472,0,0,0,0,9 +"1927",2009,48027,"TX","48","027",301050,0.70740408570005,28698,0.0852217239661186,10.2645827129084,10.5604633659579,11.4192409630353,6.61538461538461,309.566551250771,557,179929,0,0,0,0,9 +"1928",2009,48029,"TX","48","029",1685628,0.874191695913926,132338,0.0991025303329086,11.7931145348631,12.341512216424,13.1417561167864,6.7,324.846777936023,3248,999856,0,0,0,0,9 +"1929",2009,48031,"TX","48","031",10315,0.973339796412991,425,0.169752787203102,6.05208916892442,7.09340462586877,8.00436556497957,5.15384615384615,350.64284521623,21,5989,0,0,0,0,9 +"1930",2009,48035,"TX","48","035",18004,0.96850699844479,760,0.147411686291935,6.63331843328038,7.64108424917491,8.48817624234574,7.74615384615385,612.995504699632,60,9788,0,0,0,0,9 +"1931",2009,48037,"TX","48","037",92231,0.72985221888519,5646,0.118951328728952,8.63870260881343,9.41792348517234,10.1640039569151,6.6,501.423454862705,273,54445,0,0,0,0,9 +"1932",2009,48039,"TX","48","039",309236,0.808887063601909,17458,0.102840548965838,9.7675532752953,10.7654699229569,11.4105161458005,8.04615384615385,311.884968219997,580,185966,0,0,0,0,9 +"1933",2009,48041,"TX","48","041",191434,0.822701296530397,42645,0.0690420719412435,10.6606653127532,9.85450737031441,10.9808762047526,5.43846153846154,194.719471947195,236,121200,0,0,0,0,9 +"1934",2009,48043,"TX","48","043",9054,0.96068036227082,696,0.154517340402032,6.54534966033442,6.90975328164481,7.91971976092457,5.05384615384615,179.629962277708,10,5567,0,0,0,0,9 +"1935",2009,48047,"TX","48","047",7297,0.985336439632726,476,0.123201315609154,6.16541785423142,6.5792512120101,7.55381085200823,9.29230769230769,740.740740740741,28,3780,0,0,0,0,9 +"1936",2009,48049,"TX","48","049",38001,0.945317228493987,2374,0.128943975158548,7.77233157516961,8.40020983593042,9.279586544713,6.79230769230769,620.534035351636,132,21272,0,0,0,0,9 +"1937",2009,48051,"TX","48","051",17076,0.859978917779339,888,0.140840946357461,6.78897174299217,7.59689443814454,8.48611523584538,6.82307692307692,488.768718801997,47,9616,0,0,0,0,9 +"1938",2009,48053,"TX","48","053",42611,0.962990777029405,2093,0.141770904226608,7.646353722446,8.49228555571005,9.39922368660528,6.06153846153846,428.805650145037,102,23787,0,0,0,0,9 +"1939",2009,48055,"TX","48","055",37829,0.902746570091729,2971,0.109228369769225,7.99665387546261,8.49474306257865,9.28711621077823,8.3,309.119010819165,68,21998,0,0,0,0,9 +"1940",2009,48057,"TX","48","057",21388,0.916775762109594,1225,0.121657003927436,7.11069612297883,7.84463264446468,8.65886634973238,8.44615384615385,364.129054111271,43,11809,0,0,0,0,9 +"1941",2009,48059,"TX","48","059",13548,0.974461175081193,657,0.136846767050487,6.48768401848461,7.34083555412327,8.25114213909075,5.79230769230769,649.781196127835,49,7541,0,0,0,0,9 +"1942",2009,48061,"TX","48","061",400303,0.978643677414359,26165,0.091048530737966,10.1721779188063,10.833917847964,11.6215287172699,9.67692307692308,278.729071537291,586,210240,0,0,0,0,9 +"1943",2009,48063,"TX","48","063",12364,0.795858945325137,665,0.127790359107085,6.49978704065585,7.25134498337221,8.15133333790043,8.79230769230769,578.377576746255,39,6743,0,0,0,0,9 +"1944",2009,48065,"TX","48","065",6220,0.97572347266881,262,0.131993569131833,5.5683445037611,6.5694814204143,7.45240245122364,5.78461538461538,381.3435024934,13,3409,0,0,0,0,9 +"1945",2009,48067,"TX","48","067",30297,0.810080205960986,1443,0.136647192791365,7.27447955877387,8.20056279700856,9.07015834137632,11.2846153846154,606.601248884924,102,16815,0,0,0,0,9 +"1946",2009,48069,"TX","48","069",7856,0.957612016293279,455,0.106797352342159,6.12029741895095,6.78784498230958,7.60936653795421,4.76923076923077,435.835351089588,18,4130,0,0,0,0,9 +"1947",2009,48071,"TX","48","071",34230,0.886123283669296,1756,0.11612620508326,7.47079377419506,8.54071438645758,9.21293699782345,9.03076923076923,357.24918130396,72,20154,0,0,0,0,9 +"1948",2009,48073,"TX","48","073",50447,0.822447320950701,3067,0.123238250044601,8.02845516411425,8.73004395324502,9.5085913957772,8.76153846153846,479.403409090909,135,28160,0,0,0,0,9 +"1949",2009,48077,"TX","48","077",10832,0.975904726735598,469,0.146971935007386,6.15060276844628,7.14282740116162,8.06714903991011,6.83076923076923,450.30556449019,28,6218,0,0,0,0,9 +"1950",2009,48083,"TX","48","083",8867,0.958046689974061,361,0.150219916544491,5.88887795833288,6.91473089271856,7.7873820264847,6.86153846153846,560.63122923588,27,4816,0,0,0,0,9 +"1951",2009,48085,"TX","48","085",765791,0.785706543952593,37941,0.0949684705095777,10.5437876005481,11.8132596606893,12.3931744254971,7.22307692307692,182.839426211232,861,470905,0,0,0,0,9 +"1952",2009,48089,"TX","48","089",20784,0.84637220939184,1037,0.135729407236336,6.94408720822953,7.71467747380093,8.63105744756528,6.33846153846154,346.851654215582,39,11244,0,0,0,0,9 +"1953",2009,48091,"TX","48","091",106350,0.96184297132111,4987,0.145293841090738,8.51458980554612,9.53985992316954,10.3712386467286,6.11538461538461,329.629689183322,205,62191,0,0,0,0,9 +"1954",2009,48093,"TX","48","093",13912,0.980951696377228,658,0.129672225416906,6.48920493132532,7.40184157874383,8.1892445257359,6,413.736036408771,30,7251,0,0,0,0,9 +"1955",2009,48097,"TX","48","097",38413,0.943352510868716,2242,0.129747741649962,7.7151236036321,8.3845756668014,9.27977314669152,6.46923076923077,460.050699464839,98,21302,0,0,0,0,9 +"1956",2009,48099,"TX","48","099",74673,0.770331980769488,7703,0.0746186707377499,8.94936514235297,9.29569203907569,10.0835148127767,8.16923076923077,253.899946207639,118,46475,0,0,0,0,9 +"1957",2009,48111,"TX","48","111",6571,0.959062547557449,424,0.104702480596561,6.04973345523196,6.83195356556585,7.49609734517596,4.13076923076923,531.773464504121,20,3761,0,0,0,0,9 +"1958",2009,48113,"TX","48","113",2346378,0.702475048777307,170534,0.0923627821263241,12.0466899693152,12.7456606379638,13.4838779912251,8.2,318.222545780366,4546,1428560,0,0,0,0,9 +"1959",2009,48115,"TX","48","115",13741,0.907211993304709,1065,0.0951168037260753,6.97073007814353,7.4265490723973,8.03624994213212,7.9,433.597621407334,35,8072,0,0,0,0,9 +"1960",2009,48117,"TX","48","117",19084,0.962324460280864,1236,0.0951058478306435,7.11963563801764,7.71912984090673,8.51479030679993,5.2,385.642242657965,39,10113,0,0,0,0,9 +"1961",2009,48119,"TX","48","119",5180,0.897104247104247,265,0.143629343629344,5.57972982598622,6.39526159811545,7.27239839257005,8.60769230769231,602.623183268345,17,2821,0,0,0,0,9 +"1962",2009,48121,"TX","48","121",649702,0.83182135809956,49521,0.0889777159374606,10.8101521010157,11.5840547194317,12.2458028442583,7.1,211.841523884334,863,407380,0,0,0,0,9 +"1963",2009,48123,"TX","48","123",20048,0.885275339185954,950,0.132282521947326,6.85646198459459,7.84776253747361,8.54791636405908,7.49230769230769,419.287211740042,48,11448,0,0,0,0,9 +"1964",2009,48127,"TX","48","127",9848,0.976949634443542,612,0.119415109666937,6.41673228251233,7.02375895473844,7.87891291229713,9.93846153846154,541.16737533823,28,5174,0,0,0,0,9 +"1965",2009,48131,"TX","48","131",11917,0.981035495510615,793,0.109507426365696,6.67582322163485,7.24708058458576,8.00736706798333,10.8692307692308,687.337711929128,45,6547,0,0,0,0,9 +"1966",2009,48133,"TX","48","133",18497,0.9648591663513,1102,0.134508298643023,7.00488198971286,7.48661331313996,8.51137630609467,7.51538461538462,649.153058119485,64,9859,0,0,0,0,9 +"1967",2009,48135,"TX","48","135",136930,0.926217775505733,11113,0.0969619513620098,9.31587087318565,9.69713966113932,10.5836254785024,8.09230769230769,477.366464687611,375,78556,0,0,0,0,9 +"1968",2009,48139,"TX","48","139",147392,0.887965425531915,8813,0.108567629179331,9.08398318309966,9.945205145888,10.681251578816,7.91538461538462,321.419388017485,275,85558,0,0,0,0,9 +"1969",2009,48141,"TX","48","141",786759,0.939967639391478,61292,0.0916748330810324,11.0234046076981,11.5471239725501,12.3430088601641,8.79230769230769,282.015300348558,1246,441820,0,0,0,0,9 +"1970",2009,48143,"TX","48","143",37594,0.965233813906474,5264,0.102516358993456,8.56864647300515,8.31727776622123,9.31991200840547,6.27692307692308,277.04544438983,62,22379,0,0,0,0,9 +"1971",2009,48145,"TX","48","145",17762,0.720076567954059,1171,0.120144127913523,7.06561336359772,7.74413662762799,8.64312074801403,8.67692307692308,487.664945496271,51,10458,0,0,0,0,9 +"1972",2009,48147,"TX","48","147",33865,0.908637236084453,1903,0.126708991584232,7.55118686729615,8.39638057119949,9.08817273800197,8.56923076923077,444.871341185987,88,19781,0,0,0,0,9 +"1973",2009,48149,"TX","48","149",24470,0.913649366571312,1075,0.144176542705353,6.98007594056176,7.84463264446468,8.79785064893105,5.43846153846154,445.585680839816,59,13241,0,0,0,0,9 +"1974",2009,48157,"TX","48","157",569130,0.594871119076485,30438,0.106457224184281,10.3234471067947,11.4153016106841,12.0853615773674,7.08461538461538,203.224810896111,698,343462,0,0,0,0,9 +"1975",2009,48159,"TX","48","159",10601,0.937741722479011,599,0.130931044241109,6.39526159811545,7.10249935577465,7.98344006300654,6.78461538461538,502.599653379549,29,5770,0,0,0,0,9 +"1976",2009,48161,"TX","48","161",19743,0.811578787418325,995,0.127640176265005,6.90274273715859,7.83913164827433,8.55159461813357,6.27692307692308,453.277545327755,52,11472,0,0,0,0,9 +"1977",2009,48163,"TX","48","163",17120,0.931950934579439,1507,0.100525700934579,7.3178761986265,7.70210434005105,8.2495751500002,7.43846153846154,405.327156919514,42,10362,0,0,0,0,9 +"1978",2009,48165,"TX","48","165",17163,0.965856784944357,1209,0.0820369399289168,7.09754885061479,7.60887062919126,8.40603814205008,6.22307692307692,408.704296918149,37,9053,0,0,0,0,9 +"1979",2009,48167,"TX","48","167",287428,0.81282964777266,17147,0.119396857647828,9.74957851017885,10.5801750120574,11.3811297081153,8.17692307692308,403.694204515394,702,173894,0,0,0,0,9 +"1980",2009,48171,"TX","48","171",24608,0.979396944083225,947,0.155924902470741,6.85329909318608,7.82204400818562,8.79482492801452,4.42307692307692,360.642885143081,46,12755,0,0,0,0,9 +"1981",2009,48177,"TX","48","177",19628,0.893774200122274,1162,0.113307519869574,7.05789793741186,7.72577144158795,8.56921621948339,5.48461538461538,467.071461933676,50,10705,0,0,0,0,9 +"1982",2009,48179,"TX","48","179",22719,0.926669307627977,1267,0.110964391038338,7.14440718032114,7.97728198675515,8.6628507638386,8.07692307692308,489.472457462513,63,12871,0,0,0,0,9 +"1983",2009,48181,"TX","48","181",120069,0.907153386802589,7419,0.124003697873723,8.91179955618953,9.61045787375775,10.4682330182915,7.90769230769231,439.206818577144,303,68988,0,0,0,0,9 +"1984",2009,48183,"TX","48","183",121238,0.768876094953727,8888,0.107994193239743,9.09245733131947,9.60089486734859,10.4712982417848,7.06923076923077,466.313832069804,326,69910,0,0,0,0,9 +"1985",2009,48185,"TX","48","185",26422,0.814397093331315,1541,0.130459465596851,7.34018683532012,8.17131687471973,8.82614739914356,8.49230769230769,366.073090525532,59,16117,0,0,0,0,9 +"1986",2009,48187,"TX","48","187",128265,0.899816785561143,7244,0.109063267454099,8.8879288190033,9.83268948122741,10.5419409266734,6.39230769230769,288.394156649237,214,74204,0,0,0,0,9 +"1987",2009,48189,"TX","48","189",35926,0.916940377442521,2858,0.0923286756109781,7.95787735848981,8.39818440483404,9.12967246890873,5.99230769230769,401.767778224186,80,19912,0,0,0,0,9 +"1988",2009,48193,"TX","48","193",8527,0.97396505218717,366,0.131816582619913,5.90263333340137,6.84587987526405,7.70706265537047,5.57692307692308,514.196288844176,23,4473,0,0,0,0,9 +"1989",2009,48199,"TX","48","199",54228,0.929427601976838,3107,0.120269971232574,8.04141290939305,8.85566343070012,9.67903063913939,8.5,464.997770558634,146,31398,0,0,0,0,9 +"1990",2009,48201,"TX","48","201",4034866,0.723735311160271,293020,0.0953265858147458,12.5879961450553,13.2778565842102,14.0237012707223,7.53076923076923,314.459273927071,7737,2460414,0,0,0,0,9 +"1991",2009,48203,"TX","48","203",65185,0.754744189614175,4168,0.123371941397561,8.3351915834332,8.99305463014613,9.87024095874249,8.13846153846154,527.983104540655,200,37880,0,0,0,0,9 +"1992",2009,48207,"TX","48","207",5862,0.941828727396793,281,0.129989764585466,5.63835466933375,6.50876913697168,7.25981961036319,5.04615384615385,373.482726423903,12,3213,0,0,0,0,9 +"1993",2009,48209,"TX","48","209",153619,0.930607542035816,20113,0.0984513634381164,9.90912165115322,9.89485035914046,10.7697894020652,6.54615384615385,217.001603924899,207,95391,0,0,0,0,9 +"1994",2009,48213,"TX","48","213",78231,0.920300136774424,4095,0.136748859147908,8.31752199628717,9.12880488399366,10.0033781353509,8.01538461538462,599.907706506691,260,43340,0,0,0,0,9 +"1995",2009,48215,"TX","48","215",757468,0.976948201112126,54943,0.0767425158554553,10.9140515631821,11.5067061651563,12.2439174125035,10.4461538461538,246.481352931116,980,397596,0,0,0,0,9 +"1996",2009,48217,"TX","48","217",35005,0.917811741179831,1979,0.13029567204685,7.59034694560257,8.29329935871132,9.18039649560311,7.78461538461538,539.690856693739,103,19085,0,0,0,0,9 +"1997",2009,48219,"TX","48","219",23086,0.942086112795634,1822,0.108247422680412,7.5076900778199,7.83794891602528,8.77493138749495,6.69230769230769,449.264136328428,58,12910,0,0,0,0,9 +"1998",2009,48221,"TX","48","221",50841,0.976397002419307,2322,0.150567455400169,7.75018416225784,8.64047220757641,9.57637141083894,7.17692307692308,356.43704121965,101,28336,0,0,0,0,9 +"1999",2009,48223,"TX","48","223",34919,0.906011054153899,1983,0.121509779776053,7.5923661285198,8.40223117294656,9.19644426678407,6.02307692307692,456.806415592326,90,19702,0,0,0,0,9 +"2000",2009,48225,"TX","48","225",23660,0.719991546914624,1054,0.129628064243449,6.96034772910131,8.05959232888755,8.68304655550289,9.08461538461538,546.926274338219,75,13713,0,0,0,0,9 +"2001",2009,48227,"TX","48","227",34882,0.901639814230835,2479,0.108537354509489,7.81561053203519,8.33997857199043,9.04263152755007,7.25384615384615,517.379238982174,110,21261,0,0,0,0,9 +"2002",2009,48231,"TX","48","231",85261,0.883874221508075,5888,0.117028887768147,8.68067166040871,9.30173380040539,10.1262710390348,8.16153846153846,461.954329056726,229,49572,0,0,0,0,9 +"2003",2009,48233,"TX","48","233",22184,0.945275874504147,1246,0.121754417598269,7.1276936993474,7.85593219971861,8.73165920153676,6.73846153846154,453.785526630045,57,12561,0,0,0,0,9 +"2004",2009,48237,"TX","48","237",9057,0.946229435795517,622,0.116153251628575,6.43294009273918,7.13089883029635,7.69439280262942,6.22307692307692,529.873926548511,29,5473,0,0,0,0,9 +"2005",2009,48239,"TX","48","239",14089,0.91383348711761,782,0.121584214635531,6.66185474054531,7.38523092306657,8.27103686579295,7.33846153846154,498.912626327236,39,7817,0,0,0,0,9 +"2006",2009,48241,"TX","48","241",35331,0.814865132603096,1835,0.130452010981857,7.51479976048867,8.35913488675796,9.21582530220675,10.0769230769231,583.295620254438,116,19887,0,0,0,0,9 +"2007",2009,48245,"TX","48","245",251332,0.606444861776455,18992,0.109695542151417,9.85177311684945,10.3664665668449,11.1698857093306,9.5,466.627836170607,705,151084,0,0,0,0,9 +"2008",2009,48249,"TX","48","249",40633,0.979302537346492,2586,0.112543991337091,7.8578675593318,8.48466999971068,9.32910070769702,9,439.068100358423,98,22320,0,0,0,0,9 +"2009",2009,48251,"TX","48","251",150583,0.948181401619041,8821,0.112535943632415,9.08489052125877,9.94927320768526,10.6904893085677,8.12307692307692,394.003894751144,348,88324,0,0,0,0,9 +"2010",2009,48253,"TX","48","253",20093,0.852834320410093,1481,0.110436470412581,7.3004728142678,8.03430693633949,8.34307787116938,7.63076923076923,390.146878824969,51,13072,0,0,0,0,9 +"2011",2009,48255,"TX","48","255",14805,0.886592367443431,1149,0.108206686930091,7.04664727784876,7.6231530684769,8.0727793331695,8.90769230769231,286.928799149841,27,9410,0,0,0,0,9 +"2012",2009,48257,"TX","48","257",101709,0.869116793990699,5447,0.107522441475189,8.60282027738367,9.60548574767749,10.318209681907,8.19230769230769,367.133161555432,218,59379,0,0,0,0,9 +"2013",2009,48259,"TX","48","259",32655,0.97620578778135,1422,0.151094778747512,7.25981961036319,8.29579811063615,9.16324876444233,5.62307692307692,322.962643987512,60,18578,0,0,0,0,9 +"2014",2009,48265,"TX","48","265",49427,0.958302142553665,2571,0.142978533999636,7.85205020726589,8.50471566990512,9.49904691947415,5.76153846153846,521.517422545005,135,25886,0,0,0,0,9 +"2015",2009,48273,"TX","48","273",31876,0.921382858576986,4111,0.0949617266909273,8.32142158689788,8.13358741766097,9.09851455679393,6.69230769230769,362.593354259119,67,18478,0,0,0,0,9 +"2016",2009,48277,"TX","48","277",49600,0.833709677419355,2944,0.123064516129032,7.98752447984877,8.75463404743127,9.5700407347166,7.61538461538461,597.659765976598,166,27775,0,0,0,0,9 +"2017",2009,48279,"TX","48","279",13791,0.929809295917627,770,0.107461387861649,6.64639051484773,7.31920245876785,8.17018565287964,7.09230769230769,576.652601969058,41,7110,0,0,0,0,9 +"2018",2009,48281,"TX","48","281",19652,0.936087929981681,953,0.128841848157948,6.8596149036542,7.86748856869913,8.64135583403666,5.76153846153846,358.647897426701,40,11153,0,0,0,0,9 +"2019",2009,48283,"TX","48","283",6771,0.982720425343376,971,0.10028060847733,6.87832646829133,6.65027904858742,7.33432935030054,9.18461538461538,450.45045045045,19,4218,0,0,0,0,9 +"2020",2009,48285,"TX","48","285",19226,0.918443774055966,849,0.14272339540206,6.74405918631135,7.6685611080159,8.55487425838393,5.66153846153846,348.46578259607,36,10331,0,0,0,0,9 +"2021",2009,48287,"TX","48","287",16565,0.869846060971929,843,0.11777844853607,6.73696695800186,7.59438124255182,8.41272116981953,6.63846153846154,338.09575744356,31,9169,0,0,0,0,9 +"2022",2009,48289,"TX","48","289",16862,0.910983276005219,775,0.140434112204958,6.65286302935335,7.48885295573346,8.42726848388825,7.00769230769231,674.426193843142,62,9193,0,0,0,0,9 +"2023",2009,48291,"TX","48","291",75041,0.868325315494197,4790,0.116456337202329,8.47428569040496,9.24203281870867,10.0464183817252,10.0846153846154,515.406906010131,233,45207,0,0,0,0,9 +"2024",2009,48293,"TX","48","293",23173,0.801061580287403,1515,0.124757260605014,7.32317071794347,7.9359451033537,8.74001669151952,6.25384615384615,574.669751473991,77,13399,0,0,0,0,9 +"2025",2009,48297,"TX","48","297",11410,0.939000876424189,607,0.136283961437336,6.4085287910595,7.21376830811864,7.95437227253187,6.95384615384615,435.108777194299,29,6665,0,0,0,0,9 +"2026",2009,48299,"TX","48","299",19175,0.97903520208605,575,0.188631029986962,6.35437004079735,7.41336733569524,8.54791636405908,6.89230769230769,621.180242460675,62,9981,0,0,0,0,9 +"2027",2009,48303,"TX","48","303",274252,0.88472280967869,34110,0.0963420503770255,10.4373458754127,10.3253180147306,11.317506510499,5.33076923076923,380.526293394282,626,164509,0,0,0,0,9 +"2028",2009,48307,"TX","48","307",8365,0.963538553496712,361,0.144650328750747,5.88887795833288,6.85329909318608,7.7393592026891,7.88461538461539,595.632031767042,27,4533,0,0,0,0,9 +"2029",2009,48309,"TX","48","309",231679,0.815481765718947,23262,0.103859219005607,10.054576406899,10.2024804161338,11.1364996066839,6.69230769230769,364.319164534614,487,133674,0,0,0,0,9 +"2030",2009,48313,"TX","48","313",13483,0.775569235333383,1187,0.104946970258844,7.07918439460967,7.47250074473756,8.02943284058124,7.35384615384615,352.969814995131,29,8216,0,0,0,0,9 +"2031",2009,48315,"TX","48","315",10669,0.752085481300965,455,0.164401537163745,6.12029741895095,7.07411681619736,8.04974629095219,10.2384615384615,687.285223367698,42,6111,0,0,0,0,9 +"2032",2009,48321,"TX","48","321",36579,0.842805981574127,2140,0.126165286093114,7.6685611080159,8.34830105493394,9.24387185518498,9.89230769230769,497.560504323463,103,20701,0,0,0,0,9 +"2033",2009,48323,"TX","48","323",53434,0.979825579219224,3614,0.094452970019089,8.19257047115217,8.81892608709068,9.58217975243469,14.2846153846154,312.242041416933,87,27863,0,0,0,0,9 +"2034",2009,48325,"TX","48","325",45605,0.956013595000548,2878,0.123758359828966,7.96485088744731,8.66336930157384,9.43882960961514,6.61538461538461,422.037184897913,111,26301,0,0,0,0,9 +"2035",2009,48329,"TX","48","329",136238,0.902853829328088,9763,0.103950439671751,9.18635500922567,9.6925813188864,10.6033620538455,5.53846153846154,324.765237531784,258,79442,0,0,0,0,9 +"2036",2009,48331,"TX","48","331",24864,0.8809925997426,1210,0.127372908622909,7.09837563859079,7.97315543344413,8.81744592104187,10.8307692307692,463.655399341908,62,13372,0,0,0,0,9 +"2037",2009,48335,"TX","48","335",9399,0.852856686881583,878,0.10533035429301,6.77764659363512,7.16703787691222,7.58832367733522,8.26923076923077,476.190476190476,29,6090,0,0,0,0,9 +"2038",2009,48337,"TX","48","337",19768,0.979714690408741,962,0.13789963577499,6.86901445066571,7.76429600645052,8.60483770126828,7.09230769230769,718.629076838032,78,10854,0,0,0,0,9 +"2039",2009,48339,"TX","48","339",445836,0.918898429018742,24556,0.113254649691815,10.1087115025474,11.0796317070433,11.8048335950479,6.87692307692308,332.785600144722,883,265336,0,0,0,0,9 +"2040",2009,48341,"TX","48","341",21575,0.90539976825029,1433,0.0899652375434531,7.26752542782817,7.93164402145431,8.65869275368994,4.60769230769231,294.736842105263,35,11875,0,0,0,0,9 +"2041",2009,48343,"TX","48","343",12954,0.745098039215686,634,0.129149297514281,6.45204895443723,7.31188616407716,8.2147358333823,14.7538461538462,643.716764623566,46,7146,0,0,0,0,9 +"2042",2009,48347,"TX","48","347",64012,0.788742735737049,8732,0.103027557333,9.07474971766984,8.78859343129374,9.86594143646216,6.45384615384615,357.401983177922,133,37213,0,0,0,0,9 +"2043",2009,48349,"TX","48","349",47584,0.82586583725622,2830,0.117812710154674,7.94803199063728,8.68642950866154,9.4953689269624,7.8,493.583415597236,130,26338,0,0,0,0,9 +"2044",2009,48351,"TX","48","351",14446,0.780354423369791,803,0.136300706077807,6.68835471394676,7.52886925664225,8.29479935899257,11.4230769230769,787.495525593605,66,8381,0,0,0,0,9 +"2045",2009,48353,"TX","48","353",15128,0.931716023268112,869,0.123611845584347,6.76734312526539,7.50384074669895,8.33782726244791,6.24615384615385,520.95953477102,43,8254,0,0,0,0,9 +"2046",2009,48355,"TX","48","355",338220,0.926538939152031,25141,0.113710011235291,10.1322552586006,10.6374647275843,11.5240236516363,6.70769230769231,395.786945535513,791,199855,0,0,0,0,9 +"2047",2009,48357,"TX","48","357",10225,0.976234718826406,660,0.0932029339853301,6.49223983502047,7.14519613499717,7.89989532313973,5.89230769230769,425.985090521832,24,5634,0,0,0,0,9 +"2048",2009,48361,"TX","48","361",81586,0.893216973500355,4839,0.120155418821857,8.48446336679332,9.27002337413736,10.0787005700928,9.80769230769231,636.070683881295,302,47479,0,0,0,0,9 +"2049",2009,48363,"TX","48","363",28071,0.959174949235866,1585,0.126714402764419,7.36833968631138,8.10711747075039,8.99143781491923,7.8,562.365727284216,89,15826,0,0,0,0,9 +"2050",2009,48365,"TX","48","365",23678,0.819748289551482,1373,0.131641185910972,7.22475340576797,7.90396563403217,8.81759403627579,7.31538461538462,541.101475057446,73,13491,0,0,0,0,9 +"2051",2009,48367,"TX","48","367",115802,0.962962643132243,6328,0.124859674271602,8.75273950944749,9.686760869018,10.4263207954264,7.56923076923077,366.220517068492,252,68811,0,0,0,0,9 +"2052",2009,48371,"TX","48","371",15490,0.941962556488057,1036,0.108908973531311,6.94312242281943,7.68937110752969,8.23110984032815,8.57692307692308,244.88926746167,23,9392,0,0,0,0,9 +"2053",2009,48373,"TX","48","373",45537,0.853262182401124,2381,0.14223598392516,7.77527584648686,8.64347335732657,9.3647767252806,9.01538461538462,722.18632407161,190,26309,0,0,0,0,9 +"2054",2009,48375,"TX","48","375",120118,0.834213023859871,8696,0.0976040227110009,9.07061842880105,9.65226597708712,10.4107267527667,5.97692307692308,437.506214576912,308,70399,0,0,0,0,9 +"2055",2009,48379,"TX","48","379",10956,0.956370938298649,495,0.156261409273457,6.20455776256869,7.18765716411496,8.04590874227078,7.97692307692308,557.651303919961,34,6097,0,0,0,0,9 +"2056",2009,48381,"TX","48","381",119084,0.946709885459004,9250,0.113978368210675,9.13237883050647,9.58617067495466,10.4985532166834,4.58461538461538,327.288183621422,231,70580,0,0,0,0,9 +"2057",2009,48387,"TX","48","387",12835,0.809816906895208,586,0.146240747954811,6.37331978957701,7.2848209125686,8.19367666595524,9.09230769230769,749.964624310174,53,7067,0,0,0,0,9 +"2058",2009,48389,"TX","48","389",13550,0.932619926199262,1191,0.094760147601476,7.0825485693553,7.59387784460512,7.98344006300654,11.3461538461538,400.659910440726,34,8486,0,0,0,0,9 +"2059",2009,48391,"TX","48","391",7410,0.917408906882591,366,0.126990553306343,5.90263333340137,6.80682936039218,7.61233683716775,6.38461538461539,700.876095118899,28,3995,0,0,0,0,9 +"2060",2009,48395,"TX","48","395",16604,0.755781739339918,874,0.131835702240424,6.77308037565554,7.55642796944025,8.43641688138895,7.78461538461538,558.781636901501,51,9127,0,0,0,0,9 +"2061",2009,48397,"TX","48","397",76654,0.902666527513241,3130,0.10123411694106,8.0487882835342,9.4082071401056,10.0372314225857,7.13846153846154,243.951567780488,109,44681,0,0,0,0,9 +"2062",2009,48399,"TX","48","399",10392,0.960835257890685,488,0.133275596612779,6.19031540585315,7.10414409298753,7.9391588179568,7.43076923076923,288.860805199494,16,5539,0,0,0,0,9 +"2063",2009,48401,"TX","48","401",52799,0.80143563325063,3390,0.12303263319381,8.1285852003745,8.83010431791379,9.56598478510039,7.73076923076923,466.171097391962,148,31748,0,0,0,0,9 +"2064",2009,48403,"TX","48","403",10721,0.911015763454902,458,0.16155209402108,6.12686918411419,6.93925394604151,7.96554557312999,14.8923076923077,577.617328519856,32,5540,0,0,0,0,9 +"2065",2009,48405,"TX","48","405",8938,0.756209442828373,462,0.143096889684493,6.13556489108174,6.8134445995109,7.76768727718691,10.0076923076923,618.600682593857,29,4688,0,0,0,0,9 +"2066",2009,48407,"TX","48","407",26086,0.870773595031818,1268,0.148623782872039,7.14519613499717,7.97865372908273,8.90286367219622,9.23846153846154,533.406277781577,78,14623,0,0,0,0,9 +"2067",2009,48409,"TX","48","409",65751,0.958449301151313,3971,0.114264421833888,8.28677323113125,9.02063159674821,9.8305942270158,8.50769230769231,411.021876098537,152,36981,0,0,0,0,9 +"2068",2009,48415,"TX","48","415",16806,0.929965488516006,1132,0.114542425324289,7.03174125876313,7.60339933974067,8.3466420902212,6.70769230769231,485.186332197791,47,9687,0,0,0,0,9 +"2069",2009,48419,"TX","48","419",25520,0.806700626959248,1533,0.115673981191223,7.33498187887181,8.05515773181968,8.84246002419529,7.21538461538462,596.478620194035,83,13915,0,0,0,0,9 +"2070",2009,48423,"TX","48","423",207111,0.79044087470004,15372,0.111587506216473,9.64030295168473,10.1444317284758,11.0180880131645,7.52307692307692,361.253251279262,425,117646,0,0,0,0,9 +"2071",2009,48425,"TX","48","425",8415,0.96934046345811,444,0.131550802139037,6.09582456243222,6.97634807044775,7.78530518253986,7.06153846153846,524.548887956357,25,4766,0,0,0,0,9 +"2072",2009,48427,"TX","48","427",60384,0.993988473767886,4348,0.0830849231584526,8.3774712482411,8.96635615479012,9.70649895869877,16.3538461538462,254.947576404602,80,31379,0,0,0,0,9 +"2073",2009,48429,"TX","48","429",9675,0.963617571059432,634,0.130542635658915,6.45204895443723,6.96790920180188,7.83042561782033,6.72307692307692,404.932817964292,22,5433,0,0,0,0,9 +"2074",2009,48439,"TX","48","439",1784078,0.78271241504015,121596,0.096909440058114,11.7084593532363,12.4829427285076,13.2153836646775,7.66153846153846,300.160060607636,3233,1077092,0,0,0,0,9 +"2075",2009,48441,"TX","48","441",130247,0.888005098006096,13422,0.101223060799865,9.50465043071818,9.58086891020345,10.5605929617488,5.58461538461539,440.74887839278,335,76007,0,0,0,0,9 +"2076",2009,48445,"TX","48","445",12550,0.932191235059761,1010,0.105498007968127,6.9177056098353,7.26473017792987,8.03040956213048,6.83846153846154,406.903325382349,29,7127,0,0,0,0,9 +"2077",2009,48449,"TX","48","449",31749,0.864027213455542,2174,0.100507102585908,7.68432406768116,8.32651683023953,9.08375621986673,7.18461538461538,332.855093256815,58,17425,0,0,0,0,9 +"2078",2009,48451,"TX","48","451",108879,0.92862719165312,10381,0.110866190909174,9.24773249119325,9.40137386937216,10.378851788024,6.28461538461538,371.934690789888,236,63452,0,0,0,0,9 +"2079",2009,48453,"TX","48","453",1006503,0.827377563703238,95831,0.0901418078237223,11.4703415024289,11.937120730059,12.6881592309564,6.64615384615385,216.90990303296,1435,661565,0,0,0,0,9 +"2080",2009,48455,"TX","48","455",14472,0.893034825870647,650,0.160516860143726,6.47697236288968,7.31388683163346,8.31041499418829,8.43076923076923,767.557886657285,60,7817,0,0,0,0,9 +"2081",2009,48457,"TX","48","457",21737,0.871371394396651,1297,0.129686709297511,7.16780918431644,7.9002660367677,8.60593640125063,9.66923076923077,604.016316284907,77,12748,0,0,0,0,9 +"2082",2009,48459,"TX","48","459",39084,0.892615904206325,1967,0.130667280728687,7.58426481838906,8.4721958254855,9.33600338997184,7.53076923076923,539.010914971028,120,22263,0,0,0,0,9 +"2083",2009,48463,"TX","48","463",26223,0.973649086679632,1586,0.113945772794875,7.36897040219479,8.04366335239394,8.86644061952617,7.86153846153846,398.262128892107,55,13810,0,0,0,0,9 +"2084",2009,48465,"TX","48","465",48463,0.967439077234179,3666,0.098735117512329,8.20685642839965,8.74033674273045,9.48600046920064,9.16153846153846,309.014169430208,82,26536,0,0,0,0,9 +"2085",2009,48467,"TX","48","467",52359,0.953723333142344,2532,0.134895624438969,7.83676478326407,8.76045304631527,9.59430941973946,6.90769230769231,585.480093676815,170,29036,0,0,0,0,9 +"2086",2009,48469,"TX","48","469",86635,0.909597737634905,5466,0.117250533848906,8.60630236648801,9.24580403625175,10.1374523424819,6.88461538461539,418.240963368557,207,49493,0,0,0,0,9 +"2087",2009,48471,"TX","48","471",66748,0.746973692095643,10035,0.10373344519686,9.21383426123044,9.13237883050647,9.71069132744815,6.94615384615385,407.821352203338,185,45363,0,0,0,0,9 +"2088",2009,48473,"TX","48","473",42087,0.713712072611495,4568,0.10989141540143,8.42683075133585,8.51579221050061,9.41213770527079,8.19230769230769,370.687197034502,91,24549,0,0,0,0,9 +"2089",2009,48475,"TX","48","475",10734,0.926308924911496,639,0.110396869759642,6.45990445437753,7.11639414409346,8.00636756765025,8.73846153846154,457.239627434378,27,5905,0,0,0,0,9 +"2090",2009,48477,"TX","48","477",33459,0.797483487253056,2061,0.132281299500882,7.63094658089046,8.22416351263786,9.13324332159122,5.96923076923077,374.369269166079,69,18431,0,0,0,0,9 +"2091",2009,48479,"TX","48","479",245908,0.980964425720188,18072,0.0733404362607154,9.80211905814784,10.4215072368824,11.1341655769449,8.48461538461538,255.319797573319,335,131208,0,0,0,0,9 +"2092",2009,48481,"TX","48","481",40998,0.840040977608664,2483,0.117883799209718,7.81722278550817,8.46041117731725,9.34626888920043,6.94615384615385,494.55118385925,113,22849,0,0,0,0,9 +"2093",2009,48483,"TX","48","483",5375,0.955720930232558,250,0.128558139534884,5.52146091786225,6.35262939631957,7.27931883541462,5.61538461538461,452.173913043478,13,2875,0,0,0,0,9 +"2094",2009,48485,"TX","48","485",130913,0.847883709028133,12728,0.103450383078839,9.45155957001762,9.63626148865173,10.5081040206825,7.51538461538462,427.840564955734,332,77599,0,0,0,0,9 +"2095",2009,48487,"TX","48","487",13575,0.889134438305709,930,0.120662983425414,6.8351845861473,7.3132203870903,8.23190824356418,4.68461538461538,410.269984118581,31,7556,0,0,0,0,9 +"2096",2009,48489,"TX","48","489",21862,0.962080322019943,1925,0.093632787485134,7.56268124672188,7.91534816926308,8.59118687132456,11.8538461538462,293.650793650794,37,12600,0,0,0,0,9 +"2097",2009,48491,"TX","48","491",410800,0.868164556962025,21650,0.0924683544303797,9.98276073343064,11.1371696332187,11.7437752468687,7.3,197.347359719256,487,246773,0,0,0,0,9 +"2098",2009,48493,"TX","48","493",42181,0.96507906403357,1958,0.1316469500486,7.57967882309046,8.67880170661265,9.42818993482928,6.45384615384615,382.720573266561,94,24561,0,0,0,0,9 +"2099",2009,48495,"TX","48","495",7128,0.949214365881033,422,0.107182940516274,6.04500531403601,6.68085467879022,7.58120982619635,9.30769230769231,512.42633871381,20,3903,0,0,0,0,9 +"2100",2009,48497,"TX","48","497",59134,0.970812053979098,3427,0.119170020631109,8.13944052187461,9.00196227286245,9.75452339939617,8.64615384615385,473.539203306165,165,34844,0,0,0,0,9 +"2101",2009,48499,"TX","48","499",41870,0.933818963458323,2037,0.154955815619776,7.6192334162268,8.37976851550457,9.32892308780313,7.94615384615385,598.290598290598,133,22230,0,0,0,0,9 +"2102",2009,48501,"TX","48","501",7908,0.965477996965099,475,0.0987607486090035,6.16331480403464,6.80903930604298,7.62900388965296,7.56153846153846,263.852242744063,11,4169,0,0,0,0,9 +"2103",2009,48503,"TX","48","503",18466,0.964691866132351,989,0.12996859092386,6.89669433162271,7.65586401761606,8.52317526309379,6.41538461538462,575.853852263701,58,10072,0,0,0,0,9 +"2104",2009,48505,"TX","48","505",13876,0.992505044681464,1068,0.0881377918708562,6.97354301952014,7.37023064180708,8.19478163844336,10.8230769230769,394.978135138948,28,7089,0,0,0,0,9 +"2105",2009,48507,"TX","48","507",11544,0.981462231462231,879,0.105942480942481,6.77878489768518,7.16703787691222,7.986504938554,14.4307692307692,365.813102760226,22,6014,0,0,0,0,9 +"2106",2009,49001,"UT","49","001",6552,0.966117216117216,282,0.10042735042735,5.64190707093811,6.56526497003536,7.41336733569524,6.14615384615385,540.216086434574,18,3332,0,0,0,0,9 +"2107",2009,49003,"UT","49","003",49372,0.969476626427935,2830,0.0880661103459451,7.94803199063728,8.60940767540405,9.45602788772529,7.97692307692308,245.222062200771,63,25691,0,0,0,0,9 +"2108",2009,49005,"UT","49","005",110291,0.953840295219011,14487,0.0698425075482134,9.58100697454165,9.30882731869084,10.3320830780331,5.43846153846154,134.186956381156,83,61854,0,0,0,0,9 +"2109",2009,49007,"UT","49","007",21143,0.968121837014615,1489,0.120512699238519,7.30586003268401,7.66902828858968,8.68389336730723,7.82307692307692,411.903160726295,49,11896,0,0,0,0,9 +"2110",2009,49011,"UT","49","011",301965,0.947301839617174,20161,0.0819134667925091,9.91150532412971,10.5238758505116,11.3222370030427,6.53076923076923,210.399941791371,347,164924,0,0,0,0,9 +"2111",2009,49013,"UT","49","013",18536,0.933966335779025,1274,0.0898791540785498,7.14991683613211,7.57301725605255,8.46315930292375,8.49230769230769,388.190826437838,38,9789,0,0,0,0,9 +"2112",2009,49015,"UT","49","015",10896,0.982745961820852,554,0.116189427312775,6.31716468674728,7.00124562206948,7.95647679803678,7.00769230769231,294.270382551497,17,5777,0,0,0,0,9 +"2113",2009,49019,"UT","49","019",9034,0.930484835067523,464,0.145561213194598,6.13988455222626,7.05272104923232,7.90396563403217,9.98461538461538,598.476605005441,33,5514,0,0,0,0,9 +"2114",2009,49021,"UT","49","021",45693,0.951962007309654,5345,0.0853741273280371,8.58391682345914,8.40871671508015,9.42931524641817,8.72307692307692,280.527391496013,70,24953,0,0,0,0,9 +"2115",2009,49023,"UT","49","023",10209,0.981291017729454,526,0.0896267998824567,6.26530121273771,7.05358572719368,7.83082299513532,9.9,454.725187821273,23,5058,0,0,0,0,9 +"2116",2009,49025,"UT","49","025",7001,0.975717754606485,282,0.168690187116126,5.64190707093811,6.45362499889269,7.58528107863913,7.61538461538461,551.470588235294,21,3808,0,0,0,0,9 +"2117",2009,49027,"UT","49","027",12343,0.968079073158875,615,0.1093737341003,6.42162226780652,7.15539630189673,8.03268487596762,5.53846153846154,286.989795918367,18,6272,0,0,0,0,9 +"2118",2009,49035,"UT","49","035",1016795,0.911004676458873,79630,0.0903771163312172,11.2851461852515,11.7947981958258,12.6028971979883,7,267.192327124245,1613,603685,0,0,0,0,9 +"2119",2009,49037,"UT","49","037",14514,0.480501584676864,981,0.0978365715860548,6.88857245956536,7.37775890822787,8.23403420769204,11.7307692307692,278.773397052967,21,7533,0,0,0,0,9 +"2120",2009,49039,"UT","49","039",27511,0.959325360764785,2409,0.0927628948420632,7.78696700261487,7.97349996402463,8.74193546409414,8.33076923076923,276.890308839191,39,14085,0,0,0,0,9 +"2121",2009,49041,"UT","49","041",20694,0.976321639122451,1107,0.10114042717696,7.00940893270864,7.64730883235624,8.57168137670031,7.80769230769231,416.824554755589,44,10556,0,0,0,0,9 +"2122",2009,49043,"UT","49","043",35838,0.972487303979017,1860,0.122830515095708,7.52833176670725,8.60849534982302,9.30428598481871,6.93076923076923,214.390995578186,48,22389,0,0,0,0,9 +"2123",2009,49045,"UT","49","045",57218,0.961795239260373,2966,0.0801496032716977,7.99496952269788,8.98180732337753,9.63403824834541,7.83076923076923,308.752315642367,95,30769,0,0,0,0,9 +"2124",2009,49047,"UT","49","047",32931,0.900701466703106,2414,0.0836901399896754,7.78904040165748,8.18172045512811,9.08045945112166,8.29230769230769,381.173351010938,69,18102,0,0,0,0,9 +"2125",2009,49049,"UT","49","049",504801,0.9562401817746,59098,0.0605228595030517,10.986952361874,10.900085572464,11.8160255664004,6.96153846153846,164.558868363925,448,272243,0,0,0,0,9 +"2126",2009,49051,"UT","49","051",22886,0.976055230271782,1220,0.0920650179148825,7.1066061377273,8.05832730658096,8.74400998809674,8.3,237.32299659837,30,12641,0,0,0,0,9 +"2127",2009,49053,"UT","49","053",137088,0.952789449112978,9196,0.0996804971988796,9.12652388588307,9.51451076193277,10.4555606802804,9.71538461538461,289.199782733158,197,68119,0,0,0,0,9 +"2128",2009,49057,"UT","49","057",228118,0.945861352457938,17337,0.0918910388483153,9.76059822498589,10.2107516397156,11.0702723763073,8.33076923076923,304.976664664295,396,129846,0,0,0,0,9 +"2129",2009,51001,"VA","51","001",33415,0.700673350291785,1735,0.148915157863235,7.45876269238096,8.27944348771267,9.20311432688444,6.64615384615385,533.098700895399,103,19321,0,0,0,0,9 +"2130",2009,51003,"VA","51","003",98071,0.841084520398487,6945,0.12194226631726,8.84577725518844,9.38873757187798,10.300920488947,5.23076923076923,216.570220728369,125,57718,0,0,0,0,9 +"2131",2009,51005,"VA","51","005",16306,0.940941984545566,677,0.153379124248743,6.51767127291227,7.64778604544093,8.44526745184465,9.3,620.577027762656,57,9185,0,0,0,0,9 +"2132",2009,51007,"VA","51","007",12594,0.749722089884072,658,0.133873272987137,6.48920493132532,7.40306109109009,8.22764270790443,7.90769230769231,349.509342653582,26,7439,0,0,0,0,9 +"2133",2009,51009,"VA","51","009",32447,0.787314697814898,2182,0.135420840139304,7.68799716639302,8.33158624363075,9.19927942461676,7.9,531.634908937783,101,18998,0,0,0,0,9 +"2134",2009,51011,"VA","51","011",14812,0.779840669727248,769,0.136173372940859,6.64509096950564,7.54802896993501,8.38981426208641,8.06153846153846,559.049615653389,48,8586,0,0,0,0,9 +"2135",2009,51013,"VA","51","013",202637,0.791306622186471,17653,0.100110049003884,9.77866101958928,10.3795664399723,11.2224662063712,4.34615384615385,138.126133065935,208,150587,0,0,0,0,9 +"2136",2009,51015,"VA","51","015",73844,0.948458913384974,3673,0.139794702345485,8.20876404581967,9.23717702592974,9.9763197111858,6.56923076923077,342.249842384941,152,44412,0,0,0,0,9 +"2137",2009,51021,"VA","51","021",6868,0.961415259172976,291,0.149970879440885,5.67332326717149,7.03262426102801,7.49164547360513,7.57692307692308,513.898621817332,22,4281,0,0,0,0,9 +"2138",2009,51023,"VA","51","023",33042,0.957417831850372,1332,0.157133345439138,7.19443685110033,8.44009614103127,9.19441422142592,6.40769230769231,321.412172848324,63,19601,0,0,0,0,9 +"2139",2009,51025,"VA","51","025",17507,0.413720226195236,1226,0.13588850174216,7.11151211649616,7.67832635650689,8.46863300080086,11.4615384615385,459.877991553261,49,10655,0,0,0,0,9 +"2140",2009,51027,"VA","51","027",24234,0.970165882644219,1316,0.148469093009821,7.18235211188526,8.12237124340655,8.8989119057944,8.7,614.901550336887,94,15287,0,0,0,0,9 +"2141",2009,51029,"VA","51","029",17148,0.629869372521577,1046,0.137450431537206,6.95272864462487,7.8407064517494,8.42639282708974,8.28461538461539,336.394217656151,37,10999,0,0,0,0,9 +"2142",2009,51031,"VA","51","031",54472,0.8379350859157,3567,0.130966368042297,8.17948018535889,8.88502565805085,9.71432263326017,7.38461538461538,332.583992855603,108,32473,0,0,0,0,9 +"2143",2009,51033,"VA","51","033",28263,0.673636910448289,1501,0.123624526766444,7.31388683163346,8.2845042272585,9.05742226555147,8.56153846153846,379.141390573962,65,17144,0,0,0,0,9 +"2144",2009,51035,"VA","51","035",30002,0.987400839944004,1284,0.149090060662622,7.15773548424991,8.29804166137157,9.06311565221966,11.0461538461538,491.443108233118,85,17296,0,0,0,0,9 +"2145",2009,51036,"VA","51","036",7216,0.420593126385809,336,0.172533259423503,5.8171111599632,6.8351845861473,7.7484600238997,9.18461538461538,632.083696599826,29,4588,0,0,0,0,9 +"2146",2009,51037,"VA","51","037",12588,0.686288528757547,656,0.135843660629171,6.48616078894409,7.29233717617388,8.1721644521119,9.4,428.265524625268,30,7005,0,0,0,0,9 +"2147",2009,51041,"VA","51","041",313096,0.728581649078877,17387,0.122876050795922,9.76347807952779,10.7510925086218,11.5088069957065,6.79230769230769,271.346160925101,516,190163,0,0,0,0,9 +"2148",2009,51043,"VA","51","043",14015,0.926507313592579,538,0.14962540135569,6.28785856016178,7.53849499941346,8.31752199628717,6.43076923076923,362.275087549813,30,8281,0,0,0,0,9 +"2149",2009,51045,"VA","51","045",5120,0.9935546875,207,0.154296875,5.33271879326537,6.52356230614951,7.31521838975297,7.53076923076923,629.139072847682,19,3020,0,0,0,0,9 +"2150",2009,51047,"VA","51","047",46236,0.803205294575655,2372,0.115926983303054,7.77148876011762,8.83840674707681,9.50017013648542,8.08461538461538,319.16436965037,88,27572,0,0,0,0,9 +"2151",2009,51049,"VA","51","049",10013,0.654648956356736,575,0.136822131229402,6.35437004079735,7.16626597413364,8.00269416228394,7.45384615384615,429.03724043247,25,5827,0,0,0,0,9 +"2152",2009,51051,"VA","51","051",15925,0.993155416012559,768,0.145117739403454,6.64378973314767,7.614312146452,8.44741429680832,8.83846153846154,628.403854210306,60,9548,0,0,0,0,9 +"2153",2009,51053,"VA","51","053",27888,0.655514916810098,1589,0.128944348823867,7.37086016653672,8.28374674710613,9.06230429314878,8.2,453.341183397115,77,16985,0,0,0,0,9 +"2154",2009,51057,"VA","51","057",11104,0.588526657060519,631,0.145983429394813,6.44730586254121,7.20042489294496,8.12740456269308,8.23846153846154,388.56077090457,25,6434,0,0,0,0,9 +"2155",2009,51059,"VA","51","059",1065142,0.707271894263863,60025,0.119748352801786,11.0025164210895,12.0101489983179,12.7536823624544,4.87692307692308,163.86046436439,1115,680457,0,0,0,0,9 +"2156",2009,51061,"VA","51","061",64907,0.889719136610843,3107,0.129878133329225,8.04141290939305,9.14484138974349,9.88893213452693,5.6,360.94567767551,140,38787,0,0,0,0,9 +"2157",2009,51063,"VA","51","063",15150,0.974455445544554,666,0.149240924092409,6.50128967054039,7.59488438721652,8.38594490480628,7.8,403.45175389443,36,8923,0,0,0,0,9 +"2158",2009,51065,"VA","51","065",25576,0.827377228651861,1036,0.125430090710041,6.94312242281943,8.25945819533241,9.05064099321851,5.86923076923077,263.002169767901,40,15209,0,0,0,0,9 +"2159",2009,51067,"VA","51","067",55732,0.903753678317663,3119,0.150667480083256,8.0452677166078,8.86587628542542,9.70686421103131,8.36923076923077,404.065140198359,132,32668,0,0,0,0,9 +"2160",2009,51069,"VA","51","069",77477,0.934599945790364,4120,0.11562141022497,8.32360844234357,9.36426245424844,10.0481505087767,7.70769230769231,284.288194444444,131,46080,0,0,0,0,9 +"2161",2009,51071,"VA","51","071",17264,0.978510194624652,841,0.145099629286376,6.73459165997295,7.7828072628397,8.52971447196991,9.33076923076923,546.828395307218,55,10058,0,0,0,0,9 +"2162",2009,51073,"VA","51","073",36778,0.891701560715645,1891,0.134482571102289,7.54486106865846,8.52178264375005,9.33158407926155,6.13846153846154,416.629334289042,93,22322,0,0,0,0,9 +"2163",2009,51075,"VA","51","075",21604,0.786891316422885,739,0.161914460285132,6.6052979209482,8.1086232683546,8.84115897594526,6.63076923076923,315.087565032608,43,13647,0,0,0,0,9 +"2164",2009,51077,"VA","51","077",15696,0.972477064220184,700,0.159021406727829,6.5510803350434,7.61381868480863,8.4084937744929,10.9230769230769,439.51214152291,40,9101,0,0,0,0,9 +"2165",2009,51079,"VA","51","079",18237,0.908373087678895,850,0.127268739375994,6.74523634948436,7.88870952418201,8.63052187672324,5.90769230769231,347.826086956522,38,10925,0,0,0,0,9 +"2166",2009,51081,"VA","51","081",12272,0.388363754889179,819,0.124674054758801,6.70808408385307,7.64204440287326,7.87131120332341,9.13076923076923,391.737891737892,33,8424,0,0,0,0,9 +"2167",2009,51083,"VA","51","083",36293,0.617391783539526,1649,0.150524894607776,7.4079243225596,8.38297584929643,9.24657586455828,11.5,499.632623071271,102,20415,0,0,0,0,9 +"2168",2009,51085,"VA","51","085",99651,0.88334286660445,5036,0.12708352149,8.52436739516424,9.59906615608005,10.3114827904979,6.66923076923077,268.082868147344,158,58937,0,0,0,0,9 +"2169",2009,51087,"VA","51","087",304763,0.624265412796173,18161,0.113012406361665,9.8070317167185,10.6968646095049,11.5048025633507,7.02307692307692,297.192762229697,554,186411,0,0,0,0,9 +"2170",2009,51089,"VA","51","089",54402,0.764788059262527,2805,0.138744899084592,7.9391588179568,8.88100262425557,9.6896753286508,13.9461538461538,514.825054819335,162,31467,0,0,0,0,9 +"2171",2009,51093,"VA","51","093",35270,0.733371136943578,1625,0.144513751063227,7.39326309476384,8.47928361834302,9.30337523794337,6.34615384615385,318.143538879012,68,21374,0,0,0,0,9 +"2172",2009,51095,"VA","51","095",66118,0.829214434798391,3358,0.141867570101939,8.11910083763749,9.0079793598445,9.8671865728098,5.48461538461538,294.427487101915,109,37021,0,0,0,0,9 +"2173",2009,51097,"VA","51","097",6893,0.68199622805745,353,0.155665167561294,5.8664680569333,6.74051935960622,7.60688453121963,8.18461538461538,659.1796875,27,4096,0,0,0,0,9 +"2174",2009,51099,"VA","51","099",23335,0.789586458110135,1234,0.105678165845297,7.11801620446533,8.18283871076603,8.84793475332846,7.72307692307692,307.890591436345,43,13966,0,0,0,0,9 +"2175",2009,51101,"VA","51","101",15768,0.787607813292745,770,0.126458650431253,6.64639051484773,7.75833346749091,8.50228257868048,7.16923076923077,419.331166788972,40,9539,0,0,0,0,9 +"2176",2009,51103,"VA","51","103",11403,0.708497763746383,428,0.171183022011751,6.0591231955818,6.91174730025167,8.05229649953865,9.46923076923077,444.97689543043,26,5843,0,0,0,0,9 +"2177",2009,51105,"VA","51","105",25578,0.952850105559465,1350,0.136836343732895,7.20785987143248,8.20193435119422,8.87556669199055,7.37692307692308,649.433337577996,102,15706,0,0,0,0,9 +"2178",2009,51107,"VA","51","107",303661,0.758750712142817,12556,0.0837875130490909,9.43795391796184,10.9731172062798,11.4570321329297,4.79230769230769,145.626894224362,271,186092,0,0,0,0,9 +"2179",2009,51109,"VA","51","109",32840,0.799847746650426,1563,0.147137637028015,7.35436233042148,8.39072252736229,9.22984883836423,8.01538461538462,373.115765384807,75,20101,0,0,0,0,9 +"2180",2009,51111,"VA","51","111",12887,0.631101109645379,738,0.147823387910297,6.60394382460047,7.41577697541539,8.12888014212564,9.46923076923077,484.941296579888,38,7836,0,0,0,0,9 +"2181",2009,51113,"VA","51","113",13358,0.883141188800719,645,0.144931876029346,6.46925031679577,7.37148929521428,8.28172399041139,6.26923076923077,388.903292714545,30,7714,0,0,0,0,9 +"2182",2009,51115,"VA","51","115",8997,0.892186284316995,356,0.168611759475381,5.87493073085203,6.94408720822953,7.83755436088108,5.64615384615385,467.764897295099,23,4917,0,0,0,0,9 +"2183",2009,51117,"VA","51","117",32815,0.613012341916806,1668,0.148224897150693,7.41938058291869,8.27052509505507,9.12249228140299,11.1307692307692,514.370558913989,97,18858,0,0,0,0,9 +"2184",2009,51119,"VA","51","119",10875,0.801379310344828,454,0.178206896551724,6.11809719804135,7.03614849375054,8.03657340970731,6.80769230769231,615.783503484038,38,6171,0,0,0,0,9 +"2185",2009,51121,"VA","51","121",93772,0.896760226933413,20733,0.0884165849080749,9.9394819127595,9.20703491496746,10.26196586942,7.11538461538461,233.764095810355,142,60745,0,0,0,0,9 +"2186",2009,51125,"VA","51","125",15090,0.851225977468522,643,0.177866136514248,6.46614472423762,7.4764723811639,8.42792472365806,6.52307692307692,458.715596330275,41,8938,0,0,0,0,9 +"2187",2009,51127,"VA","51","127",18057,0.8388990419228,804,0.152184748297059,6.68959926917897,7.90211754627645,8.64100247714252,7.10769230769231,226.421666811809,26,11483,0,0,0,0,9 +"2188",2009,51131,"VA","51","131",12460,0.611556982343499,645,0.152728731942215,6.46925031679577,7.07072410726028,8.17948018535889,7.85384615384615,594.720046417174,41,6894,0,0,0,0,9 +"2189",2009,51133,"VA","51","133",12379,0.731965425317069,472,0.178285806607965,6.15697898558556,6.99393297522319,8.11910083763749,8.9,421.348314606742,27,6408,0,0,0,0,9 +"2190",2009,51135,"VA","51","135",15894,0.58846105448597,955,0.122624889895558,6.86171134048073,7.64873978895624,8.31922993863233,8.18461538461538,452.203175938585,43,9509,0,0,0,0,9 +"2191",2009,51137,"VA","51","137",33329,0.851600708092052,1557,0.128416694170242,7.350516171834,8.41138813251926,9.16941420536354,7.87692307692308,301.300348874088,57,18918,0,0,0,0,9 +"2192",2009,51139,"VA","51","139",24076,0.97275294899485,1275,0.133950822395747,7.15070145759253,8.07464907506665,8.85480763261623,11.9769230769231,390.375470224998,55,14089,0,0,0,0,9 +"2193",2009,51141,"VA","51","141",18562,0.92921021441655,750,0.151007434543691,6.62007320653036,7.81156848934518,8.57659353469768,11.3615384615385,373.761913660998,40,10702,0,0,0,0,9 +"2194",2009,51143,"VA","51","143",63386,0.767630076042028,3171,0.146499226958634,8.06180227453835,9.0295376611515,9.84272854669056,10.8153846153846,451.143782177167,170,37682,0,0,0,0,9 +"2195",2009,51145,"VA","51","145",27983,0.849730193331666,1214,0.137369116963871,7.10167597161944,8.422882511945,8.96890555068972,6.43076923076923,276.641115785834,48,17351,0,0,0,0,9 +"2196",2009,51147,"VA","51","147",23260,0.643164230438521,3992,0.104428202923474,8.29204763743135,7.77022320415879,8.81001204797317,9.06153846153846,353.86726366722,49,13847,0,0,0,0,9 +"2197",2009,51149,"VA","51","149",35828,0.633945517472368,2375,0.116947638718321,7.77275271646874,8.6202911494198,9.1951252061697,7.08461538461538,291.938997821351,67,22950,0,0,0,0,9 +"2198",2009,51153,"VA","51","153",389001,0.682455829162393,23582,0.0941205806668877,10.0682389881366,11.0740328307495,11.707150888767,5.56153846153846,213.096504054234,513,240736,0,0,0,0,9 +"2199",2009,51155,"VA","51","155",34988,0.937407111009489,1743,0.152938150222934,7.46336304552002,8.52178264375005,9.25521813075427,11.1,496.430428821332,105,21151,0,0,0,0,9 +"2200",2009,51159,"VA","51","159",9251,0.678305048102908,502,0.118041292833207,6.21860011969173,7.23201033166476,7.65254569269392,7.88461538461539,296.580600139567,17,5732,0,0,0,0,9 +"2201",2009,51161,"VA","51","161",92215,0.916607927126823,4442,0.141885810334544,8.39886000445437,9.44856956070843,10.2395311258658,6,315.422500138343,171,54213,0,0,0,0,9 +"2202",2009,51163,"VA","51","163",22269,0.959136018680677,1211,0.156091427545018,7.09920174355309,7.8935720735049,8.78170898583618,6.58461538461538,385.891795940418,50,12957,0,0,0,0,9 +"2203",2009,51165,"VA","51","165",75850,0.966789716545814,4448,0.123691496374423,8.40020983593042,9.20773698610607,10.0015212928075,6,296.695271133832,130,43816,0,0,0,0,9 +"2204",2009,51167,"VA","51","167",29012,0.987177719564318,1512,0.143940438439267,7.32118855673948,8.28324144138542,9.086702731518,10.7076923076923,533.333333333333,94,17625,0,0,0,0,9 +"2205",2009,51169,"VA","51","169",23212,0.98927278993624,1174,0.144321902464243,7.06817200038804,8.05864371221562,8.81996090128606,9.76153846153846,583.984232425724,80,13699,0,0,0,0,9 +"2206",2009,51171,"VA","51","171",41743,0.968569580528472,2054,0.13652588457945,7.6275443904885,8.62461158818351,9.39416080489387,8.36923076923077,388.958594730238,93,23910,0,0,0,0,9 +"2207",2009,51173,"VA","51","173",32283,0.972524238763436,1695,0.139237369513366,7.43543801981455,8.40043463080604,9.16597042424024,11.3230769230769,577.728308687126,109,18867,0,0,0,0,9 +"2208",2009,51175,"VA","51","175",18607,0.604449938195303,978,0.13930241307035,6.88550967003482,7.78696700261487,8.56331312702979,8.12307692307692,562.983814215341,64,11368,0,0,0,0,9 +"2209",2009,51177,"VA","51","177",121038,0.802888349113502,6688,0.106602885044366,8.80807015476454,9.83333329261292,10.5172938624107,5.74615384615385,265.26304094217,191,72004,0,0,0,0,9 +"2210",2009,51179,"VA","51","179",126449,0.773924665280073,8416,0.0942356206850193,9.03788993497749,9.91090993835177,10.5490975336384,5.58461538461538,211.559178163978,163,77047,0,0,0,0,9 +"2211",2009,51181,"VA","51","181",7037,0.516129032258065,409,0.14480602529487,6.0137151560428,6.72623340235875,7.67089483136212,7.65384615384615,426.641384214269,18,4219,0,0,0,0,9 +"2212",2009,51183,"VA","51","183",12175,0.405749486652977,890,0.130020533880903,6.79122146272619,7.46508273639955,7.97212112892166,10.3384615384615,434.566674944127,35,8054,0,0,0,0,9 +"2213",2009,51185,"VA","51","185",45069,0.960039051232555,2313,0.149038141516342,7.74630066223144,8.65956043270316,9.49551931420985,7.69230769230769,787.40157480315,213,27051,0,0,0,0,9 +"2214",2009,51187,"VA","51","187",37240,0.933136412459721,2189,0.120300751879699,7.69120009752286,8.59618919764273,9.31470038730042,7.69230769230769,379.633765073694,85,22390,0,0,0,0,9 +"2215",2009,51191,"VA","51","191",54722,0.979258799020504,2932,0.146613793355506,7.98344006300654,8.9082888855571,9.70844543133279,8.67692307692308,427.817221918806,141,32958,0,0,0,0,9 +"2216",2009,51193,"VA","51","193",17448,0.693317285648785,921,0.158470884915177,6.82546003625531,7.53155238140729,8.53601494565683,7.79230769230769,382.024731074696,38,9947,0,0,0,0,9 +"2217",2009,51195,"VA","51","195",41454,0.939426834563613,2985,0.131205673758865,8.0013550258267,8.63941082414049,9.38471375892096,6.74615384615385,433.255269320843,111,25620,0,0,0,0,9 +"2218",2009,51197,"VA","51","197",29216,0.960261500547645,1410,0.140950164293538,7.25134498337221,8.3243363327069,9.0843235313927,10.6846153846154,530.259365994236,92,17350,0,0,0,0,9 +"2219",2009,51199,"VA","51","199",65197,0.795542739696612,3649,0.117704802368207,8.20220843643645,9.11063052782717,9.89313414045664,5.4,241.81595985335,93,38459,0,0,0,0,9 +"2220",2009,51510,"VA","51","510",137523,0.690691738836413,8263,0.110519694887401,9.01954299670119,10.1047126397493,10.8549523594179,4.91538461538462,202.204226268531,202,99899,0,0,0,0,9 +"2221",2009,51520,"VA","51","520",17842,0.92758659343123,1150,0.124873893061316,7.0475172213573,7.70300768247924,8.5814816812986,10.1846153846154,450.891981964321,46,10202,0,0,0,0,9 +"2222",2009,51530,"VA","51","530",6677,0.928261195147521,626,0.124756627227797,6.4393503711001,6.61873898351722,7.60439634879634,8.7,392.156862745098,15,3825,0,0,0,0,9 +"2223",2009,51540,"VA","51","540",43054,0.721233799414689,10456,0.0889812793236401,9.25493125530406,8.39457347786833,9.67464026580524,6.6,269.148453207082,83,30838,0,0,0,0,9 +"2224",2009,51550,"VA","51","550",220176,0.652691483177095,13722,0.110584259864835,9.52675566325084,10.3591386755575,11.1434691866668,6.48461538461538,330.3783654493,442,133786,0,0,0,0,9 +"2225",2009,51570,"VA","51","570",17525,0.852382310984308,1060,0.121369472182596,6.96602418710611,7.66949525100769,8.55468163582723,8.03846153846154,365.593581801564,36,9847,0,0,0,0,9 +"2226",2009,51580,"VA","51","580",5948,0.851882985877606,341,0.12626092804304,5.83188247728352,6.62671774924902,7.43425738213314,10.2692307692308,558.823529411765,19,3400,0,0,0,0,9 +"2227",2009,51590,"VA","51","590",43496,0.49776990987677,2864,0.136104469376494,7.95997452808054,8.49902922078857,9.48615227185748,13.7615384615385,601.283822215,148,24614,0,0,0,0,9 +"2228",2009,51600,"VA","51","600",22418,0.768489606566152,1869,0.123382995806941,7.53315880745556,8.03495502450216,8.8731879040501,5.65384615384615,355.623736141134,51,14341,0,0,0,0,9 +"2229",2009,51620,"VA","51","620",8489,0.413122864883967,543,0.12922605725056,6.29710931993394,6.89770494312864,7.88720858581393,10.3153846153846,502.197112366604,24,4779,0,0,0,0,9 +"2230",2009,51630,"VA","51","630",23775,0.710956887486856,3900,0.0876550998948475,8.26873183211774,7.88193748927207,8.98494428560868,9.56153846153846,334.090605372177,50,14966,0,0,0,0,9 +"2231",2009,51640,"VA","51","640",6966,0.914728682170543,420,0.123169681309216,6.04025471127741,6.82110747225646,7.60240133566582,9.89230769230769,621.600621600622,24,3861,0,0,0,0,9 +"2232",2009,51650,"VA","51","650",137833,0.452018021809001,12712,0.111011151175698,9.45030170821655,9.72412162356781,10.691581210405,7.98461538461538,398.561405577501,338,84805,0,0,0,0,9 +"2233",2009,51660,"VA","51","660",48294,0.878204331801052,13652,0.0620159854226198,9.5216413100266,8.30052860619974,9.66618168740941,6.87692307692308,154.315920806383,47,30457,0,0,0,0,9 +"2234",2009,51670,"VA","51","670",22455,0.591761300378535,1526,0.110309507904698,7.3304052118444,7.93880224815448,8.83317113302287,10.6307692307692,480.433940333204,62,12905,0,0,0,0,9 +"2235",2009,51680,"VA","51","680",75137,0.66475904015332,11343,0.0995381769301409,9.33635609255904,8.9165060800392,10.0465483953768,8.21538461538461,333.363570391872,147,44096,0,0,0,0,9 +"2236",2009,51683,"VA","51","683",36674,0.780143971205759,2554,0.0951627856246932,7.84541603659248,8.58204416373585,9.33193834372367,7.45384615384615,246.392115452306,56,22728,0,0,0,0,9 +"2237",2009,51690,"VA","51","690",14012,0.528475592349415,745,0.129389095061376,6.61338421837956,7.46336304552002,8.35042997353814,19.6384615384615,491.369535088824,39,7937,0,0,0,0,9 +"2238",2009,51700,"VA","51","700",181000,0.527176795580111,17842,0.0959337016574586,9.78931050747373,10.0242439411719,10.953819547029,7.58461538461538,356.234555653758,395,110882,0,0,0,0,9 +"2239",2009,51710,"VA","51","710",241725,0.500539869686627,36669,0.0890391974351019,10.5096869904454,10.2373492417846,11.1970085135037,8.72307692307692,410.958029953991,644,156707,0,0,0,0,9 +"2240",2009,51730,"VA","51","730",32168,0.172251927381248,2914,0.125746083063914,7.97728198675515,8.26539293085222,9.25951141598263,13.5846153846154,754.277614660322,149,19754,0,0,0,0,9 +"2241",2009,51735,"VA","51","735",12153,0.965029210894429,522,0.137908335390439,6.25766758788264,7.39633529380081,8.1786387885907,5.27692307692308,228.963938179737,16,6988,0,0,0,0,9 +"2242",2009,51740,"VA","51","740",95384,0.432168917218821,7346,0.113100729682127,8.90191122637961,9.36589007271715,10.2940082132585,8.67692307692308,528.686457626824,304,57501,0,0,0,0,9 +"2243",2009,51750,"VA","51","750",16361,0.894321862966811,5433,0.066255118880264,8.60024674655152,7.13966033596492,8.595449689382,9.1,197.814619442351,21,10616,0,0,0,0,9 +"2244",2009,51760,"VA","51","760",203678,0.436870943351761,26482,0.105907363583696,10.1842205358997,10.0877655276285,11.1294957837227,9.79230769230769,504.280343635348,668,132466,0,0,0,0,9 +"2245",2009,51770,"VA","51","770",97023,0.675726374158705,6436,0.124619935479216,8.76966250811227,9.46304272553194,10.3361786468979,8.79230769230769,548.825379827321,328,59764,0,0,0,0,9 +"2246",2009,51775,"VA","51","775",24684,0.907429914114406,2136,0.12757251660995,7.66669020008009,8.00269416228394,8.91435727448502,6.51538461538462,431.514476614699,62,14368,0,0,0,0,9 +"2247",2009,51790,"VA","51","790",23764,0.854780340010099,1550,0.133310890422488,7.34601020991329,7.94200680848986,8.9138193508572,7.40769230769231,470.23077479563,65,13823,0,0,0,0,9 +"2248",2009,51800,"VA","51","800",83648,0.5391282517215,4450,0.111718152257077,8.40065937516029,9.45813751072905,10.1728656241899,6.86153846153846,373.037563087235,187,50129,0,0,0,0,9 +"2249",2009,51810,"VA","51","810",435004,0.712453218820976,35086,0.106093277303197,10.4655574694891,11.0096380242425,11.8417254881429,6.11538461538461,272.717595974204,743,272443,0,0,0,0,9 +"2250",2009,51820,"VA","51","820",20985,0.868620443173695,1206,0.118751489158923,7.09506437728713,7.83042561782033,8.75872660784204,8.69230769230769,330.141961043249,40,12116,0,0,0,0,9 +"2251",2009,51840,"VA","51","840",26036,0.839990781994162,2268,0.109502227684744,7.72665366484764,8.07215530818825,8.96303219366268,8.26153846153846,470.767860550926,74,15719,0,0,0,0,9 +"2252",2009,50001,"VT","50","001",36847,0.971639482183081,3040,0.142345374114582,8.01961279440027,8.45297461908959,9.32384761276978,5.74615384615385,231.419670672007,52,22470,1,0,0,0,9 +"2253",2009,50003,"VT","50","003",37151,0.977524158165325,2127,0.147802212591855,7.66246781520024,8.39185670010494,9.31271643859305,7.16923076923077,339.771933907377,73,21485,1,0,0,0,9 +"2254",2009,50005,"VT","50","005",31213,0.978470509082754,1927,0.149617146701695,7.56371966841437,8.23827262463303,9.13615547378681,7.27692307692308,302.441131993951,56,18516,1,0,0,0,9 +"2255",2009,50007,"VT","50","007",155793,0.939901022510639,16449,0.114921723055593,9.70801996407216,9.91155492361389,10.829550381559,5.27692307692308,207.370720462256,206,99339,1,0,0,0,9 +"2256",2009,50011,"VT","50","011",47620,0.971440571188576,2327,0.124233515329693,7.75233516330229,8.86064104177388,9.59117119912599,6.14615384615385,245.072658865762,71,28971,1,0,0,0,9 +"2257",2009,50013,"VT","50","013",7022,0.979493021931074,291,0.175448590145258,5.67332326717149,6.84268328223842,7.722677516468,7.3,290.373017645745,13,4477,1,0,0,0,9 +"2258",2009,50015,"VT","50","015",24193,0.980862232877279,1536,0.131194973752738,7.33693691370762,8.11910083763749,8.90788301394225,7.10769230769231,321.71581769437,48,14920,1,0,0,0,9 +"2259",2009,50017,"VT","50","017",28965,0.985741412049025,1546,0.153668220265838,7.34342622914737,8.22523532410167,9.09043007530363,5.83076923076923,293.155936407712,52,17738,1,0,0,0,9 +"2260",2009,50019,"VT","50","019",27234,0.98079606374385,1381,0.14995960931189,7.23056315340929,8.13153071060425,8.96737669321267,8.6,436.871996505024,70,16023,1,0,0,0,9 +"2261",2009,50021,"VT","50","021",61946,0.981774448713396,4091,0.151196203144674,8.3165447179294,8.94949495347796,9.84139936022271,7.46153846153846,358.708648864089,135,37635,1,0,0,0,9 +"2262",2009,50023,"VT","50","023",59353,0.974710629622765,3615,0.147338803430324,8.19284713459287,8.99305463014613,9.82298223787648,5.92307692307692,256.151729024171,94,36697,1,0,0,0,9 +"2263",2009,50025,"VT","50","025",44441,0.97099525213204,2538,0.161315001912648,7.83913164827433,8.58541243039338,9.54294800778096,5.90769230769231,346.89257284744,95,27386,1,0,0,0,9 +"2264",2009,50027,"VT","50","027",56708,0.977869083727164,2660,0.158002398250688,7.88608140177575,8.82541291508557,9.76209678434414,5.43076923076923,297.306750612102,102,34308,1,0,0,0,9 +"2265",2009,53001,"WA","53","001",18405,0.936864982341755,1247,0.0908448791089378,7.12849594568004,7.70210434005105,8.47303229563047,8.45384615384615,374.025974025974,36,9625,1,0,0,0,9 +"2266",2009,53003,"WA","53","003",21415,0.966238617791268,1190,0.140742470231146,7.08170858610557,7.76937860951398,8.75004942158424,8.87692307692308,395.387149917628,48,12140,1,0,0,0,9 +"2267",2009,53005,"WA","53","005",171122,0.934783370928344,10656,0.12021247998504,9.27387839278017,9.97310689441619,10.81430332413,6.68461538461538,282.967749703988,282,99658,1,0,0,0,9 +"2268",2009,53007,"WA","53","007",71679,0.962248357259448,4253,0.130261303868637,8.35537989525363,9.04452188728124,9.92073790594266,7.58461538461539,276.682745280478,113,40841,1,0,0,0,9 +"2269",2009,53009,"WA","53","009",71077,0.906650533927994,3597,0.167522545971271,8.18785544369562,8.85023096558882,9.89621114356535,9.33846153846154,527.325023969319,209,39634,1,0,0,0,9 +"2270",2009,53011,"WA","53","011",421236,0.904979631370538,24114,0.120065711382693,10.0905478636773,10.9984264358379,11.7533586848214,12.3153846153846,299.010872035307,750,250827,1,0,0,0,9 +"2271",2009,53015,"WA","53","015",102126,0.945684742377064,5567,0.136253255782073,8.62461158818351,9.44604470533525,10.2937374948378,12.4615384615385,390.048671290722,230,58967,1,0,0,0,9 +"2272",2009,53017,"WA","53","017",37935,0.958797943851325,2122,0.119230262290761,7.66011431917393,8.44311598801992,9.27199975236291,7.51538461538462,268.273167976656,57,21247,1,0,0,0,9 +"2273",2009,53019,"WA","53","019",7538,0.790660652693022,389,0.18559299548952,5.96357934361845,6.63594655568665,7.66246781520024,12.3846153846154,664.223545579478,29,4366,1,0,0,0,9 +"2274",2009,53021,"WA","53","021",74478,0.932355863476463,5270,0.0823733182953355,8.56978564153541,9.15704507491796,9.88629052770761,7.8,244.720162494188,100,40863,1,0,0,0,9 +"2275",2009,53025,"WA","53","025",87340,0.944378291733455,6001,0.103114266086558,8.69968140098951,9.26955223160803,10.0483668138542,9.30769230769231,339.786479854018,162,47677,1,0,0,0,9 +"2276",2009,53027,"WA","53","027",72468,0.906441463818513,4360,0.145305514157973,8.38022733634308,9.06346317611542,9.92559145144305,12.2769230769231,516.003068126351,222,43023,1,0,0,0,9 +"2277",2009,53029,"WA","53","029",78248,0.898029342603006,5290,0.155032716491156,8.57357352485234,9.0442857876461,10.0507430868179,8.26153846153846,267.874643378269,123,45917,1,0,0,0,9 +"2278",2009,53031,"WA","53","031",29714,0.93669650669718,1079,0.214511677996904,6.98378996525813,7.9218984110238,9.06739336265625,8.26153846153846,379.429105131049,65,17131,1,0,0,0,9 +"2279",2009,53033,"WA","53","033",1912012,0.74974372545779,130039,0.115213189038563,11.7755896844467,12.6008272672735,13.3349020957256,7.04615384615385,232.448087527955,2903,1248881,1,0,0,0,9 +"2280",2009,53035,"WA","53","035",248800,0.871619774919614,18515,0.13818729903537,9.82633649334771,10.3467942180712,11.2201638467751,7.13076923076923,314.906212714909,483,153379,1,0,0,0,9 +"2281",2009,53037,"WA","53","037",40466,0.950995897790738,6770,0.117481342361489,8.82025636590632,8.32312288758773,9.41491253770496,8.44615384615385,181.481043121474,46,25347,1,0,0,0,9 +"2282",2009,53039,"WA","53","039",20164,0.95144812537195,819,0.171642531243801,6.70808408385307,7.75276480885133,8.65938695711941,9.7,437.843406593407,51,11648,1,0,0,0,9 +"2283",2009,53041,"WA","53","041",75316,0.956091667109246,4297,0.13824419778002,8.365672383775,9.06958293425992,9.96622758235731,12.3153846153846,399.48604135031,171,42805,1,0,0,0,9 +"2284",2009,53043,"WA","53","043",10570,0.970577105014191,382,0.166603595080416,5.94542060860658,6.97541392745595,7.95892649305011,7.91538461538462,416.956219596942,24,5756,1,0,0,0,9 +"2285",2009,53045,"WA","53","045",60333,0.91498848059934,3107,0.154807485124227,8.04141290939305,8.86813171350303,9.73707871420222,9.97692307692308,450.652186082965,161,35726,1,0,0,0,9 +"2286",2009,53047,"WA","53","047",40699,0.848620359222585,2020,0.155925207007543,7.61085279039525,8.41935983106747,9.35858794843639,9.14615384615385,430.811649146993,100,23212,1,0,0,0,9 +"2287",2009,53049,"WA","53","049",21026,0.934985256349282,906,0.181774945305812,6.80903930604298,7.62900388965296,8.67145815042767,11.8846153846154,623.771682474579,73,11703,1,0,0,0,9 +"2288",2009,53051,"WA","53","051",13043,0.93904776508472,488,0.181706662577628,6.19031540585315,7.27031288607902,8.21716859576607,13.5307692307692,494.255944429602,37,7486,1,0,0,0,9 +"2289",2009,53053,"WA","53","053",796483,0.80473280660102,58247,0.111100927452312,10.9724478679557,11.6077537104811,12.4072036895611,8.97692307692308,322.843151523102,1575,487853,1,0,0,0,9 +"2290",2009,53055,"WA","53","055",15714,0.970026727758686,492,0.225658648339061,6.19847871649231,7.35115822643069,8.48425669116997,6.27692307692308,349.872773536896,33,9432,1,0,0,0,9 +"2291",2009,53057,"WA","53","057",116557,0.933611880882315,6627,0.136165138086945,8.79890749208823,9.55222649844148,10.4253421331499,9.39230769230769,374.248162174204,252,67335,1,0,0,0,9 +"2292",2009,53059,"WA","53","059",10955,0.961022364217252,425,0.162482884527613,6.05208916892442,7.24779258176785,8.10982627601848,12.1307692307692,490.925319845284,33,6722,1,0,0,0,9 +"2293",2009,53061,"WA","53","061",706302,0.845193699012604,44436,0.114897027050752,10.7018052307016,11.5645117164417,12.2945824826009,8.29230769230769,267.883360061437,1186,442730,1,0,0,0,9 +"2294",2009,53063,"WA","53","063",468235,0.925569425608936,37808,0.122378720087136,10.5402759994267,10.9749855487127,11.8624901911138,8.56153846153846,339.291829810371,961,283237,1,0,0,0,9 +"2295",2009,53065,"WA","53","065",43548,0.919973362726187,1721,0.162188849086066,7.45066079621154,8.52058742448425,9.42987742769628,12.1307692307692,426.863972680706,105,24598,1,0,0,0,9 +"2296",2009,53067,"WA","53","067",249936,0.873999743934447,16385,0.133534184751296,9.70412156113292,10.4079529931494,11.2798073325088,7.32307692307692,276.622472158762,425,153639,1,0,0,0,9 +"2297",2009,53071,"WA","53","071",58103,0.944202536874172,5166,0.118565306438566,8.54985397365579,8.81685324062743,9.67777821239919,6.32307692307692,337.17834960071,114,33810,1,0,0,0,9 +"2298",2009,53073,"WA","53","073",199865,0.904925824931829,20658,0.127946363795562,9.93585793256658,10.0899671194787,11.031270218504,7.86923076923077,252.093347491631,311,123367,1,0,0,0,9 +"2299",2009,53075,"WA","53","075",44705,0.885426686053014,11557,0.0795660440666592,9.35504659297544,8.21446516075919,9.53712295804988,5.25384615384615,155.887345411716,45,28867,1,0,0,0,9 +"2300",2009,53077,"WA","53","077",239604,0.902138528572144,16238,0.103145189562779,9.69510945342239,10.2925522392765,11.0899428167644,8.4,382.848392036753,505,131906,1,0,0,0,9 +"2301",2009,55001,"WI","55","001",20930,0.950167224080268,863,0.16268514094601,6.76041469108343,7.80180040190897,8.57734711423598,11.0153846153846,484.04298958077,59,12189,0,0,0,0,9 +"2302",2009,55003,"WI","55","003",16128,0.86625744047619,1110,0.126054067460317,7.01211529430638,7.49443021503157,8.44397712908498,10.4153846153846,354.457572502685,33,9310,0,0,0,0,9 +"2303",2009,55005,"WI","55","005",45876,0.973232191123899,2420,0.134471183189467,7.79152281915073,8.61013693705898,9.46691869937663,9.4,338.094514511472,89,26324,0,0,0,0,9 +"2304",2009,55007,"WI","55","007",14981,0.882451104732661,479,0.185167879313797,6.17170059741091,7.42416528104203,8.36170828857584,9.56923076923077,340.870355641404,30,8801,0,0,0,0,9 +"2305",2009,55009,"WI","55","009",246476,0.91092439020432,17459,0.110185170158555,9.76761055398477,10.4192708666213,11.2182456318701,8.03846153846154,238.588307832532,356,149211,0,0,0,0,9 +"2306",2009,55011,"WI","55","011",13618,0.98927889557938,647,0.137979145248935,6.4723462945009,7.43720636687129,8.23031079913502,7.21538461538462,243.371333418727,19,7807,0,0,0,0,9 +"2307",2009,55013,"WI","55","013",15609,0.933948363123839,590,0.165225190595169,6.38012253689976,7.44307837434852,8.3513747067213,11.2769230769231,496.994914470643,43,8652,0,0,0,0,9 +"2308",2009,55015,"WI","55","015",48457,0.966547660812679,2070,0.110138886022659,7.63530388625941,8.91126025457203,9.56458235867321,7.96153846153846,243.596881959911,70,28736,0,0,0,0,9 +"2309",2009,55017,"WI","55","017",61997,0.963982128167492,3334,0.126844847331322,8.11192806331074,9.01505514879037,9.7586929676329,8.82307692307692,309.356001506429,115,37174,0,0,0,0,9 +"2310",2009,55019,"WI","55","019",34589,0.985631270056955,1798,0.109167654456619,7.49443021503157,8.28601746840476,9.07038841154874,9.82307692307692,302.596830985915,55,18176,0,0,0,0,9 +"2311",2009,55021,"WI","55","021",56469,0.973259664594733,2681,0.128884874887106,7.89394513823596,8.96277604612029,9.68874610448606,8.67692307692308,298.975785921497,101,33782,0,0,0,0,9 +"2312",2009,55023,"WI","55","023",16692,0.973699976036425,800,0.148454349388929,6.68461172766793,7.55433482372575,8.41582469702795,10.2615384615385,354.535974973931,34,9590,0,0,0,0,9 +"2313",2009,55025,"WI","55","025",484979,0.885030073467099,48351,0.112252283088546,10.7862421831908,11.0851073801878,11.9647269354864,6.03846153846154,192.001528370375,603,314060,0,0,0,0,9 +"2314",2009,55027,"WI","55","027",88677,0.959380673680887,4954,0.115881231886509,8.5079506100493,9.42818993482928,10.0892614763803,10.0307692307692,295.253658174255,159,53852,0,0,0,0,9 +"2315",2009,55029,"WI","55","029",27919,0.981303055267022,1060,0.173430280454171,6.96602418710611,7.98344006300654,8.97714648480847,9.33076923076923,281.461095821866,45,15988,0,0,0,0,9 +"2316",2009,55031,"WI","55","031",43998,0.950725032956043,3206,0.131324151097777,8.0727793331695,8.59025776227324,9.48782058194337,8.56923076923077,413.777678371729,111,26826,0,0,0,0,9 +"2317",2009,55033,"WI","55","033",43570,0.960500344273583,5965,0.110810190498049,8.69366433453202,8.50774873258824,9.45938556081305,7.54615384615385,206.402221638458,55,26647,0,0,0,0,9 +"2318",2009,55035,"WI","55","035",98274,0.946628813317866,12512,0.113834788448623,9.43444346278509,9.30401284783882,10.3198266571962,7.10769230769231,220.224198168662,133,60393,0,0,0,0,9 +"2319",2009,55039,"WI","55","039",101370,0.966094505277696,6407,0.123951859524514,8.76514642163902,9.4893348160304,10.3130774752212,9.39230769230769,296.922949324044,179,60285,0,0,0,0,9 +"2320",2009,55041,"WI","55","041",9396,0.840570455512984,539,0.133461047254151,6.289715570909,6.95939851213398,7.8407064517494,10.6923076923077,370.08180755746,19,5134,0,0,0,0,9 +"2321",2009,55043,"WI","55","043",50916,0.978749312593291,5848,0.113481027574829,8.67385500142962,8.58410389669886,9.51613246360028,7.84615384615385,300.156900197831,88,29318,0,0,0,0,9 +"2322",2009,55045,"WI","55","045",36672,0.985083987783595,1574,0.128026832460733,7.36137542897735,8.53089883847235,9.26842058305271,9.27692307692308,274.968541734632,59,21457,0,0,0,0,9 +"2323",2009,55047,"WI","55","047",19056,0.98546389588581,817,0.139221242653233,6.70563909486,7.68524360797583,8.5569906612903,10.0384615384615,357.647058823529,38,10625,0,0,0,0,9 +"2324",2009,55049,"WI","55","049",23595,0.986904005085823,1041,0.133630006357279,6.94793706861497,8.07775756373692,8.84520113533958,8.05384615384615,291.690381331816,41,14056,0,0,0,0,9 +"2325",2009,55053,"WI","55","053",20372,0.907569212644807,1096,0.129049676025918,6.99942246750796,7.89133075766189,8.58410389669886,9.3,291.47235176549,35,12008,0,0,0,0,9 +"2326",2009,55055,"WI","55","055",83480,0.976892668902731,5442,0.120076665069478,8.60190191934319,9.33131829852909,10.1069588680528,9.59230769230769,289.274588340009,143,49434,0,0,0,0,9 +"2327",2009,55057,"WI","55","057",26728,0.95484136486082,1295,0.13364262196947,7.16626597413364,8.15075647027555,8.86756833320644,10.4384615384615,278.269668606122,44,15812,0,0,0,0,9 +"2328",2009,55059,"WI","55","059",165502,0.898623581588138,11037,0.104457952169762,9.30900854377288,10.0779869290239,10.8110603937906,10.9,298.332372601964,295,98883,0,0,0,0,9 +"2329",2009,55061,"WI","55","061",20555,0.987399659450255,970,0.132133300900024,6.87729607149743,7.88570539124302,8.64699262895108,8.18461538461538,270.1561840439,32,11845,0,0,0,0,9 +"2330",2009,55063,"WI","55","063",114021,0.933564869629279,12774,0.114329816437323,9.45516713412153,9.49190376341979,10.4616451349493,6.95384615384615,263.924543540339,183,69338,0,0,0,0,9 +"2331",2009,55065,"WI","55","065",16851,0.987300456946175,919,0.119458785828734,6.82328612235569,7.61085279039525,8.42463920980563,7.55384615384615,307.0407623081,29,9445,0,0,0,0,9 +"2332",2009,55067,"WI","55","067",20086,0.978293338643832,896,0.140246938165887,6.79794041297493,7.75705114203201,8.62299361030245,10.5846153846154,388.007054673721,44,11340,0,0,0,0,9 +"2333",2009,55069,"WI","55","069",28833,0.983768598480907,1204,0.132729858148649,7.09340462586877,8.21392359562274,9.00035980718825,11.7076923076923,259.86583670756,43,16547,0,0,0,0,9 +"2334",2009,55071,"WI","55","071",81600,0.957904411764706,4135,0.131801470588235,8.32724260745779,9.23853902633486,10.052984563682,10.3769230769231,279.799722304035,133,47534,0,0,0,0,9 +"2335",2009,55073,"WI","55","073",133793,0.930048657254116,7231,0.12047715500811,8.88613261817495,9.79450938996638,10.5590367026808,9.15384615384615,259.707192870783,204,78550,0,0,0,0,9 +"2336",2009,55075,"WI","55","075",41792,0.982891462480858,2211,0.142730666156202,7.70120018085745,8.45340105832846,9.37763288975038,12.0538461538462,349.60669247097,84,24027,0,0,0,0,9 +"2337",2009,55077,"WI","55","077",15405,0.982732878935411,660,0.153521583901331,6.49223983502047,7.47816969415979,8.35983738064003,10.7153846153846,272.51050300897,24,8807,0,0,0,0,9 +"2338",2009,55079,"WI","55","079",942668,0.671269206125592,76910,0.103377859437257,11.2503911860511,11.6937208577681,12.5811885057436,9.86153846153846,379.651390175926,2155,567626,0,0,0,0,9 +"2339",2009,55081,"WI","55","081",44437,0.964579066993721,2293,0.126178634921349,7.7376162828579,8.62909228391365,9.42230163388782,7.97692307692308,348.35022897178,89,25549,0,0,0,0,9 +"2340",2009,55083,"WI","55","083",37655,0.979524631523038,1604,0.135413623688753,7.38025578842646,8.54597499284169,9.29173601018018,11.7692307692308,482.96216796351,108,22362,0,0,0,0,9 +"2341",2009,55085,"WI","55","085",36175,0.979184519695923,1604,0.156102280580511,7.38025578842646,8.34283980427146,9.24551444698384,10.1769230769231,324.41200324412,68,20961,0,0,0,0,9 +"2342",2009,55087,"WI","55","087",176175,0.937283950617284,10852,0.108676032354193,9.29210467377882,10.1126944381115,10.8704333751892,8.68461538461538,222.897288553237,237,106327,0,0,0,0,9 +"2343",2009,55089,"WI","55","089",86409,0.96228402134037,4272,0.137809718895022,8.35983738064003,9.33255800470043,10.1536235089139,7.8,245.025391744225,124,50607,0,0,0,0,9 +"2344",2009,55093,"WI","55","093",40613,0.978849136975845,4712,0.112033092852042,8.45786772533142,8.54869185847561,9.43116122792075,7.94615384615385,230.616302186879,58,25150,0,0,0,0,9 +"2345",2009,55095,"WI","55","095",44376,0.979515954570038,1967,0.134126554894538,7.58426481838906,8.66440557109662,9.44683440765853,10.7461538461538,314.221429125611,81,25778,0,0,0,0,9 +"2346",2009,55097,"WI","55","097",69876,0.958741198694831,8283,0.116377583147289,9.02196050059826,9.0146903849709,9.96335894957352,7.46153846153846,222.175935568979,96,43209,0,0,0,0,9 +"2347",2009,55099,"WI","55","099",14297,0.982793593061481,471,0.161782192068266,6.15485809401642,7.4265490723973,8.28349412616251,11.3538461538462,435.782592906428,36,8261,0,0,0,0,9 +"2348",2009,55101,"WI","55","101",195130,0.858355967816328,11142,0.11892071952032,9.31847703058076,10.1772101432185,10.9678189072274,10.6769230769231,297.106441612125,345,116120,0,0,0,0,9 +"2349",2009,55103,"WI","55","103",18112,0.98514796819788,865,0.137643551236749,6.76272950693188,7.63530388625941,8.50187648730434,9.21538461538461,415.430267062314,42,10110,0,0,0,0,9 +"2350",2009,55105,"WI","55","105",160411,0.92382068561383,9458,0.114593138874516,9.15461622320382,9.99136105778637,10.762975101586,13.1,321.266342563535,302,94003,0,0,0,0,9 +"2351",2009,55107,"WI","55","107",14841,0.985984771915639,579,0.143117040630685,6.361302477573,7.44190672805162,8.28045768658256,13.4307692307692,368.278909894427,30,8146,0,0,0,0,9 +"2352",2009,55109,"WI","55","109",84055,0.972291951698293,3998,0.108714532151567,8.29354951506035,9.45022303929467,10.136383395293,8.39230769230769,217.506319440362,111,51033,0,0,0,0,9 +"2353",2009,55111,"WI","55","111",61562,0.970176407524122,3363,0.12611676033917,8.12058871174027,9.01274272762971,9.79462089754901,8.66153846153846,319.418438153982,116,36316,0,0,0,0,9 +"2354",2009,55113,"WI","55","113",16559,0.808261368440123,727,0.161845522072589,6.58892647753352,7.51914995766982,8.42178300661158,10.4846153846154,531.914893617021,50,9400,0,0,0,0,9 +"2355",2009,55115,"WI","55","115",41889,0.906490964214949,2023,0.12819594642985,7.61233683716775,8.59840444684106,9.36005264520451,9.7,321.584225447468,76,23633,0,0,0,0,9 +"2356",2009,55117,"WI","55","117",115562,0.92931932642218,6306,0.123007563039754,8.74925684010501,9.65361494147989,10.4082850435638,9.58461538461538,267.61037099864,183,68383,0,0,0,0,9 +"2357",2009,55119,"WI","55","119",20697,0.990143499057834,1029,0.118857805479055,6.93634273583405,7.85709386490249,8.63781663373998,12,229.143681575151,27,11783,0,0,0,0,9 +"2358",2009,55121,"WI","55","121",28627,0.98669088622629,1346,0.1270828239075,7.20489251020467,8.24695803256818,8.97916464896471,7.90769230769231,326.540484973091,54,16537,0,0,0,0,9 +"2359",2009,55123,"WI","55","123",29659,0.987963181496342,1293,0.127920698607505,7.16472037877186,8.11969625295725,8.9839415279413,8.14615384615385,278.896808180973,45,16135,0,0,0,0,9 +"2360",2009,55125,"WI","55","125",21524,0.880551942018212,729,0.168044973053336,6.59167373200866,7.74630066223144,8.65416864644332,10.4384615384615,467.448580656128,55,11766,0,0,0,0,9 +"2361",2009,55127,"WI","55","127",102077,0.972363999725697,8813,0.120252358513671,9.08398318309966,9.47201208899573,10.3123801135446,9.45384615384615,332.58515326769,203,61037,0,0,0,0,9 +"2362",2009,55129,"WI","55","129",15947,0.977801467360632,591,0.163917978303129,6.3818160174061,7.48268182815465,8.40335237499248,10.2076923076923,486.99501936912,44,9035,0,0,0,0,9 +"2363",2009,55131,"WI","55","131",131579,0.972693210922716,5938,0.12423715030514,8.6891276553237,9.85781003903948,10.5747724862389,9.06153846153846,234.899754942418,185,78757,0,0,0,0,9 +"2364",2009,55133,"WI","55","133",388957,0.95235720143872,18347,0.132513362659626,9.81722135237872,10.8809674527227,11.6661271231903,7.88461538461539,215.00166550586,497,231161,0,0,0,0,9 +"2365",2009,55135,"WI","55","135",52392,0.985284012826386,2425,0.129084593067644,7.79358680337158,8.79512791241314,9.5880230990719,9.99230769230769,384.435381426757,115,29914,0,0,0,0,9 +"2366",2009,55137,"WI","55","137",24554,0.968274008308219,1013,0.150647552333632,6.92067150424868,8.00302866638473,8.78752562553291,10.3538461538462,419.815281276238,60,14292,0,0,0,0,9 +"2367",2009,55139,"WI","55","139",166429,0.946758077017827,14092,0.114751635832697,9.55336253946113,9.9910862570152,10.8111814371848,8.03846153846154,275.275030992845,282,102443,0,0,0,0,9 +"2368",2009,55141,"WI","55","141",74627,0.964557063797285,3912,0.128117169389095,8.27180403115471,9.13227071655426,9.98123532115805,9.16923076923077,305.527265993889,132,43204,0,0,0,0,9 +"2369",2009,54001,"WV","54","001",16479,0.97821469749378,1021,0.136658777838461,6.92853781816467,7.65207074611648,8.48879371689454,9.36923076923077,593.688157483595,57,9601,1,0,0,0,9 +"2370",2009,54003,"WV","54","003",102830,0.90588349703394,5464,0.12155985607313,8.60593640125063,9.63867529417509,10.3562178531114,9.13076923076923,431.350077993188,271,62826,1,0,0,0,9 +"2371",2009,54005,"WV","54","005",24766,0.99111685375111,1177,0.148308164418961,7.07072410726028,8.13651825211529,8.92452322613391,8.30769230769231,627.503337783712,94,14980,1,0,0,0,9 +"2372",2009,54007,"WV","54","007",14512,0.988699007717751,777,0.153114663726571,6.65544035036765,7.52940645783701,8.34283980427146,8.88461538461539,417.681865645667,36,8619,1,0,0,0,9 +"2373",2009,54009,"WV","54","009",24153,0.980333705957852,1440,0.152444830869871,7.27239839257005,7.98412195870293,8.86742743852498,11.8153846153846,523.412080916679,74,14138,1,0,0,0,9 +"2374",2009,54011,"WV","54","011",96040,0.930987088713036,8703,0.127405247813411,9.07142307278951,9.36451962282386,10.2906868518374,7.21538461538462,495.675657197552,290,58506,1,0,0,0,9 +"2375",2009,54013,"WV","54","013",7560,0.991798941798942,388,0.159391534391534,5.96100533962327,6.80572255341699,7.68982866873648,13.6923076923077,575.985821887461,26,4514,1,0,0,0,9 +"2376",2009,54015,"WV","54","015",9505,0.995265649658075,447,0.140873224618622,6.10255859461357,7.14124512235049,7.92443418488756,11.9615384615385,631.883011373894,35,5539,1,0,0,0,9 +"2377",2009,54017,"WV","54","017",8124,0.979935992122107,436,0.143525356967011,6.07764224334903,6.97634807044775,7.71467747380093,8.34615384615385,388.309830369916,19,4893,1,0,0,0,9 +"2378",2009,54019,"WV","54","019",46034,0.943498283877134,2433,0.148889950905852,7.79688034278352,8.67641669696422,9.5034576469179,9.07692307692308,727.233257353739,201,27639,1,0,0,0,9 +"2379",2009,54021,"WV","54","021",8529,0.860358775940907,845,0.115488333919569,6.73933662735717,7.18083119904456,7.57455848420248,7.10769230769231,419.433764418036,24,5722,1,0,0,0,9 +"2380",2009,54023,"WV","54","023",11963,0.987544930201455,552,0.150129566162334,6.3135480462771,7.38523092306657,8.16365617616843,10.7153846153846,458.912949949806,32,6973,1,0,0,0,9 +"2381",2009,54025,"WV","54","025",35351,0.958756470821193,1888,0.152810387259201,7.54327334670545,8.34093322600088,9.25349564229011,10.0461538461538,474.254742547425,98,20664,1,0,0,0,9 +"2382",2009,54027,"WV","54","027",23820,0.982451721242653,1088,0.146431570109152,6.99209642741589,8.09437844497296,8.84159284680318,8.79230769230769,482.680295286769,68,14088,1,0,0,0,9 +"2383",2009,54029,"WV","54","029",30748,0.967542604397034,1263,0.150871601404969,7.14124512235049,8.28702502516506,9.12685006147716,12.0615384615385,430.629934301331,78,18113,1,0,0,0,9 +"2384",2009,54031,"WV","54","031",13885,0.959884767734966,687,0.14209578682031,6.53233429222235,7.56786260546388,8.30943074214033,9.58461538461538,446.805941311436,37,8281,1,0,0,0,9 +"2385",2009,54033,"WV","54","033",68696,0.97232735530453,3491,0.136499941772447,8.15794350710504,9.11007795003779,9.93406525300027,7,500.945411683815,204,40723,1,0,0,0,9 +"2386",2009,54035,"WV","54","035",29155,0.990018864688733,1467,0.129754759046476,7.29097477814298,8.23323750070527,9.04310445260027,12.1769230769231,508.099707095463,85,16729,1,0,0,0,9 +"2387",2009,54037,"WV","54","037",53054,0.906717683869265,3345,0.127021525238436,8.11522197256233,8.97815607600982,9.70290018693528,7.10769230769231,378.892893447925,123,32463,1,0,0,0,9 +"2388",2009,54039,"WV","54","039",193150,0.906166192078695,10504,0.141951850893088,9.25951141598263,10.0843079832038,10.9962326629262,6.72307692307692,530.055067309262,617,116403,1,0,0,0,9 +"2389",2009,54041,"WV","54","041",16422,0.987577639751553,808,0.146084520764828,6.6945620585211,7.6889133368648,8.49494758246892,7.86153846153846,597.137856481005,58,9713,1,0,0,0,9 +"2390",2009,54043,"WV","54","043",21794,0.995870423052216,1056,0.139533816646784,6.96224346426621,7.98786409608569,8.78001888786915,10.3615384615385,584.525457621904,76,13002,1,0,0,0,9 +"2391",2009,54045,"WV","54","045",36645,0.971865193068632,1830,0.156474280256515,7.51207124583547,8.49780647761605,9.33308883723524,8.65384615384615,797.685834502104,182,22816,1,0,0,0,9 +"2392",2009,54047,"WV","54","047",22276,0.896121386245286,1193,0.156221942898186,7.08422642209792,7.91571319938212,8.81566682494622,12.3538461538462,977.438083339458,133,13607,1,0,0,0,9 +"2393",2009,54049,"WV","54","049",56426,0.955251125367738,4063,0.136922695211427,8.30967689598773,8.87416809036397,9.73287715167018,6.36923076923077,453.60213459828,153,33730,1,0,0,0,9 +"2394",2009,54051,"WV","54","051",33116,0.987860852759995,1646,0.156329266819664,7.40610338123702,8.34877453979127,9.19288897836243,9.40769230769231,458.085203847916,90,19647,1,0,0,0,9 +"2395",2009,54053,"WV","54","053",27309,0.986195027280384,1316,0.137830019407521,7.18235211188526,8.13446757027756,9.03562977818356,12.5846153846154,649.792685190915,105,16159,1,0,0,0,9 +"2396",2009,54055,"WV","54","055",62177,0.926998729433713,3803,0.147836016533445,8.24354550792826,8.92970011431345,9.84363138538276,7.04615384615385,663.941397569206,242,36449,1,0,0,0,9 +"2397",2009,54057,"WV","54","057",28080,0.96264245014245,1594,0.140990028490028,7.37400185935016,8.22335889947926,9.01990599507168,7.86153846153846,490.677134445535,80,16304,1,0,0,0,9 +"2398",2009,54059,"WV","54","059",26943,0.976580187803882,1429,0.148350220836581,7.26473017792987,8.21202580462344,9.04864463297588,9.53846153846154,812.231247013856,136,16744,1,0,0,0,9 +"2399",2009,54061,"WV","54","061",94165,0.9237721021611,18158,0.101215950724792,9.8068665139317,9.22690246027516,10.2896678992324,4.74615384615385,218.253013014941,136,62313,1,0,0,0,9 +"2400",2009,54063,"WV","54","063",13543,0.987152034261242,647,0.152181939009082,6.4723462945009,7.44366368311559,8.27512163021651,7.79230769230769,576.553491351698,45,7805,1,0,0,0,9 +"2401",2009,54065,"WV","54","065",17580,0.985779294653015,801,0.153640500568828,6.68586094706836,7.79276172081653,8.55525939222269,9.46153846153846,498.848810437452,52,10424,1,0,0,0,9 +"2402",2009,54067,"WV","54","067",26253,0.992648459223708,1261,0.152934902677789,7.13966033596492,8.13593277200489,8.97246382105991,9.27692307692308,662.422020708727,103,15549,1,0,0,0,9 +"2403",2009,54069,"WV","54","069",44355,0.947401645812197,3181,0.143005298162552,8.06495089174914,8.50268850521336,9.4869867748077,8.13846153846154,475.031861893176,123,25893,1,0,0,0,9 +"2404",2009,54071,"WV","54","071",7701,0.971302428256071,388,0.155174652642514,5.96100533962327,6.78784498230958,7.67136092319064,8.13076923076923,250.912408759124,11,4384,1,0,0,0,9 +"2405",2009,54073,"WV","54","073",7672,0.982924921793535,380,0.135818561001043,5.94017125272043,7.02019070831193,7.63675211243578,10.9230769230769,407.812835372398,19,4659,1,0,0,0,9 +"2406",2009,54075,"WV","54","075",8746,0.988451863709124,410,0.163617653784587,6.01615715969835,6.93925394604151,7.83241092718792,12.7846153846154,320.27128862095,17,5308,1,0,0,0,9 +"2407",2009,54077,"WV","54","077",33333,0.984279842798428,1763,0.142441424414244,7.47477218239787,8.44848599340645,9.19023970026918,7.57692307692308,412.549170104576,86,20846,1,0,0,0,9 +"2408",2009,54079,"WV","54","079",55178,0.977762876508753,2426,0.136612417992678,7.793999089504,8.97563018429051,9.73198723437376,6.52307692307692,431.580853503954,143,33134,1,0,0,0,9 +"2409",2009,54081,"WV","54","081",78782,0.900218323982636,4446,0.146835571577264,8.39976009452414,9.23776096755218,10.053242872621,7.73846153846154,604.569713142095,290,47968,1,0,0,0,9 +"2410",2009,54083,"WV","54","083",29381,0.980599707293829,1665,0.142438991184779,7.41758040241454,8.26126815057765,9.01954299670119,9.53076923076923,428.893905191874,76,17720,1,0,0,0,9 +"2411",2009,54085,"WV","54","085",10478,0.994273716358084,455,0.147070051536553,6.12029741895095,7.2211050981825,8.03398273468322,10,532.859680284192,33,6193,1,0,0,0,9 +"2412",2009,54087,"WV","54","087",14966,0.992249097955366,659,0.151075771749298,6.49072353450251,7.55328660560042,8.39547743273214,12.8076923076923,453.257790368272,40,8825,1,0,0,0,9 +"2413",2009,54089,"WV","54","089",13882,0.940138308601066,573,0.154732747442732,6.35088571671474,7.49498623395053,8.4675826908629,8.48461538461538,560.524746571258,47,8385,1,0,0,0,9 +"2414",2009,54091,"WV","54","091",16838,0.984499346715762,861,0.139862216415251,6.75809450442773,7.75747876658418,8.50106380948635,7.62307692307692,393.120393120393,40,10175,1,0,0,0,9 +"2415",2009,54093,"WV","54","093",7172,0.992749581706637,291,0.155883993307306,5.67332326717149,6.83410873881384,7.63964228785801,12.1307692307692,435.835351089588,18,4130,1,0,0,0,9 +"2416",2009,54095,"WV","54","095",9249,0.99481024975673,397,0.153205751973186,5.98393628068719,7.11069612297883,7.89170465933011,11.2384615384615,446.84416309812,24,5371,1,0,0,0,9 +"2417",2009,54097,"WV","54","097",24124,0.985947604045764,1793,0.137580832366108,7.49164547360513,8.00034949532468,8.86319134069085,8.97692307692308,437.050613280699,62,14186,1,0,0,0,9 +"2418",2009,54099,"WV","54","099",42637,0.992424420104604,2211,0.137181321387527,7.70120018085745,8.65259782842244,9.45508884704278,8.5,544.740847552672,136,24966,1,0,0,0,9 +"2419",2009,54101,"WV","54","101",9167,0.995527435365987,415,0.155885240536708,6.0282785202307,7.08002649992259,7.900636613018,11.1846153846154,632.205280773522,34,5378,1,0,0,0,9 +"2420",2009,54103,"WV","54","103",16588,0.994031830238727,821,0.144863756932722,6.71052310945243,7.64826303090192,8.46968220874519,12.5230769230769,506.382529802722,48,9479,1,0,0,0,9 +"2421",2009,54107,"WV","54","107",86841,0.976105756497507,4549,0.136306583295909,8.42266270757,9.33802973311707,10.1753069757744,9.16153846153846,480.234260614934,246,51225,1,0,0,0,9 +"2422",2009,54109,"WV","54","109",23899,0.99029248085694,1226,0.161429348508306,7.11151211649616,8.0381891799732,8.89535561699639,10.6769230769231,767.806951395078,112,14587,1,0,0,0,9 +"2423",2009,56001,"WY","56","001",35743,0.942953865092466,7757,0.0954032957502168,8.95635094049087,8.1101268019411,9.32241827538153,4.12307692307692,201.342281879195,48,23840,0,0,0,0,9 +"2424",2009,56003,"WY","56","003",11541,0.979291222597695,529,0.141235594835803,6.2709884318583,7.14124512235049,8.02747653086048,8.59230769230769,338.10980518435,21,6211,0,0,0,0,9 +"2425",2009,56005,"WY","56","005",45650,0.970580503833516,3416,0.101511500547645,8.13622555490846,8.67726913926287,9.50427783859047,5.3,342.09889768133,99,28939,0,0,0,0,9 +"2426",2009,56007,"WY","56","007",15977,0.967328034048945,935,0.137072041059022,6.84054652928869,7.56786260546388,8.39298958795693,7.15384615384615,447.563828705116,44,9831,0,0,0,0,9 +"2427",2009,56009,"WY","56","009",13839,0.980056362453935,696,0.130500758725341,6.54534966033442,7.44600149832412,8.30152165494073,5.66153846153846,328.427198637635,27,8221,0,0,0,0,9 +"2428",2009,56011,"WY","56","011",6965,0.987652548456569,321,0.154199569274946,5.77144112313002,6.62804137617953,7.60688453121963,5.65384615384615,296.00394671929,12,4054,0,0,0,0,9 +"2429",2009,56013,"WY","56","013",39685,0.76280710595943,2460,0.134761244802822,7.80791662892641,8.42639282708974,9.33899740418445,7.63076923076923,476.128074083781,109,22893,0,0,0,0,9 +"2430",2009,56015,"WY","56","015",12967,0.978252487082594,799,0.141821547003933,6.68336094576627,7.26403014289953,8.14148104145742,5.3,365.804091586506,27,7381,0,0,0,0,9 +"2431",2009,56017,"WY","56","017",4819,0.97509856816767,235,0.157916580203362,5.45958551414416,6.08677472691231,7.2211050981825,5.83846153846154,635.039223010833,17,2677,0,0,0,0,9 +"2432",2009,56019,"WY","56","019",8565,0.981319322825452,366,0.156100408639813,5.90263333340137,6.85856503479136,7.77569574991525,7.42307692307692,324.8730964467,16,4925,0,0,0,0,9 +"2433",2009,56021,"WY","56","021",90430,0.93592834236426,6416,0.124306093110693,8.76655014954635,9.3419824810279,10.1992121966311,6.4,371.92429600044,203,54581,0,0,0,0,9 +"2434",2009,56023,"WY","56","023",18082,0.984127861962172,806,0.132839287689415,6.69208374250663,7.68616230349291,8.52892411429194,7.73076923076923,269.697553457908,28,10382,0,0,0,0,9 +"2435",2009,56025,"WY","56","025",75238,0.961668305909248,5269,0.12126850793482,8.56959587020929,9.11975899374495,10.0077574737119,6.50769230769231,363.779803646564,166,45632,0,0,0,0,9 +"2436",2009,56029,"WY","56","029",28008,0.981219651528135,1658,0.155955441302485,7.41336733569524,8.00269416228394,9.01249900352419,6.16923076923077,275.212525227815,45,16351,0,0,0,0,9 +"2437",2009,56031,"WY","56","031",8608,0.983852230483271,354,0.171352230483271,5.86929691313377,6.82871207164168,7.78862606562503,5.99230769230769,348.64643150123,17,4876,0,0,0,0,9 +"2438",2009,56033,"WY","56","033",29017,0.971947479063997,1610,0.151428472964124,7.38398945797851,8.1164170727942,9.05602301159183,6.70769230769231,421.405068406165,73,17323,0,0,0,0,9 +"2439",2009,56035,"WY","56","035",10134,0.977501480165779,540,0.13686599565818,6.29156913955832,7.2291138777933,7.98888225330923,4.37692307692308,258.515815085158,17,6576,0,0,0,0,9 +"2440",2009,56037,"WY","56","037",44133,0.960664355470963,3303,0.111254616726712,8.10258642539079,8.5921151179335,9.45375702812995,6.35384615384615,300.421322586554,82,27295,0,0,0,0,9 +"2441",2009,56039,"WY","56","039",21232,0.972729841748304,1411,0.126318764129616,7.25205395185281,8.12503909736775,8.8447688275297,7.01538461538462,148.128198222462,22,14852,0,0,0,0,9 +"2442",2009,56041,"WY","56","041",21054,0.977533960292581,1137,0.116699914505557,7.03614849375054,7.86787149039632,8.72306850116393,6.68461538461538,379.705929875586,47,12378,0,0,0,0,9 +"2443",2009,56043,"WY","56","043",8423,0.970438086192568,354,0.137243262495548,5.86929691313377,6.85646198459459,7.76853330092603,5.99230769230769,362.396077595395,17,4691,0,0,0,0,9 +"2444",2010,2020,"AK","02","020",293760,0.715247140522876,24525,0.113735702614379,10.1074482844336,10.5753855600569,11.4269317518033,6.81538461538462,308.347365372859,575,186478,0,0,0,0,9 +"2445",2010,2050,"AK","02","050",17081,0.124348691528599,1360,0.0855336338621861,7.2152399787301,7.52294091807237,8.36474106822456,15.1230769230769,383.47759395201,35,9127,0,0,0,0,9 +"2446",2010,2070,"AK","02","070",4850,0.210103092783505,397,0.107216494845361,5.98393628068719,6.15485809401642,7.17165682276851,10.6153846153846,554.733727810651,15,2704,0,0,0,0,9 +"2447",2010,2090,"AK","02","090",98272,0.817109654835558,10229,0.111618772386845,9.23298210245701,9.43220310339067,10.2937374948378,6.9,246.745646362874,156,63223,0,0,0,0,9 +"2448",2010,2110,"AK","02","110",31387,0.754325039028897,1952,0.142256348169624,7.57660976697304,8.37170488466763,9.20713524102723,6.11538461538461,263.890925084298,54,20463,0,0,0,0,9 +"2449",2010,2122,"AK","02","122",55554,0.881016668466717,3109,0.159394463044965,8.04205641005875,8.8305430106166,9.69713966113932,10.3538461538462,457.904651499783,158,34505,0,0,0,0,9 +"2450",2010,2130,"AK","02","130",13603,0.735131956186135,747,0.146805851650371,6.61606518513282,7.4713630881871,8.32482129876878,9.2,409.980086681504,35,8537,0,0,0,0,9 +"2451",2010,2150,"AK","02","150",13653,0.615981835494031,987,0.111404087013843,6.89467003943348,7.48829351515943,8.2728260036504,7.66153846153846,344.418052256532,29,8420,0,0,0,0,9 +"2452",2010,2170,"AK","02","170",89731,0.891475632724476,5120,0.120593774726683,8.54090971803355,9.41230114402249,10.1696522784005,9.78461538461539,351.497117351683,189,53770,0,0,0,0,9 +"2453",2010,2180,"AK","02","180",9543,0.185371476474903,744,0.094519543120612,6.61204103483309,6.96129604591017,7.79193595693806,12.9846153846154,742.150333016175,39,5255,0,0,0,0,9 +"2454",2010,2185,"AK","02","185",9067,0.328002646961509,760,0.138744899084592,6.63331843328038,7.07072410726028,7.63578686139558,8.33076923076923,339.55857385399,22,6479,0,0,0,0,9 +"2455",2010,2188,"AK","02","188",7562,0.130785506479767,717,0.0823856122718857,6.57507584059962,6.72743172485086,7.49886973397693,13.8692307692308,391.293714844705,16,4089,0,0,0,0,9 +"2456",2010,2220,"AK","02","220",8880,0.705743243243243,514,0.138626126126126,6.24222326545517,7.0604763659998,7.91971976092457,6.59230769230769,483.697599426729,27,5582,0,0,0,0,9 +"2457",2010,2261,"AK","02","261",9674,0.803493901178416,555,0.154331197022948,6.31896811374643,7.10002716662926,7.95085485771999,9.94615384615385,368.530684185227,23,6241,0,0,0,0,9 +"2458",2010,2270,"AK","02","270",7469,0.0326683625652698,728,0.0678805730352122,6.59030104819669,6.65027904858742,7.4265490723973,NA,659.159571546278,24,3641,0,0,0,0,9 +"2459",2010,2290,"AK","02","290",5607,0.239700374531835,371,0.141430354913501,5.91620206260743,6.3261494731551,7.30854279753919,17.8153846153846,609.013398294762,20,3284,0,0,0,0,9 +"2460",2010,1001,"AL","01","001",54761,0.801829769361407,3151,0.107886999872172,8.05547514175727,9.01893770644604,9.70947795594698,8.80769230769231,423.529411764706,135,31875,0,0,0,0,9 +"2461",2010,1003,"AL","01","003",183121,0.885474631527788,9564,0.13502547495918,9.16576132857822,10.0681965820132,10.8977388258795,9.9,425.939628512342,449,105414,0,0,0,0,9 +"2462",2010,1005,"AL","01","005",27325,0.511180237877402,1795,0.132186642268984,7.49276030092238,8.18785544369562,8.90476584668281,12.1538461538462,426.691952115681,72,16874,0,0,0,0,9 +"2463",2010,1007,"AL","01","007",22858,0.770758596552629,1492,0.120307988450433,7.30787278076371,8.11820704940578,8.73857519211079,11.2538461538462,540.616443165064,77,14243,0,0,0,0,9 +"2464",2010,1009,"AL","01","009",57372,0.973785121662135,3141,0.127884682423482,8.05229649953865,8.97195627124569,9.72100598294081,9.7,417.793808235648,139,33270,0,0,0,0,9 +"2465",2010,1011,"AL","01","011",10876,0.267377712394263,716,0.130654652445752,6.57368016696065,7.21229446850034,7.95437227253187,11.6307692307692,609.031491384433,41,6732,0,0,0,0,9 +"2466",2010,1013,"AL","01","013",20933,0.548655233363589,1180,0.134954378254431,7.07326971745971,7.77611547709874,8.75479176370003,13.4,555.602323427898,66,11879,0,0,0,0,9 +"2467",2010,1015,"AL","01","015",118420,0.773813545009289,9051,0.128331362945448,9.11063052782717,9.59007733151162,10.4976703849435,11.2153846153846,599.736286172038,423,70531,0,0,0,0,9 +"2468",2010,1017,"AL","01","017",34105,0.597771587743733,1936,0.139774226652983,7.56837926783652,8.39094946484199,9.23659274312025,14.6153846153846,620.744893872647,124,19976,0,0,0,0,9 +"2469",2010,1019,"AL","01","019",25968,0.942275107825015,1288,0.151417128773876,7.1608459066643,8.1199938277251,8.92399074475818,10.4615384615385,542.18460724676,82,15124,0,0,0,0,9 +"2470",2010,1021,"AL","01","021",43645,0.886836980181006,2586,0.121594684385382,7.8578675593318,8.68389336730723,9.45782525467655,10.1461538461538,557.070510323335,143,25670,0,0,0,0,9 +"2471",2010,1023,"AL","01","023",13848,0.562536106296938,683,0.142547660311958,6.52649485957079,7.43720636687129,8.31581113188354,13.0076923076923,609.988562714449,48,7869,0,0,0,0,9 +"2472",2010,1025,"AL","01","025",25767,0.548298210889898,1288,0.126557224356735,7.1608459066643,8.0925452638913,8.94494150776486,19.5,611.767940610393,89,14548,0,0,0,0,9 +"2473",2010,1027,"AL","01","027",13897,0.839821544218177,762,0.131755055047852,6.63594655568665,7.49942329059223,8.31581113188354,14.1846153846154,600.225084406653,48,7997,0,0,0,0,9 +"2474",2010,1029,"AL","01","029",15004,0.956678219141562,782,0.13703012529992,6.66185474054531,7.62851762657506,8.3707791729607,9.83846153846154,670.210307372313,58,8654,0,0,0,0,9 +"2475",2010,1031,"AL","01","031",50204,0.788642339255836,3088,0.120687594613975,8.03527891114467,8.79694389354174,9.59777727756496,8.46923076923077,452.058053771116,133,29421,0,0,0,0,9 +"2476",2010,1033,"AL","01","033",54527,0.822766702734425,3079,0.133951987088965,8.0323601479245,8.83637393092739,9.69621735037821,11.2846153846154,653.677730532462,206,31514,0,0,0,0,9 +"2477",2010,1035,"AL","01","035",13234,0.521459876076772,655,0.148707873658758,6.48463523563525,7.30586003268401,8.25088114470065,16.9153846153846,819.341840161182,61,7445,0,0,0,0,9 +"2478",2010,1037,"AL","01","037",11779,0.669241871126581,585,0.15485185499618,6.37161184723186,7.35946763825562,8.15622332319462,15.1,623.007823819183,43,6902,0,0,0,0,9 +"2479",2010,1039,"AL","01","039",37810,0.859481618619413,1997,0.135334567574716,7.59940133341582,8.41360887515967,9.2975267336551,10.2153846153846,581.504408178578,124,21324,0,0,0,0,9 +"2480",2010,1041,"AL","01","041",13868,0.740914335160081,735,0.135203345832132,6.59987049921284,7.48380668766583,8.3240937614504,10.0461538461538,424.416427412308,34,8011,0,0,0,0,9 +"2481",2010,1043,"AL","01","043",80456,0.975576712737397,4814,0.129163766530775,8.47928361834302,9.24067557177226,10.0592084275329,10.3307692307692,474.318434321853,222,46804,0,0,0,0,9 +"2482",2010,1045,"AL","01","045",50396,0.77432732756568,3477,0.118124454321772,8.15392513200786,8.72469504674049,9.60904937558734,8.73846153846154,453.88830985442,135,29743,0,0,0,0,9 +"2483",2010,1047,"AL","01","047",43855,0.294128377608026,2758,0.127146277505416,7.92226105835325,8.51298434664218,9.51369892381297,16.5461538461538,670.7883783893,166,24747,0,0,0,0,9 +"2484",2010,1049,"AL","01","049",71133,0.942361491853289,3972,0.122193637271028,8.28702502516506,9.17502402684861,9.92778984505909,12.4153846153846,447.159437996335,183,40925,0,0,0,0,9 +"2485",2010,1051,"AL","01","051",79558,0.780612886196234,5254,0.11949772493024,8.56674497024549,9.35979432514452,10.1380852538955,8.97692307692308,453.366552984663,222,48967,0,0,0,0,9 +"2486",2010,1053,"AL","01","053",38352,0.635846891948269,2258,0.123904881101377,7.72223474470961,8.55967780302239,9.24657586455828,11.5769230769231,508.794245361639,116,22799,0,0,0,0,9 +"2487",2010,1055,"AL","01","055",104440,0.827297970126388,6160,0.13615472998851,8.72583205652757,9.54223069909228,10.3507022248388,10.7846153846154,620.162649518106,379,61113,0,0,0,0,9 +"2488",2010,1057,"AL","01","057",17232,0.875232126276695,942,0.142061281337047,6.84800527457636,7.650168700845,8.51177855871474,12.7923076923077,703.794369645043,69,9804,0,0,0,0,9 +"2489",2010,1059,"AL","01","059",31746,0.936590436590437,1949,0.118282618282618,7.57507169950756,8.33567131479285,9.09605122557405,10.5307692307692,601.014556682841,109,18136,0,0,0,0,9 +"2490",2010,1061,"AL","01","061",26778,0.887444917469565,1509,0.138621256255135,7.31920245876785,8.13270648969326,8.96316024283373,10.2153846153846,550.803525142561,85,15432,0,0,0,0,9 +"2491",2010,1063,"AL","01","063",8990,0.179755283648498,516,0.152391546162403,6.24610676548156,6.82001636467413,7.9098566672694,16.9538461538462,491.932310114128,25,5082,0,0,0,0,9 +"2492",2010,1065,"AL","01","065",15745,0.404064782470626,913,0.135090504922198,6.81673588059497,7.47022413589997,8.45871626165726,14.8461538461538,743.453173546383,67,9012,0,0,0,0,9 +"2493",2010,1067,"AL","01","067",17293,0.702018157636038,829,0.152547273463251,6.7202201551353,7.66528471847135,8.54830418644129,10.7769230769231,461.476725521669,46,9968,0,0,0,0,9 +"2494",2010,1069,"AL","01","069",101800,0.720039292730845,6041,0.124803536345776,8.70632484013874,9.490997829491,10.3445771716172,9.04615384615385,438.921027848783,261,59464,0,0,0,0,9 +"2495",2010,1071,"AL","01","071",53207,0.936681263743492,2780,0.139286184148702,7.93020620668468,8.86403999703599,9.6621163829476,11.6538461538462,560.350380007729,174,31052,0,0,0,0,9 +"2496",2010,1073,"AL","01","073",658230,0.553261018185133,46135,0.123605730519727,10.7393271600127,11.3319190430072,12.2527701454138,10.1846153846154,490.995493362793,1960,399189,0,0,0,0,9 +"2497",2010,1075,"AL","01","075",14496,0.880104856512141,744,0.142177152317881,6.61204103483309,7.49997654095212,8.32796785830549,12.9692307692308,603.791812583021,50,8281,0,0,0,0,9 +"2498",2010,1077,"AL","01","077",92738,0.88307921240484,7141,0.131542625460976,8.87360810154911,9.33591519488425,10.2346600560624,9.96923076923077,500.785364501525,271,54115,0,0,0,0,9 +"2499",2010,1079,"AL","01","079",34314,0.811388937459929,1983,0.131258378504401,7.5923661285198,8.45680604140114,9.24831030322781,12.3615384615385,674.256119607173,138,20467,0,0,0,0,9 +"2500",2010,1081,"AL","01","081",140815,0.732627916060079,21216,0.0959698895714235,9.96251089298559,9.75695775984023,10.7102981837915,8.91538461538462,306.066926634624,270,88216,0,0,0,0,9 +"2501",2010,1083,"AL","01","083",83168,0.843329165063486,4747,0.119769622931897,8.46526811855132,9.4093551517118,10.1147609312799,9.53846153846154,395.466887026325,201,50826,0,0,0,0,9 +"2502",2010,1085,"AL","01","085",11294,0.257570391358243,717,0.13343368160085,6.57507584059962,7.17548971362422,8.16650031915505,18.1307692307692,701.005790917403,46,6562,0,0,0,0,9 +"2503",2010,1087,"AL","01","087",21515,0.162444805949338,2496,0.134743202416918,7.82244472948932,7.71423114484909,8.83608319099221,14.5076923076923,577.257630871422,73,12646,0,0,0,0,9 +"2504",2010,1089,"AL","01","089",336114,0.711678180617291,24295,0.113407950873811,10.09802584684,10.697836613605,11.5518095830202,8.20769230769231,401.130413913691,819,204173,0,0,0,0,9 +"2505",2010,1091,"AL","01","091",20955,0.472536387497017,1180,0.13428775948461,7.07326971745971,7.86403565907245,8.74528448245438,13.4384615384615,635.647088736334,75,11799,0,0,0,0,9 +"2506",2010,1093,"AL","01","093",30822,0.952566348711959,1660,0.136915190448381,7.41457288135059,8.3197173868506,9.08681588569068,13.2923076923077,631.44838473248,112,17737,0,0,0,0,9 +"2507",2010,1095,"AL","01","095",93119,0.956056229126172,5647,0.121092365682621,8.63887970967284,9.4054136126953,10.1977231039578,9.53846153846154,532.433445819273,284,53340,0,0,0,0,9 +"2508",2010,1097,"AL","01","097",413328,0.616512793713467,29273,0.121436244338637,10.284420868455,10.845640943936,11.7507920978373,11.1384615384615,501.346626056087,1223,243943,0,0,0,0,9 +"2509",2010,1099,"AL","01","099",23004,0.561554512258738,1204,0.134194053208138,7.09340462586877,7.9561263512135,8.8128434335172,17.8,541.251063171731,70,12933,0,0,0,0,9 +"2510",2010,1101,"AL","01","101",229498,0.415171374042475,18833,0.113539115809288,9.84336592919475,10.2913316518869,11.1950178347115,9.88461538461539,413.772186999032,573,138482,0,0,0,0,9 +"2511",2010,1103,"AL","01","103",119642,0.854340449006202,7014,0.125039701776968,8.85566343070012,9.68103126500205,10.4779919529653,10.6230769230769,491.992782226232,349,70936,0,0,0,0,9 +"2512",2010,1105,"AL","01","105",10564,0.305187429004165,818,0.120787580461946,6.70686233660275,7.00124562206948,8.02649693894541,16.5384615384615,545.198733731973,31,5686,0,0,0,0,9 +"2513",2010,1107,"AL","01","107",19749,0.572282140867892,1161,0.136817054028052,7.05703698169789,7.73805229768932,8.67675776108758,12.9307692307692,559.353635798633,63,11263,0,0,0,0,9 +"2514",2010,1109,"AL","01","109",32972,0.596445468882688,5019,0.109638481135509,8.52098598965493,8.15737044118677,9.23902500583609,9.36923076923077,503.727584122507,100,19852,0,0,0,0,9 +"2515",2010,1111,"AL","01","111",22937,0.788071674586912,1221,0.137376291581288,7.1074254741107,7.94271754057379,8.79664145894091,13.1615384615385,582.343349638947,75,12879,0,0,0,0,9 +"2516",2010,1113,"AL","01","113",53327,0.558235040411049,3732,0.117032647626906,8.22469956196723,8.80207133653528,9.71232704707497,10.7384615384615,624.339640764576,195,31233,0,0,0,0,9 +"2517",2010,1115,"AL","01","115",83587,0.89988873867946,4590,0.125809037290488,8.43163530305459,9.379238908438,10.1334478171773,9.99230769230769,509.321167309054,259,50852,0,0,0,0,9 +"2518",2010,1117,"AL","01","117",196036,0.863769919810647,10706,0.1189016303128,9.27855961095333,10.3020287455715,11.0338891636936,6.99230769230769,286.516245637707,344,120063,0,0,0,0,9 +"2519",2010,1119,"AL","01","119",13730,0.246904588492353,1494,0.125273124544792,7.30921236569276,7.27239839257005,8.38183155348556,13.0769230769231,588.456241392262,47,7987,0,0,0,0,9 +"2520",2010,1121,"AL","01","121",82175,0.668463644660785,4914,0.133313051414664,8.49984355308112,9.32411538623503,10.1189214607803,13.2307692307692,538.968434754312,265,49168,0,0,0,0,9 +"2521",2010,1123,"AL","01","123",41480,0.718370298939248,2272,0.144816779170685,7.72841577984104,8.56426759880217,9.42173517625584,12.9,531.076259231599,128,24102,0,0,0,0,9 +"2522",2010,1125,"AL","01","125",195008,0.68168485395471,27233,0.108026337381031,10.212184752203,10.0350419922764,11.031496818055,9.11538461538461,384.238742551744,463,120498,0,0,0,0,9 +"2523",2010,1127,"AL","01","127",66995,0.92892006866184,3781,0.13947309500709,8.23774380389093,9.06554578707295,9.9000817594013,12.4846153846154,741.92646797266,292,39357,0,0,0,0,9 +"2524",2010,1129,"AL","01","129",17627,0.662279457650196,943,0.132637431213479,6.84906628263346,7.70751219460034,8.54519738782584,13.9615384615385,519.013873640084,52,10019,0,0,0,0,9 +"2525",2010,1131,"AL","01","131",11560,0.270934256055363,615,0.134602076124567,6.42162226780652,7.19218205871325,8.12829017160705,25.8076923076923,762.052877138414,49,6430,0,0,0,0,9 +"2526",2010,1133,"AL","01","133",24412,0.978658037030968,1252,0.143863673603146,7.13249755166004,8.06996814905984,8.86911686592948,15.6692307692308,672.410170203824,96,14277,0,0,0,0,9 +"2527",2010,5001,"AR","05","001",19049,0.740826290093968,1029,0.141267258123786,6.93634273583405,7.72665366484764,8.6383483129727,17.9307692307692,588.288532898905,65,11049,0,0,0,0,9 +"2528",2010,5003,"AR","05","003",21832,0.727922315866618,1197,0.132832539391719,7.08757370555797,7.93701748951545,8.76701762131178,9.57692307692308,556.317020075788,69,12403,0,0,0,0,9 +"2529",2010,5005,"AR","05","005",41511,0.985184649851847,1672,0.157307701573077,7.42177579364465,8.31188955823036,9.33317728193525,9.1,538.45796778536,116,21543,0,0,0,0,9 +"2530",2010,5007,"AR","05","007",222601,0.925750558173593,13149,0.098952834892925,9.48410098908692,10.3498386531166,11.0791997615851,6.37692307692308,292.521821184242,372,127170,0,0,0,0,9 +"2531",2010,5009,"AR","05","009",36893,0.981676740845147,1981,0.13211178272301,7.59135704669855,8.4211227226655,9.26681521890416,7.53076923076923,424.607961399276,88,20725,0,0,0,0,9 +"2532",2010,5011,"AR","05","011",11470,0.697471665213601,709,0.127724498692241,6.56385552653213,7.24422751560335,8.09101504171053,10.0923076923077,479.430869161769,31,6466,0,0,0,0,9 +"2533",2010,5013,"AR","05","013",5361,0.768326804700616,303,0.141951128520798,5.71373280550937,6.49677499018586,7.31920245876785,8.41538461538462,348.432055749129,11,3157,0,0,0,0,9 +"2534",2010,5015,"AR","05","015",27556,0.97147626651183,1397,0.155791842067063,7.24208235925696,8.04686951095958,8.97017781549238,7.1,417.872066859531,65,15555,0,0,0,0,9 +"2535",2010,5017,"AR","05","017",11799,0.443003644376642,692,0.134587676921773,6.53958595561767,7.16549347506085,8.08579470128157,11.9076923076923,722.56510612675,48,6643,0,0,0,0,9 +"2536",2010,5019,"AR","05","019",22928,0.745856594556874,3288,0.110432658757851,8.09803475617607,7.75790620835175,8.83608319099221,8.10769230769231,513.966480446927,69,13425,0,0,0,0,9 +"2537",2010,5021,"AR","05","021",16050,0.988722741433022,806,0.133831775700935,6.69208374250663,7.61480536471107,8.3999849905107,10.6153846153846,678.349349915206,60,8845,0,0,0,0,9 +"2538",2010,5023,"AR","05","023",25989,0.98576320751087,1200,0.143291392512217,7.09007683577609,7.9402277651457,8.86234196351635,8.29230769230769,511.291009799744,72,14082,0,0,0,0,9 +"2539",2010,5025,"AR","05","025",8677,0.870923130114095,438,0.133686758096116,6.08221891037645,6.98749024700099,7.82124208352356,8.1,406.917599186165,20,4915,0,0,0,0,9 +"2540",2010,5027,"AR","05","027",24722,0.612288649785616,2478,0.114796537496966,7.81520706218909,7.91169052070834,8.8816974064693,9.63076923076923,561.070349589987,78,13902,0,0,0,0,9 +"2541",2010,5029,"AR","05","029",21219,0.870022149959942,1156,0.127809981620246,7.05272104923232,7.83557924666997,8.70682132339263,9.30769230769231,516.580569905016,62,12002,0,0,0,0,9 +"2542",2010,5031,"AR","05","031",96751,0.844642432636355,8771,0.104970491261072,9.07920610395138,9.39082691282441,10.2806217708762,7.11538461538461,443.669782918713,252,56799,0,0,0,0,9 +"2543",2010,5033,"AR","05","033",61961,0.939478058778909,3616,0.120511289359436,8.19312372151207,9.00220857828241,9.80156556281074,7.9,503.538758497217,180,35747,0,0,0,0,9 +"2544",2010,5035,"AR","05","035",50955,0.471062702384457,3155,0.110313021293298,8.05674377497531,8.77663009842772,9.65239452831496,10.1,623.672126653417,182,29182,0,0,0,0,9 +"2545",2010,5037,"AR","05","037",17868,0.767629281396911,920,0.129001567047235,6.82437367004309,7.72356247227797,8.56388591940822,7.99230769230769,510.755328553187,52,10181,0,0,0,0,9 +"2546",2010,5039,"AR","05","039",8066,0.569303248202331,443,0.146169104884701,6.09356977004514,6.81563999007433,7.73017479524622,11.4923076923077,659.630606860158,30,4548,0,0,0,0,9 +"2547",2010,5041,"AR","05","041",12953,0.504207519493554,754,0.131629738284567,6.62539236800796,7.26542972325395,8.26384813136891,10.7076923076923,738.512035010941,54,7312,0,0,0,0,9 +"2548",2010,5043,"AR","05","043",18666,0.705400192864031,1661,0.117272045430194,7.4151751096133,7.64683139143048,8.61431990214696,10.3846153846154,414.859513482934,44,10606,0,0,0,0,9 +"2549",2010,5045,"AR","05","045",114035,0.870855439119569,13797,0.0977769982899987,9.53220645620803,9.57754963462981,10.4847809595717,6.93846153846154,327.049414453013,229,70020,0,0,0,0,9 +"2550",2010,5047,"AR","05","047",18137,0.96730440535921,1010,0.128521806252412,6.9177056098353,7.71423114484909,8.52951694110507,7.43076923076923,599.980328513819,61,10167,0,0,0,0,9 +"2551",2010,5049,"AR","05","049",12210,0.982227682227682,511,0.159459459459459,6.2363695902037,7.20934025660291,8.13798045445214,7.53846153846154,647.103085026336,43,6645,0,0,0,0,9 +"2552",2010,5051,"AR","05","051",96080,0.897314737718568,5053,0.143744796003331,8.52773740529191,9.29587566008245,10.222341203676,8.13076923076923,574.067840981338,307,53478,0,0,0,0,9 +"2553",2010,5053,"AR","05","053",17887,0.966847431095209,1037,0.125286520936993,6.94408720822953,7.78197323443438,8.57357352485234,6.80769230769231,474.833808167141,50,10530,0,0,0,0,9 +"2554",2010,5055,"AR","05","055",42202,0.982725937159376,2541,0.119022795128193,7.84031298332016,8.64558640618464,9.42068233145318,9.34615384615385,472.861842105263,115,24320,0,0,0,0,9 +"2555",2010,5057,"AR","05","057",22604,0.684215183153424,1307,0.121659883206512,7.17548971362422,7.87169266432365,8.79285328864069,8.90769230769231,416.470218450416,53,12726,0,0,0,0,9 +"2556",2010,5059,"AR","05","059",33236,0.87636899747262,1945,0.136959922975087,7.57301725605255,8.31139827843664,9.13658618338752,8.25384615384615,504.761409168965,97,19217,0,0,0,0,9 +"2557",2010,5061,"AR","05","061",13798,0.770184084649949,799,0.119727496738658,6.68336094576627,7.4205789054108,8.29479935899257,7.44615384615385,531.639004149378,41,7712,0,0,0,0,9 +"2558",2010,5063,"AR","05","063",36811,0.959115481785336,2322,0.12545163130586,7.75018416225784,8.44095988541665,9.26785427817679,8.47692307692308,464.476989430779,98,21099,0,0,0,0,9 +"2559",2010,5065,"AR","05","065",13732,0.973128459073696,600,0.151616661811826,6.39692965521615,7.33888813383888,8.18451375303372,9.71538461538461,543.046357615894,41,7550,0,0,0,0,9 +"2560",2010,5067,"AR","05","067",18066,0.817779253847005,1113,0.128362670209233,7.01481435127554,7.7873820264847,8.61031916940572,11.4461538461538,682.12824010914,75,10995,0,0,0,0,9 +"2561",2010,5069,"AR","05","069",77332,0.430106553561268,5859,0.127980654838877,8.67573421954479,9.13227071655426,10.0435972605208,10.0846153846154,504.347826086957,232,46000,0,0,0,0,9 +"2562",2010,5071,"AR","05","071",25560,0.958881064162754,1766,0.116549295774648,7.4764723811639,8.04237800517328,8.89164911265006,7.93846153846154,431.773010760058,63,14591,0,0,0,0,9 +"2563",2010,5073,"AR","05","073",7638,0.614689709347997,395,0.134066509557476,5.97888576490112,6.71295620067707,7.68202151082687,9.37692307692308,863.516430798753,36,4169,0,0,0,0,9 +"2564",2010,5075,"AR","05","075",17518,0.983616851238726,1147,0.125014271035506,7.04490511712937,7.64156444126097,8.51218064959269,9.18461538461538,577.141090384417,56,9703,0,0,0,0,9 +"2565",2010,5077,"AR","05","077",10388,0.431940700808625,643,0.135252214093184,6.46614472423762,7.23921497377981,7.82604401351897,8.21538461538461,627.450980392157,40,6375,0,0,0,0,9 +"2566",2010,5079,"AR","05","079",14090,0.691483321504613,1124,0.114975159687722,7.02464903045364,7.65586401761606,8.0494270571107,9.06923076923077,377.236473377883,35,9278,0,0,0,0,9 +"2567",2010,5081,"AR","05","081",13133,0.779791365263078,691,0.139572070357116,6.53813982376767,7.3864708488299,8.25686684897431,7.46153846153846,468.729074594884,35,7467,0,0,0,0,9 +"2568",2010,5083,"AR","05","083",22307,0.953960640157798,1126,0.131662706773658,7.02642680869964,7.90322680873073,8.73472100394481,8.23846153846154,555.510828435714,69,12421,0,0,0,0,9 +"2569",2010,5085,"AR","05","085",68739,0.920219962466722,4020,0.107100772487234,8.29903718161307,9.19105561056432,9.93081084818502,6.48461538461538,409.541065799598,165,40289,0,0,0,0,9 +"2570",2010,5087,"AR","05","087",15686,0.972395766925921,776,0.138913680989417,6.65415252018322,7.58171964012531,8.39638057119949,6.81538461538462,486.026731470231,44,9053,0,0,0,0,9 +"2571",2010,5089,"AR","05","089",16665,0.984818481848185,707,0.179177917791779,6.56103066589657,7.46278915741245,8.46125755908593,9.76923076923077,524.176294394523,49,9348,0,0,0,0,9 +"2572",2010,5091,"AR","05","091",43568,0.734116782959971,2856,0.123393316195373,7.95717732345947,8.63248423575097,9.47830431356186,5.6,442.237566917527,114,25778,0,0,0,0,9 +"2573",2010,5093,"AR","05","093",46350,0.642653721682848,2968,0.115879180151025,7.99564360428727,8.62730241409627,9.51229510371468,11.9384615384615,680.580762250454,180,26448,0,0,0,0,9 +"2574",2010,5095,"AR","05","095",8138,0.576554435979356,420,0.147702138117474,6.04025471127741,6.7900972355139,7.74932246466036,8.88461538461539,661.959399823477,30,4532,0,0,0,0,9 +"2575",2010,5097,"AR","05","097",9515,0.975512348922754,418,0.150709406200736,6.03548143252476,6.94985645500077,7.84424071814181,8.4,505.344995140914,26,5145,0,0,0,0,9 +"2576",2010,5099,"AR","05","099",8994,0.680342450522571,478,0.136980209028241,6.16961073249146,6.95749737087695,7.85205020726589,9.58461538461538,536.03335318642,27,5037,0,0,0,0,9 +"2577",2010,5101,"AR","05","101",8305,0.980012040939193,386,0.162191450933173,5.95583736946483,6.78105762593618,7.74716496652033,6.65384615384615,595.111583421892,28,4705,0,0,0,0,9 +"2578",2010,5103,"AR","05","103",26048,0.583077395577396,1454,0.142774877149877,7.28207365809346,7.97004930497614,8.95905451471569,9.13846153846154,664.875755540631,99,14890,0,0,0,0,9 +"2579",2010,5105,"AR","05","105",10445,0.967640019147918,554,0.133748204882719,6.31716468674728,7.22983877815125,8.00770001288403,8.59230769230769,497.92531120332,30,6025,0,0,0,0,9 +"2580",2010,5107,"AR","05","107",21675,0.357647058823529,1280,0.124890426758939,7.15461535691366,7.7066129139642,8.75258146914688,10.1923076923077,683.526999316473,80,11704,0,0,0,0,9 +"2581",2010,5109,"AR","05","109",11263,0.949924531652313,619,0.123324158749889,6.4281052726846,7.27586460054653,8.05006542291597,8.69230769230769,414.342629482072,26,6275,0,0,0,0,9 +"2582",2010,5111,"AR","05","111",24510,0.918115055079559,1428,0.130558955528356,7.26403014289953,8.04782935745784,8.87150534616578,9,783.810745332763,110,14034,0,0,0,0,9 +"2583",2010,5113,"AR","05","113",20669,0.967777831535149,939,0.142822584546906,6.84481547920826,7.76004068088038,8.64417820317073,7.16923076923077,588.340167587805,66,11218,0,0,0,0,9 +"2584",2010,5115,"AR","05","115",62110,0.944356786346804,6167,0.113427789405893,8.72696777499149,8.91838250466161,9.8082423706194,7.51538461538462,428.571428571429,156,36400,0,0,0,0,9 +"2585",2010,5117,"AR","05","117",8726,0.870960348384139,403,0.144166857666743,5.99893656194668,6.97634807044775,7.81520706218909,8.86153846153846,590.631364562118,29,4910,0,0,0,0,9 +"2586",2010,5119,"AR","05","119",383569,0.610628074740138,26457,0.122757574256522,10.1832760525563,10.8194382265972,11.71314424015,7.02307692307692,447.821380817964,1055,235585,0,0,0,0,9 +"2587",2010,5121,"AR","05","121",17955,0.982121971595656,1015,0.131216931216931,6.92264389147589,7.67415292128168,8.52038808231276,9.87692307692308,641.475393404831,64,9977,0,0,0,0,9 +"2588",2010,5123,"AR","05","123",28131,0.460061853471259,1682,0.123458106715012,7.42773884053289,8.25218543600333,8.89219909203969,10.2769230769231,511.053689348263,89,17415,0,0,0,0,9 +"2589",2010,5125,"AR","05","125",107651,0.933145070644955,5415,0.123826067570204,8.59692815943509,9.60251758575741,10.3708940621845,6.4,352.53956100051,221,62688,0,0,0,0,9 +"2590",2010,5127,"AR","05","127",11251,0.933161496755844,648,0.123633454804017,6.47389069635227,7.18614430452233,8.01730750768858,6.78461538461538,538.511749347259,33,6128,0,0,0,0,9 +"2591",2010,5129,"AR","05","129",8182,0.980567098508922,369,0.162307504277683,5.91079664404053,6.79682371827486,7.7341213033283,8.87692307692308,260.24723487313,12,4611,0,0,0,0,9 +"2592",2010,5131,"AR","05","131",125782,0.856147938496764,8598,0.117520789938147,9.05928489705623,9.69010867127683,10.5255682846622,7.73076923076923,456.936761036989,337,73752,0,0,0,0,9 +"2593",2010,5133,"AR","05","133",17153,0.911094269224042,1047,0.105404302454381,6.95368421087054,7.71199650704767,8.44290058683438,6.72307692307692,460.48404369244,43,9338,0,0,0,0,9 +"2594",2010,5135,"AR","05","135",17244,0.978021340756205,749,0.150487125956855,6.61873898351722,7.50823877467866,8.43944784279138,9.46153846153846,775.451423507256,70,9027,0,0,0,0,9 +"2595",2010,5137,"AR","05","137",12391,0.984343475102897,513,0.158582842385602,6.24027584517077,7.1074254741107,8.13035354743124,7.30769230769231,665.976024863105,45,6757,0,0,0,0,9 +"2596",2010,5139,"AR","05","139",41570,0.655159971133029,2282,0.133870579745008,7.73280753042202,8.53385363230935,9.41792348517234,11,567.828573796991,137,24127,0,0,0,0,9 +"2597",2010,5141,"AR","05","141",17306,0.980238067722177,800,0.145556454408876,6.68461172766793,7.54062152865715,8.45765547870004,10.8461538461538,538.827258320127,51,9465,0,0,0,0,9 +"2598",2010,5143,"AR","05","143",204021,0.901902255160008,22014,0.0950392361570623,9.99943389358334,10.1535845734106,11.0183832112773,6.26153846153846,328.94470326109,406,123425,0,0,0,0,9 +"2599",2010,5145,"AR","05","145",77349,0.941033497524209,6813,0.11100337431641,8.82658783077367,9.16335358075185,10.0251297985182,7.93076923076923,429.386112042939,192,44715,0,0,0,0,9 +"2600",2010,5147,"AR","05","147",7248,0.711782560706402,353,0.153973509933775,5.8664680569333,6.73340189183736,7.6515955738576,10.0384615384615,773.694390715667,32,4136,0,0,0,0,9 +"2601",2010,5149,"AR","05","149",22148,0.957016434892541,1305,0.11797905002709,7.17395831975679,7.92334821193015,8.71275997496021,7.77692307692308,396.761133603239,49,12350,0,0,0,0,9 +"2602",2010,4001,"AZ","04","001",71828,0.249777245642368,4818,0.10998496408086,8.48011418317482,8.99998964246073,9.85697229879466,16.3076923076923,671.863107891767,256,38103,0,0,0,0,9 +"2603",2010,4003,"AZ","04","003",131823,0.900897415473779,8285,0.133724767301609,9.02220192986066,9.59533062689496,10.4968143978139,9.28461538461539,428.153437307062,319,74506,0,0,0,0,9 +"2604",2010,4005,"AZ","04","005",134624,0.676365284050392,16249,0.114726943189922,9.69578664740278,9.6423824949348,10.636095801977,9.80769230769231,304.105423213381,252,82866,0,0,0,0,9 +"2605",2010,4007,"AZ","04","007",53565,0.828712778866797,2613,0.162942219733035,7.86825426552061,8.53758388106397,9.56696531466487,12.4384615384615,533.501807588361,152,28491,0,0,0,0,9 +"2606",2010,4009,"AZ","04","009",37154,0.81528233837541,2984,0.0995585939602735,8.00101996132365,8.41493895737748,9.10731047165664,12.8230769230769,368.650356681189,77,20887,0,0,0,0,9 +"2607",2010,4011,"AZ","04","011",8342,0.938264205226564,495,0.118316950371614,6.20455776256869,6.91373735065968,7.70436116791031,16.3,336.842105263158,16,4750,0,0,0,0,9 +"2608",2010,4012,"AZ","04","012",20499,0.799990243426509,787,0.158251622030343,6.6682282484174,7.41397029019044,8.48611523584538,10.1615384615385,686.686481500461,67,9757,0,0,0,0,9 +"2609",2010,4013,"AZ","04","013",3825183,0.868013634903219,268133,0.10510869676039,12.4992384050491,13.1708792182363,13.9360533375773,9.46153846153846,289.412807008909,6468,2234870,0,0,0,0,9 +"2610",2010,4015,"AZ","04","015",200336,0.940619758805207,9420,0.158124351090169,9.15059036757041,9.90358754753646,10.899236205745,12.8769230769231,657.041183230159,709,107908,0,0,0,0,9 +"2611",2010,4017,"AZ","04","017",107693,0.531380869694409,6906,0.120574224879983,8.84014587794994,9.37610901542907,10.2686860674157,14.5923076923077,574.215642187554,332,57818,0,0,0,0,9 +"2612",2010,4019,"AZ","04","019",981649,0.875856849036672,76317,0.125227041437418,11.2426509971735,11.6573461039644,12.5748461063668,9.29230769230769,368.345404348367,2104,571203,0,0,0,0,9 +"2613",2010,4021,"AZ","04","021",379106,0.845742351743312,21645,0.114150132153013,9.98252975987608,10.8377360737841,11.5132154229284,10.6461538461538,332.293755105072,716,215472,0,0,0,0,9 +"2614",2010,4023,"AZ","04","023",47402,0.974051727775199,2634,0.118644782920552,7.87625888230323,8.65032450401942,9.51583780429796,15.1538461538462,237.934726573343,60,25217,0,0,0,0,9 +"2615",2010,4025,"AZ","04","025",210990,0.955083179297597,10190,0.172429972984502,9.22916212621677,9.92063961135369,10.9854283069163,10.6,449.559119627855,518,115224,0,0,0,0,9 +"2616",2010,4027,"AZ","04","027",197148,0.930133706656928,15270,0.0966989266946659,9.63364539821268,10.0410732154887,10.8568042832467,24.9,264.803378659167,274,103473,0,0,0,0,9 +"2617",2010,6001,"CA","06","001",1512997,0.551021581668701,107546,0.115671081965133,11.5856739420005,12.3349011217591,13.0970742869564,11.1461538461538,232.98427408295,2234,958863,0,0,0,0,9 +"2618",2010,6005,"CA","06","005",37883,0.925665865955706,1654,0.179394451337011,7.41095187558364,8.40020983593042,9.18809476302886,14.3692307692308,487.571285533934,112,22971,0,0,0,0,9 +"2619",2010,6007,"CA","06","007",219951,0.896858845833845,23242,0.131938477206287,10.0537162657828,10.0526400479386,11.0811420485442,14.2230769230769,441.864561236914,577,130583,0,0,0,0,9 +"2620",2010,6009,"CA","06","009",45467,0.944883102030044,1899,0.186222974904876,7.54908271081229,8.422882511945,9.48181684008103,14.8,394.348941383667,103,26119,0,0,0,0,9 +"2621",2010,6011,"CA","06","011",21435,0.931327268486121,1302,0.111546536039188,7.17165682276851,7.89058253465654,8.6652683094816,21.3307692307692,277.660917122423,33,11885,0,0,0,0,9 +"2622",2010,6013,"CA","06","013",1052516,0.711110329914225,60454,0.123397649061867,11.0096380242425,11.908346971209,12.6891621549494,11.2153846153846,262.72671667665,1658,631074,0,0,0,0,9 +"2623",2010,6015,"CA","06","015",28568,0.81853822458695,1796,0.130425651078129,7.49331724886215,8.2419665602318,8.88985958777302,13.5076923076923,508.977012137144,91,17879,0,0,0,0,9 +"2624",2010,6017,"CA","06","017",181161,0.925867046439355,9071,0.15665623395764,9.11283779061494,10.0003419939,10.9043216182855,12.5,312.307678176123,340,108867,0,0,0,0,9 +"2625",2010,6019,"CA","06","019",932011,0.791234223630408,75937,0.0960525144016541,11.2376593281332,11.6472028292887,12.4775224344164,17.1076923076923,322.063333422004,1695,526294,0,0,0,0,9 +"2626",2010,6021,"CA","06","021",28125,0.91744,1788,0.1168,7.48885295573346,8.11282747875137,8.94988428577799,15.8,401.043987523076,63,15709,0,0,0,0,9 +"2627",2010,6023,"CA","06","023",135010,0.876520257758685,12141,0.144389304495963,9.40434343354397,9.62364136585212,10.6373927255682,10.7846153846154,420.864535697072,358,85063,0,0,0,0,9 +"2628",2010,6025,"CA","06","025",174704,0.903963275025185,13345,0.0956990108984339,9.49889706183862,10.0354364436654,10.7653854545797,29.3923076923077,271.55874720898,270,99426,0,0,0,0,9 +"2629",2010,6027,"CA","06","027",18503,0.839053126520024,861,0.158731016591904,6.75809450442773,7.57814547241947,8.56235774337061,9.96153846153846,493.712156497438,53,10735,0,0,0,0,9 +"2630",2010,6029,"CA","06","029",841365,0.846020454856097,65918,0.0927801845810082,11.0961668243173,11.5943026664261,12.3385340909653,16.0307692307692,338.835957305008,1632,481649,0,0,0,0,9 +"2631",2010,6031,"CA","06","031",152342,0.832173661892321,13090,0.0849338987278623,9.47960385890395,9.98414545555358,10.5241178022569,16.5230769230769,288.817128667498,271,93831,0,0,0,0,9 +"2632",2010,6033,"CA","06","033",64736,0.904751606524963,3421,0.165163124073159,8.1376881849776,8.86149186428691,9.84786912877312,15.4615384615385,653.663679493938,248,37940,0,0,0,0,9 +"2633",2010,6035,"CA","06","035",34828,0.838176180084989,2859,0.118582749511887,7.95822719232231,8.61250337122056,8.9061223308843,14.3923076923077,342.395115713048,83,24241,0,0,0,0,9 +"2634",2010,6037,"CA","06","037",9821647,0.732019385343415,755956,0.103994472617474,13.5357384524097,14.170866932973,14.9293316049183,12.5846153846154,244.994659778565,14800,6040948,0,0,0,0,9 +"2635",2010,6039,"CA","06","039",151006,0.875687058792366,11097,0.105598453041601,9.31443008050056,9.85890850913816,10.7331086671959,17.0230769230769,339.989520870932,292,85885,0,0,0,0,9 +"2636",2010,6041,"CA","06","041",252906,0.88303559425241,10246,0.159067005132342,9.23464266449915,10.4994903722096,11.2540640583266,8.06153846153846,221.766982083049,341,153765,0,0,0,0,9 +"2637",2010,6043,"CA","06","043",18302,0.930280843623648,844,0.181564856299858,6.73815249459596,7.50549227473742,8.57073395834427,13.3615384615385,425.099343868404,46,10821,0,0,0,0,9 +"2638",2010,6045,"CA","06","045",87796,0.891407353410178,4859,0.16479110665634,8.4885879344059,9.23581316794921,10.1673506931274,11.8615384615385,472.136369669505,249,52739,0,0,0,0,9 +"2639",2010,6047,"CA","06","047",256709,0.835938747764979,20520,0.0888710563322673,9.9291552992847,10.3724281169286,11.1558075657985,18.3923076923077,292.459928730639,412,140874,0,0,0,0,9 +"2640",2010,6049,"CA","06","049",9698,0.913899773149103,421,0.168900804289544,6.04263283368238,6.96318998587024,7.90728360942635,15.5384615384615,493.962678375412,27,5466,0,0,0,0,9 +"2641",2010,6051,"CA","06","051",14256,0.944374298540965,1130,0.133768237934905,7.02997291170639,7.55118686729615,8.38343320123671,10.4846153846154,168.173218414967,16,9514,0,0,0,0,9 +"2642",2010,6053,"CA","06","053",416358,0.843929983331652,32598,0.104681548090826,10.3920062157796,10.9134325484881,11.6660842244357,13.1307692307692,227.781167378483,560,245850,0,0,0,0,9 +"2643",2010,6055,"CA","06","055",136752,0.876477126477127,8345,0.131113256113256,9.02941783609594,9.78830114272701,10.594357141352,10.5769230769231,242.965166728648,196,80670,0,0,0,0,9 +"2644",2010,6057,"CA","06","057",98795,0.959299559694316,4483,0.182964724935472,8.40804774415544,9.2535914139705,10.2856840337049,11.9923076923077,344.260610420306,201,58386,0,0,0,0,9 +"2645",2010,6059,"CA","06","059",3016376,0.76927876365546,215768,0.107730269701125,12.2819590353613,12.9902207343063,13.7351157883242,10,202.978805388681,3719,1832211,0,0,0,0,9 +"2646",2010,6061,"CA","06","061",350007,0.893942121157577,18230,0.127223169822318,9.81082386767271,10.7482608001973,11.5434061722238,11.8615384615385,259.532344591336,522,201131,0,0,0,0,9 +"2647",2010,6063,"CA","06","063",19915,0.936279186542807,942,0.196685915139342,6.84800527457636,7.539027055824,8.67248607582227,18.7692307692308,633.1821682211,74,11687,0,0,0,0,9 +"2648",2010,6065,"CA","06","065",2201562,0.827703694013614,157419,0.0982815837119282,11.9666663192433,12.5906273129434,13.3429661035544,14.1923076923077,278.626080727177,3446,1236783,0,0,0,0,9 +"2649",2010,6067,"CA","06","067",1421381,0.682173885819495,102671,0.110555860814236,11.5392849801891,12.1582155459206,12.9867177513626,12.9076923076923,325.633910809503,2786,855562,0,0,0,0,9 +"2650",2010,6069,"CA","06","069",55544,0.90749675932594,3538,0.10825651735561,8.17131687471973,8.93761259130621,9.6940003276694,15.4846153846154,189.159017613495,61,32248,0,0,0,0,9 +"2651",2010,6071,"CA","06","071",2040803,0.793967374606956,161698,0.0976076573780027,11.9934856769049,12.5170439072099,13.3070953601195,13.8615384615385,305.477660947544,3633,1189285,0,0,0,0,9 +"2652",2010,6073,"CA","06","073",3103260,0.792184670314444,271370,0.107220793617035,12.5112384823218,12.9495421492376,13.7626075476263,11.0307692307692,231.350367336324,4448,1922625,0,0,0,0,9 +"2653",2010,6075,"CA","06","075",805519,0.564665762073893,59806,0.120619128785292,10.9988612693537,11.8028674818229,12.5174468302387,9.09230769230769,247.186956377021,1411,570823,0,0,0,0,9 +"2654",2010,6077,"CA","06","077",687115,0.710469135443121,49040,0.100981640627842,10.8003915706101,11.4158417133168,12.1856199069574,16.9153846153846,350.540277564398,1369,390540,0,0,0,0,9 +"2655",2010,6079,"CA","06","079",269800,0.914177168272795,27729,0.138143068939956,10.2302340759329,10.2936698037798,11.2695409403002,10.2307692307692,291.113782002887,482,165571,0,0,0,0,9 +"2656",2010,6081,"CA","06","081",719948,0.665763360687161,40088,0.124802069038319,10.5988323166396,11.5897013037723,12.3240467740383,8.56153846153846,215.472922832083,964,447388,0,0,0,0,9 +"2657",2010,6083,"CA","06","083",424218,0.883437289318228,43545,0.106805934684525,10.6815501651268,10.8245070859834,11.7163396663034,9.93846153846154,240.835320390591,605,251209,0,0,0,0,9 +"2658",2010,6085,"CA","06","085",1786001,0.60614131794999,113095,0.104876201077155,11.6359834524621,12.5371015224853,13.2129369024047,10.6615384615385,188.255725135832,2090,1110192,0,0,0,0,9 +"2659",2010,6087,"CA","06","087",263174,0.902820947358022,24825,0.137502184866286,10.1196064889134,10.4030499840234,11.3153643741168,13.6461538461538,260.958132190662,433,165927,0,0,0,0,9 +"2660",2010,6089,"CA","06","089",177277,0.915279477879251,11132,0.144790356335001,9.31757912264578,9.8771949105812,10.8623587319454,17.1769230769231,516.478590500692,530,102618,0,0,0,0,9 +"2661",2010,6093,"CA","06","093",44941,0.905453817227031,2214,0.175585768006942,7.70255611326858,8.41626727282628,9.46831038044244,17.2461538461538,473.749611680646,122,25752,0,0,0,0,9 +"2662",2010,6095,"CA","06","095",413963,0.63146947915635,29136,0.124960443324645,10.2797298019674,10.8994578492324,11.7447591474789,12.8461538461538,322.969104728062,818,253275,0,0,0,0,9 +"2663",2010,6097,"CA","06","097",484675,0.900345592407283,32242,0.142427399803992,10.3810252294359,11.0101506793939,11.9125401594002,11.0769230769231,296.253758065061,877,296030,0,0,0,0,9 +"2664",2010,6099,"CA","06","099",515137,0.866979075469244,37530,0.102234939443294,10.5328958921291,11.1068051422558,11.9164954451239,17.3076923076923,324.601771108414,960,295747,0,0,0,0,9 +"2665",2010,6101,"CA","06","101",94742,0.778282071309451,6355,0.107312490764392,8.75699718362355,9.38622458680613,10.2028140645826,18.7923076923077,330.984213168709,178,53779,0,0,0,0,9 +"2666",2010,6103,"CA","06","103",63562,0.932176457631918,3689,0.130707026210629,8.21311069759668,8.89562962713648,9.7878522089372,15.7769230769231,396.379174631733,141,35572,0,0,0,0,9 +"2667",2010,6105,"CA","06","105",13755,0.912686295892403,548,0.196583060705198,6.30627528694802,7.23417717974985,8.28626945278307,17.4384615384615,619.98541210795,51,8226,0,0,0,0,9 +"2668",2010,6107,"CA","06","107",442953,0.899542389373139,32713,0.0910773829277598,10.3955278313987,10.9099297262321,11.6980098682531,17.5923076923077,341.746511078801,825,241407,0,0,0,0,9 +"2669",2010,6109,"CA","06","109",55164,0.931205133782902,2968,0.171796824015662,7.99564360428727,8.69131455164485,9.60353044920874,15.6076923076923,419.787388258033,139,33112,0,0,0,0,9 +"2670",2010,6111,"CA","06","111",825144,0.871186120240831,56606,0.114384883123431,10.9438702656401,11.6155271786309,12.4101638480189,11.1076923076923,231.881218029581,1136,489906,0,0,0,0,9 +"2671",2010,6113,"CA","06","113",201061,0.788865070799409,27682,0.10084501718384,10.2285376614566,10.0779869290239,11.0605259696729,12.3846153846154,235.805400185103,293,124255,0,0,0,0,9 +"2672",2010,6115,"CA","06","115",72345,0.826470384960951,5434,0.106075057018453,8.60043078998629,9.0902045707362,9.94318891938768,18.1692307692308,404.325565816546,169,41798,0,0,0,0,9 +"2673",2010,8001,"CO","08","001",443692,0.891055056210164,29915,0.0957488528078036,10.3061153058241,11.0921385755643,11.7926156874925,10.4923076923077,276.207941913994,738,267190,0,0,0,0,9 +"2674",2010,8003,"CO","08","003",15515,0.904479535932968,1638,0.119883983242024,7.40123126441302,7.37713371283395,8.42463920980563,9.46153846153846,383.183709218305,35,9134,0,0,0,0,9 +"2675",2010,8005,"CO","08","005",575124,0.808413489960426,35237,0.117797205472211,10.4698519458928,11.3200200967166,12.1095176913155,8.98461538461538,249.79725166508,884,353887,0,0,0,0,9 +"2676",2010,8007,"CO","08","007",12048,0.950448207171315,447,0.206258300132802,6.10255859461357,7.09589322109753,8.21012440516427,11.1461538461538,245.198201879853,18,7341,0,0,0,0,9 +"2677",2010,8011,"CO","08","011",6500,0.874461538461539,471,0.125384615384615,6.15485809401642,6.94215670569947,7.08002649992259,8.55384615384615,338.5240352065,15,4431,0,0,0,0,9 +"2678",2010,8013,"CO","08","013",295056,0.928627108074399,29932,0.121295618458869,10.3066834212002,10.6155300861984,11.4449570685295,7.43076923076923,184.389092594934,350,189816,0,0,0,0,9 +"2679",2010,8014,"CO","08","014",56212,0.907190635451505,3144,0.108731231765459,8.0532511535491,9.10664513563742,9.75823053987899,7.8,228.687219568679,79,34545,0,0,0,0,9 +"2680",2010,8015,"CO","08","015",17808,0.960467205750225,809,0.17654986522911,6.69579891705849,7.66152708135852,8.5079506100493,8.13846153846154,363.801728058208,40,10995,0,0,0,0,9 +"2681",2010,8019,"CO","08","019",9084,0.973800088066931,287,0.19958168207838,5.65948221575962,7.19668657083435,7.99294454731811,8.42307692307692,529.525032092426,33,6232,0,0,0,0,9 +"2682",2010,8021,"CO","08","021",8312,0.948748796920115,450,0.132218479307026,6.10924758276437,6.79794041297493,7.68845535654994,10.0384615384615,497.399954781822,22,4423,0,0,0,0,9 +"2683",2010,8029,"CO","08","029",30858,0.969505476699721,1380,0.157819690193791,7.22983877815125,8.09315669772264,9.03729565196244,11.1846153846154,278.600034825004,48,17229,0,0,0,0,9 +"2684",2010,8031,"CO","08","031",603012,0.819045060463142,47145,0.103507061219346,10.7609832378998,11.4126409335679,12.1764738924906,9.53846153846154,325.982256020279,1286,394500,0,0,0,0,9 +"2685",2010,8035,"CO","08","035",287011,0.933236008375986,10200,0.107853009118117,9.23014299927236,10.8485406530779,11.3927558336587,7.33076923076923,149.940660549396,259,172735,0,0,0,0,9 +"2686",2010,8037,"CO","08","037",52098,0.964605167184921,3355,0.107892817382625,8.11820704940578,9.10819689830748,9.69424690639091,8.95384615384615,115.51573549714,41,35493,0,0,0,0,9 +"2687",2010,8039,"CO","08","039",23137,0.970825949777413,790,0.163461122876777,6.67203294546107,8.0727793331695,8.905037290767,8.46153846153846,262.177452739064,38,14494,0,0,0,0,9 +"2688",2010,8041,"CO","08","041",627088,0.866179866302656,49594,0.109043706784375,10.8116251376539,11.3123747623087,12.1571239687983,9.76153846153846,280.04470147499,1060,378511,0,0,0,0,9 +"2689",2010,8043,"CO","08","043",46834,0.929282145449887,2467,0.144809326557629,7.81075811652936,8.76950712003023,9.30900854377288,12.2538461538462,450.985046285307,133,29491,0,0,0,0,9 +"2690",2010,8045,"CO","08","045",56072,0.95691254101869,3346,0.116974604080468,8.11552088154677,9.00245482305095,9.72669070638487,10.8,250.505280537448,88,35129,0,0,0,0,9 +"2691",2010,8049,"CO","08","049",14795,0.975397093612707,738,0.163501182832038,6.60394382460047,7.64873978895624,8.43663368355782,9.26923076923077,249.625561657514,25,10015,0,0,0,0,9 +"2692",2010,8051,"CO","08","051",15290,0.959058207979071,1965,0.128580771746239,7.58324752430336,7.66011431917393,8.45574322910002,6.80769230769231,152.642625453158,16,10482,0,0,0,0,9 +"2693",2010,8055,"CO","08","055",6681,0.926208651399491,235,0.1942822930699,5.45958551414416,6.38012253689976,7.52185925220163,14.5692307692308,624.15196743555,23,3685,0,0,0,0,9 +"2694",2010,8059,"CO","08","059",535567,0.939292376117274,31473,0.139909665830792,10.3568853143996,11.1808595064318,12.0291325824886,8.76923076923077,290.805408442622,973,334588,0,0,0,0,9 +"2695",2010,8065,"CO","08","065",7263,0.959520859149112,508,0.130799944926339,6.23048144757848,6.95844839329766,7.62559507213245,11.5230769230769,430.292598967298,20,4648,0,0,0,0,9 +"2696",2010,8067,"CO","08","067",51416,0.912420258285359,4160,0.14732768009958,8.33327035325531,8.77090474429687,9.69184016636035,7.53076923076923,227.445034116755,75,32975,0,0,0,0,9 +"2697",2010,8069,"CO","08","069",300453,0.950937417832406,30440,0.124262363830616,10.3235128119756,10.5052593020049,11.4508159913067,8.05384615384615,238.559504391301,449,188213,0,0,0,0,9 +"2698",2010,8071,"CO","08","071",15422,0.93236934249773,919,0.157567111918039,6.82328612235569,7.42595365707754,8.33758794211651,11.1,552.730488613752,50,9046,0,0,0,0,9 +"2699",2010,8075,"CO","08","075",22749,0.933755329904611,1669,0.119653611147743,7.41997992366183,7.9707403900071,8.59341321732765,6.66153846153846,315.073397780165,44,13965,0,0,0,0,9 +"2700",2010,8077,"CO","08","077",146266,0.960004375589679,10018,0.130406246154267,9.21213875391756,9.71872301409103,10.6601258308773,11.3923076923077,343.590579794545,295,85858,0,0,0,0,9 +"2701",2010,8081,"CO","08","081",13795,0.973686118158753,812,0.128379847770932,6.69950034016168,7.42297125104942,8.2987883944492,10.4538461538462,314.693778746066,26,8262,0,0,0,0,9 +"2702",2010,8083,"CO","08","083",25576,0.854942133249922,1250,0.159133562715045,7.13089883029635,7.98548435673382,8.9270486478257,9.58461538461538,460.829493087558,68,14756,0,0,0,0,9 +"2703",2010,8085,"CO","08","085",41182,0.962386479529892,1814,0.141396726725268,7.50328963067508,8.46589989702869,9.3581567466704,11.4461538461538,344.737301448769,79,22916,0,0,0,0,9 +"2704",2010,8087,"CO","08","087",28243,0.940693269128634,1745,0.107672697659597,7.46450983463653,8.13914867888407,8.9641840463529,7.42307692307692,359.066427289048,56,15596,0,0,0,0,9 +"2705",2010,8089,"CO","08","089",18857,0.938325290343109,1051,0.134220713793286,6.95749737087695,7.59085212368858,8.55294636112206,9.61538461538461,444.312796208531,45,10128,0,0,0,0,9 +"2706",2010,8093,"CO","08","093",16278,0.971003808821723,484,0.201683253470942,6.18208490671663,7.71735127218533,8.56598335558567,8.51538461538462,292.665081397476,32,10934,0,0,0,0,9 +"2707",2010,8097,"CO","08","097",17156,0.972604336675216,781,0.163791093494987,6.66057514983969,7.91607809630279,8.63087895582005,8.52307692307692,167.224080267559,20,11960,0,0,0,0,9 +"2708",2010,8099,"CO","08","099",12546,0.970588235294118,750,0.127769807109836,6.62007320653036,7.21081845347222,8.15908865466791,7.36923076923077,478.122283396117,33,6902,0,0,0,0,9 +"2709",2010,8101,"CO","08","101",159401,0.925997954843445,10154,0.130714361892334,9.22562299550734,9.84670553843714,10.7415788768148,10.9,453.255297146252,412,90898,0,0,0,0,9 +"2710",2010,8105,"CO","08","105",12022,0.956413242388954,648,0.144401929795375,6.47389069635227,7.20934025660291,8.1341742721379,11.2230769230769,385.356454720617,26,6747,0,0,0,0,9 +"2711",2010,8107,"CO","08","107",23434,0.978151403942989,1326,0.153921652300077,7.18992217074581,8.17357548663415,8.91958692099992,9.73846153846154,228.83295194508,37,16169,0,0,0,0,9 +"2712",2010,8117,"CO","08","117",28075,0.969545859305432,2290,0.1293321460374,7.73630709654828,8.44762872803033,9.1178960815849,7.21538461538462,126.84164308713,26,20498,0,0,0,0,9 +"2713",2010,8119,"CO","08","119",23474,0.968688762034591,885,0.201414330748914,6.78558764500793,7.95402108727804,8.93181623730917,9.77692307692308,385.254068415809,58,15055,0,0,0,0,9 +"2714",2010,8123,"CO","08","123",254224,0.949654635282271,18930,0.106669708603436,9.84850324420337,10.4609009169164,11.2214896895155,9.60769230769231,255.149875438644,381,149324,0,0,0,0,9 +"2715",2010,8125,"CO","08","125",10054,0.98259399244082,497,0.121941515814601,6.20859002609663,7.10002716662926,7.89989532313973,5.94615384615385,252.981568485725,14,5534,0,0,0,0,9 +"2716",2010,9001,"CT","09","001",919371,0.821068969980563,50628,0.117472706883293,10.8322600619123,11.778476952534,12.536778287257,8.83846153846154,229.348525222825,1248,544150,0,0,0,0,9 +"2717",2010,9003,"CT","09","003",895214,0.794189992560438,56150,0.12471096296528,10.9357819601666,11.6783975296687,12.5228923150242,9.91538461538462,290.304717405045,1557,536333,0,0,0,0,9 +"2718",2010,9005,"CT","09","005",189762,0.960197510565867,8832,0.150346223163752,9.08613676851688,10.1308621403782,10.9648305561094,9.19230769230769,298.239341431723,342,114673,0,0,0,0,9 +"2719",2010,9007,"CT","09","007",165624,0.914450804231271,8841,0.142950297058397,9.0871552714058,10.0267223668708,10.8437682111504,8.3,283.235620345429,286,100976,0,0,0,0,9 +"2720",2010,9009,"CT","09","009",863398,0.810691013877725,59874,0.12299078756263,10.9999976331124,11.6375119711129,12.4967439956363,10.4846153846154,299.146450860287,1554,519478,0,0,0,0,9 +"2721",2010,9011,"CT","09","011",274019,0.864399913874585,19363,0.128775741828121,9.8711193075034,10.4865687194825,11.321462250259,9.39230769230769,279.725274071253,470,168022,0,0,0,0,9 +"2722",2010,9013,"CT","09","013",153242,0.919819631693661,16981,0.121937849936701,9.7398503509463,9.87225485010503,10.7495274791992,8.21538461538461,244.949230608186,234,95530,0,0,0,0,9 +"2723",2010,9015,"CT","09","015",118543,0.944543330268341,8506,0.125616864766372,9.04852707581358,9.68271618536697,10.5009494829617,10.8230769230769,360.881542699725,262,72600,0,0,0,0,9 +"2724",2010,11001,"DC","11","001",605282,0.426178211147862,63410,0.10664285407463,11.0573768566941,11.3055322237473,12.2803773840384,9.96923076923077,385.880535882735,1579,409194,1,0,0,0,9 +"2725",2010,10001,"DE","10","001",162972,0.707575534447635,12345,0.11399504209312,9.42100640177928,9.92930148742911,10.8107980828295,9.15384615384615,414.181752698537,391,94403,1,0,0,0,9 +"2726",2010,10003,"DE","10","003",538792,0.696235281889857,40678,0.116944943503244,10.6134426847454,11.1960342624678,12.0393035202622,8.5,349.976739165468,1151,328879,1,0,0,0,9 +"2727",2010,10005,"DE","10","005",197883,0.834669981756897,10228,0.153525062789628,9.23288433641108,10.0030613574322,10.953819547029,8.80769230769231,425.734055139282,475,111572,1,0,0,0,9 +"2728",2010,12001,"FL","12","001",247624,0.72484896455917,42008,0.110255871805641,10.6456153553177,10.1463160771667,11.3168619180598,7.76153846153846,287.59244042728,462,160644,0,0,0,0,9 +"2729",2010,12003,"FL","12","003",27067,0.851110208002364,1775,0.116673439982266,7.48155570190952,8.23536064375335,8.93471861401677,10.9769230769231,487.923883874116,80,16396,0,0,0,0,9 +"2730",2010,12005,"FL","12","005",169209,0.850439397431579,11769,0.124644670200758,9.37322423487766,9.97743479748821,10.8470237333005,10.1846153846154,496.282744930131,510,102764,0,0,0,0,9 +"2731",2010,12007,"FL","12","007",28536,0.776878329128119,1907,0.123352957667508,7.55328660560042,8.2495751500002,8.87290767425985,9.54615384615385,552.547242789258,100,18098,0,0,0,0,9 +"2732",2010,12009,"FL","12","009",544000,0.859522058823529,29687,0.138426470588235,10.2984645185299,11.0286930854738,11.971798629779,10.9076923076923,454.848940076782,1417,311532,0,0,0,0,9 +"2733",2010,12011,"FL","12","011",1752843,0.676081086554814,105684,0.119168117167368,11.5682087885935,12.4315734164181,13.214198435051,9.82307692307692,321.154503487625,3420,1064908,0,0,0,0,9 +"2734",2010,12013,"FL","12","013",14657,0.835982806849969,908,0.12219417343249,6.81124437860129,7.61085279039525,8.22710823434815,9.79230769230769,427.494656316796,38,8889,0,0,0,0,9 +"2735",2010,12015,"FL","12","015",159897,0.921155493849165,5847,0.171485393722209,8.67368398817567,9.54158468105309,10.6245659980248,12.3769230769231,549.602228524105,438,79694,0,0,0,0,9 +"2736",2010,12017,"FL","12","017",141177,0.947576446588325,5433,0.166266459834109,8.60024674655152,9.46977727898766,10.5240640402612,13.3307692307692,626.959247648903,446,71137,0,0,0,0,9 +"2737",2010,12019,"FL","12","019",191453,0.850485497746183,11070,0.121079324951816,9.31199402570268,10.2134691324827,10.9737689514362,9.60769230769231,373.398456855666,422,113016,0,0,0,0,9 +"2738",2010,12021,"FL","12","021",322576,0.910005704082139,15578,0.13344142155647,9.65361494147989,10.4773161440809,11.3529914270539,11.2923076923077,290.9338558593,487,167392,0,0,0,0,9 +"2739",2010,12023,"FL","12","023",67558,0.800793392344356,4757,0.131131768258385,8.46737249643228,8.99069070991623,9.84755192020583,10.5076923076923,534.545636209222,214,40034,0,0,0,0,9 +"2740",2010,12027,"FL","12","027",34935,0.845398597395162,2691,0.113525118076428,7.89766815072691,8.33086361322474,8.97423821949758,11.9153846153846,414.769853313101,82,19770,0,0,0,0,9 +"2741",2010,12029,"FL","12","029",16399,0.902494054515519,877,0.155680224403927,6.77650699237218,7.55066124310534,8.36915711258883,12.4846153846154,614.56519512445,60,9763,0,0,0,0,9 +"2742",2010,12031,"FL","12","031",865653,0.639692809936545,66374,0.116265986486502,11.1030606925174,11.6668475472425,12.5313900404519,11,410.756714612976,2218,539979,0,0,0,0,9 +"2743",2010,12033,"FL","12","033",298069,0.716089227662051,26514,0.124028329011068,10.1854281743588,10.4305506323918,11.4007976583197,9.74615384615385,461.922246825686,824,178385,0,0,0,0,9 +"2744",2010,12035,"FL","12","035",96065,0.849091760786967,4047,0.155040857752563,8.30573114487587,9.28275405248523,10.2147518652455,12.0307692307692,431.396279451092,221,51229,0,0,0,0,9 +"2745",2010,12037,"FL","12","037",11523,0.844918857936301,690,0.143712574850299,6.5366915975913,7.29573507274928,7.9550742732627,7.70769230769231,638.326768980035,47,7363,0,0,0,0,9 +"2746",2010,12039,"FL","12","039",47792,0.423836625376632,2933,0.133327753598929,7.98378106897745,8.73697108525415,9.63233478203556,11.3923076923077,532.473647987829,147,27607,0,0,0,0,9 +"2747",2010,12041,"FL","12","041",17006,0.932141597083382,1487,0.135893214159708,7.30451594646016,7.5569505720129,8.4320709379994,10.4307692307692,512.662770429611,50,9753,0,0,0,0,9 +"2748",2010,12043,"FL","12","043",12877,0.811835054748777,721,0.130775801817193,6.58063913728495,7.40913644392013,7.952615111651,9.21538461538462,337.564137186065,25,7406,0,0,0,0,9 +"2749",2010,12045,"FL","12","045",15826,0.800012637432074,928,0.13958043725515,6.8330317327862,7.75790620835175,8.1961611392829,9.99230769230769,451.142253791515,47,10418,0,0,0,0,9 +"2750",2010,12047,"FL","12","047",14686,0.634345635298924,1509,0.132302873484952,7.31920245876785,7.53955882930103,8.15507488781144,11.1,484.05766600021,46,9503,0,0,0,0,9 +"2751",2010,12049,"FL","12","049",27731,0.898705419927157,2205,0.0995997259384804,7.69848278788095,8.14525956651686,8.84246002419529,11.2923076923077,328.248696659587,51,15537,0,0,0,0,9 +"2752",2010,12051,"FL","12","051",39005,0.823535444173824,3007,0.0941417766952955,8.00869818298853,8.55929436743487,9.20008799551183,13.7923076923077,404.408497022487,91,22502,0,0,0,0,9 +"2753",2010,12053,"FL","12","053",172978,0.925192799084277,7956,0.14188509521442,8.98168163997386,9.8518784188029,10.7712180937949,13.1230769230769,540.576393725334,489,90459,0,0,0,0,9 +"2754",2010,12055,"FL","12","055",98637,0.875097580015613,4472,0.135020327057798,8.40559101483493,9.0831885863157,10.083347749334,12.1461538461538,575.079872204473,270,46950,0,0,0,0,9 +"2755",2010,12057,"FL","12","057",1233511,0.77512888008295,92466,0.110339510551588,11.4345962883634,12.0689118173225,12.8673291822179,10.4,338.473759649093,2548,752791,0,0,0,0,9 +"2756",2010,12059,"FL","12","059",19844,0.920832493448901,1300,0.131929046563193,7.17011954344963,7.84776253747361,8.56350409427949,10.0384615384615,604.770017035775,71,11740,0,0,0,0,9 +"2757",2010,12061,"FL","12","061",138277,0.886430859795917,6095,0.144601054405288,8.71522404191537,9.5566214867309,10.5192405981884,13.4846153846154,405.497993484067,290,71517,0,0,0,0,9 +"2758",2010,12063,"FL","12","063",49651,0.711687579303539,3255,0.131316589796782,8.08794755464267,8.861350110796,9.44628168152025,8.78461538461539,469.070653767224,144,30699,0,0,0,0,9 +"2759",2010,12065,"FL","12","065",14754,0.625118611901857,817,0.158939948488545,6.70563909486,7.5522372875608,8.34379173199684,9.59230769230769,582.838640043173,54,9265,0,0,0,0,9 +"2760",2010,12067,"FL","12","067",8809,0.83062776705642,806,0.105800885458054,6.69208374250663,7.20191631753163,7.52456122628536,7.02307692307692,382.542166579725,22,5751,0,0,0,0,9 +"2761",2010,12069,"FL","12","069",297724,0.864858056454972,13723,0.133405435907082,9.52682853626963,10.4689718016059,11.3083337590505,11.4,416.984975808505,655,157080,0,0,0,0,9 +"2762",2010,12071,"FL","12","071",620481,0.887119831227709,33264,0.141393531792271,10.4122310100978,11.1597444102858,12.0622600101643,12.1153846153846,371.863693333649,1258,338296,0,0,0,0,9 +"2763",2010,12073,"FL","12","073",275981,0.649599066602411,44290,0.108213971251644,10.6985141969172,10.3181105984291,11.4386759443375,7.67692307692308,262.180097993336,465,177359,0,0,0,0,9 +"2764",2010,12075,"FL","12","075",40727,0.887249244972623,2093,0.155351486728706,7.646353722446,8.42617379302907,9.40096073158483,11.5615384615385,605.904344463066,141,23271,0,0,0,0,9 +"2765",2010,12077,"FL","12","077",8352,0.796575670498084,546,0.108716475095785,6.3026189757449,7.1785454837637,7.56631101477246,8.49230769230769,362.844702467344,20,5512,0,0,0,0,9 +"2766",2010,12079,"FL","12","079",19251,0.596696275518155,1293,0.137603241390058,7.16472037877186,7.76046702921342,8.5577591531629,9.70769230769231,410.731451542428,47,11443,0,0,0,0,9 +"2767",2010,12081,"FL","12","081",323442,0.880244371479276,16157,0.140179692185925,9.69010867127683,10.5077215488168,11.4109924022127,11.0846153846154,429.457337708072,750,174639,0,0,0,0,9 +"2768",2010,12083,"FL","12","083",331341,0.847827464756852,16549,0.139185914209229,9.71408095601894,10.4813080531264,11.4280427299049,13.2230769230769,503.46057467903,878,174393,0,0,0,0,9 +"2769",2010,12085,"FL","12","085",146912,0.918012143323895,6466,0.145747113918536,8.77431295828538,9.63965220655863,10.5580238339684,10.3923076923077,362.967062669739,282,77693,0,0,0,0,9 +"2770",2010,12086,"FL","12","086",2506986,0.781008350266017,178103,0.109251906472553,12.0901173136053,12.8282473178433,13.5722574072428,11.7384615384615,270.911026667722,4140,1528177,0,0,0,0,9 +"2771",2010,12087,"FL","12","087",73226,0.920492721164614,3796,0.177792041078306,8.24170315972982,9.19156521664985,10.0192240510187,7.50769230769231,531.244186286872,257,48377,0,0,0,0,9 +"2772",2010,12089,"FL","12","089",73526,0.916410521448195,3986,0.151347822538966,8.29054350077274,9.15196945864985,10.0135519873984,10.2846153846154,407.751866953773,178,43654,0,0,0,0,9 +"2773",2010,12091,"FL","12","091",180725,0.84934015769816,13722,0.119391340434362,9.52675566325084,9.97599424332288,10.8992731497379,8.15384615384615,348.419442709889,385,110499,0,0,0,0,9 +"2774",2010,12093,"FL","12","093",40014,0.891088119158295,2544,0.11458489528665,7.84149292446001,8.51177855871474,9.22167588163993,12.2153846153846,568.560387331764,128,22513,0,0,0,0,9 +"2775",2010,12095,"FL","12","095",1148590,0.711918961509329,106031,0.100551981124683,11.5714867831684,12.0101976544951,12.8132806014125,10.4923076923077,284.764478636447,2061,723756,0,0,0,0,9 +"2776",2010,12097,"FL","12","097",269841,0.822625175566352,18239,0.107455872161755,9.811317437564,10.5836254785024,11.3229748810118,12.0769230769231,293.010149372834,470,160404,0,0,0,0,9 +"2777",2010,12099,"FL","12","099",1323631,0.782789916525074,74955,0.121772608831313,11.2246432124464,12.0144095925056,12.8349186101268,10.6461538461538,334.788164830095,2460,734793,0,0,0,0,9 +"2778",2010,12101,"FL","12","101",465516,0.919210080856512,22504,0.130994423392536,10.0214483501697,11.0115054692783,11.8034509909736,11.6,481.373282048515,1249,259466,0,0,0,0,9 +"2779",2010,12103,"FL","12","103",916428,0.85140240149799,47396,0.147462757576154,10.7662931159366,11.6137748206293,12.5306566390444,10.5,487.560898801475,2632,539830,0,0,0,0,9 +"2780",2010,12105,"FL","12","105",603119,0.816097652370428,36966,0.123620711667183,10.5177538502426,11.2023840983724,12.0524201749094,11.7692307692308,413.09628481588,1386,335515,0,0,0,0,9 +"2781",2010,12107,"FL","12","107",74223,0.817522870269324,4087,0.145143688614041,8.31556648356428,8.9782822032724,9.94874768394099,13,694.076251988239,288,41494,0,0,0,0,9 +"2782",2010,12109,"FL","12","109",191268,0.912348118869858,9975,0.140865173473869,9.20783724175806,10.1542851806322,10.9696799499481,8.46153846153846,304.610367503449,340,111618,0,0,0,0,9 +"2783",2010,12111,"FL","12","111",278290,0.771526105860793,14870,0.126224442128715,9.6071010394542,10.4487435881066,11.274922050749,13.3384615384615,393.839183418394,605,153616,0,0,0,0,9 +"2784",2010,12113,"FL","12","113",152924,0.902199785514373,9138,0.122976118856425,9.12019682212322,9.95513078568797,10.7192062854843,8.98461538461538,398.801416507764,366,91775,0,0,0,0,9 +"2785",2010,12115,"FL","12","115",379942,0.929662948555306,15441,0.154168267788241,9.64478158832086,10.542284138346,11.5254368699073,11.2461538461538,422.583000030845,822,194518,0,0,0,0,9 +"2786",2010,12117,"FL","12","117",423072,0.830894032221466,31075,0.121962691929506,10.3441589163789,10.9780120456751,11.8185923369995,10.3,284.703190272198,749,263081,0,0,0,0,9 +"2787",2010,12119,"FL","12","119",94286,0.888307914218442,2477,0.197017584795198,7.81480342948936,8.9157008189569,9.90243700089995,12.8692307692308,447.035509367007,194,43397,0,0,0,0,9 +"2788",2010,12121,"FL","12","121",42329,0.860450282312363,2400,0.13404521722696,7.78322401633604,8.50895938648913,9.33714921883988,9.5,528.668443221869,123,23266,0,0,0,0,9 +"2789",2010,12123,"FL","12","123",22594,0.771709303354873,1487,0.138089758342923,7.30451594646016,8.01763715990848,8.64839687703158,10.2230769230769,489.153551680136,69,14106,0,0,0,0,9 +"2790",2010,12125,"FL","12","125",15551,0.763616487685679,1082,0.151823033888496,6.98656645940643,7.67925142595306,8.0805469658245,8.23076923076923,961.447827316429,102,10609,0,0,0,0,9 +"2791",2010,12127,"FL","12","127",494462,0.864586156266811,31069,0.143861408965704,10.3439658164813,10.9370278444605,11.8721511529935,11.9,504.361953872779,1428,283130,0,0,0,0,9 +"2792",2010,12129,"FL","12","129",30824,0.835258240332209,1794,0.125713729561381,7.49220304261874,8.47093980689877,9.04605517766833,8.08461538461538,357.844866690187,71,19841,0,0,0,0,9 +"2793",2010,12131,"FL","12","131",55214,0.913228528996269,3002,0.142844206179592,8.00703401219341,8.8722067560283,9.69047995840981,9.09230769230769,435.223275502295,146,33546,0,0,0,0,9 +"2794",2010,12133,"FL","12","133",24726,0.822454096902046,1523,0.127113160236189,7.32843735289516,8.13329386122263,8.7738488852629,10.2,587.071240105541,89,15160,0,0,0,0,9 +"2795",2010,13001,"GA","13","001",18337,0.791296286197306,1056,0.128156186944429,6.96224346426621,7.77569574991525,8.55929436743487,11.9923076923077,565.877581816467,60,10603,0,0,0,0,9 +"2796",2010,13003,"GA","13","003",8363,0.789668779146239,543,0.105225397584599,6.29710931993394,7.0352685992811,7.75790620835175,15.4,604.670558798999,29,4796,0,0,0,0,9 +"2797",2010,13005,"GA","13","005",11062,0.829506418369192,690,0.128005785572229,6.5366915975913,7.3132203870903,8.06777619577889,10.7538461538462,596.786534047437,39,6535,0,0,0,0,9 +"2798",2010,13009,"GA","13","009",45703,0.561823075071658,5907,0.117103910027788,8.68389336730723,8.52277756971014,9.54602658547643,15.5461538461538,375.673376807485,106,28216,0,0,0,0,9 +"2799",2010,13011,"GA","13","011",18404,0.956965876983265,1065,0.125733536187785,6.97073007814353,7.88532923927319,8.595449689382,9.79230769230769,457.414692159912,50,10931,0,0,0,0,9 +"2800",2010,13013,"GA","13","013",69670,0.836529352662552,4080,0.100588488589063,8.31385226739821,9.25224977505339,9.96019864412017,10.9384615384615,406.53340068798,169,41571,0,0,0,0,9 +"2801",2010,13015,"GA","13","015",100041,0.875591007686848,6072,0.112413910296778,8.71144331907547,9.61673837813295,10.3181436273459,12.3307692307692,467.849888448603,281,60062,0,0,0,0,9 +"2802",2010,13017,"GA","13","017",17649,0.634143577539804,1069,0.126636070032296,6.97447891102505,7.66715825531915,8.56178407474411,16.0538461538462,507.715281234445,51,10045,0,0,0,0,9 +"2803",2010,13019,"GA","13","019",19361,0.879448375600434,1175,0.120809875522959,7.06902342657826,7.85825418218603,8.64541048921699,13.1769230769231,465.782873522035,52,11164,0,0,0,0,9 +"2804",2010,13021,"GA","13","021",155878,0.44597056672526,11626,0.11911879803436,9.3609992482613,9.8518784188029,10.7846691072967,11.7769230769231,629.595385902347,572,90852,0,0,0,0,9 +"2805",2010,13023,"GA","13","023",13033,0.714724161743267,1106,0.107649812015653,7.00850518208228,7.29437729928882,8.21608809863232,12.6153846153846,607.344632768362,43,7080,0,0,0,0,9 +"2806",2010,13025,"GA","13","025",18462,0.959971834037482,1111,0.12636767414148,7.01301578963963,7.83913164827433,8.60666819784384,12.9,554.887635253861,60,10813,0,0,0,0,9 +"2807",2010,13027,"GA","13","027",16246,0.631601625015388,986,0.134309983996061,6.89365635460264,7.60140233458373,8.47470313979528,9.74615384615385,510.910058541778,48,9395,0,0,0,0,9 +"2808",2010,13029,"GA","13","029",30404,0.824990132877253,1590,0.111465596632022,7.37148929521428,8.41027590907016,9.14601516141962,9.7,441.735629613062,79,17884,0,0,0,0,9 +"2809",2010,13031,"GA","13","031",70560,0.693367346938776,13534,0.0890589569160998,9.51296031679217,8.89109883061664,9.98349949050551,10.2230769230769,346.901017576318,150,43240,0,0,0,0,9 +"2810",2010,13033,"GA","13","033",23343,0.490296877008097,1497,0.125133873109712,7.31121838441963,7.93987157636188,8.86545282575362,12.3,474.004965766308,63,13291,0,0,0,0,9 +"2811",2010,13035,"GA","13","035",23776,0.712314939434724,1630,0.121803499327052,7.39633529380081,8.1185050675871,8.78889830934488,11.6230769230769,618.500645687487,91,14713,0,0,0,0,9 +"2812",2010,13037,"GA","13","037",6697,0.366134089890996,454,0.121546961325967,6.11809719804135,6.95177216439891,7.31986492980897,8.86923076923077,362.400906002265,16,4415,0,0,0,0,9 +"2813",2010,13039,"GA","13","039",50680,0.769258089976322,4981,0.0987371744277822,8.51338595307328,8.78140190768238,9.62311205526679,10.0538461538462,293.264687673108,90,30689,0,0,0,0,9 +"2814",2010,13043,"GA","13","043",11013,0.742395350948879,755,0.132207391264869,6.62671774924902,7.2034055210831,8.0624327915832,8.96153846153846,618.556701030928,39,6305,0,0,0,0,9 +"2815",2010,13045,"GA","13","045",110655,0.794252406127152,9980,0.106447968912385,9.20833836930551,9.59539867030668,10.4222218203702,11.8692307692308,432.511460030763,284,65663,0,0,0,0,9 +"2816",2010,13047,"GA","13","047",64073,0.955191734427918,3619,0.12236043263153,8.19395302356374,9.13895177588853,9.88364192431542,8.67692307692308,363.375948225558,137,37702,0,0,0,0,9 +"2817",2010,13049,"GA","13","049",12850,0.680778210116732,923,0.105136186770428,6.82762923450285,7.60738142563979,8.0471895621705,10.7230769230769,300.575013068479,23,7652,0,0,0,0,9 +"2818",2010,13051,"GA","13","051",265799,0.554031429764597,25418,0.113747606273914,10.143212863442,10.3657109944629,11.3434530038452,10.0230769230769,392.920071462338,640,162883,0,0,0,0,9 +"2819",2010,13053,"GA","13","053",11185,0.742780509611086,2226,0.0388913723737148,7.70796153183549,7.12528309151071,7.75405263903576,11.0538461538462,212.705615428247,15,7052,0,0,0,0,9 +"2820",2010,13055,"GA","13","055",25958,0.871792896216966,1598,0.126512057939749,7.37650812632622,8.18590748148232,8.87122464440955,11.7923076923077,572.264258917785,90,15727,0,0,0,0,9 +"2821",2010,13057,"GA","13","057",215226,0.910554486911433,11391,0.110335182552294,9.34057884889991,10.4739584952286,11.1067751221424,8.89230769230769,299.318686366072,391,130630,0,0,0,0,9 +"2822",2010,13059,"GA","13","059",117389,0.67475657855506,26554,0.0787126562113997,10.1869356744558,9.37517661442912,10.599680091282,9.42307692307692,221.247525521096,171,77289,0,0,0,0,9 +"2823",2010,13063,"GA","13","063",259899,0.251116779979915,19897,0.0934016675708641,9.89832424557925,10.5906418113597,11.3505947530525,13.6923076923077,349.222101487963,556,159211,0,0,0,0,9 +"2824",2010,13065,"GA","13","065",6764,0.704021289178001,455,0.129657007687759,6.12029741895095,6.74405918631135,7.60190195987517,11.2230769230769,713.92146863845,28,3922,0,0,0,0,9 +"2825",2010,13067,"GA","13","067",689542,0.680107955715533,44877,0.109127507824034,10.7116806930426,11.5959422073536,12.3222543998196,9.43076923076923,250.632923066991,1087,433702,0,0,0,0,9 +"2826",2010,13069,"GA","13","069",42729,0.711156357508952,3113,0.110393409628121,8.04334217044161,8.69383196507469,9.39690292302739,15.9769230769231,416.732814732497,105,25196,0,0,0,0,9 +"2827",2010,13071,"GA","13","071",45638,0.74475218020071,3080,0.109404443665367,8.03268487596762,8.69450220638665,9.45868372431213,9.81538461538462,442.495051042192,114,25763,0,0,0,0,9 +"2828",2010,13073,"GA","13","073",124951,0.792518667317588,6898,0.120919400404959,8.83898679349679,9.79823814181703,10.5655567775252,7.40769230769231,307.32733056559,228,74188,0,0,0,0,9 +"2829",2010,13075,"GA","13","075",17184,0.710486499068901,1093,0.117260242085661,6.99668148817654,7.71333788887187,8.51278348292754,11.7769230769231,583.120204603581,57,9775,0,0,0,0,9 +"2830",2010,13077,"GA","13","077",127939,0.795848021322662,6716,0.113069509688211,8.81224801819743,9.89942932907527,10.5791324579599,9.83076923076923,330.656589513462,252,76212,0,0,0,0,9 +"2831",2010,13079,"GA","13","079",12577,0.761548859028385,745,0.14128965572076,6.61338421837956,7.4500795698075,8.26049285657318,11.6615384615385,373.326467559217,29,7768,0,0,0,0,9 +"2832",2010,13081,"GA","13","081",23436,0.552312681344939,1393,0.135816692268305,7.23921497377981,7.94520113241276,8.85437945877111,14.3615384615385,529.613605848128,71,13406,0,0,0,0,9 +"2833",2010,13083,"GA","13","083",16632,0.97468734968735,1352,0.132996632996633,7.20934025660291,7.61035761831284,8.52892411429194,8.78461538461539,525.358658314811,52,9898,0,0,0,0,9 +"2834",2010,13085,"GA","13","085",22325,0.980156774916013,1313,0.14562150055991,7.1800698743028,8.01168672912785,8.82981174915805,11.0307692307692,506.087721871791,69,13634,0,0,0,0,9 +"2835",2010,13087,"GA","13","087",27815,0.566852417760201,1763,0.120294804961352,7.47477218239787,8.16990264735914,8.99615656203344,12.6,549.073438572409,88,16027,0,0,0,0,9 +"2836",2010,13089,"GA","13","089",692536,0.377316125082306,51110,0.10636125775411,10.8417354517623,11.5808457614542,12.3635164684332,10.9538461538462,300.765013616167,1343,446528,0,0,0,0,9 +"2837",2010,13091,"GA","13","091",21756,0.685925721640007,1473,0.120978120978121,7.29505641646263,8.01730750768858,8.68862230704377,13.2153846153846,487.729348920028,63,12917,0,0,0,0,9 +"2838",2010,13093,"GA","13","093",14850,0.487946127946128,874,0.137912457912458,6.77308037565554,7.62070508683826,8.27180403115471,11.7076923076923,267.58000642192,25,9343,0,0,0,0,9 +"2839",2010,13095,"GA","13","095",94521,0.304895208472191,8490,0.11638683467166,9.04664427930539,9.28554060453912,10.3000464511733,12.7153846153846,390.404086472681,214,54815,0,0,0,0,9 +"2840",2010,13097,"GA","13","097",132575,0.566698095417688,7555,0.102968131246464,8.92996487470684,9.99702343192729,10.6503413630453,11.3692307692308,342.688478663265,274,79956,0,0,0,0,9 +"2841",2010,13099,"GA","13","099",10983,0.493398889192388,603,0.125739779659474,6.40191719672719,7.17930796950403,8.06526520889773,11.8692307692308,700.466977985324,42,5996,0,0,0,0,9 +"2842",2010,13103,"GA","13","103",52469,0.845261011263794,2918,0.106005450837637,7.97865372908273,8.9743648418466,9.66434164374441,9.70769230769231,341.220022533398,106,31065,0,0,0,0,9 +"2843",2010,13105,"GA","13","105",20101,0.68787622506343,1185,0.134023182926223,7.07749805356923,7.79934339821592,8.68135077758252,15.0230769230769,486.871848374196,56,11502,0,0,0,0,9 +"2844",2010,13107,"GA","13","107",22602,0.647332094504911,1485,0.123174940270772,7.3031700512368,7.9002660367677,8.79391542363168,13.0153846153846,642.693190512624,84,13070,0,0,0,0,9 +"2845",2010,13109,"GA","13","109",11028,0.67791077257889,754,0.10981138919115,6.62539236800796,7.24708058458576,8.0734029689864,9.20769230769231,503.065555730231,32,6361,0,0,0,0,9 +"2846",2010,13111,"GA","13","111",23684,0.986108765411248,1054,0.174294882621179,6.96034772910131,7.85088266480985,8.83884181343129,11.8307692307692,577.649411241946,78,13503,0,0,0,0,9 +"2847",2010,13113,"GA","13","113",106938,0.741364154930895,4683,0.143961921861265,8.45169420918354,9.57087784672921,10.3917607718316,8.35384615384615,276.291905610975,172,62253,0,0,0,0,9 +"2848",2010,13115,"GA","13","115",96436,0.825303828445809,6625,0.12015222531005,8.79860565085442,9.43492288748465,10.2520647984372,12.0153846153846,489.84425464724,273,55732,0,0,0,0,9 +"2849",2010,13117,"GA","13","117",176736,0.89750814774579,6654,0.0978578218359587,8.80297345657842,10.3974518192267,10.8698248018944,8.12307692307692,181.217354226628,187,103191,0,0,0,0,9 +"2850",2010,13119,"GA","13","119",22082,0.899963771397518,1431,0.13295897110769,7.26612877955645,7.92479591395644,8.75668242126653,12.8615384615385,488.035264483627,62,12704,0,0,0,0,9 +"2851",2010,13121,"GA","13","121",925622,0.480010198547571,70501,0.103070151746609,11.1633821730969,11.8680582203473,12.6195720586667,10.5846153846154,346.940920045965,2047,590014,0,0,0,0,9 +"2852",2010,13123,"GA","13","123",28343,0.977525314892566,1359,0.155417563419539,7.21450441415114,8.155649270366,9.00528228820836,11.4076923076923,359.668373567423,59,16404,0,0,0,0,9 +"2853",2010,13127,"GA","13","127",79750,0.709630094043887,4838,0.132727272727273,8.48425669116997,9.2032150470336,10.1055708861187,10.1384615384615,488.855389253796,227,46435,0,0,0,0,9 +"2854",2010,13129,"GA","13","129",55256,0.93702041407268,3344,0.112693644129144,8.11492297420459,8.98168163997386,9.69713966113932,12.8769230769231,482.15113583681,156,32355,0,0,0,0,9 +"2855",2010,13131,"GA","13","131",25027,0.684940264514325,1511,0.122867303312423,7.32052696227274,8.0507033814703,8.90191122637961,10.6153846153846,519.498510770936,75,14437,0,0,0,0,9 +"2856",2010,13133,"GA","13","133",15977,0.60274144082118,752,0.17393753520686,6.62273632394984,7.39203156751459,8.44634145044429,13.3461538461538,509.356660391983,46,9031,0,0,0,0,9 +"2857",2010,13135,"GA","13","135",807979,0.623653585056047,48084,0.0959034826400191,10.7807047604241,11.8011673806805,12.4430362583452,9.36923076923077,215.559910301218,1067,494990,0,0,0,0,9 +"2858",2010,13137,"GA","13","137",43058,0.924381067397464,2706,0.123786520507223,7.90322680873073,8.63692987301857,9.50703173858555,10.7923076923077,360.302654229553,90,24979,0,0,0,0,9 +"2859",2010,13139,"GA","13","139",180070,0.886699616815683,11787,0.105297939690121,9.37475250822657,10.1522988505989,10.8637760308879,9.77692307692308,321.451122208828,336,104526,0,0,0,0,9 +"2860",2010,13141,"GA","13","141",9433,0.244884978267783,620,0.15127743029789,6.42971947803914,7.07072410726028,7.81156848934518,23.1384615384615,449.176509732158,27,6011,0,0,0,0,9 +"2861",2010,13143,"GA","13","143",28763,0.940409553940827,1749,0.120814935855092,7.4667994750186,8.30028018985266,9.0410929746695,12.4230769230769,693.904408685769,116,16717,0,0,0,0,9 +"2862",2010,13145,"GA","13","145",32147,0.80772700407503,1534,0.15298472641304,7.3356339819272,8.42178300661158,9.18809476302886,7.8,387.997930677703,75,19330,0,0,0,0,9 +"2863",2010,13147,"GA","13","147",25237,0.796291159805048,1351,0.141657090779411,7.2086003379602,8.06148686687133,8.87975079851313,11.6538461538462,471.142520612485,68,14433,0,0,0,0,9 +"2864",2010,13149,"GA","13","149",11838,0.884270991721575,645,0.125274539618179,6.46925031679577,7.4265490723973,8.15794350710504,12.2153846153846,493.827160493827,34,6885,0,0,0,0,9 +"2865",2010,13151,"GA","13","151",205042,0.577535334224208,11149,0.100028286887565,9.31910508676757,10.4460734370499,11.0775783023801,10.4692307692308,333.599663929227,405,121403,0,0,0,0,9 +"2866",2010,13153,"GA","13","153",140414,0.667112965943567,9517,0.103743216488384,9.16083495207234,9.84596436629246,10.6828353648539,8.56923076923077,369.351014523835,310,83931,0,0,0,0,9 +"2867",2010,13155,"GA","13","155",9577,0.726741150673489,589,0.118826354808395,6.37842618365159,7.1708884785125,7.8804263442924,14.8615384615385,346.33612832665,19,5486,0,0,0,0,9 +"2868",2010,13157,"GA","13","157",60706,0.905017625934833,3233,0.11274009158897,8.08116577772543,9.12652388588307,9.79177356290613,10.5923076923077,386.197632440601,138,35733,0,0,0,0,9 +"2869",2010,13159,"GA","13","159",13888,0.764616935483871,780,0.139976958525346,6.65929391968364,7.52886925664225,8.33686963728496,11.8230769230769,517.51113250692,43,8309,0,0,0,0,9 +"2870",2010,13161,"GA","13","161",15112,0.834634727368978,924,0.1213605082054,6.82871207164168,7.57147364885127,8.38274709486331,12.9307692307692,555.748523792984,48,8637,0,0,0,0,9 +"2871",2010,13163,"GA","13","163",16872,0.442982456140351,1041,0.134068278805121,6.94793706861497,7.650168700845,8.51819269174932,14.2076923076923,431.921020156314,42,9724,0,0,0,0,9 +"2872",2010,13165,"GA","13","165",8320,0.571394230769231,485,0.132091346153846,6.18414889093748,6.86589107488344,7.78862606562503,15.3846153846154,806.803314435238,37,4586,0,0,0,0,9 +"2873",2010,13167,"GA","13","167",9991,0.641777599839856,582,0.128115303773396,6.36647044773144,7.25276241805319,7.82444593087762,10.9384615384615,412.567438908283,26,6302,0,0,0,0,9 +"2874",2010,13169,"GA","13","169",28628,0.741372083275115,1491,0.128021517395557,7.30720231476474,8.28903709827848,9.07153796909572,9.85384615384615,332.028933949958,56,16866,0,0,0,0,9 +"2875",2010,13171,"GA","13","171",18260,0.674753559693319,1480,0.130449069003286,7.29979736675816,7.71110125184016,8.60428789826717,14.4076923076923,512.724899785588,55,10727,0,0,0,0,9 +"2876",2010,13173,"GA","13","173",10103,0.73295060873008,720,0.102939720874988,6.5792512120101,7.16549347506085,7.98989937494294,10.7230769230769,570.852921423774,34,5956,0,0,0,0,9 +"2877",2010,13175,"GA","13","175",48388,0.621641729354385,2804,0.123873687691163,7.93880224815448,8.74305305022468,9.57962547262959,13.3769230769231,572.993621391762,159,27749,0,0,0,0,9 +"2878",2010,13177,"GA","13","177",28417,0.779322236689306,1537,0.11774641939684,7.3375877435386,8.40088406901585,9.06716260229985,9.18461538461538,261.111755831496,45,17234,0,0,0,0,9 +"2879",2010,13179,"GA","13","179",62772,0.506197030523163,6614,0.0848626776269674,8.79694389354174,8.9380065764712,9.88231498730333,9.18461538461538,309.313481349446,118,38149,0,0,0,0,9 +"2880",2010,13181,"GA","13","181",7970,0.666499372647428,428,0.16198243412798,6.0591231955818,6.89467003943348,7.78821155784708,11.6846153846154,505.902192242833,24,4744,0,0,0,0,9 +"2881",2010,13183,"GA","13","183",14575,0.705866209262436,1073,0.0925557461406518,6.9782137426307,7.60190195987517,8.36869318309779,8.53846153846154,198.343250495858,17,8571,0,0,0,0,9 +"2882",2010,13185,"GA","13","185",109704,0.605046306424561,13611,0.0944085903886823,9.51863356833207,9.48235027503367,10.4202853075724,9.75384615384615,417.273610099539,275,65904,0,0,0,0,9 +"2883",2010,13187,"GA","13","187",30281,0.96846207192629,3363,0.125590304151118,8.12058871174027,8.16735198705607,9.13701670755734,10.4923076923077,365.840340722944,67,18314,0,0,0,0,9 +"2884",2010,13189,"GA","13","189",21803,0.585240563225244,1324,0.130670091271843,7.18841273649695,7.89692465626886,8.80732226751107,13.3230769230769,657.477820025349,83,12624,0,0,0,0,9 +"2885",2010,13191,"GA","13","191",14312,0.624720514253773,721,0.160215204024595,6.58063913728495,7.46737106691756,8.37816098272068,10.6692307692308,547.879942829919,46,8396,0,0,0,0,9 +"2886",2010,13193,"GA","13","193",14644,0.368410270417919,1036,0.136028407538924,6.94312242281943,7.54115245513631,8.27715777243181,13.3692307692308,422.215004871712,39,9237,0,0,0,0,9 +"2887",2010,13195,"GA","13","195",28221,0.899968108855108,1554,0.131497820771766,7.34858753092759,8.2482674474469,9.0451118926084,10.5538461538462,556.95292849443,93,16698,0,0,0,0,9 +"2888",2010,13197,"GA","13","197",8741,0.641459787209701,536,0.140372955039469,6.2841341610708,6.96696713861398,7.86018505747217,10.7769230769231,621.11801242236,32,5152,0,0,0,0,9 +"2889",2010,13199,"GA","13","199",21817,0.590273639822157,1248,0.142366044827428,7.12929754892937,7.83597458172157,8.78966009806154,13.8846153846154,511.327879169289,65,12712,0,0,0,0,9 +"2890",2010,13201,"GA","13","201",6133,0.705527474319256,341,0.131583238219468,5.83188247728352,6.58340922215876,7.47079377419506,10.5384615384615,791.092880164078,27,3413,0,0,0,0,9 +"2891",2010,13205,"GA","13","205",23502,0.503616713471194,1552,0.116415624202196,7.34729970074316,8.0519780789023,8.76045304631527,10.9615384615385,517.613227893602,72,13910,0,0,0,0,9 +"2892",2010,13207,"GA","13","207",26133,0.748172808326637,1534,0.144644702100792,7.3356339819272,8.13358741766097,8.96699411334445,10.3230769230769,496.709300881659,80,16106,0,0,0,0,9 +"2893",2010,13209,"GA","13","209",9140,0.72253829321663,748,0.126148796498906,6.61740297797448,7.0825485693553,7.85748078694253,12.1769230769231,528.907532372789,29,5483,0,0,0,0,9 +"2894",2010,13211,"GA","13","211",17897,0.747499580935352,814,0.137788456165838,6.70196036600254,7.77401507725073,8.57451825803551,10.5769230769231,410.677618069815,42,10227,0,0,0,0,9 +"2895",2010,13213,"GA","13","213",39532,0.97268036021451,2481,0.112389962561975,7.8164169836918,8.67641669696422,9.3857212310908,13.9461538461538,462.962962962963,109,23544,0,0,0,0,9 +"2896",2010,13215,"GA","13","215",191122,0.49184813888511,15793,0.106617762476324,9.66732208287005,10.0639894491902,10.9780461911005,10.2615384615385,502.761648491715,568,112976,0,0,0,0,9 +"2897",2010,13217,"GA","13","217",100128,0.563049296899968,5767,0.104426334292106,8.65990729361541,9.65573107295667,10.3418392529785,12.8461538461538,436.696238222956,254,58164,0,0,0,0,9 +"2898",2010,13219,"GA","13","219",32935,0.908334598451495,1459,0.128829512676484,7.28550654852279,8.49943646982698,9.20220738874599,7.22307692307692,340.171655850952,65,19108,0,0,0,0,9 +"2899",2010,13221,"GA","13","221",14891,0.808139144449668,785,0.130078570948895,6.66568371778241,7.63964228785801,8.40223117294656,9.78461538461539,328.425821064553,29,8830,0,0,0,0,9 +"2900",2010,13223,"GA","13","223",142826,0.803495161945304,7749,0.0887723523728173,8.95531908176395,10.1398236976363,10.6951669891603,10.1230769230769,294.22797392976,251,85308,0,0,0,0,9 +"2901",2010,13225,"GA","13","225",28104,0.519000853970965,2964,0.114681184173071,7.99429498641598,8.06557942728209,9.04487593224865,12.2384615384615,541.305283877714,88,16257,0,0,0,0,9 +"2902",2010,13227,"GA","13","227",29434,0.97730515730108,1503,0.151423523815995,7.31521838975297,8.28399930424853,9.08862461329209,11.1153846153846,513.293730895669,89,17339,0,0,0,0,9 +"2903",2010,13229,"GA","13","229",18813,0.89459416361027,974,0.126242491893903,6.88141130364254,7.84424071814181,8.61848544289811,10.5846153846154,650.860065086007,70,10755,0,0,0,0,9 +"2904",2010,13231,"GA","13","231",17929,0.88432149032294,868,0.120642534441408,6.76619171466035,7.90322680873073,8.57904059474232,10.7769230769231,424.833445978565,44,10357,0,0,0,0,9 +"2905",2010,13233,"GA","13","233",41537,0.849820641837398,2717,0.115054048197992,7.90728360942635,8.5769703954521,9.3933283733133,12.2230769230769,470.252340765,112,23817,0,0,0,0,9 +"2906",2010,13235,"GA","13","235",11989,0.660438735507549,635,0.135290683126199,6.45362499889269,7.40306109109009,8.3707791729607,9.33076923076923,495.526496902959,36,7265,0,0,0,0,9 +"2907",2010,13237,"GA","13","237",21192,0.719516798791997,1159,0.157229143072858,7.05531284333975,7.79276172081653,8.76186337327473,13.0846153846154,494.167206740117,61,12344,0,0,0,0,9 +"2908",2010,13241,"GA","13","241",16276,0.97155320717621,798,0.155505038092898,6.68210859744981,7.53529670244409,8.41781474743596,11.9538461538462,532.150776053215,48,9020,0,0,0,0,9 +"2909",2010,13243,"GA","13","243",7668,0.374021909233177,435,0.143974960876369,6.07534603108868,6.67203294546107,7.75276480885133,12.3076923076923,643.234550884447,28,4353,0,0,0,0,9 +"2910",2010,13245,"GA","13","245",201122,0.413619594077227,17856,0.112891677688169,9.79009486518104,10.0551780657766,11.0475829558067,11.1538461538462,552.508967962726,670,121265,0,0,0,0,9 +"2911",2010,13247,"GA","13","247",85359,0.493562483159362,5186,0.120772267716351,8.55371796609861,9.41025623717109,10.2040364906947,11.4461538461538,329.362574944778,167,50704,0,0,0,0,9 +"2912",2010,13251,"GA","13","251",14499,0.553762328436444,849,0.138561280088282,6.74405918631135,7.4442486494967,8.35585004100747,17.1846153846154,482.509047044632,40,8290,0,0,0,0,9 +"2913",2010,13253,"GA","13","253",8727,0.654291279935831,417,0.142889881975478,6.0330862217988,6.90875477931522,7.84384863815247,12.7153846153846,577.796120511762,28,4846,0,0,0,0,9 +"2914",2010,13255,"GA","13","255",64096,0.647793934098852,4018,0.122410134797803,8.29853954537488,9.03788993497749,9.87018926713461,15.0384615384615,524.452253547374,197,37563,0,0,0,0,9 +"2915",2010,13257,"GA","13","257",26124,0.871267799724391,1756,0.137498086051141,7.47079377419506,8.05420489706441,8.96405612822033,12.4615384615385,550.251922566958,83,15084,0,0,0,0,9 +"2916",2010,13261,"GA","13","261",32608,0.454336359175662,2966,0.116137144259078,7.99496952269788,8.24774388722552,9.19471899107323,13.4153846153846,468.618365627633,89,18992,0,0,0,0,9 +"2917",2010,13263,"GA","13","263",6883,0.400261513874764,346,0.170129304082522,5.84643877505772,6.64248680136726,7.66762609158499,10.2153846153846,633.373934226553,26,4105,0,0,0,0,9 +"2918",2010,13267,"GA","13","267",25470,0.687711032587358,1966,0.107145661562623,7.58375630070711,8.24222989137223,8.71555212590782,9.14615384615385,417.29664348352,69,16535,0,0,0,0,9 +"2919",2010,13269,"GA","13","269",8853,0.602281712413871,494,0.131932678188185,6.20253551718792,7.0343879299155,7.86940171257709,14.6307692307692,604.288499025341,31,5130,0,0,0,0,9 +"2920",2010,13271,"GA","13","271",16519,0.616804891337248,985,0.121617531327562,6.89264164117209,7.83952558170468,8.28020423327997,14.9461538461538,416.311855426247,44,10569,0,0,0,0,9 +"2921",2010,13273,"GA","13","273",9525,0.377637795275591,654,0.137322834645669,6.4831073514572,6.94793706861497,7.94873845481361,12.3846153846154,484.4419601267,26,5367,0,0,0,0,9 +"2922",2010,13275,"GA","13","275",44744,0.612394957983193,2541,0.128195959234758,7.84031298332016,8.62604759632832,9.51229510371468,11.4384615384615,533.42678036055,137,25683,0,0,0,0,9 +"2923",2010,13277,"GA","13","277",40250,0.681540372670807,3136,0.111577639751553,8.0507033814703,8.50754681436443,9.38647616968305,12.1076923076923,462.720447005413,106,22908,0,0,0,0,9 +"2924",2010,13279,"GA","13","279",27248,0.726915736934821,1650,0.116192014092777,7.40853056689463,8.12651816878071,8.97575663051942,12.4384615384615,461.345811639096,70,15173,0,0,0,0,9 +"2925",2010,13281,"GA","13","281",10531,0.985946253917007,547,0.158864305384104,6.30444880242198,6.93244789157251,7.91022370709734,13.0384615384615,458.102691353312,24,5239,0,0,0,0,9 +"2926",2010,13283,"GA","13","283",6892,0.662797446314568,456,0.123621590249565,6.12249280951439,6.7093043402583,7.56371966841437,12.2230769230769,645.161290322581,26,4030,0,0,0,0,9 +"2927",2010,13285,"GA","13","285",67060,0.634983596779004,4393,0.119087384431852,8.38776764397578,9.0871552714058,9.9143780353673,11.6846153846154,467.746080699049,182,38910,0,0,0,0,9 +"2928",2010,13287,"GA","13","287",8909,0.562015938938152,607,0.126613536872825,6.4085287910595,6.9985096422506,7.84737183615979,16.7923076923077,611.681136543015,31,5068,0,0,0,0,9 +"2929",2010,13289,"GA","13","289",8983,0.575531559612602,539,0.158299009239675,6.289715570909,6.91274282049318,7.92226105835325,15.6384615384615,476.539589442815,26,5456,0,0,0,0,9 +"2930",2010,13291,"GA","13","291",21384,0.984147025813693,879,0.171810699588477,6.77878489768518,7.69757534680234,8.68169016329764,11.2153846153846,532.797624246659,61,11449,0,0,0,0,9 +"2931",2010,13293,"GA","13","293",27052,0.704125388141357,1591,0.131672334762679,7.37211802833779,8.14757773620177,8.99714715151514,12.3846153846154,617.362525458248,97,15712,0,0,0,0,9 +"2932",2010,13295,"GA","13","295",68876,0.945409141065103,3706,0.130088855334224,8.21770840684531,9.14023974429669,9.9202955041855,10.4461538461538,537.979369231529,218,40522,0,0,0,0,9 +"2933",2010,13297,"GA","13","297",83997,0.821005512101623,4675,0.116670833482148,8.44998444172279,9.43003799288609,10.136304168546,10.7846153846154,513.75099386353,252,49051,0,0,0,0,9 +"2934",2010,13299,"GA","13","299",36308,0.683733612427013,2496,0.122700231353972,7.82244472948932,8.41538192526955,9.23630047364571,11.1461538461538,541.584251671847,115,21234,0,0,0,0,9 +"2935",2010,13301,"GA","13","301",5782,0.373746108612937,310,0.140089934278796,5.73657229747919,6.47697236288968,7.46393660446893,17.3769230769231,949.754901960784,31,3264,0,0,0,0,9 +"2936",2010,13303,"GA","13","303",21096,0.45838073568449,1310,0.123246113007205,7.1777824161952,7.88344635413774,8.68287710705717,14.6923076923077,559.495665878645,71,12690,0,0,0,0,9 +"2937",2010,13305,"GA","13","305",30080,0.779222074468085,1798,0.120046542553191,7.49443021503157,8.37516869138682,9.02038978801774,12.1846153846154,471.724291026139,85,18019,0,0,0,0,9 +"2938",2010,13309,"GA","13","309",7770,0.627927927927928,637,0.118018018018018,6.45676965557216,7.06902342657826,7.36897040219479,15.3384615384615,282.144296654575,14,4962,0,0,0,0,9 +"2939",2010,13311,"GA","13","311",27201,0.969082019043418,1554,0.142237417741995,7.34858753092759,8.12415060330663,8.98042393637454,10.3307692307692,517.631834357813,80,15455,0,0,0,0,9 +"2940",2010,13313,"GA","13","313",102740,0.925705664784894,6857,0.102696126143664,8.83302530728436,9.57574708283836,10.2888179782239,12.0076923076923,416.249001851883,245,58859,0,0,0,0,9 +"2941",2010,13315,"GA","13","315",9313,0.633952539460969,652,0.126597229678943,6.48004456192665,7.20711885620776,7.65775527113487,12.5769230769231,637.58389261745,38,5960,0,0,0,0,9 +"2942",2010,13317,"GA","13","317",10389,0.555972663393974,490,0.145249783424776,6.19440539110467,7.09340462586877,8.00936307663004,13.3769230769231,614.209827357238,37,6024,0,0,0,0,9 +"2943",2010,13319,"GA","13","319",9528,0.600860621326616,531,0.134340890008396,6.27476202124194,7.00850518208228,7.9585769038139,14.2384615384615,634.517766497462,35,5516,0,0,0,0,9 +"2944",2010,13321,"GA","13","321",21692,0.709201548958141,1373,0.133735939516873,7.22475340576797,7.89803969076462,8.7830896717961,12.2692307692308,397.519478454444,50,12578,0,0,0,0,9 +"2945",2010,15001,"HI","15","001",185361,0.337250014835915,10909,0.159456412082369,9.29734341559776,9.96707249416124,10.9219376819522,9.63076923076923,339.586028460543,378,111312,1,0,0,0,9 +"2946",2010,15003,"HI","15","003",956320,0.208682240254308,74019,0.120282959678769,11.2120770959867,11.7366928216774,12.5571977173797,5.87692307692308,270.052335590101,1564,579147,1,0,0,0,9 +"2947",2010,15007,"HI","15","007",67208,0.330481490298774,3484,0.152972860373765,8.15593633797239,9.0295376611515,9.90053319270969,8.53846153846154,331.314130300408,134,40445,1,0,0,0,9 +"2948",2010,15009,"HI","15","009",155025,0.344654088050314,8359,0.139725850669247,9.03109408169916,9.96335894957352,10.7670102188716,8.33846153846154,309.716979164494,297,95894,1,0,0,0,9 +"2949",2010,19005,"IA","19","005",14377,0.978159560408987,696,0.142101968421785,6.54534966033442,7.34213173058472,8.23721470334949,7.96153846153846,304.336799391326,24,7886,1,0,0,0,9 +"2950",2010,19007,"IA","19","007",12861,0.986004198740378,652,0.140113521499106,6.48004456192665,7.24422751560335,8.18367658262066,7.43846153846154,451.339915373766,32,7090,1,0,0,0,9 +"2951",2010,19011,"IA","19","011",26049,0.987830626895466,1084,0.119659103996315,6.98841318199959,8.14206328310415,8.89549263145163,6.3,296.916121195762,44,14819,1,0,0,0,9 +"2952",2010,19013,"IA","19","013",131164,0.880714220365344,15092,0.1215424964167,9.6219200810842,9.54631248355571,10.5942318484798,6.27692307692308,286.115788274317,226,78989,1,0,0,0,9 +"2953",2010,19015,"IA","19","015",26271,0.981690837805946,1371,0.135053861672567,7.22329567956231,8.0258433441509,8.92279162396964,5.80769230769231,322.516948594748,49,15193,1,0,0,0,9 +"2954",2010,19017,"IA","19","017",24296,0.979543957853145,1983,0.123847546921304,7.5923661285198,7.93128476152589,8.82055174325303,5,228.49561435837,31,13567,1,0,0,0,9 +"2955",2010,19019,"IA","19","019",20975,0.986746126340882,1064,0.124243146603099,6.96979066990159,7.79729127354747,8.66215896166642,6.07692307692308,326.881720430108,38,11625,1,0,0,0,9 +"2956",2010,19021,"IA","19","021",20356,0.898064452741206,1579,0.117704853605816,7.36454701425564,7.68937110752969,8.61068353450358,4.82307692307692,290.492957746479,33,11360,1,0,0,0,9 +"2957",2010,19023,"IA","19","023",14916,0.991552695092518,605,0.143805309734513,6.40522845803084,7.42476176182321,8.29754352935628,6.16153846153846,294.478527607362,24,8150,1,0,0,0,9 +"2958",2010,19025,"IA","19","025",10159,0.97539127866916,497,0.1424352790629,6.20859002609663,6.96979066990159,7.84619881549743,6.1,292.96875,15,5120,1,0,0,0,9 +"2959",2010,19027,"IA","19","027",20823,0.985736925515055,931,0.123853431301926,6.83625927727707,7.75662333453886,8.63194942871443,4.38461538461539,308.26140567201,35,11354,1,0,0,0,9 +"2960",2010,19029,"IA","19","029",13927,0.98664464708839,621,0.136641056939757,6.43133108193348,7.26961674960817,8.2358907259285,6.36923076923077,475.624256837099,36,7569,1,0,0,0,9 +"2961",2010,19031,"IA","19","031",18453,0.987319135099984,756,0.134774833360429,6.62804137617953,7.71824095195932,8.54966038155374,5.47692307692308,238.549618320611,25,10480,1,0,0,0,9 +"2962",2010,19033,"IA","19","033",44097,0.969408349774361,2436,0.14266276617457,7.79811262882979,8.47261414801827,9.45320811613812,6.97692307692308,346.047974832875,88,25430,1,0,0,0,9 +"2963",2010,19035,"IA","19","035",12110,0.981420313790256,537,0.148885218827415,6.28599809450886,7.0825485693553,8.07464907506665,4.57692307692308,359.604435121367,24,6674,1,0,0,0,9 +"2964",2010,19039,"IA","19","039",9321,0.982083467439116,512,0.131101813110181,6.23832462503951,6.97541392745595,7.84384863815247,7.80769230769231,270.583687669115,14,5174,1,0,0,0,9 +"2965",2010,19041,"IA","19","041",16633,0.98286538808393,798,0.137197138219203,6.68210859744981,7.50494206839617,8.44160720445964,5.97692307692308,372.538584353379,35,9395,1,0,0,0,9 +"2966",2010,19043,"IA","19","043",18080,0.988993362831858,779,0.144469026548673,6.65801104587075,7.57967882309046,8.49043845410742,7.26923076923077,268.817204301075,27,10044,1,0,0,0,9 +"2967",2010,19045,"IA","19","045",49091,0.956468599132224,2715,0.130431239942148,7.90654723236804,8.65886634973238,9.54716968769421,7.16923076923077,410.919745587079,115,27986,1,0,0,0,9 +"2968",2010,19047,"IA","19","047",17166,0.964464639403472,965,0.11977164161715,6.87212810133899,7.56060116276856,8.39366870513074,4.78461538461538,248.944690983873,23,9239,1,0,0,0,9 +"2969",2010,19049,"IA","19","049",66751,0.951041931956076,2920,0.101226947910893,7.97933889526233,9.25004173882773,9.91630505624674,4.63846153846154,188.103711235384,74,39340,1,0,0,0,9 +"2970",2010,19053,"IA","19","053",8419,0.964841430098587,866,0.121392089321772,6.76388490856244,6.70318811324086,7.71289096149013,6.17692307692308,478.677110530896,22,4596,1,0,0,0,9 +"2971",2010,19055,"IA","19","055",17763,0.990542138152339,744,0.127343354163148,6.61204103483309,7.6275443904885,8.48899945704546,6.16923076923077,201.025228666198,20,9949,1,0,0,0,9 +"2972",2010,19057,"IA","19","057",40243,0.926595929726909,2044,0.137241259349452,7.6226639513236,8.4446224985814,9.35426754078282,7.60769230769231,436.319211134866,100,22919,1,0,0,0,9 +"2973",2010,19059,"IA","19","059",16669,0.990281360609515,640,0.166176735257064,6.46146817635372,7.49108759353488,8.44333134281778,6.98461538461538,349.354224010163,33,9446,1,0,0,0,9 +"2974",2010,19061,"IA","19","061",93933,0.952476765354029,6744,0.123321942235423,8.81640849968169,9.29633456514304,10.1987657016095,5.89230769230769,298.490859876154,161,53938,1,0,0,0,9 +"2975",2010,19063,"IA","19","063",10277,0.969057117835944,614,0.131653206188576,6.41999492814714,6.95177216439891,7.88683299895506,7.17692307692308,376.141859215476,21,5583,1,0,0,0,9 +"2976",2010,19065,"IA","19","065",20860,0.979482262703739,1294,0.131351869606903,7.16549347506085,7.69074316354187,8.62191350218664,7.28461538461538,401.64149131232,46,11453,1,0,0,0,9 +"2977",2010,19067,"IA","19","067",16308,0.969217561932794,774,0.135638950208487,6.65157187358973,7.5005294853953,8.38981426208641,7.40769230769231,376.841384035629,33,8757,1,0,0,0,9 +"2978",2010,19069,"IA","19","069",10706,0.983373809079021,495,0.137212777881562,6.20455776256869,7.07072410726028,7.94767857130157,6.33846153846154,341.005967604433,20,5865,1,0,0,0,9 +"2979",2010,19071,"IA","19","071",7434,0.98547215496368,313,0.151869787463008,5.74620319054015,6.68959926917897,7.61579107203583,6,364.166059723234,15,4119,1,0,0,0,9 +"2980",2010,19073,"IA","19","073",9362,0.987609485152745,382,0.141636402478103,5.94542060860658,6.85646198459459,7.81237820598861,6,357.497517378352,18,5035,1,0,0,0,9 +"2981",2010,19075,"IA","19","075",12464,0.991896662387676,540,0.13551026957638,6.29156913955832,7.28824440102012,8.13064796816058,5.8,305.543430816237,21,6873,1,0,0,0,9 +"2982",2010,19077,"IA","19","077",10942,0.989124474501919,350,0.140559312739901,5.85793315448346,7.13966033596492,7.98036576511125,6.57692307692308,319.811479548897,19,5941,1,0,0,0,9 +"2983",2010,19079,"IA","19","079",15634,0.967954458232058,701,0.130165024945631,6.55250788703459,7.52617891334615,8.36007143564403,7.42307692307692,251.48605395519,22,8748,1,0,0,0,9 +"2984",2010,19081,"IA","19","081",11300,0.985840707964602,452,0.144690265486726,6.11368217983223,7.0647590277918,8.02649693894541,6.76153846153846,316.906987799081,20,6311,1,0,0,0,9 +"2985",2010,19083,"IA","19","083",17543,0.976058826882517,884,0.130593399076555,6.78445706263764,7.49886973397693,8.41737285613403,6.63076923076923,420.621225194133,39,9272,1,0,0,0,9 +"2986",2010,19085,"IA","19","085",14908,0.989602897773008,638,0.133015830426617,6.45833828334479,7.49052940206071,8.32020459757888,5.67692307692308,372.23823246878,31,8328,1,0,0,0,9 +"2987",2010,19087,"IA","19","087",20112,0.942969371519491,1254,0.130568814638027,7.13409372119287,7.82963038915019,8.61812390999468,8.43846153846154,298.583859409657,35,11722,1,0,0,0,9 +"2988",2010,19091,"IA","19","091",9791,0.985905423347973,482,0.128281074456133,6.1779441140506,6.89770494312864,7.86978390253015,5.26153846153846,243.948207918934,13,5329,1,0,0,0,9 +"2989",2010,19095,"IA","19","095",16335,0.987633914906642,667,0.127027854300582,6.50279004591562,7.60738142563979,8.40871671508015,5.6,206.904061853425,19,9183,1,0,0,0,9 +"2990",2010,19097,"IA","19","097",19831,0.983762795623014,847,0.135192375573597,6.74170069465205,7.74932246466036,8.61013693705898,7.35384615384615,325.173877698492,36,11071,1,0,0,0,9 +"2991",2010,19099,"IA","19","099",36810,0.976229285520239,1788,0.130182015756588,7.48885295573346,8.454679286027,9.22818029010451,7.46923076923077,371.367561043543,80,21542,1,0,0,0,9 +"2992",2010,19101,"IA","19","101",16835,0.892070092070092,1535,0.198336798336798,7.3362856600213,7.4151751096133,8.47345026846832,7.23846153846154,338.301179482491,37,10937,1,0,0,0,9 +"2993",2010,19103,"IA","19","103",131344,0.884311426483128,21169,0.100103544889755,9.96029312635758,9.61320209421423,10.6648072681991,4.30769230769231,191.515626982937,166,86677,1,0,0,0,9 +"2994",2010,19105,"IA","19","105",20687,0.970222845265142,975,0.136752549910572,6.88243747099785,7.83991936001258,8.61159386683772,6.46153846153846,315.535996014282,38,12043,1,0,0,0,9 +"2995",2010,19107,"IA","19","107",10508,0.989531785306433,461,0.131994670727065,6.13339804299665,7.03085747611612,7.94342776787637,6.63076923076923,396.141922149501,23,5806,1,0,0,0,9 +"2996",2010,19109,"IA","19","109",15524,0.987374388044318,571,0.140105642875548,6.34738920965601,7.33236920592906,8.29804166137157,5.16923076923077,205.11583011583,17,8288,1,0,0,0,9 +"2997",2010,19111,"IA","19","111",35850,0.952663877266388,1956,0.144825662482566,7.57865685059476,8.33926198292358,9.20994029195484,9.02307692307692,462.543512469601,97,20971,1,0,0,0,9 +"2998",2010,19113,"IA","19","113",211713,0.926390916004213,14203,0.116261164878869,9.56120848888113,10.2231405642301,11.0494922035068,6.09230769230769,251.497005988024,315,125250,1,0,0,0,9 +"2999",2010,19115,"IA","19","115",11382,0.974257599718854,537,0.124758390441047,6.28599809450886,7.24136628332232,8.0481491016652,7.39230769230769,416.538105522987,27,6482,1,0,0,0,9 +"3000",2010,19117,"IA","19","117",8897,0.991907384511633,383,0.136675283803529,5.94803498918065,6.86066367144829,7.76472054477148,6.20769230769231,401.521555367709,19,4732,1,0,0,0,9 +"3001",2010,19119,"IA","19","119",11569,0.993603595816406,503,0.122914685798254,6.22059017009974,7.1708884785125,8.01598781102724,3.92307692307692,340.743144572449,21,6163,1,0,0,0,9 +"3002",2010,19121,"IA","19","121",15738,0.987800228745711,595,0.126191383911552,6.38856140554563,7.67229245562876,8.39412119382624,6.52307692307692,307.272106520997,27,8787,1,0,0,0,9 +"3003",2010,19123,"IA","19","123",22409,0.9692088000357,1489,0.124503547681735,7.30586003268401,7.85166117788927,8.73777346032728,6.88461538461539,331.15193566191,42,12683,1,0,0,0,9 +"3004",2010,19125,"IA","19","125",33225,0.975741158765989,2208,0.120270880361174,7.69984240739699,8.26924452118306,9.1248914101437,6.03846153846154,355.2015499704,66,18581,1,0,0,0,9 +"3005",2010,19127,"IA","19","127",40722,0.953636854771377,2312,0.13159962673739,7.74586822979227,8.42726848388825,9.31488055125011,6.95384615384615,336.402266288952,76,22592,1,0,0,0,9 +"3006",2010,19129,"IA","19","129",15076,0.985141947466171,626,0.151034757230034,6.4393503711001,7.54960916515453,8.39162996844089,5.33076923076923,574.647887323944,51,8875,1,0,0,0,9 +"3007",2010,19133,"IA","19","133",9249,0.979349118823657,337,0.138068980430317,5.82008293035236,6.82871207164168,7.76514490293613,7.31538461538462,311.26789790413,15,4819,1,0,0,0,9 +"3008",2010,19135,"IA","19","135",7993,0.987489052921306,384,0.135993994745402,5.95064255258773,6.83947643822884,7.67693714581808,7.34615384615385,411.428571428571,18,4375,1,0,0,0,9 +"3009",2010,19137,"IA","19","137",10690,0.98933582787652,413,0.141627689429373,6.02344759296103,7.10987946307227,7.97177612288063,8.22307692307692,443.761734084315,26,5859,1,0,0,0,9 +"3010",2010,19139,"IA","19","139",42804,0.965657415194842,2328,0.126062984767779,7.75276480885133,8.59932602095476,9.4136076932856,8.15384615384615,300.471008608088,74,24628,1,0,0,0,9 +"3011",2010,19141,"IA","19","141",14405,0.983963901423117,648,0.131412703922249,6.47389069635227,7.29233717617388,8.2393294279018,4.74615384615385,270.374662031672,21,7767,1,0,0,0,9 +"3012",2010,19145,"IA","19","145",15920,0.95891959798995,775,0.138756281407035,6.65286302935335,7.52725591937378,8.29204763743135,6.92307692307692,336.587007741501,30,8913,1,0,0,0,9 +"3013",2010,19147,"IA","19","147",9398,0.985848052777187,539,0.130453287933603,6.289715570909,6.8001700683022,7.80628928926703,6.13846153846154,298.329355608592,15,5028,1,0,0,0,9 +"3014",2010,19149,"IA","19","149",24978,0.984546400832733,999,0.129073584754584,6.90675477864855,7.98989937494294,8.82907995256484,4.56153846153846,282.916213275299,39,13785,1,0,0,0,9 +"3015",2010,19151,"IA","19","151",7290,0.987654320987654,303,0.145679012345679,5.71373280550937,6.53524127101366,7.55903825544338,5.18461538461538,427.565392354125,17,3976,1,0,0,0,9 +"3016",2010,19153,"IA","19","153",432360,0.88648811175872,28755,0.109811268387455,10.2665669441479,10.9963835342081,11.8042434195843,6.06923076923077,299.054198348552,787,263163,1,0,0,0,9 +"3017",2010,19155,"IA","19","155",93363,0.966764135685443,5881,0.126806122339685,8.67948209445996,9.33060920436713,10.2189185379403,5.88461538461539,361.71345684226,197,54463,1,0,0,0,9 +"3018",2010,19157,"IA","19","157",18926,0.964546127021029,1721,0.127126704005072,7.45066079621154,7.59135704669855,8.5769703954521,5.90769230769231,348.563353744701,37,10615,1,0,0,0,9 +"3019",2010,19161,"IA","19","161",10355,0.990246257846451,379,0.142056977305649,5.93753620508243,6.99117688712121,7.8991534833431,4.76923076923077,361.271676300578,20,5536,1,0,0,0,9 +"3020",2010,19163,"IA","19","163",165291,0.889485815924642,10388,0.126903461168485,9.24840657278264,9.94869989535768,10.8181369381382,6.75384615384615,356.311367547323,352,98790,1,0,0,0,9 +"3021",2010,19165,"IA","19","165",12179,0.988751128992528,463,0.13605386320716,6.13772705408623,7.22983877815125,8.08116577772543,4.65384615384615,337.993547395913,22,6509,1,0,0,0,9 +"3022",2010,19167,"IA","19","167",33755,0.97994371204266,2987,0.103984594874833,8.00202481821611,8.1376881849776,9.09054280852059,4,153.618258627311,28,18227,1,0,0,0,9 +"3023",2010,19169,"IA","19","169",89661,0.904417751307703,19107,0.0925932122104371,9.85781003903948,9.02569611981258,10.2037032499252,4.29230769230769,158.189340472134,91,57526,1,0,0,0,9 +"3024",2010,19171,"IA","19","171",17718,0.900327350716785,790,0.129472852466418,6.67203294546107,7.64873978895624,8.46568934854912,6.53846153846154,345.803206538824,33,9543,1,0,0,0,9 +"3025",2010,19175,"IA","19","175",12513,0.980580196595541,707,0.131862862622872,6.56103066589657,7.22329567956231,8.15478757276852,5.74615384615385,403.923831506059,28,6932,1,0,0,0,9 +"3026",2010,19179,"IA","19","179",35679,0.962667115109728,2331,0.129908349449256,7.75405263903576,8.33615081612066,9.23863624113103,8.06923076923077,462.737457379445,95,20530,1,0,0,0,9 +"3027",2010,19181,"IA","19","181",46341,0.982607194492998,2778,0.122073325996418,7.92948652331429,8.7285879956959,9.51951481976606,5.72307692307692,334.586466165414,89,26600,1,0,0,0,9 +"3028",2010,19183,"IA","19","183",21687,0.981878544750311,941,0.133029003550514,6.84694313958538,7.85709386490249,8.69934806765309,5.2,324.918770307423,39,12003,1,0,0,0,9 +"3029",2010,19187,"IA","19","187",37882,0.942109709096669,2783,0.13146085211974,7.93128476152589,8.28273588020175,9.23912217340163,7.08461538461538,481.276069120411,105,21817,1,0,0,0,9 +"3030",2010,19189,"IA","19","189",10845,0.977962194559705,696,0.141908713692946,6.54534966033442,7.05012252026906,7.98684490116138,6.80769230769231,328.461159467893,20,6089,1,0,0,0,9 +"3031",2010,19191,"IA","19","191",21076,0.978601252609603,2285,0.122603909660277,7.7341213033283,7.650168700845,8.67948209445996,5.60769230769231,158.597662771285,19,11980,1,0,0,0,9 +"3032",2010,19193,"IA","19","193",102393,0.909241842704091,7412,0.116550936099147,8.91085558740525,9.42359519054002,10.2878311640222,6.71538461538462,336.493295755402,197,58545,1,0,0,0,9 +"3033",2010,19197,"IA","19","197",13185,0.985589685248388,583,0.137428896473265,6.36818718635049,7.22620901010067,8.13505390861157,7.27692307692308,381.949356344603,27,7069,1,0,0,0,9 +"3034",2010,16001,"ID","16","001",393369,0.943943218708134,25705,0.111427184145167,10.1544408044896,10.9303531815207,11.675486393586,8.13076923076923,229.428281561123,545,237547,0,0,0,0,9 +"3035",2010,16005,"ID","16","005",83026,0.933502758172139,7267,0.11101341748368,8.89109883061664,9.12608881952859,10.0944384360281,7.78461538461538,368.258988015979,177,48064,0,0,0,0,9 +"3036",2010,16009,"ID","16","009",9291,0.889785814228824,416,0.159186309331611,6.03068526026126,6.92067150424868,7.8578675593318,13.2769230769231,560.278207109737,29,5176,0,0,0,0,9 +"3037",2010,16011,"ID","16","011",45764,0.907503714710253,2602,0.105607027357748,7.86403565907245,8.54539184577492,9.40063009841931,7.00769230769231,398.224582071597,96,24107,0,0,0,0,9 +"3038",2010,16013,"ID","16","013",21296,0.969383921863261,887,0.151202103681443,6.78784498230958,7.98684490116138,8.79026911147866,9.41538461538462,254.891671039808,34,13339,0,0,0,0,9 +"3039",2010,16015,"ID","16","015",7005,0.978015703069236,210,0.20842255531763,5.34710753071747,6.68710860786651,7.63916117165917,10.4153846153846,376.559190397741,16,4249,0,0,0,0,9 +"3040",2010,16017,"ID","16","017",40904,0.979341873655388,1697,0.177782123997653,7.43661726523423,8.43402895015547,9.39880965935637,12.7076923076923,393.293314013662,95,24155,0,0,0,0,9 +"3041",2010,16019,"ID","16","019",104682,0.966804226132477,6281,0.103866949427791,8.74528448245438,9.3943272080892,10.2692064761218,6.73846153846154,286.757038581856,165,57540,0,0,0,0,9 +"3042",2010,16021,"ID","16","021",10998,0.967721403891617,422,0.160756501182033,6.04500531403601,7.08673793451058,8.03365842788615,13.2153846153846,343.586387434555,21,6112,0,0,0,0,9 +"3043",2010,16027,"ID","16","027",189365,0.956639294484197,12032,0.0979906529717741,9.39532504618962,10.1013543206655,10.8669862451748,11.1076923076923,309.801339890795,320,103292,0,0,0,0,9 +"3044",2010,16031,"ID","16","031",23080,0.97001733102253,1284,0.101169844020797,7.15773548424991,7.85709386490249,8.65956043270316,6.89230769230769,290.077638426755,34,11721,0,0,0,0,9 +"3045",2010,16035,"ID","16","035",8726,0.960806784322714,340,0.176369470547788,5.82894561761021,6.8596149036542,7.71912984090673,14.2384615384615,454.545454545455,23,5060,0,0,0,0,9 +"3046",2010,16039,"ID","16","039",27125,0.911336405529954,2726,0.0904700460829493,7.91059061225648,8.05674377497531,8.93300459157855,8.48461538461538,257.440663066683,41,15926,0,0,0,0,9 +"3047",2010,16043,"ID","16","043",13232,0.977403264812576,683,0.10912938331318,6.52649485957079,7.27031288607902,8.0925452638913,8.53076923076923,260.529743812419,18,6909,0,0,0,0,9 +"3048",2010,16045,"ID","16","045",16686,0.979863358504135,768,0.137959966438931,6.64378973314767,7.53689712956617,8.43944784279138,11.2923076923077,329.74280061552,30,9098,0,0,0,0,9 +"3049",2010,16047,"ID","16","047",15470,0.968131868131868,920,0.104266321913381,6.82437367004309,7.47250074473756,8.2630748358026,7.23846153846154,393.652355763317,32,8129,0,0,0,0,9 +"3050",2010,16049,"ID","16","049",16311,0.955490160014714,660,0.175403102200969,6.49223983502047,7.41457288135059,8.37309184744198,12.2769230769231,418.502202643172,38,9080,0,0,0,0,9 +"3051",2010,16051,"ID","16","051",26222,0.976088780413393,1380,0.0935474029440928,7.22983877815125,8.02486215028641,8.82878708391433,6.84615384615385,226.773957571324,31,13670,0,0,0,0,9 +"3052",2010,16053,"ID","16","053",22438,0.963588555129691,1443,0.102772083073358,7.27447955877387,7.86940171257709,8.68963274835574,7.81538461538462,342.717258261934,42,12255,0,0,0,0,9 +"3053",2010,16055,"ID","16","055",138860,0.967787699841567,8304,0.132817225983004,9.02449260540567,9.7538848483049,10.624128297405,10.7230769230769,324.913792030275,261,80329,0,0,0,0,9 +"3054",2010,16057,"ID","16","057",37258,0.954721133716249,6689,0.105614901497665,8.80821966511841,8.19533366716287,9.32963337816417,6.43846153846154,228.871747054336,54,23594,0,0,0,0,9 +"3055",2010,16059,"ID","16","059",7952,0.982645875251509,292,0.186368209255533,5.67675380226828,6.62273632394984,7.70885960104718,10.0615384615385,448.028673835125,20,4464,0,0,0,0,9 +"3056",2010,16065,"ID","16","065",37588,0.974805789081622,9915,0.0494306693625625,9.2018040409539,7.79564653633459,9.29660980712836,5.2,103.608270642822,23,22199,0,0,0,0,9 +"3057",2010,16067,"ID","16","067",20084,0.963951404102768,1120,0.115714001194981,7.02108396428914,7.66152708135852,8.56121007683301,7.22307692307692,319.759240101571,34,10633,0,0,0,0,9 +"3058",2010,16069,"ID","16","069",39317,0.92143347661317,2770,0.130096395961035,7.92660259918138,8.41405243249672,9.33078652505205,6.5,404.336621345419,91,22506,0,0,0,0,9 +"3059",2010,16073,"ID","16","073",11474,0.92731392713962,628,0.119748997734007,6.4425401664682,7.19818357710194,7.99429498641598,4.1,336.107554417414,21,6248,0,0,0,0,9 +"3060",2010,16075,"ID","16","075",22640,0.96678445229682,1147,0.115547703180212,7.04490511712937,7.90248743716286,8.72583205652757,9.53846153846154,405.864325354096,49,12073,0,0,0,0,9 +"3061",2010,16079,"ID","16","079",12750,0.972078431372549,520,0.163137254901961,6.25382881157547,7.29369772060144,8.18116085802341,15.4692307692308,578.671810416093,42,7258,0,0,0,0,9 +"3062",2010,16083,"ID","16","083",77547,0.963041768217984,5316,0.111558151830503,8.57847641983314,9.0851172272221,9.9849753693824,8.29230769230769,308.735114556977,133,43079,0,0,0,0,9 +"3063",2010,16085,"ID","16","085",9788,0.98263179403351,363,0.194830404577033,5.89440283426485,7.0825485693553,7.97522083865341,15.6076923076923,327.868852459016,20,6100,0,0,0,0,9 +"3064",2010,16087,"ID","16","087",10177,0.969146113785988,415,0.143657266384986,6.0282785202307,7.02997291170639,7.90137735379262,10.1769230769231,524.835988753515,28,5335,0,0,0,0,9 +"3065",2010,17001,"IL","17","001",67158,0.947214032579886,4129,0.126403406891212,8.32579052588609,8.97106743873209,9.86557797946291,7.76923076923077,357.894736842105,136,38000,1,0,0,0,9 +"3066",2010,17003,"IL","17","003",8205,0.62169408897014,511,0.138939670932358,6.2363695902037,6.81234509417748,7.72090525193678,11.8615384615385,466.595970307529,22,4715,1,0,0,0,9 +"3067",2010,17005,"IL","17","005",17789,0.921131036033504,1298,0.127213446511889,7.16857989726403,7.77106708606541,8.51036996606811,10.1846153846154,356.979405034325,39,10925,1,0,0,0,9 +"3068",2010,17007,"IL","17","007",54094,0.949495322956335,2805,0.110271009723814,7.9391588179568,8.99044155082686,9.63423461555271,13.9,254.901960784314,78,30600,1,0,0,0,9 +"3069",2010,17011,"IL","17","011",34959,0.977030235418633,1639,0.136130896192683,7.40184157874383,8.34830105493394,9.190545744648,10.8846153846154,386.296635152994,76,19674,1,0,0,0,9 +"3070",2010,17015,"IL","17","015",15395,0.97999350438454,710,0.157713543358233,6.56526497003536,7.41878088275079,8.34735341212434,10.5153846153846,476.135175937754,41,8611,1,0,0,0,9 +"3071",2010,17017,"IL","17","017",13632,0.951804577464789,770,0.119865023474178,6.64639051484773,7.4599147662411,8.23429963569625,8.35384615384615,322.248002062387,25,7758,1,0,0,0,9 +"3072",2010,17019,"IL","17","019",201558,0.764841881741236,33977,0.0974855872751268,10.4334391041006,9.96589881265752,11.0566827189745,8.23076923076923,201.559350635146,258,128002,1,0,0,0,9 +"3073",2010,17021,"IL","17","021",34767,0.974659878620531,1943,0.127505968303276,7.57198844937744,8.37031599555548,9.15683410445304,10.2076923076923,409.406360776874,82,20029,1,0,0,0,9 +"3074",2010,17023,"IL","17","023",16291,0.989442023202996,871,0.128230311214781,6.7696419768525,7.61184239958042,8.439663988907,11.7615384615385,430.988040081888,40,9281,1,0,0,0,9 +"3075",2010,17025,"IL","17","025",13822,0.98603675300246,725,0.136449139053683,6.58617165485467,7.37713371283395,8.25634777291802,11.3846153846154,435.172148982465,34,7813,1,0,0,0,9 +"3076",2010,17027,"IL","17","027",37833,0.951550233922766,2288,0.116644199508366,7.73543335249969,8.52377150677636,9.25922576970599,7.33846153846154,237.060450414856,54,22779,1,0,0,0,9 +"3077",2010,17029,"IL","17","029",53865,0.942095980692472,9108,0.109551656920078,9.11690842718363,8.55487425838393,9.73180915584065,9.93846153846154,409.761427790931,135,32946,1,0,0,0,9 +"3078",2010,17031,"IL","17","031",5198977,0.666601717991828,371407,0.110381715479795,12.8250537753268,13.4721776406016,14.309648717272,10.9846153846154,325.474572299039,10416,3200250,1,0,0,0,9 +"3079",2010,17033,"IL","17","033",19801,0.939144487652139,1193,0.130346952174133,7.08422642209792,7.83082299513532,8.59062950948942,8.67692307692308,471.30112775627,56,11882,1,0,0,0,9 +"3080",2010,17035,"IL","17","035",11053,0.988148014113815,616,0.133719352212069,6.42324696353352,7.19443685110033,8.04302088529828,9.2,316.105579263474,20,6327,1,0,0,0,9 +"3081",2010,17037,"IL","17","037",105151,0.897471255622866,15976,0.0933324457209156,9.67884287509565,9.38404154647653,10.3841219741379,10.6384615384615,215.540302979348,141,65417,1,0,0,0,9 +"3082",2010,17039,"IL","17","039",16589,0.984025559105431,786,0.130689010790283,6.66695679242921,7.65917136766606,8.45786772533142,8.82307692307692,250.705108116578,24,9573,1,0,0,0,9 +"3083",2010,17041,"IL","17","041",19977,0.985032787705862,1132,0.122490864494168,7.03174125876313,7.75405263903576,8.6278397115033,8.86153846153846,267.642073333928,30,11209,1,0,0,0,9 +"3084",2010,17043,"IL","17","043",917996,0.836484036967481,54187,0.124338232410599,10.90019630626,11.7393436488181,12.5577008762073,8.97692307692308,210.550001607252,1179,559962,1,0,0,0,9 +"3085",2010,17045,"IL","17","045",18509,0.990004862499325,911,0.140850397104112,6.81454289725996,7.69211333959547,8.56464913257253,11.2769230769231,444.402420574887,47,10576,1,0,0,0,9 +"3086",2010,17047,"IL","17","047",6739,0.986941682742247,317,0.141415640302716,5.75890177387728,6.74875954749168,7.54591815120932,8.82307692307692,524.246395806029,20,3815,1,0,0,0,9 +"3087",2010,17049,"IL","17","049",34222,0.987785634971656,2000,0.122552743848986,7.60090245954208,8.29329935871132,9.18307194482199,7.93076923076923,365.835069356232,72,19681,1,0,0,0,9 +"3088",2010,17051,"IL","17","051",22140,0.947154471544715,1432,0.121183378500452,7.26682734752059,7.93951526066241,8.65990729361541,10.1461538461538,346.020761245675,45,13005,1,0,0,0,9 +"3089",2010,17053,"IL","17","053",14076,0.984228473998295,656,0.122549019607843,6.48616078894409,7.43425738213314,8.26410576372896,9.53076923076923,424.491896063802,33,7774,1,0,0,0,9 +"3090",2010,17055,"IL","17","055",40035,0.986786561758461,2162,0.133383289621581,7.67878899819915,8.51177855871474,9.34565766892381,12.4384615384615,568.512466985989,127,22339,1,0,0,0,9 +"3091",2010,17057,"IL","17","057",37076,0.950857697702017,2113,0.13221490991477,7.65586401761606,8.46968220874519,9.20863892533642,11.8,394.893929653779,86,21778,1,0,0,0,9 +"3092",2010,17059,"IL","17","059",5574,0.989056332974525,285,0.143702906350915,5.65248918026865,6.46614472423762,7.36454701425564,9.68461538461538,608.779237423903,19,3121,1,0,0,0,9 +"3093",2010,17061,"IL","17","061",13890,0.985097192224622,736,0.126349892008639,6.60123011872888,7.42773884053289,8.24590926477409,9.36153846153846,326.756315194169,26,7957,1,0,0,0,9 +"3094",2010,17063,"IL","17","063",50155,0.973043564948659,2588,0.110517396072176,7.85864065562079,8.90354343566472,9.59838800604728,13.3692307692308,290.442418101993,86,29610,1,0,0,0,9 +"3095",2010,17065,"IL","17","065",8446,0.987331281079801,395,0.135448733128108,5.97888576490112,6.83410873881384,7.7621706071382,9.50769230769231,536.135535063264,25,4663,1,0,0,0,9 +"3096",2010,17067,"IL","17","067",19091,0.987952438321722,879,0.146404064742549,6.77878489768518,7.65254569269392,8.57565076098781,10.6538461538462,309.742819598273,33,10654,1,0,0,0,9 +"3097",2010,17069,"IL","17","069",4316,0.980537534754402,182,0.165199258572753,5.2040066870768,6.22059017009974,7.11720550316434,10.9230769230769,527.383367139959,13,2465,1,0,0,0,9 +"3098",2010,17071,"IL","17","071",7344,0.988425925925926,300,0.153050108932462,5.7037824746562,6.69084227741856,7.629489916394,9.39230769230769,409.934892693513,17,4147,1,0,0,0,9 +"3099",2010,17073,"IL","17","073",50459,0.971779068154343,2391,0.137438316256763,7.77946696745832,8.70334075304372,9.56324822934567,9.20769230769231,305.102577590742,87,28515,1,0,0,0,9 +"3100",2010,17075,"IL","17","075",29701,0.98080872697889,1372,0.133968553247365,7.22402480828583,8.13593277200489,9.01748351326684,10.2307692307692,561.626274342226,92,16381,1,0,0,0,9 +"3101",2010,17077,"IL","17","077",60371,0.803150519289063,11504,0.104172533169899,9.35045007996083,8.68304655550289,9.83354780433145,8.29230769230769,275.333230405023,107,38862,1,0,0,0,9 +"3102",2010,17079,"IL","17","079",9725,0.991259640102828,504,0.13439588688946,6.22257626807137,6.99484998583307,7.9043348420851,8.96153846153846,287.098510676476,16,5573,1,0,0,0,9 +"3103",2010,17081,"IL","17","081",38757,0.897541089351601,2275,0.13478855432567,7.72973533138505,8.50936261230105,9.27743811550868,10.2692307692308,397.727272727273,91,22880,1,0,0,0,9 +"3104",2010,17083,"IL","17","083",22997,0.98456320389616,1533,0.126625211984172,7.33498187887181,7.93092537248339,8.81358720447004,9.22307692307692,469.5885509839,63,13416,1,0,0,0,9 +"3105",2010,17085,"IL","17","085",22647,0.986399964675233,964,0.165938093345697,6.87109129461055,7.81762544305337,8.74878098951311,8.97692307692308,252.028038119241,32,12697,1,0,0,0,9 +"3106",2010,17087,"IL","17","087",12598,0.908080647721861,771,0.136608985553262,6.64768837356333,7.41637847919293,8.04237800517328,12.5923076923077,353.912701533622,27,7629,1,0,0,0,9 +"3107",2010,17089,"IL","17","089",516060,0.883653063597256,29673,0.105569119869783,10.297992820408,11.2377120019898,11.9269934618857,11.1615384615385,220.25413430549,667,302832,1,0,0,0,9 +"3108",2010,17091,"IL","17","091",113420,0.822941280197496,7841,0.118559336977605,8.96712165623092,9.5591645793702,10.4125916954038,12.6769230769231,357.795371498173,235,65680,1,0,0,0,9 +"3109",2010,17093,"IL","17","093",115369,0.896930717957164,5378,0.0865050403487939,8.59007183682881,9.91011553882635,10.4547542982996,10.1923076923077,171.31885984345,116,67710,1,0,0,0,9 +"3110",2010,17095,"IL","17","095",52911,0.903876320613861,3673,0.138440021923608,8.20876404581967,8.71078434046842,9.59478611286027,9.64615384615385,444.067132501796,136,30626,1,0,0,0,9 +"3111",2010,17097,"IL","17","097",704179,0.843487238330027,42337,0.11443539213751,10.6534166871951,11.5028246227908,12.2475887990663,10.0076923076923,235.377671992456,981,416777,1,0,0,0,9 +"3112",2010,17099,"IL","17","099",113812,0.96522335078902,6505,0.12775454257899,8.7803263909466,9.53293098891615,10.3761439101846,12.1384615384615,379.854111807258,251,66078,1,0,0,0,9 +"3113",2010,17101,"IL","17","101",16940,0.893034238488784,1170,0.116942148760331,7.0647590277918,7.76089319585102,8.33375100695358,10.8153846153846,467.111534795043,49,10490,1,0,0,0,9 +"3114",2010,17103,"IL","17","103",35978,0.935182611595975,2005,0.13480460281283,7.60339933974067,8.44848599340645,9.18952523226226,10.0846153846154,331.232460781157,72,21737,1,0,0,0,9 +"3115",2010,17105,"IL","17","105",38862,0.937265194791827,2251,0.125366682105913,7.71912984090673,8.48776438072542,9.32357976758269,10.0923076923077,377.293030920682,87,23059,1,0,0,0,9 +"3116",2010,17107,"IL","17","107",30282,0.907634898619642,2258,0.121392246218876,7.72223474470961,8.26616443661249,9.07429152751291,8.8,384.949034916504,71,18444,1,0,0,0,9 +"3117",2010,17109,"IL","17","109",32631,0.920351812693451,6839,0.10683092764549,8.8303968010981,7.93666015522543,9.17823031805795,8.63076923076923,207.499629464947,42,20241,1,0,0,0,9 +"3118",2010,17111,"IL","17","111",309121,0.952394046344312,15606,0.114819116138988,9.65541073467671,10.7563911002299,11.4370590245401,10.6384615384615,269.864743790412,500,185278,1,0,0,0,9 +"3119",2010,17113,"IL","17","113",169815,0.867373318022554,21125,0.103294761946824,9.95821245222537,9.94721731539745,10.8923779768246,7.12307692307692,243.013365735115,256,105344,1,0,0,0,9 +"3120",2010,17115,"IL","17","115",110786,0.808459552651057,7122,0.135784304876067,8.87094386383772,9.45532368989485,10.4066841491376,11.1846153846154,441.704385828001,283,64070,1,0,0,0,9 +"3121",2010,17117,"IL","17","117",47798,0.983409347671451,2749,0.134859199129671,7.91899248816525,8.65347080970879,9.53690656247793,10.3923076923077,341.173054587689,94,27552,1,0,0,0,9 +"3122",2010,17119,"IL","17","119",269315,0.900395447709931,19969,0.122154354566214,9.90193635004339,10.4308162484011,11.317567299664,9.87692307692308,393.936587323639,638,161955,1,0,0,0,9 +"3123",2010,17121,"IL","17","121",39416,0.942459914755429,2196,0.133828901968744,7.69439280262942,8.41405243249672,9.33140689995563,10.9615384615385,589.37328474378,131,22227,1,0,0,0,9 +"3124",2010,17123,"IL","17","123",12637,0.986943103584712,581,0.148373822901005,6.36475075685191,7.29369772060144,8.17723488551019,10.3384615384615,505.83110861318,36,7117,1,0,0,0,9 +"3125",2010,17125,"IL","17","125",14651,0.987372875571633,694,0.142311105044024,6.5424719605068,7.47533923656674,8.31922993863233,12.3153846153846,435.413642960813,36,8268,1,0,0,0,9 +"3126",2010,17127,"IL","17","127",15380,0.92295188556567,771,0.128738621586476,6.64768837356333,7.56423847517049,8.40626163070896,9.58461538461538,495.049504950495,43,8686,1,0,0,0,9 +"3127",2010,17129,"IL","17","129",12696,0.984562066792691,602,0.145715185885318,6.40025744530882,7.3790081276283,8.24038511551633,7.66923076923077,418.015102481122,31,7416,1,0,0,0,9 +"3128",2010,17131,"IL","17","131",16410,0.989640463132236,766,0.142413162705667,6.64118216974059,7.5923661285198,8.43750042250699,10.0153846153846,332.510994315135,31,9323,1,0,0,0,9 +"3129",2010,17133,"IL","17","133",33051,0.988048773108227,1640,0.123596865450365,7.40245152081824,8.39840965542627,9.19176898639075,7.36923076923077,245.851259987707,48,19524,1,0,0,0,9 +"3130",2010,17135,"IL","17","135",30095,0.95939524838013,1715,0.127994683502243,7.44716835960004,8.25478892614873,8.98807143807263,12.4384615384615,466.423152570947,83,17795,1,0,0,0,9 +"3131",2010,17137,"IL","17","137",35499,0.922673878137412,2530,0.1315811713006,7.83597458172157,8.31605572036464,9.21840774305394,8.5,301.392144668229,63,20903,1,0,0,0,9 +"3132",2010,17139,"IL","17","139",14863,0.990513355311848,760,0.126354033506022,6.63331843328038,7.4265490723973,8.33973976601914,8.60769230769231,305.885231861006,25,8173,1,0,0,0,9 +"3133",2010,17141,"IL","17","141",53420,0.977180831149382,2759,0.125982777985773,7.92262357421729,8.84893999503012,9.64160317290549,12.5230769230769,325.298461338278,100,30741,1,0,0,0,9 +"3134",2010,17143,"IL","17","143",186224,0.769063063837099,13334,0.124661697740356,9.498072443178,10.0313969211582,10.9385030986762,10.6230769230769,378.808574186381,416,109818,1,0,0,0,9 +"3135",2010,17145,"IL","17","145",22316,0.899175479476609,1606,0.125156838143036,7.38150189450671,7.99361999482774,8.65137437288226,11.1692307692308,391.374981538916,53,13542,1,0,0,0,9 +"3136",2010,17147,"IL","17","147",16710,0.988031119090365,731,0.137462597247157,6.59441345974978,7.6177595766085,8.485083137498,7.9,248.550124275062,24,9656,1,0,0,0,9 +"3137",2010,17149,"IL","17","149",16395,0.976090271424215,889,0.135041171088747,6.7900972355139,7.58933582317062,8.39931015075952,9.03076923076923,347.67492394611,32,9204,1,0,0,0,9 +"3138",2010,17153,"IL","17","153",6131,0.657478388517371,349,0.142717338117762,5.85507192220243,6.45990445437753,7.49108759353488,12.5692307692308,608.519269776876,21,3451,1,0,0,0,9 +"3139",2010,17157,"IL","17","157",33410,0.891439688715953,1960,0.129093085902424,7.58069975222456,8.41005331585833,9.03824633533766,8.87692307692308,361.184685769323,75,20765,1,0,0,0,9 +"3140",2010,17159,"IL","17","159",16193,0.982399802383746,897,0.126597912678318,6.7990558620588,7.53583046279837,8.41604600941128,8.98461538461538,374.820857678316,34,9071,1,0,0,0,9 +"3141",2010,17161,"IL","17","161",147613,0.871102138700521,9490,0.133484178222785,9.15799389160397,9.76617760157152,10.6742437124231,9.56153846153846,360.107916584648,311,86363,1,0,0,0,9 +"3142",2010,17163,"IL","17","163",270368,0.665271037992662,17526,0.116322937625755,9.7714407716158,10.4664975735396,11.3277759131652,10.3615384615385,389.413445996967,624,160241,1,0,0,0,9 +"3143",2010,17165,"IL","17","165",24900,0.942771084337349,1385,0.133092369477912,7.23345541862144,7.99023818572036,8.8698199525084,10.2923076923077,610.939409185654,85,13913,1,0,0,0,9 +"3144",2010,17167,"IL","17","167",197769,0.849855134019993,11721,0.132695215124716,9.36913738372318,10.1155701564909,11.0232088044145,7.9,387.466022859651,459,118462,1,0,0,0,9 +"3145",2010,17173,"IL","17","173",22354,0.990874116489219,1120,0.139259192985595,7.02108396428914,7.86787149039632,8.73504275426934,9.80769230769231,247.485230720102,31,12526,1,0,0,0,9 +"3146",2010,17177,"IL","17","177",47606,0.885434609082889,2484,0.135550140738562,7.81762544305337,8.62155320674048,9.50851718152061,11.1769230769231,408.606987554356,109,26676,1,0,0,0,9 +"3147",2010,17179,"IL","17","179",135487,0.974049170769151,7067,0.129407249404002,8.86319134069085,9.76520201973178,10.5850175137559,10,321.85184717717,255,79229,1,0,0,0,9 +"3148",2010,17181,"IL","17","181",17729,0.97574595295843,1041,0.139827401432681,6.94793706861497,7.67508185771633,8.53405030848266,12.0692307692308,389.067211360763,40,10281,1,0,0,0,9 +"3149",2010,17183,"IL","17","183",81642,0.847774429827785,4547,0.131047745033194,8.42222295382501,9.17118365677499,10.0389795219733,11.5923076923077,479.419513669935,222,46306,1,0,0,0,9 +"3150",2010,17185,"IL","17","185",11916,0.979103726082578,653,0.138888888888889,6.48157712927643,7.19443685110033,8.13153071060425,9.85384615384615,559.811431938715,38,6788,1,0,0,0,9 +"3151",2010,17187,"IL","17","187",17710,0.964822134387352,1364,0.132523997741389,7.21817683840341,7.59287028784482,8.51998927871824,7.8,319.233838786911,32,10024,1,0,0,0,9 +"3152",2010,17189,"IL","17","189",14711,0.985317109645843,789,0.131126368023928,6.67076632084587,7.49164547360513,8.33206770728955,7.32307692307692,232.85597857725,20,8589,1,0,0,0,9 +"3153",2010,17191,"IL","17","191",16739,0.988171336400024,844,0.132863372961348,6.73815249459596,7.57455848420248,8.44268513924118,8.96153846153846,483.766931842614,45,9302,1,0,0,0,9 +"3154",2010,17193,"IL","17","193",14598,0.987190026030963,720,0.136868064118372,6.5792512120101,7.34148385236316,8.32093496888341,8.58461538461538,623.01490349377,51,8186,1,0,0,0,9 +"3155",2010,17195,"IL","17","195",58489,0.968250440253723,3112,0.135051035237395,8.04302088529828,8.85893722196655,9.71032747056118,10.3769230769231,326.708412741628,108,33057,1,0,0,0,9 +"3156",2010,17197,"IL","17","197",678829,0.826146201768045,36774,0.102840332395935,10.5125463527138,11.5857111346959,12.2131177702568,11.1846153846154,242.48399705716,969,399614,1,0,0,0,9 +"3157",2010,17199,"IL","17","199",66440,0.941014449127032,4005,0.130027092113185,8.29529885950246,9.0368199711353,9.87173885422155,9.83076923076923,416.421837876504,163,39143,1,0,0,0,9 +"3158",2010,17201,"IL","17","201",295090,0.833277982988241,17525,0.124006235385814,9.77138371190279,10.558673226809,11.3832039483995,14.1461538461538,383.867187725486,665,173237,1,0,0,0,9 +"3159",2010,17203,"IL","17","203",38662,0.983135895711551,2083,0.129481144276033,7.64156444126097,8.45297461908959,9.29963247945494,7.71538461538462,224.472032617161,49,21829,1,0,0,0,9 +"3160",2010,20001,"KS","20","001",13363,0.955848237671182,773,0.129087779690189,6.65027904858742,7.26052259808985,8.20958048347558,8.13076923076923,438.356164383562,32,7300,0,0,0,0,9 +"3161",2010,20003,"KS","20","003",8105,0.982109808760025,355,0.122393584207279,5.87211778947542,6.81673588059497,7.65349490966125,7.61538461538461,236.630383341221,10,4226,0,0,0,0,9 +"3162",2010,20005,"KS","20","005",16855,0.928863838623554,1550,0.11302284188668,7.34601020991329,7.51534457118044,8.46252579007393,9.73846153846154,393.784589186888,37,9396,0,0,0,0,9 +"3163",2010,20009,"KS","20","009",27675,0.965853658536585,1663,0.125383920505872,7.41637847919293,7.9483852851119,8.94128376364757,5.93076923076923,449.452840020844,69,15352,0,0,0,0,9 +"3164",2010,20011,"KS","20","011",15137,0.948140318425051,951,0.128294906520447,6.85751406254539,7.32184971378836,8.31581113188354,8.9,494.559841740851,40,8088,0,0,0,0,9 +"3165",2010,20013,"KS","20","013",9967,0.871375539279623,428,0.137854921240092,6.0591231955818,6.94889722231331,7.90728360942635,6.54615384615385,408.314773570898,22,5388,0,0,0,0,9 +"3166",2010,20015,"KS","20","015",65901,0.957238888635984,3961,0.119558125066387,8.28425179762192,9.0215982473793,9.82102943009561,7.65384615384615,384.492999575732,145,37712,0,0,0,0,9 +"3167",2010,20021,"KS","20","021",21529,0.930558781178875,1162,0.129824887361234,7.05789793741186,7.89506349809157,8.71505995954565,8.99230769230769,629.959911641986,77,12223,0,0,0,0,9 +"3168",2010,20027,"KS","20","027",8544,0.983614232209738,346,0.138459737827715,5.84643877505772,6.85751406254539,7.72577144158795,5.49230769230769,435.25571273123,20,4595,0,0,0,0,9 +"3169",2010,20029,"KS","20","029",9518,0.982769489388527,635,0.129649085942425,6.45362499889269,6.84268328223842,7.81480342948936,5.54615384615385,474.402055742242,24,5059,0,0,0,0,9 +"3170",2010,20031,"KS","20","031",8585,0.978916715200932,356,0.142690739662202,5.87493073085203,6.91075078796194,7.78986855905471,7.48461538461538,517.5983436853,25,4830,0,0,0,0,9 +"3171",2010,20035,"KS","20","035",36314,0.916423417965523,2505,0.124056837583301,7.82604401351897,8.34283980427146,9.20542832761516,7.73846153846154,534.156620601784,109,20406,0,0,0,0,9 +"3172",2010,20037,"KS","20","037",39173,0.943098562785592,5108,0.108339928011641,8.53856321715243,8.31311670281925,9.33970057728189,8.57692307692308,440.376478715137,102,23162,0,0,0,0,9 +"3173",2010,20041,"KS","20","041",19771,0.973901168377927,926,0.12341307976329,6.83087423464618,7.74500280351584,8.59877317840866,6.52307692307692,304.231584769982,33,10847,0,0,0,0,9 +"3174",2010,20045,"KS","20","045",111204,0.872936225315636,20420,0.0958778461206431,9.92427009171866,9.39349491507403,10.4850605078236,5.82307692307692,202.32884631266,147,72654,0,0,0,0,9 +"3175",2010,20051,"KS","20","051",28424,0.96749226006192,3972,0.110294117647059,8.28702502516506,7.93056585423396,9.04805670891874,3.88461538461538,242.116792528968,42,17347,0,0,0,0,9 +"3176",2010,20055,"KS","20","055",36951,0.917620632729831,2699,0.0943682173689481,7.900636613018,8.43250638324904,9.23190614989074,4.50769230769231,242.907112320249,50,20584,0,0,0,0,9 +"3177",2010,20057,"KS","20","057",34006,0.934364523907546,2513,0.0900135270246427,7.82923253754359,8.34759040703006,9.10642325855641,4.12307692307692,313.479623824451,59,18821,0,0,0,0,9 +"3178",2010,20059,"KS","20","059",25986,0.962826137150773,1512,0.117717232355884,7.32118855673948,8.05706068196577,8.91355028049368,8.81538461538462,426.02109818772,63,14788,0,0,0,0,9 +"3179",2010,20061,"KS","20","061",35241,0.720808149598479,3882,0.07366419795125,8.26410576372896,8.32044811395656,9.25339986143663,9.03076923076923,322.404642626854,65,20161,0,0,0,0,9 +"3180",2010,20073,"KS","20","073",6680,0.975149700598802,277,0.147455089820359,5.62401750618734,6.56385552653213,7.48773376143644,7.43846153846154,498.338870431894,18,3612,0,0,0,0,9 +"3181",2010,20079,"KS","20","079",34740,0.958434081750144,1987,0.121070811744387,7.59438124255182,8.23217423638394,9.15841529911126,7.07692307692308,354.74135648859,67,18887,0,0,0,0,9 +"3182",2010,20085,"KS","20","085",13461,0.893172869771934,601,0.133125325013001,6.39859493453521,7.44658509915773,8.2443340478561,6.09230769230769,344.919076678164,26,7538,0,0,0,0,9 +"3183",2010,20087,"KS","20","087",19120,0.977667364016736,806,0.139173640167364,6.69208374250663,7.7698009960039,8.60611940061064,7.4,298.994291927154,33,11037,0,0,0,0,9 +"3184",2010,20091,"KS","20","091",545681,0.897670983596643,27565,0.11758151740669,10.2243021310238,11.2639254991108,12.0410977614669,6.00769230769231,214.526694806275,709,330495,0,0,0,0,9 +"3185",2010,20095,"KS","20","095",7857,0.983581519663994,354,0.133384243349879,5.86929691313377,6.69703424766648,7.63530388625941,6.86153846153846,283.956460009465,12,4226,0,0,0,0,9 +"3186",2010,20099,"KS","20","099",21536,0.907317979197623,1291,0.129736255572065,7.16317239084664,7.79770203551669,8.70167907103957,9.39230769230769,544.914134742404,66,12112,0,0,0,0,9 +"3187",2010,20103,"KS","20","103",76536,0.867147486150308,4164,0.119982753214174,8.33423142973486,9.34504607482847,9.95132488195029,7.48461538461538,370.978402234399,174,46903,0,0,0,0,9 +"3188",2010,20107,"KS","20","107",9624,0.981400665004156,389,0.152223607647548,5.96357934361845,6.9782137426307,7.87549929244521,11.0076923076923,411.061285500747,22,5352,0,0,0,0,9 +"3189",2010,20111,"KS","20","111",33647,0.92641245876304,4119,0.110500193182156,8.32336569443608,8.17695386822578,9.22098353207466,6.59230769230769,238.794089846276,48,20101,0,0,0,0,9 +"3190",2010,20113,"KS","20","113",29128,0.971573743477067,1753,0.128810766273002,7.46908388492123,8.03495502450216,8.99093980694081,5.08461538461538,364.130099364315,59,16203,0,0,0,0,9 +"3191",2010,20115,"KS","20","115",12671,0.977823376213401,762,0.132744061242207,6.63594655568665,7.13489085156588,8.10470346837111,5.86153846153846,266.075388026608,18,6765,0,0,0,0,9 +"3192",2010,20117,"KS","20","117",10112,0.987440664556962,422,0.133306962025316,6.04500531403601,6.90073066404517,7.8811822022271,5.02307692307692,293.255131964809,16,5456,0,0,0,0,9 +"3193",2010,20121,"KS","20","121",32882,0.970652636700931,1405,0.122559455020984,7.24779258176785,8.39908510293591,9.16146520419405,7.47692307692308,365.079365079365,69,18900,0,0,0,0,9 +"3194",2010,20125,"KS","20","125",35353,0.877096710321613,2165,0.126523915933584,7.68017564043659,8.26384813136891,9.19431261089898,10.5076923076923,483.829895594601,95,19635,0,0,0,0,9 +"3195",2010,20133,"KS","20","133",16476,0.963219227967953,916,0.127640203932993,6.82001636467413,7.51534457118044,8.4069317971587,10.1384615384615,353.943147881871,32,9041,0,0,0,0,9 +"3196",2010,20139,"KS","20","139",16274,0.98254885092786,706,0.137028388841096,6.55961523749324,7.50988306115491,8.4257355809274,8.13846153846154,318.226709096895,29,9113,0,0,0,0,9 +"3197",2010,20143,"KS","20","143",6097,0.981138264720354,205,0.130391996063638,5.32300997913841,6.58340922215876,7.39633529380081,5.87692307692308,297.265160523187,10,3364,0,0,0,0,9 +"3198",2010,20145,"KS","20","145",6979,0.930935664135263,344,0.14543630892678,5.8406416573734,6.63068338564237,7.4301141385618,4.61538461538461,421.209117938553,17,4036,0,0,0,0,9 +"3199",2010,20149,"KS","20","149",21729,0.963643057664872,1111,0.11238437111694,7.01301578963963,7.86672228513673,8.70317470904168,5.16923076923077,300,36,12000,0,0,0,0,9 +"3200",2010,20155,"KS","20","155",64552,0.945702689304747,3986,0.128129260131367,8.29054350077274,8.866581653304,9.7705845338719,6.28461538461538,443.12333140671,161,36333,0,0,0,0,9 +"3201",2010,20159,"KS","20","159",10116,0.965796757611704,778,0.121787267694741,6.65672652417839,6.92067150424868,7.88269220628903,5.35384615384615,311.12737920937,17,5464,0,0,0,0,9 +"3202",2010,20161,"KS","20","161",71557,0.866791508867057,18363,0.0688262504017776,9.81809304951918,8.66733584984596,9.99761521526083,4.93076923076923,142.507710305222,67,47015,0,0,0,0,9 +"3203",2010,20169,"KS","20","169",55781,0.921962675462971,3653,0.122407271293093,8.20330402679528,8.80282315974189,9.67990640549087,6.07692307692308,401.281612592155,129,32147,0,0,0,0,9 +"3204",2010,20173,"KS","20","173",499138,0.830063028661412,34710,0.112367721952646,10.4547831088558,11.0287255435217,11.8992009578519,8.66153846153846,369.347884022714,1081,292678,0,0,0,0,9 +"3205",2010,20175,"KS","20","175",22972,0.911413895176737,1875,0.0834494166811771,7.53636393840451,8.00269416228394,8.71800933084636,4.87692307692308,320.688306609308,41,12785,0,0,0,0,9 +"3206",2010,20177,"KS","20","177",178365,0.863033666918958,11028,0.130625402965829,9.30819277214369,9.94169814029988,10.8893043470589,6.88461538461539,394.21686746988,409,103750,0,0,0,0,9 +"3207",2010,20181,"KS","20","181",6018,0.975240943835161,369,0.13160518444666,5.91079664404053,6.42971947803914,7.39449310721904,4.67692307692308,329.835082458771,11,3335,0,0,0,0,9 +"3208",2010,20191,"KS","20","191",24119,0.966789667896679,1177,0.130560968531034,7.07072410726028,7.89580837708318,8.79543080504002,8.76153846153846,414.569144210838,56,13508,0,0,0,0,9 +"3209",2010,20205,"KS","20","205",9389,0.974331664714027,429,0.139205453189903,6.06145691892802,6.88857245956536,7.85205020726589,11.7307692307692,369.865680358186,19,5137,0,0,0,0,9 +"3210",2010,20209,"KS","20","209",157636,0.681963510873151,10787,0.104893552234261,9.28609698437543,9.89131375160442,10.7414707371415,9.89230769230769,486.903597435061,448,92010,0,0,0,0,9 +"3211",2010,21001,"KY","21","001",18750,0.96208,1481,0.127146666666667,7.3004728142678,7.72709448477984,8.6020856584342,12.5461538461538,315.985130111524,34,10760,1,0,0,0,9 +"3212",2010,21003,"KY","21","003",20023,0.983718723468012,1154,0.127753083953454,7.05098944706805,7.90691548867859,8.68101127664563,11.8307692307692,586.004825922096,68,11604,1,0,0,0,9 +"3213",2010,21005,"KY","21","005",21478,0.969224322562622,1081,0.126501536455908,6.98564181763921,8.07589363029886,8.80447518384668,9.7,341.138160955187,44,12898,1,0,0,0,9 +"3214",2010,21007,"KY","21","007",8250,0.960242424242424,411,0.138787878787879,6.01859321449623,7.00033446027523,7.77401507725073,10.3769230769231,440.251572327044,21,4770,1,0,0,0,9 +"3215",2010,21009,"KY","21","009",42117,0.94643493126291,2257,0.126314789752357,7.72179177681754,8.61974977974133,9.42569365781533,11.2692307692308,388.452731436048,95,24456,1,0,0,0,9 +"3216",2010,21011,"KY","21","011",11622,0.978489072448804,586,0.134056100499054,6.37331978957701,7.35755620091035,8.13885675069633,14.7461538461538,741.399762752076,50,6744,1,0,0,0,9 +"3217",2010,21013,"KY","21","013",28704,0.96875,1805,0.137750836120401,7.49831587076698,8.24275634571448,9.07234187381889,12.2538461538462,763.269824622735,131,17163,1,0,0,0,9 +"3218",2010,21015,"KY","21","015",119380,0.943089294689228,6312,0.111233037359692,8.75020786252571,9.81683974581046,10.4958194278573,8.92307692307692,317.175176130463,226,71254,1,0,0,0,9 +"3219",2010,21017,"KY","21","017",19965,0.926321061858252,1040,0.13328324567994,6.94697599213542,7.90765159471109,8.69316127423802,9.15384615384615,531.322306967178,62,11669,1,0,0,0,9 +"3220",2010,21019,"KY","21","019",49602,0.959779847586791,2538,0.137050925365913,7.83913164827433,8.80207133653528,9.58259334587823,10.3,530.925568969599,157,29571,1,0,0,0,9 +"3221",2010,21021,"KY","21","021",28668,0.904981163666806,2063,0.133703083577508,7.63191651307125,8.22013395715186,9.03037603475591,11.2769230769231,468.271597526565,78,16657,1,0,0,0,9 +"3222",2010,21023,"KY","21","023",8513,0.989662868553976,469,0.126159990602608,6.15060276844628,7.04053639021596,7.81156848934518,11.4692307692308,525.252525252525,26,4950,1,0,0,0,9 +"3223",2010,21025,"KY","21","025",13855,0.988163118007939,801,0.140382533381451,6.68586094706836,7.53315880745556,8.34545542816193,13.6307692307692,772.889417360285,65,8410,1,0,0,0,9 +"3224",2010,21027,"KY","21","027",20045,0.969518583187827,982,0.144075829383886,6.88959130835447,7.79234892411304,8.65782432115598,13.0461538461538,516.66236114699,60,11613,1,0,0,0,9 +"3225",2010,21029,"KY","21","029",74483,0.981512559913,4115,0.123920894700804,8.32239411311117,9.30155125202957,10.0418136820164,10.7615384615385,361.631753031974,164,45350,1,0,0,0,9 +"3226",2010,21031,"KY","21","031",12742,0.98807094647622,758,0.128315805995919,6.63068338564237,7.38523092306657,8.22657347497711,12.1076923076923,454.667023268254,34,7478,1,0,0,0,9 +"3227",2010,21033,"KY","21","033",13010,0.93858570330515,663,0.146425826287471,6.49677499018586,7.4151751096133,8.25035895147729,10.6384615384615,561.347233360064,42,7482,1,0,0,0,9 +"3228",2010,21035,"KY","21","035",37360,0.935920770877944,5697,0.115471092077088,8.6476949994804,8.2498364854257,9.35910514524129,8.11538461538461,339.027826699542,77,22712,1,0,0,0,9 +"3229",2010,21037,"KY","21","037",90806,0.958427857190054,7081,0.119155121908244,8.86517041965177,9.33565056294163,10.2362385883555,9.17692307692308,389.725741838418,215,55167,1,0,0,0,9 +"3230",2010,21039,"KY","21","039",5084,0.981510621557829,250,0.136900078678206,5.52146091786225,6.4393503711001,7.26612877955645,9.14615384615385,590.277777777778,17,2880,1,0,0,0,9 +"3231",2010,21041,"KY","21","041",10806,0.967795669072737,617,0.122246899870442,6.42486902390539,7.27862894232068,8.03495502450216,14.6461538461538,653.900046707146,42,6423,1,0,0,0,9 +"3232",2010,21043,"KY","21","043",27739,0.988752298208299,1749,0.130357979739717,7.4667994750186,8.18479265416508,9.00565049932022,14.2076923076923,614.628149969269,100,16270,1,0,0,0,9 +"3233",2010,21045,"KY","21","045",15987,0.986676674798274,870,0.140676799899919,6.76849321164863,7.6246189861594,8.45998771764546,11.0923076923077,581.708499407519,54,9283,1,0,0,0,9 +"3234",2010,21047,"KY","21","047",74145,0.748654663160024,8152,0.0893519455121721,9.00601857490256,9.01639147894125,9.9433811161978,11.8,425.353880482533,183,43023,1,0,0,0,9 +"3235",2010,21049,"KY","21","049",35599,0.942638838169611,1872,0.133430714345909,7.53476265703754,8.51599247083972,9.30637756017313,10.8615384615385,489.967335510966,105,21430,1,0,0,0,9 +"3236",2010,21051,"KY","21","051",21668,0.951956802658298,1368,0.119577256784198,7.2211050981825,8.10741881171997,8.70814407490825,14.6692307692308,751.002551950419,103,13715,1,0,0,0,9 +"3237",2010,21053,"KY","21","053",10256,0.984691887675507,520,0.135530421216849,6.25382881157547,7.1800698743028,7.97831096986772,11.1076923076923,577.543740445048,34,5887,1,0,0,0,9 +"3238",2010,21055,"KY","21","055",9297,0.982897708938367,475,0.140582983758202,6.16331480403464,7.0335064842877,7.86748856869913,10.0384615384615,564.334085778781,30,5316,1,0,0,0,9 +"3239",2010,21057,"KY","21","057",6858,0.964421114027413,340,0.138961796442111,5.82894561761021,6.71901315438526,7.57763383260273,11.9307692307692,783.085356303837,30,3831,1,0,0,0,9 +"3240",2010,21059,"KY","21","059",96722,0.934658092264428,5831,0.125648766568102,8.67094379122216,9.39781529401093,10.2645478666674,9.39230769230769,418.172797505139,236,56436,1,0,0,0,9 +"3241",2010,21061,"KY","21","061",12239,0.976632077784133,736,0.141351417599477,6.60123011872888,7.34536484041687,8.18451375303372,13.4153846153846,408.335680090115,29,7102,1,0,0,0,9 +"3242",2010,21063,"KY","21","063",7845,0.961886551943913,464,0.136010197578075,6.13988455222626,7.04925484125584,7.60638738977265,15.9615384615385,363.562916582509,18,4951,1,0,0,0,9 +"3243",2010,21065,"KY","21","065",14722,0.992528189104741,724,0.137956799347915,6.58479139238572,7.60290046220476,8.39479954320217,13.6538461538462,709.625729655488,62,8737,1,0,0,0,9 +"3244",2010,21067,"KY","21","067",296868,0.803400838082919,30722,0.108617297923656,10.3327342893091,10.5826879269634,11.4700388405678,7.5,314.87729739925,601,190868,1,0,0,0,9 +"3245",2010,21069,"KY","21","069",14398,0.97958049729129,768,0.134324211696069,6.64378973314767,7.5923661285198,8.35678966992321,11.6153846153846,548.467866936926,46,8387,1,0,0,0,9 +"3246",2010,21071,"KY","21","071",39933,0.985951468710089,2380,0.139909348158165,7.77485576666552,8.59433940059289,9.45155957001762,13.5692307692308,736.35874736276,178,24173,1,0,0,0,9 +"3247",2010,21073,"KY","21","073",49248,0.867811890838207,3176,0.138624918778428,8.06337782236703,8.7815554585464,9.64173310209426,8.77692307692308,427.931663625809,129,30145,1,0,0,0,9 +"3248",2010,21075,"KY","21","075",6797,0.745770192732088,434,0.141238781815507,6.0730445341004,6.71538338633468,7.59085212368858,11.5769230769231,662.739322533137,27,4074,1,0,0,0,9 +"3249",2010,21077,"KY","21","077",8607,0.978157313814337,492,0.122226095038922,6.19847871649231,7.10906213568717,7.83636976054512,12.4461538461538,768.472906403941,39,5075,1,0,0,0,9 +"3250",2010,21079,"KY","21","079",16942,0.971609019006021,802,0.135108015582576,6.68710860786651,7.76641689801966,8.53836742664764,11.2307692307692,345.440189498618,35,10132,1,0,0,0,9 +"3251",2010,21081,"KY","21","081",24681,0.983306997285361,1449,0.108464000648272,7.27862894232068,8.15737044118677,8.88889466937159,11.8923076923077,484.730974309258,70,14441,1,0,0,0,9 +"3252",2010,21083,"KY","21","083",37254,0.941751221345359,2088,0.128174155795351,7.64396194900253,8.42704964156327,9.26766543859545,9.58461538461538,556.400989157314,117,21028,1,0,0,0,9 +"3253",2010,21085,"KY","21","085",25786,0.98219964321725,1380,0.134375242379586,7.22983877815125,8.12029131396856,8.91126025457203,14.3538461538462,510.271703114646,77,15090,1,0,0,0,9 +"3254",2010,21087,"KY","21","087",11260,0.969982238010657,537,0.139076376554174,6.28599809450886,7.25559127425367,8.0925452638913,11.8615384615385,552.995391705069,36,6510,1,0,0,0,9 +"3255",2010,21089,"KY","21","089",36889,0.98229824608962,1820,0.138686329258044,7.50659178007084,8.48135873840702,9.3067408662625,11.6307692307692,480.993742411506,103,21414,1,0,0,0,9 +"3256",2010,21091,"KY","21","091",8550,0.98187134502924,415,0.134619883040936,6.0282785202307,7.05098944706805,7.79893331004122,10.3692307692308,464.177598385469,23,4955,1,0,0,0,9 +"3257",2010,21093,"KY","21","093",106970,0.835617462840049,7868,0.108058334112368,8.97055917950895,9.56029277015409,10.3722091102793,9.78461538461539,381.409803644583,243,63711,1,0,0,0,9 +"3258",2010,21095,"KY","21","095",29223,0.969955172295794,1753,0.148342059336824,7.46908388492123,8.23695004806146,9.10086027135736,12,731.416907637353,129,17637,1,0,0,0,9 +"3259",2010,21097,"KY","21","097",18799,0.969519655300814,908,0.13197510505878,6.81124437860129,7.85205020726589,8.62730241409627,11.2230769230769,537.487473808873,59,10977,1,0,0,0,9 +"3260",2010,21099,"KY","21","099",18184,0.942311922569292,1019,0.130004399472063,6.92657703322272,7.73280753042202,8.56731580081945,10.5307692307692,440.022957719533,46,10454,1,0,0,0,9 +"3261",2010,21101,"KY","21","101",46263,0.907744850096189,2623,0.133324687114973,7.87207397986687,8.68321597524069,9.56710531186516,10.3692307692308,453.874139980548,126,27761,1,0,0,0,9 +"3262",2010,21103,"KY","21","103",15372,0.962008847254749,741,0.13823835545147,6.60800062529609,7.62021477057445,8.43728380818794,9.94615384615385,508.512049524652,46,9046,1,0,0,0,9 +"3263",2010,21105,"KY","21","105",4868,0.896055875102712,225,0.141536565324569,5.41610040220442,6.36647044773144,7.22620901010067,8.26923076923077,623.395672900623,17,2727,1,0,0,0,9 +"3264",2010,21107,"KY","21","107",46841,0.919194722572106,2583,0.135116671292244,7.85670679309584,8.70582811026678,9.55229753882796,9.76153846153846,512.542862299224,142,27705,1,0,0,0,9 +"3265",2010,21109,"KY","21","109",13476,0.994731374295043,708,0.131938260611457,6.56244409369372,7.55485852104068,8.32336569443608,14.1769230769231,827.364781427513,67,8098,1,0,0,0,9 +"3266",2010,21111,"KY","21","111",742096,0.75337826911882,49020,0.124547228390936,10.7999836570821,11.4702997614111,12.3526547558575,10.0846153846154,425.69882417597,1921,451258,1,0,0,0,9 +"3267",2010,21113,"KY","21","113",48682,0.949960971200855,3326,0.114128425290662,8.10952565975287,8.79224584746788,9.61946544091583,8.54615384615385,379.297265611531,110,29001,1,0,0,0,9 +"3268",2010,21115,"KY","21","115",23398,0.990041883921703,1351,0.143345585092743,7.2086003379602,8.0845624152353,8.88696203486613,12.6538461538462,612.029546253957,87,14215,1,0,0,0,9 +"3269",2010,21117,"KY","21","117",159967,0.932898660348697,10061,0.117480480349072,9.21642184229205,9.9736197747165,10.8035675983623,9.86923076923077,389.239861422458,382,98140,1,0,0,0,9 +"3270",2010,21119,"KY","21","119",16350,0.988318042813456,1037,0.141039755351682,6.94408720822953,7.69211333959547,8.51539156946961,13.5615384615385,846.023688663283,85,10047,1,0,0,0,9 +"3271",2010,21121,"KY","21","121",31846,0.981661747158199,2089,0.124442630157634,7.64444076155657,8.34355383500512,9.15207546384421,13.6461538461538,597.826086956522,110,18400,1,0,0,0,9 +"3272",2010,21123,"KY","21","123",14181,0.958324518722234,818,0.126084197165221,6.70686233660275,7.47477218239787,8.31115254800169,11.3846153846154,496.127783155857,41,8264,1,0,0,0,9 +"3273",2010,21125,"KY","21","125",58993,0.981591036224637,3391,0.126981167257132,8.12888014212564,9.01748351326684,9.80261694215115,11.5076923076923,518.266062022928,184,35503,1,0,0,0,9 +"3274",2010,21127,"KY","21","127",15856,0.992684157416751,882,0.140577699293643,6.78219205600679,7.63675211243578,8.48714627006394,13.7384615384615,747.919519646055,71,9493,1,0,0,0,9 +"3275",2010,21129,"KY","21","129",7714,0.972647135079077,471,0.138579206637283,6.15485809401642,7.01391547481053,7.67089483136212,12.7230769230769,798.908807482463,41,5132,1,0,0,0,9 +"3276",2010,21131,"KY","21","131",11278,0.993261216527753,688,0.133356978187622,6.53378883793334,7.32580750259577,8.15478757276852,13.0384615384615,785.938839668477,55,6998,1,0,0,0,9 +"3277",2010,21133,"KY","21","133",24534,0.991848047607402,1361,0.14722426021032,7.21597500265147,8.05102220819068,8.93313654381203,11.5461538461538,718.371690834109,108,15034,1,0,0,0,9 +"3278",2010,21135,"KY","21","135",13836,0.99298930326684,730,0.13349233882625,6.59304453414244,7.53422832627409,8.3250636936312,13.9153846153846,648.476691545332,53,8173,1,0,0,0,9 +"3279",2010,21137,"KY","21","137",24730,0.969348968863728,1359,0.124464213505863,7.21450441415114,8.13622555490846,8.88999735728484,12.9307692307692,549.756437021573,79,14370,1,0,0,0,9 +"3280",2010,21139,"KY","21","139",9520,0.98844537815126,492,0.15703781512605,6.19847871649231,7.05531284333975,7.95155933115525,12.1461538461538,551.405193881181,31,5622,1,0,0,0,9 +"3281",2010,21141,"KY","21","141",26854,0.920644969092128,1378,0.12988754003128,7.2283884515736,8.10772006191053,8.9617507993305,10.0230769230769,447.383777475199,69,15423,1,0,0,0,9 +"3282",2010,21143,"KY","21","143",8329,0.938287909713051,364,0.172049465722176,5.89715386763674,6.96129604591017,7.64826303090192,11.7384615384615,408.083948698018,21,5146,1,0,0,0,9 +"3283",2010,21145,"KY","21","145",65523,0.869862491033683,3373,0.139874547868687,8.12355783506165,9.00589589809446,9.88659568486591,9.16153846153846,530.476388599958,204,38456,1,0,0,0,9 +"3284",2010,21147,"KY","21","147",18328,0.930052378873854,1139,0.121126145787866,7.03790596344718,7.95014988765202,8.501470230951,14.5615384615385,483.346515511029,55,11379,1,0,0,0,9 +"3285",2010,21149,"KY","21","149",9503,0.986635799221299,486,0.132694938440492,6.18620862390049,7.12044437239249,7.92117272158701,10.3076923076923,494.053064958829,27,5465,1,0,0,0,9 +"3286",2010,21151,"KY","21","151",83471,0.935091229289214,9767,0.109930394987481,9.18676463544748,9.28098521154551,10.1768297993831,8.6,392.850891693732,202,51419,1,0,0,0,9 +"3287",2010,21153,"KY","21","153",13307,0.994363868640565,747,0.129480724430751,6.61606518513282,7.54062152865715,8.30226579487337,20.6076923076923,522.908366533865,42,8032,1,0,0,0,9 +"3288",2010,21155,"KY","21","155",19853,0.903037324333854,1073,0.118067798317635,6.9782137426307,7.90137735379262,8.60886037994206,12.7076923076923,444.780127559584,53,11916,1,0,0,0,9 +"3289",2010,21157,"KY","21","157",31453,0.991320382793374,1518,0.145550503926493,7.32514895795557,8.29354951506035,9.1204156644482,10.6076923076923,507.726269315673,92,18120,1,0,0,0,9 +"3290",2010,21159,"KY","21","159",12894,0.924693655964014,788,0.122847836202885,6.66949808985788,7.58222919427646,8.16280135349207,10.3846153846154,702.464579116561,59,8399,1,0,0,0,9 +"3291",2010,21161,"KY","21","161",17503,0.920127978060904,980,0.134605496200651,6.88755257166462,7.76004068088038,8.55871893824474,11.3923076923077,481.667158163767,49,10173,1,0,0,0,9 +"3292",2010,21163,"KY","21","163",28701,0.945576809170412,1919,0.110797533186997,7.5595594960077,8.25166392360559,9.05134464048573,11.9230769230769,409.548326702551,70,17092,1,0,0,0,9 +"3293",2010,21165,"KY","21","165",6368,0.970791457286432,404,0.141959798994975,6.00141487796115,6.6631326959908,7.50549227473742,15.6307692307692,741.962077493817,27,3639,1,0,0,0,9 +"3294",2010,21167,"KY","21","167",21318,0.948447321512337,1039,0.138521437283047,6.94601399109923,7.9208096792886,8.75258146914688,11.3,434.747604862732,54,12421,1,0,0,0,9 +"3295",2010,21169,"KY","21","169",10135,0.97898371978293,594,0.127972372964973,6.38687931936265,7.1708884785125,7.98241634682773,13.4307692307692,708.729472774417,41,5785,1,0,0,0,9 +"3296",2010,21171,"KY","21","171",10970,0.972835004557885,549,0.136463081130356,6.30809844150953,7.22475340576797,8.0532511535491,10.7923076923077,750.558926860428,47,6262,1,0,0,0,9 +"3297",2010,21173,"KY","21","173",26554,0.961324094298411,1489,0.125291858100474,7.30586003268401,8.25062008217469,9.00895831244349,12.3076923076923,419.536631183469,67,15970,1,0,0,0,9 +"3298",2010,21175,"KY","21","175",13732,0.951281677832799,844,0.129041654529566,6.73815249459596,7.60837447438078,8.19478163844336,13.1307692307692,434.637245068539,39,8973,1,0,0,0,9 +"3299",2010,21177,"KY","21","177",31659,0.945070911904987,1992,0.133200669635807,7.59689443814454,8.33278946841796,9.1084183822508,11.0615384615385,454.035575022702,85,18721,1,0,0,0,9 +"3300",2010,21179,"KY","21","179",43626,0.93726218310182,2396,0.124329528262962,7.78155595923534,8.68524677641249,9.490544554572,11.3,358.436753256764,93,25946,1,0,0,0,9 +"3301",2010,21181,"KY","21","181",7140,0.989075630252101,338,0.128851540616246,5.82304589548302,6.89669433162271,7.64108424917491,10.1769230769231,482.741974414675,20,4143,1,0,0,0,9 +"3302",2010,21183,"KY","21","183",23829,0.983423559528306,1315,0.128372990893449,7.18159194461187,8.00736706798333,8.8305430106166,11.3153846153846,381.959747318936,52,13614,1,0,0,0,9 +"3303",2010,21185,"KY","21","185",60441,0.932463063152496,2525,0.123988683178637,7.83399634170946,9.19319421314121,9.7313341246578,7.62307692307692,275.264362803881,101,36692,1,0,0,0,9 +"3304",2010,21187,"KY","21","187",10848,0.984328908554572,542,0.135508849557522,6.29526600143965,7.26052259808985,8.0624327915832,8.48461538461538,535.601764335224,34,6348,1,0,0,0,9 +"3305",2010,21189,"KY","21","189",4751,0.992843611871185,264,0.142706798568722,5.57594910314632,6.39526159811545,7.24351297466548,13.4153846153846,859.598853868195,24,2792,1,0,0,0,9 +"3306",2010,21191,"KY","21","191",14915,0.989943010392223,856,0.125310090512906,6.75227037614174,7.63336964967958,8.38776764397578,12.3846153846154,391.061452513967,35,8950,1,0,0,0,9 +"3307",2010,21193,"KY","21","193",28668,0.97485000697642,1760,0.138900516255058,7.4730690880322,8.29654652030061,9.11085147347544,11.8230769230769,833.659710177363,149,17873,1,0,0,0,9 +"3308",2010,21195,"KY","21","195",65076,0.98644661626406,3805,0.141557563464257,8.24407127029579,9.10531313410848,9.92265272179714,10.5538461538462,759.594550843025,305,40153,1,0,0,0,9 +"3309",2010,21197,"KY","21","197",12641,0.988133850170081,706,0.132584447432956,6.55961523749324,7.46393660446893,8.23244015847034,15.6769230769231,900.542974440471,68,7551,1,0,0,0,9 +"3310",2010,21199,"KY","21","199",63195,0.97786217264024,3340,0.135786059023657,8.11372608597075,9.02725852623582,9.84845041660622,10.7076923076923,506.253722453842,187,36938,1,0,0,0,9 +"3311",2010,21203,"KY","21","203",17086,0.993386398220766,944,0.129755355261618,6.8501261661455,7.7698009960039,8.54694614956558,11.3076923076923,601.340694006309,61,10144,1,0,0,0,9 +"3312",2010,21205,"KY","21","205",23376,0.971038672142368,3444,0.104123887748118,8.14438886554762,7.90174751852014,8.88377886146348,10.2230769230769,471.631704913417,67,14206,1,0,0,0,9 +"3313",2010,21207,"KY","21","207",17582,0.985894664998294,934,0.137982027073143,6.83947643822884,7.73499619402278,8.5424709986005,12.9846153846154,499.755022048016,51,10205,1,0,0,0,9 +"3314",2010,21209,"KY","21","209",47271,0.927312728734319,2872,0.109221298470521,7.96276393016811,8.90652891759452,9.59000892504034,8.79230769230769,271.70126793925,78,28708,1,0,0,0,9 +"3315",2010,21211,"KY","21","211",42222,0.900170527213301,2387,0.128961205058974,7.77779262633883,8.70118002752925,9.50166579934276,9.02307692307692,352.098900668988,90,25561,1,0,0,0,9 +"3316",2010,21213,"KY","21","213",17337,0.889023475803196,1008,0.125165830305128,6.91572344863131,7.7332456465298,8.54558626591746,13.0923076923077,666.601313596706,68,10201,1,0,0,0,9 +"3317",2010,21215,"KY","21","215",17167,0.973320906390167,753,0.123784004194093,6.62406522779989,7.91899248816525,8.57885257180297,9.96923076923077,399.505374298488,42,10513,1,0,0,0,9 +"3318",2010,21217,"KY","21","217",24635,0.935701238075908,1976,0.125756038157094,7.58882987830781,7.93522953981691,8.89959435992585,12.4153846153846,464.919695688926,66,14196,1,0,0,0,9 +"3319",2010,21219,"KY","21","219",12426,0.91131498470948,791,0.111298889425398,6.67329796776765,7.35883089834235,8.17159948034546,10.1230769230769,642.123287671233,45,7008,1,0,0,0,9 +"3320",2010,21221,"KY","21","221",14321,0.906500942671601,649,0.152503316807486,6.47543271670409,7.49776170062257,8.32530602975258,14.2153846153846,473.048674218847,38,8033,1,0,0,0,9 +"3321",2010,21223,"KY","21","223",8809,0.981269156544443,470,0.131342944715632,6.1527326947041,7.15305163493748,7.85593219971861,12.9923076923077,700.89032013639,37,5279,1,0,0,0,9 +"3322",2010,21225,"KY","21","225",15274,0.857863035223255,1549,0.127078695822967,7.34536484041687,7.42535788702715,8.352318548226,9.80769230769231,549.891167373124,48,8729,1,0,0,0,9 +"3323",2010,21227,"KY","21","227",114348,0.86654773148634,13022,0.106446986392416,9.47439551379681,9.55016412883091,10.4779919529653,9.28461538461539,340.598480186614,238,69877,1,0,0,0,9 +"3324",2010,21229,"KY","21","229",11683,0.927501497902936,673,0.126251818882136,6.51174532964473,7.3132203870903,8.11790894238315,10.2384615384615,488.310150932228,33,6758,1,0,0,0,9 +"3325",2010,21231,"KY","21","231",20833,0.973119569913119,1175,0.142370277924447,7.06902342657826,7.89133075766189,8.72339402200014,14.2,448.979591836735,55,12250,1,0,0,0,9 +"3326",2010,21233,"KY","21","233",13579,0.942705648427719,795,0.137344428897562,6.67834211465433,7.48324441607385,8.27893600229198,9.55384615384615,510.140599726266,41,8037,1,0,0,0,9 +"3327",2010,21235,"KY","21","235",35718,0.984517610168542,2676,0.125398958508315,7.89207842124812,8.42266270757,9.2711532113727,12.7,622.677028527296,129,20717,1,0,0,0,9 +"3328",2010,21237,"KY","21","237",7364,0.993617599130907,336,0.135116784356328,5.8171111599632,6.82437367004309,7.68294316987829,16.5,984.759671746776,42,4265,1,0,0,0,9 +"3329",2010,21239,"KY","21","239",25040,0.937539936102236,1230,0.144608626198083,7.11476944836646,8.11611843160937,8.96456770260161,7.34615384615385,357.260999007608,54,15115,1,0,0,0,9 +"3330",2010,25001,"MA","25","001",215909,0.953007980213886,9675,0.16591712249142,9.17730051789798,10.0278268267917,11.0364368536087,9.72307692307692,367.592022754113,442,120242,1,0,0,0,9 +"3331",2010,25003,"MA","25","003",131318,0.947006503297339,8375,0.149355000837661,9.03300635669327,9.62747051161485,10.5809625637018,8.50769230769231,317.563188593649,245,77150,1,0,0,0,9 +"3332",2010,25005,"MA","25","005",549175,0.924146219328994,36825,0.123241225474575,10.5139322413308,11.2503911860511,12.0423471060183,10.2846153846154,328.905755850727,1092,332010,1,0,0,0,9 +"3333",2010,25007,"MA","25","007",16573,0.930911723888252,736,0.174017981053521,6.60123011872888,7.67786350067821,8.54849804124465,9.86923076923077,220.581183466002,23,10427,1,0,0,0,9 +"3334",2010,25009,"MA","25","009",745469,0.893363775019484,45753,0.129177739114571,10.7310126423243,11.5107330634133,12.3534101684242,8.43846153846154,270.100643310246,1205,446130,1,0,0,0,9 +"3335",2010,25011,"MA","25","011",71372,0.962604382671076,4276,0.167698817463431,8.36077327214494,9.08557048502023,10.0364000036559,7.38461538461539,299.08711470214,134,44803,1,0,0,0,9 +"3336",2010,25013,"MA","25","013",464248,0.854702658923679,33777,0.123268167014182,10.4275353764712,10.9686119970432,11.8571320003575,9.97692307692308,355.69796539294,968,272141,1,0,0,0,9 +"3337",2010,25015,"MA","25","015",159331,0.911191168071499,22687,0.132177667873797,10.0295473521969,9.76007896924077,10.8711365766854,6.8,239.047025973765,238,99562,1,0,0,0,9 +"3338",2010,25017,"MA","25","017",1507694,0.84243487073637,101421,0.119098437746652,11.5270354492886,12.265779198992,13.0842605991289,6.73076923076923,216.929160130369,2048,944087,1,0,0,0,9 +"3339",2010,25021,"MA","25","021",673059,0.841536923211784,38945,0.126812062538351,10.569905673354,11.4424064294872,12.2587647111809,7.23846153846154,237.001852654815,962,405904,1,0,0,0,9 +"3340",2010,25023,"MA","25","023",495937,0.884799883856216,27391,0.134099694114373,10.2179697712657,11.1426151229364,11.9254522473287,8.69230769230769,312.190742422233,918,294051,1,0,0,0,9 +"3341",2010,25025,"MA","25","025",725786,0.644293221417883,95361,0.0931844923985858,11.4654249688214,11.4429857167655,12.4307629999274,7.41538461538462,261.37894385605,1269,485502,1,0,0,0,9 +"3342",2010,25027,"MA","25","027",800404,0.899845577983118,53059,0.121394945552496,10.8791597809254,11.6293653768173,12.4054766299616,8.56923076923077,282.845774836622,1372,485070,1,0,0,0,9 +"3343",2010,24001,"MD","24","001",74968,0.904079073738128,6463,0.127441041511045,8.7738488852629,9.12999761929365,9.92186759981756,9.53076923076923,384.803594465946,173,44958,1,0,0,0,9 +"3344",2010,24003,"MD","24","003",539305,0.789154560035601,35593,0.124004042239549,10.4799042682926,11.2316362479374,12.0403131770352,7.06923076923077,304.416723260774,1022,335724,1,0,0,0,9 +"3345",2010,24005,"MD","24","005",806654,0.668177434191115,57963,0.126499093787423,10.9675601549295,11.5380375017851,12.4560917908497,8.41538461538462,338.951695786228,1649,486500,1,0,0,0,9 +"3346",2010,24009,"MD","24","009",88989,0.833934531234197,4920,0.123093865533942,8.50106380948635,9.42859197720997,10.2142756137024,7.06923076923077,345.619967493041,185,53527,1,0,0,0,9 +"3347",2010,24011,"MD","24","011",33054,0.83390815029951,1987,0.123827675924245,7.59438124255182,8.35983738064003,9.2032150470336,9.5,360.100828231905,70,19439,1,0,0,0,9 +"3348",2010,24013,"MD","24","013",167230,0.944716857023261,9483,0.128140883812713,9.15725600088373,10.0583094356275,10.8190980531054,7.01538461538462,315.35286378564,314,99571,1,0,0,0,9 +"3349",2010,24015,"MD","24","015",101161,0.913375708029774,6070,0.127222941647473,8.71111388405354,9.55958780008612,10.3339379133382,9.73846153846154,428.223526142883,262,61183,1,0,0,0,9 +"3350",2010,24017,"MD","24","017",147159,0.524269667502497,8827,0.109330723910872,9.08557048502023,10.0476311856162,10.7620220448493,7.1,305.193864935007,274,89779,1,0,0,0,9 +"3351",2010,24019,"MD","24","019",32689,0.695738627672917,1838,0.142800330386368,7.51643330291563,8.25816336153762,9.20593066348748,11.6538461538462,373.330528972552,71,19018,1,0,0,0,9 +"3352",2010,24021,"MD","24","021",234239,0.855348596945854,13335,0.118426052023788,9.49814743661612,10.4539472655422,11.1888974765066,7.07692307692308,243.823603811237,347,142316,1,0,0,0,9 +"3353",2010,24023,"MD","24","023",30144,0.983379777070064,1646,0.141288481953291,7.40610338123702,8.24064886337491,9.07749445864275,9.11538461538461,397.534136083425,69,17357,1,0,0,0,9 +"3354",2010,24025,"MD","24","025",245236,0.832027108581122,14059,0.125764569639042,9.55101803907991,10.428985016534,11.2317554761337,7.98461538461538,326.589242882116,482,147586,1,0,0,0,9 +"3355",2010,24027,"MD","24","027",288618,0.652055658344247,14841,0.121527416862427,9.60514889989582,10.6626097220196,11.4257649859564,5.77692307692308,182.723596722254,324,177317,1,0,0,0,9 +"3356",2010,24029,"MD","24","029",20213,0.827981991787464,1647,0.145005689407807,7.40671073017764,7.60290046220476,8.68440111040014,9.08461538461538,457.384114697863,52,11369,1,0,0,0,9 +"3357",2010,24031,"MD","24","031",975619,0.653183261088601,53829,0.12298858468316,10.8935676343808,11.8544349931087,12.6558640010861,5.75384615384615,177.328922630874,1063,599451,1,0,0,0,9 +"3358",2010,24033,"MD","24","033",866442,0.266027039317115,70739,0.113177800706799,11.1667523263859,11.7248786368888,12.5678992966085,7.68461538461538,340.605573979054,1858,545499,1,0,0,0,9 +"3359",2010,24035,"MD","24","035",47809,0.910539856512372,2289,0.135664832981238,7.73587031995257,8.79860565085442,9.56057461908493,7.50769230769231,337.190317313835,95,28174,1,0,0,0,9 +"3360",2010,24037,"MD","24","037",105772,0.811150398971372,7311,0.107561547479484,8.89713534229332,9.59675856716411,10.3759257158973,6.71538461538462,308.297286669288,196,63575,1,0,0,0,9 +"3361",2010,24039,"MD","24","039",26464,0.552373035066505,3368,0.119860943168077,8.12207437536222,8.02256894698825,8.86897618927454,12.1692307692308,416.817687567959,69,16554,1,0,0,0,9 +"3362",2010,24041,"MD","24","041",37876,0.846314288731651,1764,0.151758369415989,7.47533923656674,8.33351070898294,9.29348595306285,8.17692307692308,367.380480494997,76,20687,1,0,0,0,9 +"3363",2010,24043,"MD","24","043",147727,0.873489612596208,8915,0.121487608900201,9.09549053029724,9.94222738085206,10.6553752281187,9.79230769230769,342.646579713076,305,89013,1,0,0,0,9 +"3364",2010,24045,"MD","24","045",98974,0.71230828298341,9513,0.118233071311658,9.16041456320646,9.35478697634121,10.3266615944251,9.96923076923077,365.019530250567,214,58627,1,0,0,0,9 +"3365",2010,24047,"MD","24","047",51500,0.841184466019417,2496,0.159650485436893,7.82244472948932,8.64628976475065,9.6031929420335,13.7615384615385,367.432437072903,107,29121,1,0,0,0,9 +"3366",2010,24510,"MD","24","510",620942,0.315721919277485,56227,0.111873572733041,10.9371523475599,11.2433714158334,12.2419319462307,11.4307692307692,601.111113938805,2362,392939,1,0,0,0,9 +"3367",2010,23001,"ME","23","001",107712,0.944165923945336,6949,0.128871434937611,8.84635304331433,9.5682245844549,10.4054136931151,8.86923076923077,343.8008410842,224,65154,0,0,0,0,9 +"3368",2010,23003,"ME","23","003",71699,0.966917251286629,3841,0.154158356462433,8.2534880283459,9.05321861620397,9.94602008325483,10.0692307692308,414.878397711016,174,41940,0,0,0,0,9 +"3369",2010,23005,"ME","23","005",281481,0.944330167933182,17501,0.136186811898494,9.77001330113616,10.5602819036303,11.396256808163,6.76923076923077,278.073397644959,486,174774,0,0,0,0,9 +"3370",2010,23007,"ME","23","007",30719,0.985709170220385,2377,0.148214460106123,7.77359446736019,8.14060704285845,9.14920937197195,9.56153846153846,304.878048780488,56,18368,0,0,0,0,9 +"3371",2010,23009,"ME","23","009",54351,0.979632389468455,2986,0.170889220069548,8.00168997809913,8.77074954913864,9.72841962445348,9.26153846153846,331.945198865351,110,33138,0,0,0,0,9 +"3372",2010,23011,"ME","23","011",122074,0.976309451644085,7201,0.146534069498829,8.88197518424887,9.66332499605232,10.5447359923049,7.89230769230769,402.096261845086,300,74609,0,0,0,0,9 +"3373",2010,23013,"ME","23","013",39727,0.983059380270345,1771,0.165454225086213,7.47929963778283,8.50207955360619,9.36956387752416,7.71538461538462,379.87506331251,90,23692,0,0,0,0,9 +"3374",2010,23015,"ME","23","015",34384,0.984934853420195,1436,0.172027687296417,7.26961674960817,8.29329935871132,9.22818029010451,7.90769230769231,365.786440847823,73,19957,0,0,0,0,9 +"3375",2010,23017,"ME","23","017",57777,0.981826678436056,2700,0.151392422590304,7.90100705199242,8.85822643936501,9.75492953789498,11.0846153846154,335.590054861679,115,34268,0,0,0,0,9 +"3376",2010,23019,"ME","23","019",153864,0.965989445224354,14025,0.133189050070192,9.5485967303909,9.83985528729127,10.7754292438361,8.77692307692308,361.026029660972,343,95007,0,0,0,0,9 +"3377",2010,23021,"ME","23","021",17550,0.9797150997151,659,0.173846153846154,6.49072353450251,7.65964295456468,8.55043452519604,11.0769230769231,517.881571233144,53,10234,0,0,0,0,9 +"3378",2010,23023,"ME","23","023",35229,0.975985693604701,1601,0.151579664480967,7.37838371299671,8.44698529637274,9.30846476996938,6.91538461538462,280.400037386672,60,21398,0,0,0,0,9 +"3379",2010,23025,"ME","23","025",52217,0.981557730241109,2459,0.149912863626788,7.80751004221619,8.8509474519704,9.66319784238695,11.5076923076923,446.927374301676,140,31325,0,0,0,0,9 +"3380",2010,23027,"ME","23","027",38824,0.983798681228106,1982,0.165902534514733,7.59186171488993,8.46863300080086,9.38982457394998,8.80769230769231,303.289192652713,71,23410,0,0,0,0,9 +"3381",2010,23029,"ME","23","029",32828,0.934263433654198,1585,0.162666016814914,7.36833968631138,8.23827262463303,9.16429643347478,11.2,481.877226063273,92,19092,0,0,0,0,9 +"3382",2010,23031,"ME","23","031",197215,0.976061658595949,10489,0.146393529903912,9.2580823679616,10.163772734131,11.0188750145659,8.28461538461539,315.949181366501,379,119956,0,0,0,0,9 +"3383",2010,26001,"MI","26","001",10879,0.987498850997334,309,0.189079878665319,5.73334127689775,6.87832646829133,7.93630269320196,17.3692307692308,736.32538569425,42,5704,1,0,0,0,9 +"3384",2010,26003,"MI","26","003",9578,0.878575903111297,477,0.167049488410942,6.16751649088834,7.02108396428914,7.80384330353877,13.7461538461538,343.053173241853,20,5830,1,0,0,0,9 +"3385",2010,26005,"MI","26","005",111521,0.967844621192421,5876,0.128253871468154,8.67863153729377,9.59000892504034,10.389056904886,11,329.29662855648,214,64987,1,0,0,0,9 +"3386",2010,26007,"MI","26","007",29511,0.982650537087866,1455,0.146453864660635,7.28276117960559,8.07309119969315,9.04227668692893,12.7384615384615,449.491365034303,76,16908,1,0,0,0,9 +"3387",2010,26009,"MI","26","009",23492,0.979354673931551,909,0.16030989272944,6.81234509417748,7.85941315469358,8.77847995250849,15.5461538461538,378.057248669084,49,12961,1,0,0,0,9 +"3388",2010,26011,"MI","26","011",15852,0.97848851879889,735,0.154365379762806,6.59987049921284,7.45124168498768,8.40626163070896,16.0461538461538,572.246065808298,52,9087,1,0,0,0,9 +"3389",2010,26013,"MI","26","013",8861,0.77158334273784,448,0.146936011736824,6.10479323241498,7.07411681619736,7.6980291702728,18.7846153846154,354.676124696659,19,5357,1,0,0,0,9 +"3390",2010,26015,"MI","26","015",59092,0.98277262573614,2939,0.139832803086712,7.98582466641892,8.89645120735523,9.74067446213022,10.0538461538462,336.144194268162,116,34509,1,0,0,0,9 +"3391",2010,26017,"MI","26","017",107678,0.963790189268003,6344,0.139787143149018,8.75526476331468,9.47562344948448,10.3719274598057,11.2076923076923,425.41793372934,270,63467,1,0,0,0,9 +"3392",2010,26019,"MI","26","019",17495,0.973249499857102,674,0.151700485853101,6.51323011091231,7.6246189861594,8.50754681436443,13.0923076923077,416.032470826991,41,9855,1,0,0,0,9 +"3393",2010,26021,"MI","26","021",156740,0.811216026540768,9040,0.134273318872017,9.10941445338622,9.85728653363541,10.7381559965232,11.6846153846154,439.801480037222,397,90268,1,0,0,0,9 +"3394",2010,26023,"MI","26","023",45173,0.954773869346734,2519,0.128505965953114,7.83161727635261,8.67743954055833,9.391327705757,12.2692307692308,394.232935345799,105,26634,1,0,0,0,9 +"3395",2010,26025,"MI","26","025",135953,0.849573014203438,8489,0.130420071642406,9.04652648673797,9.73174978928182,10.5981086463521,11.3846153846154,540.423966407449,426,78827,1,0,0,0,9 +"3396",2010,26027,"MI","26","027",52245,0.913943918078285,2531,0.150062206909752,7.83636976054512,8.78462153484075,9.62019582838564,11.0538461538462,399.274047186933,121,30305,1,0,0,0,9 +"3397",2010,26029,"MI","26","029",25936,0.970118753855645,1124,0.15588371375694,7.02464903045364,7.99463231143183,8.91972065553706,13.6461538461538,383.038774275922,57,14881,1,0,0,0,9 +"3398",2010,26031,"MI","26","031",26059,0.950765570436318,1079,0.16159484247285,6.98378996525813,8.02617019494643,8.90747697752874,13.6846153846154,341.01759650798,50,14662,1,0,0,0,9 +"3399",2010,26033,"MI","26","033",38623,0.745514330839137,3128,0.125676410429019,8.0481491016652,8.56235774337061,9.21203892861176,11.5769230769231,328.947368421053,79,24016,1,0,0,0,9 +"3400",2010,26035,"MI","26","035",31005,0.980583776810192,1697,0.153523625221738,7.43661726523423,8.15765701519647,9.08783369748339,15.0923076923077,553.747787863219,97,17517,1,0,0,0,9 +"3401",2010,26037,"MI","26","037",75400,0.952201591511936,6026,0.126697612732095,8.70383871969025,9.17024727840974,10.0408117433993,8.13846153846154,238.211852709382,107,44918,1,0,0,0,9 +"3402",2010,26039,"MI","26","039",14054,0.983136473601822,572,0.159812153123666,6.3491389913798,7.3304052118444,8.28223006329669,13.7846153846154,573.494576736068,46,8021,1,0,0,0,9 +"3403",2010,26041,"MI","26","041",37049,0.961159545466814,1776,0.158789710923372,7.48211892355212,8.32627478739676,9.26747656334699,12.1769230769231,347.679007705319,74,21284,1,0,0,0,9 +"3404",2010,26043,"MI","26","043",26156,0.982183820155987,1167,0.146773206912372,7.06219163228656,8.02256894698825,8.91998807096852,11.1692307692308,279.683025903976,42,15017,1,0,0,0,9 +"3405",2010,26045,"MI","26","045",107745,0.902993178337742,6719,0.138911318390645,8.81269461292015,9.49235642280134,10.4015318419374,9.37692307692308,353.537702935293,228,64491,1,0,0,0,9 +"3406",2010,26047,"MI","26","047",32655,0.942550911039657,1670,0.15265656101669,7.4205789054108,8.27359179819963,9.17884970488481,14.0615384615385,340.207264733592,65,19106,1,0,0,0,9 +"3407",2010,26049,"MI","26","049",424959,0.762835944173438,25935,0.124948524445888,10.1633486867855,10.9104778516569,11.7665361437378,13.6692307692308,496.722036761453,1235,248630,1,0,0,0,9 +"3408",2010,26051,"MI","26","051",25734,0.986710188855211,1177,0.162936193362866,7.07072410726028,7.94129557090653,8.85822643936501,14.3846153846154,539.849410427618,76,14078,1,0,0,0,9 +"3409",2010,26053,"MI","26","053",16397,0.927242788314936,942,0.158199670671464,6.84800527457636,7.57660976697304,8.33686963728496,12.6923076923077,464.204662677945,45,9694,1,0,0,0,9 +"3410",2010,26055,"MI","26","055",86975,0.961724633515378,4825,0.141649899396378,8.48156601377309,9.29624280097689,10.1725218306154,11.3230769230769,332.857822158821,175,52575,1,0,0,0,9 +"3411",2010,26057,"MI","26","057",42431,0.93085244278947,3278,0.117531993118239,8.09498875930377,8.62371303479391,9.3160508263983,11.4769230769231,352.319436288902,90,25545,1,0,0,0,9 +"3412",2010,26059,"MI","26","059",46646,0.983085366376538,3063,0.136196029670283,8.02715010683277,8.6031873845831,9.49799744411546,13.1384615384615,415.186085655508,111,26735,1,0,0,0,9 +"3413",2010,26061,"MI","26","061",36729,0.952517084592556,5378,0.114950039478341,8.59007183682881,8.1610895128458,9.14323856843545,10.4538461538462,305.379375146817,65,21285,1,0,0,0,9 +"3414",2010,26063,"MI","26","063",33084,0.985007858783702,1461,0.152551082094064,7.2868764117507,8.20958048347558,9.10386812746567,12.0923076923077,347.542764051045,64,18415,1,0,0,0,9 +"3415",2010,26065,"MI","26","065",281122,0.798379351313665,38226,0.112897603175845,10.5512711913445,10.3510218770599,11.4077316020917,9.99230769230769,295.075641505794,520,176226,1,0,0,0,9 +"3416",2010,26067,"MI","26","067",63847,0.937444202546713,4166,0.117891208670728,8.33471162182092,9.10264379652081,9.75637868749792,11.5615384615385,379.356875525116,149,39277,1,0,0,0,9 +"3417",2010,26069,"MI","26","069",25841,0.977361557215278,1040,0.172090863356681,6.94697599213542,7.83161727635261,8.86021535890118,15.3461538461538,505.086433805222,71,14057,1,0,0,0,9 +"3418",2010,26071,"MI","26","071",11811,0.980357294047921,414,0.179155024976717,6.02586597382531,6.93244789157251,8.05547514175727,11.6384615384615,479.356734188959,31,6467,1,0,0,0,9 +"3419",2010,26073,"MI","26","073",70297,0.908758552996572,15502,0.0924221517276697,9.64872432684146,8.7528975247753,10.0034686248994,9.51538461538462,257.784875099806,113,43835,1,0,0,0,9 +"3420",2010,26075,"MI","26","075",160109,0.895165168728803,10123,0.12994272651756,9.22256534159875,9.95698092497613,10.7228267583338,11.8384615384615,350.789013497524,335,95499,1,0,0,0,9 +"3421",2010,26077,"MI","26","077",250754,0.843759222185887,28369,0.114885505315967,10.2530522786797,10.2917725914344,11.2562509829471,9.72307692307692,312.7412622185,478,152842,1,0,0,0,9 +"3422",2010,26079,"MI","26","079",17146,0.979528753061939,812,0.147439636066721,6.69950034016168,7.65539064482615,8.49351506406166,15.1923076923077,518.134715025907,52,10036,1,0,0,0,9 +"3423",2010,26081,"MI","26","081",602994,0.851923899740296,45612,0.110226635754253,10.7279261187772,11.2489989808728,12.1162901598357,9.86153846153846,278.92179900389,1003,359599,1,0,0,0,9 +"3424",2010,26085,"MI","26","085",11514,0.885270105957964,451,0.181344450234497,6.11146733950268,7.09423484592476,8.06714903991011,15.8,427.02455391185,28,6557,1,0,0,0,9 +"3425",2010,26087,"MI","26","087",88206,0.97641883772079,4506,0.139049497766592,8.41316512099219,9.38185373005353,10.1614575610024,15.7461538461538,383.265344843943,202,52705,1,0,0,0,9 +"3426",2010,26089,"MI","26","089",21718,0.945805322773736,799,0.187171931117046,6.68336094576627,7.6511201757027,8.7132532743207,10.0769230769231,192.726663314899,23,11934,1,0,0,0,9 +"3427",2010,26091,"MI","26","091",99642,0.955450512835953,6242,0.135826258003653,8.73905592283072,9.46265430059017,10.2568871383409,12.6461538461538,298.634088402477,176,58935,1,0,0,0,9 +"3428",2010,26093,"MI","26","093",181065,0.978786623588214,8412,0.135713693977301,9.03741453682259,10.1528445106662,10.9028870561326,10.7692307692308,285.974381844765,311,108751,1,0,0,0,9 +"3429",2010,26097,"MI","26","097",11104,0.790435878962536,437,0.176062680115274,6.07993319509559,7.08757370555797,8.05864371221562,15.2230769230769,409.062303335431,26,6356,1,0,0,0,9 +"3430",2010,26099,"MI","26","099",841350,0.86880251975991,49890,0.124723361264634,10.8175758608551,11.6755968828411,12.4597454018792,13.4076923076923,358.968178863748,1817,506173,1,0,0,0,9 +"3431",2010,26101,"MI","26","101",24587,0.94163582380933,1234,0.166876804815553,7.11801620446533,7.91169052070834,8.80252249828442,12.7384615384615,361.236540465439,52,14395,1,0,0,0,9 +"3432",2010,26103,"MI","26","103",67080,0.95123732856291,7099,0.143798449612403,8.86770920803939,8.88696203486613,9.91472418446212,9.56153846153846,293.878721269174,123,41854,1,0,0,0,9 +"3433",2010,26105,"MI","26","105",28719,0.971099272258783,1411,0.154427382569031,7.25205395185281,8.06306291132679,9.01274272762971,12.2538461538462,437.0037545393,71,16247,1,0,0,0,9 +"3434",2010,26107,"MI","26","107",42851,0.94994282513827,6224,0.121490747007071,8.73616806585823,8.30523682949259,9.41074739631652,12.2384615384615,325.001003089516,81,24923,1,0,0,0,9 +"3435",2010,26109,"MI","26","109",23968,0.961031375166889,1025,0.160463951935915,6.93244789157251,7.88645727097769,8.81789020094551,11.3,288.267512251369,40,13876,1,0,0,0,9 +"3436",2010,26111,"MI","26","111",83660,0.958403060004781,5321,0.126906526416448,8.57941653459637,9.26473385580652,10.1173077763895,9.51538461538462,296.093606420126,145,48971,1,0,0,0,9 +"3437",2010,26113,"MI","26","113",14818,0.982588743420165,715,0.140774733432312,6.57228254269401,7.42892719480227,8.31532177537757,12.3,383.371271115371,32,8347,1,0,0,0,9 +"3438",2010,26115,"MI","26","115",151936,0.962135372788543,8683,0.134615890901432,9.06912237006065,9.90628363983813,10.7258411615317,11.3692307692308,352.434551802372,320,90797,1,0,0,0,9 +"3439",2010,26117,"MI","26","117",63315,0.961731027402669,3599,0.123983258311617,8.18841130807903,9.0447579311865,9.76984186766621,13.6769230769231,360.808210391276,135,37416,1,0,0,0,9 +"3440",2010,26119,"MI","26","119",9778,0.987523010840663,358,0.185007158928206,5.8805329864007,6.80239476332431,7.86672228513673,19.5846153846154,545.010336402932,29,5321,1,0,0,0,9 +"3441",2010,26121,"MI","26","121",171923,0.826294329438179,10731,0.12724300995213,9.28089202792713,9.9663214967075,10.8226142592295,14.1,386.57373078254,391,101145,1,0,0,0,9 +"3442",2010,26123,"MI","26","123",48373,0.970355363529242,2641,0.133504227564964,7.87891291229713,8.66475075577385,9.52200748967842,12.2846153846154,464.491780672787,128,27557,1,0,0,0,9 +"3443",2010,26125,"MI","26","125",1203125,0.790951896103896,63500,0.132670337662338,11.0587951848808,12.0361913863545,12.840350537774,11.3461538461538,301.189617142709,2208,733093,1,0,0,0,9 +"3444",2010,26127,"MI","26","127",26503,0.972040901030072,1316,0.139606836961853,7.18235211188526,7.98480338973441,8.88875674784872,15.7923076923077,386.860323062305,57,14734,1,0,0,0,9 +"3445",2010,26129,"MI","26","129",21604,0.983012405110165,950,0.158813182743936,6.85646198459459,7.71467747380093,8.6978466911095,14.0769230769231,564.455881132232,68,12047,1,0,0,0,9 +"3446",2010,26131,"MI","26","131",6776,0.981700118063754,188,0.194510035419126,5.23644196282995,6.51471269087253,7.51261754467451,16.2769230769231,313.152400835073,12,3832,1,0,0,0,9 +"3447",2010,26133,"MI","26","133",23505,0.979578813018507,1192,0.138098276962348,7.0833878476253,7.90322680873073,8.78783082925876,13.2076923076923,396.734569314107,52,13107,1,0,0,0,9 +"3448",2010,26135,"MI","26","135",8601,0.987443320544123,373,0.170794093710034,5.92157841964382,6.69579891705849,7.74889133725553,19.0538461538462,746.905676483141,35,4686,1,0,0,0,9 +"3449",2010,26137,"MI","26","137",24150,0.979171842650103,1204,0.143685300207039,7.09340462586877,8.00803284696931,8.85037430393924,13.8384615384615,402.877697841727,56,13900,1,0,0,0,9 +"3450",2010,26139,"MI","26","139",264114,0.944255132253497,22291,0.110376579810233,10.0119382885409,10.4047172826287,11.2550740024771,9.98461538461538,233.107886269617,355,152290,1,0,0,0,9 +"3451",2010,26141,"MI","26","141",13317,0.98227829090636,449,0.180671322369903,6.10702288774225,7.14440718032114,8.18841130807903,16.9923076923077,493.083139295987,36,7301,1,0,0,0,9 +"3452",2010,26143,"MI","26","143",24441,0.982447526696944,879,0.189231209852297,6.77878489768518,7.72929567431048,8.79875658285984,16.1846153846154,529.741183593159,70,13214,1,0,0,0,9 +"3453",2010,26145,"MI","26","145",199871,0.778156911207729,14078,0.131489810928049,9.55236857416808,10.0768104088664,10.990634363095,11.8923076923077,409.555722956767,473,115491,1,0,0,0,9 +"3454",2010,26147,"MI","26","147",162688,0.957274046026751,8791,0.136236231313926,9.08148374985118,9.98313018018832,10.7853524573953,15.8307692307692,446.664524887816,431,96493,1,0,0,0,9 +"3455",2010,26149,"MI","26","149",61288,0.951393421224383,3402,0.128442762041509,8.13211877295581,8.90693533905917,9.76278767043299,12.1692307692308,442.821404951548,154,34777,1,0,0,0,9 +"3456",2010,26151,"MI","26","151",43087,0.984334021862743,2167,0.138580082159352,7.68109900153636,8.53503310954457,9.39914089486785,14.9538461538462,370.050573578389,90,24321,1,0,0,0,9 +"3457",2010,26153,"MI","26","153",8472,0.893885741265345,324,0.169971671388102,5.78074351579233,6.87109129461055,7.78572089653462,13.2384615384615,332.917186849771,16,4806,1,0,0,0,9 +"3458",2010,26155,"MI","26","155",70635,0.980873504636512,3898,0.132087492036526,8.26821888006751,9.12347443895452,9.9437653990347,12.5230769230769,397.219463753724,164,41287,1,0,0,0,9 +"3459",2010,26157,"MI","26","157",55697,0.976031025010324,2959,0.138714832037632,7.99260665240021,8.83637393092739,9.67746486047107,14.3153846153846,383.449811367431,124,32338,1,0,0,0,9 +"3460",2010,26159,"MI","26","159",76154,0.930876907319379,3943,0.13569871576017,8.27969713387763,9.15609535712379,10.0100972875944,13.0923076923077,426.318994879661,189,44333,1,0,0,0,9 +"3461",2010,26161,"MI","26","161",345980,0.769966472050408,41067,0.114269610960171,10.6229601582636,10.6845769267414,11.6191845767696,7.86923076923077,237.675416272813,523,220048,1,0,0,0,9 +"3462",2010,26163,"MI","26","163",1814847,0.549107445421019,121209,0.121257604635542,11.7052716072861,12.4009154828778,13.2254252532127,14.9461538461538,522.732321846291,5600,1071294,1,0,0,0,9 +"3463",2010,26165,"MI","26","165",32735,0.97739422636322,1735,0.133893386283794,7.45876269238096,8.27308133366583,9.14420056947164,13.9923076923077,420.03402807316,79,18808,1,0,0,0,9 +"3464",2010,27001,"MN","27","001",16212,0.963483839131507,539,0.17573402417962,6.289715570909,7.29573507274928,8.35019365072007,10.4307692307692,501.165501165501,43,8580,1,0,0,0,9 +"3465",2010,27003,"MN","27","003",331441,0.896231908544809,18541,0.116219779689296,9.82773977509785,10.7799349774857,11.5325221887168,8.04615384615385,236.312931161016,483,204390,1,0,0,0,9 +"3466",2010,27005,"MN","27","005",32554,0.901394605885605,1510,0.147017263623518,7.31986492980897,8.16678428905615,9.09425589295538,7.95384615384615,418.041804180418,76,18180,1,0,0,0,9 +"3467",2010,27007,"MN","27","007",44572,0.76258637709773,4534,0.119379879745131,8.41935983106747,8.40043463080604,9.45720044990771,8.22307692307692,343.44143933185,88,25623,1,0,0,0,9 +"3468",2010,27009,"MN","27","009",38465,0.957701806837385,3114,0.10425061744443,8.04366335239394,8.501470230951,9.3429463365242,8.72307692307692,213.78484693005,50,23388,1,0,0,0,9 +"3469",2010,27013,"MN","27","013",64091,0.941676678472796,10705,0.102479287263422,9.27846620102378,8.76155013912964,9.8669791577196,6.4,197.253433208489,79,40050,1,0,0,0,9 +"3470",2010,27015,"MN","27","015",25844,0.987231078780375,1601,0.130591239746169,7.37838371299671,7.8984110928116,8.87542691981896,6.9,219.87082588979,32,14554,1,0,0,0,9 +"3471",2010,27017,"MN","27","017",35413,0.910400135543444,1787,0.129585180583402,7.48829351515943,8.426611813185,9.17419492533983,8.33846153846154,335.844168305906,70,20843,1,0,0,0,9 +"3472",2010,27019,"MN","27","019",91332,0.950554022686463,3906,0.101289799851093,8.27026911143662,9.57115672841547,10.2145320850248,6.73846153846154,143.996455471865,78,54168,1,0,0,0,9 +"3473",2010,27021,"MN","27","021",28654,0.870454386822084,1186,0.161129336218329,7.07834157955767,7.97865372908273,8.94533261656327,10.6615384615385,458.511112526269,72,15703,1,0,0,0,9 +"3474",2010,27023,"MN","27","023",12439,0.967039151057159,615,0.136506150012059,6.42162226780652,7.19368581839511,8.1285852003745,7.32307692307692,233.678983496422,16,6847,1,0,0,0,9 +"3475",2010,27025,"MN","27","025",53905,0.968147667192283,2673,0.114089602077729,7.89095671613892,8.99069070991623,9.64471682357877,8.9,264.680536747507,86,32492,1,0,0,0,9 +"3476",2010,27027,"MN","27","027",59144,0.947856080075747,7165,0.101734749086974,8.87696334026227,8.7826296549207,9.77081293563159,5.56153846153846,223.099365024884,78,34962,1,0,0,0,9 +"3477",2010,27029,"MN","27","029",8705,0.890867317633544,402,0.133486502010339,5.99645208861902,6.86901445066571,7.74022952476318,13.0769230769231,340.063761955367,16,4705,1,0,0,0,9 +"3478",2010,27033,"MN","27","033",11715,0.95510029876227,515,0.134784464361929,6.24416690066374,7.14361760270412,8.01565761455734,6.53076923076923,341.518946170109,21,6149,1,0,0,0,9 +"3479",2010,27035,"MN","27","035",62608,0.976344876054178,3215,0.137889726552517,8.07558263667172,8.84375938191798,9.76640701198776,9.57692307692308,259.703196347032,91,35040,1,0,0,0,9 +"3480",2010,27037,"MN","27","037",399214,0.888518438732109,21729,0.115284033125091,9.98640305286344,10.9436229114453,11.7350685159509,6.98461538461538,216.890500931281,531,244824,1,0,0,0,9 +"3481",2010,27039,"MN","27","039",20157,0.984124621719502,927,0.106116981693704,6.83195356556585,7.92117272158701,8.63177109612367,6.93076923076923,211.658876444131,24,11339,1,0,0,0,9 +"3482",2010,27041,"MN","27","041",35990,0.984495693248124,2001,0.135093081411503,7.60140233458373,8.25686684897431,9.19927942461676,6.83076923076923,238.722832844283,48,20107,1,0,0,0,9 +"3483",2010,27043,"MN","27","043",14479,0.9861178258167,631,0.141239035845017,6.44730586254121,7.27931883541462,8.24354550792826,7.99230769230769,304.955527318933,24,7870,1,0,0,0,9 +"3484",2010,27045,"MN","27","045",20864,0.989455521472393,896,0.132476993865031,6.79794041297493,7.7393592026891,8.63230599851674,7.50769230769231,167.430384208671,19,11348,1,0,0,0,9 +"3485",2010,27047,"MN","27","047",31203,0.974874210813063,1538,0.135403647085216,7.33823815006559,8.15133333790043,9.04310445260027,7.73846153846154,328.416685872321,57,17356,1,0,0,0,9 +"3486",2010,27049,"MN","27","049",46225,0.964672796106003,2230,0.134862087614927,7.70975686445416,8.60024674655152,9.4881993554792,7.03076923076923,292.649983116347,78,26653,1,0,0,0,9 +"3487",2010,27053,"MN","27","053",1154323,0.787314295911976,83262,0.117092876084077,11.3297475415991,11.9449675879288,12.8160066812211,6.99230769230769,248.308356568064,1815,730946,1,0,0,0,9 +"3488",2010,27055,"MN","27","055",19027,0.983865033899196,861,0.143112419193777,6.75809450442773,7.67275789664251,8.59378379357795,7.68461538461538,293.793609988983,32,10892,1,0,0,0,9 +"3489",2010,27057,"MN","27","057",20427,0.957996768982229,828,0.156312723356342,6.71901315438526,7.67322312112171,8.62658556818743,9.99230769230769,274.360562881671,31,11299,1,0,0,0,9 +"3490",2010,27059,"MN","27","059",37856,0.973742603550296,2113,0.113509087066779,7.65586401761606,8.50633444808136,9.2985343827121,9.63846153846154,236.427711112102,53,22417,1,0,0,0,9 +"3491",2010,27061,"MN","27","061",45034,0.948416751787538,1998,0.160922858284851,7.5999019592085,8.48425669116997,9.44041981429151,10.1615384615385,360.388592917581,92,25528,1,0,0,0,9 +"3492",2010,27063,"MN","27","063",10272,0.973617601246106,482,0.133372274143302,6.1779441140506,7.05272104923232,7.90174751852014,5.86923076923077,353.419332037462,20,5659,1,0,0,0,9 +"3493",2010,27065,"MN","27","065",16217,0.982117530986002,713,0.138126657211568,6.5694814204143,7.57967882309046,8.4211227226655,11.2307692307692,268.154027673496,25,9323,1,0,0,0,9 +"3494",2010,27067,"MN","27","067",42231,0.962799838980843,2778,0.129833534607279,7.92948652331429,8.43858279083433,9.38210641483062,6.69230769230769,267.201068804275,64,23952,1,0,0,0,9 +"3495",2010,27071,"MN","27","071",13320,0.958108108108108,582,0.160960960960961,6.36647044773144,7.32317071794347,8.22469956196723,8.73076923076923,342.240358036067,26,7597,1,0,0,0,9 +"3496",2010,27075,"MN","27","075",10854,0.986088078127879,487,0.157729869172655,6.18826412308259,6.99668148817654,8.00636756765025,8.34615384615385,389.673648319532,24,6159,1,0,0,0,9 +"3497",2010,27079,"MN","27","079",27732,0.983737198903793,1296,0.127650367806145,7.16703787691222,8.19284713459287,8.96123778149188,8.81538461538462,272.851296043656,44,16126,1,0,0,0,9 +"3498",2010,27083,"MN","27","083",25852,0.937219557481046,2432,0.10796069936562,7.79646924308606,7.95191138185419,8.90801832278489,5.6,205.734005840191,31,15068,1,0,0,0,9 +"3499",2010,27085,"MN","27","085",36592,0.980077612592916,1882,0.117512024486226,7.54009032014532,8.46968220874519,9.23756635822977,8.98461538461538,300.543841236523,63,20962,1,0,0,0,9 +"3500",2010,27087,"MN","27","087",5440,0.534926470588235,256,0.127941176470588,5.54517744447956,6.32256523992728,7.23417717974985,8.26923076923077,565.570873100035,16,2829,1,0,0,0,9 +"3501",2010,27091,"MN","27","091",20805,0.984474885844749,941,0.143523191540495,6.84694313958538,7.67878899819915,8.63728467167406,7.32307692307692,296.193048174928,34,11479,1,0,0,0,9 +"3502",2010,27093,"MN","27","093",23333,0.988128401834312,1064,0.133973342476321,6.96979066990159,7.9002660367677,8.74830491237962,8.81538461538462,290.98705873344,38,13059,1,0,0,0,9 +"3503",2010,27095,"MN","27","095",26073,0.922716986921336,1360,0.11502320408085,7.2152399787301,8.07899825868515,8.8758461777386,11.0923076923077,417.550824834006,61,14609,1,0,0,0,9 +"3504",2010,27097,"MN","27","097",33244,0.986493803393093,1717,0.126880038503189,7.44833386089748,8.25738565573044,9.11932097358901,9.5,311.822842344485,59,18921,1,0,0,0,9 +"3505",2010,27099,"MN","27","099",39209,0.949118824759622,2180,0.118926777015481,7.68708015578313,8.40670845824097,9.25674674479034,6.11538461538461,200.139632301606,43,21485,1,0,0,0,9 +"3506",2010,27103,"MN","27","103",32758,0.957445509493864,3377,0.119726479028024,8.12474302038557,8.19201691453688,9.18594521514146,6.13076923076923,195.60637977731,39,19938,1,0,0,0,9 +"3507",2010,27105,"MN","27","105",21424,0.89073002240478,1356,0.113564227035101,7.21229446850034,7.81963630236759,8.62425226370964,5.62307692307692,201.697621648878,24,11899,1,0,0,0,9 +"3508",2010,27109,"MN","27","109",144535,0.882561317327983,8175,0.111786072577576,9.00883599576545,9.80675636357636,10.6979269845779,5.96923076923077,204.3714711282,177,86607,1,0,0,0,9 +"3509",2010,27111,"MN","27","111",57291,0.977623012340507,2512,0.149395192962245,7.82883452758809,8.65817178467581,9.64244741103077,7.21538461538462,247.070003167564,78,31570,1,0,0,0,9 +"3510",2010,27113,"MN","27","113",13971,0.955049745902226,877,0.124328967146231,6.77650699237218,7.41034709782102,8.28953948462414,9.06153846153846,324.189526184539,26,8020,1,0,0,0,9 +"3511",2010,27115,"MN","27","115",29715,0.934040047114252,1467,0.129227662796567,7.29097477814298,8.22924441673591,8.96264794774056,9.84615384615385,418.812609655329,74,17669,1,0,0,0,9 +"3512",2010,27117,"MN","27","117",9606,0.964084946908182,436,0.121278367686862,6.07764224334903,6.96034772910131,7.82604401351897,6.61538461538461,353.426271352837,18,5093,1,0,0,0,9 +"3513",2010,27119,"MN","27","119",31639,0.961250355573817,2225,0.126615885457821,7.70751219460034,8.15334975799889,9.05986625862135,6.66923076923077,375.560538116592,67,17840,1,0,0,0,9 +"3514",2010,27121,"MN","27","121",10971,0.987603682435512,475,0.15003190228785,6.16331480403464,7.05185562295589,7.98139158158007,7.13846153846154,261.60889470242,16,6116,1,0,0,0,9 +"3515",2010,27123,"MN","27","123",509364,0.741134041667648,43847,0.116916389850873,10.6884615804086,11.0156904030561,11.9802317095427,7.47692307692308,267.859147790884,835,311731,1,0,0,0,9 +"3516",2010,27127,"MN","27","127",16079,0.903041233907581,717,0.128739349462031,6.57507584059962,7.48155570190952,8.34260168068419,6.76923076923077,257.822571194187,22,8533,1,0,0,0,9 +"3517",2010,27129,"MN","27","129",15685,0.982212304749761,688,0.135033471469557,6.53378883793334,7.44775128004791,8.32579052588609,8.03846153846154,413.41295360588,36,8708,1,0,0,0,9 +"3518",2010,27131,"MN","27","131",64231,0.934346343665831,6167,0.108716974669552,8.72696777499149,8.98819632099506,9.79673718258925,7.78461538461538,184.123310011047,70,38018,1,0,0,0,9 +"3519",2010,27135,"MN","27","135",15561,0.954244585823533,639,0.123899492320545,6.45990445437753,7.62559507213245,8.35561499576018,6.4,234.79427549195,21,8944,1,0,0,0,9 +"3520",2010,27137,"MN","27","137",200143,0.944524664864622,17546,0.143827163578042,9.77258128268833,9.97873416191067,10.9841734526708,8.13076923076923,327.976926246395,398,121350,1,0,0,0,9 +"3521",2010,27139,"MN","27","139",130514,0.894777571754754,5640,0.0911396478538701,8.6376393444921,10.006630611453,10.5806577785729,6.88461538461539,186.834561834562,146,78144,1,0,0,0,9 +"3522",2010,27141,"MN","27","141",88800,0.955945945945946,5397,0.0947072072072072,8.59359852261864,9.53394445360403,10.1561899060919,8.43076923076923,202.520252025203,108,53328,1,0,0,0,9 +"3523",2010,27143,"MN","27","143",15257,0.982762010880252,679,0.120928098577702,6.5206211275587,7.49108759353488,8.32845106681936,7.9,293.427230046948,25,8520,1,0,0,0,9 +"3524",2010,27145,"MN","27","145",150768,0.937599490608087,16489,0.10681311684177,9.71044877090097,9.75487152820734,10.6916266804516,7.21538461538462,201.149425287356,182,90480,1,0,0,0,9 +"3525",2010,27147,"MN","27","147",36497,0.955914184727512,1769,0.119598871140094,7.47816969415979,8.46189187563115,9.23883064237581,7.80769230769231,235.192473840837,49,20834,1,0,0,0,9 +"3526",2010,27153,"MN","27","153",24894,0.980838756326826,1217,0.137302161163333,7.10414409298753,7.8808043446749,8.79497643168877,7.73846153846154,320.442793678538,44,13731,1,0,0,0,9 +"3527",2010,27157,"MN","27","157",21672,0.985372831303064,972,0.139719453672942,6.87935580446044,7.88382321489215,8.72176535714501,7.16923076923077,329.317269076305,41,12450,1,0,0,0,9 +"3528",2010,27159,"MN","27","159",13816,0.977779386218877,652,0.127967573827446,6.48004456192665,7.28000825288419,8.16961956172385,10.1846153846154,373.18590186593,27,7235,1,0,0,0,9 +"3529",2010,27161,"MN","27","161",19145,0.958109166884304,992,0.126664925568033,6.89972310728487,7.78322401633604,8.72469504674049,7.50769230769231,219.06764808973,25,11412,1,0,0,0,9 +"3530",2010,27163,"MN","27","163",238933,0.897439868080173,11801,0.122708039492243,9.37593955262575,10.4342334437372,11.1988994171788,6.72307692307692,198.853991283682,287,144327,1,0,0,0,9 +"3531",2010,27165,"MN","27","165",11195,0.969897275569451,542,0.12532380527021,6.29526600143965,7.12286665859908,7.9707403900071,7.32307692307692,432.396474305671,26,6013,1,0,0,0,9 +"3532",2010,27169,"MN","27","169",51432,0.956311245916939,7531,0.117494944781459,8.92678311410135,8.53050420547591,9.64400413444303,6.93076923076923,235.575061314057,73,30988,1,0,0,0,9 +"3533",2010,27171,"MN","27","171",125093,0.967264355319642,5655,0.0968479451288242,8.64029538855022,9.86256138592348,10.4937988057595,8.06923076923077,195.100504238627,142,72783,1,0,0,0,9 +"3534",2010,29001,"MO","29","001",25638,0.953779545986426,4792,0.101216943599345,8.47470313979528,7.79646924308606,8.98694678940676,8.58461538461538,385.494936295328,59,15305,0,0,0,0,9 +"3535",2010,29003,"MO","29","003",17345,0.984202940328625,883,0.135255116748342,6.78332520060396,7.69530313496357,8.526351129201,8.23846153846154,290.2612351116,29,9991,0,0,0,0,9 +"3536",2010,29007,"MO","29","007",25453,0.917652143165835,1405,0.120025144383766,7.24779258176785,8.04205641005875,8.99317889233952,9.53076923076923,395.723410163843,57,14404,0,0,0,0,9 +"3537",2010,29009,"MO","29","009",35555,0.96700885951343,1815,0.135423990999859,7.50384074669895,8.33038156934942,9.1958356857733,9.57692307692308,450.541662448112,89,19754,0,0,0,0,9 +"3538",2010,29011,"MO","29","011",12384,0.973271963824289,610,0.126372739018088,6.41345895716736,7.24136628332232,8.13739583005665,10.2307692307692,281.940940792402,19,6739,0,0,0,0,9 +"3539",2010,29013,"MO","29","013",17026,0.978327264184189,848,0.125748854692823,6.7428806357919,7.56992765524265,8.45723085024355,10.8846153846154,383.141762452107,36,9396,0,0,0,0,9 +"3540",2010,29015,"MO","29","015",19109,0.984143597257837,715,0.183212099010937,6.57228254269401,7.53689712956617,8.55506684384432,12.0692307692308,630.33359193173,65,10312,0,0,0,0,9 +"3541",2010,29017,"MO","29","017",12349,0.986314681350717,637,0.138229816179448,6.45676965557216,7.32118855673948,8.16820293023605,9.99230769230769,552.095130237826,39,7064,0,0,0,0,9 +"3542",2010,29019,"MO","29","019",163208,0.849118915739425,25168,0.0996519778442233,10.1333286252981,9.83080932703814,10.889863891977,6.40769230769231,240.0822041467,250,104131,0,0,0,0,9 +"3543",2010,29021,"MO","29","021",89071,0.920176039339403,6987,0.116042258423056,8.85180655855245,9.2775316215165,10.1535456363912,9.10769230769231,404.048032625935,214,52964,0,0,0,0,9 +"3544",2010,29023,"MO","29","023",42785,0.924926960383312,2461,0.132195863036111,7.80832305039106,8.54461378699223,9.44722902508206,9.51538461538462,605.391254550661,148,24447,0,0,0,0,9 +"3545",2010,29025,"MO","29","025",9428,0.984089944845142,416,0.130992787441663,6.03068526026126,7.02642680869964,7.85515700588134,9.51538461538462,517.538815411156,27,5217,0,0,0,0,9 +"3546",2010,29027,"MO","29","027",44312,0.93484834807727,3463,0.125225672504062,8.14989054440242,8.64628976475065,9.45727857185611,8.21538461538461,411.658764288602,112,27207,0,0,0,0,9 +"3547",2010,29029,"MO","29","029",44096,0.982311320754717,1981,0.17861030478955,7.59135704669855,8.39389497507174,9.45641889457289,11.9615384615385,484.050150769719,122,25204,0,0,0,0,9 +"3548",2010,29031,"MO","29","031",75905,0.904248731967591,7437,0.118845925828338,8.9142228207033,9.08455036591788,10.0429885913137,7.28461538461538,306.088499500943,138,45085,0,0,0,0,9 +"3549",2010,29033,"MO","29","033",9282,0.973281620340444,437,0.134238310708899,6.07993319509559,7.028201432058,7.85049318087114,11.3769230769231,391.083300743058,20,5114,0,0,0,0,9 +"3550",2010,29035,"MO","29","035",6292,0.979815638906548,346,0.13525111252384,5.84643877505772,6.61873898351722,7.49831587076698,11.4692307692308,595.069424766223,21,3529,0,0,0,0,9 +"3551",2010,29037,"MO","29","037",99756,0.942710212919524,5201,0.115441677693572,8.55660619377307,9.49077121771377,10.2850014398218,9.58461538461538,370.92117924941,212,57155,0,0,0,0,9 +"3552",2010,29039,"MO","29","039",13969,0.985539408690672,625,0.140382275037583,6.4377516497364,7.32448997934853,8.21093973337902,9.46923076923077,593.676653320447,43,7243,0,0,0,0,9 +"3553",2010,29041,"MO","29","041",7836,0.972179683511996,342,0.139612046962736,5.8348107370626,6.67959918584438,7.64826303090192,9.43846153846154,544.507575757576,23,4224,0,0,0,0,9 +"3554",2010,29043,"MO","29","043",77841,0.975154481571408,4132,0.112254467440038,8.32651683023953,9.29127498947218,10.0595506881677,8.35384615384615,324.733096085409,146,44960,0,0,0,0,9 +"3555",2010,29045,"MO","29","045",7139,0.990614932063314,355,0.141336321613671,5.87211778947542,6.73340189183736,7.58933582317062,12.3230769230769,624.219725343321,25,4005,0,0,0,0,9 +"3556",2010,29047,"MO","29","047",222649,0.906265018032868,12732,0.114125821360078,9.45187378840198,10.3710820321098,11.141122379853,8.30769230769231,313.090297919177,421,134466,0,0,0,0,9 +"3557",2010,29049,"MO","29","049",20740,0.96976856316297,1002,0.127965284474446,6.90975328164481,7.86978390253015,8.68372406230387,9.54615384615385,312.552796080419,37,11838,0,0,0,0,9 +"3558",2010,29051,"MO","29","051",76145,0.860739378816731,4824,0.126797557292009,8.48135873840702,9.23278656080601,10.0175302685768,6.80769230769231,336.5343393638,157,46652,0,0,0,0,9 +"3559",2010,29053,"MO","29","053",17601,0.915572978808022,1241,0.122493040168172,7.12367278520461,7.63336964967958,8.45998771764546,9.66153846153846,487.012987012987,51,10472,0,0,0,0,9 +"3560",2010,29055,"MO","29","055",24631,0.985424871097398,1386,0.12805001826966,7.23417717974985,7.98480338973441,8.85023096558882,12.6076923076923,482.817381425731,68,14084,0,0,0,0,9 +"3561",2010,29057,"MO","29","057",7839,0.978441127694859,296,0.153463451970915,5.69035945432406,6.77650699237218,7.66528471847135,9.66153846153846,534.883720930233,23,4300,0,0,0,0,9 +"3562",2010,29059,"MO","29","059",16723,0.981402858338815,840,0.133708066734438,6.73340189183736,7.55903825544338,8.45041215772589,12.4769230769231,449.486301369863,42,9344,0,0,0,0,9 +"3563",2010,29061,"MO","29","061",8444,0.988630980577925,401,0.138559924206537,5.99396142730657,6.85329909318608,7.72973533138505,9.72307692307692,439.94720633524,20,4546,0,0,0,0,9 +"3564",2010,29063,"MO","29","063",12899,0.875184122800217,828,0.113419644933716,6.71901315438526,7.6246189861594,7.87511928104029,8.73076923076923,351.082504388531,30,8545,0,0,0,0,9 +"3565",2010,29065,"MO","29","065",15739,0.979477730478429,800,0.130122625325624,6.68461172766793,7.49554194388426,8.38867776918081,10.2846153846154,612.150612150612,53,8658,0,0,0,0,9 +"3566",2010,29067,"MO","29","067",13652,0.984471139759742,686,0.151552886024026,6.53087762772588,7.27931883541462,8.25322764558177,12.0769230769231,303.270042194093,23,7584,0,0,0,0,9 +"3567",2010,29069,"MO","29","069",31951,0.887264874338831,1765,0.126506212638102,7.4759059693674,8.27026911143662,9.13010597926558,13.3769230769231,699.97177533164,124,17715,0,0,0,0,9 +"3568",2010,29071,"MO","29","071",101424,0.97970894462849,5823,0.122850607351317,8.66957087183712,9.47577683548064,10.305948151624,11.2230769230769,430.233531430485,257,59735,0,0,0,0,9 +"3569",2010,29073,"MO","29","073",15207,0.98855790096666,707,0.138357335437627,6.56103066589657,7.45298232946546,8.33854487998858,10.3461538461538,378.161191207752,32,8462,0,0,0,0,9 +"3570",2010,29075,"MO","29","075",6749,0.989628093050822,352,0.116461698029338,5.8636311755981,6.5694814204143,7.47533923656674,7.81538461538462,369.318181818182,13,3520,0,0,0,0,9 +"3571",2010,29077,"MO","29","077",275320,0.934788609617899,27905,0.116395467092837,10.2365611632225,10.3918221384666,11.349076239256,8.28461538461539,382.121696549019,643,168271,0,0,0,0,9 +"3572",2010,29079,"MO","29","079",10254,0.982738443534231,623,0.122001170275015,6.43454651878745,6.97260625130175,7.90248743716286,7.94615384615385,279.485746226942,15,5367,0,0,0,0,9 +"3573",2010,29081,"MO","29","081",8968,0.985392506690455,422,0.122100802854594,6.04500531403601,6.84481547920826,7.75233516330229,9.42307692307692,300.042863266181,14,4666,0,0,0,0,9 +"3574",2010,29083,"MO","29","083",22265,0.977004266786436,1119,0.137345609701325,7.02019070831193,7.83518375526675,8.74798740166097,10.7,521.920668058455,65,12454,0,0,0,0,9 +"3575",2010,29085,"MO","29","085",9646,0.984656852581381,335,0.17644619531412,5.81413053182507,6.79346613258001,7.83794891602528,12.5461538461538,588.354635828769,29,4929,0,0,0,0,9 +"3576",2010,29089,"MO","29","089",10141,0.928902475101075,888,0.128784143575584,6.78897174299217,6.97447891102505,7.97762509878459,8.68461538461538,441.651095634449,26,5887,0,0,0,0,9 +"3577",2010,29091,"MO","29","091",40544,0.978862470402526,2385,0.128699684293607,7.77695440332244,8.46315930292375,9.35201353029233,10.7230769230769,469.189865498905,105,22379,0,0,0,0,9 +"3578",2010,29093,"MO","29","093",10591,0.976961571145312,560,0.141252006420546,6.3279367837292,7.13886699994552,8.00369733909437,16.5384615384615,791.687283523009,48,6063,0,0,0,0,9 +"3579",2010,29095,"MO","29","095",674854,0.717393688116244,45564,0.116073995264161,10.7268732100198,11.3678418877811,12.2517723247812,10.5923076923077,426.34439781004,1735,406948,0,0,0,0,9 +"3580",2010,29097,"MO","29","097",117662,0.934583807856402,8737,0.110494467202665,9.0753221602981,9.5819728915479,10.4516089610458,8.40769230769231,409.238786415628,278,67931,0,0,0,0,9 +"3581",2010,29099,"MO","29","099",219130,0.977063843380642,12598,0.12260302103774,9.44129335018187,10.3105846615394,11.1144161094281,10.2769230769231,419.036216701586,560,133640,0,0,0,0,9 +"3582",2010,29101,"MO","29","101",52689,0.920495739148589,7762,0.0970790867163924,8.95699531192885,8.6459381473068,9.65982236550112,9.88461538461539,280.242877160206,90,32115,0,0,0,0,9 +"3583",2010,29105,"MO","29","105",35697,0.975011905762389,1976,0.122755413620192,7.58882987830781,8.37976851550457,9.23834456838578,12.3230769230769,445.456345278163,90,20204,0,0,0,0,9 +"3584",2010,29107,"MO","29","107",33380,0.960125823846615,1754,0.123996405032954,7.46965417293213,8.31532177537757,9.15546171046619,9.72307692307692,356.23139089749,67,18808,0,0,0,0,9 +"3585",2010,29109,"MO","29","109",38590,0.977947654832858,1916,0.120627105467738,7.55799495853081,8.4755375161474,9.27986643462479,9.23076923076923,438.43107674901,93,21212,0,0,0,0,9 +"3586",2010,29111,"MO","29","111",10206,0.955614344503233,843,0.11875367430923,6.73696695800186,7.04053639021596,7.94767857130157,8.46923076923077,450.45045045045,26,5772,0,0,0,0,9 +"3587",2010,29113,"MO","29","113",52673,0.966567311525829,2912,0.108841341863953,7.97659540931658,8.84793475332846,9.64794993341091,11.6769230769231,400.27335741482,123,30729,0,0,0,0,9 +"3588",2010,29115,"MO","29","115",12774,0.98309065288868,572,0.131360576170346,6.3491389913798,7.25347038268453,8.15994665557855,12.4615384615385,536.776439866531,37,6893,0,0,0,0,9 +"3589",2010,29117,"MO","29","117",15128,0.963974087784241,808,0.12751189846642,6.6945620585211,7.55799495853081,8.49412925181769,8.1,412.371134020619,36,8730,0,0,0,0,9 +"3590",2010,29119,"MO","29","119",23071,0.927181309869533,1318,0.114082614537731,7.18387071506245,8.01168672912785,8.77338459677665,9.08461538461538,565.014888905856,74,13097,0,0,0,0,9 +"3591",2010,29121,"MO","29","121",15580,0.964120667522465,743,0.135365853658537,6.61069604471776,7.48324441607385,8.35279013512463,9.18461538461538,452.219445436154,38,8403,0,0,0,0,9 +"3592",2010,29123,"MO","29","123",12197,0.986472083299172,729,0.125194720013118,6.59167373200866,7.23417717974985,8.14293601043227,12.0769230769231,689.958896065766,47,6812,0,0,0,0,9 +"3593",2010,29125,"MO","29","125",9159,0.98777159078502,471,0.133529861338574,6.15485809401642,6.97914527506881,7.83399634170946,9.4,407.450523864959,21,5154,0,0,0,0,9 +"3594",2010,29127,"MO","29","127",28785,0.931631057842626,1873,0.126593712002779,7.53529670244409,8.13505390861157,9.0415666277275,9.02307692307692,404.028221672797,67,16583,0,0,0,0,9 +"3595",2010,29131,"MO","29","131",24701,0.981296303793369,1329,0.130885389255496,7.19218205871325,8.01928379291679,8.86120833720818,12.7769230769231,452.872912538919,64,14132,0,0,0,0,9 +"3596",2010,29133,"MO","29","133",14333,0.752529128584386,872,0.123561013046815,6.77078942390898,7.56837926783652,8.22469956196723,9.58461538461538,692.920660584363,60,8659,0,0,0,0,9 +"3597",2010,29135,"MO","29","135",15630,0.951375559820857,882,0.11618682021753,6.78219205600679,7.65775527113487,8.31434234336979,8.36923076923077,283.935786829748,26,9157,0,0,0,0,9 +"3598",2010,29137,"MO","29","137",8787,0.959257994764994,421,0.145442130419939,6.04263283368238,6.87419849545329,7.78447323573647,12.1692307692308,325.335502236682,16,4918,0,0,0,0,9 +"3599",2010,29139,"MO","29","139",12209,0.972888852485871,564,0.133426161028749,6.33505425149806,7.2254814727823,8.1185050675871,11.0153846153846,411.643634225228,28,6802,0,0,0,0,9 +"3600",2010,29141,"MO","29","141",20542,0.97760685424983,966,0.152029987343005,6.87316383421252,7.68109900153636,8.61141186665522,14.4153846153846,463.805020007275,51,10996,0,0,0,0,9 +"3601",2010,29143,"MO","29","143",18928,0.827926880811496,993,0.133928571428571,6.90073066404517,7.7591874385078,8.63355299253243,9.89230769230769,699.107717781253,76,10871,0,0,0,0,9 +"3602",2010,29145,"MO","29","145",58172,0.93285429416214,3427,0.125197689610122,8.13944052187461,8.87598589132597,9.71250862865099,8.90769230769231,448.676861093307,147,32763,0,0,0,0,9 +"3603",2010,29147,"MO","29","147",23402,0.951029826510555,4455,0.0954619263310828,8.40178233990491,7.65633716643018,8.79300509129753,7.16153846153846,214.515552377547,30,13985,0,0,0,0,9 +"3604",2010,29149,"MO","29","149",10934,0.977044082677885,535,0.151454179623194,6.28226674689601,7.09920174355309,8.01268092970684,11,517.270148506591,31,5993,0,0,0,0,9 +"3605",2010,29151,"MO","29","151",13907,0.992090314230244,823,0.118932911483426,6.71295620067707,7.49665243816828,8.2190566610606,6.85384615384615,393.251300266396,31,7883,0,0,0,0,9 +"3606",2010,29153,"MO","29","153",9746,0.985942950954238,394,0.165195977837061,5.97635090929793,6.88141130364254,7.88908440703551,11.7,568.720379146919,30,5275,0,0,0,0,9 +"3607",2010,29155,"MO","29","155",18260,0.718072289156626,1065,0.119989047097481,6.97073007814353,7.67136092319064,8.57206009285708,12.3384615384615,858.626198083067,86,10016,0,0,0,0,9 +"3608",2010,29157,"MO","29","157",18931,0.983571919074534,1008,0.12445195710739,6.91572344863131,7.76472054477148,8.57338447106598,7.18461538461538,408.125405806511,44,10781,0,0,0,0,9 +"3609",2010,29159,"MO","29","159",42263,0.945839150083998,2763,0.115041525684405,7.92407232492342,8.50309426703674,9.39065992609946,9.19230769230769,475.495307612096,114,23975,0,0,0,0,9 +"3610",2010,29161,"MO","29","161",45298,0.931630535564484,5663,0.110137312905647,8.6417090661138,8.4724050086261,9.44872715270309,8.96153846153846,370.507595405706,100,26990,0,0,0,0,9 +"3611",2010,29163,"MO","29","163",18474,0.916368950958103,1126,0.123308433474072,7.02642680869964,7.74413662762799,8.43315919580623,9.7,433.643508898726,48,11069,0,0,0,0,9 +"3612",2010,29165,"MO","29","165",89714,0.896515593998707,4908,0.12728225249125,8.4986218058308,9.45743479744618,10.2467225841082,7.68461538461538,271.429346940991,150,55263,0,0,0,0,9 +"3613",2010,29167,"MO","29","167",31158,0.974613261441684,2468,0.114031709352333,7.81116338502528,8.16876982367527,9.07497873404551,10.2,476.024613955648,82,17226,0,0,0,0,9 +"3614",2010,29169,"MO","29","169",52865,0.815757117185283,7678,0.0704057504965478,8.94611437556074,8.72469504674049,9.53741141265633,8.71538461538461,289.754653396743,92,31751,0,0,0,0,9 +"3615",2010,29171,"MO","29","171",4974,0.989746682750302,209,0.141133896260555,5.34233425196481,6.26339826259162,7.18538701558042,8,492.237788716395,13,2641,0,0,0,0,9 +"3616",2010,29173,"MO","29","173",10196,0.981659474303649,393,0.150843468026677,5.97380961186926,7.11151211649616,7.98139158158007,8.71538461538461,389.368545793127,23,5907,0,0,0,0,9 +"3617",2010,29175,"MO","29","175",25454,0.923548361750609,1705,0.117781095309185,7.44132038971762,8.11969625295725,8.83171191782158,11.4769230769231,413.521496553988,63,15235,0,0,0,0,9 +"3618",2010,29177,"MO","29","177",23517,0.97427392949781,1188,0.128332695496875,7.08002649992259,8.01334318138667,8.82497196556714,10.1846153846154,464.49900464499,63,13563,0,0,0,0,9 +"3619",2010,29179,"MO","29","179",6676,0.9809766327142,288,0.141102456560815,5.66296048013595,6.68085467879022,7.50714107972761,15.0230769230769,734.893848666304,27,3674,0,0,0,0,9 +"3620",2010,29181,"MO","29","181",14102,0.98028648418664,747,0.129627003261949,6.61606518513282,7.41276401742656,8.28197705886776,12.8,693.81986380573,54,7783,0,0,0,0,9 +"3621",2010,29183,"MO","29","183",361808,0.924758435413258,21505,0.114339649758988,9.97604074521784,10.8294117333785,11.6170692407002,8.10769230769231,252.17379321749,549,217707,0,0,0,0,9 +"3622",2010,29185,"MO","29","185",9823,0.981777461060776,423,0.153415453527436,6.04737217904628,6.96224346426621,7.86441990499457,11.1538461538462,713.749060856499,38,5324,0,0,0,0,9 +"3623",2010,29186,"MO","29","186",18126,0.984111221449851,928,0.139247489793667,6.8330317327862,7.67461749736436,8.54578064826815,10.2230769230769,302.543254230878,32,10577,0,0,0,0,9 +"3624",2010,29187,"MO","29","187",65534,0.945417645802179,4469,0.115161595507675,8.40491994893345,9.06693178868083,9.77161193122255,12.1461538461538,444.344027715017,177,39834,0,0,0,0,9 +"3625",2010,29189,"MO","29","189",998846,0.717971539156186,59832,0.129757740432459,10.9992959138715,11.7127430693809,12.6450853537917,8.85384615384615,327.145246038011,1927,589035,0,0,0,0,9 +"3626",2010,29195,"MO","29","195",23422,0.915079839467168,1818,0.1249252839211,7.50549227473742,7.86172707782398,8.79330862749655,8.82307692307692,344.905151083452,46,13337,0,0,0,0,9 +"3627",2010,29201,"MO","29","201",39268,0.872440664154019,2281,0.126668024854844,7.73236922228439,8.49228555571005,9.36280391510265,9.63076923076923,476.296461161807,107,22465,0,0,0,0,9 +"3628",2010,29203,"MO","29","203",8445,0.979040852575488,454,0.147187685020722,6.11809719804135,6.84054652928869,7.76259604854007,14.7230769230769,354.90605427975,17,4790,0,0,0,0,9 +"3629",2010,29205,"MO","29","205",6364,0.988057825267128,267,0.131521055939661,5.58724865840025,6.44730586254121,7.42476176182321,8.53846153846154,293.427230046948,10,3408,0,0,0,0,9 +"3630",2010,29207,"MO","29","207",30025,0.981948376353039,1687,0.128992506244796,7.43070708254597,8.20658361432075,9.06704720214971,10.3461538461538,512.337318179141,87,16981,0,0,0,0,9 +"3631",2010,29209,"MO","29","209",32241,0.984708911013926,1198,0.175800998728327,7.0884087786754,8.11432470915534,9.10908253990196,13.8153846153846,368.627006181591,65,17633,0,0,0,0,9 +"3632",2010,29213,"MO","29","213",51905,0.966361622194394,3565,0.13226086118871,8.1789193328484,8.72355674269043,9.6380886883248,13.9153846153846,426.107541427122,126,29570,0,0,0,0,9 +"3633",2010,29215,"MO","29","215",26043,0.949967361671082,1527,0.133817148561994,7.33106030521863,7.97796809312855,8.83913175254611,10.9230769230769,494.950170557153,74,14951,0,0,0,0,9 +"3634",2010,29217,"MO","29","217",21160,0.978071833648393,1160,0.132372400756144,7.05617528410041,7.78986855905471,8.70051424854327,8.20769230769231,554.087460574546,65,11731,0,0,0,0,9 +"3635",2010,29219,"MO","29","219",32612,0.964276953268735,1795,0.123543480927266,7.49276030092238,8.26590733415575,9.15588418618012,10.8692307692308,312.632471386181,59,18872,0,0,0,0,9 +"3636",2010,29221,"MO","29","221",25198,0.96725930629415,1463,0.126756091753314,7.28824440102012,8.11552088154677,8.87807925612644,14.2153846153846,535.006605019815,81,15140,0,0,0,0,9 +"3637",2010,29223,"MO","29","223",13519,0.986907315629854,680,0.146904356831127,6.52209279817015,7.34601020991329,8.24275634571448,10.7,613.251566457806,46,7501,0,0,0,0,9 +"3638",2010,29225,"MO","29","225",36320,0.976982378854626,1916,0.116189427312775,7.55799495853081,8.48135873840702,9.21522840604896,10.4615384615385,381.213039440888,78,20461,0,0,0,0,9 +"3639",2010,29229,"MO","29","229",18777,0.982638334132183,996,0.125792192576024,6.9037472575846,7.66199755890189,8.55217416031148,11.8307692307692,501.721593703886,51,10165,0,0,0,0,9 +"3640",2010,29510,"MO","29","510",319367,0.458760610833305,28564,0.109779657885755,10.259902462669,10.603436548215,11.564587691294,11.3846153846154,529.61118197382,1092,206189,0,0,0,0,9 +"3641",2010,28001,"MS","28","001",32581,0.452410914336577,1892,0.138086614898254,7.54538974961182,8.28374674710613,9.13118893367075,11.1769230769231,562.207183758459,108,19210,0,0,0,0,9 +"3642",2010,28003,"MS","28","003",37109,0.875340213964267,2028,0.125602953461424,7.61480536471107,8.49249057877587,9.28748658115284,11.2,541.533245432285,115,21236,0,0,0,0,9 +"3643",2010,28005,"MS","28","005",13137,0.581259039354495,692,0.145923726878283,6.53958595561767,7.26892012819372,8.24170315972982,11.6230769230769,455.214888204579,34,7469,0,0,0,0,9 +"3644",2010,28007,"MS","28","007",19483,0.570394703074475,1079,0.126571883180208,6.98378996525813,7.75362354655975,8.62837672037685,12.2153846153846,640.180756919601,68,10622,0,0,0,0,9 +"3645",2010,28009,"MS","28","009",8696,0.617640294388224,488,0.123160073597056,6.19031540585315,7.01121398735037,7.8407064517494,12.1230769230769,680.272108843537,34,4998,0,0,0,0,9 +"3646",2010,28011,"MS","28","011",34104,0.345267417311752,3091,0.12420830401126,8.03624994213212,8.26462082941122,9.28126471031288,11.0692307692308,715.172585050906,144,20135,0,0,0,0,9 +"3647",2010,28013,"MS","28","013",14965,0.712061476779151,832,0.128232542599399,6.72383244082121,7.56112158953024,8.37586001529959,9.03846153846154,594.954783436459,50,8404,0,0,0,0,9 +"3648",2010,28015,"MS","28","015",10606,0.66434093909108,567,0.148406562323213,6.34035930372775,7.14991683613211,8.0258433441509,12.8,401.090967431413,25,6233,0,0,0,0,9 +"3649",2010,28017,"MS","28","017",17436,0.563948153246157,1077,0.124053682037164,6.98193467715639,7.64300363556072,8.54130026675947,11.7076923076923,407.622541526546,40,9813,0,0,0,0,9 +"3650",2010,28019,"MS","28","019",8571,0.691284564228211,434,0.140357017850893,6.0730445341004,6.87005341179813,7.80506704425849,11.5230769230769,630.119722747322,30,4761,0,0,0,0,9 +"3651",2010,28021,"MS","28","021",9579,0.143021192191252,1062,0.131120158680447,6.96790920180188,6.87212810133899,7.97762509878459,16.2692307692308,590.339892665474,33,5590,0,0,0,0,9 +"3652",2010,28023,"MS","28","023",16723,0.646594510554326,893,0.135741194761705,6.7945865808765,7.61035761831284,8.50592999913753,12.2384615384615,691.415806829061,65,9401,0,0,0,0,9 +"3653",2010,28025,"MS","28","025",20569,0.410228985366328,1264,0.130876561816326,7.1420365747068,7.76937860951398,8.74097653801779,15.9923076923077,553.99301116509,65,11733,0,0,0,0,9 +"3654",2010,28027,"MS","28","027",26111,0.233694611466432,1918,0.11121749454253,7.55903825544338,7.97349996402463,8.97284431443757,13.3384615384615,682.831661092531,98,14352,0,0,0,0,9 +"3655",2010,28029,"MS","28","029",29436,0.478597635548308,2120,0.124371517869276,7.65917136766606,8.10681603894705,9.06762406977459,11.1153846153846,528.817587641117,89,16830,0,0,0,0,9 +"3656",2010,28031,"MS","28","031",19578,0.639901930738584,1209,0.119572990090918,7.09754885061479,7.7553388128465,8.63852547658376,9.84615384615385,576.659038901602,63,10925,0,0,0,0,9 +"3657",2010,28033,"MS","28","033",161797,0.756472616921204,8959,0.103963608719568,9.10041389259758,10.128229825214,10.8085555443878,7.23846153846154,359.496704613541,342,95133,0,0,0,0,9 +"3658",2010,28035,"MS","28","035",74944,0.617180828351836,8713,0.0995009607173356,9.07257144223129,9.06462071762678,10.0585235546357,9.49230769230769,472.010234240593,214,45338,0,0,0,0,9 +"3659",2010,28037,"MS","28","037",8105,0.647378161628624,405,0.136458975940777,6.00388706710654,6.84694313958538,7.76259604854007,11.0923076923077,612.959719789842,28,4568,0,0,0,0,9 +"3660",2010,28039,"MS","28","039",22653,0.910166423873218,1404,0.113053458703042,7.24708058458576,8.03722003113301,8.75242340386559,11.2,609.473846628607,79,12962,0,0,0,0,9 +"3661",2010,28041,"MS","28","041",14384,0.730812013348165,980,0.112208008898776,6.88755257166462,7.68294316987829,8.09985791073758,11.5923076923077,460.237611045703,43,9343,0,0,0,0,9 +"3662",2010,28043,"MS","28","043",21837,0.575124788203508,1265,0.129001236433576,7.14282740116162,7.94661756324447,8.8065738205036,11.2538461538462,596.4689040878,75,12574,0,0,0,0,9 +"3663",2010,28045,"MS","28","045",44102,0.905060994966215,2439,0.136796517164754,7.79934339821592,8.61866616034687,9.47454908824232,8.72307692307692,452.629936007492,116,25628,0,0,0,0,9 +"3664",2010,28047,"MS","28","047",187868,0.728836204143335,14337,0.114665616283774,9.57059888724627,10.0679845244175,10.9508416339204,8.52307692307692,466.161438138879,529,113480,0,0,0,0,9 +"3665",2010,28049,"MS","28","049",245717,0.290305514066996,20106,0.110309827972831,9.90877355696536,10.29836345909,11.2608679034914,9.56153846153846,470.38051162502,682,144989,0,0,0,0,9 +"3666",2010,28051,"MS","28","051",19406,0.166031124394517,1534,0.106513449448624,7.3356339819272,7.64012317269536,8.64927353177345,19.1076923076923,644.788759503416,67,10391,0,0,0,0,9 +"3667",2010,28053,"MS","28","053",9333,0.243651558984249,599,0.113039751419694,6.39526159811545,6.94697599213542,7.9402277651457,16.8153846153846,821.394460362942,43,5235,0,0,0,0,9 +"3668",2010,28057,"MS","28","057",23418,0.932786745238705,1575,0.11866939960714,7.36201055125973,8.04494704961772,8.80552505270952,10.9692307692308,567.665758401453,75,13212,0,0,0,0,9 +"3669",2010,28059,"MS","28","059",139479,0.748671843073151,8504,0.120269001068261,9.04829192002178,9.83199155083106,10.6454725151794,9.24615384615385,469.732372991593,390,83026,0,0,0,0,9 +"3670",2010,28061,"MS","28","061",17013,0.467466055369423,925,0.136013636630812,6.82979373751242,7.6231530684769,8.51539156946961,11.9230769230769,576.725025746653,56,9710,0,0,0,0,9 +"3671",2010,28063,"MS","28","063",7723,0.140100997021883,589,0.121843843066166,6.37842618365159,6.80128303447162,7.74889133725553,18.3307692307692,615.449915110357,29,4712,0,0,0,0,9 +"3672",2010,28065,"MS","28","065",12466,0.393630675437189,748,0.137975292796406,6.61740297797448,7.32580750259577,8.22630598801551,13.6923076923077,713.286713286713,51,7150,0,0,0,0,9 +"3673",2010,28067,"MS","28","067",67819,0.700069302112977,4486,0.119332340494552,8.40871671508015,9.0068768914288,9.88389690277112,8.87692307692308,424.490221099508,163,38399,0,0,0,0,9 +"3674",2010,28069,"MS","28","069",10454,0.356705567246987,701,0.129711115362541,6.55250788703459,7.14677217945264,8.00302866638473,14.3692307692308,538.720538720539,32,5940,0,0,0,0,9 +"3675",2010,28071,"MS","28","071",47574,0.731933409004919,8920,0.0926556522470257,9.09605122557405,8.49760254165123,9.61447125707121,9.08461538461538,277.991760726128,83,29857,0,0,0,0,9 +"3676",2010,28073,"MS","28","073",56109,0.784205742394268,4686,0.101106774314281,8.45233461906774,8.92691588977704,9.7717830615387,6.97692307692308,319.145763116294,107,33527,0,0,0,0,9 +"3677",2010,28075,"MS","28","075",80395,0.555158902916848,5408,0.120318427762921,8.5956346177228,9.21910187764476,10.0749587902757,10.3230769230769,466.341379161449,216,46318,0,0,0,0,9 +"3678",2010,28077,"MS","28","077",12928,0.681002475247525,737,0.129873143564356,6.60258789218934,7.35244110024358,8.22121009392507,11.5923076923077,645.161290322581,48,7440,0,0,0,0,9 +"3679",2010,28079,"MS","28","079",23730,0.516013485040034,1420,0.109987357774968,7.25841215059531,7.93808872689695,8.75762641126741,9.39230769230769,489.615414988549,62,12663,0,0,0,0,9 +"3680",2010,28081,"MS","28","081",82877,0.710040180025821,4765,0.113179772433848,8.4690528160883,9.31415970061518,10.1320165761267,10.1230769230769,488.548343320041,234,47897,0,0,0,0,9 +"3681",2010,28083,"MS","28","083",32420,0.260703269586675,2693,0.108235657001851,7.8984110928116,8.20958048347558,9.16691081404885,14.9307692307692,538.647993536224,100,18565,0,0,0,0,9 +"3682",2010,28085,"MS","28","085",34896,0.690050435580009,1919,0.125831040806969,7.5595594960077,8.37770121259764,9.23639790629547,10.2230769230769,569.929893579462,113,19827,0,0,0,0,9 +"3683",2010,28087,"MS","28","087",59796,0.549217338952438,4629,0.118686868686869,8.44009614103127,8.89904843388527,9.82254861003078,11.5307692307692,395.077167950431,139,35183,0,0,0,0,9 +"3684",2010,28089,"MS","28","089",95546,0.584242145144747,5633,0.11725242291671,8.63639743889471,9.48562086171022,10.316689322016,7.19230769230769,416.703142782106,238,57115,0,0,0,0,9 +"3685",2010,28091,"MS","28","091",26987,0.666913699188498,1611,0.124393226368251,7.38461038317697,8.10198073185319,8.97461803845511,11.9,762.323147490148,118,15479,0,0,0,0,9 +"3686",2010,28093,"MS","28","093",37071,0.518113889563271,2518,0.129697067788838,7.83122021460429,8.45977592054629,9.3108189905424,11.7538461538462,616.8182826714,139,22535,0,0,0,0,9 +"3687",2010,28095,"MS","28","095",36913,0.682686316473871,2171,0.129249857773684,7.68294316987829,8.44290058683438,9.29761838008324,12.8076923076923,517.888535183161,109,21047,0,0,0,0,9 +"3688",2010,28097,"MS","28","097",10894,0.537727189278502,586,0.135303836974481,6.37331978957701,7.11963563801764,8.06808962627824,13.4307692307692,893.152497519021,54,6046,0,0,0,0,9 +"3689",2010,28099,"MS","28","099",29696,0.615335398706897,1762,0.1201171875,7.47420480649612,8.17554759602103,9.04404963225476,10.1153846153846,622.520598108026,102,16385,0,0,0,0,9 +"3690",2010,28101,"MS","28","101",21661,0.639998153363187,1307,0.118415585614699,7.17548971362422,7.9229859587112,8.73985662749357,9.79230769230769,576.296667501879,69,11973,0,0,0,0,9 +"3691",2010,28103,"MS","28","103",11482,0.276868141438774,819,0.116007664170005,6.70808408385307,7.19518732017871,8.12710918534638,15.3846153846154,504.201680672269,33,6545,0,0,0,0,9 +"3692",2010,28105,"MS","28","105",47725,0.597841801990571,11075,0.0839811419591409,9.31244559491334,8.3380665255188,9.62383978511267,9.98461538461538,289.855072463768,89,30705,0,0,0,0,9 +"3693",2010,28107,"MS","28","107",34643,0.503276275149381,2222,0.11956239355714,7.70616297019958,8.3696208269491,9.25109836444835,13.2076923076923,638.190954773869,127,19900,0,0,0,0,9 +"3694",2010,28109,"MS","28","109",55683,0.860029093260061,3448,0.133182479392274,8.14554963178358,8.84850930088808,9.69640188059556,9.23076923076923,565.60382870284,182,32178,0,0,0,0,9 +"3695",2010,28111,"MS","28","111",12235,0.788802615447487,684,0.129546383326522,6.52795791762255,7.33953769540767,8.19533366716287,13.3076923076923,750.389352966162,53,7063,0,0,0,0,9 +"3696",2010,28113,"MS","28","113",40442,0.468151921269967,2323,0.125191632461303,7.75061473277041,8.46716225781067,9.38681151509196,11.3076923076923,613.933623987899,138,22478,0,0,0,0,9 +"3697",2010,28115,"MS","28","115",30055,0.845250374313758,1827,0.11379138246548,7.51043055637801,8.29004161870449,9.06866159364425,9.9,451.075641915337,78,17292,0,0,0,0,9 +"3698",2010,28117,"MS","28","117",25232,0.852370006341154,1931,0.12071972098922,7.56579328242851,8.0532511535491,8.88944616531829,11.4846153846154,641.379310344828,93,14500,0,0,0,0,9 +"3699",2010,28119,"MS","28","119",8152,0.294651619234544,551,0.126840039254171,6.31173480915291,6.86797440897029,7.79358680337158,14.4846153846154,837.80880773362,39,4655,0,0,0,0,9 +"3700",2010,28121,"MS","28","121",142518,0.78970375671845,8357,0.116630881713187,9.03085479000144,9.93764740418283,10.7159499277305,6.66923076923077,404.722920462145,351,86726,0,0,0,0,9 +"3701",2010,28123,"MS","28","123",28342,0.597381977277539,1937,0.115482323054125,7.568895663407,8.17526610411206,9.02328764080633,7.75384615384615,607.361963190184,99,16300,0,0,0,0,9 +"3702",2010,28125,"MS","28","125",4886,0.284486287351617,294,0.141219811706918,5.68357976733868,6.27852142416584,7.33432935030054,14.1538461538462,567.57715501951,16,2819,0,0,0,0,9 +"3703",2010,28127,"MS","28","127",27527,0.636211719402768,1641,0.128383042104116,7.40306109109009,8.10379671298179,9.00368513816677,9.15384615384615,587.259032299247,92,15666,0,0,0,0,9 +"3704",2010,28129,"MS","28","129",16494,0.76415666302898,969,0.12895598399418,6.87626461189077,7.64873978895624,8.46062283992784,8.82307692307692,526.146247181359,49,9313,0,0,0,0,9 +"3705",2010,28131,"MS","28","131",17907,0.795554810967778,1326,0.123024515552577,7.18992217074581,7.73105314400713,8.55371796609861,10.3230769230769,557.049558202075,58,10412,0,0,0,0,9 +"3706",2010,28133,"MS","28","133",28983,0.259600455439396,2338,0.109719490735949,7.75705114203201,8.21039625510477,8.97094039814245,15,690.751603530508,126,18241,0,0,0,0,9 +"3707",2010,28135,"MS","28","135",15337,0.415400665058356,1338,0.106865749494686,7.19893124068817,7.67182679787878,8.26975694753298,11.9,506.983962752199,49,9665,0,0,0,0,9 +"3708",2010,28137,"MS","28","137",28978,0.683725584926496,2026,0.123334943750431,7.61381868480863,8.18979961872823,9.06693178868083,10.4769230769231,520.045957549737,86,16537,0,0,0,0,9 +"3709",2010,28139,"MS","28","139",22184,0.827848900108186,1425,0.119725928597187,7.26192709270275,7.95822719232231,8.76280248744611,13.1538461538462,653.440403086128,83,12702,0,0,0,0,9 +"3710",2010,28141,"MS","28","141",19624,0.964788014675907,1009,0.13544639217285,6.91671502035361,7.82724090175281,8.63675242647388,12.4,580.077947974259,64,11033,0,0,0,0,9 +"3711",2010,28143,"MS","28","143",10763,0.250394871318406,754,0.107497909504785,6.62539236800796,7.18235211188526,8.12503909736775,13.3153846153846,684.495383635785,43,6282,0,0,0,0,9 +"3712",2010,28145,"MS","28","145",27141,0.844036697247706,1621,0.120150326074942,7.39079852173568,8.20193435119422,8.9690328500343,10.6076923076923,502.092050209205,78,15535,0,0,0,0,9 +"3713",2010,28147,"MS","28","147",15395,0.544072750893147,846,0.12880805456317,6.74051935960622,7.46508273639955,8.38068594676157,12.6230769230769,598.661814766991,51,8519,0,0,0,0,9 +"3714",2010,28149,"MS","28","149",48833,0.512317490221776,2713,0.131345606454652,7.90581031265893,8.68710472813351,9.61720450099805,10.1769230769231,609.41440179322,174,28552,0,0,0,0,9 +"3715",2010,28151,"MS","28","151",51098,0.274139888058241,3331,0.125680065755998,8.11102783819368,8.67197224520379,9.66542070062654,15.4076923076923,679.9199282115,197,28974,0,0,0,0,9 +"3716",2010,28153,"MS","28","153",20782,0.600760273313444,1292,0.119189683379848,7.16394668434255,7.81480342948936,8.73391617492752,11.8,625,74,11840,0,0,0,0,9 +"3717",2010,28155,"MS","28","155",10267,0.792539203272621,551,0.123405084250511,6.31173480915291,7.15305163493748,7.99967857949945,11.2307692307692,567.01030927835,33,5820,0,0,0,0,9 +"3718",2010,28157,"MS","28","157",9863,0.287843455338132,687,0.121565446618676,6.53233429222235,7.07072410726028,7.86557175768479,13.4538461538462,549.725137431284,33,6003,0,0,0,0,9 +"3719",2010,28159,"MS","28","159",19202,0.525414019372982,1080,0.132121653994376,6.98471632011827,7.72134861261795,8.6146828126935,16.5384615384615,557.724484104852,60,10758,0,0,0,0,9 +"3720",2010,28161,"MS","28","161",12626,0.61270394424204,681,0.142800570251861,6.52356230614951,7.33953769540767,8.23004431012611,13.2384615384615,791.666666666667,57,7200,0,0,0,0,9 +"3721",2010,28163,"MS","28","163",28135,0.414999111427048,1726,0.104282921627866,7.45356187164337,8.28979058318164,8.86418136976543,11.9153846153846,465.88429557115,79,16957,0,0,0,0,9 +"3722",2010,37001,"NC","37","001",151437,0.773014520889875,10913,0.119283926649366,9.29771001811309,9.93488931567566,10.7431995701779,10.7692307692308,373.88878220696,331,88529,0,0,0,0,9 +"3723",2010,37003,"NC","37","003",37232,0.92581650193382,1838,0.133917060593038,7.51643330291563,8.57395152523485,9.28117155273677,12.9076923076923,435.817944916206,97,22257,0,0,0,0,9 +"3724",2010,37005,"NC","37","005",11136,0.97198275862069,503,0.158494971264368,6.22059017009974,7.2152399787301,8.04462627976734,11.8769230769231,472.0692368214,30,6355,0,0,0,0,9 +"3725",2010,37007,"NC","37","007",26853,0.487133653595501,1734,0.129073101701858,7.45818615734049,8.21554741194707,8.89576660405609,13.9692307692308,571.220223626641,94,16456,0,0,0,0,9 +"3726",2010,37009,"NC","37","009",27226,0.98222287519283,1246,0.155806949239697,7.1276936993474,8.12710918534638,8.96788657212747,11.7153846153846,439.229466022463,70,15937,0,0,0,0,9 +"3727",2010,37011,"NC","37","011",17797,0.947463055571164,1240,0.138225543630949,7.12286665859908,7.83122021460429,8.43576619272051,10.6769230769231,377.155172413793,42,11136,0,0,0,0,9 +"3728",2010,37013,"NC","37","013",47826,0.721385857065195,2312,0.157215740392255,7.74586822979227,8.62909228391365,9.56113807874204,11.6153846153846,588.773084658987,161,27345,0,0,0,0,9 +"3729",2010,37015,"NC","37","015",21244,0.357748070043306,1323,0.140839766522312,7.18765716411496,7.81923445385907,8.72550732848445,11.6923076923077,481.110497673318,61,12679,0,0,0,0,9 +"3730",2010,37017,"NC","37","017",35178,0.612087099891978,1928,0.148814600034112,7.56423847517049,8.3786205415523,9.27472263090545,13.1923076923077,554.698051321628,115,20732,0,0,0,0,9 +"3731",2010,37019,"NC","37","019",108070,0.863486629036735,4728,0.181965392800962,8.46125755908593,9.40861729556027,10.3889953683178,12.4615384615385,452.372549648689,282,62338,0,0,0,0,9 +"3732",2010,37021,"NC","37","021",238743,0.910770158706224,14719,0.138198816300373,9.59689445519259,10.3645765643923,11.2264027202383,8.5,383.944393312911,559,145594,0,0,0,0,9 +"3733",2010,37023,"NC","37","023",90567,0.877681716298431,5278,0.134364614042642,8.57130251706327,9.39457676097491,10.1761828826796,12.7769230769231,503.279800950011,267,53052,0,0,0,0,9 +"3734",2010,37025,"NC","37","025",178564,0.806903967205036,9182,0.106706839004503,9.12500032480917,10.2554815579563,10.8967763618976,11.4153846153846,324.873289889867,341,104964,0,0,0,0,9 +"3735",2010,37027,"NC","37","027",83025,0.933526046371575,4391,0.137560975609756,8.38731227056172,9.39590665893503,10.1134648073186,14.6615384615385,484.40381848031,239,49339,0,0,0,0,9 +"3736",2010,37031,"NC","37","031",66700,0.916026986506747,3437,0.16095952023988,8.14235427684983,8.98092720764838,9.91219949313815,9.5,446.394984326019,178,39875,0,0,0,0,9 +"3737",2010,37033,"NC","37","033",23745,0.645399031375026,1240,0.153885028427037,7.12286665859908,8.04846874366888,8.8385517902274,13.0923076923077,577.200577200577,84,14553,0,0,0,0,9 +"3738",2010,37035,"NC","37","035",154758,0.86679848537717,8622,0.128917406531488,9.06207235530708,10.0010225283727,10.7483252463365,12.9153846153846,444.183160232543,408,91854,0,0,0,0,9 +"3739",2010,37037,"NC","37","037",63845,0.832500587360013,2786,0.149393061320385,7.93236215433975,9.05532264970957,9.85345661893056,8.46153846153846,342.130987292278,126,36828,0,0,0,0,9 +"3740",2010,37039,"NC","37","039",27435,0.959686531802442,1084,0.172626207399307,6.98841318199959,8.05420489706441,8.96877823513796,12.7615384615385,522.261391826609,80,15318,0,0,0,0,9 +"3741",2010,37041,"NC","37","041",14737,0.640632421795481,716,0.153287643346678,6.57368016696065,7.33498187887181,8.372398606513,11.8846153846154,532.172230285438,44,8268,0,0,0,0,9 +"3742",2010,37043,"NC","37","043",10609,0.982750494862852,439,0.177585069280799,6.08449941307517,7.0335064842877,8.01268092970684,12.3846153846154,541.455160744501,32,5910,0,0,0,0,9 +"3743",2010,37045,"NC","37","045",97922,0.773442127407528,6014,0.134780743857356,8.70184536354847,9.4758535196569,10.2937036498816,14.6153846153846,489.512925928507,281,57404,0,0,0,0,9 +"3744",2010,37047,"NC","37","047",57997,0.646240322775316,3509,0.135420797627463,8.16308637558322,8.90639340705837,9.72178580362158,13.2692307692308,609.791678823598,209,34274,0,0,0,0,9 +"3745",2010,37049,"NC","37","049",104180,0.733010174697639,10020,0.119437511998464,9.21233837463886,9.3410176956178,10.3101519412198,10.6384615384615,354.130979048623,215,60712,0,0,0,0,9 +"3746",2010,37051,"NC","37","051",327247,0.559277854342439,34869,0.0948855146112875,10.4593534613118,10.603883397932,11.5239445314527,10.0153846153846,405.872238029093,786,193657,0,0,0,0,9 +"3747",2010,37053,"NC","37","053",23672,0.923960797566746,1170,0.132772896248733,7.0647590277918,8.13300021858361,8.89206162554694,8.80769230769231,375.130253560264,54,14395,0,0,0,0,9 +"3748",2010,37055,"NC","37","055",33981,0.957123098201936,1597,0.159236043671463,7.37588214821501,8.42156296040099,9.27472263090545,12.3538461538462,346.247426539397,74,21372,0,0,0,0,9 +"3749",2010,37057,"NC","37","057",162841,0.884328885231606,8408,0.129328608888425,9.03693891255679,10.0716256648136,10.8026931613525,12.1692307692308,406.054657229943,393,96785,0,0,0,0,9 +"3750",2010,37059,"NC","37","059",41252,0.917725201202366,1722,0.140381072432852,7.45124168498768,8.64576229221094,9.40269476447051,11.6615384615385,358.438053470524,85,23714,0,0,0,0,9 +"3751",2010,37061,"NC","37","061",58663,0.711726301075635,3539,0.124985084295041,8.17159948034546,8.93392789178263,9.74659979699898,9.18461538461538,339.533510481252,115,33870,0,0,0,0,9 +"3752",2010,37063,"NC","37","063",271366,0.539618080378529,23009,0.106524030276453,10.0436407227195,10.5658661994244,11.4143308974647,8.15384615384615,323.464848604513,557,172198,0,0,0,0,9 +"3753",2010,37065,"NC","37","065",56595,0.409594487145508,3488,0.138757840798657,8.15708378502887,8.81566682494622,9.79406323525484,15.6,516.538287267784,171,33105,0,0,0,0,9 +"3754",2010,37067,"NC","37","067",351378,0.689974898826904,24400,0.119034202482796,10.1023384112813,10.7588386129709,11.6111133184789,10.0307692307692,323.534760842722,676,208942,0,0,0,0,9 +"3755",2010,37069,"NC","37","069",60835,0.70586011342155,3334,0.128840305745048,8.11192806331074,9.08760760659389,9.81065929022493,10.7923076923077,353.802693288719,129,36461,0,0,0,0,9 +"3756",2010,37071,"NC","37","071",206114,0.820851567579107,12224,0.126148636191622,9.4111565114063,10.3236442093873,11.0627244630207,13.3769230769231,510.167073671994,633,124077,0,0,0,0,9 +"3757",2010,37073,"NC","37","073",12165,0.649486230990547,660,0.135717221537197,6.49223983502047,7.3790081276283,8.21012440516427,7.89230769230769,460.5079542283,33,7166,0,0,0,0,9 +"3758",2010,37075,"NC","37","075",8866,0.920257162192646,454,0.148319422512971,6.11809719804135,6.93925394604151,7.84109976542212,17.5,579.884023195361,29,5001,0,0,0,0,9 +"3759",2010,37077,"NC","37","077",57683,0.653762807066207,3357,0.126935145536813,8.11880299698004,9.07692325853583,9.72853875007159,9.62307692307692,360.480640854473,135,37450,0,0,0,0,9 +"3760",2010,37079,"NC","37","079",21257,0.590346709319283,1325,0.124476642988192,7.18916773842032,7.98002359231065,8.64541048921699,10.0076923076923,332.502078137988,44,13233,0,0,0,0,9 +"3761",2010,37081,"NC","37","081",489626,0.609013818710608,39565,0.115624987235155,10.5857001680433,11.1116714776335,11.9572458348471,10.9846153846154,313.513477029823,929,296319,0,0,0,0,9 +"3762",2010,37083,"NC","37","083",54476,0.411171892209413,3121,0.140318672442911,8.04590874227078,8.78889830934488,9.69977891386053,14.5692307692308,484.840852564304,154,31763,0,0,0,0,9 +"3763",2010,37085,"NC","37","085",115757,0.742633274877545,8062,0.101298409599419,8.99491694367711,9.71371833060702,10.4496127502891,11.2076923076923,395.474346203595,266,67261,0,0,0,0,9 +"3764",2010,37087,"NC","37","087",58930,0.976412693025624,2846,0.150144238927541,7.9536697786498,8.9126079636709,9.76105955940385,10.1769230769231,452.448545067424,153,33816,0,0,0,0,9 +"3765",2010,37089,"NC","37","089",106894,0.945693864950325,4625,0.142992123037776,8.43923164994653,9.47485616639612,10.3118817001502,9.00769230769231,386.801255407583,228,58945,0,0,0,0,9 +"3766",2010,37091,"NC","37","091",24773,0.3672950389537,1580,0.13930488838655,7.36518012602101,7.99967857949945,8.88820487145502,10.5076923076923,487.369577155409,71,14568,0,0,0,0,9 +"3767",2010,37093,"NC","37","093",47498,0.51631647648322,3116,0.0901301107415049,8.04430540699064,8.80192090404158,9.59328716865375,10.0307692307692,347.789055291362,98,28178,0,0,0,0,9 +"3768",2010,37097,"NC","37","097",159788,0.846696873357198,8471,0.119333116379202,9.04440384443155,10.0762216293053,10.7776637883029,12.7538461538462,372.062455612207,351,94339,0,0,0,0,9 +"3769",2010,37099,"NC","37","099",40376,0.864052902714484,5215,0.131959579948484,8.55929436743487,8.3707791729607,9.40508444876869,10.8384615384615,385.135411971975,94,24407,0,0,0,0,9 +"3770",2010,37101,"NC","37","101",169676,0.821094320941088,8541,0.11076404441406,9.05263337594615,10.2285376614566,10.8433385488193,9.80769230769231,364.818386051413,367,100598,0,0,0,0,9 +"3771",2010,37103,"NC","37","103",10139,0.656277739422034,605,0.154354472827695,6.40522845803084,7.00124562206948,8.02715010683277,11.1076923076923,621.744244664762,37,5951,0,0,0,0,9 +"3772",2010,37105,"NC","37","105",57879,0.764906097202785,3435,0.119076003386375,8.14177220465645,8.94767606249969,9.74331880038331,12.6384615384615,413.137167484024,139,33645,0,0,0,0,9 +"3773",2010,37107,"NC","37","107",59491,0.572523574994537,3275,0.138676438452875,8.09407314806935,8.84922702143852,9.78880595245251,11.7384615384615,582.996425851058,199,34134,0,0,0,0,9 +"3774",2010,37109,"NC","37","109",78127,0.928987417922101,4009,0.134716551256288,8.29629711264251,9.38210641483062,10.0803777193329,12.6076923076923,351.224026247161,167,47548,0,0,0,0,9 +"3775",2010,37111,"NC","37","111",45102,0.940623475677354,2323,0.140348543301849,7.75061473277041,8.75020786252571,9.48569679473733,13.1846153846154,443.682189329257,119,26821,0,0,0,0,9 +"3776",2010,37113,"NC","37","113",33959,0.969522070732354,1694,0.160752672340175,7.434847875212,8.16848641712668,9.15239341202133,11.4230769230769,501.293661060802,93,18552,0,0,0,0,9 +"3777",2010,37115,"NC","37","115",20798,0.97869987498798,1309,0.153812866621791,7.1770187659099,7.87853419614036,8.73568594451502,10.2769230769231,415.681799657674,51,12269,0,0,0,0,9 +"3778",2010,37117,"NC","37","117",24505,0.55058151397674,1266,0.154743929810243,7.14361760270412,7.9707403900071,8.9219914105367,12.6153846153846,416.96113074205,59,14150,0,0,0,0,9 +"3779",2010,37119,"NC","37","119",923292,0.617120044362997,63791,0.0984899685040052,11.0633673935514,11.8916837666943,12.6159977928604,10.5538461538462,255.005406596737,1481,580772,0,0,0,0,9 +"3780",2010,37121,"NC","37","121",15511,0.980529946489588,766,0.149377860872929,6.64118216974059,7.5595594960077,8.41825644355621,12.2692307692308,501.336898395722,45,8976,0,0,0,0,9 +"3781",2010,37123,"NC","37","123",27725,0.778034265103697,1532,0.139621280432822,7.33432935030054,8.1610895128458,9.01541977960571,12.2076923076923,385.908128968007,62,16066,0,0,0,0,9 +"3782",2010,37125,"NC","37","125",88595,0.838591342626559,3783,0.137998758394943,8.23827262463303,9.26454442598969,10.1235864736641,10.0076923076923,379.899115679281,180,47381,0,0,0,0,9 +"3783",2010,37127,"NC","37","127",95819,0.596311796199084,5455,0.136183846627496,8.60428789826717,9.45430563898269,10.2848648651152,12.4307692307692,501.595987232102,286,57018,0,0,0,0,9 +"3784",2010,37129,"NC","37","129",203295,0.822986300696033,18574,0.124366069013011,9.82951803233595,10.1989145554354,11.0819733037874,9.60769230769231,329.213580256614,419,127273,0,0,0,0,9 +"3785",2010,37131,"NC","37","131",22037,0.402323365249353,1199,0.153242274356764,7.08924315502751,7.80588204022862,8.7558950816463,11.5076923076923,538.102397720978,68,12637,0,0,0,0,9 +"3786",2010,37133,"NC","37","133",186918,0.791020661466525,37806,0.0701430573834516,10.5402230991701,9.83365504293745,10.8358681455592,8.18461538461538,255.269426093209,284,111255,0,0,0,0,9 +"3787",2010,37135,"NC","37","135",133985,0.792842482367429,16910,0.114990484009404,9.73566044189263,9.74155668538991,10.7058478180694,6.52307692307692,229.242447280085,196,85499,0,0,0,0,9 +"3788",2010,37137,"NC","37","137",13108,0.780363137015563,639,0.1726426609704,6.45990445437753,7.25770767716004,8.18757739559151,10.0923076923077,561.21117201775,43,7662,0,0,0,0,9 +"3789",2010,37139,"NC","37","139",40632,0.590372120496161,3507,0.116484544201614,8.16251625014018,8.50004703258127,9.40689351101686,9.82307692307692,411.997363216875,100,24272,0,0,0,0,9 +"3790",2010,37141,"NC","37","141",52415,0.800038157016121,2824,0.13931126585901,7.94590959861313,8.86939815988352,9.64484634886876,11.3384615384615,398.112177737824,124,31147,0,0,0,0,9 +"3791",2010,37143,"NC","37","143",13480,0.737759643916914,668,0.15593471810089,6.50428817353665,7.26122509197192,8.27512163021651,10.5384615384615,545.140273899747,41,7521,0,0,0,0,9 +"3792",2010,37145,"NC","37","145",39412,0.710494265705876,1999,0.138257383538009,7.6004023345004,8.56788630573176,9.38697914563464,12.3,445.072110240938,104,23367,0,0,0,0,9 +"3793",2010,37147,"NC","37","147",168865,0.621656352707784,21937,0.102975749859355,9.99592998792569,9.93406525300027,10.9274481315085,10.0692307692308,317.095368108445,331,104385,0,0,0,0,9 +"3794",2010,37149,"NC","37","149",20474,0.941437921265996,816,0.165038585523102,6.70441435496411,7.75448154747038,8.66181288102618,10.0307692307692,403.406544150605,45,11155,0,0,0,0,9 +"3795",2010,37151,"NC","37","151",141985,0.913934570553227,7917,0.12638659013276,8.97676762517143,9.9276434357472,10.649440632919,11.8923076923077,444.917534774133,372,83611,0,0,0,0,9 +"3796",2010,37153,"NC","37","153",46636,0.640921176773308,2948,0.130950338794065,7.98888225330923,8.72046051272565,9.52317836430908,14.7230769230769,562.169312169312,153,27216,0,0,0,0,9 +"3797",2010,37155,"NC","37","155",134469,0.335170187924354,10022,0.117060437721705,9.21253795551967,9.76088658393711,10.6046525046897,13.5692307692308,537.077530977865,420,78201,0,0,0,0,9 +"3798",2010,37157,"NC","37","157",93681,0.792006917090979,4978,0.14029525730938,8.51278348292754,9.45242343310979,10.2567115487986,13.0846153846154,520.645672695828,289,55508,0,0,0,0,9 +"3799",2010,37159,"NC","37","159",138329,0.813770069905804,8741,0.126379862501717,9.07577987858049,9.8171668460696,10.6166334196028,13.9307692307692,438.016933392062,358,81732,0,0,0,0,9 +"3800",2010,37161,"NC","37","161",67739,0.883169223047284,3499,0.143964333692555,8.16023249236769,9.09009179938001,9.90048304351583,16.5615384615385,462.288968916814,181,39153,0,0,0,0,9 +"3801",2010,37163,"NC","37","163",63536,0.677285318559557,3598,0.124244522790229,8.18813341451048,9.05695606507683,9.8211380195191,9.58461538461538,516.887734172022,189,36565,0,0,0,0,9 +"3802",2010,37165,"NC","37","165",36062,0.479618434917642,2259,0.136320780877378,7.722677516468,8.42704964156327,9.2881343994162,17.4538461538462,478.604937686585,101,21103,0,0,0,0,9 +"3803",2010,37167,"NC","37","167",60578,0.860196771105022,3843,0.131714483806002,8.25400859056484,9.00109972583097,9.77423271667887,13.0538461538462,449.526592307476,160,35593,0,0,0,0,9 +"3804",2010,37169,"NC","37","169",47330,0.94899640819776,2303,0.141221212761462,7.74196789982069,8.80807015476454,9.56289684665117,11.2769230769231,489.726391994038,138,28179,0,0,0,0,9 +"3805",2010,37171,"NC","37","171",73779,0.945052115100503,3753,0.133384838504181,8.23031079913502,9.22581994282457,9.96946254145966,11.8769230769231,488.253608831022,207,42396,0,0,0,0,9 +"3806",2010,37173,"NC","37","173",14006,0.689276024560902,819,0.138226474368128,6.70808408385307,7.43366654016617,8.32239411311117,14.6384615384615,812.398450193726,65,8001,0,0,0,0,9 +"3807",2010,37175,"NC","37","175",33087,0.946202436002055,1835,0.155166681778342,7.51479976048867,8.12237124340655,9.11239672764606,9.68461538461538,326.447909044858,58,17767,0,0,0,0,9 +"3808",2010,37179,"NC","37","179",202110,0.8499035178863,9551,0.101271584780565,9.16440114003474,10.4303439933746,10.986766213039,9.91538461538462,270.387007601935,313,115760,0,0,0,0,9 +"3809",2010,37181,"NC","37","181",45293,0.476629942816771,2858,0.130792837745347,7.95787735848981,8.67077227934454,9.53791600808964,13.9846153846154,632.208130579716,165,26099,0,0,0,0,9 +"3810",2010,37183,"NC","37","183",906875,0.712666023432116,62158,0.0990897312198484,11.0374348094917,11.895299344255,12.5857959241457,8.20769230769231,213.126767943185,1204,564922,0,0,0,0,9 +"3811",2010,37185,"NC","37","185",20974,0.407218460951654,1200,0.157576046533804,7.09007683577609,7.74630066223144,8.66681936537205,13.5923076923077,497.26909594848,61,12267,0,0,0,0,9 +"3812",2010,37187,"NC","37","187",13119,0.481591584724445,667,0.15702416342709,6.50279004591562,7.29301767977278,8.27410200229233,14.1307692307692,578.579117330463,43,7432,0,0,0,0,9 +"3813",2010,37189,"NC","37","189",50972,0.964980773758142,11492,0.11302283606686,9.34940642009918,8.44311598801992,9.68396244674463,7.78461538461538,200.74824345287,66,32877,0,0,0,0,9 +"3814",2010,37191,"NC","37","191",122891,0.650015053990935,8944,0.118657997737833,9.09873819539488,9.64478158832086,10.5132259498748,9.08461538461538,436.200514634046,317,72673,0,0,0,0,9 +"3815",2010,37193,"NC","37","193",69265,0.9455569190789,3467,0.140085180105392,8.15104494568502,9.12063445889169,9.91076103650263,13.2923076923077,503.666395081846,204,40503,0,0,0,0,9 +"3816",2010,37195,"NC","37","195",81294,0.582785937461559,4915,0.130956774177676,8.50004703258127,9.2529208195113,10.1192841811873,13.7692307692308,453.194494213866,215,47441,0,0,0,0,9 +"3817",2010,37197,"NC","37","197",38435,0.956107714322883,1939,0.131546767269416,7.56992765524265,8.60043078998629,9.32865659879423,10.8615384615385,403.51506456241,90,22304,0,0,0,0,9 +"3818",2010,37199,"NC","37","199",17805,0.977534400449312,810,0.156922212861556,6.69703424766648,7.72223474470961,8.54480835844921,11.7384615384615,450.274079874706,46,10216,0,0,0,0,9 +"3819",2010,38003,"ND","38","003",11065,0.974152733845459,727,0.146407591504745,6.58892647753352,7.02908756414966,8.01367414283268,4.36923076923077,239.463601532567,15,6264,1,0,0,0,9 +"3820",2010,38005,"ND","38","005",6677,0.435674704208477,394,0.110079376965703,5.97635090929793,6.5424719605068,7.41878088275079,5.31538461538462,681.077879774948,23,3377,1,0,0,0,9 +"3821",2010,38015,"ND","38","015",81708,0.940079306799824,6084,0.123806726391541,8.71341765337918,9.19715381017201,10.1216989608048,3.53846153846154,231.924977311687,115,49585,1,0,0,0,9 +"3822",2010,38017,"ND","38","017",150321,0.932364739457561,18425,0.103711390956686,9.82146371705754,9.82075790493713,10.7604740405111,3.47692307692308,236.721867311708,229,96738,1,0,0,0,9 +"3823",2010,38035,"ND","38","035",66994,0.922216914947607,10763,0.104486968982297,9.2838696052643,8.8340456411678,9.9150702137792,3.4,238.440319790547,102,42778,1,0,0,0,9 +"3824",2010,38053,"ND","38","053",6412,0.763568309419838,365,0.129600748596382,5.89989735358249,6.54965074223381,7.43307534889858,2.15384615384615,304.203539823009,11,3616,1,0,0,0,9 +"3825",2010,38055,"ND","38","055",8998,0.920093354078684,298,0.177706156923761,5.6970934865054,6.84800527457636,7.80343505695217,4.99230769230769,411.683983532641,21,5101,1,0,0,0,9 +"3826",2010,38057,"ND","38","057",8418,0.96448087431694,321,0.160133048229983,5.77144112313002,6.77308037565554,7.79358680337158,5.16153846153846,291.772028788173,15,5141,1,0,0,0,9 +"3827",2010,38059,"ND","38","059",27570,0.947805585781647,1433,0.130612985128763,7.26752542782817,8.10258642539079,9.00307016981826,4.48461538461538,368.007850834151,60,16304,1,0,0,0,9 +"3828",2010,38061,"ND","38","061",7708,0.666190970420342,584,0.132719252724442,6.36990098282823,6.7719355558396,7.59085212368858,2.6,543.951261966928,25,4596,1,0,0,0,9 +"3829",2010,38067,"ND","38","067",7402,0.97068359902729,310,0.158470683599027,5.73657229747919,6.61069604471776,7.59387784460512,6.23846153846154,238.777459407832,10,4188,1,0,0,0,9 +"3830",2010,38071,"ND","38","071",11451,0.894070386865776,664,0.135010042791023,6.49828214947643,7.08002649992259,8.0702808933939,3.73846153846154,368.550368550369,24,6512,1,0,0,0,9 +"3831",2010,38077,"ND","38","077",16329,0.959213668932574,1420,0.128666789148141,7.25841215059531,7.42535788702715,8.39479954320217,3.76923076923077,359.218172213418,34,9465,1,0,0,0,9 +"3832",2010,38079,"ND","38","079",14009,0.207866371618245,913,0.101077878506674,6.81673588059497,7.33432935030054,8.25322764558177,10.6692307692308,739.644970414201,55,7436,1,0,0,0,9 +"3833",2010,38085,"ND","38","085",4148,0.133799421407907,309,0.0766634522661524,5.73334127689775,6.24997524225948,6.96885037834195,4.97692307692308,781.96872125115,17,2174,1,0,0,0,9 +"3834",2010,38089,"ND","38","089",24359,0.963668459296359,2165,0.118600927788497,7.68017564043659,7.84267147497946,8.8486528862139,2.74615384615385,278.66796711718,40,14354,1,0,0,0,9 +"3835",2010,38093,"ND","38","093",21138,0.968066988362191,1513,0.138281767433059,7.32184971378836,7.7621706071382,8.68338536628031,4.05384615384615,286.624203821656,36,12560,1,0,0,0,9 +"3836",2010,38099,"ND","38","099",11114,0.973096994781357,482,0.145312218823106,6.1779441140506,7.04403289727469,7.99294454731811,4.99230769230769,291.450777202073,18,6176,1,0,0,0,9 +"3837",2010,38101,"ND","38","101",62128,0.92309425701777,6473,0.103914499098635,8.77539495854551,8.83710041116275,9.79227662320013,3.4,253.499096572369,94,37081,1,0,0,0,9 +"3838",2010,38105,"ND","38","105",22591,0.939754769598513,1437,0.129299278473728,7.27031288607902,7.79482315217939,8.72745411689943,2.15384615384615,344.440284537626,46,13355,1,0,0,0,9 +"3839",2010,31001,"NE","31","001",31328,0.964121552604699,2499,0.123755107252298,7.82364593083495,8.13622555490846,9.07280095795412,4.83076923076923,253.735551170003,45,17735,0,0,0,0,9 +"3840",2010,31013,"NE","31","013",11277,0.939788950962135,462,0.151902101622772,6.13556489108174,7.14519613499717,8.07651532755233,5.05384615384615,338.77425315676,22,6494,0,0,0,0,9 +"3841",2010,31019,"NE","31","019",46176,0.968360187110187,5283,0.10797817047817,8.57224939716431,8.52555810774787,9.52369019117654,3.69230769230769,196.706979455049,54,27452,0,0,0,0,9 +"3842",2010,31023,"NE","31","023",8374,0.989968951516599,309,0.134583233818963,5.73334127689775,6.80903930604298,7.69439280262942,3.98461538461538,374.119718309859,17,4544,0,0,0,0,9 +"3843",2010,31025,"NE","31","025",25239,0.984349617655216,1077,0.139664804469274,6.98193467715639,8.07775756373692,8.89082357600438,5.73076923076923,402.016898337422,59,14676,0,0,0,0,9 +"3844",2010,31033,"NE","31","033",9969,0.970007021767479,429,0.127093991373257,6.06145691892802,7.08002649992259,7.96102146588337,3.70769230769231,396.825396825397,23,5796,0,0,0,0,9 +"3845",2010,31037,"NE","31","037",10541,0.944597286784935,658,0.100464851532113,6.48920493132532,7.12929754892937,7.90100705199242,4.01538461538462,174.125021765628,10,5743,0,0,0,0,9 +"3846",2010,31041,"NE","31","041",10905,0.989454378725355,399,0.142595139844108,5.98896141688986,7.04925484125584,7.96380795323145,3.73076923076923,375.93984962406,22,5852,0,0,0,0,9 +"3847",2010,31043,"NE","31","043",21033,0.887652736176485,1401,0.105358246564922,7.24494154633701,7.83201418050547,8.6652683094816,7.46923076923077,307.639719706033,36,11702,0,0,0,0,9 +"3848",2010,31045,"NE","31","045",9170,0.918102508178844,1329,0.111668484187568,7.19218205871325,6.70808408385307,7.85554467791566,4.03846153846154,305.168796490559,16,5243,0,0,0,0,9 +"3849",2010,31047,"NE","31","047",24302,0.935643156941815,1334,0.117644638301374,7.19593722647557,8.01035958891978,8.7738488852629,5.02307692307692,299.917522681263,40,13337,0,0,0,0,9 +"3850",2010,31053,"NE","31","053",36671,0.970603474134875,2198,0.121649259632952,7.69530313496357,8.3255483071614,9.22207129485188,5.38461538461539,384.293245307188,78,20297,0,0,0,0,9 +"3851",2010,31055,"NE","31","055",518599,0.828406919411723,38497,0.108486518485381,10.5583355951619,11.11413304488,11.9724872675985,5.20769230769231,289.984670413899,908,313120,0,0,0,0,9 +"3852",2010,31067,"NE","31","067",22269,0.982891014414657,1113,0.133189635816606,7.01481435127554,7.83201418050547,8.72306850116393,5.85384615384615,338.682364325458,42,12401,0,0,0,0,9 +"3853",2010,31079,"NE","31","079",58813,0.940319317157771,3433,0.11380137044531,8.14118979345769,8.90231952852887,9.709113657218,4.73076923076923,306.030603060306,102,33330,0,0,0,0,9 +"3854",2010,31081,"NE","31","081",9127,0.99233044812096,336,0.138161498849567,5.8171111599632,6.99025650049388,7.82084087990734,3.83076923076923,394.088669950739,20,5075,0,0,0,0,9 +"3855",2010,31089,"NE","31","089",10434,0.989265861606287,376,0.143089898409047,5.9295891433899,6.94505106372583,7.91607809630279,3.68461538461538,354.358610914245,20,5644,0,0,0,0,9 +"3856",2010,31095,"NE","31","095",7521,0.985906129504055,290,0.155032575455392,5.66988092298052,6.68210859744981,7.60589000105312,4.8,338.900992495764,14,4131,0,0,0,0,9 +"3857",2010,31101,"NE","31","101",8356,0.982048827190043,326,0.155816179990426,5.78689738136671,6.73578001424233,7.73805229768932,4.34615384615385,410.101446147205,19,4633,0,0,0,0,9 +"3858",2010,31107,"NE","31","107",8677,0.89835196496485,294,0.14359801774807,5.68357976733868,6.73578001424233,7.67925142595306,4.21538461538462,426.104507737161,19,4459,0,0,0,0,9 +"3859",2010,31109,"NE","31","109",286175,0.906029527387088,30953,0.110383506595615,10.3402252039484,10.4446483760982,11.3730540165995,4.29230769230769,232.344365931097,412,177323,0,0,0,0,9 +"3860",2010,31111,"NE","31","111",36250,0.974041379310345,1915,0.1352,7.55747290161475,8.35702443926342,9.23356849809539,4.61538461538461,431.326936124843,89,20634,0,0,0,0,9 +"3861",2010,31119,"NE","31","119",34963,0.956010639819238,2477,0.117295426593828,7.81480342948936,8.23270600986098,9.19278721272859,4.30769230769231,292.323975606068,58,19841,0,0,0,0,9 +"3862",2010,31121,"NE","31","121",7852,0.981406011207336,358,0.137162506367804,5.8805329864007,6.8134445995109,7.66058546170326,4.56923076923077,441.039925719591,19,4308,0,0,0,0,9 +"3863",2010,31131,"NE","31","131",15747,0.982409347812282,706,0.128087889756779,6.55961523749324,7.50439155916124,8.372398606513,5.13846153846154,300.092336103416,26,8664,0,0,0,0,9 +"3864",2010,31137,"NE","31","137",9183,0.98911031253403,396,0.132418599586192,5.98141421125448,6.94889722231331,7.80384330353877,3.64615384615385,199.8001998002,10,5005,0,0,0,0,9 +"3865",2010,31141,"NE","31","141",32305,0.971892895836558,1693,0.120321931589537,7.43425738213314,8.23615566168312,9.0864763847538,4.30769230769231,260.186005314438,47,18064,0,0,0,0,9 +"3866",2010,31145,"NE","31","145",11059,0.981191789492721,626,0.127950085902885,6.4393503711001,7.01929665371504,7.99699040583765,3.71538461538462,444.005920078934,27,6081,0,0,0,0,9 +"3867",2010,31147,"NE","31","147",8372,0.957477305303392,314,0.141065456282848,5.74939298590825,6.76734312526539,7.70616297019958,6.34615384615385,380.653828929691,17,4466,0,0,0,0,9 +"3868",2010,31151,"NE","31","151",14220,0.95506329113924,1128,0.111533052039381,7.028201432058,7.42595365707754,8.25764495820823,4.77692307692308,237.767488424478,19,7991,0,0,0,0,9 +"3869",2010,31153,"NE","31","153",159732,0.916604061803521,10268,0.09877169258508,9.23678754199103,10.0349104738965,10.7937833241332,4.52307692307692,181.670112134311,174,95778,0,0,0,0,9 +"3870",2010,31155,"NE","31","155",20867,0.986869219341544,853,0.131451574256002,6.74875954749168,7.83834331555712,8.65329627440858,4.89230769230769,341.122292341805,40,11726,0,0,0,0,9 +"3871",2010,31157,"NE","31","157",37058,0.951751308759242,2190,0.129769550434454,7.69165682281055,8.30350479887278,9.26160366591373,5.6,360.044762321802,74,20553,0,0,0,0,9 +"3872",2010,31159,"NE","31","159",16800,0.98547619047619,1390,0.1225,7.23705902612474,7.52131798019924,8.42507790250843,4.07692307692308,372.300819061802,35,9401,0,0,0,0,9 +"3873",2010,31173,"NE","31","173",6971,0.411562186199971,441,0.0962559173719696,6.08904487544685,6.54678541076052,7.44366368311559,9.70769230769231,881.057268722467,30,3405,0,0,0,0,9 +"3874",2010,31177,"NE","31","177",19921,0.985844084132323,840,0.139099442799056,6.73340189183736,7.82324569068552,8.6569551337914,4.69230769230769,324.758567643791,38,11701,0,0,0,0,9 +"3875",2010,31185,"NE","31","185",13669,0.975345672690029,854,0.134464847465067,6.74993119378857,7.28619171470238,8.26770566476243,4.73076923076923,180.761781794706,14,7745,0,0,0,0,9 +"3876",2010,34001,"NJ","34","001",274654,0.729379510220131,17773,0.125430541699739,9.78543573075999,10.491885141897,11.3408195503659,12.4846153846154,411.783725087085,675,163921,1,0,0,0,9 +"3877",2010,34003,"NJ","34","003",906293,0.774693173179093,47405,0.127207205616727,10.7664829873521,11.766272271016,12.5420268908742,8.11538461538461,221.026171925999,1202,543827,1,0,0,0,9 +"3878",2010,34005,"NJ","34","005",449125,0.765575285276927,26455,0.124885054272196,10.1832004553382,11.0338730183859,11.8222320335187,9.13076923076923,310.131198019875,842,271498,1,0,0,0,9 +"3879",2010,34007,"NJ","34","007",513283,0.720039432437856,32975,0.120161782096816,10.4035049775855,11.1453773359079,11.9808769900898,11.1153846153846,360.150655480659,1114,309315,1,0,0,0,9 +"3880",2010,34009,"NJ","34","009",97222,0.930550698401596,5473,0.158225504515439,8.60758219114392,9.23180827859142,10.2427416305319,14.6461538461538,415.243573611361,231,55630,1,0,0,0,9 +"3881",2010,34011,"NJ","34","011",156667,0.739543107355091,10748,0.111816783368546,9.28247496973538,9.99711449831475,10.6952576017012,13.1769230769231,371.06726513965,353,95131,1,0,0,0,9 +"3882",2010,34013,"NJ","34","013",784017,0.505783675609075,52922,0.109724661582593,10.8765744104097,11.6596543858388,12.4199413178223,10.9923076923077,361.524266740396,1726,477423,1,0,0,0,9 +"3883",2010,34015,"NJ","34","015",289158,0.85780438376251,19171,0.121009966869324,9.86115399952005,10.6116464907165,11.4063753531345,10.4153846153846,315.540664586011,550,174304,1,0,0,0,9 +"3884",2010,34017,"NJ","34","017",635648,0.682870079037455,47801,0.098545106725735,10.7748018387628,11.4836614192837,12.2568750694605,9.68461538461538,250.294184634072,1055,421504,1,0,0,0,9 +"3885",2010,34019,"NJ","34","019",127323,0.934473740015551,5964,0.146242234317445,8.69349667588463,9.76801141297368,10.5813941836798,7.51538461538462,209.84236540382,166,79107,1,0,0,0,9 +"3886",2010,34021,"NJ","34","021",367717,0.678864452826494,27737,0.117291286505655,10.2305225409405,10.8556086414111,11.6393730767585,8.47692307692308,309.388034918557,695,224637,1,0,0,0,9 +"3887",2010,34023,"NJ","34","023",810813,0.65704422598059,58115,0.113244360906892,10.9701790850778,11.6727287103336,12.4392061308737,9.1,237.719175480337,1189,500170,1,0,0,0,9 +"3888",2010,34025,"NJ","34","025",630454,0.862051791248846,34054,0.13076132437894,10.4357027789806,11.3584914116632,12.167820263393,8.9,280.7956405287,1062,378211,1,0,0,0,9 +"3889",2010,34027,"NJ","34","027",492623,0.865495520915589,23946,0.127131701118299,10.0835565742768,11.1772848824289,11.9156334423509,7.51538461538462,211.102503120866,624,295591,1,0,0,0,9 +"3890",2010,34029,"NJ","34","029",577574,0.940767763091829,30924,0.123509714772479,10.3392878604404,11.1027593243034,11.9685575667607,10.4384615384615,373.496675879585,1150,307901,1,0,0,0,9 +"3891",2010,34031,"NJ","34","031",502010,0.772881018306408,36223,0.1115455867413,10.4974495551747,11.139961428323,11.9450195211427,11.4923076923077,289.843497822014,871,300507,1,0,0,0,9 +"3892",2010,34033,"NJ","34","033",65983,0.83230529075671,3724,0.135443977994332,8.22255363839696,9.02701831484864,9.89686567622724,11.8307692307692,418.850858258814,163,38916,1,0,0,0,9 +"3893",2010,34035,"NJ","34","035",324120,0.749379859311366,14574,0.120899666790078,9.58699439823023,10.7889685000168,11.5171067113635,7.71538461538462,189.65271121806,372,196148,1,0,0,0,9 +"3894",2010,34037,"NJ","34","037",148859,0.955326852927939,7558,0.140972329519881,8.93036188390943,9.95967883218587,10.7381125937454,9.56923076923077,323.36737582475,297,91846,1,0,0,0,9 +"3895",2010,34039,"NJ","34","039",537336,0.70343881668081,32654,0.113320157220063,10.3937226386861,11.2670377141754,12.0200261597943,9.68461538461538,286.928995871925,930,324122,1,0,0,0,9 +"3896",2010,34041,"NJ","34","041",108572,0.92963194930553,5886,0.128357219172531,8.68033192879342,9.63619616973208,10.4101846657183,9.98461538461538,283.1291930818,184,64988,1,0,0,0,9 +"3897",2010,35001,"NM","35","001",663940,0.869108654396482,49682,0.120354248877911,10.813397973446,11.340142272995,12.2307018414756,7.41538461538462,347.440078366213,1401,403235,1,0,0,0,9 +"3898",2010,35005,"NM","35","005",65721,0.938147624047108,4300,0.114057911474262,8.36637030168165,8.89247396834709,9.8028381443862,7.20769230769231,376.499676884606,134,35591,1,0,0,0,9 +"3899",2010,35006,"NM","35","006",27319,0.54745781324353,1840,0.119404077748087,7.51752085060303,8.14815643992162,8.96290412809293,9.18461538461538,581.539222964613,94,16164,1,0,0,0,9 +"3900",2010,35007,"NM","35","007",13725,0.961457194899818,642,0.164298724954463,6.46458830368996,7.25981961036319,8.2398574110186,8.06153846153846,561.439326272808,44,7837,1,0,0,0,9 +"3901",2010,35009,"NM","35","009",48977,0.880494926189844,4086,0.0955958919492823,8.31532177537757,8.66561319653451,9.52784820132521,5.10769230769231,314.32907001951,87,27678,1,0,0,0,9 +"3902",2010,35013,"NM","35","013",210096,0.936162516183078,19495,0.107465158784556,9.8779133014167,10.0612602364087,11.0218371068873,7.44615384615385,328.369991517808,391,119073,1,0,0,0,9 +"3903",2010,35015,"NM","35","015",53912,0.946449769995548,3205,0.125723401098086,8.07246736935477,8.74209519574531,9.6288533189336,6.12307692307692,533.541544667838,164,30738,1,0,0,0,9 +"3904",2010,35017,"NM","35","017",29386,0.959300347104063,1521,0.164057714557953,7.32712329225929,7.94271754057379,9.01942196795671,9.29230769230769,487.225935411331,78,16009,1,0,0,0,9 +"3905",2010,35025,"NM","35","025",64598,0.926731477754729,4604,0.10009597820366,8.43468076984177,8.96021095557699,9.7721252343393,7.59230769230769,459.751353410049,169,36759,1,0,0,0,9 +"3906",2010,35027,"NM","35","027",20451,0.952373967043176,838,0.18634785585057,6.73101810048208,7.60489448081162,8.71127861513043,7.18461538461538,341.646737273659,40,11708,1,0,0,0,9 +"3907",2010,35028,"NM","35","028",17995,0.914754098360656,508,0.155043067518755,6.23048144757848,7.7484600238997,8.56940606286317,3.5,225.225225225225,24,10656,1,0,0,0,9 +"3908",2010,35029,"NM","35","029",25082,0.953671955984371,1458,0.123514871222391,7.2848209125686,7.87815533650332,8.77755545321306,19.4692307692308,476.190476190476,61,12810,1,0,0,0,9 +"3909",2010,35031,"NM","35","031",71673,0.196740753142746,5533,0.100846901901692,8.61848544289811,9.04911472347696,9.93294926268575,9.46153846153846,484.726079272911,192,39610,1,0,0,0,9 +"3910",2010,35035,"NM","35","035",64405,0.85897057681857,5019,0.117723779209689,8.52098598965493,8.88044645071509,9.80405388282064,6.92307692307692,445.781485026665,163,36565,1,0,0,0,9 +"3911",2010,35037,"NM","35","037",9065,0.946718146718147,385,0.156646442360728,5.95324333428778,6.88243747099785,7.85243908535751,9.01538461538462,702.670146556916,35,4981,1,0,0,0,9 +"3912",2010,35039,"NM","35","039",40286,0.79352628704761,2470,0.135704711314104,7.81197342962202,8.50694081495189,9.37279929967389,8.78461538461539,551.735845853493,130,23562,1,0,0,0,9 +"3913",2010,35041,"NM","35","041",20020,0.941408591408591,2332,0.0974525474525475,7.75448154747038,7.67508185771633,8.62299361030245,5.98461538461538,348.183197928756,39,11201,1,0,0,0,9 +"3914",2010,35043,"NM","35","043",132437,0.807969072087106,7083,0.131118947122028,8.86545282575362,9.77616541396078,10.5968097177854,8.06923076923077,308.142470577573,238,77237,1,0,0,0,9 +"3915",2010,35045,"NM","35","045",130209,0.596172307597785,8789,0.111489989171255,9.08125621856465,9.6268772940514,10.5260513116406,9,381.90008740671,284,74365,1,0,0,0,9 +"3916",2010,35047,"NM","35","047",29392,0.936921611322809,2033,0.14575394665215,7.61726781362835,8.07806788181544,9.05975001334368,9.22307692307692,543.007336375715,94,17311,1,0,0,0,9 +"3917",2010,35049,"NM","35","049",144526,0.927238005618366,7523,0.168592502387114,8.92572027356022,9.80884714838201,10.720709048198,6.49230769230769,345.114438598858,307,88956,1,0,0,0,9 +"3918",2010,35051,"NM","35","051",12043,0.958149962633895,487,0.186000166071577,6.18826412308259,6.92951677076365,8.0519780789023,8.83846153846154,775.82026830451,48,6187,1,0,0,0,9 +"3919",2010,35053,"NM","35","053",17791,0.842054971614861,1474,0.129897139002867,7.29573507274928,7.56060116276856,8.50936261230105,7.44615384615385,581.282697151715,60,10322,1,0,0,0,9 +"3920",2010,35055,"NM","35","055",32897,0.897376660485759,1568,0.177189409368635,7.35755620091035,8.2776661608515,9.21512888870798,10.2692307692308,337.616528092719,67,19845,1,0,0,0,9 +"3921",2010,35057,"NM","35","057",16399,0.92859320690286,867,0.15616805902799,6.76503897678054,7.58578882173203,8.43944784279138,11.1384615384615,423.24765149169,41,9687,1,0,0,0,9 +"3922",2010,35061,"NM","35","061",76805,0.917869930343077,4568,0.127960419243539,8.42683075133585,9.17232692977797,10.0015666226958,9.17692307692308,423.14704359765,188,44429,1,0,0,0,9 +"3923",2010,32001,"NV","32","001",24816,0.882616054158607,1522,0.129956479690522,7.32778053842163,7.97487690055888,8.86333283343959,12.5384615384615,399.943867527365,57,14252,1,0,0,0,9 +"3924",2010,32003,"NV","32","003",1952640,0.757887270567027,128920,0.110987176335628,11.7669473359294,12.5707018701327,13.2865294496174,14.0076923076923,349.944725689166,4169,1191331,1,0,0,0,9 +"3925",2010,32005,"NV","32","005",47037,0.947488147628463,2010,0.170674150137126,7.60589000105312,8.53129331579502,9.52639121847841,14,310.673866410237,84,27038,1,0,0,0,9 +"3926",2010,32007,"NV","32","007",49093,0.907787260912961,3225,0.114863626178885,8.07868822922987,8.7528975247753,9.53957217408476,7.95384615384615,310.344827586207,90,29000,1,0,0,0,9 +"3927",2010,32013,"NV","32","013",16580,0.924909529553679,984,0.128407720144753,6.89162589705225,7.66293785046154,8.44891435066294,8.8,403.877221324717,40,9904,1,0,0,0,9 +"3928",2010,32015,"NV","32","015",5795,0.931320103537532,345,0.127178602243313,5.84354441703136,6.57646956904822,7.39203156751459,9.88461538461539,448.967375037414,15,3341,1,0,0,0,9 +"3929",2010,32019,"NV","32","019",52049,0.928490460911833,2412,0.14292301485139,7.78821155784708,8.77090474429687,9.60501412900613,17.8461538461538,498.887615452033,148,29666,1,0,0,0,9 +"3930",2010,32021,"NV","32","021",4791,0.758714255896473,263,0.172615320392402,5.57215403217776,6.10924758276437,7.23777819192344,15.4307692307692,662.008091210004,18,2719,1,0,0,0,9 +"3931",2010,32023,"NV","32","023",43848,0.927066228790367,1846,0.16408958219303,7.5207764150628,8.37770121259764,9.37788664318798,17.5692307692308,770.435592431105,182,23623,1,0,0,0,9 +"3932",2010,32031,"NV","32","031",421969,0.8789081662397,32122,0.127362436577095,10.3772964326228,10.9193520893064,11.7562950833291,13.1,377.196443907987,975,258486,1,0,0,0,9 +"3933",2010,32033,"NV","32","033",10027,0.895681659519298,606,0.138924902762541,6.40687998606931,7.13409372119287,7.79729127354747,9.24615384615385,452.415576021975,28,6189,1,0,0,0,9 +"3934",2010,32510,"NV","32","510",54983,0.918211083425786,3320,0.138006292854155,8.10772006191053,8.83622857152601,9.62172128051365,13.6692307692308,470.06732577182,155,32974,1,0,0,0,9 +"3935",2010,36001,"NY","36","001",304085,0.803390499366953,28133,0.128700856668366,10.2446985435045,10.5155060192646,11.4729260487064,7.10769230769231,286.119249849272,541,189082,1,0,0,0,9 +"3936",2010,36003,"NY","36","003",48973,0.971739529945072,4739,0.129071120821677,8.46358142196759,8.55583681500844,9.52704712346858,9.33076923076923,239.799570508232,67,27940,1,0,0,0,9 +"3937",2010,36005,"NY","36","005",1386929,0.461766247587295,113927,0.0968023597458846,11.6433131713873,12.1359720178507,12.9988366281609,12.0307692307692,345.369603827877,2841,822597,1,0,0,0,9 +"3938",2010,36007,"NY","36","007",200474,0.89965282280994,18072,0.126679768947594,9.80211905814784,9.99920673959467,10.9914601060999,8.87692307692308,337.582506172217,402,119082,1,0,0,0,9 +"3939",2010,36009,"NY","36","009",80220,0.94047619047619,5269,0.137895786586886,8.56959587020929,9.14857134557855,10.0549202562963,9.7,433.35550168408,202,46613,1,0,0,0,9 +"3940",2010,36011,"NY","36","011",79905,0.941105062261435,4829,0.134034165571616,8.48239468587354,9.23190614989074,10.035217323214,8.7,298.142818691898,144,48299,1,0,0,0,9 +"3941",2010,36013,"NY","36","013",134726,0.954025206715853,10156,0.134346748214895,9.22581994282457,9.64264213403791,10.5661497520834,9.03076923076923,387.562080515381,302,77923,1,0,0,0,9 +"3942",2010,36015,"NY","36","015",88895,0.904775296698352,5593,0.132842117104449,8.62927109482159,9.29624280097689,10.1575094234953,8.55384615384615,344.080298076192,181,52604,1,0,0,0,9 +"3943",2010,36017,"NY","36","017",50404,0.980914213157686,2580,0.140980874533767,7.85554467791566,8.71964411950536,9.58733741610482,9.38461538461539,377.962408063198,111,29368,1,0,0,0,9 +"3944",2010,36019,"NY","36","019",82099,0.938196567558679,7679,0.122790776988757,8.94624460933054,9.26084335414929,10.1031986968672,9.99230769230769,287.467201728662,149,51832,1,0,0,0,9 +"3945",2010,36021,"NY","36","021",63035,0.924962322519235,3261,0.15703973982708,8.08978917578932,8.9497545251861,9.82195206455361,7.46153846153846,390.87599057614,146,37352,1,0,0,0,9 +"3946",2010,36023,"NY","36","023",49277,0.964242953101853,5836,0.121111268949003,8.67180090964268,8.62497078358967,9.60992153692537,9.05384615384615,370.882362857817,110,29659,1,0,0,0,9 +"3947",2010,36025,"NY","36","025",47888,0.967006348145673,2857,0.155466922819913,7.95752740223077,8.54714026778419,9.50546964506301,8.92307692307692,394.996708360764,108,27342,1,0,0,0,9 +"3948",2010,36027,"NY","36","027",297721,0.843356699728941,21665,0.125788909751076,9.98345333417401,10.5809117726308,11.3991518807104,7.86153846153846,284.12716910561,512,180201,1,0,0,0,9 +"3949",2010,36029,"NY","36","029",919160,0.82094303494495,69027,0.127868923799991,11.1422530113876,11.6238852752785,12.5408720551848,8.45384615384615,358.276983534233,1962,547621,1,0,0,0,9 +"3950",2010,36031,"NY","36","031",39359,0.955613709697909,2053,0.14817449630326,7.62705741701893,8.50126704086598,9.30328411761892,9.33846153846154,314.927566659668,75,23815,1,0,0,0,9 +"3951",2010,36033,"NY","36","033",51642,0.852155222493319,3853,0.124336780140196,8.25660734462616,8.82482493917564,9.52646411805927,9.11538461538461,286.497643325837,93,32461,1,0,0,0,9 +"3952",2010,36035,"NY","36","035",55453,0.966458081618668,3014,0.136331668259607,8.01102337918644,8.88364023250367,9.69498627795879,10.8307692307692,349.660980875065,115,32889,1,0,0,0,9 +"3953",2010,36037,"NY","36","037",59932,0.946873122872589,3746,0.128161916839084,8.22844388300403,8.93221251232921,9.76932739084919,8.19230769230769,345.263157894737,123,35625,1,0,0,0,9 +"3954",2010,36039,"NY","36","039",49137,0.920914992775302,3198,0.146590145918554,8.0702808933939,8.73616806585823,9.5366901200688,9.26153846153846,387.114148180564,115,29707,1,0,0,0,9 +"3955",2010,36043,"NY","36","043",64470,0.976516209089499,3821,0.138498526446409,8.2482674474469,8.95131054209756,9.83467323653577,8.76923076923077,309.222909384243,115,37190,1,0,0,0,9 +"3956",2010,36045,"NY","36","045",116609,0.912656827517602,11018,0.100472519273812,9.30728557803266,9.58658262140744,10.4247782261499,9.43076923076923,267.06821604114,188,70394,1,0,0,0,9 +"3957",2010,36047,"NY","36","047",2509954,0.501935493638529,196266,0.106720282523106,12.1872261609838,12.7431710961048,13.6231895731119,9.97692307692308,292.293934385806,4540,1553231,1,0,0,0,9 +"3958",2010,36049,"NY","36","049",27072,0.983857860520095,1527,0.127733451536643,7.33106030521863,8.08825472712243,8.93787526532926,9.33076923076923,351.572487854769,55,15644,1,0,0,0,9 +"3959",2010,36051,"NY","36","051",65226,0.952595590715359,6426,0.129442246956735,8.7681075396758,8.96443983353936,9.87323450936511,8.25384615384615,291.887037221834,117,40084,1,0,0,0,9 +"3960",2010,36053,"NY","36","053",73442,0.960581138857874,6322,0.127270499169413,8.75179089277556,9.0753221602981,9.99218500729742,8.43076923076923,312.902632063317,136,43464,1,0,0,0,9 +"3961",2010,36055,"NY","36","055",744589,0.792872309421708,58251,0.124120823702741,10.9725165386626,11.43123807221,12.3458650222248,8.19230769230769,295.260156008477,1318,446386,1,0,0,0,9 +"3962",2010,36057,"NY","36","057",50312,0.957425663857529,2958,0.134580219430752,7.99226864327075,8.71588010229646,9.5909661900707,10.2923076923077,380.662352493338,110,28897,1,0,0,0,9 +"3963",2010,36059,"NY","36","059",1341642,0.788913137781912,79654,0.129304240624548,11.2854475337885,12.081891686742,12.9111187522472,7.28461538461538,239.149947903545,1889,789881,1,0,0,0,9 +"3964",2010,36061,"NY","36","061",1589041,0.668224419634232,139295,0.112571041275839,11.8443492653692,12.365449644329,13.2659718255254,8.63846153846154,214.000748547299,2350,1098127,1,0,0,0,9 +"3965",2010,36063,"NY","36","063",216474,0.900934985263819,14128,0.135115533505178,9.55591392284374,10.186069139599,11.0920776473225,9.80769230769231,407.711708366213,527,129258,1,0,0,0,9 +"3966",2010,36065,"NY","36","065",234752,0.893364060796074,16063,0.128987186477644,9.68427376955777,10.2724269792948,11.1165588398473,7.79230769230769,340.24956471271,469,137840,1,0,0,0,9 +"3967",2010,36067,"NY","36","067",467549,0.832231488036548,35833,0.123214892984479,10.4866245355129,10.9520513857182,11.8709494984783,8.18461538461538,298.98754398463,831,277938,1,0,0,0,9 +"3968",2010,36069,"NY","36","069",108183,0.955843339526543,6588,0.14269339914774,8.79300509129753,9.52529708656284,10.3894875548665,7.59230769230769,328.937063375208,210,63842,1,0,0,0,9 +"3969",2010,36071,"NY","36","071",373451,0.842530880892005,24868,0.1135410000241,10.1213371153892,10.8588836062909,11.5987544765746,8.12307692307692,293.312743570649,642,218879,1,0,0,0,9 +"3970",2010,36073,"NY","36","073",42850,0.920863477246208,2729,0.129638273045508,7.91169052070834,8.62335338724463,9.4731660684291,9.77692307692308,278.024481600185,72,25897,1,0,0,0,9 +"3971",2010,36075,"NY","36","075",122141,0.976199638123153,10098,0.124773826970469,9.22009266341886,9.64419855458556,10.5031478900026,10.8615384615385,322.593817632406,237,73467,1,0,0,0,9 +"3972",2010,36077,"NY","36","077",62260,0.960970125281079,6666,0.138258914230646,8.80477525886769,8.80026465131034,9.83793518429589,7.72307692307692,341.639326482471,126,36881,1,0,0,0,9 +"3973",2010,36079,"NY","36","079",99644,0.945004215005419,5104,0.135833567500301,8.53777982502463,9.57969459307199,10.3257770010346,7.33846153846154,218.059917657971,134,61451,1,0,0,0,9 +"3974",2010,36081,"NY","36","081",2234574,0.514327563105988,160968,0.114473273205542,11.9889608664477,12.6950298898024,13.4995428591052,8.66923076923077,227.654638235319,3246,1425844,1,0,0,0,9 +"3975",2010,36083,"NY","36","083",159342,0.896386389024865,12573,0.13142172183103,9.43930693659318,9.91363588358794,10.8038114908882,7.91538461538462,299.147480728981,293,97945,1,0,0,0,9 +"3976",2010,36085,"NY","36","085",469607,0.79086555353732,31727,0.125722146390492,10.3649233323607,11.0891181626142,11.9022747411922,9.48461538461538,301.420784807836,866,287306,1,0,0,0,9 +"3977",2010,36087,"NY","36","087",312497,0.794634828494354,19226,0.117674729677405,9.86401880862576,10.5540142472594,11.3879289747955,7.61538461538461,228.399820501904,397,173818,1,0,0,0,9 +"3978",2010,36089,"NY","36","089",111821,0.951341876749448,10901,0.124860267749349,9.29660980712836,9.48668339975797,10.3720839420844,10.5076923076923,326.719021641388,218,66724,1,0,0,0,9 +"3979",2010,36091,"NY","36","091",220123,0.958323301063496,12249,0.134547502986966,9.41319957998769,10.3634092797736,11.127160037683,7.02307692307692,237.067203721732,319,134561,1,0,0,0,9 +"3980",2010,36093,"NY","36","093",154867,0.832662865555606,10070,0.125159007406355,9.21731598571261,9.89151618075491,10.7595610795883,7.8,300.39835433945,276,91878,1,0,0,0,9 +"3981",2010,36095,"NY","36","095",32684,0.97175988251132,2291,0.149369722188227,7.7367436824535,8.27333659850449,9.1728461675486,9.08461538461538,317.997640662666,62,19497,1,0,0,0,9 +"3982",2010,36097,"NY","36","097",18341,0.98037184450139,986,0.151791069189248,6.89365635460264,7.7341213033283,8.59858882962023,9.30769230769231,348.591872305293,38,10901,1,0,0,0,9 +"3983",2010,36099,"NY","36","099",35271,0.937228884919622,2469,0.137903660230784,7.81156848934518,8.38320455141292,9.19034172546949,8.38461538461539,275.50782162036,59,21415,1,0,0,0,9 +"3984",2010,36101,"NY","36","101",98969,0.9638775778274,5332,0.138204892441067,8.5814816812986,9.41499403397655,10.2629087221429,9.76923076923077,324.399340792783,187,57645,1,0,0,0,9 +"3985",2010,36103,"NY","36","103",1494337,0.870265542511495,91066,0.120117483539523,11.4193397973396,12.2620984737927,13.0183996635423,7.92307692307692,277.841445893593,2485,894395,1,0,0,0,9 +"3986",2010,36105,"NY","36","105",77480,0.869372741352607,4505,0.140952503871967,8.41294317004244,9.18029345062389,10.0221146762943,9.1,402.072717108517,187,46509,1,0,0,0,9 +"3987",2010,36107,"NY","36","107",51012,0.978926527091665,2512,0.133282364933741,7.82883452758809,8.73681053295389,9.61447125707121,8.13076923076923,300.963081861958,90,29904,1,0,0,0,9 +"3988",2010,36109,"NY","36","109",101743,0.851301809461093,17752,0.111182096065577,9.78425346461243,9.23970498060609,10.3934469836207,6.28461538461538,211.569941625228,137,64754,1,0,0,0,9 +"3989",2010,36111,"NY","36","111",182422,0.902177368957692,12552,0.141408382760851,9.43763529441287,10.0833895178113,10.9244805834911,7.95384615384615,337.517606725548,381,112883,1,0,0,0,9 +"3990",2010,36113,"NY","36","113",65668,0.976487787050009,3442,0.150073094962539,8.14380797677148,9.01833204959268,9.90113478695253,9.20769230769231,309.943600426808,122,39362,1,0,0,0,9 +"3991",2010,36115,"NY","36","115",63359,0.957938098770498,3935,0.135245190107167,8.2776661608515,9.05146186690869,9.80736204043875,8.42307692307692,324.111286851453,125,38567,1,0,0,0,9 +"3992",2010,36117,"NY","36","117",93751,0.951787180936737,4820,0.137022538426257,8.48052920704465,9.43228320271387,10.2329351742204,8.98461538461538,306.402193194646,171,55809,1,0,0,0,9 +"3993",2010,36119,"NY","36","119",950760,0.766826538768985,53532,0.121766797088645,10.8880348849163,11.7925778858829,12.5700384464603,7.51538461538462,227.897684144193,1273,558584,1,0,0,0,9 +"3994",2010,36121,"NY","36","121",42125,0.929305637982196,2418,0.133697329376855,7.79069603117474,8.69851424787661,9.33317728193525,9.60769230769231,369.623655913978,99,26784,1,0,0,0,9 +"3995",2010,36123,"NY","36","123",25376,0.981793820933165,1731,0.138831967213115,7.45645455517621,7.85360481309784,8.88613261817495,7.54615384615385,322.395758704685,45,13958,1,0,0,0,9 +"3996",2010,39001,"OH","39","001",28530,0.987066246056782,1541,0.12968804766912,7.34018683532012,8.2443340478561,9.02099420024526,15.9538461538462,589.593970337953,97,16452,1,0,0,0,9 +"3997",2010,39003,"OH","39","003",106342,0.85556976547366,7646,0.127569539786726,8.94193791425636,9.42213982158974,10.2976894683656,10.7384615384615,369.063949310863,226,61236,1,0,0,0,9 +"3998",2010,39005,"OH","39","005",53317,0.980681583735019,3733,0.128401823058312,8.22496747891458,8.74893963153771,9.64348549585766,11.9153846153846,363.985308229377,110,30221,1,0,0,0,9 +"3999",2010,39007,"OH","39","007",101411,0.947619094575539,5529,0.135646034453856,8.61776224633793,9.47393464889887,10.2728763320616,12.9846153846154,538.016445030961,318,59106,1,0,0,0,9 +"4000",2010,39009,"OH","39","009",65175,0.932596854622171,14258,0.0987188339087073,9.56507343167757,8.7268056084461,9.90892275502607,10.6692307692308,336.382556507429,139,41322,1,0,0,0,9 +"4001",2010,39011,"OH","39","011",45914,0.986365814348565,2278,0.129568323387202,7.73105314400713,8.65834547117212,9.47024006341551,10.0230769230769,368.46549474169,96,26054,1,0,0,0,9 +"4002",2010,39013,"OH","39","013",70337,0.949144831312112,4178,0.147020771428978,8.33758794211651,9.07211225269274,9.90976779049328,11.3230769230769,452.488687782805,192,42432,1,0,0,0,9 +"4003",2010,39015,"OH","39","015",44868,0.983707764999554,2347,0.129691539627351,7.76089319585102,8.68355472863146,9.47998575694181,13.3153846153846,484.344609282636,127,26221,1,0,0,0,9 +"4004",2010,39017,"OH","39","017",369111,0.886722422252385,29210,0.117249282736088,10.2822663953818,10.7915434053955,11.6277976014006,10.0692307692308,349.058359471102,769,220307,1,0,0,0,9 +"4005",2010,39019,"OH","39","019",28859,0.986901833050348,1396,0.147059842683392,7.24136628332232,8.15679704667565,9.02617712030286,13.0230769230769,388.779233207728,65,16719,1,0,0,0,9 +"4006",2010,39021,"OH","39","021",40078,0.96025250761016,2271,0.127825739807376,7.72797554210556,8.58522560180806,9.36494809020262,11.5615384615385,440.45254339753,102,23158,1,0,0,0,9 +"4007",2010,39023,"OH","39","023",138272,0.88870487155751,8644,0.136448449433002,9.06462071762678,9.71878315904038,10.6113755514176,11.1,496.421731680274,394,79368,1,0,0,0,9 +"4008",2010,39025,"OH","39","025",197613,0.970836938865358,10980,0.12756245793546,9.30383071506352,10.210273478787,11.0062246557812,10.4230769230769,349.417777366148,415,118769,1,0,0,0,9 +"4009",2010,39027,"OH","39","027",41922,0.960927436668098,2740,0.128333571871571,7.91571319938212,8.55256033525353,9.43620023078462,17.0230769230769,354.810095960003,88,24802,1,0,0,0,9 +"4010",2010,39029,"OH","39","029",107889,0.96603916988757,5692,0.142210976095802,8.64681695920974,9.54180006677385,10.3403867261338,12.6153846153846,422.495540324852,270,63906,1,0,0,0,9 +"4011",2010,39031,"OH","39","031",36938,0.978612810655693,1960,0.134468568953381,7.58069975222456,8.41670965283791,9.26738211234338,12.6923076923077,383.831682699142,81,21103,1,0,0,0,9 +"4012",2010,39033,"OH","39","033",43754,0.981761667504685,2222,0.135804726425013,7.70616297019958,8.59932602095476,9.433723894495,12.8769230769231,440.066211797004,109,24769,1,0,0,0,9 +"4013",2010,39035,"OH","39","035",1278103,0.659019656475261,78419,0.129498170335255,11.269821523916,11.9690013012373,12.8822186211435,8.57692307692308,402.780733676937,3047,756491,1,0,0,0,9 +"4014",2010,39037,"OH","39","037",52964,0.986726833320746,2641,0.127841552752813,7.87891291229713,8.77955745588373,9.60082719690363,11.2615384615385,338.960070503695,100,29502,1,0,0,0,9 +"4015",2010,39039,"OH","39","039",39083,0.967044495048998,2366,0.132512857252514,7.76895604453833,8.46062283992784,9.32918950581456,12.2076923076923,342.679127725857,77,22470,1,0,0,0,9 +"4016",2010,39041,"OH","39","041",175114,0.912194341971516,7214,0.114685290724899,8.88377886146348,10.3053796182575,10.8762342293545,7.26153846153846,223.440991265489,231,103383,1,0,0,0,9 +"4017",2010,39043,"OH","39","043",76977,0.888499162087377,3983,0.148940592644556,8.28979058318164,9.12902185079859,10.0358745405795,11.3923076923077,410.073545798975,184,44870,1,0,0,0,9 +"4018",2010,39045,"OH","39","045",146408,0.916889787443309,7866,0.122063002021747,8.97030495299176,9.93750243112341,10.6762311873672,9.26153846153846,339.282394497118,292,86064,1,0,0,0,9 +"4019",2010,39047,"OH","39","047",29016,0.961124896608768,1609,0.13003170664461,7.38336814699238,8.23747928861363,9.05286751315162,13.1230769230769,511.053006893273,86,16828,1,0,0,0,9 +"4020",2010,39049,"OH","39","049",1166218,0.724897060412376,102337,0.105685214942661,11.5360265678782,11.9710589216455,12.8359178734199,8.90769230769231,351.952723745759,2580,733053,1,0,0,0,9 +"4021",2010,39051,"OH","39","051",42630,0.983157400891391,2149,0.132230823363828,7.67275789664251,8.59969441292798,9.43332391048903,11.8538461538462,377.297253438273,93,24649,1,0,0,0,9 +"4022",2010,39053,"OH","39","053",31066,0.957091353891714,1992,0.127213030322539,7.59689443814454,8.20521842639541,9.10286651367095,11.8384615384615,494.187679002639,88,17807,1,0,0,0,9 +"4023",2010,39055,"OH","39","055",93381,0.97685824739508,4040,0.146100384446515,8.3039999709552,9.34408424202578,10.1879143322672,6.93076923076923,249.357571143047,131,52535,1,0,0,0,9 +"4024",2010,39057,"OH","39","057",161599,0.882629224190744,15585,0.126727269351914,9.65406419220144,9.8199972420371,10.804055323945,9.58461538461538,291.359092359803,283,97131,1,0,0,0,9 +"4025",2010,39059,"OH","39","059",40152,0.970312811316995,2203,0.137153815501096,7.69757534680234,8.5115774526306,9.3698196865215,12.7692307692308,541.406791406791,125,23088,1,0,0,0,9 +"4026",2010,39061,"OH","39","061",802295,0.705929863703501,59626,0.120837098573467,10.9958469995385,11.486684153765,12.4229002934512,9.87692307692308,390.938210159408,1882,481406,1,0,0,0,9 +"4027",2010,39063,"OH","39","063",74698,0.956357599935741,5308,0.126094406811427,8.5769703954521,9.12074383816443,10.0190458931704,9.10769230769231,326.286452314594,144,44133,1,0,0,0,9 +"4028",2010,39065,"OH","39","065",32126,0.977525991408828,3522,0.115109257299384,8.16678428905615,8.22228507387272,9.14388000527591,11.2153846153846,434.060339745994,81,18661,1,0,0,0,9 +"4029",2010,39067,"OH","39","067",15816,0.968259989883662,801,0.151997976732423,6.68586094706836,7.52456122628536,8.43119947824926,12.5076923076923,415.255163370123,38,9151,1,0,0,0,9 +"4030",2010,39069,"OH","39","069",28170,0.984238551650692,1438,0.127298544550941,7.27100853828099,8.14786712992395,8.98369068133269,13.0692307692308,286.408069236038,46,16061,1,0,0,0,9 +"4031",2010,39071,"OH","39","071",43619,0.973658268185882,2339,0.124853848093721,7.75747876658418,8.6476949994804,9.43922739791746,17.2923076923077,529.186023025651,131,24755,1,0,0,0,9 +"4032",2010,39073,"OH","39","073",29483,0.982328799647254,1517,0.139741545975647,7.32448997934853,8.22977775008189,9.05916858417444,11.7230769230769,426.725901677676,73,17107,1,0,0,0,9 +"4033",2010,39075,"OH","39","075",42471,0.992300628664265,2945,0.0981846436391891,7.98786409608569,8.45233461906774,9.29569203907569,7.70769230769231,230.086052183517,50,21731,1,0,0,0,9 +"4034",2010,39077,"OH","39","077",59566,0.976009804250747,3210,0.12664943088339,8.07402621612406,8.94676537486763,9.7589818764264,13.2461538461538,346.000639665048,119,34393,1,0,0,0,9 +"4035",2010,39079,"OH","39","079",33249,0.981954344491564,1941,0.134530361815393,7.57095858316901,8.37332282099653,9.19705247764925,12.5230769230769,634.433358915324,124,19545,1,0,0,0,9 +"4036",2010,39081,"OH","39","081",69669,0.929753548924199,4578,0.150095451348519,8.42901750051251,9.00417684069666,9.94136120496421,14.4692307692308,583.748252434328,238,40771,1,0,0,0,9 +"4037",2010,39083,"OH","39","083",61087,0.978571545500679,4843,0.12570596035163,8.48528964240323,8.87626525995469,9.78863771085719,9.70769230769231,438.571346672017,153,34886,1,0,0,0,9 +"4038",2010,39085,"OH","39","085",230010,0.947263162471197,11986,0.137967914438503,9.39149458101813,10.2970487561415,11.1435270628985,7.95384615384615,349.399880122217,478,136806,1,0,0,0,9 +"4039",2010,39087,"OH","39","087",62428,0.967194207727302,3426,0.131799833408086,8.13914867888407,9.0267780457461,9.84166533889278,10.3076923076923,566.595500082115,207,36534,1,0,0,0,9 +"4040",2010,39089,"OH","39","089",166725,0.946246813615235,9770,0.126657669815565,9.18707174503683,10.0179762790208,10.8234316029082,9.62307692307692,336.981420208704,331,98225,1,0,0,0,9 +"4041",2010,39091,"OH","39","091",45743,0.964759635354043,2333,0.135037054849922,7.75491027202143,8.65102453904976,9.49566967884437,11.8307692307692,473.754026909229,125,26385,1,0,0,0,9 +"4042",2010,39093,"OH","39","093",301479,0.88405825944759,17238,0.132294455003499,9.75487152820734,10.5984830239537,11.4003389042207,9.17692307692308,369.512153969022,657,177802,1,0,0,0,9 +"4043",2010,39095,"OH","39","095",441447,0.771227350055613,33958,0.124248210997017,10.432879745876,10.9047442376129,11.8111468037295,11.5615384615385,417.866449882618,1100,263242,1,0,0,0,9 +"4044",2010,39097,"OH","39","097",43434,0.919302850301607,2546,0.119307454989179,7.84227877911735,8.8146275553107,9.34285875167633,9.05384615384615,420.664206642066,114,27100,1,0,0,0,9 +"4045",2010,39099,"OH","39","099",238315,0.819914818622412,13818,0.142941065396639,9.53372736904874,10.2490611034037,11.1501893319385,11.7538461538462,490.762959322328,679,138356,1,0,0,0,9 +"4046",2010,39101,"OH","39","101",66459,0.925487894792278,4264,0.131810589987812,8.35796296584568,9.08624998674513,9.81219429408974,10.9846153846154,396.200413426518,161,40636,1,0,0,0,9 +"4047",2010,39103,"OH","39","103",172503,0.97211642696069,7828,0.132426682434508,8.96546232851597,10.1240678214472,10.8544502059416,7.44615384615385,270.439758563926,276,102056,1,0,0,0,9 +"4048",2010,39105,"OH","39","105",23732,0.981881004550818,1289,0.140738243721557,7.16162200293919,8.02027047281924,8.85209276347713,14.6461538461538,527.215730977486,74,14036,1,0,0,0,9 +"4049",2010,39107,"OH","39","107",40791,0.984334779730823,2088,0.12951386335221,7.64396194900253,8.45489216521886,9.3101857069459,8.50769230769231,317.740511915269,72,22660,1,0,0,0,9 +"4050",2010,39109,"OH","39","109",102487,0.956931122971694,5266,0.135285450837667,8.56902634005625,9.49687178267057,10.3117819876545,11.1153846153846,351.189676031725,209,59512,1,0,0,0,9 +"4051",2010,39111,"OH","39","111",14609,0.98829488671367,705,0.152029570812513,6.55819780281227,7.45876269238096,8.32941678393932,12.2769230769231,419.262098706277,35,8348,1,0,0,0,9 +"4052",2010,39113,"OH","39","113",535620,0.755813823232889,36355,0.127920914080878,10.5010870250842,11.0870382377204,12.0012784601569,11.3846153846154,473.592843204339,1495,315672,1,0,0,0,9 +"4053",2010,39115,"OH","39","115",15033,0.948313709838356,752,0.141222643517595,6.62273632394984,7.45760928971561,8.36753241686183,13.3692307692308,433.001755412522,37,8545,1,0,0,0,9 +"4054",2010,39117,"OH","39","117",34790,0.987467663121587,1658,0.130727220465651,7.41336733569524,8.45574322910002,9.22187360778986,11.4461538461538,444.5102978219,90,20247,1,0,0,0,9 +"4055",2010,39119,"OH","39","119",86213,0.941772122533725,5547,0.127092201872107,8.62101252005523,9.29624280097689,10.1511676066952,12.5769230769231,435.445679656459,217,49834,1,0,0,0,9 +"4056",2010,39121,"OH","39","121",14660,0.967326057298772,680,0.189085948158254,6.52209279817015,7.28619171470238,8.16706817834124,16.0076923076923,352.609308885755,30,8508,1,0,0,0,9 +"4057",2010,39123,"OH","39","123",41359,0.982156241688629,1827,0.162310500737445,7.51043055637801,8.46737249643228,9.39615581802439,12.4307692307692,340.687190992563,82,24069,1,0,0,0,9 +"4058",2010,39125,"OH","39","125",19558,0.977707332038041,1021,0.136210246446467,6.92853781816467,7.78322401633604,8.63194942871443,12.5846153846154,442.047564317921,50,11311,1,0,0,0,9 +"4059",2010,39127,"OH","39","127",36037,0.989261037267253,1954,0.128756555762133,7.57763383260273,8.46821300919452,9.25023393563786,13.4307692307692,418.768440087561,88,21014,1,0,0,0,9 +"4060",2010,39129,"OH","39","129",55737,0.955487378222725,3302,0.120889175951343,8.10228362448007,9.00109972583097,9.64153820197995,10.6230769230769,410.562381852552,139,33856,1,0,0,0,9 +"4061",2010,39131,"OH","39","131",28606,0.97661329790953,1638,0.126511920576103,7.40123126441302,8.22228507387272,9.02244330084904,14.8384615384615,487.276664861938,81,16623,1,0,0,0,9 +"4062",2010,39133,"OH","39","133",161397,0.933926900747845,17208,0.12420305210134,9.75312967094757,9.87642463298644,10.8236706991256,10.3538461538462,296.492683815345,293,98822,1,0,0,0,9 +"4063",2010,39135,"OH","39","135",42172,0.985179740111923,2213,0.138504220810016,7.70210434005105,8.59489469908009,9.42294862137501,11.0307692307692,439.345862826458,108,24582,1,0,0,0,9 +"4064",2010,39137,"OH","39","137",34476,0.98767258382643,1786,0.122229957071586,7.48773376143644,8.32675881451173,9.16461052027001,9.33846153846154,231.196054254007,45,19464,1,0,0,0,9 +"4065",2010,39139,"OH","39","139",124156,0.887512484293953,7245,0.134057153903154,8.88806685475478,9.65117262392164,10.4554455226583,12.1692307692308,439.083961086184,320,72879,1,0,0,0,9 +"4066",2010,39141,"OH","39","141",78102,0.920206908913984,4374,0.126962177665105,8.38343320123671,9.32116592706507,9.98589668877685,11.9538461538462,502.335236118319,242,48175,1,0,0,0,9 +"4067",2010,39143,"OH","39","143",60886,0.953995992510594,3203,0.132854843477975,8.07184314960916,8.9334003960563,9.7761086232063,10.8076923076923,472.967232150443,167,35309,1,0,0,0,9 +"4068",2010,39145,"OH","39","145",79672,0.956609599357365,5386,0.126343006325936,8.59155827337154,9.22463767667701,10.0530706740756,13.3615384615385,581.295581295581,271,46620,1,0,0,0,9 +"4069",2010,39147,"OH","39","147",56619,0.95840618873523,4000,0.131740228545188,8.29404964010203,8.77770959579525,9.68452275804334,11.9461538461538,350.300039599135,115,32829,1,0,0,0,9 +"4070",2010,39149,"OH","39","149",49347,0.959754392364278,2493,0.123654933430604,7.82124208352356,8.77012852753818,9.54481060592672,12.4692307692308,339.318535274989,96,28292,1,0,0,0,9 +"4071",2010,39151,"OH","39","151",375348,0.901126421347656,22345,0.136374777539776,10.0143578613676,10.7350261715422,11.6222999140081,11.3615384615385,376.045015339885,820,218059,1,0,0,0,9 +"4072",2010,39153,"OH","39","153",541659,0.819185133081884,34278,0.133305271397687,10.4422590279525,11.1413399082957,12.0179764475435,10.6230769230769,396.629421569233,1285,323980,1,0,0,0,9 +"4073",2010,39155,"OH","39","155",209838,0.901443017947178,11605,0.144649682135743,9.35919131870854,10.1467082032795,11.0339860300666,13.2384615384615,435.274444225851,531,121992,1,0,0,0,9 +"4074",2010,39157,"OH","39","157",92545,0.978151169701226,4911,0.13515587011724,8.49923286603924,9.32936707839782,10.1932798967973,11.3076923076923,352.799879897913,188,53288,1,0,0,0,9 +"4075",2010,39159,"OH","39","159",52462,0.940128092714727,2606,0.104227822042621,7.86557175768479,9.07383312732152,9.76094424575059,8.44615384615385,287.958934551942,92,31949,1,0,0,0,9 +"4076",2010,39161,"OH","39","161",28679,0.98078733568116,1396,0.130374141357788,7.24136628332232,8.14031554015999,8.99986622376264,12.0846153846154,284.583024003959,46,16164,1,0,0,0,9 +"4077",2010,39163,"OH","39","163",13405,0.98769116001492,694,0.133308466989929,6.5424719605068,7.50108212425987,8.26487826280175,13.5076923076923,420.596482283966,33,7846,1,0,0,0,9 +"4078",2010,39165,"OH","39","165",213445,0.91906111644686,9850,0.1124317739933,9.19522673416613,10.4243922117438,11.0443288454219,9.06153846153846,270.607169906589,343,126752,1,0,0,0,9 +"4079",2010,39167,"OH","39","167",61714,0.975775350811809,3731,0.144975208218557,8.22443157322116,8.91476052739726,9.8204319773988,11.4384615384615,385.940730530668,140,36275,1,0,0,0,9 +"4080",2010,39169,"OH","39","169",114409,0.969163265127743,7460,0.126607172512652,8.91731069319781,9.51642703610407,10.3937838850496,9.34615384615385,350.488839697473,228,65052,1,0,0,0,9 +"4081",2010,39171,"OH","39","171",37510,0.97741935483871,1960,0.129912023460411,7.58069975222456,8.43944784279138,9.27312736007495,13.1692307692308,331.308669243512,72,21732,1,0,0,0,9 +"4082",2010,39173,"OH","39","173",125956,0.950308044078885,14406,0.121201054336435,9.57540006544931,9.60555310362,10.5655567775252,9.93076923076923,281.96960994204,216,76604,1,0,0,0,9 +"4083",2010,39175,"OH","39","175",22587,0.986009651569487,1129,0.130871740381635,7.02908756414966,7.96589273508453,8.7668618216698,11.1384615384615,379.697791553661,49,12905,1,0,0,0,9 +"4084",2010,40001,"OK","40","001",22760,0.48914762741652,1274,0.115553602811951,7.14991683613211,7.9820748750812,8.75668242126653,10.0384615384615,550.271205093939,70,12721,0,0,0,0,9 +"4085",2010,40003,"OK","40","003",5627,0.916118713346366,216,0.132930513595166,5.37527840768417,6.75693238924755,7.09257371597468,4.70769230769231,411.522633744856,14,3402,0,0,0,0,9 +"4086",2010,40005,"OK","40","005",14214,0.784437878148304,828,0.129238778668918,6.71901315438526,7.4593388952203,8.24590926477409,9.63076923076923,366.434591425431,30,8187,0,0,0,0,9 +"4087",2010,40007,"OK","40","007",5631,0.964659918309359,251,0.137986148108684,5.52545293913178,6.48616078894409,7.35115822643069,3.81538461538462,347.771103382864,11,3163,0,0,0,0,9 +"4088",2010,40009,"OK","40","009",22056,0.90936706565107,1580,0.109584693507436,7.36518012602101,7.93020620668468,8.66819606495276,5.56923076923077,477.754553598089,64,13396,0,0,0,0,9 +"4089",2010,40011,"OK","40","011",9911,0.844112602159217,504,0.130158409847644,6.22257626807137,6.97541392745595,7.88269220628903,6.18461538461538,473.356775764133,35,7394,0,0,0,0,9 +"4090",2010,40013,"OK","40","013",42579,0.813617041264473,3515,0.120129641372508,8.16479480424477,8.50815244676409,9.42883312507496,5.93846153846154,459.713499979477,112,24363,0,0,0,0,9 +"4091",2010,40015,"OK","40","015",29711,0.678132678132678,1748,0.118508296590488,7.46622755621548,8.18952211074809,8.95854011141217,6.66923076923077,511.373655439958,87,17013,0,0,0,0,9 +"4092",2010,40017,"OK","40","017",116360,0.877921966311447,6308,0.114446545204538,8.74957394808293,9.70430463866676,10.4548983427808,4.96153846153846,350.009401078955,242,69141,0,0,0,0,9 +"4093",2010,40019,"OK","40","019",47810,0.794833716795649,2531,0.123384229240745,7.83636976054512,8.68084148294457,9.53010233789137,6.83846153846154,579.378551922651,157,27098,0,0,0,0,9 +"4094",2010,40021,"OK","40","021",47126,0.588019352374485,4532,0.117217671773543,8.4189186221479,8.56750600528983,9.5257348829945,7.36923076923077,553.742344787121,151,27269,0,0,0,0,9 +"4095",2010,40023,"OK","40","023",15234,0.685899960614415,821,0.136864907443876,6.71052310945243,7.43779512167193,8.3813734682737,8.76923076923077,619.268786471359,52,8397,0,0,0,0,9 +"4096",2010,40027,"OK","40","027",257094,0.846826452581546,27205,0.10827168273083,10.21115605892,10.3798148948945,11.2867648669443,5.08461538461538,314.390867693843,504,160310,0,0,0,0,9 +"4097",2010,40029,"OK","40","029",5911,0.788360683471494,271,0.135340889866351,5.6021188208797,6.46146817635372,7.39326309476384,8.76923076923077,811.232449297972,26,3205,0,0,0,0,9 +"4098",2010,40031,"OK","40","031",125401,0.697482476216298,12277,0.0936276425227869,9.41548287218084,9.64004270444839,10.4955152116955,5.53846153846154,365.262962864932,276,75562,0,0,0,0,9 +"4099",2010,40033,"OK","40","033",6167,0.848224420301605,295,0.132155018647641,5.68697535633982,6.63200177739563,7.4593388952203,6.42307692307692,551.20394545982,19,3447,0,0,0,0,9 +"4100",2010,40035,"OK","40","035",15057,0.722056186491333,829,0.127913927077107,6.7202201551353,7.51752085060303,8.30967689598773,6.42307692307692,510.440835266821,44,8620,0,0,0,0,9 +"4101",2010,40037,"OK","40","037",70243,0.846248024714206,3753,0.133394074854434,8.23031079913502,9.07199742235444,9.91857318995417,8.22307692307692,593.582356447447,239,40264,0,0,0,0,9 +"4102",2010,40039,"OK","40","039",27583,0.87097125040786,3527,0.104339629481927,8.16820293023605,7.90100705199242,8.97966855424118,4.94615384615385,391.86415376003,63,16077,0,0,0,0,9 +"4103",2010,40041,"OK","40","041",41564,0.721754402848619,1967,0.151717832739871,7.58426481838906,8.41913925094085,9.35478697634121,7.66923076923077,555.139445741728,126,22697,0,0,0,0,9 +"4104",2010,40047,"OK","40","047",60771,0.900840861595169,3983,0.119152227213638,8.28979058318164,8.82423661734664,9.75742077640134,5.30769230769231,462.338109869914,161,34823,0,0,0,0,9 +"4105",2010,40049,"OK","40","049",27576,0.866659413983174,1480,0.125471424427038,7.29979736675816,8.11611843160937,8.96622851422578,7.23076923076923,719.517728657548,111,15427,0,0,0,0,9 +"4106",2010,40051,"OK","40","051",52434,0.897280390586261,3124,0.125052446885609,8.04686951095958,8.79072562826358,9.64756251169754,6.22307692307692,440.456769983687,135,30650,0,0,0,0,9 +"4107",2010,40055,"OK","40","055",6211,0.880212526163259,398,0.114152310417002,5.98645200528444,6.71659477352098,7.23561914106675,7.36153846153846,447.250723493817,17,3801,0,0,0,0,9 +"4108",2010,40061,"OK","40","061",12779,0.795915173331247,694,0.132952500195633,6.5424719605068,7.30518821539304,8.16593213732158,9.38461538461539,616.31073527304,43,6977,0,0,0,0,9 +"4109",2010,40063,"OK","40","063",14027,0.726242247094888,763,0.128110073429814,6.63725803128446,7.46965417293213,8.14960173573616,10.4769230769231,763.264803643974,62,8123,0,0,0,0,9 +"4110",2010,40065,"OK","40","065",26485,0.863054559184444,2063,0.11066641495186,7.63191651307125,8.06965530688617,8.93958096672031,5.7,437.45103160094,67,15316,0,0,0,0,9 +"4111",2010,40067,"OK","40","067",6436,0.906463642013673,331,0.136264760720945,5.80211837537706,6.55535689181067,7.45876269238096,7.22307692307692,740.318906605923,26,3512,0,0,0,0,9 +"4112",2010,40069,"OK","40","069",11003,0.781059710987912,686,0.131146051076979,6.53087762772588,7.15226885603254,8.03980234373648,9.93846153846154,884.520884520885,54,6105,0,0,0,0,9 +"4113",2010,40071,"OK","40","071",46428,0.850865856810545,2607,0.127638494012234,7.8659554139335,8.51197962436335,9.44699227331519,8.86923076923077,584.176272249667,149,25506,0,0,0,0,9 +"4114",2010,40073,"OK","40","073",15076,0.940766781639692,747,0.117338816662245,6.61606518513282,7.50878717063428,8.34426735626264,4.87692307692308,357.015351660121,30,8403,0,0,0,0,9 +"4115",2010,40075,"OK","40","075",9442,0.862423215420462,483,0.1383181529337,6.18001665365257,6.93244789157251,7.86288203464149,5.78461538461538,795.303919712176,42,5281,0,0,0,0,9 +"4116",2010,40077,"OK","40","077",11158,0.745205233912888,708,0.127262950349525,6.56244409369372,7.12286665859908,8.02649693894541,9.66923076923077,573.112821352546,35,6107,0,0,0,0,9 +"4117",2010,40079,"OK","40","079",50527,0.821184713123676,3080,0.128149306311477,8.03268487596762,8.71850004812127,9.5584588132318,8.97692307692308,620.88102670829,179,28830,0,0,0,0,9 +"4118",2010,40081,"OK","40","081",34355,0.893931014408383,1734,0.13278998690147,7.45818615734049,8.33639048059155,9.18809476302886,6.26153846153846,504.374678332476,98,19430,0,0,0,0,9 +"4119",2010,40083,"OK","40","083",42045,0.854156261148769,2751,0.126697585919848,7.91971976092457,8.54597499284169,9.42794863179171,5.43846153846154,391.220195198287,95,24283,0,0,0,0,9 +"4120",2010,40085,"OK","40","085",9411,0.88258420996706,485,0.136754861332483,6.18414889093748,7.03790596344718,7.8811822022271,5.49230769230769,489.549990585577,26,5311,0,0,0,0,9 +"4121",2010,40087,"OK","40","087",34737,0.906842847684026,1621,0.121657022771109,7.39079852173568,8.46062283992784,9.22984883836423,5.37692307692308,441.501103752759,88,19932,0,0,0,0,9 +"4122",2010,40089,"OK","40","089",33204,0.720214431996145,1835,0.128297795446332,7.51479976048867,8.3150770072941,9.16408698745872,10.9923076923077,632.193224185443,117,18507,0,0,0,0,9 +"4123",2010,40091,"OK","40","091",20267,0.744165392016579,892,0.153106034440223,6.79346613258001,7.6685611080159,8.64347335732657,10.5,844.564240790656,94,11130,0,0,0,0,9 +"4124",2010,40093,"OK","40","093",7519,0.95983508445272,362,0.135656337278893,5.89164421182577,6.66949808985788,7.629489916394,4.81538461538462,504.080652904465,21,4166,0,0,0,0,9 +"4125",2010,40095,"OK","40","095",15838,0.853769415330218,769,0.135875741886602,6.64509096950564,7.4599147662411,8.36217546914963,6.9,524.781341107872,45,8575,0,0,0,0,9 +"4126",2010,40097,"OK","40","097",41314,0.738103306385245,2168,0.129108776685869,7.68156036255954,8.50815244676409,9.35962207469194,8.46153846153846,621.225194132873,144,23180,0,0,0,0,9 +"4127",2010,40099,"OK","40","099",13526,0.829365666124501,679,0.134851397308887,6.5206211275587,7.37588214821501,8.24301946898925,5.94615384615385,686.106346483705,52,7579,0,0,0,0,9 +"4128",2010,40101,"OK","40","101",71121,0.656079076503424,4520,0.12397182266841,8.41626727282628,9.04298624230401,9.9446294958673,7.9,661.314331730886,271,40979,0,0,0,0,9 +"4129",2010,40103,"OK","40","103",11565,0.871249459576308,538,0.128231733679204,6.28785856016178,7.27100853828099,8.0805469658245,6.51538461538462,322.8285933897,21,6505,0,0,0,0,9 +"4130",2010,40105,"OK","40","105",10524,0.744298745724059,515,0.131508931965032,6.24416690066374,7.08757370555797,7.99023818572036,8.86923076923077,393.835616438356,23,5840,0,0,0,0,9 +"4131",2010,40107,"OK","40","107",12231,0.67909410514267,646,0.123211511732483,6.4707995037826,7.33693691370762,8.03947991910045,9.37692307692308,640.478223740393,45,7026,0,0,0,0,9 +"4132",2010,40109,"OK","40","109",720779,0.745389363452598,54946,0.112038502786568,10.9141061637336,11.396526471086,12.2989936097944,5.91538461538462,452.014351281712,1949,431181,0,0,0,0,9 +"4133",2010,40111,"OK","40","111",40082,0.702709445636445,2569,0.12691482460955,7.85127199710988,8.44419229853175,9.33750151759286,9.4,612.897495114585,138,22516,0,0,0,0,9 +"4134",2010,40113,"OK","40","113",47487,0.706488091477668,2317,0.140606902941858,7.74802852443238,8.63675242647388,9.51111140896968,7.41538461538462,502.311360244604,138,27473,0,0,0,0,9 +"4135",2010,40115,"OK","40","115",31860,0.750659133709981,1973,0.124231010671689,7.58731050602262,8.21256839823415,9.09009179938001,7.75384615384615,534.3599172604,93,17404,0,0,0,0,9 +"4136",2010,40117,"OK","40","117",16588,0.845249578008199,806,0.138111888111888,6.69208374250663,7.63433723562832,8.45148064805086,8.76153846153846,673.724735322425,63,9351,0,0,0,0,9 +"4137",2010,40119,"OK","40","119",77420,0.854766210281581,15465,0.0903254972875226,9.64633468511917,8.89850220964664,10.0684509917839,5.5,256.003901011825,126,49218,0,0,0,0,9 +"4138",2010,40121,"OK","40","121",45799,0.785082643725846,2614,0.135002947662613,7.86863689418417,8.59895749321888,9.43460329655831,7.83846153846154,514.979513588693,137,26603,0,0,0,0,9 +"4139",2010,40123,"OK","40","123",37594,0.754349098260361,3471,0.115284353886258,8.15219801586179,8.33062262033287,9.31533081916712,5.93076923076923,565.959600607371,123,21733,0,0,0,0,9 +"4140",2010,40125,"OK","40","125",69653,0.805119664623204,4858,0.118429931230528,8.48838210956212,9.04958459309679,9.95489334059603,6.68461538461538,564.121850319669,225,39885,0,0,0,0,9 +"4141",2010,40127,"OK","40","127",11593,0.786077805572328,574,0.140170792719745,6.35262939631957,7.15148546390474,8.06965530688617,9.44615384615385,726.124704025257,46,6335,0,0,0,0,9 +"4142",2010,40131,"OK","40","131",87016,0.816585455548405,5015,0.119920474395513,8.52018870039604,9.35452729228868,10.1436062080563,6.6,351.010151373128,176,50141,0,0,0,0,9 +"4143",2010,40133,"OK","40","133",25487,0.726958841762467,1434,0.128182995252482,7.26822302115957,7.98548435673382,8.88086360986736,9.18461538461538,860.719874804382,121,14058,0,0,0,0,9 +"4144",2010,40135,"OK","40","135",42513,0.733399195540188,2296,0.126126126126126,7.73892375743946,8.61667646990119,9.41058370340406,9.13076923076923,611.913582816468,147,24023,0,0,0,0,9 +"4145",2010,40137,"OK","40","137",45105,0.903070613014078,2358,0.131227136681077,7.76556908109732,8.54071438645758,9.46039845583127,7.48461538461538,588.142417304808,149,25334,0,0,0,0,9 +"4146",2010,40139,"OK","40","139",20800,0.932740384615385,1787,0.0991346153846154,7.48829351515943,7.86940171257709,8.63621989783788,4.66153846153846,294.960391033204,35,11866,0,0,0,0,9 +"4147",2010,40141,"OK","40","141",7983,0.860077665038206,410,0.126644118752349,6.01615715969835,6.81563999007433,7.65302041380419,5.97692307692308,546.946216955333,24,4388,0,0,0,0,9 +"4148",2010,40143,"OK","40","143",605024,0.776160945681494,42109,0.113704580314169,10.6480167735456,11.2725340202465,12.1197192338521,6.76923076923077,425.74728241978,1531,359603,0,0,0,0,9 +"4149",2010,40145,"OK","40","145",73428,0.818257340524051,3662,0.126518494307349,8.20576472523446,9.19634286233233,9.99556524073704,6.50769230769231,438.298371030118,187,42665,0,0,0,0,9 +"4150",2010,40147,"OK","40","147",51071,0.83219439603689,2874,0.131131170331499,7.96346006663897,8.66699155650463,9.60548574767749,6.44615384615385,433.354302089886,124,28614,0,0,0,0,9 +"4151",2010,40149,"OK","40","149",11544,0.937196812196812,600,0.118416493416493,6.39692965521615,7.13329595489607,8.06369263426952,5.85384615384615,470.66206463759,30,6374,0,0,0,0,9 +"4152",2010,40151,"OK","40","151",8904,0.922282120395328,1224,0.110849056603774,7.10987946307227,6.73101810048208,7.75662333453886,4.06923076923077,343.380389164441,18,5242,0,0,0,0,9 +"4153",2010,40153,"OK","40","153",19996,0.93618723744749,1236,0.110122024404881,7.11963563801764,7.81480342948936,8.58578598288185,6.63846153846154,528.745279060008,63,11915,0,0,0,0,9 +"4154",2010,41001,"OR","41","001",16116,0.971208736659221,680,0.168217920079424,6.52209279817015,7.41336733569524,8.38867776918081,10.3692307692308,577.585249361324,52,9003,1,0,0,0,9 +"4155",2010,41003,"OR","41","003",85577,0.913796931418489,13962,0.125571123082137,9.54409463253035,9.05473863988161,10.1893053883782,7.16923076923077,190.187787358975,103,54157,1,0,0,0,9 +"4156",2010,41005,"OR","41","005",376799,0.928704694014581,19961,0.144671296898346,9.90153564881088,10.8147456418822,11.6514692744183,10.1461538461538,279.206206153139,632,226356,1,0,0,0,9 +"4157",2010,41007,"OR","41","007",37097,0.956276787880422,2313,0.16704854840014,7.74630066223144,8.31556648356428,9.31352852977235,10.0923076923077,390.48473967684,87,22280,1,0,0,0,9 +"4158",2010,41009,"OR","41","009",49353,0.957793852450712,2425,0.15036573257958,7.79358680337158,8.78691493849102,9.60669746105362,12.9923076923077,384.797137649362,114,29626,1,0,0,0,9 +"4159",2010,41011,"OR","41","011",63010,0.941358514521505,3305,0.166671956832249,8.10319175228579,8.75258146914688,9.8072519446553,12.8076923076923,591.223249229744,213,36027,1,0,0,0,9 +"4160",2010,41013,"OR","41","013",20882,0.970117804807969,889,0.162292883823389,6.7900972355139,7.73236922228439,8.69450220638665,16.0692307692308,416.38341264446,49,11768,1,0,0,0,9 +"4161",2010,41015,"OR","41","015",22378,0.957145410671195,817,0.196308874787738,6.70563909486,7.58731050602262,8.73745258755058,12.7384615384615,540.850610505613,66,12203,1,0,0,0,9 +"4162",2010,41017,"OR","41","017",157744,0.966141342935389,8288,0.142813672786287,9.02256396449926,9.96029312635758,10.7793103938545,13.9538461538462,303.440400921951,287,94582,1,0,0,0,9 +"4163",2010,41019,"OR","41","019",107637,0.956501946356736,5586,0.16027945780726,8.62801874650512,9.32687818822413,10.3285591902832,14.1,476.426799007444,288,60450,1,0,0,0,9 +"4164",2010,41023,"OR","41","023",7465,0.972270596115204,269,0.182585398526457,5.59471137960184,6.59578051396131,7.6425241342329,13.8153846153846,340.549744587692,14,4111,1,0,0,0,9 +"4165",2010,41025,"OR","41","025",7403,0.947183574226665,321,0.159935161421046,5.77144112313002,6.67582322163485,7.64204440287326,14.3538461538462,574.162679425837,24,4180,1,0,0,0,9 +"4166",2010,41027,"OR","41","027",22447,0.959682808393104,1163,0.121931661246492,7.05875815251866,8.0452677166078,8.77863395266279,8.40769230769231,166.9449081803,22,13178,1,0,0,0,9 +"4167",2010,41029,"OR","41","029",203357,0.951523675113225,12241,0.149421952526837,9.41254625207551,10.0471982102024,11.0037484814498,12.5615384615385,386.267551827767,455,117794,1,0,0,0,9 +"4168",2010,41031,"OR","41","031",21662,0.787369587295725,1231,0.136460160649986,7.11558212618445,7.89170465933011,8.67488046725183,13.8076923076923,373.346319292265,46,12321,1,0,0,0,9 +"4169",2010,41033,"OR","41","033",82880,0.959531853281853,3924,0.162765444015444,8.27486682068525,9.0441677169216,10.0607904019099,14.1384615384615,481.064932782708,219,45524,1,0,0,0,9 +"4170",2010,41035,"OR","41","035",66323,0.92084194020174,4289,0.15103357809508,8.36380888451688,8.93379604393486,9.86188400268105,13.0230769230769,459.758104542724,176,38281,1,0,0,0,9 +"4171",2010,41037,"OR","41","037",7875,0.950349206349206,328,0.171047619047619,5.79301360838414,6.84587987526405,7.66058546170326,13.6384615384615,539.84020729864,25,4631,1,0,0,0,9 +"4172",2010,41039,"OR","41","039",351948,0.934439178515008,31636,0.142952936229216,10.3620509916393,10.6130984591267,11.5983873087197,11.1230769230769,322.516461295711,697,216113,1,0,0,0,9 +"4173",2010,41041,"OR","41","041",45997,0.929451920777442,2120,0.194338761223558,7.65917136766606,8.422882511945,9.54466745225101,11.1384615384615,570.860341779611,155,27152,1,0,0,0,9 +"4174",2010,41043,"OR","41","043",116887,0.957668517457031,6934,0.135917595626545,8.84419212624497,9.55824698622306,10.4368180316422,12.9384615384615,379.596678529063,256,67440,1,0,0,0,9 +"4175",2010,41045,"OR","41","045",31349,0.94050846916967,2138,0.114102523206482,7.66762609158499,8.24380842366528,8.92145757894788,9.73846153846154,368.480725623583,65,17640,1,0,0,0,9 +"4176",2010,41047,"OR","41","047",315948,0.921145251750288,21474,0.117728233759986,9.97459817999408,10.5851945429535,11.4099066498348,11.2307692307692,335.863763543115,611,181919,1,0,0,0,9 +"4177",2010,41049,"OR","41","049",11207,0.955741946997412,594,0.130632640314089,6.38687931936265,7.23489842031483,8.01763715990848,9.42307692307692,256.369171607114,16,6241,1,0,0,0,9 +"4178",2010,41051,"OR","41","051",737320,0.833354581457169,53145,0.120187978082786,10.8807793059677,11.6368142668847,12.4082662716536,9.78461538461539,302.423065126265,1479,489050,1,0,0,0,9 +"4179",2010,41053,"OR","41","053",75540,0.932141911570029,6074,0.129772306063013,8.71177264560569,9.07348918922699,10.0044182711146,9.82307692307692,292.784942488672,126,43035,1,0,0,0,9 +"4180",2010,41057,"OR","41","057",25243,0.964505011290259,1108,0.176048805609476,7.01031186730723,7.90248743716286,8.87164566750187,10.5461538461538,346.76468548443,50,14419,1,0,0,0,9 +"4181",2010,41059,"OR","41","059",76093,0.925761896626497,4917,0.121022958747848,8.50045386741194,9.17429860062892,9.92201485715001,10.4153846153846,394.670803485879,173,43834,1,0,0,0,9 +"4182",2010,41061,"OR","41","061",25725,0.956734693877551,1984,0.145578231292517,7.59287028784482,7.85049318087114,8.91435727448502,10.4230769230769,346.396794131631,51,14723,1,0,0,0,9 +"4183",2010,41063,"OR","41","063",7012,0.979035938391329,266,0.190530519110097,5.5834963087817,6.43294009273918,7.61579107203583,13.0384615384615,303.79746835443,12,3950,1,0,0,0,9 +"4184",2010,41065,"OR","41","065",25282,0.923502887429792,1390,0.149790364686338,7.23705902612474,7.94378269245863,8.87640491500694,9.83846153846154,419.991600167997,60,14286,1,0,0,0,9 +"4185",2010,41067,"OR","41","067",531652,0.857310797288452,31618,0.110728446427362,10.3614818576561,11.3056060490029,12.0247725668498,9.01538461538462,198.723059787339,653,328598,1,0,0,0,9 +"4186",2010,41071,"OR","41","071",99298,0.939837660375838,6903,0.121714435336059,8.83971137870348,9.45548022116229,10.2531932677181,10.5,303.429621666609,175,57674,1,0,0,0,9 +"4187",2010,44001,"RI","44","001",49817,0.970130678282514,3894,0.135295180360118,8.26719218593215,8.65851912750667,9.61580548008435,10.1076923076923,198.31093787397,58,29247,1,0,0,0,9 +"4188",2010,44003,"RI","44","003",166029,0.952917863746695,9106,0.138156587102253,9.11668881589473,10.0268991624513,10.8664328364493,11.5461538461538,352.416007518208,360,102152,1,0,0,0,9 +"4189",2010,44005,"RI","44","005",83186,0.926994927030991,5429,0.1465270598418,8.59951023390545,9.26823185039196,10.1406917874987,10.3769230769231,270.297327059766,135,49945,1,0,0,0,9 +"4190",2010,44007,"RI","44","007",627868,0.824662190141877,53630,0.113420336758682,10.889863891977,11.3168740840279,12.1816569945824,12.2230769230769,308.199954884773,1175,381246,1,0,0,0,9 +"4191",2010,44009,"RI","44","009",127094,0.953129179977025,10741,0.14608872173352,9.28182347359805,9.60427256427062,10.5682609784082,10.4692307692308,302.601587675863,231,76338,1,0,0,0,9 +"4192",2010,45001,"SC","45","001",25338,0.704751756255427,1585,0.147328123766675,7.36833968631138,8.03008409426756,8.91865027812686,13.7923076923077,453.234445817882,66,14562,0,0,0,0,9 +"4193",2010,45003,"SC","45","003",160558,0.729599272537027,10144,0.134437399569003,9.22463767667701,9.87225485010503,10.7933932404656,9.41538461538462,402.267130848264,379,94216,0,0,0,0,9 +"4194",2010,45005,"SC","45","005",10354,0.252076492176936,686,0.141780954220591,6.53087762772588,7.22037383672395,7.95752740223077,19.3230769230769,606.437568029855,39,6431,0,0,0,0,9 +"4195",2010,45007,"SC","45","007",187095,0.820641919880275,10849,0.129768299526978,9.29182818882245,10.1193244753346,10.9380412049035,11.7384615384615,509.25840964563,555,108982,0,0,0,0,9 +"4196",2010,45009,"SC","45","009",15945,0.370460959548448,1342,0.140169332079022,7.20191631753163,7.4301141385618,8.45786772533142,16.3384615384615,690.653893282834,62,8977,0,0,0,0,9 +"4197",2010,45011,"SC","45","011",22639,0.537612085339458,1335,0.134104863289015,7.19668657083435,7.90137735379262,8.83025057019925,16.8384615384615,591.98892903821,77,13007,0,0,0,0,9 +"4198",2010,45013,"SC","45","013",162843,0.777202581627703,11715,0.136677658849321,9.3686253509419,9.7715548812753,10.7369400061013,8.77692307692308,271.721047845086,245,90166,0,0,0,0,9 +"4199",2010,45015,"SC","45","015",179492,0.70260513003365,13480,0.113743230896084,9.5089623844663,10.1063875793733,10.9254707449683,10.1615384615385,376.402395122262,413,109723,0,0,0,0,9 +"4200",2010,45017,"SC","45","017",15098,0.558285865677573,802,0.158299112465227,6.68710860786651,7.49554194388426,8.43620003220671,12.4769230769231,532.445923460898,48,9015,0,0,0,0,9 +"4201",2010,45019,"SC","45","019",350998,0.673693297397706,31578,0.123738596801121,10.3602159545818,10.6736420694569,11.6403331458867,8.93076923076923,366.91368276634,813,221578,0,0,0,0,9 +"4202",2010,45021,"SC","45","021",55534,0.77912630100479,3715,0.127417437965931,8.22013395715186,8.94389780251682,9.72549660510262,15.9615384615385,487.221915793344,159,32634,0,0,0,0,9 +"4203",2010,45023,"SC","45","023",33163,0.609715646955945,1970,0.136748786297983,7.58578882173203,8.3742461820963,9.21870528830781,19.4923076923077,543.478260869565,106,19504,0,0,0,0,9 +"4204",2010,45025,"SC","45","025",46612,0.652557281386767,2754,0.134621985754741,7.9208096792886,8.75746914147075,9.54395137631636,14.5692307692308,544.227559683622,150,27562,0,0,0,0,9 +"4205",2010,45027,"SC","45","027",34947,0.483389132114345,2537,0.147308781869688,7.83873755959928,8.24617155985756,9.22493337427908,14.2,608.941036684984,123,20199,0,0,0,0,9 +"4206",2010,45029,"SC","45","029",38886,0.587332201820707,2242,0.141439078331533,7.7151236036321,8.44805745258138,9.36142922633904,13.9461538461538,676.159770732581,151,22332,0,0,0,0,9 +"4207",2010,45031,"SC","45","031",68513,0.569614525710449,4054,0.141097309999562,8.30745932701195,9.07692325853583,9.95650685651176,13.3923076923077,657.255956382105,264,40167,0,0,0,0,9 +"4208",2010,45033,"SC","45","033",32080,0.495105985037406,2013,0.126122194513716,7.60738142563979,8.26539293085222,9.18522767116111,16.1307692307692,651.925897756288,120,18407,0,0,0,0,9 +"4209",2010,45035,"SC","45","035",137005,0.703682347359585,8153,0.113229444180869,9.00614123666291,9.89247716001608,10.6581295644057,9.66153846153846,362.742233907878,298,82152,0,0,0,0,9 +"4210",2010,45037,"SC","45","037",26965,0.611830150194697,1590,0.140849249026516,7.37148929521428,8.24538446812075,8.90041269057708,10.1,347.918386602194,59,16958,0,0,0,0,9 +"4211",2010,45039,"SC","45","039",23860,0.396227996647108,1386,0.155238893545683,7.23417717974985,7.97108575350561,8.91664022719884,14.8153846153846,696.039535045591,100,14367,0,0,0,0,9 +"4212",2010,45041,"SC","45","041",137161,0.561763183412194,9639,0.128965230641363,9.17357264778397,9.78380270959015,10.6802173218373,11.4769230769231,592.579869460666,483,81508,0,0,0,0,9 +"4213",2010,45043,"SC","45","043",60343,0.651243723381337,2855,0.165387866032514,7.95682712209011,8.81877816903701,9.80427476746454,14.7076923076923,522.447533870539,177,33879,0,0,0,0,9 +"4214",2010,45045,"SC","45","045",452688,0.783497684939738,29969,0.118306648287562,10.307918793054,11.050731262616,11.8476318576921,9.77692307692308,371.23703981692,1009,271794,0,0,0,0,9 +"4215",2010,45047,"SC","45","047",69759,0.663312260783555,5073,0.121690391204002,8.53168763756669,9.08136999067922,9.96936892164964,12.0307692307692,442.786069651741,178,40200,0,0,0,0,9 +"4216",2010,45049,"SC","45","049",21074,0.441444433899592,1251,0.128309765587928,7.13169851046691,7.9728107841214,8.69349667588463,13,540.068302755937,68,12591,0,0,0,0,9 +"4217",2010,45051,"SC","45","051",270295,0.837385079265247,18570,0.143835439057326,9.82930265434675,10.4194798062535,11.3237605456943,12.5153846153846,476.036992041256,768,161332,0,0,0,0,9 +"4218",2010,45053,"SC","45","053",24949,0.51517094873542,1986,0.111026494047858,7.59387784460512,8.07806788181544,8.86403999703599,9.99230769230769,561.389604385443,85,15141,0,0,0,0,9 +"4219",2010,45055,"SC","45","055",61700,0.735397082658023,3285,0.139076175040519,8.09712193091871,8.97309789628247,9.84028147663234,11.6692307692308,507.8383749172,184,36232,0,0,0,0,9 +"4220",2010,45057,"SC","45","057",76976,0.743231656620245,4159,0.134301600498857,8.33302993974291,9.28850439294554,10.0365313262939,14.9,453.228980124251,205,45231,0,0,0,0,9 +"4221",2010,45059,"SC","45","059",66519,0.730437919992784,4505,0.134502923976608,8.41294317004244,9.05333562316602,9.90173601949732,12.4692307692308,634.113781063873,247,38952,0,0,0,0,9 +"4222",2010,45061,"SC","45","061",19221,0.344414962801103,1377,0.136933562249623,7.22766249872865,7.71824095195932,8.59359852261864,16.4307692307692,660.736975857687,78,11805,0,0,0,0,9 +"4223",2010,45063,"SC","45","063",263365,0.826131034875553,16370,0.124724242021529,9.70320567036518,10.505779614752,11.3134862331676,8.32307692307692,390.458522399659,623,159556,0,0,0,0,9 +"4224",2010,45065,"SC","45","065",10210,0.493241919686582,453,0.182370225269344,6.11589212548303,7.05875815251866,7.86825426552061,14.2384615384615,325.46786004882,20,6145,0,0,0,0,9 +"4225",2010,45067,"SC","45","067",32951,0.420685259931413,1911,0.14952505235046,7.55538194424027,8.25919936266628,9.2596066132791,18.5,758.441558441558,146,19250,0,0,0,0,9 +"4226",2010,45069,"SC","45","069",28918,0.430112732554119,1770,0.130783594992738,7.47873482556787,8.30498958014036,8.99305463014613,21.4461538461538,616.638220558278,112,18163,0,0,0,0,9 +"4227",2010,45071,"SC","45","071",37611,0.662758235622557,2526,0.13679508654383,7.83439230291044,8.43119947824926,9.30837411224755,10.9461538461538,560.558720823378,122,21764,0,0,0,0,9 +"4228",2010,45073,"SC","45","073",74349,0.908741207010182,4313,0.147493577586787,8.36938899664784,9.09649955555242,9.97678448159759,11.5307692307692,518.098108941902,220,42463,0,0,0,0,9 +"4229",2010,45075,"SC","45","075",92323,0.354548704006586,7807,0.133704494004744,8.96277604612029,9.2223677521889,10.2597624164535,16.1307692307692,665.610142630745,357,53635,0,0,0,0,9 +"4230",2010,45077,"SC","45","077",119344,0.910100214505966,14964,0.115221544442955,9.61340259546804,9.53387209732166,10.4769217112138,11.0153846153846,418.375031378127,300,71706,0,0,0,0,9 +"4231",2010,45079,"SC","45","079",385754,0.493843226512233,41510,0.107361167998258,10.6336896410471,10.8124918023593,11.7261237254186,9.47692307692308,357.974461173858,864,241358,0,0,0,0,9 +"4232",2010,45081,"SC","45","081",19905,0.700226073850791,1191,0.131524742527003,7.0825485693553,7.83241092718792,8.64312074801403,10.1923076923077,415.944540727903,48,11540,0,0,0,0,9 +"4233",2010,45083,"SC","45","083",284769,0.760181059033813,19036,0.124465795083032,9.854087202241,10.5626900770431,11.3641353913851,12.0153846153846,491.377048398254,824,167692,0,0,0,0,9 +"4234",2010,45085,"SC","45","085",107610,0.501607657280922,8294,0.114069324412229,9.02328764080633,9.46622213187817,10.3855123866964,12.6230769230769,447.858725276126,281,62743,0,0,0,0,9 +"4235",2010,45087,"SC","45","087",28914,0.673168707200664,1576,0.140450992598741,7.36264527041782,8.22121009392507,9.0851172272221,17.9,676.07638477049,114,16862,0,0,0,0,9 +"4236",2010,45089,"SC","45","089",34342,0.328722846660066,1997,0.147341447789878,7.59940133341582,8.35913488675796,9.23376388691977,17.4923076923077,658.541379988205,134,20348,0,0,0,0,9 +"4237",2010,45091,"SC","45","091",226871,0.775242318321866,14319,0.118309523914471,9.56934260567401,10.423441387129,11.1711391335252,12.2923076923077,350.8617399219,478,136236,0,0,0,0,9 +"4238",2010,46005,"SD","46","005",17406,0.932724347926003,1000,0.130472250947949,6.90775527898214,7.49942329059223,8.45126704130007,4.13076923076923,317.038249130702,31,9778,0,0,0,0,9 +"4239",2010,46011,"SD","46","011",32003,0.94812986282536,6393,0.089866575008593,8.76295892076673,8.0013550258267,9.14910306250499,4.62307692307692,160.112078454918,32,19986,0,0,0,0,9 +"4240",2010,46013,"SD","46","013",36655,0.944564179511663,2811,0.1230664302278,7.94129557090653,8.30548401772769,9.2688922589258,3.8,274.63421563521,58,21119,0,0,0,0,9 +"4241",2010,46019,"SD","46","019",10144,0.965299684542587,530,0.142843059936909,6.27287700654617,6.97728134163075,7.9561263512135,5,383.408853258975,22,5738,0,0,0,0,9 +"4242",2010,46023,"SD","46","023",9153,0.660985469245056,428,0.113514694635639,6.0591231955818,6.81454289725996,7.71154897962915,4.86923076923077,504.607283896446,23,4558,0,0,0,0,9 +"4243",2010,46027,"SD","46","027",13830,0.926030368763557,3282,0.0900216919739696,8.09620827165004,7.04664727784876,8.38776764397578,4.19230769230769,228.102189781022,20,8768,0,0,0,0,9 +"4244",2010,46029,"SD","46","029",27212,0.966154637659856,1794,0.118587387917095,7.49220304261874,8.05006542291597,8.94845599234554,5.12307692307692,282.033202999808,44,15601,0,0,0,0,9 +"4245",2010,46031,"SD","46","031",4064,0.301919291338583,251,0.0949803149606299,5.52545293913178,6.05678401322862,6.92657703322272,6.86153846153846,715.307582260372,15,2097,0,0,0,0,9 +"4246",2010,46033,"SD","46","033",8275,0.958187311178248,245,0.200604229607251,5.50125821054473,6.62007320653036,7.77821147451249,5.77692307692308,255.156283223474,12,4703,0,0,0,0,9 +"4247",2010,46035,"SD","46","035",19484,0.957298296037775,1461,0.119431328269349,7.2868764117507,7.61085279039525,8.58279364850019,4.37692307692308,302.447071762442,33,10911,0,0,0,0,9 +"4248",2010,46041,"SD","46","041",5325,0.215962441314554,340,0.0910798122065728,5.82894561761021,6.4281052726846,7.25488481007734,14.5384615384615,1076.42626480086,30,2787,0,0,0,0,9 +"4249",2010,46047,"SD","46","047",7115,0.90597329585383,253,0.191145467322558,5.53338948872752,6.51323011091231,7.58273848891441,6.12307692307692,426.065162907268,17,3990,0,0,0,0,9 +"4250",2010,46065,"SD","46","065",17077,0.871405984657727,825,0.137670551033554,6.71538338633468,7.67368812926773,8.58466490653125,3.42307692307692,232.378001549187,24,10328,0,0,0,0,9 +"4251",2010,46071,"SD","46","071",3049,0.443752049852411,202,0.103640537881273,5.3082676974012,5.71042701737487,6.63463335786169,6.89230769230769,837.628865979381,13,1552,0,0,0,0,9 +"4252",2010,46079,"SD","46","079",11278,0.976325589643554,961,0.134420996630608,6.86797440897029,6.98933526597456,8.04782935745784,5.56923076923077,328.638497652582,21,6390,0,0,0,0,9 +"4253",2010,46081,"SD","46","081",24204,0.959510824657081,2212,0.147331019666171,7.70165236264223,7.7828072628397,8.87877607170755,4.67692307692308,305.852912553872,44,14386,0,0,0,0,9 +"4254",2010,46083,"SD","46","083",45185,0.972446608387739,2317,0.0977315480801151,7.74802852443238,8.78354947715327,9.5272656628976,3.86923076923077,175.700934579439,47,26750,0,0,0,0,9 +"4255",2010,46093,"SD","46","093",25478,0.942852657194442,1952,0.130857995133056,7.57660976697304,7.95402108727804,8.91018077801329,5.2,255.00196155355,39,15294,0,0,0,0,9 +"4256",2010,46099,"SD","46","099",169964,0.908498270221929,12354,0.109564378338942,9.42173517625584,9.98815034041484,10.8400513892498,4.92307692307692,284.132092429909,294,103473,0,0,0,0,9 +"4257",2010,46103,"SD","46","103",101253,0.859994271774663,6995,0.125250609858473,8.85295088709958,9.37016066342362,10.3042080896135,5.16923076923077,307.250442507431,184,59886,0,0,0,0,9 +"4258",2010,46109,"SD","46","109",10189,0.628520953969968,504,0.130532927667092,6.22257626807137,6.98841318199959,7.84619881549743,5.71538461538462,456.100342075257,24,5262,0,0,0,0,9 +"4259",2010,46113,"SD","46","113",13636,0.032340862422998,1262,0.0695951892050455,7.14045304310116,7.3304052118444,8.16706817834124,NA,1122.44897959184,77,6860,0,0,0,0,9 +"4260",2010,46115,"SD","46","115",6421,0.980065410372216,273,0.13938638841302,5.60947179518496,6.42971947803914,7.40488757561612,3.70769230769231,295.246530853262,10,3387,0,0,0,0,9 +"4261",2010,46121,"SD","46","121",9643,0.098102250337032,770,0.0820284143938608,6.64639051484773,6.92755790627832,7.83913164827433,7.56153846153846,745.495961896873,36,4829,0,0,0,0,9 +"4262",2010,46125,"SD","46","125",8352,0.984195402298851,341,0.139248084291188,5.83188247728352,6.83087423464618,7.71020519443253,4.5,411.433521004764,19,4618,0,0,0,0,9 +"4263",2010,46127,"SD","46","127",14488,0.972252898950856,562,0.139563776918829,6.33150184989369,7.55171221535131,8.33086361322474,5.71538461538462,276.442307692308,23,8320,0,0,0,0,9 +"4264",2010,46135,"SD","46","135",22436,0.945400249598859,1273,0.126894277054733,7.14913159855741,7.92226105835325,8.70847448958166,4.82307692307692,294.006784771956,39,13265,0,0,0,0,9 +"4265",2010,47001,"TN","47","001",75088,0.940270083102493,3993,0.141766993394417,8.29229810706322,9.14761354206788,10.0173964266439,9.46923076923077,548.045305078553,240,43792,0,0,0,0,9 +"4266",2010,47003,"TN","47","003",45082,0.89283971429839,2647,0.114502462180028,7.8811822022271,8.7268056084461,9.47577683548064,12.7923076923077,439.204808136847,114,25956,0,0,0,0,9 +"4267",2010,47005,"TN","47","005",16510,0.967474258025439,721,0.156692913385827,6.58063913728495,7.6377164326648,8.47177732788576,12.5076923076923,867.174280879865,82,9456,0,0,0,0,9 +"4268",2010,47007,"TN","47","007",12892,0.95314923983866,648,0.143965249767298,6.47389069635227,7.49665243816828,8.14002395246292,13.4384615384615,423.076923076923,33,7800,0,0,0,0,9 +"4269",2010,47009,"TN","47","009",123208,0.955968768261801,6955,0.137734562690734,8.84721610435754,9.72322387685162,10.5286502815542,9.23846153846154,498.359395378849,363,72839,0,0,0,0,9 +"4270",2010,47011,"TN","47","011",99086,0.934915124235513,7292,0.12161152937852,8.89453313579855,9.4982974066224,10.3150341309602,9.56153846153846,476.198545984511,281,59009,0,0,0,0,9 +"4271",2010,47013,"TN","47","013",40735,0.988830244261691,2144,0.139928808150239,7.67042852219069,8.62891344102665,9.39972029313758,12.7,643.993602155064,153,23758,0,0,0,0,9 +"4272",2010,47015,"TN","47","015",13796,0.979124383879385,780,0.128153087851551,6.65929391968364,7.539027055824,8.31360713931756,11.3384615384615,625.766871165644,51,8150,0,0,0,0,9 +"4273",2010,47017,"TN","47","017",28453,0.884897901802973,1802,0.137876498084561,7.49665243816828,8.17385745477362,9.02220192986066,14.8769230769231,536.73884878771,87,16209,0,0,0,0,9 +"4274",2010,47019,"TN","47","019",57343,0.977922327049509,3882,0.141569154037982,8.26410576372896,8.9366926884882,9.76255742810192,11.0923076923077,492.882201153924,170,34491,0,0,0,0,9 +"4275",2010,47021,"TN","47","021",39120,0.974463190184049,2003,0.130010224948875,7.60240133566582,8.67658724356649,9.40005122720199,9.11538461538461,484.933891490861,117,24127,0,0,0,0,9 +"4276",2010,47023,"TN","47","023",17194,0.894265441433058,1573,0.116319646388275,7.36073990305828,7.65586401761606,8.53010941668278,10.1461538461538,500.204164965292,49,9796,0,0,0,0,9 +"4277",2010,47025,"TN","47","025",32213,0.980411635054171,2199,0.141930276596405,7.69575799055476,8.37332282099653,9.18132342290569,10.9923076923077,616.484484277055,119,19303,0,0,0,0,9 +"4278",2010,47027,"TN","47","027",7847,0.977188734548235,372,0.147572320632089,5.91889385427315,6.87729607149743,7.70300768247924,12.3,719.748088169141,32,4446,0,0,0,0,9 +"4279",2010,47029,"TN","47","029",35641,0.96748127156926,1844,0.148985718694762,7.51969240411654,8.45126704130007,9.30209879721572,13.8692307692308,590.569781725409,125,21166,0,0,0,0,9 +"4280",2010,47031,"TN","47","031",52770,0.945594087549744,2955,0.125791169224938,7.9912539298402,8.80971354050827,9.64620535247543,10.9769230769231,482.644628099174,146,30250,0,0,0,0,9 +"4281",2010,47033,"TN","47","033",14589,0.857838097196518,807,0.119884844746042,6.69332366826995,7.49331724886215,8.33399124719497,11.8,595.455097824766,49,8229,0,0,0,0,9 +"4282",2010,47035,"TN","47","035",56193,0.985389639278914,2556,0.150605947359991,7.84619881549743,8.71522404191537,9.64329093701921,10.9538461538462,607.67698592215,180,29621,0,0,0,0,9 +"4283",2010,47037,"TN","47","037",627794,0.671282299607833,53951,0.108403393469832,10.8958315061957,11.3600073585455,12.2468210373418,8.29230769230769,370.378579115475,1504,406071,0,0,0,0,9 +"4284",2010,47039,"TN","47","039",11713,0.962605651839836,555,0.143003500384189,6.31896811374643,7.23777819192344,8.08116577772543,13.3461538461538,671.243325705568,44,6555,0,0,0,0,9 +"4285",2010,47041,"TN","47","041",18694,0.973413929603081,1062,0.138493634321173,6.96790920180188,7.8046592970561,8.61450137388324,11.9,750.723589001447,83,11056,0,0,0,0,9 +"4286",2010,47043,"TN","47","043",49692,0.943250422603236,2800,0.121106013040328,7.9373746961633,8.83884181343129,9.62066034281053,10.3923076923077,492.109282199219,145,29465,0,0,0,0,9 +"4287",2010,47045,"TN","47","045",38320,0.841910229645094,2093,0.129097077244259,7.646353722446,8.53050420547591,9.35097150171593,12.2923076923077,497.936479454513,111,22292,0,0,0,0,9 +"4288",2010,47047,"TN","47","047",38427,0.708095870091342,1803,0.1536419704895,7.49720722320332,8.45998771764546,9.36366213691983,10.1076923076923,455.650060753341,105,23044,0,0,0,0,9 +"4289",2010,47049,"TN","47","049",17922,0.990849235576387,858,0.147026001562326,6.75460409948796,7.76089319585102,8.56826646160024,12.6153846153846,823.244552058111,85,10325,0,0,0,0,9 +"4290",2010,47051,"TN","47","051",40960,0.9313720703125,2790,0.1373779296875,7.93379687481541,8.50936261230105,9.38764938694659,10.2692307692308,457.181560343733,108,23623,0,0,0,0,9 +"4291",2010,47053,"TN","47","053",49733,0.801158184706332,2516,0.124444533810548,7.83042561782033,8.74369111054302,9.58630800929532,12.2230769230769,626.745935104935,175,27922,0,0,0,0,9 +"4292",2010,47055,"TN","47","055",29409,0.882008908837431,1771,0.140127171954164,7.47929963778283,8.17667277194846,9.06958293425992,12.2846153846154,534.572922719349,92,17210,0,0,0,0,9 +"4293",2010,47057,"TN","47","057",22718,0.988379258737565,1191,0.144510960471873,7.0825485693553,8.06652149046999,8.8236479491913,12.9769230769231,594.353640416047,80,13460,0,0,0,0,9 +"4294",2010,47059,"TN","47","059",68834,0.969448237789465,3783,0.142778278176483,8.23827262463303,9.12172771361958,9.92930148742911,13.0384615384615,621.256373446859,251,40402,0,0,0,0,9 +"4295",2010,47061,"TN","47","061",13725,0.98695810564663,735,0.137340619307832,6.59987049921284,7.45356187164337,8.28045768658256,12.8461538461538,754.186373513997,59,7823,0,0,0,0,9 +"4296",2010,47063,"TN","47","063",62509,0.932969652370059,3574,0.126157833272009,8.18144069571937,9.04735074348172,9.82086652384779,11.7538461538462,514.570320024215,187,36341,0,0,0,0,9 +"4297",2010,47065,"TN","47","065",337235,0.765454356754192,24210,0.13256631132593,10.0945210499321,10.6727852606696,11.5607723272274,8.48461538461538,416.431913382162,850,204115,0,0,0,0,9 +"4298",2010,47067,"TN","47","067",6796,0.988228369629194,329,0.149352560329606,5.79605775076537,6.71901315438526,7.60389796852188,16.0692307692308,748.502994011976,30,4008,0,0,0,0,9 +"4299",2010,47069,"TN","47","069",27169,0.571864993190769,1849,0.128344804740697,7.52240023138712,8.18562889114761,8.87150534616578,13.4461538461538,564.108590903749,96,17018,0,0,0,0,9 +"4300",2010,47071,"TN","47","071",26050,0.953320537428023,1313,0.147792706333973,7.1800698743028,8.09651291750159,8.9366926884882,12.2615384615385,570.469798657718,85,14900,0,0,0,0,9 +"4301",2010,47073,"TN","47","073",56870,0.976701248461403,2745,0.142816950940742,7.91753635394363,8.98807143807263,9.7420268864095,11.0692307692308,543.819284668479,182,33467,0,0,0,0,9 +"4302",2010,47075,"TN","47","075",18811,0.484556908192015,1047,0.135399500292382,6.95368421087054,7.70345904786717,8.66630261400408,15.8615384615385,477.941176470588,52,10880,0,0,0,0,9 +"4303",2010,47077,"TN","47","077",27794,0.908397495862416,1494,0.130675685399727,7.30921236569276,8.20712916807133,9.03539156951164,14.5076923076923,548.434804042396,89,16228,0,0,0,0,9 +"4304",2010,47079,"TN","47","079",32396,0.906624274601803,1565,0.147024323990616,7.35564110297425,8.25945819533241,9.14750706280461,11.5923076923077,608.119213280009,111,18253,0,0,0,0,9 +"4305",2010,47081,"TN","47","081",24649,0.943080855207108,1487,0.130106698040488,7.30451594646016,8.16251625014018,8.83826168288565,11.3384615384615,457.559681697613,69,15080,0,0,0,0,9 +"4306",2010,47083,"TN","47","083",8450,0.96508875739645,441,0.140710059171598,6.08904487544685,6.95177216439891,7.7873820264847,12.1846153846154,572.640509013786,27,4715,0,0,0,0,9 +"4307",2010,47085,"TN","47","085",18557,0.963248369887374,916,0.141779382443283,6.82001636467413,7.7621706071382,8.59044365315583,11.3692307692308,492.377615756084,52,10561,0,0,0,0,9 +"4308",2010,47087,"TN","47","087",11628,0.988218094255246,543,0.155744754041968,6.29710931993394,7.32448997934853,8.13944052187461,12.8461538461538,679.681851048445,47,6915,0,0,0,0,9 +"4309",2010,47089,"TN","47","089",51719,0.966492004872484,3420,0.133471258144976,8.13739583005665,8.82805453681542,9.64277192831416,11.6846153846154,500.066675556741,150,29996,0,0,0,0,9 +"4310",2010,47091,"TN","47","091",18287,0.972220703231804,1039,0.141740033903866,6.94601399109923,7.86095636487639,8.50126704086598,13.0384615384615,533.049040511727,60,11256,0,0,0,0,9 +"4311",2010,47093,"TN","47","093",432952,0.87998900570964,36727,0.121567748849757,10.5112674583748,10.9554448958318,11.8242996496788,7.56153846153846,426.753163279796,1142,267602,0,0,0,0,9 +"4312",2010,47095,"TN","47","095",7827,0.711511434777054,667,0.117541842340616,6.50279004591562,7.07918439460967,7.39018142822643,11.2615384615385,378.644452858766,20,5282,0,0,0,0,9 +"4313",2010,47097,"TN","47","097",27722,0.632566192915374,1891,0.114890700526658,7.54486106865846,8.2443340478561,8.94376726273464,14.4307692307692,383.639261051762,65,16943,0,0,0,0,9 +"4314",2010,47099,"TN","47","099",41971,0.973434037787996,2299,0.124681327583331,7.74022952476318,8.60520406873895,9.3894902376045,12.5076923076923,502.255895122159,118,23494,0,0,0,0,9 +"4315",2010,47101,"TN","47","101",12175,0.971581108829569,620,0.143983572895277,6.42971947803914,7.3132203870903,8.18004072349016,15.2615384615385,499.5004995005,35,7007,0,0,0,0,9 +"4316",2010,47103,"TN","47","103",33378,0.915872730541075,1819,0.134999101204386,7.50604217851812,8.31825432879885,9.18727643237763,7.3,426.79435798678,82,19213,0,0,0,0,9 +"4317",2010,47105,"TN","47","105",48719,0.973644779244237,2249,0.157597651840145,7.71824095195932,8.67897184697886,9.54280458719986,9.45384615384615,429.168806397183,117,27262,0,0,0,0,9 +"4318",2010,47107,"TN","47","107",52173,0.94251816073448,2814,0.136660724896019,7.94236223767433,8.82849412946665,9.64517008871425,12.7538461538462,588.994407862083,178,30221,0,0,0,0,9 +"4319",2010,47109,"TN","47","109",26065,0.931901016689047,1313,0.139343947822751,7.1800698743028,8.0805469658245,8.91717663595516,13.0615384615385,790.700817733324,117,14797,0,0,0,0,9 +"4320",2010,47111,"TN","47","111",22236,0.983989926245728,1320,0.126911314984709,7.18538701558042,8.03430693633949,8.77863395266279,11.4153846153846,678.018337314123,88,12979,0,0,0,0,9 +"4321",2010,47113,"TN","47","113",98251,0.615820704114971,7413,0.122227763585103,8.91099049465672,9.3943272080892,10.3266615944251,10.2230769230769,439.746154376768,255,57988,0,0,0,0,9 +"4322",2010,47115,"TN","47","115",28227,0.952881992418606,1566,0.149679384986006,7.35627987655075,8.20439841814938,9.05660627203414,11.3384615384615,489.935659052004,83,16941,0,0,0,0,9 +"4323",2010,47117,"TN","47","117",30688,0.918372002085506,1666,0.133113920750782,7.41818082272679,8.33997857199043,9.1433455031519,14.2538461538462,459.292470884138,84,18289,0,0,0,0,9 +"4324",2010,47119,"TN","47","119",81230,0.855989166564077,4665,0.132032500307768,8.44784311328144,9.23805281054272,10.1388758302668,12.5076923076923,469.40657989136,229,48785,0,0,0,0,9 +"4325",2010,47121,"TN","47","121",11791,0.97761004155712,559,0.156220846408277,6.3261494731551,7.39510754656249,8.17046857833067,13.3230769230769,864.635010630758,61,7055,0,0,0,0,9 +"4326",2010,47123,"TN","47","123",44610,0.963819771351715,2373,0.145796906523201,7.77191025643576,8.67470962929122,9.48158813796454,12.9384615384615,501.446480231437,130,25925,0,0,0,0,9 +"4327",2010,47125,"TN","47","125",173181,0.750405644961052,16345,0.0851132630022924,9.70167731915831,10.0557364250738,10.8941619328475,8.68461538461538,341.670473580021,359,105072,0,0,0,0,9 +"4328",2010,47127,"TN","47","127",6333,0.965103426496131,311,0.139270487920417,5.73979291217923,6.73340189183736,7.51207124583547,8.03846153846154,383.561643835616,14,3650,0,0,0,0,9 +"4329",2010,47129,"TN","47","129",22028,0.954784819320864,1324,0.132240784456147,7.18841273649695,8.09193345597989,8.66802408111882,11.5615384615385,541.555346956459,75,13849,0,0,0,0,9 +"4330",2010,47131,"TN","47","131",31822,0.883476839922066,1656,0.13833197159198,7.4121603349452,8.34995727204032,9.14761354206788,9.8,471.544715447154,87,18450,0,0,0,0,9 +"4331",2010,47133,"TN","47","133",22085,0.98718587276432,1082,0.142585465247906,6.98656645940643,7.98514393119862,8.7645219095188,10.8846153846154,607.54300142023,77,12674,0,0,0,0,9 +"4332",2010,47135,"TN","47","135",7940,0.971410579345088,439,0.14911838790932,6.08449941307517,6.8351845861473,7.70796153183549,13.6846153846154,515.232974910394,23,4464,0,0,0,0,9 +"4333",2010,47139,"TN","47","139",16813,0.987747576280259,848,0.142865639683578,6.7428806357919,7.75662333453886,8.5016733797582,11.3923076923077,518.608907870653,51,9834,0,0,0,0,9 +"4334",2010,47141,"TN","47","141",72552,0.954294850589922,7551,0.116743852684971,8.92943528380342,9.06067959742178,9.97180019271821,9.56153846153846,385.432969702633,165,42809,0,0,0,0,9 +"4335",2010,47143,"TN","47","143",31860,0.966729441305712,2029,0.134023854362837,7.61529833982581,8.32263709695394,9.14281071518258,12.5307692307692,592.326920986849,109,18402,0,0,0,0,9 +"4336",2010,47145,"TN","47","145",54173,0.960053901389991,2594,0.157366215642479,7.86095636487639,8.82394232658524,9.68371331869152,9.35384615384615,603.799829292195,191,31633,0,0,0,0,9 +"4337",2010,47147,"TN","47","147",66314,0.91024519709262,3677,0.1208342129867,8.20985248130127,9.12858787010392,9.91442749257446,9.4,421.295483612107,168,39877,0,0,0,0,9 +"4338",2010,47149,"TN","47","149",263721,0.825956218882835,23678,0.0946985640127256,10.0723016259716,10.5599188801594,11.3252455779316,9.01538461538462,323.184006377825,527,163065,0,0,0,0,9 +"4339",2010,47151,"TN","47","151",22226,0.991766399712049,1268,0.123593989021866,7.14519613499717,8.01367414283268,8.78124833323686,17.3,470.642697322737,61,12961,0,0,0,0,9 +"4340",2010,47153,"TN","47","153",14124,0.986618521665251,742,0.13785046728972,6.60934924316738,7.56216163122565,8.32312288758773,12.2923076923077,559.474580394065,46,8222,0,0,0,0,9 +"4341",2010,47155,"TN","47","155",89921,0.973587927180525,5298,0.138710646011499,8.57508466983201,9.40294223817769,10.2199757168296,10.6384615384615,530.72055521535,286,53889,0,0,0,0,9 +"4342",2010,47157,"TN","47","157",928475,0.4390952906648,66654,0.11496809284041,11.1072703388098,11.7333613538728,12.5903651884055,9.91538461538462,450.767537590761,2523,559712,0,0,0,0,9 +"4343",2010,47159,"TN","47","159",19127,0.967898781826737,1039,0.131175824750353,6.94601399109923,7.84384863815247,8.66008067896479,12.4615384615385,507.081657632453,58,11438,0,0,0,0,9 +"4344",2010,47161,"TN","47","161",13347,0.964111785419945,678,0.142653779875627,6.5191472879404,7.43838353004431,8.25712628599743,12.6230769230769,609.439834024896,47,7712,0,0,0,0,9 +"4345",2010,47163,"TN","47","163",156756,0.965570695858532,8171,0.142144479318176,9.00834657938471,9.94558872855476,10.7517563699634,9.19230769230769,536.119846261356,491,91584,0,0,0,0,9 +"4346",2010,47165,"TN","47","165",161226,0.914926872836887,8444,0.124210735241214,9.04121140896821,10.052079956586,10.8044412714,9.00769230769231,378.823455746533,363,95823,0,0,0,0,9 +"4347",2010,47167,"TN","47","167",61067,0.79466815137472,3633,0.114611819804477,8.1978140322212,9.04923221158143,9.81961669349898,11.5307692307692,425.484579660168,153,35959,0,0,0,0,9 +"4348",2010,47169,"TN","47","169",7868,0.890315200813421,426,0.135739705134723,6.05443934626937,6.94505106372583,7.76937860951398,11.0538461538462,602.150537634409,28,4650,0,0,0,0,9 +"4349",2010,47171,"TN","47","171",18283,0.991194005360171,866,0.150248865065908,6.76388490856244,7.74066440191724,8.58447793822183,12.1384615384615,573.685695476347,61,10633,0,0,0,0,9 +"4350",2010,47173,"TN","47","173",19118,0.991212469923632,1145,0.134009833664609,7.04315991598834,7.83715965000168,8.65730289940088,10.9461538461538,506.550218340611,58,11450,0,0,0,0,9 +"4351",2010,47175,"TN","47","175",5567,0.989222202263338,250,0.167055864918268,5.52146091786225,6.54391184556479,7.41637847919293,13.4,572.634116937914,19,3318,0,0,0,0,9 +"4352",2010,47177,"TN","47","177",39859,0.954339045134098,2129,0.12667151709777,7.66340766489348,8.59044365315583,9.3604830304059,11.1076923076923,522.429946893485,121,23161,0,0,0,0,9 +"4353",2010,47179,"TN","47","179",123393,0.937743632134724,10298,0.128678288071447,9.23970498060609,9.69726257166061,10.5507740238805,8.86153846153846,443.712304381327,334,75274,0,0,0,0,9 +"4354",2010,47181,"TN","47","181",16981,0.933985042105883,1030,0.129556563217714,6.93731408122368,7.79234892411304,8.38981426208641,11.5769230769231,434.577231931979,46,10585,0,0,0,0,9 +"4355",2010,47183,"TN","47","183",35044,0.901238443100103,4158,0.121846821139139,8.33278946841796,8.28223006329669,9.2456109860581,11.1923076923077,391.096518758148,81,20711,0,0,0,0,9 +"4356",2010,47185,"TN","47","185",25833,0.971006077497774,1402,0.139666318275075,7.24565506759454,8.10711747075039,8.9226582995244,10.7153846153846,718.699623858141,107,14888,0,0,0,0,9 +"4357",2010,47187,"TN","47","187",184082,0.918107147901479,6819,0.121679468932324,8.82746811252065,10.2872181684983,10.9352831715001,6.7,189.915047756686,205,107943,0,0,0,0,9 +"4358",2010,47189,"TN","47","189",114681,0.914092133832108,5633,0.127274788325878,8.63639743889471,9.75254837697084,10.4772879754635,8.52307692307692,380.753077269623,262,68811,0,0,0,0,9 +"4359",2010,48001,"TX","48","001",58498,0.76349618790386,3534,0.116824506820746,8.17018565287964,9.15841529911126,9.46560255317185,8.13846153846154,509.567387687188,196,38464,0,0,0,0,9 +"4360",2010,48003,"TX","48","003",14849,0.959458549397266,1002,0.102094417132467,6.90975328164481,7.4899708988348,8.35443894011481,6.22307692307692,416.815529355722,35,8397,0,0,0,0,9 +"4361",2010,48005,"TX","48","005",86905,0.824060755997929,5532,0.115816121051723,8.61830469278465,9.31397940673567,10.1263110526394,8.56153846153846,471.410574226846,232,49214,0,0,0,0,9 +"4362",2010,48007,"TX","48","007",23189,0.949717538488076,1052,0.165035145974384,6.95844839329766,7.74586822979227,8.7684187268574,9.23076923076923,685.969530190636,86,12537,0,0,0,0,9 +"4363",2010,48009,"TX","48","009",9118,0.979052423777144,447,0.131827155077868,6.10255859461357,7.0057890192535,7.85593219971861,6.7,367.504835589942,19,5170,0,0,0,0,9 +"4364",2010,48013,"TX","48","013",44964,0.97153278178098,2629,0.121230317587403,7.87435882472988,8.63852547658376,9.4511666581427,8.19230769230769,455.180674785386,114,25045,0,0,0,0,9 +"4365",2010,48015,"TX","48","015",28372,0.886296348512618,1428,0.13728323699422,7.26403014289953,8.1341742721379,8.99665197943273,8.09230769230769,383.236494004203,62,16178,0,0,0,0,9 +"4366",2010,48019,"TX","48","019",20546,0.97848729679743,745,0.181592524092281,6.61338421837956,7.69120009752286,8.71456755083648,7.82307692307692,459.558823529412,55,11968,0,0,0,0,9 +"4367",2010,48021,"TX","48","021",74381,0.885064734273538,3891,0.133138839219693,8.26642147298455,9.22513045744882,9.96941573265024,8.28461538461539,363.144242697643,161,44335,0,0,0,0,9 +"4368",2010,48023,"TX","48","023",3708,0.968176914778856,167,0.12891046386192,5.11799381241676,5.92425579741453,6.88550967003482,7.06923076923077,516.262261228704,10,1937,0,0,0,0,9 +"4369",2010,48025,"TX","48","025",31862,0.900257359864415,2583,0.103854120896366,7.85670679309584,8.45148064805086,8.86021535890118,9.01538461538462,269.053908619509,55,20442,0,0,0,0,9 +"4370",2010,48027,"TX","48","027",312886,0.703799466898487,30257,0.0869262287222822,10.3174828416477,10.5755387698013,11.4581735649165,7.77692307692308,313.924486109917,584,186032,0,0,0,0,9 +"4371",2010,48029,"TX","48","029",1722841,0.871551698618735,134135,0.101507916284788,11.8066020344697,12.3525338368731,13.1630906474384,7.32307692307692,321.699801222145,3274,1017719,0,0,0,0,9 +"4372",2010,48031,"TX","48","031",10501,0.970859918103038,414,0.178935339491477,6.02586597382531,7.10002716662926,8.01763715990848,5.99230769230769,344.714379514117,21,6092,0,0,0,0,9 +"4373",2010,48035,"TX","48","035",18269,0.96743116755159,808,0.144616563577645,6.6945620585211,7.60738142563979,8.49187538343195,8.85384615384615,530.071355759429,52,9810,0,0,0,0,9 +"4374",2010,48037,"TX","48","037",92645,0.728479680500837,5706,0.120794430352421,8.64927353177345,9.40705780905387,10.1692307174692,8.48461538461538,510.839314486597,279,54616,0,0,0,0,9 +"4375",2010,48039,"TX","48","039",314499,0.804158359804006,17811,0.106337381040957,9.78757152293879,10.7672421127075,11.4294568957285,8.53846153846154,321.922611079238,606,188244,0,0,0,0,9 +"4376",2010,48041,"TX","48","041",195671,0.820704141134864,43553,0.0706134276412958,10.6817338662456,9.86651231641123,11.011010027334,6.32307692307692,182.128720485029,225,123539,0,0,0,0,9 +"4377",2010,48043,"TX","48","043",9258,0.958954417800821,686,0.154244977316915,6.53087762772588,6.93634273583405,7.92407232492342,5.47692307692308,426.81842432865,24,5623,0,0,0,0,9 +"4378",2010,48047,"TX","48","047",7213,0.983917925967004,479,0.126577013725218,6.17170059741091,6.52209279817015,7.54697411751653,12.0153846153846,637.619553666312,24,3764,0,0,0,0,9 +"4379",2010,48049,"TX","48","049",38076,0.945976468116399,2353,0.130633469902301,7.76344638872736,8.38366179879172,9.27594082906013,8.26153846153846,545.317788642347,116,21272,0,0,0,0,9 +"4380",2010,48051,"TX","48","051",17238,0.861990950226244,877,0.142823993502727,6.77650699237218,7.60439634879634,8.49964003216865,7.90769230769231,431.965442764579,42,9723,0,0,0,0,9 +"4381",2010,48053,"TX","48","053",42760,0.962581852198316,2082,0.145252572497661,7.64108424917491,8.4690528160883,9.4090272828564,6.81538461538462,422.364404298917,101,23913,0,0,0,0,9 +"4382",2010,48055,"TX","48","055",38087,0.90135741854176,2977,0.113975897287788,7.99867136101578,8.49535649680706,9.29743507882712,8.67692307692308,358.292893101728,79,22049,0,0,0,0,9 +"4383",2010,48057,"TX","48","057",21312,0.91577515015015,1209,0.12354542042042,7.09754885061479,7.82043951526218,8.6652683094816,8.83076923076923,471.936625653127,56,11866,0,0,0,0,9 +"4384",2010,48059,"TX","48","059",13511,0.97320701650507,652,0.142328473095996,6.48004456192665,7.31521838975297,8.25816336153762,7.3,527.634876665348,40,7581,0,0,0,0,9 +"4385",2010,48061,"TX","48","061",407608,0.978734470373496,27111,0.0926846381817825,10.2076948285701,10.8591912867671,11.6421099233511,11.1846153846154,293.60200098179,628,213895,0,0,0,0,9 +"4386",2010,48063,"TX","48","063",12396,0.797273313972249,693,0.130767989674088,6.5410299991899,7.19967834569117,8.15334975799889,9.17692307692308,564.049280094998,38,6737,0,0,0,0,9 +"4387",2010,48065,"TX","48","065",6164,0.974529526281635,242,0.141304347826087,5.48893772615669,6.58063913728495,7.45298232946546,5.45384615384615,380.339379754242,13,3418,0,0,0,0,9 +"4388",2010,48067,"TX","48","067",30457,0.810880914075582,1481,0.139475325869258,7.3004728142678,8.18032087477368,9.07669468710627,11.2615384615385,650.695060632949,110,16905,0,0,0,0,9 +"4389",2010,48069,"TX","48","069",8125,0.957661538461538,460,0.111876923076923,6.13122648948314,6.81014245011514,7.64826303090192,5.41538461538462,258.519388954172,11,4255,0,0,0,0,9 +"4390",2010,48071,"TX","48","071",35452,0.886663657903644,1839,0.11889315130317,7.51697722460432,8.57338447106598,9.25798702544354,9.73846153846154,331.922262843948,69,20788,0,0,0,0,9 +"4391",2010,48073,"TX","48","073",50932,0.822783318935051,3144,0.123694337548103,8.0532511535491,8.72745411689943,9.52369019117654,8.87692307692308,468.276881909725,133,28402,0,0,0,0,9 +"4392",2010,48077,"TX","48","077",10737,0.973083729160846,425,0.153022259476576,6.05208916892442,7.12367278520461,8.04654935728308,7.53076923076923,554.016620498615,34,6137,0,0,0,0,9 +"4393",2010,48083,"TX","48","083",8873,0.955708328637439,375,0.150794545249634,5.92692602597041,6.89365635460264,7.79482315217939,9.1,668.47712554836,32,4787,0,0,0,0,9 +"4394",2010,48085,"TX","48","085",787102,0.779353882978318,39002,0.0980038165320378,10.5713682058482,11.8222173542964,12.4184019329085,7.26923076923077,175.30073142719,841,479747,0,0,0,0,9 +"4395",2010,48089,"TX","48","089",20868,0.846032202415181,1003,0.142946137626989,6.91075078796194,7.69120009752286,8.64505856241413,8.19230769230769,449.180905407786,51,11354,0,0,0,0,9 +"4396",2010,48091,"TX","48","091",109311,0.961330515684606,5154,0.149554939576072,8.54752839121231,9.53741141265633,10.3968414303901,7.07692307692308,368.567783395549,234,63489,0,0,0,0,9 +"4397",2010,48093,"TX","48","093",13954,0.979575748889207,706,0.133295112512541,6.55961523749324,7.37400185935016,8.20357773693795,7.58461538461538,462.773921328433,34,7347,0,0,0,0,9 +"4398",2010,48097,"TX","48","097",38482,0.942674497167507,2260,0.132425549607609,7.72312009226633,8.38776764397578,9.28961355287069,7.32307692307692,462.681684348273,99,21397,0,0,0,0,9 +"4399",2010,48099,"TX","48","099",75654,0.771195178047426,7634,0.0765987257778835,8.94036723330517,9.28544784446299,10.0919568399163,7.51538461538462,273.510117737559,128,46799,0,0,0,0,9 +"4400",2010,48111,"TX","48","111",6745,0.954781319495923,444,0.105411415863603,6.09582456243222,6.83195356556585,7.51697722460432,5.37692307692308,282.921810699588,11,3888,0,0,0,0,9 +"4401",2010,48113,"TX","48","113",2373711,0.699609598641115,171315,0.0952744457939488,12.0512592461528,12.7468899875248,13.4963364424312,8.62307692307692,310.986093745447,4482,1441222,0,0,0,0,9 +"4402",2010,48115,"TX","48","115",13826,0.910096918848546,1075,0.098365398524519,6.98007594056176,7.39510754656249,8.0532511535491,7.73846153846154,319.645930661421,26,8134,0,0,0,0,9 +"4403",2010,48117,"TX","48","117",19465,0.963575648600051,1250,0.0975083483174929,7.13089883029635,7.73848812249465,8.5414954839392,5.8,349.616393124211,36,10297,0,0,0,0,9 +"4404",2010,48119,"TX","48","119",5242,0.897367417016406,278,0.140022892025944,5.62762111369064,6.4085287910595,7.3031700512368,7.96923076923077,519.210799584631,15,2889,0,0,0,0,9 +"4405",2010,48121,"TX","48","121",665833,0.826639712961058,50492,0.0922002964707367,10.8295701868728,11.5938324144638,12.269737347499,7.13846153846154,211.810801627979,879,414993,0,0,0,0,9 +"4406",2010,48123,"TX","48","123",20055,0.88661181750187,920,0.13492894540015,6.82437367004309,7.82204400818562,8.54364036143109,7.82307692307692,470.998691670301,54,11465,0,0,0,0,9 +"4407",2010,48127,"TX","48","127",10043,0.977596335756248,598,0.124663945036344,6.39359075395063,7.04403289727469,7.90396563403217,10.5769230769231,395.554718402712,21,5309,0,0,0,0,9 +"4408",2010,48131,"TX","48","131",11705,0.98000854335754,789,0.110038445108928,6.67076632084587,7.20934025660291,7.97865372908273,11.7,434.24317617866,28,6448,0,0,0,0,9 +"4409",2010,48133,"TX","48","133",18595,0.964237698305996,1071,0.133853186340414,6.97634807044775,7.49164547360513,8.52198170814803,8.69230769230769,644.901249496171,64,9924,0,0,0,0,9 +"4410",2010,48135,"TX","48","135",137060,0.925397636071793,10916,0.100693127097621,9.29798488182823,9.70363319044987,10.5900380225668,8.41538461538462,391.585350399189,309,78910,0,0,0,0,9 +"4411",2010,48139,"TX","48","139",150408,0.887951438753258,9059,0.111935535343865,9.11151401766929,9.95227771670556,10.7047713917007,8.03846153846154,308.007033593454,268,87011,0,0,0,0,9 +"4412",2010,48141,"TX","48","141",803548,0.939055289789782,62895,0.0939806956149477,11.049221948273,11.5605816530985,12.3644472491607,9.23076923076923,267.559568085584,1205,450367,0,0,0,0,9 +"4413",2010,48143,"TX","48","143",37913,0.96307335214834,5226,0.103341861630575,8.56140144608056,8.30251371851416,9.33025446864152,6.48461538461538,288.940256045519,65,22496,0,0,0,0,9 +"4414",2010,48145,"TX","48","145",17895,0.722939368538698,1213,0.122380553227158,7.10085190894405,7.74543561027438,8.65956043270316,8.56153846153846,431.681681681682,46,10656,0,0,0,0,9 +"4415",2010,48147,"TX","48","147",33922,0.909734095866989,1963,0.128058487117505,7.58222919427646,8.36357570275064,9.0896405867384,8.21538461538461,475.011369953004,94,19789,0,0,0,0,9 +"4416",2010,48149,"TX","48","149",24545,0.91326135669179,1020,0.15180281116317,6.92755790627832,7.83478810738819,8.80567494403858,6.13076923076923,530.682412736378,71,13379,0,0,0,0,9 +"4417",2010,48157,"TX","48","157",590177,0.59062789637685,31391,0.110809130142313,10.354276506608,11.4436182583709,12.122424696778,7.67692307692308,214.910854412035,760,353635,0,0,0,0,9 +"4418",2010,48159,"TX","48","159",10605,0.938425271098538,577,0.13993399339934,6.3578422665081,7.05789793741186,7.99159228206809,8.65384615384615,450.606585788562,26,5770,0,0,0,0,9 +"4419",2010,48161,"TX","48","161",19802,0.813756186243814,948,0.132915867084133,6.85435450225502,7.85321638815607,8.55024104546244,8.3,522.147767818293,60,11491,0,0,0,0,9 +"4420",2010,48163,"TX","48","163",17255,0.931614024920313,1540,0.0981744421906694,7.33953769540767,7.70481192293259,8.24695803256818,7.33076923076923,344.827586206897,36,10440,0,0,0,0,9 +"4421",2010,48165,"TX","48","165",17588,0.966113259040255,1223,0.082726859222197,7.10906213568717,7.614312146452,8.43468076984177,5.96923076923077,302.08220951559,28,9269,0,0,0,0,9 +"4422",2010,48167,"TX","48","167",292492,0.812976081397098,17690,0.123586286120646,9.78075478715383,10.5759982582456,11.4002941364534,9.18461538461538,396.496761092266,699,176294,0,0,0,0,9 +"4423",2010,48171,"TX","48","171",24875,0.978090452261307,967,0.156100502512563,6.87419849545329,7.78779687818117,8.79679268767466,5.48461538461538,352.719862047343,45,12758,0,0,0,0,9 +"4424",2010,48177,"TX","48","177",19797,0.896549982320554,1197,0.118250239935344,7.08757370555797,7.7376162828579,8.58091888229678,6.83846153846154,513.055428309666,56,10915,0,0,0,0,9 +"4425",2010,48179,"TX","48","179",22474,0.92698229064697,1218,0.115867224348136,7.10496544826984,7.96693349840484,8.65591111072806,8.67692307692308,622.471210706505,80,12852,0,0,0,0,9 +"4426",2010,48181,"TX","48","181",121029,0.905245850168142,7612,0.127035669137149,8.93748122841604,9.59376434920747,10.4768935314835,8.23076923076923,499.328936544817,346,69293,0,0,0,0,9 +"4427",2010,48183,"TX","48","183",122044,0.76719052145128,8946,0.111853102159877,9.09896178399279,9.59539867030668,10.4850046044247,8.01538461538462,488.789110233312,344,70378,0,0,0,0,9 +"4428",2010,48185,"TX","48","185",26624,0.817645733173077,1559,0.135329026442308,7.35179986905778,8.15306194680105,8.83811659764782,9.05384615384615,591.24222454887,96,16237,0,0,0,0,9 +"4429",2010,48187,"TX","48","187",132581,0.896365240871618,7489,0.11082281774915,8.92119055624937,9.85513729159508,10.5794377082676,6.75384615384615,312.766936066759,238,76095,0,0,0,0,9 +"4430",2010,48189,"TX","48","189",36271,0.917261724242508,2882,0.0949243197044471,7.96623977655947,8.3959291039232,9.14152605597582,7.42307692307692,302.040007922361,61,20196,0,0,0,0,9 +"4431",2010,48193,"TX","48","193",8468,0.97213037316958,374,0.135096835144072,5.92425579741453,6.79794041297493,7.69120009752286,6.83076923076923,498.414136837336,22,4414,0,0,0,0,9 +"4432",2010,48199,"TX","48","199",54785,0.928356301907456,3172,0.123427945605549,8.06211758275474,8.85466492837053,9.69443180053954,10.0230769230769,481.950481950482,153,31746,0,0,0,0,9 +"4433",2010,48201,"TX","48","201",4107542,0.721521776283724,297815,0.0982762927317603,12.604227767339,13.2885623273132,14.0416416421547,8.34615384615385,304.158218383917,7589,2495083,0,0,0,0,9 +"4434",2010,48203,"TX","48","203",65770,0.754949064923217,4185,0.126455830925954,8.33926198292358,8.97499771320498,9.87483084328632,9.44615384615385,446.369961927268,170,38085,0,0,0,0,9 +"4435",2010,48207,"TX","48","207",5878,0.940796189179993,288,0.132017693092889,5.66296048013595,6.47697236288968,7.26192709270275,5.47692307692308,615.195324515534,20,3251,0,0,0,0,9 +"4436",2010,48209,"TX","48","209",158086,0.928551547891654,20516,0.101691484381919,9.92896034850916,9.90917136900443,10.7966120063784,7.05384615384615,255.830679132847,249,97330,0,0,0,0,9 +"4437",2010,48213,"TX","48","213",78652,0.919874891929004,4171,0.139780298021665,8.33591109419694,9.11382947159534,10.0108610408045,8.86153846153846,562.545922116091,245,43552,0,0,0,0,9 +"4438",2010,48215,"TX","48","215",779091,0.976568847541558,57171,0.0781230947347614,10.9538020557965,11.5412602173975,12.27400695694,11.8,253.541730072553,1033,407428,0,0,0,0,9 +"4439",2010,48217,"TX","48","217",35153,0.917702614286121,1993,0.134071060791398,7.5973963202128,8.29029259122431,9.190545744648,8.43076923076923,510.789117064526,98,19186,0,0,0,0,9 +"4440",2010,48219,"TX","48","219",22827,0.941604240592281,1750,0.111666009550094,7.46737106691756,7.80220931624712,8.75888368001702,7.11538461538461,439.73301923832,56,12735,0,0,0,0,9 +"4441",2010,48221,"TX","48","221",51268,0.976261995786846,2348,0.152648825778263,7.76131918094799,8.61938870373091,9.57706465176792,8.57692307692308,412.771211853943,117,28345,0,0,0,0,9 +"4442",2010,48223,"TX","48","223",35211,0.906194087075062,2058,0.12413734344381,7.629489916394,8.38526052015541,9.20663351004486,7.48461538461538,535.272433469676,106,19803,0,0,0,0,9 +"4443",2010,48225,"TX","48","225",23683,0.720812397078073,1106,0.132837900603809,7.00850518208228,8.0179667034936,8.68879078484722,7.70769230769231,474.937892737104,65,13686,0,0,0,0,9 +"4444",2010,48227,"TX","48","227",34983,0.90023725809679,2510,0.113426521453277,7.82803803212583,8.33686963728496,9.04782144247841,7.22307692307692,454.204907286009,97,21356,0,0,0,0,9 +"4445",2010,48231,"TX","48","231",86367,0.884516076742274,5992,0.121250014473121,8.69818052519705,9.29109052166129,10.1400210569691,8.94615384615385,487.220447284345,244,50080,0,0,0,0,9 +"4446",2010,48233,"TX","48","233",22211,0.94102021520868,1208,0.128359821709964,7.09672137849476,7.85127199710988,8.73246584834988,8.51538461538462,679.565078349856,85,12508,0,0,0,0,9 +"4447",2010,48237,"TX","48","237",9004,0.946135051088405,630,0.118391825855175,6.44571981938558,7.10987946307227,7.69439280262942,7.86923076923077,493.87232485824,27,5467,0,0,0,0,9 +"4448",2010,48239,"TX","48","239",14091,0.913065076999503,735,0.129799162586048,6.59987049921284,7.34987370473834,8.26744895830485,7.08461538461538,435.841558774516,34,7801,0,0,0,0,9 +"4449",2010,48241,"TX","48","241",35775,0.813696715583508,1853,0.13277428371768,7.52456122628536,8.34236350038058,9.22167588163993,12.4230769230769,524.004391655854,105,20038,0,0,0,0,9 +"4450",2010,48245,"TX","48","245",252457,0.60411476013737,19169,0.114296692109943,9.86104966983816,10.3571077025313,11.1784592150118,11.3846153846154,425.917892495169,648,152142,0,0,0,0,9 +"4451",2010,48249,"TX","48","249",40914,0.978369262355184,2615,0.114410715158625,7.86901937649902,8.48404997282298,9.34696696950801,10.0615384615385,493.31140838185,111,22501,0,0,0,0,9 +"4452",2010,48251,"TX","48","251",151251,0.946982168712934,8882,0.115635599103477,9.09178203585205,9.93285216116603,10.6940563186772,8.72307692307692,418.613597022187,370,88387,0,0,0,0,9 +"4453",2010,48253,"TX","48","253",20237,0.852497899886347,1482,0.115234471512576,7.30114780585603,8.04462627976734,8.36287583103188,8.79230769230769,430.091300083,57,13253,0,0,0,0,9 +"4454",2010,48255,"TX","48","255",14886,0.888082762327019,1174,0.112185946526938,7.06817200038804,7.59940133341582,8.08886878916199,9.16923076923077,297.208364292538,28,9421,0,0,0,0,9 +"4455",2010,48257,"TX","48","257",103880,0.869368502117828,5503,0.110772044666923,8.61304867705976,9.61573881119536,10.3390614734146,8.54615384615385,387.847446670976,234,60333,0,0,0,0,9 +"4456",2010,48259,"TX","48","259",33594,0.974876466035602,1448,0.152557004226945,7.27793857294566,8.29054350077274,9.1834829178063,6.24615384615385,280.05284015852,53,18925,0,0,0,0,9 +"4457",2010,48265,"TX","48","265",49640,0.956385979049154,2590,0.144077356970185,7.85941315469358,8.49494758246892,9.50114257176421,6.69230769230769,458.750963762529,119,25940,0,0,0,0,9 +"4458",2010,48273,"TX","48","273",32037,0.918344414270999,4159,0.0965758341917158,8.33302993974291,8.12917499691179,9.0994088112689,8.42307692307692,382.398879732859,71,18567,0,0,0,0,9 +"4459",2010,48277,"TX","48","277",49822,0.832784713580346,3103,0.123800730600939,8.04012466444838,8.74225490188635,9.57844969354058,9.33846153846154,483.247422680412,135,27936,0,0,0,0,9 +"4460",2010,48279,"TX","48","279",13995,0.928045730618078,764,0.107324044301536,6.63856778916652,7.34729970074316,8.20083725837985,7.6,424.890350877193,31,7296,0,0,0,0,9 +"4461",2010,48281,"TX","48","281",19759,0.93334682929298,981,0.131737436105066,6.88857245956536,7.83597458172157,8.64541048921699,7.13846153846154,374.799214706407,42,11206,0,0,0,0,9 +"4462",2010,48283,"TX","48","283",6913,0.98394329524085,1030,0.0996672935049906,6.93731408122368,6.64898455002478,7.33888813383888,9.07692307692308,300.508552935737,13,4326,0,0,0,0,9 +"4463",2010,48285,"TX","48","285",19266,0.91715976331361,821,0.146838990968546,6.71052310945243,7.6314316645769,8.54946675196653,6.92307692307692,309.9874067616,32,10323,0,0,0,0,9 +"4464",2010,48287,"TX","48","287",16594,0.867301434253345,852,0.124623357840183,6.74758652682932,7.56371966841437,8.4142741374084,7.30769230769231,294.566877591098,27,9166,0,0,0,0,9 +"4465",2010,48289,"TX","48","289",16724,0.911205453240851,750,0.144343458502751,6.62007320653036,7.43779512167193,8.41294317004244,8.91538461538462,706.401766004415,64,9060,0,0,0,0,9 +"4466",2010,48291,"TX","48","291",75870,0.868960063266113,5003,0.118966653486226,8.5177930114882,9.23912217340163,10.0608331232599,11.7461538461538,501.642935377875,229,45650,0,0,0,0,9 +"4467",2010,48293,"TX","48","293",23490,0.799574286930609,1515,0.128820774797786,7.32317071794347,7.91022370709734,8.75431854025087,7.93076923076923,623.515439429929,84,13472,0,0,0,0,9 +"4468",2010,48297,"TX","48","297",11550,0.936883116883117,581,0.137489177489177,6.36475075685191,7.24279792279376,7.97315543344413,7.38461538461538,372.300819061802,25,6715,0,0,0,0,9 +"4469",2010,48299,"TX","48","299",19336,0.978434009102193,604,0.188301613570542,6.40357419793482,7.38770923908104,8.54364036143109,8.09230769230769,463.102788684184,46,9933,0,0,0,0,9 +"4470",2010,48303,"TX","48","303",280332,0.882525006064238,34544,0.0983120014839547,10.4499891527546,10.3364056874256,11.3386315998635,6.28461538461538,380.141776146701,636,167306,0,0,0,0,9 +"4471",2010,48307,"TX","48","307",8232,0.962949465500486,365,0.14589407191448,5.89989735358249,6.81454289725996,7.71690613529839,7.05384615384615,698.040981760865,31,4441,0,0,0,0,9 +"4472",2010,48309,"TX","48","309",235904,0.814496574877916,23402,0.107128323385784,10.0605767677789,10.1974622846109,11.1553358171031,7.4,389.994323334046,529,135643,0,0,0,0,9 +"4473",2010,48313,"TX","48","313",13737,0.774550484094053,1213,0.106791875955449,7.10085190894405,7.50439155916124,8.05896001776942,8.44615384615385,310.114503816794,26,8384,0,0,0,0,9 +"4474",2010,48315,"TX","48","315",10491,0.755314078734153,459,0.170336478886665,6.12905021006055,7.00850518208228,8.03851202097681,11.8538461538462,662.361318099023,40,6039,0,0,0,0,9 +"4475",2010,48321,"TX","48","321",36706,0.844167166130878,2219,0.128316896420204,7.70481192293259,8.30795254527102,9.24811773631021,11.5384615384615,408.909414537932,85,20787,0,0,0,0,9 +"4476",2010,48323,"TX","48","323",54424,0.979512714978686,3779,0.0944803763045715,8.23721470334949,8.83840674707681,9.59926951144425,15.2,253.860799661519,72,28362,0,0,0,0,9 +"4477",2010,48325,"TX","48","325",46130,0.954281378712335,2925,0.126620420550618,7.98104975966596,8.65678120562329,9.45171669155145,7.56923076923077,338.396751391187,90,26596,0,0,0,0,9 +"4478",2010,48329,"TX","48","329",136987,0.901808200778176,9609,0.109623540919941,9.17045543827727,9.6925813188864,10.6124834756504,5.87692307692308,310.970126885803,249,80072,0,0,0,0,9 +"4479",2010,48331,"TX","48","331",24683,0.878499372037435,1166,0.133087550135721,7.06133436691044,7.93020620668468,8.81447900001071,11.2461538461538,421.623249510616,56,13282,0,0,0,0,9 +"4480",2010,48335,"TX","48","335",9411,0.852194240782064,895,0.11019020295399,6.79682371827486,7.16006920759613,7.58933582317062,8.29230769230769,344.318740777177,21,6099,0,0,0,0,9 +"4481",2010,48337,"TX","48","337",19719,0.977432932704498,994,0.138597291951925,6.90173720665657,7.74413662762799,8.60538720215215,8.07692307692308,523.897058823529,57,10880,0,0,0,0,9 +"4482",2010,48339,"TX","48","339",459223,0.91679205963116,25171,0.116522909349053,10.1334478171773,11.0982732846529,11.8334570358837,7.58461538461538,327.572532600476,888,271085,0,0,0,0,9 +"4483",2010,48341,"TX","48","341",22008,0.892811704834606,1518,0.0936932024718284,7.32514895795557,7.93666015522543,8.67590488257106,5.39230769230769,354.230167229591,43,12139,0,0,0,0,9 +"4484",2010,48343,"TX","48","343",12918,0.747019662486453,655,0.135082830159467,6.48463523563525,7.25417784645652,8.20849175174038,13.8384615384615,635.772817179994,45,7078,0,0,0,0,9 +"4485",2010,48347,"TX","48","347",64684,0.787335353410426,8756,0.104940943664585,9.07749445864275,8.80116840193669,9.8793485366828,7.13076923076923,407.109786599968,153,37582,0,0,0,0,9 +"4486",2010,48349,"TX","48","349",47870,0.827407562147483,2919,0.120304992688531,7.97899637085411,8.68287710705717,9.50925907635395,8.37692307692308,383.963862224732,102,26565,0,0,0,0,9 +"4487",2010,48351,"TX","48","351",14447,0.784038208624628,834,0.135668304838375,6.72623340235875,7.50823877467866,8.2845042272585,12.7692307692308,710.07341436996,59,8309,0,0,0,0,9 +"4488",2010,48353,"TX","48","353",15247,0.93100282022693,865,0.130845412212238,6.76272950693188,7.48941208350872,8.33158624363075,7.53846153846154,470.446320868516,39,8290,0,0,0,0,9 +"4489",2010,48355,"TX","48","355",340251,0.925925272813305,25116,0.117604356783669,10.131260372234,10.6331836108432,11.5298809056196,8.17692307692308,397.936698219731,800,201037,0,0,0,0,9 +"4490",2010,48357,"TX","48","357",10171,0.973552256415298,623,0.0954675056533281,6.43454651878745,7.14440718032114,7.90617884039481,5.93846153846154,318.13361611877,18,5658,0,0,0,0,9 +"4491",2010,48361,"TX","48","361",82015,0.893519478144242,4880,0.123599341583857,8.49290049884719,9.25157827999243,10.0834730495325,11.7076923076923,556.336993260975,265,47633,0,0,0,0,9 +"4492",2010,48363,"TX","48","363",28093,0.958423806642224,1539,0.132524116327911,7.33888813383888,8.09437844497296,8.99516499031115,8.65384615384615,556.891532717378,88,15802,0,0,0,0,9 +"4493",2010,48365,"TX","48","365",23770,0.821371476651241,1366,0.134076567101388,7.21964204013074,7.90617884039481,8.82055174325303,9.09230769230769,457.834884064392,62,13542,0,0,0,0,9 +"4494",2010,48367,"TX","48","367",117324,0.96254815723978,6483,0.127373768367938,8.776938645175,9.68458499547917,10.4397762237386,7.63846153846154,400.178496883502,278,69469,0,0,0,0,9 +"4495",2010,48371,"TX","48","371",15521,0.941498614779976,1004,0.111397461503769,6.91174730025167,7.69484807238461,8.23774380389093,7.33846153846154,326.72849915683,31,9488,0,0,0,0,9 +"4496",2010,48373,"TX","48","373",45444,0.850981427691224,2478,0.137861983980283,7.81520706218909,8.63355299253243,9.35149265173207,9.77692307692308,674.924262760287,176,26077,0,0,0,0,9 +"4497",2010,48375,"TX","48","375",121329,0.830188990266136,8832,0.101113501306365,9.08613676851688,9.64542900515042,10.4184047942054,6.32307692307692,429.995347591321,305,70931,0,0,0,0,9 +"4498",2010,48379,"TX","48","379",10898,0.954028262066434,470,0.156267204991742,6.1527326947041,7.13329595489607,8.0323601479245,8.82307692307692,378.787878787879,23,6072,0,0,0,0,9 +"4499",2010,48381,"TX","48","381",121221,0.945364252068536,9161,0.117743625279448,9.12271062201521,9.60548574767749,10.5150178704238,5.2,325.537206248079,233,71574,0,0,0,0,9 +"4500",2010,48387,"TX","48","387",12873,0.805717392993086,610,0.14705196923794,6.41345895716736,7.29505641646263,8.20930841164694,11.6230769230769,690.140845070423,49,7100,0,0,0,0,9 +"4501",2010,48389,"TX","48","389",13830,0.93116413593637,1221,0.095589298626175,7.1074254741107,7.61628356158038,7.98922140881528,8.86923076923077,370.799536500579,32,8630,0,0,0,0,9 +"4502",2010,48391,"TX","48","391",7376,0.917299349240781,372,0.133405639913232,5.91889385427315,6.74758652682932,7.58222919427646,8.79230769230769,605.907599091139,24,3961,0,0,0,0,9 +"4503",2010,48395,"TX","48","395",16551,0.760799951664552,878,0.1347350613256,6.77764659363512,7.54644627374602,8.43750042250699,9.27692307692308,608.761821937167,56,9199,0,0,0,0,9 +"4504",2010,48397,"TX","48","397",78971,0.901533474313356,3296,0.105101872839397,8.10046489102936,9.42722437311925,10.0616017956298,7.44615384615385,243.913158126044,111,45508,0,0,0,0,9 +"4505",2010,48399,"TX","48","399",10510,0.960038058991437,506,0.135204567078972,6.22653666928747,7.05961762829138,7.94129557090653,8.34615384615385,574.094007893793,32,5574,0,0,0,0,9 +"4506",2010,48401,"TX","48","401",53307,0.801433207646275,3448,0.125424428311479,8.14554963178358,8.83185793519791,9.57206255713643,7.87692307692308,495.496899248964,159,32089,0,0,0,0,9 +"4507",2010,48403,"TX","48","403",10870,0.912327506899724,440,0.162925482980681,6.08677472691231,6.92165818415113,7.96380795323145,16.4,785.013380909902,44,5605,0,0,0,0,9 +"4508",2010,48405,"TX","48","405",8855,0.757989836250706,436,0.149068322981366,6.07764224334903,6.79346613258001,7.78030308790837,13.0846153846154,1009.0393104898,48,4757,0,0,0,0,9 +"4509",2010,48407,"TX","48","407",26480,0.876359516616314,1312,0.150075528700906,7.17930796950403,7.99159228206809,8.92052268739398,10.0307692307692,647.729572903313,96,14821,0,0,0,0,9 +"4510",2010,48409,"TX","48","409",64424,0.959409536818577,3831,0.118496212591581,8.25088114470065,8.97474461272273,9.8087921836968,10.5846153846154,424.043836219952,154,36317,0,0,0,0,9 +"4511",2010,48415,"TX","48","415",16929,0.929115718589403,1120,0.117018134561994,7.02108396428914,7.6192334162268,8.35326149973387,6.83846153846154,317.265377136424,31,9771,0,0,0,0,9 +"4512",2010,48419,"TX","48","419",25460,0.805891594658288,1555,0.118263943440691,7.34923082461333,8.04846874366888,8.85893722196655,8.51538461538462,684.296813742961,96,14029,0,0,0,0,9 +"4513",2010,48423,"TX","48","423",210407,0.789731330231409,15682,0.113584624085701,9.66026883679087,10.1479228179846,11.0342765728995,8.00769230769231,394.782155846556,470,119053,0,0,0,0,9 +"4514",2010,48425,"TX","48","425",8501,0.96623926596871,407,0.135395835784025,6.0088131854426,6.98933526597456,7.78862606562503,8.03846153846154,398.657154846832,19,4766,0,0,0,0,9 +"4515",2010,48427,"TX","48","427",61140,0.993784756297023,4473,0.0835623159960746,8.40581460343285,8.98143022576764,9.72316399840485,17.3615384615385,301.564365144185,96,31834,0,0,0,0,9 +"4516",2010,48429,"TX","48","429",9620,0.962993762993763,598,0.129209979209979,6.39359075395063,6.95654544315157,7.81318726752142,7.5,599.026581804568,32,5342,0,0,0,0,9 +"4517",2010,48439,"TX","48","439",1818167,0.778861897724466,123537,0.100132716081636,11.7242959853222,12.4846357664372,13.2342070320275,8.17692307692308,311.390265410472,3397,1090914,0,0,0,0,9 +"4518",2010,48441,"TX","48","441",131842,0.884316075302256,13654,0.103927428285372,9.52178779797823,9.57366316988638,10.5705730587682,6.80769230769231,407.424763094866,313,76824,0,0,0,0,9 +"4519",2010,48445,"TX","48","445",12681,0.932182004573772,1012,0.105117892910654,6.91968384984741,7.26542972325395,8.05515773181968,7.49230769230769,375.364938134297,27,7193,0,0,0,0,9 +"4520",2010,48449,"TX","48","449",32417,0.86454637998581,2194,0.101952679149829,7.69348164083518,8.34450508359052,9.10297785364768,8.56923076923077,405.908219641448,72,17738,0,0,0,0,9 +"4521",2010,48451,"TX","48","451",110675,0.9265687824712,10645,0.113919132595437,9.27284557732758,9.39955478502731,10.3963528509251,6.58461538461538,446.067764998446,287,64340,0,0,0,0,9 +"4522",2010,48453,"TX","48","453",1030392,0.826154512069193,97012,0.093557597496875,11.4825899611741,11.9565851188764,12.7122213495372,6.8,220.966030750734,1485,672049,0,0,0,0,9 +"4523",2010,48455,"TX","48","455",14728,0.891499185225421,653,0.15942422596415,6.48157712927643,7.31455283232408,8.32796785830549,9.6,604.001510003775,48,7947,0,0,0,0,9 +"4524",2010,48457,"TX","48","457",21763,0.872398106878647,1340,0.134724072967881,7.20042489294496,7.86365126544865,8.60849534982302,11.8076923076923,360.134659046426,46,12773,0,0,0,0,9 +"4525",2010,48459,"TX","48","459",39372,0.893629990856446,2069,0.134892817230519,7.63482067774554,8.44548234386224,9.34329659922481,8.83846153846154,513.415777490067,115,22399,0,0,0,0,9 +"4526",2010,48463,"TX","48","463",26441,0.972240081691313,1677,0.113233236261866,7.42476176182321,8.03786623470962,8.87332798950246,8.99230769230769,329.985652797704,46,13940,0,0,0,0,9 +"4527",2010,48465,"TX","48","465",48963,0.966484896758777,3658,0.0982374446010253,8.20467182895081,8.74113642290101,9.4938638092791,9.34615384615385,339.311682016481,91,26819,0,0,0,0,9 +"4528",2010,48467,"TX","48","467",52576,0.953762172854534,2556,0.138085818624467,7.84619881549743,8.74289347151214,9.6035979369766,8.43076923076923,524.655373431178,153,29162,0,0,0,0,9 +"4529",2010,48469,"TX","48","469",86883,0.908474615287225,5487,0.121047845953754,8.61013693705898,9.23004495525052,10.1433308830728,7.71538461538462,388.603644417598,193,49665,0,0,0,0,9 +"4530",2010,48471,"TX","48","471",68239,0.747519746772374,10127,0.106244229839241,9.22296040333229,9.13680146864131,9.74214440212737,7.8,334.157878748427,154,46086,0,0,0,0,9 +"4531",2010,48473,"TX","48","473",43558,0.709215299141375,5378,0.10911887598145,8.59007183682881,8.48466999971068,9.43954551466899,8.69230769230769,389.739510837145,98,25145,0,0,0,0,9 +"4532",2010,48475,"TX","48","475",10595,0.924020764511562,627,0.117980179329873,6.44094654063292,7.09257371597468,8.0013550258267,8.49230769230769,474.415452389021,28,5902,0,0,0,0,9 +"4533",2010,48477,"TX","48","477",33695,0.798070930405105,2067,0.135717465499332,7.63385355968177,8.20001364817543,9.13529349765327,7.25384615384615,377.358490566038,70,18550,0,0,0,0,9 +"4534",2010,48479,"TX","48","479",251358,0.981321461819397,18505,0.0749250073600204,9.82579624482026,10.4486276427168,11.157321376033,8.30769230769231,279.701452353531,374,133714,0,0,0,0,9 +"4535",2010,48481,"TX","48","481",41280,0.841690891472868,2473,0.121342054263566,7.81318726752142,8.46547875572956,9.35824300189968,8.72307692307692,411.593951735193,95,23081,0,0,0,0,9 +"4536",2010,48483,"TX","48","483",5387,0.955077037312048,248,0.131613142751067,5.51342874616498,6.41836493593621,7.28824440102012,6.16923076923077,447.042640990371,13,2908,0,0,0,0,9 +"4537",2010,48485,"TX","48","485",131802,0.847604740443999,12948,0.106424788698199,9.46869661504613,9.62178755176189,10.5169690376778,7.8,484.747713755836,379,78185,0,0,0,0,9 +"4538",2010,48487,"TX","48","487",13509,0.890443408098305,884,0.123991413131986,6.78445706263764,7.29097477814298,8.22550309756692,7.88461538461539,515.804787726491,39,7561,0,0,0,0,9 +"4539",2010,48489,"TX","48","489",22226,0.96283631782597,1965,0.0964636011877981,7.58324752430336,7.94449216393216,8.6146828126935,14.5076923076923,249.318270354499,32,12835,0,0,0,0,9 +"4540",2010,48491,"TX","48","491",426568,0.865915868044485,22282,0.095150128467208,10.0115344566193,11.1665685353416,11.782799918772,7.31538461538462,196.601434914681,499,253813,0,0,0,0,9 +"4541",2010,48493,"TX","48","493",43054,0.965763924374042,2017,0.134830677753519,7.60936653795421,8.68423189134568,9.4569660474376,6.86153846153846,302.969902332071,76,25085,0,0,0,0,9 +"4542",2010,48495,"TX","48","495",7081,0.949159723202937,408,0.111142493998023,6.01126717440416,6.71417052990947,7.58578882173203,9.3,502.765208647562,20,3978,0,0,0,0,9 +"4543",2010,48497,"TX","48","497",59083,0.970820709848857,3362,0.121845539326033,8.12029131396856,8.97297111339799,9.75718929491883,8.73846153846154,406.888449525774,142,34899,0,0,0,0,9 +"4544",2010,48499,"TX","48","499",41989,0.934625735311629,2086,0.154230869989759,7.64300363556072,8.36404201192206,9.33105244713845,9.1,623.430211697165,139,22296,0,0,0,0,9 +"4545",2010,48501,"TX","48","501",7852,0.962812022414671,458,0.10175751400917,6.12686918411419,6.83195356556585,7.66762609158499,7.01538461538462,444.132772323516,19,4278,0,0,0,0,9 +"4546",2010,48503,"TX","48","503",18523,0.965394374561356,969,0.130540409220969,6.87626461189077,7.6434829070772,8.53660358493606,7.71538461538462,605.587028716546,62,10238,0,0,0,0,9 +"4547",2010,48505,"TX","48","505",14086,0.991977850347863,1072,0.0878176913247196,6.97728134163075,7.41878088275079,8.22121009392507,10.4384615384615,220.324979344533,16,7262,0,0,0,0,9 +"4548",2010,48507,"TX","48","507",11728,0.98149727148704,920,0.107349931787176,6.82437367004309,7.18916773842032,8.0323601479245,13.9461538461538,322.736808132968,20,6197,0,0,0,0,9 +"4549",2010,49001,"UT","49","001",6657,0.962295328225928,288,0.103500075108908,5.66296048013595,6.58479139238572,7.40731771046942,10.1461538461538,535.236396074933,18,3363,0,0,0,0,9 +"4550",2010,49003,"UT","49","003",50178,0.967993941568018,2803,0.091195344573319,7.93844555116479,8.63976474380442,9.47684987919516,8.59230769230769,302.438650893917,79,26121,0,0,0,0,9 +"4551",2010,49005,"UT","49","005",113388,0.952472924824496,14521,0.0717977210992345,9.58335115653074,9.3489712401454,10.3563450229469,6.19230769230769,142.707639615641,90,63066,0,0,0,0,9 +"4552",2010,49007,"UT","49","007",21403,0.967387749380928,1472,0.125356258468439,7.29437729928882,7.70029520342012,8.69634305704456,8.71538461538461,533.733633558502,64,11991,0,0,0,0,9 +"4553",2010,49011,"UT","49","011",307919,0.946177403797752,20191,0.084843741373543,9.91299223955037,10.5609557406391,11.3427537984221,7.08461538461538,203.141523919914,340,167371,0,0,0,0,9 +"4554",2010,49013,"UT","49","013",18647,0.934091274735882,1215,0.0922400386121092,7.10249935577465,7.58781721999343,8.46989191829822,9.59230769230769,386.414480374212,38,9834,0,0,0,0,9 +"4555",2010,49015,"UT","49","015",11004,0.980189022173755,567,0.119683751363141,6.34035930372775,7.00033446027523,7.97108575350561,7.35384615384615,464.156781846313,27,5817,0,0,0,0,9 +"4556",2010,49019,"UT","49","019",9301,0.93516826147726,464,0.151381571873992,6.13988455222626,7.07834157955767,7.93844555116479,10.8846153846154,335.45197740113,19,5664,0,0,0,0,9 +"4557",2010,49021,"UT","49","021",46264,0.95050146982535,5343,0.0886002075047553,8.58354257195777,8.43554920237573,9.45093083689411,9.66923076923077,257.079576016453,65,25284,0,0,0,0,9 +"4558",2010,49023,"UT","49","023",10263,0.9781740231901,511,0.092955276235019,6.2363695902037,7.09174211509515,7.84815308619953,9.25384615384615,352.941176470588,18,5100,0,0,0,0,9 +"4559",2010,49025,"UT","49","025",7214,0.972691987801497,302,0.165650124757416,5.71042701737487,6.50428817353665,7.58781721999343,8.18461538461538,391.440501043841,15,3832,0,0,0,0,9 +"4560",2010,49027,"UT","49","027",12541,0.965632724663105,597,0.114743640857986,6.3919171133926,7.13727843726039,8.04334217044161,6.33846153846154,424.128180961357,27,6366,0,0,0,0,9 +"4561",2010,49035,"UT","49","035",1032997,0.908646394907246,79725,0.0936101460120407,11.2863384918783,11.820160133463,12.6198167215456,7.77692307692308,262.969708573271,1607,611097,0,0,0,0,9 +"4562",2010,49037,"UT","49","037",14837,0.47705061670149,1000,0.0981330457639685,6.90775527898214,7.41938058291869,8.25322764558177,11.0923076923077,380.427653154926,29,7623,0,0,0,0,9 +"4563",2010,49039,"UT","49","039",27938,0.956904574414776,2482,0.0943875724819243,7.81681996576455,7.99934295271328,8.77043908654689,9.13076923076923,266.666666666667,38,14250,0,0,0,0,9 +"4564",2010,49041,"UT","49","041",20799,0.975046877253714,1077,0.104716572912159,6.98193467715639,7.66996199547358,8.58335539366991,8.40769230769231,432.290198289634,46,10641,0,0,0,0,9 +"4565",2010,49043,"UT","49","043",36502,0.971124869870144,1837,0.126349241137472,7.51588908521513,8.60300384782935,9.31820774284519,7.58461538461538,171.760768078922,39,22706,0,0,0,0,9 +"4566",2010,49045,"UT","49","045",58502,0.961932925370073,3024,0.0838432874089775,8.01433573729942,9.02026886172217,9.65720330878028,8.46153846153846,315.980977306821,99,31331,0,0,0,0,9 +"4567",2010,49047,"UT","49","047",32465,0.898506083474511,2197,0.0900970275681503,7.69484807238461,8.19560956728878,9.06785472367943,8.6,353.456014362657,63,17824,0,0,0,0,9 +"4568",2010,49049,"UT","49","049",520033,0.955214380625845,59155,0.0617133912655543,10.9879163966878,10.9528395665502,11.8433940011086,7.53846153846154,174.127652838389,484,277957,0,0,0,0,9 +"4569",2010,49051,"UT","49","051",23642,0.975848066999408,1231,0.0957617798832586,7.11558212618445,8.11222795834972,8.77632145644996,8.5,200.493522516965,26,12968,0,0,0,0,9 +"4570",2010,49053,"UT","49","053",138397,0.952332781779952,9159,0.102083137640267,9.12249228140299,9.53567943560506,10.4629890482262,10.6230769230769,304.356096633061,208,68341,0,0,0,0,9 +"4571",2010,49057,"UT","49","057",232136,0.945415618430575,17750,0.0947246441741048,9.78414079490356,10.2282124875761,11.0895916583196,8.86153846153846,297.634865798565,392,131705,0,0,0,0,9 +"4572",2010,51001,"VA","51","001",33150,0.696772247360483,1723,0.152790346907994,7.45182223652793,8.22871079879369,9.19176898639075,8.1,507.322175732218,97,19120,0,0,0,0,9 +"4573",2010,51003,"VA","51","003",99196,0.840477438606395,6908,0.125690552038389,8.84043543926657,9.37856300439064,10.3111169834737,6.13076923076923,216.171702094807,126,58287,0,0,0,0,9 +"4574",2010,51005,"VA","51","005",16203,0.943220391285564,693,0.15398383015491,6.5410299991899,7.61035761831284,8.44074401925283,8.83846153846154,524.590163934426,48,9150,0,0,0,0,9 +"4575",2010,51007,"VA","51","007",12741,0.75472882819245,674,0.142375009810847,6.51323011091231,7.38150189450671,8.25452888193974,8.67692307692308,408.917029415644,31,7581,0,0,0,0,9 +"4576",2010,51009,"VA","51","009",32389,0.785050480101269,2224,0.13844206366359,7.70706265537047,8.29629711264251,9.20522732258936,8.23076923076923,536.249408548446,102,19021,0,0,0,0,9 +"4577",2010,51011,"VA","51","011",15091,0.786495262076734,803,0.138095553641243,6.68835471394676,7.51643330291563,8.41294317004244,8.79230769230769,402.02159430278,35,8706,0,0,0,0,9 +"4578",2010,51013,"VA","51","013",209319,0.790453804957983,17261,0.0996517277456896,9.75620490038669,10.4110578835814,11.2534420468771,4.23076923076923,133.475015550487,206,154336,0,0,0,0,9 +"4579",2010,51015,"VA","51","015",73593,0.94837824249589,3663,0.144769203592733,8.20603776277881,9.19074972221118,9.97268706933713,7.30769230769231,302.312464749013,134,44325,0,0,0,0,9 +"4580",2010,51021,"VA","51","021",6801,0.960446993089252,300,0.154094986031466,5.7037824746562,6.98933526597456,7.49776170062257,8.74615384615385,327.945654720075,14,4269,0,0,0,0,9 +"4581",2010,51023,"VA","51","023",33195,0.95716222322639,1372,0.161018225636391,7.22402480828583,8.39840965542627,9.19400771735529,6.61538461538461,371.917668636642,73,19628,0,0,0,0,9 +"4582",2010,51025,"VA","51","025",17393,0.413269706203645,1244,0.139078939803369,7.12608727329912,7.66715825531915,8.47595444339964,11.5230769230769,572.931342162111,61,10647,0,0,0,0,9 +"4583",2010,51027,"VA","51","027",24091,0.969532190444564,1326,0.152795649827736,7.18992217074581,8.081784206935,8.88985958777302,10.1384615384615,711.69686985173,108,15175,0,0,0,0,9 +"4584",2010,51029,"VA","51","029",17092,0.631933068102036,1061,0.139597472501755,6.96696713861398,7.80425138352811,8.42024166533979,10.8846153846154,309.569334425931,34,10983,0,0,0,0,9 +"4585",2010,51031,"VA","51","031",54910,0.83766162811874,3665,0.134693134219632,8.20658361432075,8.86559399890272,9.72322387685162,7.89230769230769,413.058776734082,135,32683,0,0,0,0,9 +"4586",2010,51033,"VA","51","033",28631,0.675037546715099,1535,0.127449268275645,7.3362856600213,8.25738565573044,9.07234187381889,9.73076923076923,328.92838594264,57,17329,0,0,0,0,9 +"4587",2010,51035,"VA","51","035",30071,0.986731402347777,1359,0.151807389178943,7.21450441415114,8.29579811063615,9.06969804217372,11.7692307692308,496.020302226324,86,17338,0,0,0,0,9 +"4588",2010,51036,"VA","51","036",7255,0.42605099931082,335,0.172846312887664,5.81413053182507,6.7990558620588,7.75190533307861,9.79230769230769,545.375218150087,25,4584,0,0,0,0,9 +"4589",2010,51037,"VA","51","037",12568,0.688653723742839,661,0.138605983450032,6.49375383985169,7.26192709270275,8.16763571524637,10.2307692307692,485.436893203883,34,7004,0,0,0,0,9 +"4590",2010,51041,"VA","51","041",317210,0.723794962327795,17617,0.127051480092053,9.77661962392714,10.7331522876976,11.5193448167724,7.48461538461538,264.628971391886,507,191589,0,0,0,0,9 +"4591",2010,51043,"VA","51","043",14018,0.926523041803396,542,0.151091453845056,6.29526600143965,7.47760424319759,8.31360713931756,6.84615384615385,364.387222154743,30,8233,0,0,0,0,9 +"4592",2010,51045,"VA","51","045",5198,0.992689495959985,235,0.155829165063486,5.45958551414416,6.49828214947643,7.3356339819272,8.12307692307692,389.863547758285,12,3078,0,0,0,0,9 +"4593",2010,51047,"VA","51","047",46834,0.804928043728915,2481,0.118866635350386,7.8164169836918,8.79785064893105,9.51222116382778,7.33076923076923,327.963383428839,91,27747,0,0,0,0,9 +"4594",2010,51049,"VA","51","049",10028,0.653171120861588,618,0.143099321898684,6.42648845745769,7.11232744471091,8.01433573729942,8.64615384615385,374.276964954066,22,5878,0,0,0,0,9 +"4595",2010,51051,"VA","51","051",15846,0.991732929445917,773,0.147986873658968,6.65027904858742,7.60489448081162,8.44526745184465,10.7307692307692,724.63768115942,69,9522,0,0,0,0,9 +"4596",2010,51053,"VA","51","053",28062,0.653552847266766,1624,0.131066923241394,7.39264752072162,8.24012129807647,9.06612352121577,9.03846153846154,489.38679245283,83,16960,0,0,0,0,9 +"4597",2010,51057,"VA","51","057",11145,0.588156123822342,626,0.14885598923284,6.4393503711001,7.19368581839511,8.13827263853019,9.31538461538462,494.208494208494,32,6475,0,0,0,0,9 +"4598",2010,51059,"VA","51","059",1086165,0.702792853756105,59642,0.122122329480328,10.996115302857,12.0143671974259,12.7692705813347,5.2,157.384233461975,1086,690031,0,0,0,0,9 +"4599",2010,51061,"VA","51","061",65433,0.889872082893953,3160,0.133923249736372,8.05832730658096,9.10030226676725,9.89565697342094,6.33076923076923,333.821225894256,130,38943,0,0,0,0,9 +"4600",2010,51063,"VA","51","063",15367,0.972603631157676,705,0.151948981583914,6.55819780281227,7.60389796852188,8.39728289474368,7.10769230769231,345.326946641417,31,8977,0,0,0,0,9 +"4601",2010,51065,"VA","51","065",25792,0.82843517369727,1052,0.12693858560794,6.95844839329766,8.25478892614873,9.05660627203414,6.46923076923077,236.0346184107,36,15252,0,0,0,0,9 +"4602",2010,51067,"VA","51","067",56174,0.902837611706483,3177,0.15377220778296,8.06369263426952,8.84072491676172,9.71305317563162,8.87692307692308,419.440138597611,138,32901,0,0,0,0,9 +"4603",2010,51069,"VA","51","069",78545,0.933095677637023,4265,0.119943981157298,8.35819745992578,9.33626792857397,10.0691291015789,7.65384615384615,278.318953520735,130,46709,0,0,0,0,9 +"4604",2010,51071,"VA","51","071",17317,0.975630882947393,849,0.14615695559277,6.74405918631135,7.76895604453833,8.52892411429194,9.75384615384615,427.647936350075,43,10055,0,0,0,0,9 +"4605",2010,51073,"VA","51","073",36942,0.891234908775919,1883,0.139732553732879,7.54062152865715,8.49208049060116,9.33344256911017,7.00769230769231,397.818701948865,89,22372,0,0,0,0,9 +"4606",2010,51075,"VA","51","075",21906,0.788505432301652,799,0.165297178855108,6.68336094576627,8.07651532755233,8.8495139654864,7.33846153846154,299.444931346772,41,13692,0,0,0,0,9 +"4607",2010,51077,"VA","51","077",15500,0.971935483870968,734,0.161354838709677,6.59850902861452,7.57660976697304,8.39321601159653,12.6615384615385,456.214532101925,41,8987,0,0,0,0,9 +"4608",2010,51079,"VA","51","079",18480,0.909577922077922,904,0.128030303030303,6.80682936039218,7.85864065562079,8.64664125860312,6.86923076923077,343.953656770456,38,11048,0,0,0,0,9 +"4609",2010,51081,"VA","51","081",12233,0.391073326248672,839,0.131611215564457,6.73221070646721,7.60936653795421,7.8815599170569,9.77692307692308,484.633569739953,41,8460,0,0,0,0,9 +"4610",2010,51083,"VA","51","083",36204,0.618799027731742,1674,0.153159871837366,7.42297125104942,8.36357570275064,9.24888778158842,12.4461538461538,475.536817335033,97,20398,0,0,0,0,9 +"4611",2010,51085,"VA","51","085",99886,0.882155657449492,5154,0.132420959894279,8.54752839121231,9.55669221559184,10.3134093813612,6.73846153846154,247.407306988409,146,59012,0,0,0,0,9 +"4612",2010,51087,"VA","51","087",307201,0.618227154208482,18194,0.117414982373104,9.80884714838201,10.6880737934129,11.5130054617704,7.49230769230769,296.382221323557,557,187933,0,0,0,0,9 +"4613",2010,51089,"VA","51","089",54102,0.765073379912018,2748,0.141861668699863,7.91862865334224,8.8378263640077,9.68265383150881,15.0692307692308,559.74923234391,175,31264,0,0,0,0,9 +"4614",2010,51093,"VA","51","093",35319,0.731306095869079,1649,0.147880744075427,7.4079243225596,8.41161042884117,9.30036387462377,7.31538461538462,352.576156449793,75,21272,0,0,0,0,9 +"4615",2010,51095,"VA","51","095",67681,0.828947562831518,3424,0.142418108479485,8.13856473726163,9.00908061416198,9.88974353474387,6.47692307692308,280.666114244474,105,37411,0,0,0,0,9 +"4616",2010,51097,"VA","51","097",6976,0.68391628440367,352,0.15983371559633,5.8636311755981,6.71901315438526,7.6246189861594,8.23846153846154,361.794500723589,15,4146,0,0,0,0,9 +"4617",2010,51099,"VA","51","099",23697,0.788243237540617,1294,0.108663543908512,7.16549347506085,8.15737044118677,8.85851081303393,7.53076923076923,325.825187703641,46,14118,0,0,0,0,9 +"4618",2010,51101,"VA","51","101",15999,0.788924307769236,788,0.127257953622101,6.66949808985788,7.73061406606374,8.5137873982814,7.63846153846154,372.863801139306,36,9655,0,0,0,0,9 +"4619",2010,51103,"VA","51","103",11362,0.705773631402922,428,0.174529132195036,6.0591231955818,6.86797440897029,8.03689677268507,10.0076923076923,554.496621036216,32,5771,0,0,0,0,9 +"4620",2010,51105,"VA","51","105",25606,0.951495743185191,1432,0.139303288291807,7.26682734752059,8.20193435119422,8.88128059507042,8.1,572.701240852689,90,15715,0,0,0,0,9 +"4621",2010,51107,"VA","51","107",315486,0.752226723214342,12803,0.0865236492269071,9.45743479744618,10.9887106040852,11.4910683286149,5.24615384615385,151.956571859739,290,190844,0,0,0,0,9 +"4622",2010,51109,"VA","51","109",33169,0.802707347221803,1577,0.149899002080256,7.36327958696304,8.36660283278374,9.24657586455828,7.7,413.202813714398,84,20329,0,0,0,0,9 +"4623",2010,51111,"VA","51","111",12909,0.633046711596561,752,0.153303896506313,6.62273632394984,7.41276401742656,8.14409846333852,9.71538461538461,429.672690509288,34,7913,0,0,0,0,9 +"4624",2010,51113,"VA","51","113",13299,0.883525077073464,651,0.150387247161441,6.47850964220857,7.36201055125973,8.27944348771267,6.46923076923077,415.530450590832,32,7701,0,0,0,0,9 +"4625",2010,51115,"VA","51","115",8974,0.897593046579006,355,0.16781814129708,5.87211778947542,6.89770494312864,7.83002808253384,6.51538461538462,327.667417571165,16,4883,0,0,0,0,9 +"4626",2010,51117,"VA","51","117",32716,0.612819415576476,1685,0.151821738598851,7.42952084278646,8.24143968982973,9.12292891496521,11.5307692307692,460.975997456684,87,18873,0,0,0,0,9 +"4627",2010,51119,"VA","51","119",10981,0.807030325107003,473,0.176941990711228,6.15909538849193,6.99025650049388,8.04109100370863,7.36923076923077,467.063939442744,29,6209,0,0,0,0,9 +"4628",2010,51121,"VA","51","121",94560,0.894564297800338,20865,0.0916666666666667,9.94582839302565,9.1988748938669,10.2778403189517,7.22307692307692,227.027733315912,139,61226,0,0,0,0,9 +"4629",2010,51125,"VA","51","125",14978,0.852784083322206,653,0.182534383762852,6.48157712927643,7.40367029001237,8.41116578677071,7.31538461538462,541.821876058246,48,8859,0,0,0,0,9 +"4630",2010,51127,"VA","51","127",18543,0.83524780240522,842,0.156986463894731,6.73578001424233,7.90211754627645,8.66250492257629,7.40769230769231,384.352579432866,45,11708,0,0,0,0,9 +"4631",2010,51131,"VA","51","131",12410,0.614423851732474,626,0.158742949234488,6.4393503711001,7.07580886397839,8.18172045512811,8.7,550.485296248008,38,6903,0,0,0,0,9 +"4632",2010,51133,"VA","51","133",12356,0.734784719974102,507,0.177241825833603,6.22851100359118,6.91174730025167,8.1185050675871,8.92307692307692,472.366556447803,30,6351,0,0,0,0,9 +"4633",2010,51135,"VA","51","135",15847,0.587556004291033,1017,0.124944784501798,6.92461239604856,7.60240133566582,8.32579052588609,7.76923076923077,356.655827126823,34,9533,0,0,0,0,9 +"4634",2010,51137,"VA","51","137",33566,0.84990764464041,1551,0.133408806530418,7.34665516317654,8.37930948405285,9.18307194482199,8.44615384615385,435.924369747899,83,19040,0,0,0,0,9 +"4635",2010,51139,"VA","51","139",24062,0.970534452663951,1243,0.139306790790458,7.12528309151071,8.0519780789023,8.85808422219916,11.8769230769231,425.622472866567,60,14097,0,0,0,0,9 +"4636",2010,51141,"VA","51","141",18474,0.930009743423189,786,0.153242394716899,6.66695679242921,7.78239033558746,8.56845648535378,12.9846153846154,491.35405839554,52,10583,0,0,0,0,9 +"4637",2010,51143,"VA","51","143",63591,0.767970310264031,3151,0.149628092025601,8.05547514175727,9.00650913169435,9.8423565525319,11.0923076923077,445.54061580078,168,37707,0,0,0,0,9 +"4638",2010,51145,"VA","51","145",28133,0.851100131518146,1231,0.141506415952796,7.11558212618445,8.39162996844089,8.97765140781844,7.24615384615385,247.56750532558,43,17369,0,0,0,0,9 +"4639",2010,51147,"VA","51","147",23364,0.643982194829652,4294,0.104134565998973,8.36497397843873,7.73061406606374,8.81818627792769,9.89230769230769,301.615798922801,42,13925,0,0,0,0,9 +"4640",2010,51149,"VA","51","149",35643,0.634991442920068,2266,0.122211935022305,7.72577144158795,8.61848544289811,9.19238004659919,8.24615384615385,234.782608695652,54,23000,0,0,0,0,9 +"4641",2010,51153,"VA","51","153",406183,0.677433570582718,24358,0.096050302449881,10.1006156166471,11.0957723170669,11.7498930228775,6.23076923076923,203.915827407574,507,248632,0,0,0,0,9 +"4642",2010,51155,"VA","51","155",34830,0.936606373815676,1783,0.156273327591157,7.48605261786314,8.49923286603924,9.25493125530406,11.3307692307692,574.139976275208,121,21075,0,0,0,0,9 +"4643",2010,51159,"VA","51","159",9276,0.680573523070289,502,0.124083656748599,6.21860011969173,7.18841273649695,7.6657534318617,7.22307692307692,467.047223663726,27,5781,0,0,0,0,9 +"4644",2010,51161,"VA","51","161",92416,0.914159885734072,4368,0.146565529778393,8.38206051742474,9.42343358743689,10.2396383089167,6.50769230769231,317.771167809042,172,54127,0,0,0,0,9 +"4645",2010,51163,"VA","51","163",22348,0.958475031322713,1248,0.15876141041704,7.12929754892937,7.88004820097158,8.78017265122765,7.71538461538462,331.35547507128,43,12977,0,0,0,0,9 +"4646",2010,51165,"VA","51","165",76413,0.966092157093688,4451,0.128368209597843,8.40088406901585,9.18932100475211,10.0078025218008,6.9,288.557666091066,127,44012,0,0,0,0,9 +"4647",2010,51167,"VA","51","167",28873,0.986180861012018,1560,0.147889031274894,7.35244110024358,8.25322764558177,9.0835292051098,10.4692307692308,636.7978166932,112,17588,0,0,0,0,9 +"4648",2010,51169,"VA","51","169",23127,0.988325334025165,1163,0.147273749297358,7.05875815251866,8.02910705461974,8.81031046635796,8.63076923076923,557.225603050077,76,13639,0,0,0,0,9 +"4649",2010,51171,"VA","51","171",42048,0.96689497716895,2155,0.13843702435312,7.67554600253785,8.58016799057763,9.40087808354148,8.41538461538462,362.107716640306,87,24026,0,0,0,0,9 +"4650",2010,51173,"VA","51","173",32198,0.972203242437419,1779,0.143300826138269,7.48380668766583,8.36776467792431,9.1651337791381,12.3846153846154,568.604527579977,107,18818,0,0,0,0,9 +"4651",2010,51175,"VA","51","175",18642,0.612380645853449,934,0.14585344920073,6.83947643822884,7.77233157516961,8.57319538153152,8.76923076923077,482.498464777612,55,11399,0,0,0,0,9 +"4652",2010,51177,"VA","51","177",122981,0.799725160797196,6976,0.111423715858547,8.85023096558882,9.81126260849361,10.5371235536725,7.17692307692308,313.771700258964,229,72983,0,0,0,0,9 +"4653",2010,51179,"VA","51","179",129857,0.772203269750572,8707,0.0981310210462278,9.07188257882862,9.88984491349497,10.5784198446752,6.66923076923077,232.042097254803,183,78865,0,0,0,0,9 +"4654",2010,51181,"VA","51","181",7045,0.52264017033357,400,0.150745209368346,5.99146454710798,6.70073110954781,7.68294316987829,9.17692307692308,654.664484451719,28,4277,0,0,0,0,9 +"4655",2010,51183,"VA","51","183",12013,0.404478481644885,884,0.132689586281528,6.78445706263764,7.43248380791712,7.96693349840484,11.6538461538462,459.912989434431,37,8045,0,0,0,0,9 +"4656",2010,51185,"VA","51","185",45118,0.958043352985505,2365,0.152289551841837,7.76853330092603,8.65416864644332,9.49363784611014,8.97692307692308,728.146368508594,197,27055,0,0,0,0,9 +"4657",2010,51187,"VA","51","187",37520,0.931849680170576,2196,0.124946695095949,7.69439280262942,8.55756708555451,9.32812340763257,8.26923076923077,463.535228677379,105,22652,0,0,0,0,9 +"4658",2010,51191,"VA","51","191",54966,0.979532802095841,2992,0.148582760251792,8.00369733909437,8.89041055197428,9.70947795594698,8.12307692307692,460.99720975373,152,32972,0,0,0,0,9 +"4659",2010,51193,"VA","51","193",17493,0.695249528382782,927,0.159149374035328,6.83195356556585,7.52131798019924,8.53679972105516,8.28461538461539,492.858579762623,49,9942,0,0,0,0,9 +"4660",2010,51195,"VA","51","195",41574,0.93866358781931,3094,0.135060374272382,8.03722003113301,8.63870260881343,9.38353709043758,8.53846153846154,586.166471277843,150,25590,0,0,0,0,9 +"4661",2010,51197,"VA","51","197",29252,0.961130862846985,1415,0.144571311363326,7.25488481007734,8.30523682949259,9.08568376737663,11.3307692307692,456.594613339498,79,17302,0,0,0,0,9 +"4662",2010,51199,"VA","51","199",65224,0.792714338280388,3642,0.121274377529744,8.20028826028755,9.05473863988161,9.8868499113831,6.27692307692308,204.928664072633,79,38550,0,0,0,0,9 +"4663",2010,51510,"VA","51","510",140737,0.68866751458394,8058,0.110646098751572,8.99442066575129,10.1247092582876,10.8729777608779,5.03846153846154,194.550607847204,197,101259,0,0,0,0,9 +"4664",2010,51520,"VA","51","520",17769,0.925037987506331,1174,0.129326354887726,7.06817200038804,7.67461749736436,8.57960445153763,9.03076923076923,351.631177964446,36,10238,0,0,0,0,9 +"4665",2010,51530,"VA","51","530",6613,0.922425525480115,623,0.127476183275367,6.43454651878745,6.60258789218934,7.60339933974067,10.1923076923077,391.338377250196,15,3833,0,0,0,0,9 +"4666",2010,51540,"VA","51","540",43467,0.722663169760968,10419,0.089148089355143,9.25138634141218,8.40178233990491,9.69449342432634,6.24615384615385,220.44024152583,69,31301,0,0,0,0,9 +"4667",2010,51550,"VA","51","550",223525,0.648576221899116,14303,0.113978302203333,9.5682245844549,10.3379935294287,11.1578777677757,7.36923076923077,305.767483769951,414,135397,0,0,0,0,9 +"4668",2010,51570,"VA","51","570",17338,0.847444918675741,1001,0.123428307763294,6.90875477931522,7.6314316645769,8.52991196382401,8.46923076923077,371.019272389982,36,9703,0,0,0,0,9 +"4669",2010,51580,"VA","51","580",5941,0.856758121528362,334,0.131291028446389,5.8111409929767,6.60258789218934,7.45587668749182,10.8461538461538,611.709874745121,21,3433,0,0,0,0,9 +"4670",2010,51590,"VA","51","590",42925,0.496237623762376,2910,0.139172976121142,7.97590836016554,8.44591198941127,9.47547003995745,13.7923076923077,664.942741041744,162,24363,0,0,0,0,9 +"4671",2010,51600,"VA","51","600",22616,0.77219667492041,1785,0.124734701096569,7.48717369421374,8.04205641005875,8.87598589132597,5.57692307692308,374.220374220374,54,14430,0,0,0,0,9 +"4672",2010,51620,"VA","51","620",8579,0.405991374286047,557,0.129735400396317,6.32256523992728,6.87005341179813,7.90137735379262,12.9,728.104847097982,35,4807,0,0,0,0,9 +"4673",2010,51630,"VA","51","630",24356,0.709229758581048,3943,0.0890540318607325,8.27969713387763,7.91425227874244,9.01529825077285,9.21538461538461,253.361917754824,39,15393,0,0,0,0,9 +"4674",2010,51640,"VA","51","640",6989,0.91772785806267,426,0.127342967520389,6.05443934626937,6.7900972355139,7.60887062919126,11.1538461538462,433.341830231965,17,3923,0,0,0,0,9 +"4675",2010,51650,"VA","51","650",137418,0.445887729409539,12727,0.115195971415681,9.45148099999205,9.67664968563365,10.6897151561121,9.16923076923077,371.874888970475,314,84437,0,0,0,0,9 +"4676",2010,51660,"VA","51","660",48999,0.872405559297128,13783,0.0631237372191269,9.53119122769444,8.30127348519135,9.68558026801716,8.46153846153846,194.546220939658,60,30841,0,0,0,0,9 +"4677",2010,51670,"VA","51","670",22640,0.588780918727915,1502,0.112014134275618,7.31455283232408,7.92226105835325,8.84779106484485,11.8230769230769,602.456167451919,78,12947,0,0,0,0,9 +"4678",2010,51680,"VA","51","680",75553,0.662806241975831,11821,0.10041957301497,9.37763288975038,8.89740886527095,10.0537162657828,8.67692307692308,323.741007194245,144,44480,0,0,0,0,9 +"4679",2010,51683,"VA","51","683",38212,0.773788338741757,2646,0.0976133151889459,7.8808043446749,8.62245370207373,9.38227483588365,7.19230769230769,225.858689167306,53,23466,0,0,0,0,9 +"4680",2010,51690,"VA","51","690",13786,0.523211954156391,775,0.133178586972291,6.65286302935335,7.40367029001237,8.34759040703006,17.8153846153846,849.283812904044,67,7889,0,0,0,0,9 +"4681",2010,51700,"VA","51","700",180905,0.523982200602526,17600,0.0997982366435422,9.77565418102624,9.99319113561791,10.9561780592903,8.53846153846154,357.583563766067,397,111023,0,0,0,0,9 +"4682",2010,51710,"VA","51","710",243019,0.499380706858311,37190,0.0921944374719672,10.5237951869191,10.2356648648745,11.2052719509739,8.94615384615385,339.735145254108,539,158653,0,0,0,0,9 +"4683",2010,51730,"VA","51","730",32502,0.181804196664821,2840,0.128915143683466,7.95155933115525,8.22147894726719,9.26898656740892,14.2769230769231,700.841009211053,140,19976,0,0,0,0,9 +"4684",2010,51735,"VA","51","735",12148,0.962792229173526,530,0.140105367138624,6.27287700654617,7.35179986905778,8.16706817834124,6.21538461538462,287.150035893754,20,6965,0,0,0,0,9 +"4685",2010,51740,"VA","51","740",95457,0.43051845333501,7404,0.116345579685094,8.90977567369339,9.33767762043738,10.2993399394612,9.82307692307692,469.898737689,271,57672,0,0,0,0,9 +"4686",2010,51750,"VA","51","750",16432,0.885223953261928,5455,0.0673076923076923,8.60428789826717,7.14755927118945,8.61068353450358,9.56153846153846,235.050770966529,25,10636,0,0,0,0,9 +"4687",2010,51760,"VA","51","760",204375,0.440425688073394,26439,0.110091743119266,10.1825954717678,10.0695526868106,11.1401501746847,9.73076923076923,445.42929652116,595,133579,0,0,0,0,9 +"4688",2010,51770,"VA","51","770",96722,0.674014184983768,6407,0.128181799383801,8.76514642163902,9.44287964493076,10.3324412967132,8.86923076923077,551.102204408818,330,59880,0,0,0,0,9 +"4689",2010,51775,"VA","51","775",24897,0.902036389926497,2224,0.13093947061895,7.70706265537047,7.97487690055888,8.93155196669452,7.05384615384615,408.078572416655,59,14458,0,0,0,0,9 +"4690",2010,51790,"VA","51","790",23738,0.856137838065549,1578,0.133793916926447,7.36391350140582,7.89878235697031,8.9061223308843,8,379.257530450004,52,13711,0,0,0,0,9 +"4691",2010,51800,"VA","51","800",84859,0.535841808175915,4639,0.114908259583544,8.44225410475174,9.43620023078462,10.1870862995503,7.77692307692308,339.659155986493,172,50639,0,0,0,0,9 +"4692",2010,51810,"VA","51","810",438864,0.711083615881002,35207,0.109124922527252,10.4690002054518,10.9888288363442,11.8485115948291,6.67692307692308,255.74143156913,702,274496,0,0,0,0,9 +"4693",2010,51820,"VA","51","820",20989,0.864595740626042,1249,0.117633045881176,7.13009851012558,7.80913539812054,8.75951172211649,9.21538461538461,548.127231957479,66,12041,0,0,0,0,9 +"4694",2010,51840,"VA","51","840",26150,0.837017208413002,2283,0.109560229445507,7.7332456465298,8.03624994213212,8.96085284532237,8.46923076923077,376.948632762586,59,15652,0,0,0,0,9 +"4695",2010,50001,"VT","50","001",36813,0.969630293646266,3065,0.148996278488577,8.02780284837031,8.4156033356546,9.32500744695431,6.04615384615385,315.667792993064,71,22492,1,0,0,0,9 +"4696",2010,50003,"VT","50","003",37078,0.977911429958466,2133,0.151248718916878,7.66528471847135,8.34830105493394,9.30528684928514,7.19230769230769,335.852225020991,72,21438,1,0,0,0,9 +"4697",2010,50005,"VT","50","005",31163,0.977024034913198,1957,0.155023585662484,7.57916796739608,8.20658361432075,9.14045424451202,7.03076923076923,393.191856081008,73,18566,1,0,0,0,9 +"4698",2010,50007,"VT","50","007",156774,0.939868855805172,16533,0.119624427519869,9.71311366255135,9.89212322245708,10.8339375669682,4.99230769230769,198.333199775623,198,99832,1,0,0,0,9 +"4699",2010,50011,"VT","50","011",47821,0.97321260534075,2381,0.12935739528659,7.77527584648686,8.8293727354684,9.59355987113703,5.92307692307692,302.592669004883,88,29082,1,0,0,0,9 +"4700",2010,50013,"VT","50","013",6948,0.974093264248705,305,0.182354634427173,5.72031177660741,6.80350525760834,7.71020519443253,7.18461538461538,382.796667417248,17,4441,1,0,0,0,9 +"4701",2010,50015,"VT","50","015",24517,0.980095443977648,1583,0.133050536362524,7.36707705988101,8.09620827165004,8.91233856711755,7.91538461538462,280.617358188014,42,14967,1,0,0,0,9 +"4702",2010,50017,"VT","50","017",28945,0.984418725168423,1563,0.159751252375194,7.35436233042148,8.1758290087146,9.09279480812114,6.10769230769231,303.421925043547,54,17797,1,0,0,0,9 +"4703",2010,50019,"VT","50","019",27247,0.980254706940214,1393,0.153484787316035,7.23921497377981,8.11162807830774,8.96712165623092,9.23076923076923,368.128782679229,59,16027,1,0,0,0,9 +"4704",2010,50021,"VT","50","021",61585,0.981976130551271,4064,0.156677762442153,8.30992298925832,8.89576660405609,9.83804195346106,7.67692307692308,284.976163208778,107,37547,1,0,0,0,9 +"4705",2010,50023,"VT","50","023",59573,0.975408322562235,3593,0.151830527252279,8.18674278711352,8.96852355539635,9.82514756108488,6.11538461538461,318.142266695671,117,36776,1,0,0,0,9 +"4706",2010,50025,"VT","50","025",44506,0.970251202085112,2493,0.166382060845729,7.82124208352356,8.54616929965275,9.54330646926811,6.36153846153846,346.867241127501,95,27388,1,0,0,0,9 +"4707",2010,50027,"VT","50","027",56604,0.977316090735637,2569,0.162833015334605,7.85127199710988,8.79694389354174,9.76013667764025,6.34615384615385,367.486219266777,126,34287,1,0,0,0,9 +"4708",2010,53001,"WA","53","001",18791,0.931296897450907,1261,0.0908413602256399,7.13966033596492,7.70029520342012,8.47616284185825,9.61538461538461,288.92787122072,28,9691,1,0,0,0,9 +"4709",2010,53003,"WA","53","003",21725,0.963728423475259,1198,0.143935558112773,7.0884087786754,7.74630066223144,8.75652500292697,8.50769230769231,352.834988102076,43,12187,1,0,0,0,9 +"4710",2010,53005,"WA","53","005",176467,0.933483314160721,11046,0.122742495764081,9.30982365046113,9.99314542446666,10.8462449322253,7.10769230769231,275.997063861023,282,102175,1,0,0,0,9 +"4711",2010,53007,"WA","53","007",72747,0.959695932478315,4288,0.133696234896284,8.36357570275064,9.02857865844074,9.93270649120535,8.15384615384615,320.194057004245,132,41225,1,0,0,0,9 +"4712",2010,53009,"WA","53","009",71505,0.904482204041675,3645,0.169736382071184,8.20111164444276,8.84793475332846,9.89661398359295,10.0384615384615,406.17589182098,161,39638,1,0,0,0,9 +"4713",2010,53011,"WA","53","011",426733,0.902943995425711,24649,0.123880740416138,10.1124916106966,10.9981922163732,11.7680404397939,11.7230769230769,283.938331279815,719,253224,1,0,0,0,9 +"4714",2010,53015,"WA","53","015",102358,0.944508489810274,5757,0.139002325172434,8.65817178467581,9.43572141823058,10.2992389684567,11.7,407.576526297988,241,59130,1,0,0,0,9 +"4715",2010,53017,"WA","53","017",38513,0.958118038065069,2221,0.122530054786695,7.70571282389443,8.44677072711969,9.283311984432,8.84615384615385,283.694540042787,61,21502,1,0,0,0,9 +"4716",2010,53019,"WA","53","019",7545,0.792445328031809,400,0.191385023194168,5.99146454710798,6.60665018619822,7.66902828858968,15.9769230769231,569.99544003648,25,4386,1,0,0,0,9 +"4717",2010,53021,"WA","53","021",79076,0.930750164398806,5730,0.0841595427183975,8.65347080970879,9.23795553900916,9.94645125196824,8.00769230769231,251.47075787288,109,43345,1,0,0,0,9 +"4718",2010,53025,"WA","53","025",89554,0.94395560220649,6129,0.104138285280389,8.72078688348573,9.27818591887125,10.0717524423403,9.96923076923077,319.258496395469,155,48550,1,0,0,0,9 +"4719",2010,53027,"WA","53","027",72849,0.904679542615547,4346,0.15087372510261,8.37701116081637,9.05718919248201,9.93241508760931,12.6307692307692,464.374826725811,201,43284,1,0,0,0,9 +"4720",2010,53029,"WA","53","029",78700,0.897318932655654,5189,0.157090216010165,8.55429627936774,9.04026354159867,10.052984563682,8.42307692307692,271.420506362097,125,46054,1,0,0,0,9 +"4721",2010,53031,"WA","53","031",29899,0.936352386367437,1121,0.216796548379544,7.02197642307216,7.90507284949867,9.07038841154874,9.34615384615385,356.433329437887,61,17114,1,0,0,0,9 +"4722",2010,53033,"WA","53","033",1938431,0.745401306520583,129720,0.118899769968598,11.7731335604213,12.6025911855134,13.3480461022871,8.4,229.208741234851,2885,1258678,1,0,0,0,9 +"4723",2010,53035,"WA","53","035",251696,0.869429788316064,18844,0.141217977242388,9.84394983981993,10.3217701643549,11.2304166547591,7.76923076923077,301.382089108207,466,154621,1,0,0,0,9 +"4724",2010,53037,"WA","53","037",40992,0.943867096018735,7024,0.117413153786105,8.85708813531495,8.31483217928456,9.43164222841102,8.84615384615385,210.912783658165,54,25603,1,0,0,0,9 +"4725",2010,53039,"WA","53","039",20375,0.949447852760736,840,0.17438036809816,6.73340189183736,7.78113850984502,8.67726913926287,11.0692307692308,338.839474798814,40,11805,1,0,0,0,9 +"4726",2010,53041,"WA","53","041",75503,0.954889209700277,4281,0.141146709402275,8.36194190614495,9.05403737758078,9.97166008763918,11.9,392.065344224037,168,42850,1,0,0,0,9 +"4727",2010,53043,"WA","53","043",10572,0.968596292092319,399,0.169315172152857,5.98896141688986,6.94601399109923,7.96311205897929,7.56153846153846,295.292687163453,17,5757,1,0,0,0,9 +"4728",2010,53045,"WA","53","045",60733,0.912699850163832,3145,0.159287372598093,8.05356916913454,8.84678466694523,9.74067446213022,10.8461538461538,416.771558837515,149,35751,1,0,0,0,9 +"4729",2010,53047,"WA","53","047",41224,0.848025422084223,2040,0.159470211527266,7.62070508683826,8.42463920980563,9.36434818445553,9.94615384615385,384.204909284952,90,23425,1,0,0,0,9 +"4730",2010,53049,"WA","53","049",20879,0.932228555007424,892,0.188275300541214,6.79346613258001,7.58528107863913,8.65990729361541,12.7153846153846,526.952315134762,61,11576,1,0,0,0,9 +"4731",2010,53051,"WA","53","051",12950,0.936988416988417,486,0.187413127413127,6.18620862390049,7.21376830811864,8.21202580462344,13.8692307692308,602.974675063647,45,7463,1,0,0,0,9 +"4732",2010,53053,"WA","53","053",795402,0.802292425716807,56124,0.116113612990664,10.9353188075139,11.5910524927463,12.4112680888637,9.47692307692308,329.110129734679,1603,487071,1,0,0,0,9 +"4733",2010,53055,"WA","53","055",15783,0.968003548121396,512,0.223278210733067,6.23832462503951,7.35564110297425,8.48797033273933,6.64615384615385,287.111867290515,27,9404,1,0,0,0,9 +"4734",2010,53057,"WA","53","057",116939,0.931810602108792,6609,0.139585595908978,8.79618763547045,9.53213397405673,10.4238871987364,9.89230769230769,318.139922100318,214,67266,1,0,0,0,9 +"4735",2010,53059,"WA","53","059",11115,0.957894736842105,461,0.168061178587494,6.13339804299665,7.22983877815125,8.12415060330663,11.6076923076923,383.990547924974,26,6771,1,0,0,0,9 +"4736",2010,53061,"WA","53","061",715522,0.840825299571502,44692,0.119711203848379,10.7075497936672,11.5549211704222,12.3094952847177,9.92307692307692,280.708503790124,1255,447083,1,0,0,0,9 +"4737",2010,53063,"WA","53","063",472102,0.923766474194136,38136,0.126315923253873,10.5489139968847,10.9627004454215,11.8722279538872,9.13076923076923,330.174280090245,941,285001,1,0,0,0,9 +"4738",2010,53065,"WA","53","065",43472,0.918085204269415,1708,0.168844313581156,7.44307837434852,8.47949132423223,9.42617729477462,11.8461538461538,412.244897959184,101,24500,1,0,0,0,9 +"4739",2010,53067,"WA","53","067",253011,0.872135994087214,16432,0.136851757433471,9.70698593216834,10.4046869929075,11.2890566507164,8.12307692307692,267.588792295511,414,154715,1,0,0,0,9 +"4740",2010,53071,"WA","53","071",58915,0.940117117881694,5270,0.120919969447509,8.56978564153541,8.81522155592216,9.69128394126025,7.23846153846154,254.192718985567,87,34226,1,0,0,0,9 +"4741",2010,53073,"WA","53","073",201549,0.903209641327915,20547,0.130355397446775,9.93047022386602,10.0849337262941,11.039668549523,8.56153846153846,248.519373214776,308,123934,1,0,0,0,9 +"4742",2010,53075,"WA","53","075",44795,0.879540127246344,11616,0.0815939278937381,9.36013873706458,8.19753873972118,9.54057893384188,6.08461538461538,159.334949774853,46,28870,1,0,0,0,9 +"4743",2010,53077,"WA","53","077",244249,0.901637263612133,16682,0.103820281761645,9.72208557280156,10.2912637977732,11.1056487168328,9.66923076923077,363.510991523074,485,133421,1,0,0,0,9 +"4744",2010,55001,"WI","55","001",20878,0.949085161413929,834,0.169269087077306,6.72623340235875,7.76556908109732,8.57904059474232,12.2,476.973684210526,58,12160,0,0,0,0,9 +"4745",2010,55003,"WI","55","003",16142,0.86470078057242,1131,0.13375046462644,7.03085747611612,7.46622755621548,8.4446224985814,10.8769230769231,342.06306787814,32,9355,0,0,0,0,9 +"4746",2010,55005,"WI","55","005",45816,0.97247686397765,2325,0.140191199580932,7.75147531802146,8.56769617358934,9.46537011215271,9.08461538461538,323.157054328404,85,26303,0,0,0,0,9 +"4747",2010,55007,"WI","55","007",15001,0.883007799480035,481,0.188387440837278,6.17586727010576,7.35627987655075,8.3537326422632,10.8769230769231,398.678664996013,35,8779,0,0,0,0,9 +"4748",2010,55009,"WI","55","009",248474,0.90887980231332,17304,0.114913431586403,9.7586929676329,10.3940288329994,11.2270550837477,7.73846153846154,244.802926991518,368,150325,0,0,0,0,9 +"4749",2010,55011,"WI","55","011",13551,0.988783115637222,628,0.145081543797506,6.4425401664682,7.38832785957711,8.22335889947926,7.60769230769231,371.699564214304,29,7802,0,0,0,0,9 +"4750",2010,55013,"WI","55","013",15430,0.932858068697343,563,0.170771224886585,6.33327962813969,7.37400185935016,8.33399124719497,10.9076923076923,374.926772114821,32,8535,0,0,0,0,9 +"4751",2010,55015,"WI","55","015",49041,0.964764176913195,2095,0.116494361860484,7.64730883235624,8.88972179927814,9.57727253036756,6.72307692307692,230.763931941861,67,29034,0,0,0,0,9 +"4752",2010,55017,"WI","55","017",62646,0.962312039076717,3343,0.130383424320787,8.1146238864201,8.9967757954423,9.76480003276223,8.25384615384615,275.548421615837,103,37380,0,0,0,0,9 +"4753",2010,55019,"WI","55","019",34670,0.984770695125469,1791,0.114883184309201,7.49052940206071,8.26152644839647,9.08182494974075,10.1230769230769,256.480218281037,47,18325,0,0,0,0,9 +"4754",2010,55021,"WI","55","021",56854,0.971945685439899,2665,0.133218419108594,7.88795933659994,8.95156964301882,9.69720111828834,8.28461538461539,264.21630508176,90,34063,0,0,0,0,9 +"4755",2010,55023,"WI","55","023",16629,0.972578026339527,773,0.152925611882855,6.65027904858742,7.50494206839617,8.40581460343285,10.3,324.743347999162,31,9546,0,0,0,0,9 +"4756",2010,55025,"WI","55","025",489247,0.882149507304082,47368,0.116160139970199,10.7657021742116,11.0768825856479,11.9729608257019,5.81538461538462,207.23060811901,655,316073,0,0,0,0,9 +"4757",2010,55027,"WI","55","027",88723,0.959176312793751,4857,0.121659547129831,8.48817624234574,9.39897529082673,10.0932397668206,8.88461538461539,277.957935699064,150,53965,0,0,0,0,9 +"4758",2010,55029,"WI","55","029",27749,0.980431727269451,1019,0.176871238603193,6.92657703322272,7.9592759601164,8.97916464896471,11.2,307.846956084689,49,15917,0,0,0,0,9 +"4759",2010,55031,"WI","55","031",44137,0.950268482225797,3205,0.137277114439133,8.07246736935477,8.57035473953047,9.49431558249664,8.16923076923077,363.474519694385,98,26962,0,0,0,0,9 +"4760",2010,55033,"WI","55","033",43888,0.959077652205614,5970,0.115361830113015,8.69450220638665,8.50512061018197,9.47054846742721,7.76153846153846,264.304061348323,71,26863,0,0,0,0,9 +"4761",2010,55035,"WI","55","035",99012,0.944663273138609,12433,0.116581828465237,9.42810950695294,9.29164382304022,10.3252524280577,6.82307692307692,235.251538183134,143,60786,0,0,0,0,9 +"4762",2010,55039,"WI","55","039",101579,0.964589137518582,6260,0.129761072662657,8.74193546409414,9.45751290108975,10.3162923259477,8.33846153846154,281.317226543108,170,60430,0,0,0,0,9 +"4763",2010,55041,"WI","55","041",9294,0.836776414891328,524,0.140197977189585,6.26149168432104,6.94022246911964,7.82644313545601,11.4769230769231,373.721479150275,19,5084,0,0,0,0,9 +"4764",2010,55043,"WI","55","043",51234,0.97689034625444,5960,0.117734317055081,8.6928257600594,8.55410354543633,9.52266627534072,7.46153846153846,314.48667658596,93,29572,0,0,0,0,9 +"4765",2010,55045,"WI","55","045",36858,0.984562374518422,1598,0.13454338271203,7.37650812632622,8.48838210956212,9.27453508401818,7.83846153846154,273.135502985973,59,21601,0,0,0,0,9 +"4766",2010,55047,"WI","55","047",19016,0.984697097181321,828,0.145403870424905,6.71901315438526,7.66246781520024,8.55140136274597,9.19230769230769,357.91654893096,38,10617,0,0,0,0,9 +"4767",2010,55049,"WI","55","049",23694,0.985059508736389,1035,0.139149151683971,6.94215670569947,8.02910705461974,8.84779106484485,8.08461538461538,341.005967604433,48,14076,0,0,0,0,9 +"4768",2010,55053,"WI","55","053",20464,0.906421032056294,1075,0.132916340891321,6.98007594056176,7.86710550031674,8.59415423255237,8.56153846153846,306.367475366399,37,12077,0,0,0,0,9 +"4769",2010,55055,"WI","55","055",83727,0.975981463566114,5399,0.124392370442032,8.59396903021829,9.30728557803266,10.1135863903295,8.56153846153846,269.976225974131,134,49634,0,0,0,0,9 +"4770",2010,55057,"WI","55","057",26675,0.954226804123711,1271,0.138706654170572,7.14755927118945,8.12385426310591,8.86785006302941,9.77692307692308,336.315756075893,53,15759,0,0,0,0,9 +"4771",2010,55059,"WI","55","059",166629,0.896086515552515,11314,0.109530753950393,9.3337961759031,10.0470682810137,10.818637634116,10.1076923076923,343.501099806153,342,99563,0,0,0,0,9 +"4772",2010,55061,"WI","55","061",20561,0.986333349545256,956,0.133894265843101,6.8627579130514,7.87245515006398,8.65434302956347,8.02307692307692,159.556600604636,19,11908,0,0,0,0,9 +"4773",2010,55063,"WI","55","063",114879,0.932198225959488,12687,0.118542118228745,9.4483331261406,9.47224299144048,10.4688865852273,6.51538461538462,299.581446018004,209,69764,0,0,0,0,9 +"4774",2010,55065,"WI","55","065",16799,0.986487290910173,874,0.127150425620573,6.77308037565554,7.55485852104068,8.42748727833174,7.03846153846154,285.140986376597,27,9469,0,0,0,0,9 +"4775",2010,55067,"WI","55","067",19964,0.976056902424364,896,0.144810659186536,6.79794041297493,7.72001794043224,8.61974977974133,10.7692307692308,299.850074962519,34,11339,0,0,0,0,9 +"4776",2010,55069,"WI","55","069",28777,0.98248601313549,1189,0.137540396844702,7.08086789669078,8.17779668327778,9.00356217474824,11.1076923076923,290.293317205927,48,16535,0,0,0,0,9 +"4777",2010,55071,"WI","55","071",81330,0.957863027173245,4018,0.137661379564736,8.29853954537488,9.20029003612268,10.0508725394492,9.68461538461538,311.146617331708,148,47566,0,0,0,0,9 +"4778",2010,55073,"WI","55","073",134064,0.92905627163146,7081,0.125387874448025,8.86517041965177,9.77446028679989,10.5630262419222,9.11538461538461,265.25198938992,209,78793,0,0,0,0,9 +"4779",2010,55075,"WI","55","075",41662,0.982045989150785,2175,0.147688541116605,7.68478394352278,8.41205487329293,9.3735640530782,10.8769230769231,338.784558116191,81,23909,0,0,0,0,9 +"4780",2010,55077,"WI","55","077",15372,0.981329690346084,697,0.156128024980484,6.54678541076052,7.42297125104942,8.35796296584568,10.6,432.407828857533,38,8788,0,0,0,0,9 +"4781",2010,55079,"WI","55","079",948289,0.668499792784689,77618,0.107753016221848,11.2595546380359,11.6882559745753,12.5910697049985,9.80769230769231,380.30791827314,2175,571905,0,0,0,0,9 +"4782",2010,55081,"WI","55","081",44813,0.962867917791712,2223,0.129939972775757,7.7066129139642,8.59969441292798,9.43564159384419,7.82307692307692,345.765345765346,89,25740,0,0,0,0,9 +"4783",2010,55083,"WI","55","083",37714,0.978177864983826,1614,0.142599565148221,7.3864708488299,8.50552538654856,9.29330189269053,10.5538461538462,330.785391801886,74,22371,0,0,0,0,9 +"4784",2010,55085,"WI","55","085",35949,0.976772650143259,1577,0.159058666444129,7.36327958696304,8.29579811063615,9.23356849809539,10.0230769230769,393.172228615267,82,20856,0,0,0,0,9 +"4785",2010,55087,"WI","55","087",176843,0.935349434243934,10660,0.113620556086472,9.27425369771984,10.0868918562813,10.8772921906109,7.94615384615385,275.288631703138,294,106797,0,0,0,0,9 +"4786",2010,55089,"WI","55","089",86378,0.96100859015027,4209,0.142408946722545,8.34498036877057,9.29633456514304,10.1528834749944,6.95384615384615,231.092851922811,117,50629,0,0,0,0,9 +"4787",2010,55093,"WI","55","093",41091,0.977659341461634,4675,0.116156822661897,8.44998444172279,8.52198170814803,9.44327582575286,6.80769230769231,169.324670210671,43,25395,0,0,0,0,9 +"4788",2010,55095,"WI","55","095",44155,0.978779300192504,1898,0.140935341410939,7.54855597916987,8.6202911494198,9.4430381360952,9.74615384615385,303.466521417733,78,25703,0,0,0,0,9 +"4789",2010,55097,"WI","55","097",70025,0.956958229203856,8176,0.121285255265976,9.00895831244349,8.97777759874548,9.9607181859904,7.85384615384615,252.209727428386,109,43218,0,0,0,0,9 +"4790",2010,55099,"WI","55","099",14096,0.981129398410897,451,0.168842224744608,6.11146733950268,7.37462901521894,8.26821888006751,10.7461538461538,280.590459924363,23,8197,0,0,0,0,9 +"4791",2010,55101,"WI","55","101",195407,0.856944735859002,11225,0.123987369950923,9.32589871261045,10.1476486790728,10.9704199577262,9.96153846153846,326.26427406199,380,116470,0,0,0,0,9 +"4792",2010,55103,"WI","55","103",18023,0.984519780280752,879,0.145924651833768,6.77878489768518,7.60589000105312,8.49923286603924,8.85384615384615,397.574793758076,40,10061,0,0,0,0,9 +"4793",2010,55105,"WI","55","105",160261,0.923293876863367,9392,0.119405220234492,9.14761354206788,9.96467672084855,10.7665884558962,11.0615384615385,309.564588364201,291,94003,0,0,0,0,9 +"4794",2010,55107,"WI","55","107",14730,0.985336048879837,578,0.149422946367957,6.35957386867238,7.40184157874383,8.28273588020175,12.0307692307692,392.541707556428,32,8152,0,0,0,0,9 +"4795",2010,55109,"WI","55","109",84399,0.973127643692461,3892,0.114408938494532,8.2666784433059,9.44248330708719,10.1431735204696,7.48461538461538,226.345879919608,116,51249,0,0,0,0,9 +"4796",2010,55111,"WI","55","111",62051,0.969799036276611,3315,0.12853942724533,8.10621290261996,8.98882050177807,9.8005130769083,8.26923076923077,303.320125700232,111,36595,0,0,0,0,9 +"4797",2010,55113,"WI","55","113",16553,0.807648160454298,720,0.163595722829699,6.5792512120101,7.48885295573346,8.41493895737748,11.1384615384615,439.066181195117,41,9338,0,0,0,0,9 +"4798",2010,55115,"WI","55","115",41938,0.904644952072106,2010,0.131050598502551,7.60589000105312,8.56426759880217,9.3657188691557,10.0538461538462,303.413400758533,72,23730,0,0,0,0,9 +"4799",2010,55117,"WI","55","117",115520,0.928228878116343,6171,0.128471260387812,8.72761617832107,9.61173052204232,10.4090091347102,9.12307692307692,238.269258880281,163,68410,0,0,0,0,9 +"4800",2010,55119,"WI","55","119",20660,0.989593417231365,961,0.125847047434656,6.86797440897029,7.84658997529119,8.64312074801403,10.0307692307692,312.447221753082,37,11842,0,0,0,0,9 +"4801",2010,55121,"WI","55","121",28846,0.985509256049366,1332,0.129619357969909,7.19443685110033,8.22764270790443,8.9839415279413,7.41538461538462,276.508776148113,46,16636,0,0,0,0,9 +"4802",2010,55123,"WI","55","123",29771,0.987571798058513,1289,0.135097914077458,7.16162200293919,8.10591119798651,8.99205997632796,7.76153846153846,313.73031496063,51,16256,0,0,0,0,9 +"4803",2010,55125,"WI","55","125",21454,0.87797147385103,752,0.1694788850564,6.62273632394984,7.68616230349291,8.65067458279072,11.1692307692308,386.001029336078,45,11658,0,0,0,0,9 +"4804",2010,55127,"WI","55","127",102195,0.971838152551495,8659,0.125299672195313,9.0663545214478,9.44493807333551,10.3133430089456,8.86153846153846,271.583528295404,166,61123,0,0,0,0,9 +"4805",2010,55129,"WI","55","129",15927,0.976957367991461,588,0.166823632824763,6.37672694789863,7.44366368311559,8.40178233990491,9.53846153846154,466.511162945685,42,9003,0,0,0,0,9 +"4806",2010,55131,"WI","55","131",131990,0.97260398515039,5925,0.128873399499962,8.68693596600333,9.82048630603272,10.576049299487,7.92307692307692,264.89226869455,209,78900,0,0,0,0,9 +"4807",2010,55133,"WI","55","133",390051,0.950996151785279,18146,0.137479457814491,9.80620542972957,10.8461864976866,11.668055664911,7.2,236.825758360079,549,231816,0,0,0,0,9 +"4808",2010,55135,"WI","55","135",52396,0.984521719215207,2330,0.135353843804871,7.75362354655975,8.76405326934776,9.58774888230182,9.26923076923077,343.82615081617,103,29957,0,0,0,0,9 +"4809",2010,55137,"WI","55","137",24526,0.966688412297154,1035,0.15387751773628,6.94215670569947,7.96067260838812,8.77647578934632,10.5846153846154,490.814752489132,70,14262,0,0,0,0,9 +"4810",2010,55139,"WI","55","139",167144,0.945310630354664,14216,0.119029100655722,9.56212336983449,9.96655624400311,10.8133778452293,7.64615384615385,283.927928979124,292,102843,0,0,0,0,9 +"4811",2010,55141,"WI","55","141",74812,0.963615462759985,3905,0.132839651392825,8.27001306227379,9.09155683598622,9.98234494261362,9.11538461538461,300.529394086506,130,43257,0,0,0,0,9 +"4812",2010,54001,"WV","54","001",16610,0.979108970499699,1041,0.14003612281758,6.94793706861497,7.66058546170326,8.50976567558744,10.0923076923077,432.98969072165,42,9700,1,0,0,0,9 +"4813",2010,54003,"WV","54","003",104638,0.906114413501787,5783,0.125059729734896,8.66267785815822,9.62918227712599,10.3788828704702,8.6,415.608042407704,265,63762,1,0,0,0,9 +"4814",2010,54005,"WV","54","005",24607,0.990815621571098,1207,0.154224407688869,7.09589322109753,8.14177220465645,8.91972065553706,8.83076923076923,730.709928269759,109,14917,1,0,0,0,9 +"4815",2010,54007,"WV","54","007",14544,0.987692519251925,777,0.156146864686469,6.65544035036765,7.51316354523408,8.35042997353814,11.0846153846154,370.113347212584,32,8646,1,0,0,0,9 +"4816",2010,54009,"WV","54","009",23973,0.979685479497768,1446,0.158761940516414,7.27655640271871,7.96032362914884,8.85922139360813,11.4538461538462,504.440497335702,71,14075,1,0,0,0,9 +"4817",2010,54011,"WV","54","011",96282,0.930288112004321,8610,0.130200868282753,9.06067959742178,9.36357634787504,10.2918743191095,7.21538461538462,517.596581138372,304,58733,1,0,0,0,9 +"4818",2010,54013,"WV","54","013",7658,0.991512144162967,362,0.164011491250979,5.89164421182577,6.80350525760834,7.7151236036321,14,505.161432022842,23,4553,1,0,0,0,9 +"4819",2010,54015,"WV","54","015",9382,0.993817949264549,450,0.144958431038158,6.10924758276437,7.11639414409346,7.90728360942635,14.1692307692308,475.059382422803,26,5473,1,0,0,0,9 +"4820",2010,54017,"WV","54","017",8198,0.978043425225665,453,0.149060746523542,6.11589212548303,6.93731408122368,7.71912984090673,7.15384615384615,383.993532740501,19,4948,1,0,0,0,9 +"4821",2010,54019,"WV","54","019",46029,0.945273631840796,2491,0.154685089834669,7.82043951526218,8.66888370465667,9.50188995595445,9.99230769230769,668.714982830291,185,27665,1,0,0,0,9 +"4822",2010,54021,"WV","54","021",8731,0.851792463635322,863,0.117626846867484,6.76041469108343,7.19593722647557,7.58324752430336,8.92307692307692,221.163661109221,13,5878,1,0,0,0,9 +"4823",2010,54023,"WV","54","023",11892,0.986797847292297,544,0.15438950554995,6.29894924685594,7.34407285057307,8.15478757276852,9.78461538461539,331.651045421774,23,6935,1,0,0,0,9 +"4824",2010,54025,"WV","54","025",35554,0.95887945097598,1941,0.155341171176239,7.57095858316901,8.3221510702129,9.26065318584977,8.80769230769231,534.553334938599,111,20765,1,0,0,0,9 +"4825",2010,54027,"WV","54","027",23945,0.981582793902694,1125,0.149216955523074,7.02553831463852,8.05990833457828,8.84505705350085,9.09230769230769,507.864851520068,72,14177,1,0,0,0,9 +"4826",2010,54029,"WV","54","029",30686,0.968650198787721,1288,0.157726650589846,7.1608459066643,8.27614021955846,9.12837080910893,12.1692307692308,485.196008160115,88,18137,1,0,0,0,9 +"4827",2010,54031,"WV","54","031",14044,0.956137852463686,713,0.144545713471945,6.5694814204143,7.56423847517049,8.32142158689788,11.5846153846154,488.502323364709,41,8393,1,0,0,0,9 +"4828",2010,54033,"WV","54","033",69244,0.972084223903876,3526,0.140156547859742,8.16791936295782,9.09672364518921,9.94145748378776,7.63076923076923,495.593369302507,203,40961,1,0,0,0,9 +"4829",2010,54035,"WV","54","035",29233,0.989224506550816,1484,0.133923990011289,7.30249642372733,8.23403420769204,9.04817432138579,11.3923076923077,434.291153548694,73,16809,1,0,0,0,9 +"4830",2010,54037,"WV","54","037",53612,0.908919644855629,3520,0.130623740953518,8.16621626859214,8.96380024285558,9.71565081505406,6.67692307692308,372.575965796305,122,32745,1,0,0,0,9 +"4831",2010,54039,"WV","54","039",192925,0.905942723856421,10693,0.148244136322405,9.27734460075666,10.0733147117484,10.9981420193499,7.38461538461539,570.590153244213,665,116546,1,0,0,0,9 +"4832",2010,54041,"WV","54","041",16411,0.986716226920968,816,0.147583937602827,6.70441435496411,7.67042852219069,8.49187538343195,8.84615384615385,598.555211558308,58,9690,1,0,0,0,9 +"4833",2010,54043,"WV","54","043",21674,0.995616868136938,1074,0.143812863338562,6.97914527506881,7.98616486033273,8.78017265122765,11.8,722.743349223435,94,13006,1,0,0,0,9 +"4834",2010,54045,"WV","54","045",36719,0.972384868868978,1834,0.161687409787848,7.51425465281641,8.51719319141624,9.33961270768032,10.1615384615385,664.335664335664,152,22880,1,0,0,0,9 +"4835",2010,54047,"WV","54","047",22094,0.899067620168371,1205,0.159319272200597,7.09423484592476,7.92443418488756,8.80672355472564,13.2461538461538,916.007978134003,124,13537,1,0,0,0,9 +"4836",2010,54049,"WV","54","049",56566,0.954212777993848,3962,0.139872007919952,8.2845042272585,8.88086360986736,9.74090979777877,7.29230769230769,333.599031677147,113,33873,1,0,0,0,9 +"4837",2010,54051,"WV","54","051",33091,0.987277507479375,1664,0.161977576984679,7.41697962138115,8.31922993863233,9.19339765124587,9.68461538461538,422.284406003561,83,19655,1,0,0,0,9 +"4838",2010,54053,"WV","54","053",27377,0.984877817145779,1325,0.142930196880593,7.18916773842032,8.1300590399928,9.03860260872187,11.5384615384615,545.53344491972,88,16131,1,0,0,0,9 +"4839",2010,54055,"WV","54","055",62335,0.92599663110612,3978,0.151888986925483,8.28853445941392,8.92850782431329,9.84728750284793,8.47692307692308,645.83219309288,236,36542,1,0,0,0,9 +"4840",2010,54057,"WV","54","057",28208,0.962102949517867,1629,0.144852524106636,7.39572160860205,8.19891444498699,9.02304647355567,9.36923076923077,458.912072446919,75,16343,1,0,0,0,9 +"4841",2010,54059,"WV","54","059",26769,0.976540027643916,1445,0.154581792371773,7.27586460054653,8.18562889114761,9.0432226489245,9.85384615384615,796.884361893349,133,16690,1,0,0,0,9 +"4842",2010,54061,"WV","54","061",96768,0.922887731481482,18674,0.102864583333333,9.83488746104387,9.24319470884713,10.3227240647282,5.60769230769231,234.815278647464,150,63880,1,0,0,0,9 +"4843",2010,54063,"WV","54","063",13520,0.986242603550296,633,0.153328402366864,6.45047042214418,7.41276401742656,8.26796230533871,7.99230769230769,452.137966670973,35,7741,1,0,0,0,9 +"4844",2010,54065,"WV","54","065",17492,0.983935513377544,777,0.157957923622227,6.65544035036765,7.7596141506969,8.54694614956558,9.13846153846154,385.542168674699,40,10375,1,0,0,0,9 +"4845",2010,54067,"WV","54","067",26219,0.99111331477173,1316,0.156146306113887,7.18235211188526,8.12592680270789,8.9737315697084,10.0692307692308,545.781430589444,85,15574,1,0,0,0,9 +"4846",2010,54069,"WV","54","069",44477,0.94603952604717,3209,0.149650381095847,8.07371464110986,8.49719454490955,9.4929596500855,7.95384615384615,448.895027624309,117,26064,1,0,0,0,9 +"4847",2010,54071,"WV","54","071",7676,0.971339239187077,384,0.159458051068265,5.95064255258773,6.72982407048948,7.66809370908241,8.61538461538461,547.19562243502,24,4386,1,0,0,0,9 +"4848",2010,54073,"WV","54","073",7569,0.981899854670366,379,0.140309155766944,5.93753620508243,6.98378996525813,7.63626960337937,10.6,474.137931034483,22,4640,1,0,0,0,9 +"4849",2010,54075,"WV","54","075",8734,0.987062056331578,413,0.169681703686741,6.02344759296103,6.91671502035361,7.83755436088108,11.5615384615385,581.504408178578,31,5331,1,0,0,0,9 +"4850",2010,54077,"WV","54","077",33546,0.983097835807548,1760,0.146246944494127,7.4730690880322,8.43706714693695,9.19360104797189,8.36153846153846,376.208390875756,79,20999,1,0,0,0,9 +"4851",2010,54079,"WV","54","079",55620,0.977580007191658,2461,0.140632865875584,7.80832305039106,8.96610085736724,9.73808210811849,7.6,364.304209068465,121,33214,1,0,0,0,9 +"4852",2010,54081,"WV","54","081",78921,0.899735178216191,4537,0.151239847442379,8.42002127966396,9.24917639576138,10.0574953650155,8.16923076923077,672.46835443038,323,48032,1,0,0,0,9 +"4853",2010,54083,"WV","54","083",29360,0.979904632152589,1681,0.146321525885559,7.42714413340862,8.23350314023399,9.01845321031253,10.5076923076923,458.481915435558,81,17667,1,0,0,0,9 +"4854",2010,54085,"WV","54","085",10420,0.993474088291747,474,0.150863723608445,6.16120732169508,7.17011954344963,8.03073492409854,9.74615384615385,549.894873038978,34,6183,1,0,0,0,9 +"4855",2010,54087,"WV","54","087",14897,0.991743304020944,674,0.153856481170706,6.51323011091231,7.55171221535131,8.38548870041881,13.6461538461538,580.79945336522,51,8781,1,0,0,0,9 +"4856",2010,54089,"WV","54","089",13939,0.942104885572853,576,0.16019800559581,6.35610766069589,7.49331724886215,8.47135865507244,9.50769230769231,675.43547813722,57,8439,1,0,0,0,9 +"4857",2010,54091,"WV","54","091",16876,0.98317136762266,859,0.145176582128466,6.75576892198425,7.73892375743946,8.50491816054062,7.70769230769231,516.267290083772,53,10266,1,0,0,0,9 +"4858",2010,54093,"WV","54","093",7129,0.992425305091878,306,0.158367232430916,5.72358510195238,6.7719355558396,7.62900388965296,11.0230769230769,391.006842619746,16,4092,1,0,0,0,9 +"4859",2010,54095,"WV","54","095",9215,0.994139989148128,402,0.159413998914813,5.99645208861902,7.09423484592476,7.88795933659994,11.4692307692308,633.265040044701,34,5369,1,0,0,0,9 +"4860",2010,54097,"WV","54","097",24242,0.984407227126475,1855,0.141036218133817,7.52563997504154,7.97590836016554,8.86742743852498,9.27692307692308,407.560958470944,58,14231,1,0,0,0,9 +"4861",2010,54099,"WV","54","099",42501,0.991906072798287,2251,0.139832003952848,7.71912984090673,8.65137437288226,9.45163813387043,8.53076923076923,559.513746326933,139,24843,1,0,0,0,9 +"4862",2010,54101,"WV","54","101",9151,0.994099005573161,429,0.158561905802645,6.06145691892802,7.06902342657826,7.90248743716286,10.1538461538462,631.73541434411,34,5382,1,0,0,0,9 +"4863",2010,54103,"WV","54","103",16537,0.993045897079277,807,0.14664086593699,6.69332366826995,7.62559507213245,8.46926265765869,11.7846153846154,516.823119924059,49,9481,1,0,0,0,9 +"4864",2010,54107,"WV","54","107",86976,0.976361295069904,4602,0.139866169977925,8.43424627059531,9.32044959465621,10.175878306419,8.89230769230769,431.387858676557,221,51230,1,0,0,0,9 +"4865",2010,54109,"WV","54","109",23728,0.989463924477411,1252,0.165205664194201,7.13249755166004,8.0323601479245,8.88682384651519,10.4076923076923,839.411036191,122,14534,1,0,0,0,9 +"4866",2010,56001,"WY","56","001",36471,0.939349071865318,7951,0.099147267692139,8.98105298590148,8.10802122137675,9.35521963329427,4.82307692307692,209.634988490628,51,24328,0,0,0,0,9 +"4867",2010,56003,"WY","56","003",11665,0.978482640377197,548,0.144277753964852,6.30627528694802,7.12447826249342,8.03495502450216,7.2,653.386454183267,41,6275,0,0,0,0,9 +"4868",2010,56005,"WY","56","005",46253,0.97122348820617,3252,0.108122716364344,8.0870254706677,8.69634305704456,9.52288577415265,6.49230769230769,372.140662342096,109,29290,0,0,0,0,9 +"4869",2010,56007,"WY","56","007",15849,0.965297495110102,909,0.141081456243296,6.81234509417748,7.5595594960077,8.38548870041881,7.23846153846154,327.098027190024,32,9783,0,0,0,0,9 +"4870",2010,56009,"WY","56","009",13823,0.980250307458584,711,0.137018013455834,6.56667242980324,7.44775128004791,8.29479935899257,5.87692307692308,401.55755658311,33,8218,0,0,0,0,9 +"4871",2010,56011,"WY","56","011",7119,0.985812614131198,304,0.155639837055766,5.71702770140622,6.64639051484773,7.60539236481493,5.37692307692308,341.963849535906,14,4094,0,0,0,0,9 +"4872",2010,56013,"WY","56","013",40199,0.763874723251822,2439,0.13793875469539,7.79934339821592,8.40871671508015,9.3502762122737,7.51538461538462,499.326994051496,115,23031,0,0,0,0,9 +"4873",2010,56015,"WY","56","015",13425,0.978026070763501,887,0.142495344506518,6.78784498230958,7.30720231476474,8.15651022607997,5.28461538461538,422.94475284166,32,7566,0,0,0,0,9 +"4874",2010,56017,"WY","56","017",4809,0.974215013516324,220,0.160948222083593,5.39362754635236,6.0913098820777,7.20934025660291,5.63076923076923,374.812593703148,10,2668,0,0,0,0,9 +"4875",2010,56019,"WY","56","019",8591,0.97869863810965,339,0.161680828774299,5.82600010738045,6.86693328446188,7.7828072628397,7.36153846153846,507.20227226618,25,4929,0,0,0,0,9 +"4876",2010,56021,"WY","56","021",92246,0.938935021572751,6511,0.127029898315374,8.78124833323686,9.3410176956178,10.2224865894939,7.18461538461538,405.932019917731,225,55428,0,0,0,0,9 +"4877",2010,56023,"WY","56","023",18098,0.981876450436512,763,0.13526356503481,6.63725803128446,7.69757534680234,8.53070154144103,9.07692307692308,317.246683330129,33,10402,0,0,0,0,9 +"4878",2010,56025,"WY","56","025",75477,0.962332896114048,5172,0.128436477337467,8.55101473989175,9.11734750512702,10.0183329442052,7.5,376.40608341855,173,45961,0,0,0,0,9 +"4879",2010,56029,"WY","56","029",28243,0.980207485040541,1583,0.159296108770315,7.36707705988101,8.00001409367807,9.01954299670119,6.66153846153846,334.305859469973,55,16452,0,0,0,0,9 +"4880",2010,56031,"WY","56","031",8665,0.983266012694749,368,0.16803231390652,5.90808293816893,6.84374994900622,7.80016307039296,5.95384615384615,628.293473854884,31,4934,0,0,0,0,9 +"4881",2010,56033,"WY","56","033",29148,0.971524632907918,1596,0.156442980650473,7.37525577800975,8.11522197256233,9.06114406561406,7.85384615384615,403.295500374489,70,17357,0,0,0,0,9 +"4882",2010,56035,"WY","56","035",10262,0.975443383356071,555,0.137595010719158,6.31896811374643,7.23128700432762,7.98548435673382,6.31538461538462,212.314225053079,14,6594,0,0,0,0,9 +"4883",2010,56037,"WY","56","037",43580,0.962253327214318,3048,0.119160165213401,8.02224091680654,8.57130251706327,9.45218790808416,7.08461538461538,328.8258331486,89,27066,0,0,0,0,9 +"4884",2010,56039,"WY","56","039",21298,0.971546624096159,1341,0.13212508216734,7.20117088328168,8.10107150311954,8.8349193852164,8.42307692307692,216.070222822417,32,14810,0,0,0,0,9 +"4885",2010,56041,"WY","56","041",21090,0.975770507349455,1085,0.122712185870081,6.98933526597456,7.87016594646984,8.72078688348573,7.59230769230769,396.761133603239,49,12350,0,0,0,0,9 +"4886",2010,56043,"WY","56","043",8531,0.96870237955691,336,0.139608486695581,5.8171111599632,6.82328612235569,7.7621706071382,6.34615384615385,384.779820436084,18,4678,0,0,0,0,9 +"4887",2011,2020,"AK","02","020",296693,0.711584027934599,25516,0.11660537997189,10.1470609853618,10.5627418020729,11.4387513367821,6.08461538461538,338.398739464695,640,189126,0,0,0,0,9 +"4888",2011,2050,"AK","02","050",17418,0.126248708232863,1462,0.0867493397634631,7.28756064030972,7.51969240411654,8.39479954320217,15.3153846153846,457.300861427204,43,9403,0,0,0,0,9 +"4889",2011,2070,"AK","02","070",4947,0.208813422276127,403,0.114008489993936,5.99893656194668,6.13122648948314,7.20637729147225,10.9538461538462,746.799431009957,21,2812,0,0,0,0,9 +"4890",2011,2090,"AK","02","090",98151,0.814632555959695,9670,0.115037034772952,9.17678358844734,9.41564576516051,10.2997773627088,6.6,281.27865234891,181,64349,0,0,0,0,9 +"4891",2011,2110,"AK","02","110",32165,0.752836934556195,1988,0.144815793564433,7.59488438721652,8.3841188371909,9.23395923757482,5.67692307692308,342.319212665811,72,21033,0,0,0,0,9 +"4892",2011,2122,"AK","02","122",56311,0.879206549342047,3275,0.16408872156417,8.09407314806935,8.81863022910035,9.71178210443183,9.77692307692308,422.302117217372,148,35046,0,0,0,0,9 +"4893",2011,2130,"AK","02","130",13792,0.728320765661253,779,0.152697215777262,6.65801104587075,7.47079377419506,8.33567131479285,8.95384615384615,407.497962510187,35,8589,0,0,0,0,9 +"4894",2011,2150,"AK","02","150",13807,0.612008401535453,1029,0.114651988121967,6.93634273583405,7.46794233228585,8.27792025817214,7.61538461538461,301.974448315912,26,8610,0,0,0,0,9 +"4895",2011,2170,"AK","02","170",91741,0.889177139991934,5459,0.126508322342246,8.60502090178176,9.4093551517118,10.1944392738555,9.39230769230769,346.660918920861,193,55674,0,0,0,0,9 +"4896",2011,2180,"AK","02","180",9775,0.183324808184143,790,0.0971867007672634,6.67203294546107,6.97166860472579,7.82364593083495,12.5846153846154,527.84856206771,29,5494,0,0,0,0,9 +"4897",2011,2185,"AK","02","185",9145,0.33034445051941,767,0.140295243302351,6.64248680136726,7.05444965813294,7.6434829070772,7.8,319.537431527693,21,6572,0,0,0,0,9 +"4898",2011,2188,"AK","02","188",7711,0.13487226040721,750,0.085462326546492,6.62007320653036,6.69332366826995,7.51425465281641,15.7769230769231,589.344648750589,25,4242,0,0,0,0,9 +"4899",2011,2220,"AK","02","220",8888,0.70972097209721,504,0.146264626462646,6.22257626807137,7.04925484125584,7.91862865334224,6.31538461538462,284.343344588591,16,5627,0,0,0,0,9 +"4900",2011,2261,"AK","02","261",9770,0.801125895598772,547,0.161310133060389,6.30444880242198,7.06817200038804,7.9592759601164,10.3692307692308,365.021425170608,23,6301,0,0,0,0,9 +"4901",2011,2270,"AK","02","270",7656,0.0342215256008359,757,0.0690961337513062,6.62936325343745,6.63463335786169,7.4667994750186,NA,500.395048722676,19,3797,0,0,0,0,9 +"4902",2011,2290,"AK","02","290",5625,0.237866666666667,384,0.142933333333333,5.95064255258773,6.32435896238131,7.30114780585603,18.8076923076923,999.091734786558,33,3303,0,0,0,0,9 +"4903",2011,1001,"AL","01","001",55229,0.800340400876351,3398,0.110503539806985,8.13094230223188,9.00810178134187,9.71703748515839,8.33076923076923,482.512754318028,157,32538,0,0,0,0,9 +"4904",2011,1003,"AL","01","003",186579,0.885683812218953,9945,0.137930849666897,9.20482519128807,10.0720059491864,10.9189537117841,8.96153846153846,430.328437768955,465,108057,0,0,0,0,9 +"4905",2011,1005,"AL","01","005",27344,0.51060561732007,1817,0.132789643066121,7.50494206839617,8.17807746384961,8.88640916684928,11.4307692307692,527.3566249176,88,16687,0,0,0,0,9 +"4906",2011,1007,"AL","01","007",22736,0.772739268121042,1537,0.122624912033779,7.3375877435386,8.09468364869882,8.73632872133291,10.4384615384615,540.84427899136,77,14237,0,0,0,0,9 +"4907",2011,1009,"AL","01","009",57561,0.973245774048401,3277,0.130418165077049,8.09468364869882,8.95428615720471,9.72627293311032,8.64615384615385,488.240547782078,164,33590,0,0,0,0,9 +"4908",2011,1011,"AL","01","011",10680,0.27565543071161,716,0.135112359550562,6.57368016696065,7.20489251020467,7.94165125293056,11.4769230769231,392.689925993052,26,6621,0,0,0,0,9 +"4909",2011,1013,"AL","01","013",20867,0.546892222168975,1204,0.138448267599559,7.09340462586877,7.77233157516961,8.75746914147075,12.3538461538462,490.942949043508,58,11814,0,0,0,0,9 +"4910",2011,1015,"AL","01","015",117767,0.773917990608575,9140,0.132702709587575,9.1204156644482,9.57796514710117,10.5018294258222,10.2923076923077,567.536889897843,400,70480,0,0,0,0,9 +"4911",2011,1017,"AL","01","017",34016,0.598718250235183,2004,0.141668626528692,7.60290046220476,8.36985260351753,9.23639790629547,11.8384615384615,560.012108369911,111,19821,0,0,0,0,9 +"4912",2011,1019,"AL","01","019",25993,0.941907436617551,1350,0.155234101488862,7.20785987143248,8.09894674894334,8.92332474406756,9.61538461538461,618.461740904007,94,15199,0,0,0,0,9 +"4913",2011,1021,"AL","01","021",43682,0.885284556567923,2626,0.126001556705279,7.87321705486274,8.67453876214002,9.46614470552994,9.09230769230769,538.885012018299,139,25794,0,0,0,0,9 +"4914",2011,1023,"AL","01","023",13608,0.563639035861258,695,0.145943562610229,6.54391184556479,7.37400185935016,8.30251371851416,13.0230769230769,481.144343302991,37,7690,0,0,0,0,9 +"4915",2011,1025,"AL","01","025",25589,0.547461799992184,1377,0.130212200554926,7.22766249872865,8.06746266701006,8.9440283252606,18.5769230769231,572.57174392936,83,14496,0,0,0,0,9 +"4916",2011,1027,"AL","01","027",13687,0.838313728355374,779,0.135237816906554,6.65801104587075,7.45414107814668,8.30696586536857,11.7153846153846,811.153358681876,64,7890,0,0,0,0,9 +"4917",2011,1029,"AL","01","029",14928,0.955050911039657,831,0.137995712754555,6.72262979485545,7.58680353516258,8.36776467792431,9.63076923076923,499.593354246543,43,8607,0,0,0,0,9 +"4918",2011,1031,"AL","01","031",50449,0.785327756744435,3161,0.1206961485857,8.05864371221562,8.79890749208823,9.59865932124938,8.06923076923077,387.179314524274,115,29702,0,0,0,0,9 +"4919",2011,1033,"AL","01","033",54545,0.82260518837657,3240,0.138784489870749,8.08332860878638,8.81254577017224,9.70265573298308,10.1307692307692,516.356537892384,164,31761,0,0,0,0,9 +"4920",2011,1035,"AL","01","035",13194,0.518341670456268,737,0.150977717144156,6.60258789218934,7.29165620917446,8.25712628599743,15.0461538461538,634.021313908,47,7413,0,0,0,0,9 +"4921",2011,1037,"AL","01","037",11483,0.6682922581207,580,0.16084646869285,6.36302810354046,7.30114780585603,8.12296471523406,12.3307692307692,684.014869888476,46,6725,0,0,0,0,9 +"4922",2011,1039,"AL","01","039",38023,0.86005838571391,2127,0.138363622018252,7.66246781520024,8.40447232135212,9.3101857069459,9.77692307692308,550.696469063816,119,21609,0,0,0,0,9 +"4923",2011,1041,"AL","01","041",13894,0.731610767237657,779,0.138692960990356,6.65801104587075,7.46278915741245,8.33086361322474,9.82307692307692,446.816432915477,36,8057,0,0,0,0,9 +"4924",2011,1043,"AL","01","043",80419,0.975478431713898,4983,0.132518434698268,8.5137873982814,9.22355270344832,10.0622845642831,9.46923076923077,500.625782227785,236,47141,0,0,0,0,9 +"4925",2011,1045,"AL","01","045",50134,0.773586787409742,3435,0.121713806997247,8.14177220465645,8.70913499158718,9.60878086514738,8.29230769230769,467.336852368625,139,29743,0,0,0,0,9 +"4926",2011,1047,"AL","01","047",43254,0.292319785453368,2851,0.132334581772784,7.95542508891267,8.46863300080086,9.50569295073218,14.9692307692308,670.044124857003,164,24476,0,0,0,0,9 +"4927",2011,1049,"AL","01","049",71335,0.943730286675545,4256,0.124903623747109,8.35608503102148,9.16868469670735,9.93784066890779,11.6923076923077,508.179266285936,210,41324,0,0,0,0,9 +"4928",2011,1051,"AL","01","051",80005,0.77531404287232,5539,0.121129929379414,8.6195692580331,9.35036314989601,10.1458060832364,8.4,385.173832378801,191,49588,0,0,0,0,9 +"4929",2011,1053,"AL","01","053",38211,0.633770380256994,2367,0.125670618408312,7.76937860951398,8.54558626591746,9.24753981296529,10.7307692307692,632.85576162433,144,22754,0,0,0,0,9 +"4930",2011,1055,"AL","01","055",104356,0.826727739660393,6437,0.139129518187742,8.76981787205262,9.52755697453028,10.3563132320041,9.98461538461538,614.116535535682,377,61389,0,0,0,0,9 +"4931",2011,1057,"AL","01","057",17061,0.876326123908329,1004,0.146064122853291,6.91174730025167,7.62168499872461,8.50855599802057,10.9769230769231,719.862110919599,71,9863,0,0,0,0,9 +"4932",2011,1059,"AL","01","059",31776,0.936398539778449,2020,0.120310926485398,7.61085279039525,8.32989929299572,9.10564630086152,9.46153846153846,684.81982716452,126,18399,0,0,0,0,9 +"4933",2011,1061,"AL","01","061",26758,0.885305329247328,1515,0.14257418342178,7.32317071794347,8.10741881171997,8.96635615479012,9.15384615384615,516.628995802389,80,15485,0,0,0,0,9 +"4934",2011,1063,"AL","01","063",8903,0.177580590812086,563,0.161855554307537,6.33327962813969,6.78445706263764,7.9208096792886,17.1076923076923,709.35960591133,36,5075,0,0,0,0,9 +"4935",2011,1065,"AL","01","065",15360,0.4052734375,933,0.139713541666667,6.83840520084734,7.41276401742656,8.44052810648075,13.6769230769231,599.47969686687,53,8841,0,0,0,0,9 +"4936",2011,1067,"AL","01","067",17377,0.70368878402486,864,0.152557978937676,6.76157276880406,7.66902828858968,8.55487425838393,9.66923076923077,532.663316582914,53,9950,0,0,0,0,9 +"4937",2011,1069,"AL","01","069",102509,0.71797598259665,6078,0.12746197894819,8.71243097347674,9.49001547402605,10.3536073011847,8.60769230769231,390.331782014713,234,59949,0,0,0,0,9 +"4938",2011,1071,"AL","01","071",53240,0.936927122464313,2946,0.142637114951165,7.98820359702258,8.86304982791909,9.66503998996204,10.2230769230769,657.304091317173,205,31188,0,0,0,0,9 +"4939",2011,1073,"AL","01","073",658175,0.551143692786873,45499,0.12796292779276,10.7254456266755,11.322660442222,12.2562380540936,9.23076923076923,531.353085752329,2123,399546,0,0,0,0,9 +"4940",2011,1075,"AL","01","075",14292,0.880632521690456,774,0.145116148894486,6.65157187358973,7.48717369421374,8.31605572036464,9.59230769230769,565.179997542696,46,8139,0,0,0,0,9 +"4941",2011,1077,"AL","01","077",92615,0.882027749284673,7443,0.134988932678292,8.91502927235991,9.30528684928514,10.2370985568763,9.09230769230769,508.812709336164,278,54637,0,0,0,0,9 +"4942",2011,1079,"AL","01","079",34026,0.810968083230471,2023,0.132751425380591,7.61233683716775,8.42398080969406,9.24271075200663,10.7769230769231,604.482012974248,123,20348,0,0,0,0,9 +"4943",2011,1081,"AL","01","081",144194,0.730605989153502,22043,0.0985685950871742,10.0007503701563,9.76949891253281,10.7402154615736,8.03076923076923,287.61479606001,259,90051,0,0,0,0,9 +"4944",2011,1083,"AL","01","083",85553,0.839619884749804,5000,0.122497165499749,8.51719319141624,9.41629707186757,10.1445103139376,8.57692307692308,445.971078301135,235,52694,0,0,0,0,9 +"4945",2011,1085,"AL","01","085",11144,0.253050969131371,847,0.13397343862168,6.74170069465205,7.11151211649616,8.15277405274407,17.5230769230769,684.185974187529,44,6431,0,0,0,0,9 +"4946",2011,1087,"AL","01","087",21299,0.164045260340861,2723,0.136109676510634,7.90948949267376,7.66199755890189,8.8293727354684,13.8846153846154,583.719814489045,73,12506,0,0,0,0,9 +"4947",2011,1089,"AL","01","089",339623,0.71231924810746,24144,0.117441987144569,10.0917911810076,10.6831564068673,11.5668547819953,8.21538461538461,363.604924276993,757,208193,0,0,0,0,9 +"4948",2011,1091,"AL","01","091",20663,0.47306780235203,1203,0.138266466631177,7.09257371597468,7.82684209815829,8.7343991500637,12.4384615384615,548.743890937152,64,11663,0,0,0,0,9 +"4949",2011,1093,"AL","01","093",30661,0.951208375460683,1719,0.138351651935684,7.44949800538285,8.28172399041139,9.0831885863157,11.0769230769231,800.270513976555,142,17744,0,0,0,0,9 +"4950",2011,1095,"AL","01","095",93899,0.953907922342091,5976,0.123228149394562,8.69550672681265,9.39590665893503,10.2097214703824,9.4,548.314440793117,297,54166,0,0,0,0,9 +"4951",2011,1097,"AL","01","097",413126,0.614935879126465,29978,0.125341905375116,10.3082190582905,10.8314301371507,11.7554951021095,10.7153846153846,520.00016365072,1271,244423,0,0,0,0,9 +"4952",2011,1099,"AL","01","099",22799,0.562042194833107,1265,0.137813061976402,7.14282740116162,7.92840602618053,8.80807015476454,15.5230769230769,639.376218323587,82,12825,0,0,0,0,9 +"4953",2011,1101,"AL","01","101",229218,0.408301267788743,19019,0.11754312488548,9.85319375848166,10.2770491116313,11.1995152439457,9.67692307692308,392.440284754092,543,138365,0,0,0,0,9 +"4954",2011,1103,"AL","01","103",120058,0.853479151743324,7308,0.127796564993586,8.8967249174979,9.66294348654175,10.4842216285171,9.4,513.904836586664,367,71414,0,0,0,0,9 +"4955",2011,1105,"AL","01","105",10452,0.305778798316112,844,0.123038652889399,6.73815249459596,6.97354301952014,8.01730750768858,16.3538461538462,748.663101604278,42,5610,0,0,0,0,9 +"4956",2011,1107,"AL","01","107",19357,0.572299426564034,1180,0.140207676809423,7.07326971745971,7.67971363996637,8.65851912750667,11.8692307692308,467.96256299496,52,11112,0,0,0,0,9 +"4957",2011,1109,"AL","01","109",33031,0.597196572916351,5436,0.11219763252702,8.60079877527103,8.15104494568502,9.25023393563786,8.85384615384615,436.356423860763,88,20167,0,0,0,0,9 +"4958",2011,1111,"AL","01","111",22751,0.788053272383632,1286,0.140609203991033,7.15929190479756,7.92117272158701,8.791486026749,11.2615384615385,590.107927634133,76,12879,0,0,0,0,9 +"4959",2011,1113,"AL","01","113",54884,0.55611835872021,3983,0.117356606661322,8.28979058318164,8.82673459822091,9.74102744483773,10.2153846153846,554.725837422658,182,32809,0,0,0,0,9 +"4960",2011,1115,"AL","01","115",83992,0.89850223830841,4789,0.128893227926469,8.47407690034261,9.37568530456302,10.1391128813524,8.70769230769231,497.648367518198,255,51241,0,0,0,0,9 +"4961",2011,1117,"AL","01","117",197968,0.860295603329831,10764,0.122817829144104,9.2839625118468,10.3002818441967,11.0414006793526,6.16923076923077,317.211831589355,385,121370,0,0,0,0,9 +"4962",2011,1119,"AL","01","119",13491,0.247943073159884,1631,0.13334815803128,7.39694860262101,7.23561914106675,8.37170488466763,13,652.507676560901,51,7816,0,0,0,0,9 +"4963",2011,1121,"AL","01","121",81875,0.668225954198473,5144,0.137526717557252,8.54558626591746,9.30764855444318,10.1230246082562,11.4846153846154,617.031709709055,302,48944,0,0,0,0,9 +"4964",2011,1123,"AL","01","123",41414,0.717390254503308,2403,0.147993432172695,7.78447323573647,8.53109609658523,9.41914156157452,11.3076923076923,602.985819436936,145,24047,0,0,0,0,9 +"4965",2011,1125,"AL","01","125",196788,0.678181596438807,28298,0.111729373742301,10.2505464097559,10.0350858278929,11.0526662047749,8.29230769230769,426.006777010296,523,122768,0,0,0,0,9 +"4966",2011,1127,"AL","01","127",66586,0.928077974348962,3914,0.142402306791217,8.27231514795602,9.04570155003454,9.89495122151384,11.2,875.245604633953,343,39189,0,0,0,0,9 +"4967",2011,1129,"AL","01","129",17356,0.66466927863563,987,0.137301221479604,6.89467003943348,7.66809370908241,8.53915035876828,14.4076923076923,452.034153691612,45,9955,0,0,0,0,9 +"4968",2011,1131,"AL","01","131",11438,0.267704144081133,643,0.141196013289037,6.46614472423762,7.1608459066643,8.12266802334641,22.9153846153846,847.457627118644,54,6372,0,0,0,0,9 +"4969",2011,1133,"AL","01","133",24362,0.977259666694032,1308,0.145185124374025,7.17625453201714,8.03527891114467,8.86149186428691,13.3769230769231,607.430428026557,86,14158,0,0,0,0,9 +"4970",2011,5001,"AR","05","001",18915,0.737192704203014,1030,0.1451757864129,6.93731408122368,7.72090525193678,8.63141433550626,11.6384615384615,630.540071278443,69,10943,0,0,0,0,9 +"4971",2011,5003,"AR","05","003",21678,0.727050465910139,1227,0.135021680966879,7.11232744471091,7.91935619066062,8.7649903301691,10.5,527.940220922677,65,12312,0,0,0,0,9 +"4972",2011,5005,"AR","05","005",41354,0.98353242733472,1769,0.157638922474247,7.47816969415979,8.30474226964077,9.32865659879423,8.88461538461539,545.302013422819,117,21456,0,0,0,0,9 +"4973",2011,5007,"AR","05","007",229208,0.922493979267739,13506,0.101532232731842,9.51088931013479,10.3762374074499,11.1097128181654,6.18461538461538,334.011477848966,440,131732,0,0,0,0,9 +"4974",2011,5009,"AR","05","009",37093,0.980562370258539,2152,0.132181274094843,7.67415292128168,8.41049845274527,9.27340906344317,7.58461538461538,447.555111174594,94,21003,0,0,0,0,9 +"4975",2011,5011,"AR","05","011",11432,0.69926522043387,739,0.131473058082575,6.6052979209482,7.23128700432762,8.10107150311954,11.5615384615385,523.802187644431,34,6491,0,0,0,0,9 +"4976",2011,5013,"AR","05","013",5241,0.775615340583858,344,0.148444953253196,5.8406416573734,6.45990445437753,7.31388683163346,9.09230769230769,509.391913403375,16,3141,0,0,0,0,9 +"4977",2011,5015,"AR","05","015",27478,0.969430089526166,1411,0.159764174976345,7.25205395185281,8.00803284696931,8.9572529442889,6.89230769230769,608.611201035934,94,15445,0,0,0,0,9 +"4978",2011,5017,"AR","05","017",11706,0.442849820604818,701,0.137963437553391,6.55250788703459,7.13489085156588,8.07558263667172,12.5461538461538,623.668999087314,41,6574,0,0,0,0,9 +"4979",2011,5019,"AR","05","019",22937,0.743166063565418,3430,0.112307625234338,8.14031554015999,7.72134861261795,8.8385517902274,9.8,443.309038996168,59,13309,0,0,0,0,9 +"4980",2011,5021,"AR","05","021",15876,0.987717309145881,866,0.137125220458554,6.76388490856244,7.56734567601324,8.39276311303806,11.6,699.616339426766,62,8862,0,0,0,0,9 +"4981",2011,5023,"AR","05","023",25888,0.984201174289246,1280,0.143580037082818,7.15461535691366,7.92008319905323,8.85794198480471,8.76923076923077,552.095130237826,78,14128,0,0,0,0,9 +"4982",2011,5025,"AR","05","025",8673,0.877435720050732,445,0.137899227487605,6.09807428216624,6.98378996525813,7.82204400818562,8.16153846153846,405.844155844156,20,4928,0,0,0,0,9 +"4983",2011,5027,"AR","05","027",24707,0.614967418140608,2475,0.116282834824139,7.81399567500279,7.89766815072691,8.8805855231025,9.59230769230769,619.551905482314,86,13881,0,0,0,0,9 +"4984",2011,5029,"AR","05","029",21127,0.871349458039475,1245,0.132673829696597,7.12689080889881,7.80710329012598,8.70682132339263,9.42307692307692,465.270854104354,56,12036,0,0,0,0,9 +"4985",2011,5031,"AR","05","031",98420,0.841587075797602,9061,0.10705141231457,9.11173476822206,9.41515700659751,10.3070174560098,7.05384615384615,442.356959863365,259,58550,0,0,0,0,9 +"4986",2011,5033,"AR","05","033",61816,0.938947845218067,3748,0.124627928044519,8.22897764335831,8.98029807897082,9.80377770838712,8.46153846153846,538.679402454601,194,36014,0,0,0,0,9 +"4987",2011,5035,"AR","05","035",50517,0.469129204030326,3219,0.114911811865313,8.07682603129881,8.75935474856621,9.6486598169553,10.4153846153846,667.630256727923,194,29058,0,0,0,0,9 +"4988",2011,5037,"AR","05","037",17813,0.762589120305395,960,0.129680570369955,6.86693328446188,7.70706265537047,8.56274000637221,7.99230769230769,553.141050967997,56,10124,0,0,0,0,9 +"4989",2011,5039,"AR","05","039",8056,0.561072492552135,438,0.149577954319762,6.08221891037645,6.7990558620588,7.73017479524622,11.4923076923077,793.475865109103,36,4537,0,0,0,0,9 +"4990",2011,5041,"AR","05","041",12726,0.504793336476505,746,0.135313531353135,6.61472560020376,7.21081845347222,8.2393294279018,10.6230769230769,714.88645920942,51,7134,0,0,0,0,9 +"4991",2011,5043,"AR","05","043",18735,0.7016279690419,1808,0.119295436349079,7.49997654095212,7.63819824428578,8.62047154086974,10.9076923076923,429.384859516475,46,10713,0,0,0,0,9 +"4992",2011,5045,"AR","05","045",116307,0.867755165209317,14277,0.100157342206402,9.56640512978922,9.58527754171539,10.5113491388137,6.81538461538462,289.879193886184,209,72099,0,0,0,0,9 +"4993",2011,5047,"AR","05","047",18006,0.966955459291347,1071,0.132344773964234,6.97634807044775,7.69666708152646,8.52357279838028,7.30769230769231,718.574662860518,73,10159,0,0,0,0,9 +"4994",2011,5049,"AR","05","049",12236,0.983164432821183,560,0.162062765609676,6.3279367837292,7.16780918431644,8.13944052187461,7.41538461538462,626.491646778043,42,6704,0,0,0,0,9 +"4995",2011,5051,"AR","05","051",96884,0.896247058337806,5374,0.146463812394203,8.58932778917544,9.2924732015147,10.2365611632225,8.33846153846154,623.041474654378,338,54250,0,0,0,0,9 +"4996",2011,5053,"AR","05","053",17950,0.965571030640669,1000,0.128356545961003,6.90775527898214,7.77233157516961,8.57300625623545,7.02307692307692,500.283179158014,53,10594,0,0,0,0,9 +"4997",2011,5055,"AR","05","055",42767,0.982182523908621,2727,0.120490097505086,7.91095738284559,8.64699262895108,9.43859086065854,9.26153846153846,470.521997908791,117,24866,0,0,0,0,9 +"4998",2011,5057,"AR","05","057",22498,0.682282869588408,1326,0.126455684949773,7.18992217074581,7.87359778968554,8.78920309447372,8.4,534.9697112737,68,12711,0,0,0,0,9 +"4999",2011,5059,"AR","05","059",33145,0.875456328254639,1976,0.14110725599638,7.58882987830781,8.29853954537488,9.14088310696096,7.89230769230769,570.03679328393,110,19297,0,0,0,0,9 +"5000",2011,5061,"AR","05","061",13817,0.769776362452052,805,0.122168343345155,6.69084227741856,7.39203156751459,8.29654652030061,7.11538461538462,556.346228490102,43,7729,0,0,0,0,9 +"5001",2011,5063,"AR","05","063",36887,0.958305093935533,2295,0.128554775395126,7.73848812249465,8.43641688138895,9.27303344131461,8.92307692307692,433.328623239602,92,21231,0,0,0,0,9 +"5002",2011,5065,"AR","05","065",13579,0.970248177332646,623,0.153472273363282,6.43454651878745,7.31721240835984,8.17244681834278,9.47692307692308,599.600266489007,45,7505,0,0,0,0,9 +"5003",2011,5067,"AR","05","067",17898,0.817353894289865,1148,0.131299586545983,7.04577657687951,7.77569574991525,8.60245303536706,11.1307692307692,521.405049396268,57,10932,0,0,0,0,9 +"5004",2011,5069,"AR","05","069",76039,0.427504307000355,5797,0.132589855205881,8.66509582133973,9.09593911166621,10.0312209190457,10.6769230769231,571.958571649405,259,45283,0,0,0,0,9 +"5005",2011,5071,"AR","05","071",25683,0.95615776973095,1857,0.117937935599424,7.52671756135271,8.03040956213048,8.90163893230033,7.50769230769231,452.519248953127,67,14806,0,0,0,0,9 +"5006",2011,5073,"AR","05","073",7528,0.615170031880978,452,0.139479277364506,6.11368217983223,6.71174039505618,7.67136092319064,9.11538461538461,677.47398983789,28,4133,0,0,0,0,9 +"5007",2011,5075,"AR","05","075",17281,0.982466292459927,1153,0.126728777269834,7.05012252026906,7.614312146452,8.49780647761605,9.41538461538462,593.997498957899,57,9596,0,0,0,0,9 +"5008",2011,5077,"AR","05","077",10282,0.429391169033262,683,0.135868508072359,6.52649485957079,7.21007962817079,7.8164169836918,9.06153846153846,771.289154730049,49,6353,0,0,0,0,9 +"5009",2011,5079,"AR","05","079",14344,0.68760457334077,1193,0.116843279419967,7.08422642209792,7.66809370908241,8.05102220819068,8.93846153846154,334.990274475902,31,9254,0,0,0,0,9 +"5010",2011,5081,"AR","05","081",12949,0.775272221793189,679,0.141478106417484,6.5206211275587,7.38894609761844,8.2398574110186,7.46153846153846,502.785704579427,37,7359,0,0,0,0,9 +"5011",2011,5083,"AR","05","083",22241,0.950991412256643,1156,0.13227822489996,7.05272104923232,7.87511928104029,8.73745258755058,8.4,499.55684473451,62,12411,0,0,0,0,9 +"5012",2011,5085,"AR","05","085",69537,0.919280383105397,4252,0.109078620015244,8.35514473946184,9.19695113485717,9.94251593950361,6.63076923076923,442.854709589508,182,41097,0,0,0,0,9 +"5013",2011,5087,"AR","05","087",15665,0.970571337376317,841,0.143376954995212,6.73459165997295,7.55276208421415,8.40760151478614,6.45384615384615,472.579404330146,43,9099,0,0,0,0,9 +"5014",2011,5089,"AR","05","089",16676,0.98278963780283,762,0.181818181818182,6.63594655568665,7.39141523467536,8.45276133125685,8.97692307692308,579.772385656002,54,9314,0,0,0,0,9 +"5015",2011,5091,"AR","05","091",43777,0.736870959636339,2930,0.125819494254974,7.98275770201111,8.6213730103259,9.48303570211964,6.04615384615385,576.41317296238,150,26023,0,0,0,0,9 +"5016",2011,5093,"AR","05","093",45988,0.640101765678003,3072,0.117813342611116,8.03008409426756,8.61776224633793,9.50680873170858,11.5076923076923,668.947168377043,176,26310,0,0,0,0,9 +"5017",2011,5095,"AR","05","095",8099,0.573527595999506,448,0.151994073342388,6.10479323241498,6.78784498230958,7.74975340627444,9.05384615384615,801.424755120214,36,4492,0,0,0,0,9 +"5018",2011,5097,"AR","05","097",9404,0.974053594215228,449,0.154402381965121,6.10702288774225,6.90073066404517,7.83913164827433,8.86153846153846,524.679362611737,27,5146,0,0,0,0,9 +"5019",2011,5099,"AR","05","099",9007,0.677028977461974,505,0.140446319529255,6.22455842927536,6.94697599213542,7.85554467791566,9.02307692307692,596.184419713832,30,5032,0,0,0,0,9 +"5020",2011,5101,"AR","05","101",8252,0.978550654386815,417,0.162627241880756,6.0330862217988,6.75227037614174,7.73587031995257,7.13076923076923,450.934077732446,21,4657,0,0,0,0,9 +"5021",2011,5103,"AR","05","103",25738,0.580153858108633,1466,0.147913590799596,7.2902928824466,7.93415523353632,8.95312284032822,10,630.722278738555,93,14745,0,0,0,0,9 +"5022",2011,5105,"AR","05","105",10384,0.966872110939908,573,0.13771186440678,6.35088571671474,7.19518732017871,8.00235954625271,8.88461538461539,501.672240802676,30,5980,0,0,0,0,9 +"5023",2011,5107,"AR","05","107",21407,0.360816555332368,1367,0.129069930396599,7.22037383672395,7.68202151082687,8.74846362994206,11.6384615384615,884.955752212389,102,11526,0,0,0,0,9 +"5024",2011,5109,"AR","05","109",11239,0.950440430643296,614,0.127146543286769,6.41999492814714,7.29301767977278,8.04686951095958,9.44615384615385,558.480931865326,35,6267,0,0,0,0,9 +"5025",2011,5111,"AR","05","111",24445,0.915606463489466,1503,0.132092452444263,7.31521838975297,8.02027047281924,8.87262736591884,9.1,713.928749910759,100,14007,0,0,0,0,9 +"5026",2011,5113,"AR","05","113",20560,0.966536964980545,1010,0.145087548638132,6.9177056098353,7.74500280351584,8.64488255255713,7.63076923076923,516.381766381766,58,11232,0,0,0,0,9 +"5027",2011,5115,"AR","05","115",62694,0.944093533671484,6427,0.114875426675599,8.76826314537129,8.90136656405678,9.82086652384779,7.43846153846154,395.685403002873,146,36898,0,0,0,0,9 +"5028",2011,5117,"AR","05","117",8604,0.869479311947931,420,0.148186889818689,6.04025471127741,6.94697599213542,7.80954132465341,8.29230769230769,697.722142417402,34,4873,0,0,0,0,9 +"5029",2011,5119,"AR","05","119",387081,0.60834295664215,27003,0.126131223180678,10.2037032499252,10.8195582602067,11.7233079389818,7.09230769230769,435.350823006358,1036,237969,0,0,0,0,9 +"5030",2011,5121,"AR","05","121",17972,0.981693745826842,1074,0.133874916536835,6.97914527506881,7.646353722446,8.52317526309379,10.7769230769231,584.563558902209,59,10093,0,0,0,0,9 +"5031",2011,5123,"AR","05","123",27934,0.45489367795518,1702,0.125438533686547,7.43955930913332,8.25660734462616,8.88364023250367,10.6384615384615,604.40518393677,104,17207,0,0,0,0,9 +"5032",2011,5125,"AR","05","125",109554,0.929249502528433,5655,0.125107253044161,8.64029538855022,9.61420419871737,10.3891492026386,6.33846153846154,401.119402985075,258,64320,0,0,0,0,9 +"5033",2011,5127,"AR","05","127",11241,0.929988435192599,680,0.124366159594342,6.52209279817015,7.14913159855741,8.02486215028641,6.72307692307692,435.624394966118,27,6198,0,0,0,0,9 +"5034",2011,5129,"AR","05","129",8077,0.977838306301845,359,0.164788906772316,5.88332238848828,6.75809450442773,7.70751219460034,8.74615384615385,730.411686586985,33,4518,0,0,0,0,9 +"5035",2011,5131,"AR","05","131",127067,0.853958935050013,8930,0.120904719557399,9.09717167387054,9.68707132197135,10.5417296609267,8.26923076923077,422.486405800192,317,75032,0,0,0,0,9 +"5036",2011,5133,"AR","05","133",17219,0.911144665776177,1079,0.107323305650735,6.98378996525813,7.71824095195932,8.45083969086622,8.73846153846154,505.689001264223,48,9492,0,0,0,0,9 +"5037",2011,5135,"AR","05","135",17264,0.976193234476367,804,0.15210843373494,6.68959926917897,7.50549227473742,8.44203851781548,10.2615384615385,680.794992862633,62,9107,0,0,0,0,9 +"5038",2011,5137,"AR","05","137",12505,0.983046781287485,552,0.161935225909636,6.3135480462771,7.13169851046691,8.13914867888407,8.49230769230769,612.691466083151,42,6855,0,0,0,0,9 +"5039",2011,5139,"AR","05","139",41404,0.653463433484687,2382,0.137667858177954,7.77569574991525,8.51919119407891,9.41368929596221,10.1307692307692,602.609924362065,145,24062,0,0,0,0,9 +"5040",2011,5141,"AR","05","141",17212,0.978270973739252,828,0.147571461770858,6.71901315438526,7.51860721681525,8.45510499910282,10.6,564.009790358625,53,9397,0,0,0,0,9 +"5041",2011,5143,"AR","05","143",208088,0.899407942793434,22624,0.0966225827534505,10.0267665686963,10.1745065640914,11.0359536139607,6,318.410947647868,403,126566,0,0,0,0,9 +"5042",2011,5145,"AR","05","145",78087,0.939977204912469,6981,0.113411963579085,8.8509474519704,9.15588418618012,10.0415088504335,8.26153846153846,437.766729728541,199,45458,0,0,0,0,9 +"5043",2011,5147,"AR","05","147",7175,0.716376306620209,355,0.155121951219512,5.87211778947542,6.74641212857337,7.6425241342329,10.4461538461538,730.638090599123,30,4106,0,0,0,0,9 +"5044",2011,5149,"AR","05","149",21965,0.954518552242203,1307,0.123195993626224,7.17548971362422,7.90948949267376,8.7106195279423,7.11538461538461,468.611133554173,58,12377,0,0,0,0,9 +"5045",2011,4001,"AZ","04","001",72181,0.243679084523628,5094,0.112993724110223,8.5358186555394,8.9851948179913,9.87086104970903,18.3307692307692,609.915028931867,234,38366,0,0,0,0,9 +"5046",2011,4003,"AZ","04","003",133124,0.89902647156035,8826,0.134603828009976,9.08545718982949,9.57519179719905,10.5049853444118,9.46923076923077,376.882754959857,284,75355,0,0,0,0,9 +"5047",2011,4005,"AZ","04","005",134309,0.673030102226954,17088,0.117319018085162,9.74613174175992,9.62026220080129,10.637656707619,9.47692307692308,352.078711295457,292,82936,0,0,0,0,9 +"5048",2011,4007,"AZ","04","007",53445,0.822621386472074,2701,0.16519786696604,7.90137735379262,8.4885879344059,9.56036323983454,11.4923076923077,698.854162971372,197,28189,0,0,0,0,9 +"5049",2011,4009,"AZ","04","009",37129,0.817339545907512,3119,0.101699480190687,8.0452677166078,8.42200300441249,9.12129055514267,9.9,321.057601510859,68,21180,0,0,0,0,9 +"5050",2011,4011,"AZ","04","011",8587,0.935833236287411,500,0.118318388261325,6.21460809842219,6.93049476595163,7.72223474470961,10.9846153846154,411.353352529823,20,4862,0,0,0,0,9 +"5051",2011,4012,"AZ","04","012",20606,0.797680287294963,829,0.153498980879356,6.7202201551353,7.38956395367764,8.47720418319987,9.8,696.569920844327,66,9475,0,0,0,0,9 +"5052",2011,4013,"AZ","04","013",3875371,0.865133170475807,276010,0.107954309406764,12.528192375927,13.1761714071927,13.9550898749688,8.5,288.240345678212,6582,2283511,0,0,0,0,9 +"5053",2011,4015,"AZ","04","015",202888,0.938655810102125,9897,0.160709356886558,9.19998695989669,9.89847501071258,10.9045237628563,12.2,630.051432770022,686,108880,0,0,0,0,9 +"5054",2011,4017,"AZ","04","017",107560,0.525139457047229,7266,0.124153960580141,8.89096121278115,9.36349055146986,10.2706275463226,14.7307692307692,574.573814617986,333,57956,0,0,0,0,9 +"5055",2011,4019,"AZ","04","019",988500,0.873745068285281,80760,0.126948912493677,11.2992370724268,11.6521133295508,12.5787528196923,8.43846153846154,377.438668375649,2185,578902,0,0,0,0,9 +"5056",2011,4021,"AZ","04","021",378114,0.845557160009944,21502,0.118083435154477,9.97590123304517,10.8300651922784,11.5041873990269,9.67692307692308,315.758117366696,689,218205,0,0,0,0,9 +"5057",2011,4023,"AZ","04","023",47640,0.972019311502939,2758,0.119647355163728,7.92226105835325,8.62837672037685,9.51199931135876,15.3615384615385,207.130053774149,52,25105,0,0,0,0,9 +"5058",2011,4025,"AZ","04","025",211081,0.953823413760594,10255,0.176543601745302,9.23552067050648,9.89847501071258,10.9800075947294,9.79230769230769,476.688453159041,547,114750,0,0,0,0,9 +"5059",2011,4027,"AZ","04","027",202881,0.927282495650159,17811,0.094755053454981,9.78757152293879,10.0398524270566,10.8676156138244,24.0230769230769,302.547770700637,323,106760,0,0,0,0,9 +"5060",2011,6001,"CA","06","001",1530893,0.547365491905705,110005,0.118545188984469,11.608281098287,12.3385822663236,13.1121170627523,10.2615384615385,256.854680868333,2500,973313,0,0,0,0,9 +"5061",2011,6005,"CA","06","005",37539,0.925703934574709,1658,0.181784277684541,7.41336733569524,8.37447688921464,9.18152929012206,13.8384615384615,348.140313766966,79,22692,0,0,0,0,9 +"5062",2011,6007,"CA","06","007",219983,0.894782778669261,24812,0.134469481732679,10.119082686093,10.04094248799,11.088537442505,13.8923076923077,377.522206069278,496,131383,0,0,0,0,9 +"5063",2011,6009,"CA","06","009",45159,0.944241457959654,1942,0.189242454438761,7.57147364885127,8.372398606513,9.46622213187817,14.2769230769231,486.646422175504,125,25686,0,0,0,0,9 +"5064",2011,6011,"CA","06","011",21315,0.929486277269528,1321,0.114285714285714,7.18614430452233,7.87549929244521,8.65747673686329,21.7846153846154,335.289186923722,40,11930,0,0,0,0,9 +"5065",2011,6013,"CA","06","013",1065361,0.70734427109684,62721,0.126462297756347,11.0464515987747,11.9050013359594,12.7020211517363,10.4846153846154,261.033205852,1677,642447,0,0,0,0,9 +"5066",2011,6015,"CA","06","015",28447,0.815938411783316,1814,0.134566035082786,7.50328963067508,8.22013395715186,8.88737648537976,13.5461538461538,545.474785706334,98,17966,0,0,0,0,9 +"5067",2011,6017,"CA","06","017",180963,0.92458126799401,9567,0.162303896376607,9.16607495567817,9.95840178341352,10.9034206593469,11.9153846153846,300.496232310237,327,108820,0,0,0,0,9 +"5068",2011,6019,"CA","06","019",939251,0.790389363439592,78214,0.0984252345752094,11.2672039386428,11.6476136882081,12.4929418877249,16.8153846153846,321.782316497489,1728,537009,0,0,0,0,9 +"5069",2011,6021,"CA","06","021",28131,0.916924389463581,1830,0.121751804059578,7.51207124583547,8.08948247436075,8.95544812234739,15.7769230769231,335.506741786415,53,15797,0,0,0,0,9 +"5070",2011,6023,"CA","06","023",135257,0.873928890926163,12656,0.147940587178482,9.44588669000744,9.63658801926688,10.6417992850504,10.7076923076923,422.104644326867,359,85050,0,0,0,0,9 +"5071",2011,6025,"CA","06","025",175731,0.904871650420245,13915,0.0988727088561495,9.54072267395999,10.018823151216,10.7719946135565,29.2615384615385,245.484659673476,249,101432,0,0,0,0,9 +"5072",2011,6027,"CA","06","027",18385,0.835463693228175,869,0.162632580908349,6.76734312526539,7.56631101477246,8.55333223803211,9.89230769230769,434.003207849797,46,10599,0,0,0,0,9 +"5073",2011,6029,"CA","06","029",848651,0.84530036493211,68407,0.0955811046001242,11.1332304375556,11.5927342991436,12.3544624777795,15.0923076923077,357.96248000309,1761,491951,0,0,0,0,9 +"5074",2011,6031,"CA","06","031",151779,0.83267777492275,13076,0.087113500550142,9.4785337678441,9.96735397286454,10.5269362555849,16.1923076923077,271.684549923358,257,94595,0,0,0,0,9 +"5075",2011,6033,"CA","06","033",64258,0.904011951819229,3501,0.170360110803324,8.16080392095467,8.81996090128606,9.84463947672692,14.7769230769231,657.458710002386,248,37721,0,0,0,0,9 +"5076",2011,6035,"CA","06","035",34235,0.835022637651526,2867,0.121191762815832,7.96102146588337,8.59044365315583,8.8848872018374,13.7769230769231,292.801271594094,70,23907,0,0,0,0,9 +"5077",2011,6037,"CA","06","037",9873700,0.730987876885058,772706,0.107189705986611,13.5576539188715,14.1640913323162,14.9397818214127,12.2153846153846,244.580138791094,14957,6115378,0,0,0,0,9 +"5078",2011,6039,"CA","06","039",151685,0.87555130698487,11346,0.108118798826515,9.33662053788651,9.85029772402201,10.7380040785586,16.4384615384615,312.278373864702,273,87422,0,0,0,0,9 +"5079",2011,6041,"CA","06","041",255380,0.881905395880648,10211,0.159957710079098,9.23122084955554,10.4814202708289,11.2517944397505,7.4,203.169972519959,312,153566,0,0,0,0,9 +"5080",2011,6043,"CA","06","043",18199,0.928402659486785,876,0.184790373097423,6.77536609093639,7.46565531013406,8.5657928612523,13.4769230769231,419.463087248322,45,10728,0,0,0,0,9 +"5081",2011,6045,"CA","06","045",87335,0.890295986717811,4825,0.16694337894315,8.48156601377309,9.22601685136119,10.1581297709097,11.5769230769231,409.796825032075,214,52221,0,0,0,0,9 +"5082",2011,6047,"CA","06","047",259249,0.835339769873751,21589,0.0913831875918518,9.97993920469646,10.3720839420844,11.1724331586861,17.9461538461538,322.178341301185,465,144330,0,0,0,0,9 +"5083",2011,6049,"CA","06","049",9513,0.912225375801535,390,0.172290549773993,5.96614673912369,6.93244789157251,7.88344635413774,16.2615384615385,339.174674957603,18,5307,0,0,0,0,9 +"5084",2011,6051,"CA","06","051",14424,0.938782584581254,1073,0.138935108153078,6.9782137426307,7.54644627374602,8.39117635083275,10.3153846153846,157.232704402516,15,9540,0,0,0,0,9 +"5085",2011,6053,"CA","06","053",420379,0.844395176733376,32965,0.106491998886719,10.4032016715474,10.9153066222346,11.6776175314944,12.9692307692308,223.068574563775,557,249699,0,0,0,0,9 +"5086",2011,6055,"CA","06","055",137668,0.873405584449545,8465,0.133088299386931,9.04369529456724,9.78131991856192,10.6021693885945,9.96923076923077,264.624808575804,216,81625,0,0,0,0,9 +"5087",2011,6057,"CA","06","057",98716,0.958172940556749,4620,0.18696057376717,8.43814998407578,9.23912217340163,10.282677129232,11.2923076923077,309.565576307915,180,58146,0,0,0,0,9 +"5088",2011,6059,"CA","06","059",3050199,0.765665453303211,223612,0.110975710109406,12.317667686086,12.9836689650162,13.7510157692038,9.26153846153846,208.989715351191,3905,1868513,0,0,0,0,9 +"5089",2011,6061,"CA","06","061",356323,0.890607678987885,19203,0.12989338325059,9.86282179581011,10.7477665751,11.5609153089689,11.0384615384615,273.648828637713,565,206469,0,0,0,0,9 +"5090",2011,6063,"CA","06","063",19720,0.935750507099391,981,0.199137931034483,6.88857245956536,7.47873482556787,8.65591111072806,17.9307692307692,356.428757715379,41,11503,0,0,0,0,9 +"5091",2011,6065,"CA","06","065",2233840,0.826375210400029,165543,0.101391773806539,12.0169862587833,12.5902358029183,13.3654224908138,13.4,286.038770315254,3652,1276750,0,0,0,0,9 +"5092",2011,6067,"CA","06","067",1433712,0.678881811688819,105870,0.114114968696642,11.5699672053374,12.1560890194683,13.0011828267245,12.3230769230769,330.170159322026,2876,871066,0,0,0,0,9 +"5093",2011,6069,"CA","06","069",56094,0.907458908261133,3645,0.112614539879488,8.20111164444276,8.92239159729586,9.70253348359417,14.7769230769231,219.472047796135,72,32806,0,0,0,0,9 +"5094",2011,6071,"CA","06","071",2060596,0.792540119460583,167970,0.100814521623841,12.031540671011,12.5138036384749,13.3225674185457,13.0846153846154,313.553626964954,3812,1215741,0,0,0,0,9 +"5095",2011,6073,"CA","06","073",3137236,0.79059401332893,274560,0.110164807492965,12.5229250952817,12.94861694888,13.7770004722555,10.5153846153846,243.188972437221,4762,1958148,0,0,0,0,9 +"5096",2011,6075,"CA","06","075",815694,0.563802112066535,57507,0.122772755469576,10.9596619585063,11.8092971729426,12.531747514092,8.17692307692308,246.433563522977,1421,576626,0,0,0,0,9 +"5097",2011,6077,"CA","06","077",694265,0.709154285467365,51044,0.104022239346647,10.8404432848539,11.4140549547045,12.2021901182659,16.4692307692308,364.421446515204,1455,399263,0,0,0,0,9 +"5098",2011,6079,"CA","06","079",271056,0.912626911044212,28494,0.142199397910395,10.2574488177772,10.2852404006845,11.2715415653662,9.71538461538461,292.41005212527,483,165179,0,0,0,0,9 +"5099",2011,6081,"CA","06","081",728945,0.660968934556105,40338,0.127513049681389,10.6050492316971,11.5919214711967,12.3353054373945,7.66153846153846,207.654956988915,940,452674,0,0,0,0,9 +"5100",2011,6083,"CA","06","083",425404,0.882854886178785,45671,0.10969102312155,10.7292188021513,10.8076247282377,11.7218889527106,9.54615384615385,224.757404706032,567,252272,0,0,0,0,9 +"5101",2011,6085,"CA","06","085",1811891,0.600679069546678,114740,0.107768072141205,11.6504239781559,12.5415837060839,13.2268062721769,9.47692307692308,190.059439027548,2143,1127542,0,0,0,0,9 +"5102",2011,6087,"CA","06","087",264927,0.901361507132153,26062,0.140778403107271,10.1682335937049,10.3903790260065,11.3187701648147,13.3153846153846,266.912491263587,443,165972,0,0,0,0,9 +"5103",2011,6089,"CA","06","089",177613,0.914330595170399,11609,0.148508273606099,9.35953593833804,9.86000577392417,10.8687969938898,16.2076923076923,540.399450900021,559,103442,0,0,0,0,9 +"5104",2011,6093,"CA","06","093",44622,0.903814262023217,2266,0.18152480839048,7.72577144158795,8.3959291039232,9.46109909032337,17.2846153846154,522.367542516005,133,25461,0,0,0,0,9 +"5105",2011,6095,"CA","06","095",416325,0.631083888788807,30234,0.128810424548129,10.3167223979087,10.8795743277562,11.7517927479494,12.3846153846154,330.672614614326,848,256447,0,0,0,0,9 +"5106",2011,6097,"CA","06","097",487231,0.899774439639514,32596,0.146384363884892,10.3919448604401,10.9994630345497,11.9186838633979,10.3923076923077,269.754677198032,806,298790,0,0,0,0,9 +"5107",2011,6099,"CA","06","099",517515,0.866245422837985,38825,0.105622059263983,10.5668196480169,11.0985306050409,11.9265571357448,16.7923076923077,340.041938505749,1020,299963,0,0,0,0,9 +"5108",2011,6101,"CA","06","101",94466,0.774384434611395,6613,0.110283064806385,8.79679268767466,9.359966545932,10.2063291367457,18.4769230769231,382.342076099003,207,54140,0,0,0,0,9 +"5109",2011,6103,"CA","06","103",63337,0.931809211045676,3718,0.134771144828457,8.22094116828139,8.86911686592948,9.78667279794429,15.2384615384615,431.05861277501,154,35726,0,0,0,0,9 +"5110",2011,6105,"CA","06","105",13685,0.911874314943369,540,0.200438436244063,6.29156913955832,7.2291138777933,8.27995071572253,17.0076923076923,552.893475856985,45,8139,0,0,0,0,9 +"5111",2011,6107,"CA","06","107",446709,0.899032703616896,33784,0.0927180782119904,10.4277425966138,10.9144882841426,11.7097496812983,17.4,335.466891935798,826,246224,0,0,0,0,9 +"5112",2011,6109,"CA","06","109",54808,0.929937235440082,3052,0.175430594073858,8.02355239240435,8.66181288102618,9.59981159033,14.7230769230769,387.006338371526,127,32816,0,0,0,0,9 +"5113",2011,6111,"CA","06","111",829908,0.869581929563277,58066,0.118120321770606,10.9693355736103,11.6012110298376,12.4187455706611,10.4307692307692,252.634545509446,1255,496765,0,0,0,0,9 +"5114",2011,6113,"CA","06","113",201931,0.786847982726773,29114,0.102584546206377,10.2789744371246,10.0681965820132,11.0688234732471,11.9769230769231,227.046405098586,285,125525,0,0,0,0,9 +"5115",2011,6115,"CA","06","115",72480,0.827455849889625,5512,0.110692604856512,8.6146828126935,9.06473639811739,9.94979845539938,17.2538461538462,416.124837451235,176,42295,0,0,0,0,9 +"5116",2011,8001,"CO","08","001",452209,0.889847393572441,30309,0.098757432956885,10.3191999770958,11.1090091568519,11.8141997434414,10.2769230769231,305.629281917422,836,273534,0,0,0,0,9 +"5117",2011,8003,"CO","08","003",15715,0.904040725421572,1764,0.119630925867006,7.47533923656674,7.37650812632622,8.43620003220671,10.0615384615385,323.764299589899,30,9266,0,0,0,0,9 +"5118",2011,8005,"CO","08","005",586433,0.807388056265592,35872,0.121098232875708,10.4877123258719,11.3365462176319,12.1305513674376,8.6,266.904159899856,968,362677,0,0,0,0,9 +"5119",2011,8007,"CO","08","007",12027,0.947867298578199,440,0.207200465619024,6.08677472691231,7.0647590277918,8.19007704971905,10.4769230769231,389.105058365759,28,7196,0,0,0,0,9 +"5120",2011,8011,"CO","08","011",6424,0.871886674968867,458,0.128580323785803,6.12686918411419,6.94505106372583,7.05185562295589,8.57692307692308,260.972716488731,11,4215,0,0,0,0,9 +"5121",2011,8013,"CO","08","013",300045,0.926860970854372,31681,0.124754620140312,10.3634724110867,10.6114987147446,11.4607791753067,6.74615384615385,199.120335229222,383,192346,0,0,0,0,9 +"5122",2011,8014,"CO","08","014",57485,0.905488388275202,3190,0.115038705749326,8.06777619577889,9.12325626506907,9.78712226140486,7.27692307692308,181.189719574065,65,35874,0,0,0,0,9 +"5123",2011,8015,"CO","08","015",18035,0.959800388134184,853,0.180149708899362,6.74875954749168,7.64156444126097,8.50410795186758,7.54615384615385,336.730979250091,37,10988,0,0,0,0,9 +"5124",2011,8019,"CO","08","019",9012,0.972259209942299,298,0.204505104305371,5.6970934865054,7.1708884785125,7.9844627322622,7.63076923076923,210.970464135021,13,6162,0,0,0,0,9 +"5125",2011,8021,"CO","08","021",8291,0.943794475937764,470,0.137016041490773,6.1527326947041,6.76041469108343,7.68432406768116,10.8692307692308,474.040632054176,21,4430,0,0,0,0,9 +"5126",2011,8029,"CO","08","029",30398,0.96874794394368,1367,0.163398907822883,7.22037383672395,8.05706068196577,9.01930092456251,10.8230769230769,428.750074435777,72,16793,0,0,0,0,9 +"5127",2011,8031,"CO","08","031",620250,0.820037081821846,45615,0.105059250302297,10.7279918887796,11.4489627780083,12.2119056007226,8.9,343.168037049393,1399,407672,0,0,0,0,9 +"5128",2011,8035,"CO","08","035",292626,0.932507706082166,10793,0.111657884125129,9.28665305482535,10.8399141894966,11.4041257085649,6.68461538461538,160.705970539132,283,176098,0,0,0,0,9 +"5129",2011,8037,"CO","08","037",52048,0.962380879188441,3104,0.11395250537965,8.04044688130311,9.10297785364768,9.69128394126025,8.16923076923077,140.200286123033,49,34950,0,0,0,0,9 +"5130",2011,8039,"CO","08","039",23175,0.969492988133765,873,0.170571736785329,6.7719355558396,8.00570067866254,8.89699855274382,7.78461538461538,241.312741312741,35,14504,0,0,0,0,9 +"5131",2011,8041,"CO","08","041",637376,0.865939414097801,50866,0.111863327141279,10.8369500029186,11.3070322670625,12.1716157672754,9.39230769230769,283.466106250916,1102,388759,0,0,0,0,9 +"5132",2011,8043,"CO","08","043",47393,0.926360432975334,2604,0.146181925600827,7.86480400332846,8.77043908654689,9.31289696030128,12.4846153846154,417.571404710205,125,29935,0,0,0,0,9 +"5133",2011,8045,"CO","08","045",56049,0.956520187692912,3246,0.123088725936234,8.08517874807454,8.99578483784851,9.72418144470263,9.80769230769231,299.074020820153,104,34774,0,0,0,0,9 +"5134",2011,8049,"CO","08","049",14564,0.972946992584455,689,0.176050535567152,6.53524127101366,7.6182510978767,8.41626727282628,8.4,122.724483534465,12,9778,0,0,0,0,9 +"5135",2011,8051,"CO","08","051",15267,0.958734525447043,1961,0.133294032881378,7.58120982619635,7.6434829070772,8.45489216521886,6.29230769230769,143.143429716576,15,10479,0,0,0,0,9 +"5136",2011,8055,"CO","08","055",6527,0.920484142791481,259,0.199172667381645,5.55682806169954,6.30078579466324,7.48549160803075,14.0846153846154,760.135135135135,27,3552,0,0,0,0,9 +"5137",2011,8059,"CO","08","059",540582,0.938296132686623,32420,0.143830168226097,10.3865307952897,11.1698152456088,12.0369377611404,8.26153846153846,289.827641276188,980,338132,0,0,0,0,9 +"5138",2011,8065,"CO","08","065",7344,0.957244008714597,498,0.137118736383442,6.21060007702465,6.96034772910131,7.64108424917491,10.4538461538462,386.01758524555,18,4663,0,0,0,0,9 +"5139",2011,8067,"CO","08","067",51886,0.910149173187372,3914,0.152468874070077,8.27231514795602,8.7879833961978,9.69996278809107,7.3,250.369521281409,83,33151,0,0,0,0,9 +"5140",2011,8069,"CO","08","069",305320,0.949639722258614,32030,0.128032883532032,10.3744282426032,10.5136878122751,11.4678339523484,7.44615384615385,232.063329821963,445,191758,0,0,0,0,9 +"5141",2011,8071,"CO","08","071",15054,0.929121828085559,896,0.159558921216952,6.79794041297493,7.38585107812521,8.31556648356428,11.4692307692308,559.744116975097,49,8754,0,0,0,0,9 +"5142",2011,8075,"CO","08","075",22577,0.931124595827612,1678,0.124197191832396,7.42535788702715,7.95331834656043,8.59526472683639,6.52307692307692,285.89807733543,40,13991,0,0,0,0,9 +"5143",2011,8077,"CO","08","077",147205,0.958928025542611,10151,0.134404402024388,9.22532750178443,9.71256914851666,10.667186389047,10.6,383.342045652553,330,86085,0,0,0,0,9 +"5144",2011,8081,"CO","08","081",13424,0.971543504171633,779,0.139749702026222,6.65801104587075,7.37775890822787,8.27537637483641,9.66923076923077,359.088657751362,29,8076,0,0,0,0,9 +"5145",2011,8083,"CO","08","083",25489,0.850759151006316,1224,0.161716819019969,7.10987946307227,7.96415571884094,8.91798070997329,9.10769230769231,395.472521478249,58,14666,0,0,0,0,9 +"5146",2011,8085,"CO","08","085",40980,0.959907271839922,1754,0.145119570522206,7.46965417293213,8.43141741439483,9.34862295977619,11.4230769230769,380.446803804468,86,22605,0,0,0,0,9 +"5147",2011,8087,"CO","08","087",28450,0.936871704745167,1744,0.111423550087873,7.46393660446893,8.10952565975287,8.96750418731624,6.94615384615385,356.102298478472,55,15445,0,0,0,0,9 +"5148",2011,8089,"CO","08","089",18837,0.936083240431066,1038,0.13701757180018,6.94505106372583,7.5923661285198,8.54907938027856,10.3692307692308,501.968503937008,51,10160,0,0,0,0,9 +"5149",2011,8093,"CO","08","093",16060,0.96961394769614,512,0.215006226650062,6.23832462503951,7.64156444126097,8.54869185847561,7.9,314.610900342371,34,10807,0,0,0,0,9 +"5150",2011,8097,"CO","08","097",17177,0.970949525528323,759,0.16353263084357,6.63200177739563,7.86863689418417,8.62281367327992,8.13846153846154,161.922618033066,19,11734,0,0,0,0,9 +"5151",2011,8099,"CO","08","099",12500,0.96768,747,0.13256,6.61606518513282,7.21744343169653,8.15737044118677,6.92307692307692,407.213496218732,28,6876,0,0,0,0,9 +"5152",2011,8101,"CO","08","101",160208,0.925122340956756,10571,0.133682462798362,9.26586968176866,9.84310040252103,10.7500422797254,10.9384615384615,486.496465299119,448,92087,0,0,0,0,9 +"5153",2011,8105,"CO","08","105",11914,0.954255497733759,631,0.148984388114823,6.44730586254121,7.18387071506245,8.12207437536222,12.8,700.969425801641,47,6705,0,0,0,0,9 +"5154",2011,8107,"CO","08","107",23256,0.97733918128655,1220,0.162022703818369,7.1066061377273,8.1786387885907,8.9095055129461,8.56153846153846,257.764365648183,41,15906,0,0,0,0,9 +"5155",2011,8117,"CO","08","117",28048,0.96812606959498,2058,0.13469766115231,7.629489916394,8.43032725839458,9.11822508306838,6.86153846153846,147.681401988776,30,20314,0,0,0,0,9 +"5156",2011,8119,"CO","08","119",23378,0.967362477542989,877,0.20865771237916,6.77650699237218,7.91388671485608,8.92119055624937,9.58461538461538,320.919970582336,48,14957,0,0,0,0,9 +"5157",2011,8123,"CO","08","123",258867,0.948382760259129,19378,0.110315335674304,9.87189368094495,10.4770907729218,11.2415103649823,8.9,269.302747148847,413,153359,0,0,0,0,9 +"5158",2011,8125,"CO","08","125",10138,0.980568159400276,487,0.123594397317025,6.18826412308259,7.07411681619736,7.90211754627645,5.5,414.788097385032,23,5545,0,0,0,0,9 +"5159",2011,9001,"CT","09","001",928099,0.817688630200011,50611,0.120886888144476,10.8319242229538,11.7600120797403,12.5436478450926,8.38461538461539,214.257498557357,1177,549339,0,0,0,0,9 +"5160",2011,9003,"CT","09","003",896900,0.791128330917605,56196,0.128213847697625,10.9366008589715,11.6517652431522,12.5240826418493,9.24615384615385,299.937892587648,1613,537778,0,0,0,0,9 +"5161",2011,9005,"CT","09","005",188979,0.95879965498812,8991,0.155567549833579,9.10397935598477,10.0766422215053,10.9587573116917,8.30769230769231,288.571177966845,329,114010,0,0,0,0,9 +"5162",2011,9007,"CT","09","007",166199,0.91242426248052,8899,0.146842038760763,9.09369418985686,9.98423770222124,10.8453095696067,7.80769230769231,259.236538499594,262,101066,0,0,0,0,9 +"5163",2011,9009,"CT","09","009",863974,0.808328722855086,59754,0.126942477435664,10.9979914131597,11.6087082603469,12.4979434330534,9.9,319.38929536299,1661,520055,0,0,0,0,9 +"5164",2011,9011,"CT","09","011",273086,0.863423976329801,19259,0.133408523322323,9.86573376292421,10.4420839732475,11.3184301072446,9.07692307692308,292.422040641304,491,167908,0,0,0,0,9 +"5165",2011,9013,"CT","09","013",153066,0.917427776253381,17268,0.125854206682085,9.75661035667537,9.82140944150052,10.7456795429832,7.70769230769231,204.068752235289,194,95066,0,0,0,0,9 +"5166",2011,9015,"CT","09","015",118329,0.943792307887331,8630,0.130779436993467,9.06299978407747,9.65521848244118,10.5039436205389,10.0923076923077,338.969094801559,247,72868,0,0,0,0,9 +"5167",2011,11001,"DC","11","001",620290,0.432410646633026,60884,0.107686727175998,11.0167256933996,11.3304318933826,12.3054789701218,10.1692307692308,372.573448662761,1564,419783,1,0,0,0,9 +"5168",2011,10001,"DE","10","001",165161,0.704252214505846,12878,0.116595322140215,9.46327570809813,9.91605820970998,10.8251040771656,8.33076923076923,372.534166260234,359,96367,1,0,0,0,9 +"5169",2011,10003,"DE","10","003",542031,0.692331250426636,41682,0.120987544992814,10.6378246599209,11.1746796564999,12.0493135667863,7.35384615384615,359.609566756093,1197,332861,1,0,0,0,9 +"5170",2011,10005,"DE","10","005",200398,0.834444455533488,10397,0.156283994850248,9.24927258197797,9.97789905004994,10.9630297833685,7.81538461538462,395.197510344096,447,113108,1,0,0,0,9 +"5171",2011,12001,"FL","12","001",249879,0.722949907755354,43741,0.111662044429504,10.686041156338,10.1576645464305,11.3360331431712,7.57692307692308,305.418230928397,493,161418,0,0,0,0,9 +"5172",2011,12003,"FL","12","003",27055,0.85189428941046,1829,0.118795047126224,7.51152464839087,8.22067217029725,8.93761259130621,10.1846153846154,542.716019269468,89,16399,0,0,0,0,9 +"5173",2011,12005,"FL","12","005",169587,0.848349224881624,12091,0.128706799459864,9.40021665317425,9.95750214084237,10.8588066713778,10.2153846153846,463.787081316693,482,103927,0,0,0,0,9 +"5174",2011,12007,"FL","12","007",28430,0.775096728807598,1979,0.125817798100598,7.59034694560257,8.24249315318763,8.86220033048729,9.06153846153846,455.555555555556,82,18000,0,0,0,0,9 +"5175",2011,12009,"FL","12","009",544442,0.858179567336833,30710,0.143341255817883,10.3323436134349,10.9909883364495,11.9748969225187,10.8769230769231,459.891507848879,1437,312465,0,0,0,0,9 +"5176",2011,12011,"FL","12","011",1787096,0.670968431466468,110656,0.121804872262039,11.614181569043,12.4269536391901,13.234702287331,9.43076923076923,311.864692500863,3404,1091499,0,0,0,0,9 +"5177",2011,12013,"FL","12","013",14725,0.835925297113752,958,0.122988115449915,6.86484777797086,7.61283103040736,8.22309055116153,10.3538461538462,460.363799685605,41,8906,0,0,0,0,9 +"5178",2011,12015,"FL","12","015",159926,0.920431949776772,6135,0.172754899140853,8.72176535714501,9.50181524266666,10.6205465531424,11.2538461538462,479.072112960161,380,79320,0,0,0,0,9 +"5179",2011,12017,"FL","12","017",139782,0.947425276501982,5654,0.166874132577871,8.64011853825354,9.41637845538745,10.5076942237994,12.5,684.051182451731,479,70024,0,0,0,0,9 +"5180",2011,12019,"FL","12","019",192335,0.849434580289599,11650,0.12478228091611,9.36306145899385,10.1893429576465,10.9795474367337,9.09230769230769,353.069696307625,404,114425,0,0,0,0,9 +"5181",2011,12021,"FL","12","021",327670,0.909033478804895,16077,0.132880642109439,9.68514495816296,10.4722895888232,11.3614395647951,10.1230769230769,307.617678551357,520,169041,0,0,0,0,9 +"5182",2011,12023,"FL","12","023",67326,0.796972937646674,4887,0.134762201823961,8.49433389727015,8.9782822032724,9.8488729592629,10.2769230769231,516.389762011675,207,40086,0,0,0,0,9 +"5183",2011,12027,"FL","12","027",34847,0.845151662983901,2707,0.115619709013688,7.9035962896143,8.3059782109673,8.96507901540835,10.4461538461538,340.049738618485,67,19703,0,0,0,0,9 +"5184",2011,12029,"FL","12","029",16403,0.903127476681095,872,0.154849722611717,6.77078942390898,7.51752085060303,8.36310917603352,12.2615384615385,550.420604424135,53,9629,0,0,0,0,9 +"5185",2011,12031,"FL","12","031",872483,0.637230754066268,67882,0.119875115045222,11.1255261826737,11.6545205087965,12.5450560123375,10.2384615384615,448.988265121067,2451,545894,0,0,0,0,9 +"5186",2011,12033,"FL","12","033",299478,0.715254542904654,26988,0.12791256786809,10.2031476017473,10.4127118949351,11.4103277958013,9.63076923076923,464.000979186719,834,179741,0,0,0,0,9 +"5187",2011,12035,"FL","12","035",97473,0.849342894955526,4350,0.156248396991988,8.37793112408273,9.2758471741783,10.2276341394667,11.3538461538462,388.342048600431,202,52016,0,0,0,0,9 +"5188",2011,12037,"FL","12","037",11471,0.844651730450702,690,0.146194751983262,6.5366915975913,7.27793857294566,7.95120715647297,7.62307692307692,474.898236092266,35,7370,0,0,0,0,9 +"5189",2011,12039,"FL","12","039",47372,0.424829012919024,3039,0.137507388330659,8.01928379291679,8.72664341559844,9.6274046159277,11.5692307692308,539.909528673574,148,27412,0,0,0,0,9 +"5190",2011,12041,"FL","12","041",17002,0.928949535348783,1497,0.139571815080579,7.31121838441963,7.51914995766982,8.42441979126388,10.2923076923077,472.521828454032,46,9735,0,0,0,0,9 +"5191",2011,12043,"FL","12","043",12842,0.808207444323314,737,0.128874007163993,6.60258789218934,7.39694860262101,7.95787735848981,9.50769230769231,287.947346770876,21,7293,0,0,0,0,9 +"5192",2011,12045,"FL","12","045",15767,0.799644827804909,981,0.139912475423353,6.88857245956536,7.73718007783463,8.18646442942209,9.61538461538461,509.370494954349,53,10405,0,0,0,0,9 +"5193",2011,12047,"FL","12","047",14596,0.634420389147712,1506,0.1355165798849,7.31721240835984,7.50714107972761,8.14844566624324,10.3769230769231,361.817601362137,34,9397,0,0,0,0,9 +"5194",2011,12049,"FL","12","049",27681,0.898052816010982,2216,0.100863408113869,7.70345904786717,8.12740456269308,8.84764735571189,10.2076923076923,384.738698300737,60,15595,0,0,0,0,9 +"5195",2011,12051,"FL","12","051",38968,0.82465099568877,3113,0.0970283309382057,8.04334217044161,8.53954159508,9.20883924584992,13.8461538461538,297.486901696119,67,22522,0,0,0,0,9 +"5196",2011,12053,"FL","12","053",172877,0.923338558628389,8286,0.143408319209611,9.02232262263735,9.83005627445024,10.7701677838569,12.4769230769231,539.383844957478,489,90659,0,0,0,0,9 +"5197",2011,12055,"FL","12","055",98493,0.873869208979318,4610,0.136151807742682,8.4359831359907,9.07932010953778,10.0814245110123,11.4846153846154,445.224538721692,208,46718,0,0,0,0,9 +"5198",2011,12057,"FL","12","057",1255639,0.771529874430469,93913,0.115888404230834,11.4501241007681,12.0637541880533,12.8846288942851,9.55384615384615,330.39605559505,2598,786329,0,0,0,0,9 +"5199",2011,12059,"FL","12","059",19841,0.918098886144852,1371,0.130739378055542,7.22329567956231,7.81480342948936,8.56445838388335,9.83846153846154,606.474758691381,71,11707,0,0,0,0,9 +"5200",2011,12061,"FL","12","061",139122,0.884432368712353,6363,0.147345495320654,8.75825524323279,9.53082839615314,10.5235800521902,12.6307692307692,420.431290111512,302,71831,0,0,0,0,9 +"5201",2011,12063,"FL","12","063",49204,0.709088691976262,3346,0.134541907162019,8.11552088154677,8.84188198949711,9.44272112864287,9.43076923076923,479.569044803574,146,30444,0,0,0,0,9 +"5202",2011,12065,"FL","12","065",14527,0.62669511943278,818,0.161423556136849,6.70686233660275,7.52185925220163,8.33134542484572,10.0230769230769,604.063701263042,55,9105,0,0,0,0,9 +"5203",2011,12067,"FL","12","067",8801,0.831610044313146,806,0.10680604476764,6.69208374250663,7.19443685110033,7.52617891334615,6.20769230769231,396.278428669883,23,5804,0,0,0,0,9 +"5204",2011,12069,"FL","12","069",300547,0.862623815908993,14510,0.13363966367989,9.58259334587823,10.4586075351813,11.3182478859667,10.5615384615385,404.511912026523,643,158957,0,0,0,0,9 +"5205",2011,12071,"FL","12","071",631198,0.884923589745215,34150,0.142730173416266,10.4385178649989,11.1571215701295,12.0759240960628,10.8384615384615,379.436357644286,1301,342877,0,0,0,0,9 +"5206",2011,12073,"FL","12","073",278420,0.645510380001437,47074,0.110042382012786,10.7594761106019,10.3050784990957,11.4514436008266,7.75384615384615,258.408049802279,462,178787,0,0,0,0,9 +"5207",2011,12075,"FL","12","075",40165,0.885820988422756,2135,0.158944354537533,7.66622192566273,8.38526052015541,9.38513366234935,10.8615384615385,667.655786350148,153,22916,0,0,0,0,9 +"5208",2011,12077,"FL","12","077",8266,0.794580208081297,528,0.113476893297847,6.26909628370626,7.16394668434255,7.55066124310534,9.13846153846154,367.039823820885,20,5449,0,0,0,0,9 +"5209",2011,12079,"FL","12","079",19134,0.595589003867461,1363,0.140482910003136,7.21744343169653,7.7510451179718,8.55910259449345,9.55384615384615,491.961697267856,56,11383,0,0,0,0,9 +"5210",2011,12081,"FL","12","081",327619,0.877803179913253,16717,0.141704235712825,9.72418144470263,10.5008944608152,11.4235695234541,9.95384615384615,410.035679900323,724,176570,0,0,0,0,9 +"5211",2011,12083,"FL","12","083",332325,0.844624990596555,17522,0.140368615060558,9.77121251322631,10.4574014009819,11.4311187022661,12.2923076923077,518.66745875794,908,175064,0,0,0,0,9 +"5212",2011,12085,"FL","12","085",147904,0.916398474686283,6708,0.148467925140632,8.8110561229431,9.60904937558734,10.5626124844816,9.86153846153846,369.659759529291,289,78180,0,0,0,0,9 +"5213",2011,12086,"FL","12","086",2544511,0.780933939762886,183826,0.111263028534756,12.1217449370061,12.8244343167676,13.5876559269199,9.62307692307692,255.791983787778,4029,1575108,0,0,0,0,9 +"5214",2011,12087,"FL","12","087",73988,0.916040438990106,3839,0.177893712493918,8.2529671950008,9.17936556767675,10.0261033360763,6.99230769230769,458.829365079365,222,48384,0,0,0,0,9 +"5215",2011,12089,"FL","12","089",74166,0.916943073645606,4171,0.153358681875792,8.33591109419694,9.14120463314132,10.0220702683631,9.58461538461538,446.448805692789,197,44126,0,0,0,0,9 +"5216",2011,12091,"FL","12","091",183205,0.848262874921536,14387,0.12184711115963,9.57408030003703,9.95887495461569,10.9134871828476,7.80769230769231,352.347649681019,396,112389,0,0,0,0,9 +"5217",2011,12093,"FL","12","093",39854,0.888969739549355,2604,0.117779896622673,7.86480400332846,8.49902922078857,9.22424327714517,11.9153846153846,443.714780139326,100,22537,0,0,0,0,9 +"5218",2011,12095,"FL","12","095",1170699,0.708721883250947,108336,0.103529600691553,11.5929927877254,12.0210975712707,12.8377406204709,9.78461538461539,277.041514475655,2057,742488,0,0,0,0,9 +"5219",2011,12097,"FL","12","097",278669,0.821042168307203,19409,0.10850148383925,9.87349215500073,10.5987325311782,11.3532612803375,11.2538461538462,304.320995123604,503,165286,0,0,0,0,9 +"5220",2011,12099,"FL","12","099",1336875,0.779124450677887,76821,0.124098363721365,11.2492333192585,12.0038462962214,12.8466757498009,10.0384615384615,323.696000215259,2406,743290,0,0,0,0,9 +"5221",2011,12101,"FL","12","101",466529,0.916774734260893,23685,0.132930643111146,10.0725972153579,10.9969532870514,11.8081812840586,10.8,503.959407943287,1318,261529,0,0,0,0,9 +"5222",2011,12103,"FL","12","103",918574,0.848962631208808,48913,0.151006886761437,10.7977984888022,11.5875968498058,12.5341994413444,9.7,469.533845026135,2543,541601,0,0,0,0,9 +"5223",2011,12105,"FL","12","105",610026,0.813957110024819,38918,0.125096307370506,10.5692121475181,11.2037337090306,12.0683037157853,11.2461538461538,414.501996239267,1413,340891,0,0,0,0,9 +"5224",2011,12107,"FL","12","107",73657,0.815197469351182,4257,0.14934086373325,8.35631996582815,8.94089106778546,9.9394336793096,12.7846153846154,642.720283281997,265,41231,0,0,0,0,9 +"5225",2011,12109,"FL","12","109",196165,0.911803838605256,10261,0.14299696683914,9.23610557986221,10.1541684468434,10.9925207747572,7.72307692307692,312.744331508991,360,115110,0,0,0,0,9 +"5226",2011,12111,"FL","12","111",280481,0.768365771656547,15555,0.129006955907887,9.65213740933174,10.4305506323918,11.2870531940848,12.5615384615385,426.938261126757,664,155526,0,0,0,0,9 +"5227",2011,12113,"FL","12","113",155796,0.896762432925107,9824,0.125863308428971,9.19258365038692,9.95051425796388,10.7357877944886,8.59230769230769,391.481032318461,368,94002,0,0,0,0,9 +"5228",2011,12115,"FL","12","115",382298,0.928785920930792,16045,0.155261079053513,9.68315255354396,10.5185110163145,11.5266311120263,10.2076923076923,411.925341093652,804,195181,0,0,0,0,9 +"5229",2011,12117,"FL","12","117",426382,0.828503548461239,31855,0.125115506752161,10.3689496345506,10.9655050107347,11.8316700628738,9.6,280.056386185385,747,266732,0,0,0,0,9 +"5230",2011,12119,"FL","12","119",98011,0.890298027772393,2652,0.192549815836998,7.88306935130575,8.91152994173656,9.91980371702106,12.1846153846154,465.710893982285,204,43804,0,0,0,0,9 +"5231",2011,12121,"FL","12","121",43365,0.852092701487375,2606,0.134486336907644,7.86557175768479,8.5177930114882,9.34399675678886,9.2,576.504249049836,135,23417,0,0,0,0,9 +"5232",2011,12123,"FL","12","123",22666,0.772302126533133,1543,0.13800405894291,7.34148385236316,8.00001409367807,8.648045999835,10.0307692307692,500.740531772339,71,14179,0,0,0,0,9 +"5233",2011,12125,"FL","12","125",15308,0.764110269140319,1045,0.152991899660308,6.95177216439891,7.65822752616135,8.05484022110102,8.17692307692308,972.725538813656,102,10486,0,0,0,0,9 +"5234",2011,12127,"FL","12","127",494558,0.862647050497616,32082,0.147355820753076,10.3760504041768,10.9105874406981,11.8756431149311,11.2384615384615,487.698303627432,1384,283782,0,0,0,0,9 +"5235",2011,12129,"FL","12","129",30977,0.83555541207993,1815,0.129483164928818,7.50384074669895,8.45744318701046,9.05368656193081,8.23076923076923,444.222610431744,89,20035,0,0,0,0,9 +"5236",2011,12131,"FL","12","131",55613,0.913167784510816,3056,0.147195799543272,8.02486215028641,8.85708813531495,9.6952941881746,8.51538461538462,447.348284183884,152,33978,0,0,0,0,9 +"5237",2011,12133,"FL","12","133",24516,0.822524065916136,1532,0.129466470876163,7.33432935030054,8.11042723757502,8.77307495131822,9.97692307692308,613.537405990236,93,15158,0,0,0,0,9 +"5238",2011,13001,"GA","13","001",18459,0.786012243350127,1115,0.131751449157593,7.01660968389422,7.78155595923534,8.56121007683301,12.2307692307692,499.953707990001,54,10801,0,0,0,0,9 +"5239",2011,13003,"GA","13","003",8359,0.78908960401962,541,0.109941380547912,6.29341927884648,7.02997291170639,7.77695440332244,12.7153846153846,522.903158335076,25,4781,0,0,0,0,9 +"5240",2011,13005,"GA","13","005",11150,0.824663677130045,692,0.130762331838565,6.53958595561767,7.29573507274928,8.0774471493312,10.4076923076923,562.395500835993,37,6579,0,0,0,0,9 +"5241",2011,13009,"GA","13","009",45178,0.565961308601532,5991,0.120700340873877,8.69801362208393,8.45935219172639,9.53899642739739,13.6384615384615,415.395360805793,113,27203,0,0,0,0,9 +"5242",2011,13011,"GA","13","011",18245,0.954014798574952,1075,0.130611126335982,6.98007594056176,7.87131120332341,8.59137258959049,9.18461538461539,421.940928270042,46,10902,0,0,0,0,9 +"5243",2011,13013,"GA","13","013",69835,0.836185293907067,4117,0.103658623899191,8.3228800217699,9.24464517566817,9.96142621745657,9.87692307692308,400.429031104755,168,41955,0,0,0,0,9 +"5244",2011,13015,"GA","13","015",100110,0.874967535710718,6262,0.116411946858456,8.74225490188635,9.59280976029003,10.324071131776,11.3846153846154,413.141195134849,250,60512,0,0,0,0,9 +"5245",2011,13017,"GA","13","017",17595,0.631599886331344,1122,0.130093776641091,7.02286808608264,7.64060382639363,8.56197533418813,15.4538461538462,595.001983339944,60,10084,0,0,0,0,9 +"5246",2011,13019,"GA","13","019",19380,0.874613003095975,1203,0.12249742002064,7.09257371597468,7.8336002236611,8.64751945309181,12.3538461538462,463.210404418315,52,11226,0,0,0,0,9 +"5247",2011,13021,"GA","13","021",156297,0.440852991420181,11660,0.121889735567541,9.36391945990448,9.83558337392225,10.7854766527133,11.3769230769231,596.501981043276,545,91366,0,0,0,0,9 +"5248",2011,13023,"GA","13","023",13077,0.717366368433127,1149,0.108664066681961,7.04664727784876,7.27724772663148,8.24064886337491,13.2153846153846,521.76300974873,38,7283,0,0,0,0,9 +"5249",2011,13025,"GA","13","025",18549,0.958380505687638,1135,0.130195697881287,7.0343879299155,7.8087293067444,8.61812390999468,13.0923076923077,638.977635782748,70,10955,0,0,0,0,9 +"5250",2011,13027,"GA","13","027",15982,0.635590038793643,961,0.137842572894506,6.86797440897029,7.54168309988211,8.4675826908629,9.93076923076923,433.98068785939,40,9217,0,0,0,0,9 +"5251",2011,13029,"GA","13","029",31300,0.821629392971246,1669,0.110063897763578,7.41997992366183,8.42639282708974,9.16481985667437,9.27692307692308,436.116943950896,81,18573,0,0,0,0,9 +"5252",2011,13031,"GA","13","031",72642,0.682373833319567,14319,0.0913658764901847,9.56934260567401,8.9187841379758,10.0270759267807,10.4230769230769,309.390789502971,139,44927,0,0,0,0,9 +"5253",2011,13033,"GA","13","033",23513,0.489303789393102,1578,0.127716582316166,7.36391350140582,7.91826468609527,8.86813171350303,12.5769230769231,650.598846665681,88,13526,0,0,0,0,9 +"5254",2011,13035,"GA","13","035",23603,0.711265517095285,1659,0.123713087319409,7.41397029019044,8.08948247436075,8.77817188103347,11.2384615384615,486.301369863014,71,14600,0,0,0,0,9 +"5255",2011,13037,"GA","13","037",6625,0.368301886792453,456,0.12422641509434,6.12249280951439,6.91968384984741,7.29844510150815,8.28461538461539,642.201834862385,28,4360,0,0,0,0,9 +"5256",2011,13039,"GA","13","039",50344,0.768969489909423,5063,0.102256475448911,8.52971447196991,8.73985662749357,9.6210583263658,9.47692307692308,350.342232458559,108,30827,0,0,0,0,9 +"5257",2011,13043,"GA","13","043",11199,0.733458344495044,806,0.132958299848201,6.69208374250663,7.20489251020467,8.07402621612406,9.48461538461538,639.825218476904,41,6408,0,0,0,0,9 +"5258",2011,13045,"GA","13","045",110733,0.794586979491209,10269,0.109208636991683,9.2368849271983,9.58245550040279,10.4277721959863,11.2923076923077,462.844691562101,308,66545,0,0,0,0,9 +"5259",2011,13047,"GA","13","047",64771,0.953497707307283,3825,0.125272112519492,8.24931374626064,9.13701670755734,9.89585852537164,8.12307692307692,368.984513044382,142,38484,0,0,0,0,9 +"5260",2011,13049,"GA","13","049",13452,0.66354445435623,1051,0.103999405292893,6.95749737087695,7.66762609158499,8.03786623470962,10.5230769230769,404.630774418343,36,8897,0,0,0,0,9 +"5261",2011,13051,"GA","13","051",271665,0.554112601917803,25868,0.115498868091215,10.1607619625665,10.3835033919086,11.3665577524581,9.96923076923077,387.99021070853,650,167530,0,0,0,0,9 +"5262",2011,13053,"GA","13","053",11270,0.733096716947649,2461,0.0356699201419698,7.80832305039106,6.98286275146894,7.72223474470961,11.4076923076923,187.366167023555,14,7472,0,0,0,0,9 +"5263",2011,13055,"GA","13","055",25689,0.871034294834365,1622,0.129043559500175,7.39141523467536,8.15162164696975,8.86248357648833,10.9307692307692,507.190549563431,79,15576,0,0,0,0,9 +"5264",2011,13057,"GA","13","057",217769,0.909661154709807,11796,0.113519371444053,9.37551576993517,10.4666399364799,11.1153690009301,8.10769230769231,265.797241130052,353,132808,0,0,0,0,9 +"5265",2011,13059,"GA","13","059",118229,0.672347731943939,26166,0.0809107748521936,10.1722161370708,9.40153907670774,10.6030143400601,9.23076923076923,259.29575273557,200,77132,0,0,0,0,9 +"5266",2011,13063,"GA","13","063",262081,0.243581182916732,20370,0.0978628744548441,9.92181850922085,10.5805815677738,11.3630556093264,13.3230769230769,340.895585871285,545,159873,0,0,0,0,9 +"5267",2011,13065,"GA","13","065",6719,0.710820062509302,457,0.134394999255842,6.1246833908942,6.73933662735717,7.60090245954208,10.8692307692308,510.594842992086,20,3917,0,0,0,0,9 +"5268",2011,13067,"GA","13","067",696629,0.675498723136705,45181,0.112787437789699,10.7184319234645,11.591468587289,12.3318018047373,8.74615384615385,249.003984063745,1095,439752,0,0,0,0,9 +"5269",2011,13069,"GA","13","069",42998,0.705009535327225,3321,0.112586631936369,8.10802122137675,8.68558484267669,9.40029935589935,12.7692307692308,505.323252584478,131,25924,0,0,0,0,9 +"5270",2011,13071,"GA","13","071",45778,0.745642011446546,3099,0.111516448949277,8.03883475778775,8.6741969402259,9.46900549535747,9.39230769230769,526.233725734778,135,25654,0,0,0,0,9 +"5271",2011,13073,"GA","13","073",128832,0.789400149031297,7461,0.122764530551416,8.91744473247151,9.80449560332918,10.6009006212431,7.28461538461538,282.321250501833,218,77217,0,0,0,0,9 +"5272",2011,13075,"GA","13","075",17036,0.711082413712139,1052,0.118748532519371,6.95844839329766,7.69938940625674,8.51238163441901,11.1384615384615,521.525718376112,51,9779,0,0,0,0,9 +"5273",2011,13077,"GA","13","077",129390,0.795022799288971,6949,0.115982687997527,8.84635304331433,9.88328484521861,10.5919990046915,8.98461538461538,311.934378249316,243,77901,0,0,0,0,9 +"5274",2011,13079,"GA","13","079",12576,0.764153944020356,776,0.142573155216285,6.65415252018322,7.40913644392013,8.25400859056484,10.7538461538462,478.036175710594,37,7740,0,0,0,0,9 +"5275",2011,13081,"GA","13","081",23753,0.542962994148108,1553,0.138003620595293,7.34794382314869,7.944846711002,8.87528712810838,13.7769230769231,648.877223680373,89,13716,0,0,0,0,9 +"5276",2011,13083,"GA","13","083",16605,0.972357723577236,1393,0.136645588678109,7.23921497377981,7.58832367733522,8.52456594574565,7.92307692307692,462.869792714832,46,9938,0,0,0,0,9 +"5277",2011,13085,"GA","13","085",22334,0.978687203367064,1227,0.147219485985493,7.11232744471091,8.00068478451475,8.82261694534418,10.0615384615385,439.238653001464,60,13660,0,0,0,0,9 +"5278",2011,13087,"GA","13","087",27655,0.562429940336286,1848,0.12316036883023,7.52185925220163,8.15765701519647,8.99355158629998,11.8769230769231,571.069971760276,91,15935,0,0,0,0,9 +"5279",2011,13089,"GA","13","089",698496,0.37484681372549,49611,0.11060621678578,10.8119678623183,11.5777108306392,12.3715362352573,10.4461538461538,305.137745672582,1372,449633,0,0,0,0,9 +"5280",2011,13091,"GA","13","091",21606,0.686938813292604,1532,0.124641303341664,7.33432935030054,7.99395754757357,8.69818052519705,12.2,589.421436326974,76,12894,0,0,0,0,9 +"5281",2011,13093,"GA","13","093",14610,0.492950034223135,871,0.139767282683094,6.7696419768525,7.58120982619635,8.25738565573044,12.9307692307692,405.124274608562,37,9133,0,0,0,0,9 +"5282",2011,13095,"GA","13","095",95080,0.299957930164072,8664,0.118510727808162,9.06693178868083,9.29348595306285,10.3080522554011,12.1,546.348900949304,301,55093,0,0,0,0,9 +"5283",2011,13097,"GA","13","097",133128,0.560077519379845,7990,0.106889609999399,8.98594603876032,9.97604074521784,10.6583881293716,10.7846153846154,340.582581987516,275,80744,0,0,0,0,9 +"5284",2011,13099,"GA","13","099",10791,0.493281438235567,633,0.129923084051524,6.45047042214418,7.13886699994552,8.05229649953865,11.4,578.329647899303,34,5879,0,0,0,0,9 +"5285",2011,13103,"GA","13","103",52709,0.845263617219071,3092,0.109582803695764,8.03657340970731,8.9497545251861,9.67652421511905,9.23076923076923,317.359568390987,100,31510,0,0,0,0,9 +"5286",2011,13105,"GA","13","105",19822,0.689133286247604,1232,0.136969024316416,7.11639414409346,7.74586822979227,8.67265729404031,15.9692307692308,692.921673537409,79,11401,0,0,0,0,9 +"5287",2011,13107,"GA","13","107",22489,0.644937525012228,1518,0.125483569745209,7.32514895795557,7.8935720735049,8.78981238619097,13.2230769230769,459.277403551745,60,13064,0,0,0,0,9 +"5288",2011,13109,"GA","13","109",10983,0.669398160793954,760,0.113174906673951,6.63331843328038,7.20637729147225,8.06211758275474,9.06153846153846,516.351118760757,33,6391,0,0,0,0,9 +"5289",2011,13111,"GA","13","111",23647,0.985706432105553,1077,0.178542732693365,6.98193467715639,7.81197342962202,8.83141981909013,11.2,438.955434863477,59,13441,0,0,0,0,9 +"5290",2011,13113,"GA","13","113",107171,0.73660785100447,4989,0.148295714325704,8.51499076786104,9.51517450324553,10.3882258415388,7.93846153846154,268.512154969872,168,62567,0,0,0,0,9 +"5291",2011,13115,"GA","13","115",96174,0.823237049514422,6914,0.122912637511178,8.84130362048157,9.41637845538745,10.2522412057269,11.9769230769231,473.704908655393,265,55942,0,0,0,0,9 +"5292",2011,13117,"GA","13","117",181828,0.89102888444024,7021,0.100452075587918,8.85666093701725,10.3946103440263,10.8941062323676,7.33846153846154,209.486757444262,224,106928,0,0,0,0,9 +"5293",2011,13119,"GA","13","119",21982,0.898689837139478,1474,0.134837594395414,7.29573507274928,7.90396563403217,8.75400293349426,12.0461538461538,581.673306772908,73,12550,0,0,0,0,9 +"5294",2011,13121,"GA","13","121",947582,0.476200476581446,70578,0.105842027391825,11.1644737601885,11.8810278660955,12.6416336284591,10.0923076923077,332.165243571393,2019,607830,0,0,0,0,9 +"5295",2011,13123,"GA","13","123",28329,0.976243425465071,1353,0.157047548448586,7.21007962817079,8.13505390861157,8.99528899055931,11.6538461538462,324.139196379426,53,16351,0,0,0,0,9 +"5296",2011,13127,"GA","13","127",80123,0.706900640265592,4873,0.135204622892303,8.49146504284351,9.1833801903934,10.1127349986582,10.3384615384615,441.482179978997,206,46661,0,0,0,0,9 +"5297",2011,13129,"GA","13","129",55522,0.934980728359929,3450,0.115575807787904,8.1461295100254,8.97144846369383,9.70576805356208,11.5538461538462,418.704156479218,137,32720,0,0,0,0,9 +"5298",2011,13131,"GA","13","131",25103,0.682826753774449,1536,0.125801697008326,7.33693691370762,8.02420748577858,8.90245559220688,9.43846153846154,454.107609742672,66,14534,0,0,0,0,9 +"5299",2011,13133,"GA","13","133",16049,0.607701414418344,741,0.174216462084865,6.60800062529609,7.36833968631138,8.4368504387337,12.2384615384615,461.19235095613,41,8890,0,0,0,0,9 +"5300",2011,13135,"GA","13","135",822407,0.616078170540864,49561,0.099693947157551,10.8109595131021,11.8007100321692,12.4616988757293,8.63076923076923,217.060310069274,1102,507693,0,0,0,0,9 +"5301",2011,13137,"GA","13","137",43041,0.922748077414558,2710,0.125787040263934,7.90470391387375,8.62586820804189,9.50465043071818,10.4076923076923,416.133162612036,104,24992,0,0,0,0,9 +"5302",2011,13139,"GA","13","139",182299,0.886285717420282,12161,0.107658297631912,9.405989388981,10.1451387754061,10.8734327889458,8.80769230769231,335.252190408219,357,106487,0,0,0,0,9 +"5303",2011,13141,"GA","13","141",9394,0.249733872684692,652,0.154673195656802,6.48004456192665,7.0184017990692,7.79028238070348,19.6230769230769,367.217492906026,22,5991,0,0,0,0,9 +"5304",2011,13143,"GA","13","143",28474,0.940998805928215,1779,0.123235232141603,7.48380668766583,8.27052509505507,9.03836510723637,11.5384615384615,700.682716492993,117,16698,0,0,0,0,9 +"5305",2011,13145,"GA","13","145",32303,0.80738631086896,1658,0.155744048540383,7.41336733569524,8.39547743273214,9.19532825185568,7.34615384615385,331.395941674314,65,19614,0,0,0,0,9 +"5306",2011,13147,"GA","13","147",25414,0.795467065397025,1465,0.142323128984025,7.28961052145117,8.03073492409854,8.88516409509682,11.0846153846154,481.563015960374,70,14536,0,0,0,0,9 +"5307",2011,13149,"GA","13","149",11729,0.880978770568676,709,0.128825986870151,6.56385552653213,7.37588214821501,8.14931284363534,11.2076923076923,638.143582306019,44,6895,0,0,0,0,9 +"5308",2011,13151,"GA","13","151",206934,0.571157953743706,12008,0.104023505078914,9.3933283733133,10.4278905847158,11.0911022902492,10.2538461538462,356.639697299038,443,124215,0,0,0,0,9 +"5309",2011,13153,"GA","13","153",143557,0.663151222162625,10024,0.107553097375955,9.2127374965759,9.84665261578359,10.7096731977217,8.47692307692308,317.773520402896,277,87169,0,0,0,0,9 +"5310",2011,13155,"GA","13","155",9677,0.719334504495195,644,0.119561847680066,6.46769872610435,7.15617663748062,7.8815599170569,13.6384615384615,547.123190963643,31,5666,0,0,0,0,9 +"5311",2011,13157,"GA","13","157",60985,0.904091169959826,3382,0.115110273017955,8.12622252945853,9.12096256082497,9.7985158501695,9.50769230769231,431.810003598417,156,36127,0,0,0,0,9 +"5312",2011,13159,"GA","13","159",13832,0.764965297860035,765,0.141844997108155,6.63987583382654,7.51697722460432,8.33158624363075,10.9153846153846,398.598864597174,33,8279,0,0,0,0,9 +"5313",2011,13161,"GA","13","161",15161,0.833784051183959,943,0.119649099663611,6.84906628263346,7.56786260546388,8.37586001529959,12.4692307692308,651.238516106524,56,8599,0,0,0,0,9 +"5314",2011,13163,"GA","13","163",16772,0.446816122108276,1087,0.13796804197472,6.99117688712121,7.60539236481493,8.50613224405681,13.1076923076923,646.102542726136,62,9596,0,0,0,0,9 +"5315",2011,13165,"GA","13","165",8124,0.57533234859675,475,0.137001477104874,6.16331480403464,6.79570577517351,7.76174498465891,14.2153846153846,731.869594145043,33,4509,0,0,0,0,9 +"5316",2011,13167,"GA","13","167",10003,0.645006498050585,589,0.130560831750475,6.37842618365159,7.24850407237061,7.8188324438034,10.9307692307692,447.070094204056,28,6263,0,0,0,0,9 +"5317",2011,13169,"GA","13","169",28724,0.739903913104024,1615,0.131875783317087,7.38709023565676,8.27231514795602,9.07452064883365,9.1,314.148538912928,53,16871,0,0,0,0,9 +"5318",2011,13171,"GA","13","171",18153,0.668870159202336,1534,0.131548504379441,7.3356339819272,7.67600993202889,8.61177583390219,13.6076923076923,548.618993567915,58,10572,0,0,0,0,9 +"5319",2011,13173,"GA","13","173",10481,0.731514168495373,784,0.105619692777407,6.66440902035041,7.19218205871325,8.03527891114467,10.4307692307692,316.155548529877,20,6326,0,0,0,0,9 +"5320",2011,13175,"GA","13","175",47841,0.620262954369683,2926,0.127317572793211,7.98139158158007,8.71817293002873,9.57080811415361,13.7384615384615,537.653939768228,148,27527,0,0,0,0,9 +"5321",2011,13177,"GA","13","177",28585,0.773342662235438,1630,0.121077488193108,7.39633529380081,8.40469616018909,9.07119324056602,8.38461538461539,347.598153740954,61,17549,0,0,0,0,9 +"5322",2011,13179,"GA","13","179",65210,0.517604661861678,7415,0.0837448244134335,8.91126025457203,8.93300459157855,9.90747957380566,9.24615384615385,324.510698712098,128,39444,0,0,0,0,9 +"5323",2011,13181,"GA","13","181",7872,0.664761178861789,438,0.168064024390244,6.08221891037645,6.81563999007433,7.76599307940768,11.5,493.138936535163,23,4664,0,0,0,0,9 +"5324",2011,13183,"GA","13","183",15097,0.706564218056568,1160,0.0971053851758628,7.05617528410041,7.62803112693033,8.414717399827,8.82307692307692,438.644588222393,40,9119,0,0,0,0,9 +"5325",2011,13185,"GA","13","185",111519,0.600507536832289,14858,0.0962885248253661,9.60629371971175,9.47077970803409,10.4393374412069,9.83846153846154,366.915697802927,249,67863,0,0,0,0,9 +"5326",2011,13187,"GA","13","187",30453,0.967031162775424,3516,0.129149837454438,8.16507925880507,8.15277405274407,9.14377312770407,9.66923076923077,420.870878972643,78,18533,0,0,0,0,9 +"5327",2011,13189,"GA","13","189",21614,0.580318312205052,1268,0.132599241232534,7.14519613499717,7.86633892304654,8.78905071352105,13.2153846153846,506.186726659168,63,12446,0,0,0,0,9 +"5328",2011,13191,"GA","13","191",14226,0.62463095740194,754,0.164768733305216,6.62539236800796,7.42535788702715,8.36380888451688,10.5230769230769,544.003868471954,45,8272,0,0,0,0,9 +"5329",2011,13193,"GA","13","193",14452,0.369499031275948,1083,0.136520896761694,6.98749024700099,7.49554194388426,8.26075135470051,13.7076923076923,606.997020196446,55,9061,0,0,0,0,9 +"5330",2011,13195,"GA","13","195",28186,0.896473426523806,1662,0.134534875470092,7.41577697541539,8.21256839823415,9.04981944514108,10.1076923076923,533.765143336932,89,16674,0,0,0,0,9 +"5331",2011,13197,"GA","13","197",8699,0.633865961604782,513,0.142085297160593,6.24027584517077,6.9037472575846,7.85554467791566,10.3461538461538,527.34375,27,5120,0,0,0,0,9 +"5332",2011,13199,"GA","13","199",21596,0.592192998703464,1300,0.145489905538063,7.17011954344963,7.79605797431612,8.77909581088053,13.2153846153846,535.143769968051,67,12520,0,0,0,0,9 +"5333",2011,13201,"GA","13","201",6072,0.700428194993412,354,0.134387351778656,5.86929691313377,6.51471269087253,7.4500795698075,9.16923076923077,826.446280991736,28,3388,0,0,0,0,9 +"5334",2011,13205,"GA","13","205",23399,0.502884738664045,1605,0.119022180435061,7.38087903556412,8.02910705461974,8.75951172211649,9.93846153846154,395.882818685669,55,13893,0,0,0,0,9 +"5335",2011,13207,"GA","13","207",26301,0.752556936998593,1589,0.148701570282499,7.37086016653672,8.10802122137675,8.98080141357311,9.64615384615385,355.981096176272,58,16293,0,0,0,0,9 +"5336",2011,13209,"GA","13","209",9027,0.723274620582696,731,0.129278830176138,6.59441345974978,7.05617528410041,7.84815308619953,13.1153846153846,695.715854998169,38,5462,0,0,0,0,9 +"5337",2011,13211,"GA","13","211",17906,0.747458952306489,895,0.141181726795488,6.79682371827486,7.74370325817375,8.57281709516423,9.98461538461538,468.247000292654,48,10251,0,0,0,0,9 +"5338",2011,13213,"GA","13","213",39363,0.970479892284633,2561,0.115184310138963,7.84815308619953,8.65189889426853,9.38286408629003,13.7615384615385,513.822242982717,121,23549,0,0,0,0,9 +"5339",2011,13215,"GA","13","215",195340,0.489106173850722,16699,0.108375140780178,9.72310411637243,10.0876823537118,11.0012161175021,9.98461538461538,462.891529085018,540,116658,0,0,0,0,9 +"5340",2011,13217,"GA","13","217",100446,0.560898393166477,6023,0.107301435597236,8.70334075304372,9.63344891525694,10.3488782535166,12.2615384615385,446.671195652174,263,58880,0,0,0,0,9 +"5341",2011,13219,"GA","13","219",33269,0.906940394962277,1600,0.132375484685443,7.37775890822787,8.47657950853094,9.21502936146231,6.92307692307692,256.726227151366,50,19476,0,0,0,0,9 +"5342",2011,13221,"GA","13","221",14700,0.808503401360544,789,0.133741496598639,6.67076632084587,7.59135704669855,8.38366179879172,9.68461538461538,423.147301006404,37,8744,0,0,0,0,9 +"5343",2011,13223,"GA","13","223",143606,0.803190674484353,8111,0.0926632591952982,9.00097644407034,10.1205325453885,10.7037836486131,9.44615384615385,283.704301695306,246,86710,0,0,0,0,9 +"5344",2011,13225,"GA","13","225",28031,0.517926581285006,3018,0.118261924298099,8.0123496393278,8.03268487596762,9.04121140896821,11.7307692307692,722.286833567975,118,16337,0,0,0,0,9 +"5345",2011,13227,"GA","13","227",29390,0.97604627424294,1559,0.152977203130316,7.35179986905778,8.25686684897431,9.0835292051098,10.4692307692308,480.157352771029,83,17286,0,0,0,0,9 +"5346",2011,13229,"GA","13","229",18769,0.896851190793329,1026,0.126485161702808,6.93342302573071,7.8046592970561,8.61177583390219,10.5769230769231,586.1010326542,63,10749,0,0,0,0,9 +"5347",2011,13231,"GA","13","231",17792,0.883936600719424,937,0.122976618705036,6.84268328223842,7.86863689418417,8.5709235138372,10.0923076923077,463.499420625724,48,10356,0,0,0,0,9 +"5348",2011,13233,"GA","13","233",41277,0.84783293359498,2793,0.118225646243671,7.93487156594518,8.54849804124465,9.38898852340383,11.4769230769231,637.615066295076,151,23682,0,0,0,0,9 +"5349",2011,13235,"GA","13","235",11855,0.660733867566428,664,0.14179671024884,6.49828214947643,7.34277918933185,8.35725915349991,9.56923076923077,430.256766134629,31,7205,0,0,0,0,9 +"5350",2011,13237,"GA","13","237",21242,0.717164108840975,1130,0.159165803596648,7.02997291170639,7.76895604453833,8.76045304631527,12.9076923076923,454.730004060089,56,12315,0,0,0,0,9 +"5351",2011,13241,"GA","13","241",16257,0.968628898320723,814,0.157593651965307,6.70196036600254,7.52671756135271,8.42507790250843,12.2769230769231,566.792620582352,51,8998,0,0,0,0,9 +"5352",2011,13243,"GA","13","243",7570,0.373183619550859,438,0.148612945838838,6.08221891037645,6.5694814204143,7.72533003791713,12.6461538461538,564.838785596611,24,4249,0,0,0,0,9 +"5353",2011,13245,"GA","13","245",200618,0.408652264502687,17939,0.117128074250566,9.79473239269909,10.0420313619842,11.0519846441332,11.1307692307692,487.853035301473,593,121553,0,0,0,0,9 +"5354",2011,13247,"GA","13","247",85423,0.486344427144914,5351,0.125001463306135,8.5850387383113,9.38101098602928,10.2073628048827,11.0923076923077,279.591756931138,143,51146,0,0,0,0,9 +"5355",2011,13251,"GA","13","251",14403,0.556342428660696,907,0.142123168784281,6.81014245011514,7.41697962138115,8.35678966992321,15.6538461538462,647.921760391198,53,8180,0,0,0,0,9 +"5356",2011,13253,"GA","13","253",8766,0.655943417750399,444,0.144193474788957,6.09582456243222,6.88755257166462,7.8336002236611,12.5692307692308,725.990458411118,35,4821,0,0,0,0,9 +"5357",2011,13255,"GA","13","255",64045,0.646592239831369,4210,0.126723397611055,8.34521792667643,9.01140150935879,9.87044769845793,13.8923076923077,614.85227575193,231,37570,0,0,0,0,9 +"5358",2011,13257,"GA","13","257",25763,0.868998175678298,1782,0.14124907813531,7.48549160803075,8.01201823915906,8.95364003713313,11.8769230769231,627.922511690047,94,14970,0,0,0,0,9 +"5359",2011,13261,"GA","13","261",31993,0.448441846653956,2940,0.119182321132748,7.98616486033273,8.20330402679528,9.1874810778301,12.4384615384615,525.617202017521,99,18835,0,0,0,0,9 +"5360",2011,13263,"GA","13","263",6854,0.405894368252116,390,0.176247446746425,5.96614673912369,6.62804137617953,7.66949525100769,10.4692307692308,591.133004926108,24,4060,0,0,0,0,9 +"5361",2011,13267,"GA","13","267",25435,0.688264202870061,2003,0.109337527029684,7.60240133566582,8.23747928861363,8.71078434046842,8.7,415.437413450539,69,16609,0,0,0,0,9 +"5362",2011,13269,"GA","13","269",8513,0.607658874662281,513,0.138846470104546,6.24027584517077,6.96508034560141,7.84541603659248,14.3,661.020450320182,32,4841,0,0,0,0,9 +"5363",2011,13271,"GA","13","271",16242,0.616488117226943,967,0.126585395887206,6.87419849545329,7.81762544305337,8.26436332973167,13.0923076923077,268.894650917123,28,10413,0,0,0,0,9 +"5364",2011,13273,"GA","13","273",9390,0.37912673056443,641,0.141533546325879,6.46302945692067,6.87212810133899,7.93200315236138,11.8923076923077,555.349870418364,30,5402,0,0,0,0,9 +"5365",2011,13275,"GA","13","275",44591,0.611132291269539,2534,0.130362629230114,7.83755436088108,8.59822003005861,9.50814602759882,10.3538461538462,492.707152074454,126,25573,0,0,0,0,9 +"5366",2011,13277,"GA","13","277",41160,0.66511175898931,3526,0.114115646258503,8.16791936295782,8.51639287124547,9.41637845538745,11.9769230769231,511.562136083846,123,24044,0,0,0,0,9 +"5367",2011,13279,"GA","13","279",27198,0.725090080152952,1624,0.118243988528568,7.39264752072162,8.10076824307173,8.97752520096524,13.2923076923077,598.054679284963,91,15216,0,0,0,0,9 +"5368",2011,13281,"GA","13","281",10577,0.984211023919826,580,0.156282499763638,6.36302810354046,6.89060912014717,7.91169052070834,12.4615384615385,747.84276126558,39,5215,0,0,0,0,9 +"5369",2011,13283,"GA","13","283",6823,0.66305144364649,492,0.126190825150227,6.19847871649231,6.67456139181443,7.5522372875608,13.1384615384615,525.525525525526,21,3996,0,0,0,0,9 +"5370",2011,13285,"GA","13","285",67651,0.630411967302774,4668,0.121609436667603,8.44848599340645,9.0693526786752,9.92466178776754,10.9076923076923,480.526049570056,190,39540,0,0,0,0,9 +"5371",2011,13287,"GA","13","287",8941,0.571188905044179,630,0.127278827871603,6.44571981938558,6.97914527506881,7.82364593083495,14.1461538461538,510.705165979179,26,5091,0,0,0,0,9 +"5372",2011,13289,"GA","13","289",8836,0.573223177908556,537,0.165006790402897,6.28599809450886,6.83840520084734,7.90248743716286,15.3307692307692,511.460503883311,27,5279,0,0,0,0,9 +"5373",2011,13291,"GA","13","291",21265,0.981612979073595,901,0.173054314601458,6.80350525760834,7.66246781520024,8.6741969402259,10.1384615384615,501.363356495734,57,11369,0,0,0,0,9 +"5374",2011,13293,"GA","13","293",26919,0.704409524870909,1689,0.134217467216464,7.4318919168078,8.12326131912175,8.99689959612336,11.4769230769231,623.68739260485,98,15713,0,0,0,0,9 +"5375",2011,13295,"GA","13","295",68825,0.94471485652016,3881,0.133774064656738,8.26384813136891,9.12467354521909,9.92142569766714,9.73076923076923,544.33111023931,222,40784,0,0,0,0,9 +"5376",2011,13297,"GA","13","297",84647,0.81806797641972,4950,0.118539345753541,8.50714285556274,9.40360186880847,10.1455706136697,10.3153846153846,443.548387096774,220,49600,0,0,0,0,9 +"5377",2011,13299,"GA","13","299",36279,0.683535929876788,2577,0.12610601174233,7.85438121065236,8.414717399827,9.24038449332456,11.1769230769231,587.930953388834,125,21261,0,0,0,0,9 +"5378",2011,13301,"GA","13","301",5679,0.376122556788167,331,0.146328578975172,5.80211837537706,6.39359075395063,7.45240245122364,16.4307692307692,465.983224603914,15,3219,0,0,0,0,9 +"5379",2011,13303,"GA","13","303",20971,0.460016212865386,1359,0.128558485527633,7.21450441415114,7.84345640437612,8.68693596600333,12.6384615384615,362.433028679483,46,12692,0,0,0,0,9 +"5380",2011,13305,"GA","13","305",30301,0.779215207418897,1849,0.121118114913699,7.52240023138712,8.36217546914963,9.02773877597491,12.0076923076923,484.288151450113,88,18171,0,0,0,0,9 +"5381",2011,13309,"GA","13","309",8078,0.6142609556821,677,0.115746471898985,6.51767127291227,7.12689080889881,7.37148929521428,14.6538461538462,376.007162041182,21,5585,0,0,0,0,9 +"5382",2011,13311,"GA","13","311",27401,0.966862523265574,1652,0.142440056932229,7.40974195408092,8.08240225392624,8.98369068133269,9.84615384615385,438.116100766703,68,15521,0,0,0,0,9 +"5383",2011,13313,"GA","13","313",102909,0.925050287146897,7207,0.105024827760449,8.88280805492444,9.55874117946267,10.2946508759334,11.7076923076923,369.853571608695,220,59483,0,0,0,0,9 +"5384",2011,13315,"GA","13","315",9248,0.630298442906574,644,0.124783737024221,6.46769872610435,7.18690102041163,7.63964228785801,12.6692307692308,405.61095149569,24,5917,0,0,0,0,9 +"5385",2011,13317,"GA","13","317",10230,0.556500488758553,510,0.148093841642229,6.23441072571837,7.0604763659998,7.99260665240021,13.7846153846154,696.621386276559,40,5742,0,0,0,0,9 +"5386",2011,13319,"GA","13","319",9413,0.599702539041751,532,0.138638053755445,6.27664348934164,6.96129604591017,7.94129557090653,12.8153846153846,666.173205033309,36,5404,0,0,0,0,9 +"5387",2011,13321,"GA","13","321",21516,0.702779327012456,1504,0.138315672058003,7.31588350450979,7.85941315469358,8.76717339668401,11.4230769230769,476.5625,61,12800,0,0,0,0,9 +"5388",2011,15001,"HI","15","001",187101,0.34040438052175,11175,0.163270105451067,9.32143441948177,9.96185079583304,10.9300845496611,9.75384615384615,363.284954992036,406,111758,1,0,0,0,9 +"5389",2011,15003,"HI","15","003",967510,0.208637636820291,76150,0.120985829603828,11.2404603583233,11.7318360699948,12.5677077674215,5.93846153846154,277.500277500277,1625,585585,1,0,0,0,9 +"5390",2011,15007,"HI","15","007",67894,0.333829204347954,3562,0.154976875718031,8.17807746384961,9.01651287499603,9.90683195378652,8.56923076923077,327.699206622973,133,40586,1,0,0,0,9 +"5391",2011,15009,"HI","15","009",156967,0.345728720049437,8450,0.143820038606841,9.04192172035122,9.95551058060328,10.778560378194,7.9,314.729115549068,304,96591,1,0,0,0,9 +"5392",2011,19005,"IA","19","005",14224,0.97419853768279,704,0.148762654668166,6.55677835615804,7.3185395485679,8.22630598801551,7.29230769230769,392.852616905335,31,7891,1,0,0,0,9 +"5393",2011,19007,"IA","19","007",12853,0.985917684587256,675,0.145102310744573,6.51471269087253,7.22475340576797,8.18618599422608,7.02307692307692,505.902192242833,36,7116,1,0,0,0,9 +"5394",2011,19011,"IA","19","011",26079,0.987614555772844,1146,0.1246213428429,7.04403289727469,8.10228362448007,8.90313563303554,5.9,268.546492111447,40,14895,1,0,0,0,9 +"5395",2011,19013,"IA","19","013",131598,0.880210945455098,15492,0.124530767944802,9.64807904063464,9.54616954473329,10.6014481300916,5.93076923076923,293.129694163825,233,79487,1,0,0,0,9 +"5396",2011,19015,"IA","19","015",26287,0.980636816677445,1397,0.138737779130369,7.24208235925696,8.02747653086048,8.92585319042092,5.03846153846154,334.338534154976,51,15254,1,0,0,0,9 +"5397",2011,19017,"IA","19","017",24383,0.97789443464709,1977,0.126809662469754,7.58933582317062,7.92226105835325,8.81981313623223,4.44615384615385,177.383592017738,24,13530,1,0,0,0,9 +"5398",2011,19019,"IA","19","019",20911,0.986849026827985,1027,0.128257854717613,6.93439720992856,7.77275271646874,8.65921345143667,5.76153846153846,379.473911168607,44,11595,1,0,0,0,9 +"5399",2011,19021,"IA","19","021",20310,0.889906450024618,1565,0.121467257508616,7.35564110297425,7.68017564043659,8.61068353450358,4.6,367.068694284216,42,11442,1,0,0,0,9 +"5400",2011,19023,"IA","19","023",14966,0.989776827475611,615,0.144794868368301,6.42162226780652,7.39572160860205,8.30152165494073,5.12307692307692,380.088278567925,31,8156,1,0,0,0,9 +"5401",2011,19025,"IA","19","025",10064,0.97327106518283,499,0.149344197138315,6.21260609575152,6.96129604591017,7.83991936001258,5.8,393.3910306845,20,5084,1,0,0,0,9 +"5402",2011,19027,"IA","19","027",20860,0.983652924256951,903,0.130536912751678,6.80572255341699,7.74370325817375,8.63159273172473,4.12307692307692,386.03263730479,44,11398,1,0,0,0,9 +"5403",2011,19029,"IA","19","029",13762,0.984231943031536,582,0.14234849585816,6.36647044773144,7.23993259132047,8.22389538017882,6.05384615384615,387.648710065499,29,7481,1,0,0,0,9 +"5404",2011,19031,"IA","19","031",18362,0.986657226881603,776,0.140126347892386,6.65415252018322,7.69893619981345,8.54714026778419,5.25384615384615,286.697247706422,30,10464,1,0,0,0,9 +"5405",2011,19033,"IA","19","033",43971,0.968365513633986,2574,0.149052784789975,7.85321638815607,8.45297461908959,9.45281585158988,6.23076923076923,329.373014939419,84,25503,1,0,0,0,9 +"5406",2011,19035,"IA","19","035",12027,0.980294337740085,532,0.154319447908872,6.27664348934164,7.06561336359772,8.07121853996986,4.82307692307692,435.108777194299,29,6665,1,0,0,0,9 +"5407",2011,19039,"IA","19","039",9318,0.978965443228161,519,0.133827001502468,6.25190388316589,6.98471632011827,7.85399308722424,7.11538461538461,532.521871434005,28,5258,1,0,0,0,9 +"5408",2011,19041,"IA","19","041",16598,0.982528015423545,867,0.142607543077479,6.76503897678054,7.49387388678356,8.43944784279138,5.53846153846154,374.131480491716,35,9355,1,0,0,0,9 +"5409",2011,19043,"IA","19","043",18019,0.987679671457906,793,0.15089627615295,6.67582322163485,7.55851674304564,8.48673398393153,6.27692307692308,240.794622253436,24,9967,1,0,0,0,9 +"5410",2011,19045,"IA","19","045",49105,0.954627838305672,2774,0.134935342633133,7.92804560087478,8.63621989783788,9.54909571461196,6.74615384615385,402.464650781779,113,28077,1,0,0,0,9 +"5411",2011,19047,"IA","19","047",17213,0.956312089699646,1005,0.122872247719747,6.91274282049318,7.58781721999343,8.39547743273214,4.82307692307692,365.670036567004,34,9298,1,0,0,0,9 +"5412",2011,19049,"IA","19","049",69699,0.944432488270994,2901,0.101278354065338,7.9728107841214,9.28859686994195,9.95465583911053,4.33846153846154,135.635914452491,56,41287,1,0,0,0,9 +"5413",2011,19053,"IA","19","053",8250,0.965333333333333,890,0.123272727272727,6.79122146272619,6.66695679242921,7.69348164083518,5.06923076923077,400,18,4500,1,0,0,0,9 +"5414",2011,19055,"IA","19","055",17631,0.989960864386592,734,0.134365606034825,6.59850902861452,7.57814547241947,8.47866024169945,5.56153846153846,314.019448946515,31,9872,1,0,0,0,9 +"5415",2011,19057,"IA","19","057",40074,0.924589509407596,2112,0.140764585516794,7.65539064482615,8.43728380818794,9.35088461696849,6.86923076923077,392.961620748374,90,22903,1,0,0,0,9 +"5416",2011,19059,"IA","19","059",16861,0.989383785066129,671,0.169147737382124,6.50876913697168,7.50494206839617,8.45595588194505,6.47692307692308,250.705108116578,24,9573,1,0,0,0,9 +"5417",2011,19061,"IA","19","061",94656,0.951265635564571,6722,0.12891945571332,8.81314100828505,9.28303305736962,10.2106045376265,5.15384615384615,260.601753139067,143,54873,1,0,0,0,9 +"5418",2011,19063,"IA","19","063",10092,0.966309948474039,655,0.140110978993262,6.48463523563525,6.94408720822953,7.87207397986687,5.7,344.639941955378,19,5513,1,0,0,0,9 +"5419",2011,19065,"IA","19","065",20975,0.977020262216925,1371,0.136638855780691,7.22329567956231,7.66293785046154,8.63301875692183,6.33076923076923,337.837837837838,39,11544,1,0,0,0,9 +"5420",2011,19067,"IA","19","067",16095,0.967070518794657,767,0.137061199130165,6.64248680136726,7.48493028328966,8.3696208269491,6.59230769230769,334.64112624048,29,8666,1,0,0,0,9 +"5421",2011,19069,"IA","19","069",10695,0.981954184198223,497,0.144273024777934,6.20859002609663,7.03790596344718,7.96241568012106,5.20769230769231,337.381916329285,20,5928,1,0,0,0,9 +"5422",2011,19071,"IA","19","071",7371,0.985619318952652,311,0.158187491520825,5.73979291217923,6.66185474054531,7.60986220091355,5.9,465.230166503428,19,4084,1,0,0,0,9 +"5423",2011,19073,"IA","19","073",9331,0.985103418711821,396,0.146929589540242,5.98141421125448,6.8330317327862,7.80220931624712,5.69230769230769,538.170221247758,27,5017,1,0,0,0,9 +"5424",2011,19075,"IA","19","075",12478,0.990944061548325,555,0.137762461933002,6.31896811374643,7.25841215059531,8.12799505577195,5.06923076923077,145.116819039327,10,6891,1,0,0,0,9 +"5425",2011,19077,"IA","19","077",10864,0.98831001472754,370,0.147275405007364,5.91350300563827,7.09672137849476,7.96866570046623,6.22307692307692,354.012137559002,21,5932,1,0,0,0,9 +"5426",2011,19079,"IA","19","079",15468,0.964765968450996,694,0.135634859063874,6.5424719605068,7.49886973397693,8.34498036877057,8.96923076923077,312.463835204259,27,8641,1,0,0,0,9 +"5427",2011,19081,"IA","19","081",11296,0.984065155807365,422,0.151912181303116,6.04500531403601,7.06561336359772,8.021256180144,5.68461538461538,286.350620426344,18,6286,1,0,0,0,9 +"5428",2011,19083,"IA","19","083",17376,0.976346685082873,884,0.137258287292818,6.78445706263764,7.48885295573346,8.41958036254924,5.98461538461538,379.815518176886,35,9215,1,0,0,0,9 +"5429",2011,19085,"IA","19","085",14764,0.988959631536169,668,0.14162828501761,6.50428817353665,7.47193207824512,8.32239411311117,5.63076923076923,395.020349533158,33,8354,1,0,0,0,9 +"5430",2011,19087,"IA","19","087",20252,0.941190993482125,1293,0.131740075054316,7.16472037877186,7.80954132465341,8.62263370387423,6.91538461538462,380.678453599526,45,11821,1,0,0,0,9 +"5431",2011,19091,"IA","19","091",9782,0.985381312615007,473,0.135555101206297,6.15909538849193,6.8627579130514,7.87131120332341,5.1,300.075018754689,16,5332,1,0,0,0,9 +"5432",2011,19095,"IA","19","095",16324,0.986829208527322,695,0.13336192109777,6.54391184556479,7.57507169950756,8.41272116981953,5.08461538461538,303.984366518293,28,9211,1,0,0,0,9 +"5433",2011,19097,"IA","19","097",19734,0.981808047025438,905,0.140214857606162,6.80793494369993,7.72046169459972,8.60392119492606,6.62307692307692,407.129286166652,45,11053,1,0,0,0,9 +"5434",2011,19099,"IA","19","099",36624,0.975344036697248,1817,0.134966142420271,7.50494206839617,8.42376124662369,9.21830854162536,6.82307692307692,378.540050472007,81,21398,1,0,0,0,9 +"5435",2011,19101,"IA","19","101",17099,0.883092578513363,1643,0.198666588689397,7.40427911803727,7.41758040241454,8.47782846789396,6.09230769230769,331.889001567254,36,10847,1,0,0,0,9 +"5436",2011,19103,"IA","19","103",134125,0.879269338303821,21729,0.102300093196645,9.98640305286344,9.62502947461188,10.6858125117421,4.10769230769231,164.100694009185,144,87751,1,0,0,0,9 +"5437",2011,19105,"IA","19","105",20743,0.96813382827942,958,0.139902617750566,6.86484777797086,7.84698098213879,8.60611940061064,5.90769230769231,282.462407576639,34,12037,1,0,0,0,9 +"5438",2011,19107,"IA","19","107",10399,0.989422059813444,494,0.138763342629099,6.20253551718792,6.99301512293296,7.92696354486298,6.23076923076923,384.279475982533,22,5725,1,0,0,0,9 +"5439",2011,19109,"IA","19","109",15396,0.985970381917381,572,0.147310989867498,6.3491389913798,7.28892769452126,8.29104513108173,4.43846153846154,414.684717648494,34,8199,1,0,0,0,9 +"5440",2011,19111,"IA","19","111",35575,0.951960646521434,1994,0.148475052705552,7.59789795052178,8.2960476427647,9.2051268049233,8.23846153846154,474.206064089668,99,20877,1,0,0,0,9 +"5441",2011,19113,"IA","19","113",214242,0.923773116382409,15016,0.119719756163591,9.61687157826634,10.2206313351375,11.0658411696682,5.78461538461538,277.025652262376,354,127786,1,0,0,0,9 +"5442",2011,19115,"IA","19","115",11384,0.963018271257906,573,0.129304286718201,6.35088571671474,7.22037383672395,8.04558828080353,6.21538461538462,384.556222119674,25,6501,1,0,0,0,9 +"5443",2011,19117,"IA","19","117",8879,0.991215226939971,388,0.141907872508165,5.96100533962327,6.85118492749374,7.75662333453886,5.36923076923077,359.332065102515,17,4731,1,0,0,0,9 +"5444",2011,19119,"IA","19","119",11694,0.992303745510518,537,0.126731657260133,6.28599809450886,7.1731917424866,8.0245348716057,3.2,369.122131279088,23,6231,1,0,0,0,9 +"5445",2011,19121,"IA","19","121",15738,0.986275257338925,594,0.131782945736434,6.38687931936265,7.6511201757027,8.39795910349254,6.06153846153846,339.404910057699,30,8839,1,0,0,0,9 +"5446",2011,19123,"IA","19","123",22506,0.96831955922865,1470,0.128676797298498,7.29301767977278,7.85166117788927,8.74193546409414,5.93846153846154,313.038034121146,40,12778,1,0,0,0,9 +"5447",2011,19125,"IA","19","125",33274,0.97505559896616,2222,0.124060828274328,7.70616297019958,8.24354550792826,9.12858787010392,5.50769230769231,263.73862963561,49,18579,1,0,0,0,9 +"5448",2011,19127,"IA","19","127",41013,0.945505083753932,2430,0.134810913612757,7.79564653633459,8.41360887515967,9.32357976758269,6.67692307692308,512.147078135259,117,22845,1,0,0,0,9 +"5449",2011,19129,"IA","19","129",15031,0.984232585988956,621,0.154480739804404,6.43133108193348,7.539027055824,8.38160253710989,5.03076923076923,317.640385706183,28,8815,1,0,0,0,9 +"5450",2011,19133,"IA","19","133",9238,0.976401818575449,337,0.14126434293137,5.82008293035236,6.84054652928869,7.75747876658418,7.03076923076923,541.328336456381,26,4803,1,0,0,0,9 +"5451",2011,19135,"IA","19","135",8057,0.985726697281867,388,0.135906665011791,5.96100533962327,6.84694313958538,7.68386398025643,6.80769230769231,652.418447694038,29,4445,1,0,0,0,9 +"5452",2011,19137,"IA","19","137",10633,0.987115583560613,453,0.145490454246215,6.11589212548303,7.10249935577465,7.96589273508453,5.95384615384615,361.134995700774,21,5815,1,0,0,0,9 +"5453",2011,19139,"IA","19","139",42847,0.963778094148949,2392,0.129857399584568,7.77988511507052,8.57960445153763,9.41897923708751,6.70769230769231,312.259215702178,77,24659,1,0,0,0,9 +"5454",2011,19141,"IA","19","141",14217,0.981008651614265,642,0.138777519870577,6.46458830368996,7.28550654852279,8.22550309756692,4.26153846153846,338.013520540822,26,7692,1,0,0,0,9 +"5455",2011,19145,"IA","19","145",15900,0.95566037735849,784,0.145220125786164,6.66440902035041,7.5251007461258,8.29853954537488,5.81538461538462,314.394790029194,28,8906,1,0,0,0,9 +"5456",2011,19147,"IA","19","147",9354,0.982681205901219,553,0.135236262561471,6.31535800152233,6.79794041297493,7.80994708647679,4.77692307692308,415.265967965197,21,5057,1,0,0,0,9 +"5457",2011,19149,"IA","19","149",24824,0.982758620689655,1085,0.136077989042862,6.98933526597456,7.95997452808054,8.82246957226897,4.53076923076923,239.808153477218,33,13761,1,0,0,0,9 +"5458",2011,19151,"IA","19","151",7203,0.984589754269055,307,0.148826877689851,5.7268477475872,6.53087762772588,7.54115245513631,4.46923076923077,513.610683102209,20,3894,1,0,0,0,9 +"5459",2011,19153,"IA","19","153",438783,0.884184209506749,29029,0.112969280942972,10.2760506093017,11.000314915839,11.819336058661,5.79230769230769,296.081407433438,792,267494,1,0,0,0,9 +"5460",2011,19155,"IA","19","155",93517,0.965375279360972,5911,0.131280943571757,8.68457030082437,9.31199402570268,10.2195748494931,5.68461538461538,377.503009081956,207,54834,1,0,0,0,9 +"5461",2011,19157,"IA","19","157",18900,0.962645502645503,1712,0.13015873015873,7.44541755670169,7.5740450053722,8.57206009285708,5.68461538461538,398.860398860399,42,10530,1,0,0,0,9 +"5462",2011,19161,"IA","19","161",10223,0.988261762691969,410,0.148879976523525,6.01615715969835,6.93342302573071,7.88758403166028,4.5,364.963503649635,20,5480,1,0,0,0,9 +"5463",2011,19163,"IA","19","163",166686,0.887603038047586,10345,0.130136904119122,9.24425859017964,9.94760012715445,10.8276273993537,6.23846153846154,321.781188791622,322,100068,1,0,0,0,9 +"5464",2011,19165,"IA","19","165",11997,0.987913645077936,466,0.140118362924064,6.14418563412565,7.19668657083435,8.06652149046999,4.4,341.880341880342,22,6435,1,0,0,0,9 +"5465",2011,19167,"IA","19","167",34022,0.977338192933984,2987,0.108106519311034,8.00202481821611,8.1371033896393,9.09627541568821,3.75384615384615,206.859009254219,38,18370,1,0,0,0,9 +"5466",2011,19169,"IA","19","169",91164,0.897415646527138,20481,0.0941380369444079,9.92725290608639,9.0173622349937,10.2185172465061,4.01538461538462,115.519233090226,67,57999,1,0,0,0,9 +"5467",2011,19171,"IA","19","171",17613,0.901152557769829,797,0.134730028955885,6.68085467879022,7.62997570702779,8.47407690034261,6.2,346.85726298087,33,9514,1,0,0,0,9 +"5468",2011,19175,"IA","19","175",12555,0.979689366786141,763,0.134607726005575,6.63725803128446,7.2254814727823,8.16593213732158,5.33076923076923,329.607337345944,23,6978,1,0,0,0,9 +"5469",2011,19179,"IA","19","179",35484,0.960432871153196,2358,0.135244053657987,7.76556908109732,8.33854487998858,9.23921933152656,7.31538461538462,451.69750837826,93,20589,1,0,0,0,9 +"5470",2011,19181,"IA","19","181",46654,0.980194624255155,2781,0.124576670810649,7.93056585423396,8.70880479511728,9.5253700659462,5.27692307692308,264.382796499721,71,26855,1,0,0,0,9 +"5471",2011,19183,"IA","19","183",21825,0.979885452462772,1003,0.134570446735395,6.91075078796194,7.84149292446001,8.7071521753394,4.77692307692308,338.060686015831,41,12128,1,0,0,0,9 +"5472",2011,19187,"IA","19","187",37754,0.940324204057848,2847,0.134767176987869,7.95402108727804,8.26487826280175,9.23600811872476,7.10769230769231,441.135925006893,96,21762,1,0,0,0,9 +"5473",2011,19189,"IA","19","189",10699,0.976539863538649,648,0.150200953360127,6.47389069635227,7.04577657687951,7.98480338973441,6.13846153846154,330.906684315023,20,6044,1,0,0,0,9 +"5474",2011,19191,"IA","19","191",21055,0.977345048682023,2261,0.130277843742579,7.72356247227797,7.6177595766085,8.68236858937522,5.08461538461538,208.125208125208,25,12012,1,0,0,0,9 +"5475",2011,19193,"IA","19","193",102741,0.90732034922767,7362,0.119981312231728,8.90408691393897,9.41238285338234,10.2944817942158,5.83846153846154,381.084651603943,225,59042,1,0,0,0,9 +"5476",2011,19197,"IA","19","197",13032,0.98365561694291,587,0.143032535297729,6.3750248198281,7.2115567333138,8.11969625295725,6.99230769230769,315.412186379928,22,6975,1,0,0,0,9 +"5477",2011,16001,"ID","16","001",401352,0.942733560565289,26393,0.114630050429548,10.1808541024604,10.9440822348347,11.6987409110184,7.22307692307692,242.061094740822,589,243327,0,0,0,0,9 +"5478",2011,16005,"ID","16","005",83657,0.932904598539273,7298,0.114120754987628,8.89535561699639,9.14227564106205,10.1100137980269,7.36923076923077,359.073837137315,174,48458,0,0,0,0,9 +"5479",2011,16009,"ID","16","009",9176,0.884808195292066,427,0.162489102005231,6.05678401322862,6.86484777797086,7.84658997529119,12.9769230769231,570.304818092429,29,5085,0,0,0,0,9 +"5480",2011,16011,"ID","16","011",45903,0.906520271006252,2629,0.108511426268436,7.87435882472988,8.54636356871602,9.4041786888978,6.98461538461538,300.016439256946,73,24332,0,0,0,0,9 +"5481",2011,16013,"ID","16","013",21085,0.968034147498221,870,0.154849419018259,6.76849321164863,7.96241568012106,8.7645219095188,8.6,268.858503610386,35,13018,0,0,0,0,9 +"5482",2011,16015,"ID","16","015",6986,0.976381334096765,214,0.215860292012597,5.36597601502185,6.68710860786651,7.6377164326648,10.1307692307692,426.338228327807,18,4222,0,0,0,0,9 +"5483",2011,16017,"ID","16","017",40795,0.977644319156759,1716,0.184066674837603,7.44775128004791,8.41604600941128,9.39449358359911,12.1538461538462,449.756381959772,108,24013,0,0,0,0,9 +"5484",2011,16019,"ID","16","019",105833,0.965842412102085,6349,0.106753092135723,8.75605259917045,9.40269476447051,10.278905739292,6.77692307692308,335.719913672022,196,58382,0,0,0,0,9 +"5485",2011,16021,"ID","16","021",10822,0.963407872851599,402,0.164202550360377,5.99645208861902,7.09257371597468,8.00336305862995,11.3846153846154,470.588235294118,28,5950,0,0,0,0,9 +"5486",2011,16027,"ID","16","027",191392,0.956398386557432,12468,0.100923758568801,9.43092064088723,10.1132215969404,10.8809486396401,10.4692307692308,275.495224113935,289,104902,0,0,0,0,9 +"5487",2011,16031,"ID","16","031",23111,0.969062351261304,1332,0.106788974946995,7.19443685110033,7.85941315469358,8.65938695711941,6.45384615384615,344.885598923284,41,11888,0,0,0,0,9 +"5488",2011,16035,"ID","16","035",8609,0.960738761760948,355,0.179231037286561,5.87211778947542,6.83410873881384,7.70885960104718,13.3769230769231,557.880055788006,28,5019,0,0,0,0,9 +"5489",2011,16039,"ID","16","039",26237,0.9096695506346,2717,0.0945992300949041,7.90728360942635,8.01730750768858,8.90272766403552,8.18461538461538,285.306704707561,44,15422,0,0,0,0,9 +"5490",2011,16043,"ID","16","043",13116,0.97682220189082,627,0.114592863677951,6.44094654063292,7.26262860097424,8.09437844497296,7.63846153846154,234.123500146327,16,6834,0,0,0,0,9 +"5491",2011,16045,"ID","16","045",16696,0.975742692860565,852,0.142549113560134,6.74758652682932,7.49498623395053,8.4465561118168,10.6769230769231,394.996708360764,36,9114,0,0,0,0,9 +"5492",2011,16047,"ID","16","047",15352,0.967105263157895,900,0.109887962480459,6.80239476332431,7.47816969415979,8.26126815057765,6.63076923076923,294.804078123081,24,8141,0,0,0,0,9 +"5493",2011,16049,"ID","16","049",16465,0.956635286972366,703,0.178864257515943,6.55535689181067,7.3864708488299,8.37839078853578,12.1230769230769,415.982484948002,38,9135,0,0,0,0,9 +"5494",2011,16051,"ID","16","051",26315,0.974425232756983,1393,0.0980049401482044,7.23921497377981,8.0375431851187,8.8340456411678,6.78461538461538,310.96326294475,43,13828,0,0,0,0,9 +"5495",2011,16053,"ID","16","053",22516,0.962249067329899,1419,0.105747024338248,7.25770767716004,7.85825418218603,8.69181854157572,7.37692307692308,243.30900243309,30,12330,0,0,0,0,9 +"5496",2011,16055,"ID","16","055",140986,0.966585334714085,8740,0.135580837813684,9.07566546864958,9.7503946464023,10.6420143259688,9.97692307692308,328.371278458844,270,82224,0,0,0,0,9 +"5497",2011,16057,"ID","16","057",37872,0.95392374313477,7031,0.107520067596113,8.85808422219916,8.20494516501921,9.35157948366891,6.13846153846154,208.663717552792,50,23962,0,0,0,0,9 +"5498",2011,16059,"ID","16","059",7985,0.978459611772073,314,0.18797745773325,5.74939298590825,6.56667242980324,7.70751219460034,10.1384615384615,313.690342818732,14,4463,0,0,0,0,9 +"5499",2011,16065,"ID","16","065",37937,0.973508711811688,9399,0.0536415636449904,9.1483585796203,7.84658997529119,9.29016767183574,5.16923076923077,136.560557543794,29,21236,0,0,0,0,9 +"5500",2011,16067,"ID","16","067",20208,0.961203483768804,1168,0.118220506730008,7.06304816338817,7.68478394352278,8.56712556016445,6.8,384.146912770542,41,10673,0,0,0,0,9 +"5501",2011,16069,"ID","16","069",39444,0.919455430483724,2860,0.133581786837035,7.9585769038139,8.40760151478614,9.34171945003256,6.20769230769231,408.34248079034,93,22775,0,0,0,0,9 +"5502",2011,16073,"ID","16","073",11378,0.929249428722095,657,0.125593250131833,6.48768401848461,7.18765716411496,7.99361999482774,4.23846153846154,451.685755767059,28,6199,0,0,0,0,9 +"5503",2011,16075,"ID","16","075",22561,0.965427064403174,1168,0.117769602411241,7.06304816338817,7.87853419614036,8.72550732848445,8.9,281.573498964803,34,12075,0,0,0,0,9 +"5504",2011,16079,"ID","16","079",12664,0.970309538850284,541,0.165824384080859,6.29341927884648,7.28619171470238,8.18116085802341,14.1769230769231,651.781999722646,47,7211,0,0,0,0,9 +"5505",2011,16083,"ID","16","083",78108,0.960925897475291,5337,0.114738567112204,8.58241897633394,9.09582698518742,9.9992976073821,7.77692307692308,349.283170486714,153,43804,0,0,0,0,9 +"5506",2011,16085,"ID","16","085",9639,0.980910882871667,376,0.203236850295674,5.9295891433899,7.04577657687951,7.96171881598136,13.9615384615385,370.994940978078,22,5930,0,0,0,0,9 +"5507",2011,16087,"ID","16","087",10135,0.967044893931919,430,0.146423285643809,6.06378520868761,7.02286808608264,7.89020821310996,9.61538461538461,448.430493273543,24,5352,0,0,0,0,9 +"5508",2011,17001,"IL","17","001",67214,0.946395096259708,4302,0.130761448507751,8.36683530982767,8.93853164868069,9.87122259194885,6.91538461538462,383.601680540696,147,38321,1,0,0,0,9 +"5509",2011,17003,"IL","17","003",7993,0.618666333041411,530,0.143875891404979,6.27287700654617,6.77992190747225,7.69712131728263,12.9,411.700975081257,19,4615,1,0,0,0,9 +"5510",2011,17005,"IL","17","005",17727,0.918993625542957,1262,0.130930219439273,7.14045304310116,7.74586822979227,8.50714285556274,9.35384615384615,402.377686328304,44,10935,1,0,0,0,9 +"5511",2011,17007,"IL","17","007",54123,0.94828446316723,2953,0.114831033017386,7.99057688174392,8.97106743873209,9.64147322683293,11.8230769230769,259.226855902271,80,30861,1,0,0,0,9 +"5512",2011,17011,"IL","17","011",34631,0.976350668476221,1708,0.141145216713349,7.44307837434852,8.32142158689788,9.1874810778301,9.93076923076923,368.098159509202,72,19560,1,0,0,0,9 +"5513",2011,17015,"IL","17","015",15229,0.978133823625977,743,0.160089303302909,6.61069604471776,7.38025578842646,8.33950090300594,9.02307692307692,423.629089197458,36,8498,1,0,0,0,9 +"5514",2011,17017,"IL","17","017",13625,0.943633027522936,761,0.124770642201835,6.63463335786169,7.4489161025442,8.23164217997341,8.20769230769231,425.202937765752,33,7761,1,0,0,0,9 +"5515",2011,17019,"IL","17","019",203239,0.758707728339541,34549,0.100595850205915,10.4501338852169,9.96589881265752,11.0639785782501,7.58461538461538,229.541074534259,293,127646,1,0,0,0,9 +"5516",2011,17021,"IL","17","021",34705,0.973980694424434,2033,0.131393171012822,7.61726781362835,8.34924780056679,9.16125516428569,9.61538461538461,486.642169033668,98,20138,1,0,0,0,9 +"5517",2011,17023,"IL","17","023",16205,0.988151804998457,852,0.133415612465288,6.74758652682932,7.55171221535131,8.43641688138895,10.3846153846154,464.864864864865,43,9250,1,0,0,0,9 +"5518",2011,17025,"IL","17","025",13721,0.984403469134903,791,0.141753516507543,6.67329796776765,7.37023064180708,8.26075135470051,10.6307692307692,571.864277544796,45,7869,1,0,0,0,9 +"5519",2011,17027,"IL","17","027",38024,0.950347149168946,2390,0.121212918156954,7.77904864492556,8.49023300983345,9.27218777530226,6.74615384615385,290.924880590534,67,23030,1,0,0,0,9 +"5520",2011,17029,"IL","17","029",53632,0.942497016706444,8940,0.114334725536993,9.09829086816756,8.5657928612523,9.73654709778048,9.46153846153846,283.519297603805,93,32802,1,0,0,0,9 +"5521",2011,17031,"IL","17","031",5219636,0.666338035832384,370325,0.113819047918284,12.8221362774503,13.4697162051218,14.3158311970851,10.5692307692308,317.332729185611,10225,3222170,1,0,0,0,9 +"5522",2011,17033,"IL","17","033",19779,0.938116183831336,1272,0.134132160372112,7.14834574390007,7.82404601085629,8.59470963384407,7.3,342.237061769616,41,11980,1,0,0,0,9 +"5523",2011,17035,"IL","17","035",11084,0.987098520389751,643,0.136412847347528,6.46614472423762,7.1693500166706,8.0487882835342,8.63846153846154,516.028146989836,33,6395,1,0,0,0,9 +"5524",2011,17037,"IL","17","037",104466,0.896368196350966,15783,0.0978117282177934,9.66668869039892,9.36785680985117,10.3808080977447,9.36923076923077,213.905389184697,139,64982,1,0,0,0,9 +"5525",2011,17039,"IL","17","039",16549,0.982778415614237,828,0.137772675086108,6.71901315438526,7.64204440287326,8.46210322509828,8.48461538461538,269.653598838415,26,9642,1,0,0,0,9 +"5526",2011,17041,"IL","17","041",19863,0.983738609474903,1129,0.126667673563913,7.02908756414966,7.74240202181578,8.62155320674048,8.04615384615385,314.098537198241,35,11143,1,0,0,0,9 +"5527",2011,17043,"IL","17","043",924866,0.832638457895522,54427,0.128401303540189,10.9046156332457,11.7282948758104,12.5632889429107,8.31538461538462,219.537214841213,1237,563458,1,0,0,0,9 +"5528",2011,17045,"IL","17","045",18397,0.989617872479209,909,0.143719084633364,6.81234509417748,7.66996199547358,8.55929436743487,10.5153846153846,428.285904635005,45,10507,1,0,0,0,9 +"5529",2011,17047,"IL","17","047",6674,0.987563679952053,340,0.146538807311957,5.82894561761021,6.72383244082121,7.53155238140729,8.13846153846154,369.295700342917,14,3791,1,0,0,0,9 +"5530",2011,17049,"IL","17","049",34268,0.987714485817673,2074,0.127115676432824,7.63723438878947,8.27588566947436,9.1882992410993,6.88461538461539,307.227398640141,61,19855,1,0,0,0,9 +"5531",2011,17051,"IL","17","051",22385,0.941791378155015,1527,0.123788251060978,7.33106030521863,7.952615111651,8.66042735950215,9.23846153846154,328.194168829186,43,13102,1,0,0,0,9 +"5532",2011,17053,"IL","17","053",13875,0.982774774774775,677,0.129801801801802,6.51767127291227,7.42177579364465,8.25556865328375,8.56153846153846,489.375402446877,38,7765,1,0,0,0,9 +"5533",2011,17055,"IL","17","055",40038,0.985838453469204,2242,0.136944902342774,7.7151236036321,8.50289140670538,9.35010231435134,11.1923076923077,551.037639425854,124,22503,1,0,0,0,9 +"5534",2011,17057,"IL","17","057",36909,0.950201847787802,2138,0.136877184426563,7.66762609158499,8.46695197497949,9.20452348665462,10.5384615384615,472.585455379674,103,21795,1,0,0,0,9 +"5535",2011,17059,"IL","17","059",5490,0.988706739526412,299,0.149908925318761,5.70044357339069,6.47389069635227,7.36960072052641,8.89230769230769,959.079283887468,30,3128,1,0,0,0,9 +"5536",2011,17061,"IL","17","061",13857,0.984773038897308,772,0.131846720069279,6.64898455002478,7.4265490723973,8.24879073369641,8.73076923076923,301.015928759564,24,7973,1,0,0,0,9 +"5537",2011,17063,"IL","17","063",50103,0.972696245733788,2703,0.114803504780153,7.90211754627645,8.88985958777302,9.60353044920874,12.8461538461538,348.93474249287,104,29805,1,0,0,0,9 +"5538",2011,17065,"IL","17","065",8425,0.988367952522255,401,0.138278931750742,5.99396142730657,6.83947643822884,7.76429600645052,8.66923076923077,750.2679528403,35,4665,1,0,0,0,9 +"5539",2011,17067,"IL","17","067",18999,0.987683562292752,878,0.151007947786726,6.77764659363512,7.62803112693033,8.57149196482362,9.19230769230769,263.430238028037,28,10629,1,0,0,0,9 +"5540",2011,17069,"IL","17","069",4291,0.979491959916103,193,0.165695642041482,5.26269018890489,6.20657592672493,7.10332206252611,10.8,535.861500412201,13,2426,1,0,0,0,9 +"5541",2011,17071,"IL","17","071",7221,0.986151502561972,307,0.160227115357984,5.7268477475872,6.62936325343745,7.61134771740362,7.99230769230769,439.56043956044,18,4095,1,0,0,0,9 +"5542",2011,17073,"IL","17","073",50293,0.971228600401646,2497,0.141610164436403,7.82284529027977,8.68811670325782,9.56191231773901,7.84615384615385,333.450333450333,95,28490,1,0,0,0,9 +"5543",2011,17075,"IL","17","075",29501,0.979492220602691,1447,0.138266499440697,7.27724772663148,8.10500553754725,9.01164550106428,9.28461538461539,356.221594398723,58,16282,1,0,0,0,9 +"5544",2011,17077,"IL","17","077",60378,0.80217960184173,11702,0.10757229454437,9.36751504634818,8.67846133901236,9.84681137534257,8,319.545989058745,125,39118,1,0,0,0,9 +"5545",2011,17079,"IL","17","079",9755,0.991389031266017,525,0.138903126601743,6.26339826259162,6.96790920180188,7.91644286012226,7.8,214.438884917798,12,5596,1,0,0,0,9 +"5546",2011,17081,"IL","17","081",38758,0.894602404664843,2400,0.137726404871252,7.78322401633604,8.4906438561827,9.28219580907661,9.34615384615385,526.018345433204,121,23003,1,0,0,0,9 +"5547",2011,17083,"IL","17","083",22885,0.982958269608914,1542,0.131876775180249,7.34083555412327,7.90396563403217,8.81581520390635,8.96923076923077,507.159904534606,68,13408,1,0,0,0,9 +"5548",2011,17085,"IL","17","085",22638,0.984804311334924,993,0.168566127749801,6.90073066404517,7.79852305362521,8.74766979009724,7.94615384615385,321.871565394881,41,12738,1,0,0,0,9 +"5549",2011,17087,"IL","17","087",12849,0.898513502996342,835,0.139933068721301,6.72743172485086,7.41758040241454,8.05515773181968,11.7538461538462,336.438923395445,26,7728,1,0,0,0,9 +"5550",2011,17089,"IL","17","089",519091,0.88310334796789,30315,0.109343063162336,10.3193979185058,11.2294478746163,11.9338373220674,9.8,225.715173620766,690,305695,1,0,0,0,9 +"5551",2011,17091,"IL","17","091",113532,0.822464151076349,8142,0.122414825775993,9.00479112906292,9.55336253946113,10.4178668545014,11.6769230769231,376.570935982941,249,66123,1,0,0,0,9 +"5552",2011,17093,"IL","17","093",116817,0.895434739806706,5552,0.0892250271792633,8.62191350218664,9.91985290662239,10.4687161306814,9.40769230769231,204.149593872616,141,69067,1,0,0,0,9 +"5553",2011,17095,"IL","17","095",52702,0.900250464877993,3692,0.141854199081629,8.21392359562274,8.70367275835886,9.59804875849509,8.81538461538462,439.481737092259,135,30718,1,0,0,0,9 +"5554",2011,17097,"IL","17","097",701652,0.8420442042494,41372,0.11979870363086,10.6303596024977,11.4761681152444,12.2448076638297,8.9,226.001144370201,944,417697,1,0,0,0,9 +"5555",2011,17099,"IL","17","099",113527,0.962299717247879,6729,0.132074308314322,8.81418182318832,9.50977807543882,10.3749588542236,10.7,403.140570738336,267,66230,1,0,0,0,9 +"5556",2011,17101,"IL","17","101",16904,0.890617605300521,1200,0.118610979649787,7.09007683577609,7.75790620835175,8.32989929299572,10.7,389.32674959643,41,10531,1,0,0,0,9 +"5557",2011,17103,"IL","17","103",35611,0.932127713347,2018,0.139788267670102,7.60986220091355,8.40893960597598,9.18111751329928,9.06153846153846,367.647058823529,79,21488,1,0,0,0,9 +"5558",2011,17105,"IL","17","105",38813,0.935691649704996,2353,0.129904928760982,7.76344638872736,8.47010158388239,9.32545317907669,8.48461538461538,414.740571132328,96,23147,1,0,0,0,9 +"5559",2011,17107,"IL","17","107",30271,0.905586204618282,2289,0.125136269036371,7.73587031995257,8.25608813381491,9.07291569606451,7.79230769230769,336.535851924225,62,18423,1,0,0,0,9 +"5560",2011,17109,"IL","17","109",32527,0.919820456851231,6619,0.11126141359486,8.79769958011892,7.93164402145431,9.18101454259435,7.96923076923077,211.874846021187,43,20295,1,0,0,0,9 +"5561",2011,17111,"IL","17","111",308519,0.951474625549804,16094,0.120157915719939,9.68620181070608,10.7183433867549,11.4392143371403,10.0153846153846,239.601561448378,445,185725,1,0,0,0,9 +"5562",2011,17113,"IL","17","113",170939,0.863969018187775,21550,0.106769081368207,9.9781310955319,9.93928896499951,10.8989590822847,6.59230769230769,239.667861860728,254,105980,1,0,0,0,9 +"5563",2011,17115,"IL","17","115",110699,0.805978373788381,7341,0.140742012122964,8.90123035211078,9.44762348684411,10.4109073831673,9.94615384615385,387.476269023684,249,64262,1,0,0,0,9 +"5564",2011,17117,"IL","17","117",47742,0.981797997570274,2804,0.139248460475053,7.93880224815448,8.6383483129727,9.54007568065896,9.73846153846154,407.251234367679,113,27747,1,0,0,0,9 +"5565",2011,17119,"IL","17","119",268666,0.899440197122077,20049,0.12719138260889,9.90593455617918,10.4117799704438,11.3212321299293,8.96153846153846,405.503525850081,659,162514,1,0,0,0,9 +"5566",2011,17121,"IL","17","121",39147,0.942090070758934,2309,0.138069328428743,7.7445698093545,8.40648506943182,9.32892308780313,10.0307692307692,537.875392200807,120,22310,1,0,0,0,9 +"5567",2011,17123,"IL","17","123",12488,0.985586162716208,615,0.152226137091608,6.42162226780652,7.24992553671799,8.16735198705607,8.92307692307692,397.388589270508,28,7046,1,0,0,0,9 +"5568",2011,17125,"IL","17","125",14470,0.986385625431928,716,0.144367657221838,6.57368016696065,7.43897159239586,8.3030093814735,10.6692307692308,575.486714827966,47,8167,1,0,0,0,9 +"5569",2011,17127,"IL","17","127",15281,0.924415941365094,817,0.133629998036778,6.70563909486,7.54538974961182,8.40200678160712,8.87692307692308,541.162924582614,47,8685,1,0,0,0,9 +"5570",2011,17129,"IL","17","129",12700,0.983228346456693,638,0.149527559055118,6.45833828334479,7.34407285057307,8.23721470334949,7.31538461538462,307.733476050308,23,7474,1,0,0,0,9 +"5571",2011,17131,"IL","17","131",16320,0.988602941176471,793,0.146997549019608,6.67582322163485,7.5595594960077,8.43098149459717,8.37692307692308,332.903780068729,31,9312,1,0,0,0,9 +"5572",2011,17133,"IL","17","133",33273,0.987677696630902,1645,0.130496198118595,7.40549566319947,8.38320455141292,9.20029003612268,6.72307692307692,293.121746601304,58,19787,1,0,0,0,9 +"5573",2011,17135,"IL","17","135",29866,0.958648630549789,1728,0.134065492533315,7.454719949364,8.22040309993373,8.98130449495713,11.9538461538462,417.348147312616,74,17731,1,0,0,0,9 +"5574",2011,17137,"IL","17","137",35482,0.920776731864044,2547,0.134349811171862,7.84267147497946,8.30449489796357,9.21890360263667,8.06153846153846,482.353503032619,101,20939,1,0,0,0,9 +"5575",2011,17139,"IL","17","139",14859,0.98943401305606,783,0.130426004441752,6.6631326959908,7.42416528104203,8.34830105493394,7.60769230769231,315.189719966056,26,8249,1,0,0,0,9 +"5576",2011,17141,"IL","17","141",53073,0.976296798748893,2828,0.130386448853466,7.94732502701646,8.82128980513611,9.635281256585,11.4923076923077,349.193916846159,107,30642,1,0,0,0,9 +"5577",2011,17143,"IL","17","143",186775,0.765466470352028,13457,0.127297550528711,9.50725469574154,10.0274293617303,10.9414116757023,9.26153846153846,390.050978755828,430,110242,1,0,0,0,9 +"5578",2011,17145,"IL","17","145",22267,0.895271028876813,1685,0.128710648044191,7.42952084278646,8.00369733909437,8.65102453904976,10.2076923076923,419.703998232825,57,13581,1,0,0,0,9 +"5579",2011,17147,"IL","17","147",16683,0.986453275789726,755,0.140921896541389,6.62671774924902,7.60738142563979,8.47052078321781,6.90769230769231,405.574043261231,39,9616,1,0,0,0,9 +"5580",2011,17149,"IL","17","149",16348,0.974981649131392,898,0.137937362368485,6.8001700683022,7.57301725605255,8.40178233990491,8.05384615384615,466.023626314078,43,9227,1,0,0,0,9 +"5581",2011,17153,"IL","17","153",5990,0.652086811352254,343,0.147412353923205,5.83773044716594,6.44730586254121,7.46336304552002,12,531.443755535872,18,3387,1,0,0,0,9 +"5582",2011,17157,"IL","17","157",33375,0.890187265917603,1999,0.133063670411985,7.6004023345004,8.37793112408273,9.03610602536485,8.28461538461539,439.443693258644,91,20708,1,0,0,0,9 +"5583",2011,17159,"IL","17","159",16189,0.982518994378899,909,0.132373834084872,6.81234509417748,7.51534457118044,8.42748727833174,8.22307692307692,371.544093541689,34,9151,1,0,0,0,9 +"5584",2011,17161,"IL","17","161",147474,0.868119126083242,9526,0.137298778089697,9.16178018136081,9.75666826558467,10.6722522795547,8.48461538461538,421.647669354091,364,86328,1,0,0,0,9 +"5585",2011,17163,"IL","17","163",270097,0.665820057238696,17786,0.121508198906319,9.78616690995958,10.4467997273364,11.3319549950472,9.7,428.370394708293,691,161309,1,0,0,0,9 +"5586",2011,17165,"IL","17","165",24904,0.941415033729521,1497,0.136484098939929,7.31121838441963,7.97796809312855,8.8794724020748,9.53076923076923,535.484792231901,75,14006,1,0,0,0,9 +"5587",2011,17167,"IL","17","167",199052,0.847245945783011,11915,0.13652713863714,9.38555338953284,10.1092814655152,11.0310111846987,7.53846153846154,363.198152208479,434,119494,1,0,0,0,9 +"5588",2011,17173,"IL","17","173",22280,0.990664272890485,1146,0.143850987432675,7.04403289727469,7.84854348245668,8.74193546409414,9.11538461538461,365.456423293875,46,12587,1,0,0,0,9 +"5589",2011,17177,"IL","17","177",47328,0.882437457741717,2571,0.142030087897228,7.85205020726589,8.57866451350434,9.51000042118737,9.81538461538462,311.748798076923,83,26624,1,0,0,0,9 +"5590",2011,17179,"IL","17","179",135863,0.973495359295761,7334,0.133045788772513,8.90027634863127,9.76795415724093,10.5919487711054,8.32307692307692,341.514673872251,273,79938,1,0,0,0,9 +"5591",2011,17181,"IL","17","181",17690,0.974448841153194,1105,0.142509892594686,7.00760061395185,7.65964295456468,8.53267276226462,11.6692307692308,457.866536775451,47,10265,1,0,0,0,9 +"5592",2011,17183,"IL","17","183",81427,0.845346138258809,4751,0.134500841244305,8.46611040118692,9.1563064834837,10.0398960523157,9.97692307692308,433.36711153274,201,46381,1,0,0,0,9 +"5593",2011,17185,"IL","17","185",11796,0.978467277043065,708,0.145049169209902,6.56244409369372,7.1770187659099,8.1285852003745,8.90769230769231,543.717854518736,37,6805,1,0,0,0,9 +"5594",2011,17187,"IL","17","187",17831,0.957489765015983,1346,0.135606527956929,7.20489251020467,7.60240133566582,8.51539156946961,7.22307692307692,416.708006746701,42,10079,1,0,0,0,9 +"5595",2011,17189,"IL","17","189",14574,0.984287086592562,804,0.13757376149307,6.68959926917897,7.4667994750186,8.32336569443608,6.6,384.57056287146,33,8581,1,0,0,0,9 +"5596",2011,17191,"IL","17","191",16667,0.98710025799484,877,0.136257274854503,6.77650699237218,7.54009032014532,8.43706714693695,8.03076923076923,420.711974110032,39,9270,1,0,0,0,9 +"5597",2011,17193,"IL","17","193",14592,0.985814144736842,740,0.140008223684211,6.60665018619822,7.29979736675816,8.31776616671934,7.9,451.880801172447,37,8188,1,0,0,0,9 +"5598",2011,17195,"IL","17","195",58288,0.967403239088663,3223,0.140337633818282,8.07806788181544,8.83985623276326,9.70643807033756,9.46153846153846,435.374149659864,144,33075,1,0,0,0,9 +"5599",2011,17197,"IL","17","197",680813,0.823594731592963,38520,0.1071748042414,10.5589328659121,11.5645022191792,12.2186729275059,10.7384615384615,249.429167080314,1005,402920,1,0,0,0,9 +"5600",2011,17199,"IL","17","199",66745,0.93894673758334,4141,0.133103603266162,8.32869258354557,9.03408040656082,9.88420279112426,9.08461538461538,465.28093865372,184,39546,1,0,0,0,9 +"5601",2011,17201,"IL","17","201",293667,0.832170451565889,17782,0.127971477898436,9.78594198868108,10.5356366040345,11.381346450928,11.9076923076923,412.50970440667,712,172602,1,0,0,0,9 +"5602",2011,17203,"IL","17","203",38849,0.982625035393446,2212,0.13480398465855,7.70165236264223,8.44677072711969,9.31054763239321,6.43076923076923,235.379322831794,52,22092,1,0,0,0,9 +"5603",2011,20001,"KS","20","001",13348,0.954674857656578,797,0.13410248726401,6.68085467879022,7.24636808010246,8.22067217029725,7.89230769230769,613.246116107931,45,7338,0,0,0,0,9 +"5604",2011,20003,"KS","20","003",8066,0.979047855194644,372,0.124721051326556,5.91889385427315,6.7900972355139,7.64826303090192,7.49230769230769,543.478260869565,23,4232,0,0,0,0,9 +"5605",2011,20005,"KS","20","005",16756,0.92647409883027,1521,0.118823108140368,7.32712329225929,7.49831587076698,8.45892828328426,8.90769230769231,460.040654755537,43,9347,0,0,0,0,9 +"5606",2011,20009,"KS","20","009",27700,0.965920577617329,1661,0.132563176895307,7.4151751096133,7.92008319905323,8.94754601503218,5.12307692307692,451.263537906137,70,15512,0,0,0,0,9 +"5607",2011,20011,"KS","20","011",14945,0.946537303445969,991,0.132552693208431,6.89871453432999,7.3038432252777,8.31262602567496,8.81538461538462,566.57223796034,46,8119,0,0,0,0,9 +"5608",2011,20013,"KS","20","013",9973,0.873859420435175,455,0.145492830642735,6.12029741895095,6.94022246911964,7.91461770904068,5.84615384615385,479.70479704797,26,5420,0,0,0,0,9 +"5609",2011,20015,"KS","20","015",65854,0.955249491298934,4070,0.124214170741337,8.31139827843664,9.00356217474824,9.82471487137073,6.87692307692308,320.782498948254,122,38032,0,0,0,0,9 +"5610",2011,20021,"KS","20","021",21368,0.929380381879446,1119,0.133798202920255,7.02019070831193,7.86365126544865,8.70781355102489,8,624.589086127548,76,12168,0,0,0,0,9 +"5611",2011,20027,"KS","20","027",8526,0.97982641332395,339,0.137461881304246,5.82600010738045,6.83410873881384,7.72356247227797,5.55384615384615,371.503496503496,17,4576,0,0,0,0,9 +"5612",2011,20029,"KS","20","029",9420,0.979830148619958,641,0.131847133757962,6.46302945692067,6.8330317327862,7.80710329012598,5.39230769230769,458.258617254433,23,5019,0,0,0,0,9 +"5613",2011,20031,"KS","20","031",8489,0.975968900930616,367,0.14571798798445,5.90536184805457,6.90173720665657,7.77779262633883,7.75384615384615,537.856847331402,26,4834,0,0,0,0,9 +"5614",2011,20035,"KS","20","035",36259,0.91665517526683,2564,0.126313467001296,7.84932381804056,8.31727776622123,9.20673387638207,6.9,416.789251740708,85,20394,0,0,0,0,9 +"5615",2011,20037,"KS","20","037",39210,0.941877072175465,5357,0.111094108645754,8.58615939588096,8.32044811395656,9.34914533485336,7.77692307692308,366.316152387519,85,23204,0,0,0,0,9 +"5616",2011,20041,"KS","20","041",19686,0.970537437773037,964,0.129533678756477,6.87109129461055,7.74759683869289,8.59526472683639,6.5,394.785163422696,43,10892,0,0,0,0,9 +"5617",2011,20045,"KS","20","045",112500,0.87,20938,0.0985066666666667,9.9493209688793,9.40951904583656,10.5000412301848,5.56923076923077,220.807369276619,163,73820,0,0,0,0,9 +"5618",2011,20051,"KS","20","051",28772,0.966251911580703,4093,0.113930209926317,8.3170334764924,7.95085485771999,9.06612352121577,3.48461538461538,278.789258079199,49,17576,0,0,0,0,9 +"5619",2011,20055,"KS","20","055",37114,0.910869213773778,2752,0.0969984372473999,7.92008319905323,8.40938523878193,9.23756635822977,4.2,332.578204077698,69,20747,0,0,0,0,9 +"5620",2011,20057,"KS","20","057",34371,0.930930144598644,2545,0.0936836286404236,7.84188592898462,8.34877453979127,9.11833472618016,4.23076923076923,249.791840133222,48,19216,0,0,0,0,9 +"5621",2011,20059,"KS","20","059",25861,0.962221105139012,1532,0.1237771161208,7.33432935030054,8.03040956213048,8.91476052739726,8.2,382.884395781554,57,14887,0,0,0,0,9 +"5622",2011,20061,"KS","20","061",35309,0.72718003908352,4002,0.0717947265569685,8.29454951514368,8.29903718161307,9.23941361946189,9.05384615384615,329.780624193471,69,20923,0,0,0,0,9 +"5623",2011,20073,"KS","20","073",6611,0.973982756012706,277,0.153683255180759,5.62401750618734,6.5191472879404,7.48829351515943,6.52307692307692,475.125768585802,17,3578,0,0,0,0,9 +"5624",2011,20079,"KS","20","079",34698,0.957086863796184,1989,0.12597267854055,7.59538727885397,8.21716859576607,9.15967845717396,5.96923076923077,363.425682081534,69,18986,0,0,0,0,9 +"5625",2011,20085,"KS","20","085",13429,0.891131134112741,577,0.134708466751061,6.3578422665081,7.434847875212,8.22790983759748,5.91538461538462,440.822869356131,33,7486,0,0,0,0,9 +"5626",2011,20087,"KS","20","087",18941,0.976400401245974,792,0.143287049258223,6.67456139181443,7.71199650704767,8.59507973007331,6.98461538461538,438.676658746116,48,10942,0,0,0,0,9 +"5627",2011,20091,"KS","20","091",553034,0.895104098482191,27324,0.120822589569538,10.2155207158517,11.2642717794859,12.0514285106407,5.26923076923077,204.590594806087,685,334815,0,0,0,0,9 +"5628",2011,20095,"KS","20","095",7891,0.979597009251046,351,0.135724242808263,5.86078622346587,6.69332366826995,7.63916117165917,6.28461538461538,379.326695116169,16,4218,0,0,0,0,9 +"5629",2011,20099,"KS","20","099",21380,0.907296538821328,1368,0.135266604303087,7.2211050981825,7.76684053708551,8.70466811345099,8.89230769230769,541.827436171086,66,12181,0,0,0,0,9 +"5630",2011,20103,"KS","20","103",77116,0.866149696561025,4420,0.123229939312205,8.39389497507174,9.34049105644123,9.9560800026553,7.15384615384615,323.196709269869,154,47649,0,0,0,0,9 +"5631",2011,20107,"KS","20","107",9610,0.979292403746098,389,0.151716961498439,5.96357934361845,6.99301512293296,7.86787149039632,10.9769230769231,301.54542027893,16,5306,0,0,0,0,9 +"5632",2011,20111,"KS","20","111",33651,0.923954711598467,4225,0.114261091795192,8.34877453979127,8.15937473677543,9.22463767667701,6.30769230769231,417.785735601313,84,20106,0,0,0,0,9 +"5633",2011,20113,"KS","20","113",29158,0.970162562590027,1755,0.1345771314905,7.47022413589997,8.02387999273488,8.99949587624899,4.48461538461538,399.410102003195,65,16274,0,0,0,0,9 +"5634",2011,20115,"KS","20","115",12546,0.976566236250598,740,0.136139008448908,6.60665018619822,7.08590146436561,8.090708716084,5.57692307692308,328.849028400598,22,6690,0,0,0,0,9 +"5635",2011,20117,"KS","20","117",9985,0.984576865297947,403,0.14371557336004,5.99893656194668,6.84161547647759,7.8739783796045,4.58461538461538,312.845049687155,17,5434,0,0,0,0,9 +"5636",2011,20121,"KS","20","121",32743,0.969062089606939,1477,0.129187918028281,7.29776828253138,8.36217546914963,9.16188515170678,7.08461538461538,380.147835269271,72,18940,0,0,0,0,9 +"5637",2011,20125,"KS","20","125",34790,0.876200057487784,2192,0.130382293762575,7.69256964806791,8.2380082492184,9.18891242456256,9.78461538461539,531.530601713283,103,19378,0,0,0,0,9 +"5638",2011,20133,"KS","20","133",16454,0.962501519387383,922,0.131761273854382,6.82654522355659,7.50494206839617,8.40043463080604,9.19230769230769,498.11822005756,45,9034,0,0,0,0,9 +"5639",2011,20139,"KS","20","139",16342,0.97999020927671,721,0.141292375474238,6.58063913728495,7.51588908521513,8.4277060249147,8.11538461538461,459.619172685489,42,9138,0,0,0,0,9 +"5640",2011,20143,"KS","20","143",6063,0.979548078508989,220,0.137390730661389,5.39362754635236,6.52502965784346,7.40123126441302,5.66923076923077,296.296296296296,10,3375,0,0,0,0,9 +"5641",2011,20145,"KS","20","145",6977,0.929912569872438,362,0.148917873011323,5.89164421182577,6.63200177739563,7.43720636687129,4.52307692307692,369.640216855594,15,4058,0,0,0,0,9 +"5642",2011,20149,"KS","20","149",22033,0.961512277038987,1113,0.116416284663913,7.01481435127554,7.85166117788927,8.71768205216564,4.90769230769231,301.523918181077,37,12271,0,0,0,0,9 +"5643",2011,20155,"KS","20","155",64432,0.945539483486466,4142,0.131285696548299,8.32893404195553,8.85166342536678,9.77275224721361,5.93076923076923,446.086480569239,163,36540,0,0,0,0,9 +"5644",2011,20159,"KS","20","159",10096,0.962361331220285,787,0.126584786053883,6.6682282484174,6.90875477931522,7.8808043446749,5.1,326.916091536506,18,5506,0,0,0,0,9 +"5645",2011,20161,"KS","20","161",73449,0.865525738948114,18741,0.0705115113888549,9.83846891616168,8.69818052519705,10.0235346898456,4.73076923076923,142.341413099536,69,48475,0,0,0,0,9 +"5646",2011,20169,"KS","20","169",55785,0.920211526395985,3620,0.125732723850497,8.19422930481982,8.79042130689787,9.68146836888363,5.99230769230769,375.077495350279,121,32260,0,0,0,0,9 +"5647",2011,20173,"KS","20","173",501051,0.830476338735977,34696,0.117217608586751,10.4543796855152,11.0228823803868,11.906385465951,7.83076923076923,376.184914577505,1108,294536,0,0,0,0,9 +"5648",2011,20175,"KS","20","175",23131,0.909774761143055,1952,0.0862046604124335,7.57660976697304,8.00570067866254,8.73488189204748,4.53846153846154,231.071401062928,30,12983,0,0,0,0,9 +"5649",2011,20177,"KS","20","177",178968,0.862757587948684,10991,0.134269813597962,9.3048320350689,9.93076219467101,10.8924523718997,6.66923076923077,413.05681208311,431,104344,0,0,0,0,9 +"5650",2011,20181,"KS","20","181",6055,0.972584640792733,391,0.134929810074319,5.96870755998537,6.40025744530882,7.39264752072162,3.96923076923077,484.11497730711,16,3305,0,0,0,0,9 +"5651",2011,20191,"KS","20","191",23788,0.964814192029595,1155,0.136287203632083,7.05185562295589,7.87207397986687,8.77709288285557,7.51538461538462,534.035351635953,71,13295,0,0,0,0,9 +"5652",2011,20205,"KS","20","205",9239,0.972291373525273,398,0.146552657213984,5.98645200528444,6.86797440897029,7.83518375526675,11.2769230769231,476.568705321684,24,5036,0,0,0,0,9 +"5653",2011,20209,"KS","20","209",158039,0.680654775087162,10619,0.108871860743234,9.27040012840385,9.89217379263586,10.7461963277323,9.33076923076923,492.32300717385,455,92419,0,0,0,0,9 +"5654",2011,21001,"KY","21","001",18984,0.96196797302992,1620,0.128634639696587,7.39018142822643,7.70436116791031,8.62873456614915,11.7384615384615,433.539341389171,47,10841,1,0,0,0,9 +"5655",2011,21003,"KY","21","003",20164,0.981848839515969,1213,0.12879389010117,7.10085190894405,7.88945914940452,8.6891276553237,9.80769230769231,501.01902173913,59,11776,1,0,0,0,9 +"5656",2011,21005,"KY","21","005",21570,0.967686601761706,1112,0.129763560500695,7.01391547481053,8.07496035911586,8.81031046635796,8.3,414.428242517268,54,13030,1,0,0,0,9 +"5657",2011,21007,"KY","21","007",8258,0.958827803342214,422,0.142891741341729,6.04500531403601,6.97447891102505,7.77064523412918,9.93076923076923,419.727177334732,20,4765,1,0,0,0,9 +"5658",2011,21009,"KY","21","009",42322,0.945371201739048,2363,0.130215963328765,7.76768727718691,8.60538720215215,9.43204288549399,9.76153846153846,437.31778425656,108,24696,1,0,0,0,9 +"5659",2011,21011,"KY","21","011",11721,0.977561641498166,619,0.136677757870489,6.4281052726846,7.34407285057307,8.15450017515194,12.5769230769231,657.222141083686,45,6847,1,0,0,0,9 +"5660",2011,21013,"KY","21","013",28656,0.967964824120603,1897,0.138121161362367,7.54802896993501,8.22335889947926,9.06670092177457,11.8692307692308,855.994875676935,147,17173,1,0,0,0,9 +"5661",2011,21015,"KY","21","015",121742,0.941211742866061,6534,0.113576251416931,8.78477459216102,9.81596695500663,10.512818247003,7.82307692307692,284.951024042743,208,72995,1,0,0,0,9 +"5662",2011,21017,"KY","21","017",20051,0.926287965687497,1108,0.136851029873822,7.01031186730723,7.8984110928116,8.69918135930895,8.43846153846154,411.346302168138,48,11669,1,0,0,0,9 +"5663",2011,21019,"KY","21","019",49417,0.959872108788474,2695,0.141773074043345,7.8991534833431,8.77986510086385,9.5800401236376,10.2846153846154,465.948610595266,138,29617,1,0,0,0,9 +"5664",2011,21021,"KY","21","021",28800,0.905208333333333,2142,0.135798611111111,7.66949525100769,8.20849175174038,9.03396112463786,10.7230769230769,500.506464875171,84,16783,1,0,0,0,9 +"5665",2011,21023,"KY","21","023",8512,0.990249060150376,508,0.129111842105263,6.23048144757848,7.01571242048723,7.81116338502528,10.7076923076923,582.329317269076,29,4980,1,0,0,0,9 +"5666",2011,21025,"KY","21","025",13786,0.987813724067895,842,0.144639489337009,6.73578001424233,7.51860721681525,8.35042997353814,12.7384615384615,715.99045346062,60,8380,1,0,0,0,9 +"5667",2011,21027,"KY","21","027",20276,0.967942394949694,1029,0.147563622016177,6.93634273583405,7.7873820264847,8.66836801921336,11.5,528.379069371058,62,11734,1,0,0,0,9 +"5668",2011,21029,"KY","21","029",75192,0.98047664645175,4351,0.128444515373976,8.37816098272068,9.29062920320499,10.0565090236185,9.90769230769231,327.215203588532,151,46147,1,0,0,0,9 +"5669",2011,21031,"KY","21","031",12727,0.986878290249077,734,0.134517168225033,6.59850902861452,7.38025578842646,8.22496747891458,10.7076923076923,601.122094576543,45,7486,1,0,0,0,9 +"5670",2011,21033,"KY","21","033",13026,0.937893443881468,690,0.148318747121142,6.5366915975913,7.41457288135059,8.2419665602318,9.57692307692308,481.219088357171,36,7481,1,0,0,0,9 +"5671",2011,21035,"KY","21","035",37680,0.933890658174098,5914,0.115711252653928,8.68507770041242,8.24485939591126,9.3729692954244,7.46923076923077,434.801513109266,100,22999,1,0,0,0,9 +"5672",2011,21037,"KY","21","037",91631,0.9562266045334,7218,0.12463031070271,8.88433318520273,9.32197118814737,10.2522764834507,8.26923076923077,352.125263647088,197,55946,1,0,0,0,9 +"5673",2011,21039,"KY","21","039",5034,0.980731029002781,252,0.139650377433453,5.52942908751142,6.40357419793482,7.2591161280971,8.86923076923077,698.080279232112,20,2865,1,0,0,0,9 +"5674",2011,21041,"KY","21","041",10994,0.966891031471712,660,0.123976714571585,6.49223983502047,7.25417784645652,8.05579245097777,12.1384615384615,614.156302779057,40,6513,1,0,0,0,9 +"5675",2011,21043,"KY","21","043",27621,0.988595633756924,1876,0.132580283117918,7.53689712956617,8.17103418920548,9.00650913169435,13.7538461538462,633.61220472441,103,16256,1,0,0,0,9 +"5676",2011,21045,"KY","21","045",15916,0.985109323950741,869,0.142309625534054,6.76734312526539,7.60439634879634,8.45297461908959,9.96153846153846,487.382215964475,45,9233,1,0,0,0,9 +"5677",2011,21047,"KY","21","047",73516,0.747605963327711,7997,0.0906469340007617,8.98682175033189,8.99031694799822,9.92294698369235,10.7615384615385,387.361739860923,166,42854,1,0,0,0,9 +"5678",2011,21049,"KY","21","049",35438,0.941700998927705,1910,0.13770528810881,7.55485852104068,8.50774873258824,9.30264604276021,9.83846153846154,472.846441947566,101,21360,1,0,0,0,9 +"5679",2011,21051,"KY","21","051",21602,0.951763725580965,1420,0.120775854087584,7.25841215059531,8.09833884618906,8.70764824810691,14.9846153846154,824.516599781102,113,13705,1,0,0,0,9 +"5680",2011,21053,"KY","21","053",10170,0.98456243854474,533,0.139036381514258,6.27852142416584,7.15695636461564,7.98002359231065,11.3769230769231,666.324961558175,39,5853,1,0,0,0,9 +"5681",2011,21055,"KY","21","055",9249,0.981943993945291,471,0.144231808844199,6.15485809401642,6.99759598298193,7.85476918349913,8.46923076923077,544.703230653644,29,5324,1,0,0,0,9 +"5682",2011,21057,"KY","21","057",6865,0.965185724690459,383,0.1401310997815,5.94803498918065,6.68835471394676,7.58578882173203,11,597.24746819008,23,3851,1,0,0,0,9 +"5683",2011,21059,"KY","21","059",97185,0.934063898749807,6026,0.128805885681947,8.70383871969025,9.38697914563464,10.2721503541202,8.33846153846154,407.654056333573,232,56911,1,0,0,0,9 +"5684",2011,21061,"KY","21","061",12244,0.976151584449526,737,0.144070565174779,6.60258789218934,7.34342622914737,8.18590748148232,11.6615384615385,394.978135138948,28,7089,1,0,0,0,9 +"5685",2011,21063,"KY","21","063",7782,0.960806990490876,495,0.139167309175019,6.20455776256869,7.04403289727469,7.59387784460512,15.7307692307692,508.130081300813,25,4920,1,0,0,0,9 +"5686",2011,21065,"KY","21","065",14662,0.992429409357523,756,0.138384940662938,6.62804137617953,7.58018941794454,8.39231000926955,12.3769230769231,649.424632562379,57,8777,1,0,0,0,9 +"5687",2011,21067,"KY","21","067",301766,0.802403186575028,31767,0.111669306681336,10.3661832940986,10.5977840723526,11.4895135319596,6.83846153846154,309.941249942175,603,194553,1,0,0,0,9 +"5688",2011,21069,"KY","21","069",14483,0.979838431264241,778,0.136919146585652,6.65672652417839,7.56992765524265,8.35749381265856,10.6,532.544378698225,45,8450,1,0,0,0,9 +"5689",2011,21071,"KY","21","071",39760,0.985286720321932,2473,0.144366197183099,7.81318726752142,8.58204416373585,9.44872715270309,11.1538461538462,855.020130328311,206,24093,1,0,0,0,9 +"5690",2011,21073,"KY","21","073",49312,0.865367456197275,3251,0.141993835171966,8.08671792030391,8.77276520994979,9.64471682357877,7.89230769230769,413.264125367805,125,30247,1,0,0,0,9 +"5691",2011,21075,"KY","21","075",6739,0.741949844190533,431,0.146015729336697,6.06610809010375,6.66949808985788,7.55538194424027,12.3538461538462,605.143721633888,24,3966,1,0,0,0,9 +"5692",2011,21077,"KY","21","077",8617,0.976093768132761,520,0.123128699083208,6.25382881157547,7.0647590277918,7.83952558170468,10.7076923076923,590.551181102362,30,5080,1,0,0,0,9 +"5693",2011,21079,"KY","21","079",16869,0.972078961408501,801,0.138538146896674,6.68586094706836,7.72885582385254,8.53070154144103,10.0076923076923,395.64787339268,40,10110,1,0,0,0,9 +"5694",2011,21081,"KY","21","081",24771,0.98215655403496,1510,0.112550966856405,7.31986492980897,8.15277405274407,8.88530251298063,10.6076923076923,480.736213172172,70,14561,1,0,0,0,9 +"5695",2011,21083,"KY","21","083",37608,0.937779195915763,2221,0.129573495001064,7.70571282389443,8.42989086301344,9.28312604170183,9.06153846153846,509.703062894552,109,21385,1,0,0,0,9 +"5696",2011,21085,"KY","21","085",25754,0.981944552302555,1458,0.138696901452202,7.2848209125686,8.10167774745457,8.91637191488169,12.2153846153846,721.075057358243,110,15255,1,0,0,0,9 +"5697",2011,21087,"KY","21","087",11218,0.96862185772865,560,0.143608486361205,6.3279367837292,7.23633934275434,8.09437844497296,9.62307692307692,337.475072863936,22,6519,1,0,0,0,9 +"5698",2011,21089,"KY","21","089",36848,0.981844333478072,1889,0.143508467216674,7.54380286750151,8.48446336679332,9.31181334090682,11.1846153846154,432.558139534884,93,21500,1,0,0,0,9 +"5699",2011,21091,"KY","21","091",8590,0.980325960419092,440,0.135040745052387,6.08677472691231,7.04403289727469,7.79893331004122,8.34615384615385,542.059827343907,27,4981,1,0,0,0,9 +"5700",2011,21093,"KY","21","093",107542,0.829480575031151,7736,0.112700154358297,8.95364003713313,9.56577454647878,10.3822960548685,9.17692307692308,337.138916558118,220,65255,1,0,0,0,9 +"5701",2011,21095,"KY","21","095",29129,0.969480586357238,1834,0.15002231453191,7.51425465281641,8.21121136179302,9.09851455679393,11.1307692307692,762.013079328974,134,17585,1,0,0,0,9 +"5702",2011,21097,"KY","21","097",18680,0.968629550321199,972,0.137633832976445,6.87935580446044,7.81156848934518,8.62353322718756,10.0538461538462,618.575457109069,68,10993,1,0,0,0,9 +"5703",2011,21099,"KY","21","099",18286,0.94361806846768,1076,0.131794815706005,6.98100574072173,7.70751219460034,8.57243866564222,9.85384615384615,378.179067788598,40,10577,1,0,0,0,9 +"5704",2011,21101,"KY","21","101",46345,0.908015967202503,2754,0.137015859316,7.9208096792886,8.66905554072548,9.57108701528497,8.96153846153846,461.769759450172,129,27936,1,0,0,0,9 +"5705",2011,21103,"KY","21","103",15373,0.961490925648865,768,0.141351720549015,6.64378973314767,7.614312146452,8.43337670532313,8.75384615384615,518.821061927365,47,9059,1,0,0,0,9 +"5706",2011,21105,"KY","21","105",4793,0.894846651366576,239,0.143334028791988,5.47646355193151,6.33859407820318,7.22256601882217,8.89230769230769,373.692077727952,10,2676,1,0,0,0,9 +"5707",2011,21107,"KY","21","107",46849,0.918674891673248,2656,0.13897842003031,7.88457651059632,8.6909784171879,9.55108916536466,8.42307692307692,569.923889910904,158,27723,1,0,0,0,9 +"5708",2011,21109,"KY","21","109",13380,0.99372197309417,769,0.136995515695067,6.64509096950564,7.52617891334615,8.32360844234357,13.5,736.196319018405,60,8150,1,0,0,0,9 +"5709",2011,21111,"KY","21","111",746458,0.751360424833011,49998,0.128701145945251,10.8197382836103,11.4663578291539,12.3636317956315,9.43076923076923,442.250965369426,2018,456302,1,0,0,0,9 +"5710",2011,21113,"KY","21","113",48892,0.95023725762906,3370,0.117953857481797,8.12266802334641,8.79072562826358,9.62337674558067,7.76153846153846,328.452169152867,96,29228,1,0,0,0,9 +"5711",2011,21115,"KY","21","115",23430,0.989586000853606,1408,0.145113102859582,7.24992553671799,8.07215530818825,8.88530251298063,10.8153846153846,695.224719101124,99,14240,1,0,0,0,9 +"5712",2011,21117,"KY","21","117",160562,0.931390989150608,10019,0.122102365441387,9.21223856925926,9.95892225942423,10.8083734963468,8.82307692307692,420.027731951459,415,98803,1,0,0,0,9 +"5713",2011,21119,"KY","21","119",16306,0.988225193180424,1110,0.143505458113578,7.01211529430638,7.66622192566273,8.52018870039604,11.7923076923077,847.6266453929,85,10028,1,0,0,0,9 +"5714",2011,21121,"KY","21","121",31875,0.981019607843137,2196,0.125772549019608,7.69439280262942,8.32385113133882,9.15946804160243,13.2538461538462,741.101374012766,137,18486,1,0,0,0,9 +"5715",2011,21123,"KY","21","123",14190,0.957716701902748,863,0.129245947850599,6.76041469108343,7.45240245122364,8.31947369244219,9.98461538461538,490.665390138822,41,8356,1,0,0,0,9 +"5716",2011,21125,"KY","21","125",59364,0.980830132740381,3569,0.129573478876087,8.18004072349016,9.01396045793119,9.81339871775444,11.4307692307692,506.258692628651,182,35950,1,0,0,0,9 +"5717",2011,21127,"KY","21","127",15931,0.991525955683887,973,0.145628020839872,6.880384082186,7.62559507213245,8.49146504284351,11.6846153846154,728.862973760933,70,9604,1,0,0,0,9 +"5718",2011,21129,"KY","21","129",7706,0.971969893589411,453,0.140150532052946,6.11589212548303,6.98286275146894,7.66105638236183,12.6,748.326112642773,38,5078,1,0,0,0,9 +"5719",2011,21131,"KY","21","131",11241,0.992438395160573,725,0.138688728760786,6.58617165485467,7.28619171470238,8.15507488781144,12.5846153846154,799.885730609913,56,7001,1,0,0,0,9 +"5720",2011,21133,"KY","21","133",24375,0.991753846153846,1355,0.148964102564103,7.2115567333138,8.04302088529828,8.92518842937803,10.1923076923077,728.171554546062,109,14969,1,0,0,0,9 +"5721",2011,21135,"KY","21","135",13838,0.992267668738257,784,0.136291371585489,6.66440902035041,7.5137092478397,8.32820949174873,12.9461538461538,547.845142439737,45,8214,1,0,0,0,9 +"5722",2011,21137,"KY","21","137",24728,0.969791329666775,1397,0.128599158848269,7.24208235925696,8.10137467122858,8.89041055197428,12.2076923076923,515.392115893579,74,14358,1,0,0,0,9 +"5723",2011,21139,"KY","21","139",9504,0.986952861952862,501,0.159301346801347,6.21660610108486,7.02553831463852,7.94803199063728,10.9153846153846,744.284954811271,42,5643,1,0,0,0,9 +"5724",2011,21141,"KY","21","141",26851,0.920300919891252,1479,0.133067669732971,7.2991214627108,8.0870254706677,8.96941465086618,8.92307692307692,549.273021001615,85,15475,1,0,0,0,9 +"5725",2011,21143,"KY","21","143",8435,0.934084173088322,403,0.172377000592768,5.99893656194668,6.99484998583307,7.646353722446,10.3307692307692,448.081044223651,23,5133,1,0,0,0,9 +"5726",2011,21145,"KY","21","145",65808,0.870274130804765,3427,0.142581449063944,8.13944052187461,9.00810178134187,9.8942449711692,8.61538461538461,518.816787982035,201,38742,1,0,0,0,9 +"5727",2011,21147,"KY","21","147",18290,0.928813559322034,1188,0.121760524876982,7.08002649992259,7.91644286012226,8.50106380948635,14.5769230769231,536.4523788585,61,11371,1,0,0,0,9 +"5728",2011,21149,"KY","21","149",9497,0.986416763188375,490,0.133305254290829,6.19440539110467,7.09257371597468,7.90948949267376,8.88461538461539,495.68569854966,27,5447,1,0,0,0,9 +"5729",2011,21151,"KY","21","151",84787,0.934695177326713,10312,0.112163421279206,9.24106354461902,9.28256800597306,10.1921941000341,7.84615384615385,372.561069288677,194,52072,1,0,0,0,9 +"5730",2011,21153,"KY","21","153",13222,0.993117531387082,786,0.132884586295568,6.66695679242921,7.51914995766982,8.30102525383845,17.0461538461538,807.955251709136,65,8045,1,0,0,0,9 +"5731",2011,21155,"KY","21","155",20012,0.902508494903058,1108,0.120677593443934,7.01031186730723,7.87739718635329,8.61667646990119,10.8,517.054457509799,62,11991,1,0,0,0,9 +"5732",2011,21157,"KY","21","157",31264,0.990084442169908,1577,0.149469037871034,7.36327958696304,8.2482674474469,9.11954000764969,9.23076923076923,630.879911455451,114,18070,1,0,0,0,9 +"5733",2011,21159,"KY","21","159",12832,0.922849127182045,809,0.123753117206983,6.69579891705849,7.57967882309046,8.15765701519647,8.93076923076923,671.221383195493,56,8343,1,0,0,0,9 +"5734",2011,21161,"KY","21","161",17545,0.919293245939014,1013,0.139070960387575,6.92067150424868,7.7336835707759,8.56369502506766,10.3153846153846,553.666828557552,57,10295,1,0,0,0,9 +"5735",2011,21163,"KY","21","163",29638,0.940886699507389,1974,0.112355759497942,7.58781721999343,8.28020423327997,9.09043007530363,11.2384615384615,392.817059483726,70,17820,1,0,0,0,9 +"5736",2011,21165,"KY","21","165",6417,0.97054698457223,412,0.142589995324918,6.02102334934953,6.66949808985788,7.5109777520141,14,633.259911894273,23,3632,1,0,0,0,9 +"5737",2011,21167,"KY","21","167",21287,0.948982947338751,1092,0.14370272936534,6.99576615630485,7.88004820097158,8.75321348054413,10.3153846153846,418.477386125865,52,12426,1,0,0,0,9 +"5738",2011,21169,"KY","21","169",10059,0.976637836763098,603,0.133214037180634,6.40191719672719,7.13648320859025,7.97933889526233,11.1769230769231,520.110957004161,30,5768,1,0,0,0,9 +"5739",2011,21171,"KY","21","171",10917,0.972611523312265,606,0.138316387285884,6.40687998606931,7.20563517641036,8.05229649953865,8.97692307692308,654.324928183849,41,6266,1,0,0,0,9 +"5740",2011,21173,"KY","21","173",26762,0.960316867199761,1588,0.128951498393244,7.37023064180708,8.25764495820823,9.0215982473793,11.1615384615385,420.818119933164,68,16159,1,0,0,0,9 +"5741",2011,21175,"KY","21","175",13723,0.95015667128179,904,0.135538876338993,6.80682936039218,7.60439634879634,8.20275638165564,10.9923076923077,432.468396540253,39,9018,1,0,0,0,9 +"5742",2011,21177,"KY","21","177",31528,0.945318447094646,2002,0.134991119005329,7.60190195987517,8.32312288758773,9.10308918122921,10.2461538461538,494.676846972793,92,18598,1,0,0,0,9 +"5743",2011,21179,"KY","21","179",44060,0.937789378120744,2505,0.128892419428053,7.82604401351897,8.66198593631778,9.50666003282355,10.6076923076923,370.048710493524,98,26483,1,0,0,0,9 +"5744",2011,21181,"KY","21","181",7101,0.988170680185889,339,0.130544993662864,5.82600010738045,6.880384082186,7.6377164326648,8.96923076923077,704.910063198833,29,4114,1,0,0,0,9 +"5745",2011,21183,"KY","21","183",23986,0.98248978570833,1337,0.131284916201117,7.19818357710194,7.99496952269788,8.8378263640077,9.85384615384615,472.658522396742,65,13752,1,0,0,0,9 +"5746",2011,21185,"KY","21","185",60782,0.932085156789839,2642,0.127965516106742,7.87929148508227,9.15999399753944,9.73625163316022,6.92307692307692,259.789462289936,96,36953,1,0,0,0,9 +"5747",2011,21187,"KY","21","187",10823,0.982075210200499,570,0.140441652037328,6.3456363608286,7.25770767716004,8.06148686687133,7.56153846153846,536.193029490617,34,6341,1,0,0,0,9 +"5748",2011,21189,"KY","21","189",4810,0.991268191268191,281,0.145322245322245,5.63835466933375,6.38856140554563,7.26192709270275,13.2461538461538,803.353126091512,23,2863,1,0,0,0,9 +"5749",2011,21191,"KY","21","191",14662,0.989292047469649,932,0.132519438003001,6.83733281468559,7.57147364885127,8.38731227056172,10.7923076923077,716.364450414148,64,8934,1,0,0,0,9 +"5750",2011,21193,"KY","21","193",28699,0.973866685250357,1830,0.141816788041395,7.51207124583547,8.28147085789517,9.11007795003779,10.3538461538462,970.548862115127,174,17928,1,0,0,0,9 +"5751",2011,21195,"KY","21","195",64923,0.985752352787148,4040,0.144432635583691,8.3039999709552,9.09672364518921,9.91798199868658,9.13846153846154,698.480804250755,280,40087,1,0,0,0,9 +"5752",2011,21197,"KY","21","197",12617,0.98795276214631,764,0.133787746690972,6.63856778916652,7.45124168498768,8.23827262463303,12.8846153846154,647.548566142461,49,7567,1,0,0,0,9 +"5753",2011,21199,"KY","21","199",63519,0.977313874588706,3496,0.138147640863364,8.15937473677543,9.01760477683336,9.85765301619233,10.6384615384615,608.090008036432,227,37330,1,0,0,0,9 +"5754",2011,21203,"KY","21","203",17113,0.99263717641559,1006,0.131303687255303,6.91373735065968,7.76004068088038,8.55120807000351,11.4153846153846,541.072306935563,55,10165,1,0,0,0,9 +"5755",2011,21205,"KY","21","205",23564,0.969275165506705,3582,0.106857918859277,8.18367658262066,7.8898337513943,8.8939844389398,9.50769230769231,467.029137041684,67,14346,1,0,0,0,9 +"5756",2011,21207,"KY","21","207",17712,0.983796296296296,976,0.140356820234869,6.88346258641309,7.71735127218533,8.54519738782584,11.6923076923077,693.562567158347,71,10237,1,0,0,0,9 +"5757",2011,21209,"KY","21","209",47914,0.926201110322661,2925,0.113682848436783,7.98104975966596,8.91395385889425,9.60272024053569,7.90769230769231,276.563780387872,81,29288,1,0,0,0,9 +"5758",2011,21211,"KY","21","211",42891,0.899769182345947,2409,0.131193024177566,7.78696700261487,8.69265796074698,9.5227394469648,7.92307692307692,249.644736336752,65,26037,1,0,0,0,9 +"5759",2011,21213,"KY","21","213",17308,0.888086434018951,1026,0.126646637393113,6.93342302573071,7.70120018085745,8.53758388106397,11.0076923076923,587.084148727984,60,10220,1,0,0,0,9 +"5760",2011,21215,"KY","21","215",17434,0.971721922679821,819,0.127107949982792,6.70808408385307,7.91935619066062,8.5921151179335,8.99230769230769,280.741156653565,30,10686,1,0,0,0,9 +"5761",2011,21217,"KY","21","217",24952,0.933792882334081,2081,0.128887463930747,7.64060382639363,7.91022370709734,8.9099107267019,10.8230769230769,423.464074973967,61,14405,1,0,0,0,9 +"5762",2011,21219,"KY","21","219",12423,0.909603155437495,762,0.113660146502455,6.63594655568665,7.34277918933185,8.16280135349207,8.7,442.225392296719,31,7010,1,0,0,0,9 +"5763",2011,21221,"KY","21","221",14216,0.908342712436691,680,0.155317951603827,6.52209279817015,7.4599147662411,8.31556648356428,11.3076923076923,559.006211180124,45,8050,1,0,0,0,9 +"5764",2011,21223,"KY","21","223",8812,0.978778937812074,479,0.13004993191103,6.17170059741091,7.13329595489607,7.85631957140659,11.3461538461538,306.513409961686,16,5220,1,0,0,0,9 +"5765",2011,21225,"KY","21","225",15264,0.85436320754717,1647,0.132009958071279,7.40671073017764,7.4318919168078,8.36474106822456,8.97692307692308,409.463148316651,36,8792,1,0,0,0,9 +"5766",2011,21227,"KY","21","227",115889,0.865233110994141,13651,0.108767872705779,9.52156805800298,9.54973690011464,10.4939373348577,8.23076923076923,374.034919335488,265,70849,1,0,0,0,9 +"5767",2011,21229,"KY","21","229",11679,0.926962924907954,697,0.131089990581385,6.54678541076052,7.28961052145117,8.1300590399928,9.23076923076923,541.093887101492,37,6838,1,0,0,0,9 +"5768",2011,21231,"KY","21","231",20890,0.972666347534706,1233,0.145236955481091,7.11720550316434,7.88870952418201,8.72648119644001,14.2153846153846,520.156046814044,64,12304,1,0,0,0,9 +"5769",2011,21233,"KY","21","233",13530,0.942424242424242,815,0.143385070214338,6.70318811324086,7.47022413589997,8.28702502516506,8.01538461538462,717.023117814316,58,8089,1,0,0,0,9 +"5770",2011,21235,"KY","21","235",35863,0.982935058416753,2828,0.128405320246494,7.94732502701646,8.40559101483493,9.278092474027,11.9846153846154,681.610905774492,142,20833,1,0,0,0,9 +"5771",2011,21237,"KY","21","237",7365,0.993890020366599,355,0.137678207739308,5.87211778947542,6.77992190747225,7.68017564043659,14.8307692307692,778.301886792453,33,4240,1,0,0,0,9 +"5772",2011,21239,"KY","21","239",24943,0.93565328950006,1270,0.15050314717556,7.14677217945264,8.09651291750159,8.95402775927046,6.47692307692308,396.930404869013,60,15116,1,0,0,0,9 +"5773",2011,25001,"MA","25","001",215389,0.951329919355213,10170,0.169692974107313,9.22719748904261,9.97306025588809,11.0319983915501,9.10769230769231,347.875297524925,418,120158,1,0,0,0,9 +"5774",2011,25003,"MA","25","003",130565,0.945881361773829,8455,0.154183739899667,9.04251326133268,9.5869257805337,10.5754621678633,7.83076923076923,332.10476277301,255,76783,1,0,0,0,9 +"5775",2011,25005,"MA","25","005",549355,0.92250184307051,37445,0.127007126539305,10.5306284686835,11.2227870448317,12.0455810713229,9.40769230769231,339.900547617549,1134,333627,1,0,0,0,9 +"5776",2011,25007,"MA","25","007",16706,0.928887824733629,701,0.17766072069915,6.55250788703459,7.65586401761606,8.54714026778419,9.68461538461538,238.413122258249,25,10486,1,0,0,0,9 +"5777",2011,25009,"MA","25","009",751553,0.889472864854508,46953,0.13274379850789,10.7569023803586,11.4878435266024,12.3609416387372,7.60769230769231,280.111423085887,1262,450535,1,0,0,0,9 +"5778",2011,25011,"MA","25","011",71711,0.961554015423017,4318,0.173250965681695,8.37054761107475,9.06589246761031,10.0420313619842,6.51538461538462,286.373928872708,129,45046,1,0,0,0,9 +"5779",2011,25013,"MA","25","013",466191,0.853684434062434,34935,0.126739898453638,10.4612444709866,10.94204901307,11.8632160723337,9.27692307692308,347.674129535118,951,273532,1,0,0,0,9 +"5780",2011,25015,"MA","25","015",160192,0.907698262085497,23472,0.134132790651219,10.0635635003828,9.73103711553744,10.87585611463,6.13846153846154,232.370988834121,231,99410,1,0,0,0,9 +"5781",2011,25017,"MA","25","017",1524996,0.83717596636319,100579,0.122174090948435,11.5186987673421,12.2527987762855,13.0943300909716,5.89230769230769,225.551999177522,2150,953217,1,0,0,0,9 +"5782",2011,25021,"MA","25","021",677823,0.836529595484367,38719,0.130073780323182,10.5640857146107,11.4242035349094,12.2646716878331,6.26153846153846,240.119521814932,982,408963,1,0,0,0,9 +"5783",2011,25023,"MA","25","023",498212,0.88191171629748,28277,0.137901134456818,10.2498040323466,11.1074053553495,11.9287830503948,7.73846153846154,310.151900102708,918,295984,1,0,0,0,9 +"5784",2011,25025,"MA","25","025",737285,0.642305214401487,92696,0.095924913703656,11.4370806006769,11.4526763976244,12.4512751003633,6.61538461538461,251.318358188402,1241,493796,1,0,0,0,9 +"5785",2011,25027,"MA","25","027",804107,0.896768713616471,53963,0.125934732566686,10.8960539055146,11.5998643393316,12.4121147979436,7.68461538461538,280.899451509016,1372,488431,1,0,0,0,9 +"5786",2011,24001,"MD","24","001",74580,0.902038079914186,6727,0.129793510324484,8.81388455802561,9.10620133223504,9.91955773271362,9.11538461538461,388.236869115088,174,44818,1,0,0,0,9 +"5787",2011,24003,"MD","24","003",544863,0.786924419532984,35664,0.126406087401787,10.4818970556256,11.2121176252995,12.048681721778,6.38461538461539,322.098612181505,1095,339958,1,0,0,0,9 +"5788",2011,24005,"MD","24","005",813021,0.663075123520795,58582,0.130002792055802,10.9781827611441,11.5261970071635,12.4649577879421,7.76923076923077,345.580173990159,1699,491637,1,0,0,0,9 +"5789",2011,24009,"MD","24","009",89346,0.834833120676919,4992,0.126698453204396,8.51559191004926,9.37279929967389,10.217531575166,6.58461538461538,323.534849325199,175,54090,1,0,0,0,9 +"5790",2011,24011,"MD","24","011",32890,0.82879294618425,2053,0.128580115536637,7.62705741701893,8.32627478739676,9.20693457884135,8.72307692307692,492.055356227576,96,19510,1,0,0,0,9 +"5791",2011,24013,"MD","24","013",167072,0.943473472514844,9907,0.131949099789312,9.20099685697303,10.0026992026071,10.8213570375235,6.20769230769231,259.61576866238,260,100148,1,0,0,0,9 +"5792",2011,24015,"MD","24","015",101583,0.911815953456779,6392,0.13144915980036,8.76280248744611,9.5214948006131,10.3439658164813,8.96153846153846,411.562484869026,255,61959,1,0,0,0,9 +"5793",2011,24017,"MD","24","017",149215,0.518004222095634,9501,0.112133498642898,9.15915233520675,10.0167715939895,10.7803095404999,6.78461538461538,330.323477958514,304,92031,1,0,0,0,9 +"5794",2011,24019,"MD","24","019",32702,0.694177726132958,1909,0.146413063421197,7.55433482372575,8.21986474191265,9.20994029195484,11.2230769230769,445.375949698716,85,19085,1,0,0,0,9 +"5795",2011,24021,"MD","24","021",237326,0.852413979083623,13876,0.121950397343738,9.53791600808964,10.4301077822008,11.2017154347876,6.5,266.427388183324,386,144880,1,0,0,0,9 +"5796",2011,24023,"MD","24","023",30158,0.98269115989124,1786,0.143212414616354,7.48773376143644,8.20849175174038,9.08296144264635,8.49230769230769,354.812864827744,62,17474,1,0,0,0,9 +"5797",2011,24025,"MD","24","025",246746,0.829500782180866,14553,0.129939289795985,9.58555243691333,10.4008935343427,11.2426378938472,7.28461538461538,312.746421459216,468,149642,1,0,0,0,9 +"5798",2011,24027,"MD","24","027",293596,0.644780582841728,15048,0.123690377253096,9.61900037098087,10.6573064126288,11.4361524061643,5.23846153846154,180.332675063753,326,180777,1,0,0,0,9 +"5799",2011,24029,"MD","24","029",20258,0.828462829499457,1694,0.146263204659887,7.434847875212,7.56631101477246,8.68050180902826,8.19230769230769,389.483933787731,44,11297,1,0,0,0,9 +"5800",2011,24031,"MD","24","031",991325,0.6493117796888,53625,0.125630847602956,10.8897706562303,11.8589660641716,12.6658712552423,5.30769230769231,166.946828421054,1016,608577,1,0,0,0,9 +"5801",2011,24033,"MD","24","033",874594,0.265366558654644,70980,0.116625542823299,11.1701534262005,11.7135943422489,12.5771740262104,7.53076923076923,322.964011285596,1780,551145,1,0,0,0,9 +"5802",2011,24035,"MD","24","035",48267,0.910995089812916,2451,0.139929972859303,7.80425138352811,8.7533714210009,9.56920292136033,6.87692307692308,272.965879265092,78,28575,1,0,0,0,9 +"5803",2011,24037,"MD","24","037",107589,0.81200680366952,7469,0.111805110187844,8.91851640035707,9.58100697454165,10.3944573475908,6.37692307692308,291.527389837752,191,65517,1,0,0,0,9 +"5804",2011,24039,"MD","24","039",26268,0.550593878483326,3496,0.123838891426831,8.15937473677543,8.00436556497957,8.87066300440602,11.8230769230769,355.464513796843,59,16598,1,0,0,0,9 +"5805",2011,24041,"MD","24","041",37952,0.844461424957841,1800,0.15266652613828,7.49554194388426,8.30127348519135,9.29210467377882,7.51538461538462,346.954510408635,72,20752,1,0,0,0,9 +"5806",2011,24043,"MD","24","043",148807,0.868863695928283,9331,0.124852997506838,9.14109746923402,9.91906558249945,10.6632414265901,8.83846153846154,340.128492986239,306,89966,1,0,0,0,9 +"5807",2011,24045,"MD","24","045",100086,0.706762184521312,10164,0.120945986451652,9.22660734444005,9.33308883723524,10.3362110844151,9.90769230769231,403.904409289801,240,59420,1,0,0,0,9 +"5808",2011,24047,"MD","24","047",51504,0.840536657347002,2491,0.160375893134514,7.82043951526218,8.61776224633793,9.59682651348654,13.9076923076923,408.794228787358,119,29110,1,0,0,0,9 +"5809",2011,24510,"MD","24","510",620493,0.315694133535753,55273,0.115838534842456,10.9200398223483,11.2266823567127,12.2482409333907,10.6692307692308,586.0313923587,2304,393153,1,0,0,0,9 +"5810",2011,23001,"ME","23","001",107458,0.943242941428279,6923,0.132777457239107,8.84260448067803,9.53589609685605,10.4028072361159,7.95384615384615,339.456869009585,221,65104,0,0,0,0,9 +"5811",2011,23003,"ME","23","003",71394,0.965179146707006,3936,0.158164551642995,8.27792025817214,9.02304647355567,9.9423716705861,9.60769230769231,487.793156478278,203,41616,0,0,0,0,9 +"5812",2011,23005,"ME","23","005",282753,0.94273093477346,17452,0.140688162459815,9.7672095342435,10.5342538825123,11.4015804109651,6.20769230769231,268.483155674628,471,175430,0,0,0,0,9 +"5813",2011,23007,"ME","23","007",30740,0.983929733246584,2373,0.154586857514639,7.77191025643576,8.10802122137675,9.14516164595119,8.85384615384615,413.85319102592,76,18364,0,0,0,0,9 +"5814",2011,23009,"ME","23","009",54533,0.977884950397007,3045,0.175526745273504,8.021256180144,8.75084137537553,9.73091828718485,8.78461538461539,301.304649130736,100,33189,0,0,0,0,9 +"5815",2011,23011,"ME","23","011",121801,0.976018259291796,7230,0.151837833843729,8.88599431515281,9.63240035365618,10.543761243489,7.33076923076923,405.943114374138,303,74641,0,0,0,0,9 +"5816",2011,23013,"ME","23","013",39674,0.981927710843373,1792,0.169934970005545,7.49108759353488,8.47491179915963,9.36802764781178,7.22307692307692,322.266039095959,76,23583,0,0,0,0,9 +"5817",2011,23015,"ME","23","015",34271,0.98278427825275,1476,0.173441101806192,7.29709100516042,8.25790419346567,9.21293699782345,7.65384615384615,324.856606263641,64,19701,0,0,0,0,9 +"5818",2011,23017,"ME","23","017",57770,0.980993595291674,2845,0.159096416825342,7.95331834656043,8.83112763501208,9.76273011481987,10.2846153846154,358.496065287088,123,34310,0,0,0,0,9 +"5819",2011,23019,"ME","23","019",153781,0.96532081336446,14059,0.138742757557826,9.55101803907991,9.81307038241166,10.7793312195951,8.1,345.886570167807,330,95407,0,0,0,0,9 +"5820",2011,23021,"ME","23","021",17366,0.978233329494414,667,0.177991477599908,6.50279004591562,7.61381868480863,8.5358186555394,9.93846153846154,405.218422613165,41,10118,0,0,0,0,9 +"5821",2011,23023,"ME","23","023",35127,0.975204258832237,1626,0.157428758504854,7.39387829010776,8.41316512099219,9.30392178559771,6.61538461538461,262.886113979908,56,21302,0,0,0,0,9 +"5822",2011,23025,"ME","23","025",51937,0.981111731520881,2520,0.15437934420548,7.83201418050547,8.81269461292015,9.66122489027521,10.6461538461538,490.589027479399,153,31187,0,0,0,0,9 +"5823",2011,23027,"ME","23","027",38865,0.98237488743085,2018,0.169355461211887,7.60986220091355,8.46315930292375,9.38798433921903,8.10769230769231,364.932165550404,85,23292,0,0,0,0,9 +"5824",2011,23029,"ME","23","029",32724,0.932557144603349,1564,0.165780466935582,7.35500192110526,8.21012440516427,9.15503905619109,10.3692307692308,507.480044404504,96,18917,0,0,0,0,9 +"5825",2011,23031,"ME","23","031",198279,0.974909092743054,10638,0.151064913581368,9.27218777530226,10.1376897312071,11.0268737513029,7.19230769230769,322.380143372146,389,120665,0,0,0,0,9 +"5826",2011,26001,"MI","26","001",10742,0.986594675107056,332,0.192422267734128,5.80513496891649,6.82110747225646,7.91790058632792,13.8076923076923,466.200466200466,26,5577,1,0,0,0,9 +"5827",2011,26003,"MI","26","003",9516,0.876733921815889,466,0.177595628415301,6.14418563412565,6.98100574072173,7.79482315217939,12.1923076923077,414.866032843561,24,5785,1,0,0,0,9 +"5828",2011,26005,"MI","26","005",111167,0.967157519767557,5994,0.133843676630655,8.69851424787661,9.56170122109115,10.3866850091846,8.39230769230769,276.791068874844,180,65031,1,0,0,0,9 +"5829",2011,26007,"MI","26","007",29342,0.981732669892986,1475,0.153261536364256,7.29641326877392,8.06054004653864,9.04204005654448,10.4,403.441115396025,68,16855,1,0,0,0,9 +"5830",2011,26009,"MI","26","009",23324,0.979334590979249,907,0.16686674669868,6.81014245011514,7.79234892411304,8.7721454392451,12.7923076923077,458.679934696416,59,12863,1,0,0,0,9 +"5831",2011,26011,"MI","26","011",15635,0.977102654301247,775,0.161368724016629,6.65286302935335,7.41577697541539,8.39185670010494,13.5384615384615,409.83606557377,37,9028,1,0,0,0,9 +"5832",2011,26013,"MI","26","013",8835,0.765365025466893,458,0.149632144878325,6.12686918411419,7.04490511712937,7.69666708152646,15.7923076923077,449.690837549185,24,5337,1,0,0,0,9 +"5833",2011,26015,"MI","26","015",58921,0.981907978479659,2999,0.145194412857894,8.00603417874901,8.87626525995469,9.73920235822827,7.81538461538462,342.614906651956,118,34441,1,0,0,0,9 +"5834",2011,26017,"MI","26","017",107423,0.962857116260019,6625,0.144093909125606,8.79860565085442,9.45061632203069,10.3738661114869,9.44615384615385,448.755294525185,285,63509,1,0,0,0,9 +"5835",2011,26019,"MI","26","019",17380,0.971518987341772,689,0.15897583429229,6.53524127101366,7.56527528189893,8.50268850521336,11.5923076923077,480.327031170158,47,9785,1,0,0,0,9 +"5836",2011,26021,"MI","26","021",156911,0.808458298016073,9382,0.138575370751573,9.1465482388884,9.83424464979397,10.738850184893,9.76923076923077,453.178884074631,410,90472,1,0,0,0,9 +"5837",2011,26023,"MI","26","023",43921,0.965346872794335,2469,0.133512442795018,7.81156848934518,8.60190191934319,9.39324509203072,10.0384615384615,374.531835205993,100,26700,1,0,0,0,9 +"5838",2011,26025,"MI","26","025",135111,0.849279481315363,8727,0.135140736135474,9.07417694716331,9.70735100670844,10.5999542175064,9.4,443.346633732345,350,78945,1,0,0,0,9 +"5839",2011,26027,"MI","26","027",52210,0.913388239800804,2660,0.154108408350891,7.88608140177575,8.75557997214314,9.61959827832304,9.28461538461539,368.700003291964,112,30377,1,0,0,0,9 +"5840",2011,26029,"MI","26","029",26106,0.968934344595112,1164,0.160767639623075,7.05961762829138,7.96554557312999,8.92279162396964,11.7307692307692,375.687642560043,56,14906,1,0,0,0,9 +"5841",2011,26031,"MI","26","031",25884,0.950278164116829,1090,0.169796012980992,6.99393297522319,7.99799931797973,8.89986721122359,12.0384615384615,550.964187327824,80,14520,1,0,0,0,9 +"5842",2011,26033,"MI","26","033",38904,0.743111248200699,3269,0.128932757557064,8.09223940672421,8.55294636112206,9.22118139515406,10.4384615384615,312.731462431076,76,24302,1,0,0,0,9 +"5843",2011,26035,"MI","26","035",31002,0.979904522288885,1714,0.158054319076189,7.44658509915773,8.13123654969612,9.09178203585205,12.6846153846154,680.657969370391,120,17630,1,0,0,0,9 +"5844",2011,26037,"MI","26","037",75902,0.953071065321072,5946,0.132420753076335,8.69047400355804,9.15556734612889,10.0491451249585,6.62307692307692,253.426770681828,115,45378,1,0,0,0,9 +"5845",2011,26039,"MI","26","039",14040,0.981623931623932,605,0.163675213675214,6.40522845803084,7.28207365809346,8.27639470486331,12.3230769230769,362.635988495686,29,7997,1,0,0,0,9 +"5846",2011,26041,"MI","26","041",36946,0.959373139176095,1912,0.16515996318952,7.55590509361135,8.30375241556341,9.27096499379262,10.3384615384615,378.363228699552,81,21408,1,0,0,0,9 +"5847",2011,26043,"MI","26","043",26069,0.980474893551728,1188,0.155740534734742,7.08002649992259,7.97659540931658,8.92332474406756,9.19230769230769,509.057252413064,77,15126,1,0,0,0,9 +"5848",2011,26045,"MI","26","045",107927,0.899923096166854,6831,0.14270757085808,8.82922635473185,9.47039427731049,10.4045658248472,7.73076923076923,311.473640386721,202,64853,1,0,0,0,9 +"5849",2011,26047,"MI","26","047",32749,0.941158508656753,1666,0.157714739381355,7.41818082272679,8.2550489027523,9.17977806639354,12.6230769230769,365.287272347754,70,19163,1,0,0,0,9 +"5850",2011,26049,"MI","26","049",422062,0.76203733100824,26837,0.129881391833427,10.1975368113661,10.8864832072043,11.7632327195553,11.0923076923077,474.835727044218,1175,247454,1,0,0,0,9 +"5851",2011,26051,"MI","26","051",25873,0.985853979051521,1256,0.165384764039733,7.13568734702814,7.91571319938212,8.86601739881026,12.5153846153846,582.742399775328,83,14243,1,0,0,0,9 +"5852",2011,26053,"MI","26","053",16113,0.928318748836343,976,0.164091106559921,6.88346258641309,7.52779398772144,8.33710912956247,11.4,381.168229113011,37,9707,1,0,0,0,9 +"5853",2011,26055,"MI","26","055",88362,0.961148457481723,5059,0.145865869944094,8.52892411429194,9.29412989770587,10.1910321155339,9.43076923076923,301.822111264299,162,53674,1,0,0,0,9 +"5854",2011,26057,"MI","26","057",42121,0.930557204244914,3314,0.119797725600057,8.10591119798651,8.60116662519242,9.31199402570268,9.60769230769231,335.147070420314,85,25362,1,0,0,0,9 +"5855",2011,26059,"MI","26","059",46602,0.982618771726535,3132,0.140165658126261,8.0494270571107,8.57960445153763,9.49566967884437,10.2076923076923,400.314265404617,107,26729,1,0,0,0,9 +"5856",2011,26061,"MI","26","061",36780,0.951033170201196,5479,0.117699836867863,8.60867788153842,8.13944052187461,9.14878406627708,9.20769230769231,280.846283467515,60,21364,1,0,0,0,9 +"5857",2011,26063,"MI","26","063",32765,0.984465130474592,1502,0.157729284297268,7.31455283232408,8.16080392095467,9.09346942024477,9.33846153846154,368.07119705543,67,18203,1,0,0,0,9 +"5858",2011,26065,"MI","26","065",282828,0.793326686183829,39493,0.115879615879616,10.5838787199949,10.3438370624978,11.4154008350802,8.5,334.340314313839,591,176766,1,0,0,0,9 +"5859",2011,26067,"MI","26","067",63865,0.936256165348783,4170,0.122790260706177,8.33567131479285,9.09178203585205,9.75614696463742,9.38461538461539,312.166895081468,123,39402,1,0,0,0,9 +"5860",2011,26069,"MI","26","069",25599,0.975663111840306,1074,0.17418649165983,6.97914527506881,7.77569574991525,8.83971137870348,12.3538461538462,745.296671490593,103,13820,1,0,0,0,9 +"5861",2011,26071,"MI","26","071",11767,0.979603977224441,447,0.186198691255205,6.10255859461357,6.93537044601511,8.04782935745784,9.94615384615385,434.580164519634,28,6443,1,0,0,0,9 +"5862",2011,26073,"MI","26","073",70624,0.907623470774807,15956,0.0963128681468056,9.6775902130253,8.74782860848874,10.0250855242836,8.04615384615385,256.200970389516,113,44106,1,0,0,0,9 +"5863",2011,26075,"MI","26","075",159666,0.894172835794722,10480,0.13438051933411,9.25722395787503,9.93304635477767,10.7242360776898,9.5,412.231266958881,395,95820,1,0,0,0,9 +"5864",2011,26077,"MI","26","077",252634,0.841676100604036,30006,0.117973036091737,10.309152640647,10.2852404006845,11.2675618667542,8.07692307692308,318.75549578441,493,154664,1,0,0,0,9 +"5865",2011,26079,"MI","26","079",17175,0.977467248908297,839,0.151266375545852,6.73221070646721,7.6246189861594,8.49596955496461,12.5461538461538,477.992431786497,48,10042,1,0,0,0,9 +"5866",2011,26081,"MI","26","081",608543,0.850454281784525,46058,0.114595024509361,10.737656750808,11.2415890710545,12.1302115991779,7.88461538461539,281.775845670163,1028,364829,1,0,0,0,9 +"5867",2011,26085,"MI","26","085",11456,0.887918994413408,435,0.185492318435754,6.07534603108868,7.05098944706805,8.06589354696427,13.1615384615385,566.442131047152,37,6532,1,0,0,0,9 +"5868",2011,26087,"MI","26","087",88095,0.975639934161984,4680,0.14549066348828,8.45105338891169,9.34207014265408,10.1636956479872,12.8,382.873064311302,202,52759,1,0,0,0,9 +"5869",2011,26089,"MI","26","089",21428,0.943718499159978,843,0.193905170804555,6.73696695800186,7.57916796739608,8.69717868841264,8.82307692307692,229.650421025772,27,11757,1,0,0,0,9 +"5870",2011,26091,"MI","26","091",99370,0.954251786253396,6409,0.140102646674046,8.76545853150423,9.44057869576626,10.2565359284192,9.95384615384615,367.265740567562,216,58813,1,0,0,0,9 +"5871",2011,26093,"MI","26","093",182052,0.978066706215806,8915,0.140981697536967,9.09549053029724,10.1135863903295,10.9085397956877,8.7,289.304846996979,317,109573,1,0,0,0,9 +"5872",2011,26097,"MI","26","097",11012,0.78641482019615,429,0.183073011260443,6.06145691892802,7.07326971745971,8.04782935745784,13.6538461538462,412.763930782664,26,6299,1,0,0,0,9 +"5873",2011,26099,"MI","26","099",844159,0.861735763049378,51831,0.129761099508505,10.8557437048429,11.6505721282409,12.4689137193829,10.7769230769231,390.055831520982,1989,509927,1,0,0,0,9 +"5874",2011,26101,"MI","26","101",24776,0.936147885050048,1300,0.171738779463997,7.17011954344963,7.88419993367604,8.80462523261281,11.4923076923077,521.159057744424,75,14391,1,0,0,0,9 +"5875",2011,26103,"MI","26","103",67462,0.950609231863864,7361,0.146941982152916,8.90395107205871,8.87122464440955,9.92314311019457,8.53846153846154,360.865126658911,152,42121,1,0,0,0,9 +"5876",2011,26105,"MI","26","105",28649,0.970923941498831,1461,0.16035463716011,7.2868764117507,8.02812905943176,9.0146903849709,10.6153846153846,465.886103107951,76,16313,1,0,0,0,9 +"5877",2011,26107,"MI","26","107",43454,0.94780687623694,6306,0.122957610346573,8.74925684010501,8.30226579487337,9.42100640177928,10.8769230769231,343.791986090255,87,25306,1,0,0,0,9 +"5878",2011,26109,"MI","26","109",23870,0.960536237955593,1060,0.167239212400503,6.96602418710611,7.84932381804056,8.81729778386658,8.77692307692308,389.750992421508,54,13855,1,0,0,0,9 +"5879",2011,26111,"MI","26","111",83825,0.955860423501342,5467,0.131738741425589,8.606485298895,9.23659274312025,10.1223820895609,8.04615384615385,297.52930060511,148,49743,1,0,0,0,9 +"5880",2011,26113,"MI","26","113",14904,0.981146001073537,733,0.142512077294686,6.59714570188665,7.40306109109009,8.32020459757888,10.4307692307692,358.166189111748,30,8376,1,0,0,0,9 +"5881",2011,26115,"MI","26","115",151511,0.961685950195035,8987,0.14123066972035,9.10353436765837,9.87240959696527,10.7267195681587,9.08461538461538,401.072456761093,365,91006,1,0,0,0,9 +"5882",2011,26117,"MI","26","117",63264,0.960514668689934,3664,0.128572331815883,8.20631072579402,9.01881660441743,9.77428961406445,11.1230769230769,422.996089281439,159,37589,1,0,0,0,9 +"5883",2011,26119,"MI","26","119",9625,0.986597402597403,355,0.194181818181818,5.87211778947542,6.7428806357919,7.85205020726589,17.4307692307692,551.85537583254,29,5255,1,0,0,0,9 +"5884",2011,26121,"MI","26","121",170056,0.828421225949099,10827,0.132762148939173,9.2897982933109,9.93256080002184,10.8216365567522,10.9769230769231,399.470010085629,404,101134,1,0,0,0,9 +"5885",2011,26123,"MI","26","123",48325,0.96991205380238,2732,0.138913605794102,7.91278922069068,8.63444275146648,9.52886682772295,10.2,422.672591308117,117,27681,1,0,0,0,9 +"5886",2011,26125,"MI","26","125",1212718,0.785870251781535,65332,0.136575032282856,11.087237241173,12.0193695035965,12.8486131380397,9.19230769230769,312.303287509899,2307,738705,1,0,0,0,9 +"5887",2011,26127,"MI","26","127",26454,0.970703863309896,1335,0.143985786648522,7.19668657083435,7.97108575350561,8.88280805492444,13.5769230769231,422.372096191839,62,14679,1,0,0,0,9 +"5888",2011,26129,"MI","26","129",21488,0.981571109456441,1011,0.166139240506329,6.91869521902047,7.68386398025643,8.69951474821019,12.2846153846154,524.868782804299,63,12003,1,0,0,0,9 +"5889",2011,26131,"MI","26","131",6629,0.978428118871625,174,0.200030170463117,5.15905529921453,6.46769872610435,7.49108759353488,15.5923076923077,566.95464362851,21,3704,1,0,0,0,9 +"5890",2011,26133,"MI","26","133",23474,0.97801823293857,1197,0.143733492374542,7.08757370555797,7.86710550031674,8.78354947715327,10.9230769230769,479.087452471483,63,13150,1,0,0,0,9 +"5891",2011,26135,"MI","26","135",8614,0.984211748316694,387,0.174715579289529,5.95842469302978,6.6682282484174,7.7553388128465,17.1538461538462,445.576066199873,21,4713,1,0,0,0,9 +"5892",2011,26137,"MI","26","137",24115,0.976155919552146,1285,0.145801368442878,7.15851399732932,7.9536697786498,8.84764735571189,11.7153846153846,352.924229328724,49,13884,1,0,0,0,9 +"5893",2011,26139,"MI","26","139",266918,0.942888827280288,23618,0.113499276931492,10.0697644121612,10.3868083631799,11.2656428978027,7.63846153846154,202.451337532802,314,155099,1,0,0,0,9 +"5894",2011,26141,"MI","26","141",13151,0.980381720021291,470,0.188046536385066,6.1527326947041,7.0884087786754,8.17272910486547,15.5461538461538,444.691495275153,32,7196,1,0,0,0,9 +"5895",2011,26143,"MI","26","143",24327,0.980309943683973,910,0.197599375179841,6.8134445995109,7.66058546170326,8.80192090404158,14.2307692307692,642.236494144314,85,13235,1,0,0,0,9 +"5896",2011,26145,"MI","26","145",198929,0.777156673989212,14548,0.136184266748438,9.58520880610688,10.0527692552519,10.9908029374619,9.79230769230769,433.702398781132,501,115517,1,0,0,0,9 +"5897",2011,26147,"MI","26","147",161586,0.957217828277202,9151,0.141757330461797,9.12161844191538,9.93576111308642,10.7820971854426,12.6153846153846,459.317585301837,441,96012,1,0,0,0,9 +"5898",2011,26149,"MI","26","149",61068,0.951332940328814,3466,0.132999279491714,8.15075647027555,8.88350158432321,9.75672617114073,10.4307692307692,402.854511970534,140,34752,1,0,0,0,9 +"5899",2011,26151,"MI","26","151",42704,0.983467590857999,2144,0.14396777819408,7.67042852219069,8.50329708622413,9.39116080264387,11.7384615384615,410.481797827349,99,24118,1,0,0,0,9 +"5900",2011,26153,"MI","26","153",8476,0.890750353940538,345,0.177678150070788,5.84354441703136,6.84374994900622,7.79069603117474,12.7769230769231,457.57071547421,22,4808,1,0,0,0,9 +"5901",2011,26155,"MI","26","155",70006,0.979816015770077,4131,0.137388223866526,8.32627478739676,9.08873755021693,9.93856507914882,10.3153846153846,436.48003103858,180,41239,1,0,0,0,9 +"5902",2011,26157,"MI","26","157",55400,0.975469314079422,3081,0.143953068592058,8.03300949859667,8.80552505270952,9.67771554986823,11.5307692307692,365.72136990547,118,32265,1,0,0,0,9 +"5903",2011,26159,"MI","26","159",75941,0.929998288144744,4107,0.141623102145086,8.32044811395656,9.13097243659261,10.0113549234051,11.0769230769231,397.803042289176,176,44243,1,0,0,0,9 +"5904",2011,26161,"MI","26","161",350072,0.766313786878128,43242,0.116121826367147,10.6745675241525,10.6733874191945,11.6306107180683,6.53846153846154,242.20610521758,537,221712,1,0,0,0,9 +"5905",2011,26163,"MI","26","163",1803003,0.551160480598202,127989,0.126040278357829,11.7596996017089,12.3722478825814,13.2262403932202,12.5153846153846,515.27034878833,5516,1070506,1,0,0,0,9 +"5906",2011,26165,"MI","26","165",32637,0.977173147041701,1733,0.14008640500046,7.45760928971561,8.25009775257285,9.14023974429669,11.6846153846154,481.226864093072,91,18910,1,0,0,0,9 +"5907",2011,27001,"MN","27","001",16170,0.963017934446506,548,0.180272108843537,6.30627528694802,7.23849684089437,8.34331588140495,9.6,430.984274898078,37,8585,1,0,0,0,9 +"5908",2011,27003,"MN","27","003",332921,0.893761583078268,18585,0.121416191829293,9.83011008273135,10.756156676113,11.5378619502603,6.86923076923077,242.526544530299,500,206163,1,0,0,0,9 +"5909",2011,27005,"MN","27","005",32766,0.899072208997131,1565,0.150918635170604,7.35564110297425,8.14757773620177,9.0994088112689,7.16923076923077,381.845952432904,70,18332,1,0,0,0,9 +"5910",2011,27007,"MN","27","007",45057,0.758727833632954,4653,0.123598996826242,8.44526745184465,8.40514368760761,9.46304272553194,8.21538461538461,360.098069261416,94,26104,1,0,0,0,9 +"5911",2011,27009,"MN","27","009",38738,0.955702411069234,3094,0.107672053281016,8.03722003113301,8.49208049060116,9.35383447161491,7.58461538461538,231.998987640781,55,23707,1,0,0,0,9 +"5912",2011,27013,"MN","27","013",64364,0.939562488347523,10813,0.105571437449506,9.28850439294554,8.76327171401294,9.87142912884224,5.42307692307692,196.59076769939,79,40185,1,0,0,0,9 +"5913",2011,27015,"MN","27","015",25660,0.986983632112237,1587,0.135346843335931,7.36960072052641,7.85360481309784,8.86502918668777,5.9,326.049254249046,47,14415,1,0,0,0,9 +"5914",2011,27017,"MN","27","017",35436,0.910006772773451,1890,0.135794107687098,7.54433210805369,8.4069317971587,9.17823031805795,7.59230769230769,312.781384768494,66,21101,1,0,0,0,9 +"5915",2011,27019,"MN","27","019",92752,0.949273331033293,3963,0.106434362601346,8.28475659319044,9.54716968769421,10.2255710517052,5.54615384615385,160.16890539114,88,54942,1,0,0,0,9 +"5916",2011,27021,"MN","27","021",28383,0.865976112461685,1211,0.163337208892647,7.09920174355309,7.93379687481541,8.93102321585603,10.1307692307692,488.400488400488,76,15561,1,0,0,0,9 +"5917",2011,27023,"MN","27","023",12308,0.964738381540462,611,0.141046473838154,6.4150969591716,7.1785454837637,8.11820704940578,6.31538461538462,398.288833161233,27,6779,1,0,0,0,9 +"5918",2011,27025,"MN","27","025",53762,0.967039916669767,2724,0.119303597336409,7.9098566672694,8.9457235724554,9.640953273617,7.65384615384615,228.057199211045,74,32448,1,0,0,0,9 +"5919",2011,27027,"MN","27","027",59937,0.94709444917163,7272,0.105410681215276,8.89178663585731,8.78584533796121,9.78588575045595,5.58461538461538,286.839145106862,102,35560,1,0,0,0,9 +"5920",2011,27029,"MN","27","029",8723,0.888799724865299,428,0.140318697695747,6.0591231955818,6.85224256905188,7.75876054415766,11.8461538461538,335.218939870103,16,4773,1,0,0,0,9 +"5921",2011,27033,"MN","27","033",11716,0.952970297029703,520,0.140064868555821,6.25382881157547,7.11882624906208,8.01400499477946,6.16153846153846,373.983739837398,23,6150,1,0,0,0,9 +"5922",2011,27035,"MN","27","035",62679,0.975111281290384,3317,0.143030361045964,8.10681603894705,8.81001204797317,9.7714407716158,8.81538461538462,320.249397761088,113,35285,1,0,0,0,9 +"5923",2011,27037,"MN","27","037",401804,0.885752755074613,21349,0.12022777274492,9.96876017915232,10.9273224142464,11.7390246441101,6.07692307692308,228.756844453458,564,246550,1,0,0,0,9 +"5924",2011,27039,"MN","27","039",20204,0.982973668580479,955,0.111017620273213,6.86171134048073,7.91717198884578,8.63426486300208,6.05384615384615,192.442267319804,22,11432,1,0,0,0,9 +"5925",2011,27041,"MN","27","041",36185,0.983694901202156,2159,0.139477684123255,7.67740043051481,8.25452888193974,9.20743615882879,6.07692307692308,254.914456591009,52,20399,1,0,0,0,9 +"5926",2011,27043,"MN","27","043",14460,0.985753803596127,631,0.145988934993084,6.44730586254121,7.26473017792987,8.23774380389093,7.09230769230769,319.407180273413,25,7827,1,0,0,0,9 +"5927",2011,27045,"MN","27","045",20836,0.989201382223075,915,0.138270301401421,6.81892406527552,7.72973533138505,8.62998601889136,6.65384615384615,228.491080059759,26,11379,1,0,0,0,9 +"5928",2011,27047,"MN","27","047",31070,0.972867718056003,1569,0.138783392339878,7.35819375273303,8.13035354743124,9.04038207416563,6.66153846153846,328.416685872321,57,17356,1,0,0,0,9 +"5929",2011,27049,"MN","27","049",46122,0.963423095269069,2224,0.139868175707905,7.70706265537047,8.5775354204224,9.48493720487931,6.00769230769231,267.349474714764,71,26557,1,0,0,0,9 +"5930",2011,27053,"MN","27","053",1169581,0.783466044677538,81489,0.120809931077882,11.3082233207946,11.94511688865,12.8293283366813,6.06923076923077,246.276834053946,1825,741036,1,0,0,0,9 +"5931",2011,27055,"MN","27","055",18877,0.98352492451131,863,0.148169730359697,6.76041469108343,7.62851762657506,8.58091888229678,6.90769230769231,249.676345478084,27,10814,1,0,0,0,9 +"5932",2011,27057,"MN","27","057",20516,0.95725287580425,835,0.16070384090466,6.72743172485086,7.63336964967958,8.62497078358967,9.23846153846154,374.866119243127,42,11204,1,0,0,0,9 +"5933",2011,27059,"MN","27","059",38200,0.97217277486911,2122,0.11955497382199,7.66011431917393,8.49290049884719,9.31244559491334,8.33076923076923,273.453005777797,62,22673,1,0,0,0,9 +"5934",2011,27061,"MN","27","061",45103,0.946455889852116,2081,0.166064341618074,7.64060382639363,8.46863300080086,9.4444634273334,9.11538461538461,386.44702943243,99,25618,1,0,0,0,9 +"5935",2011,27063,"MN","27","063",10198,0.973131986664052,501,0.138556579721514,6.21660610108486,7.0184017990692,7.89469085042562,5.43846153846154,370.174510840825,21,5673,1,0,0,0,9 +"5936",2011,27065,"MN","27","065",16227,0.980279780612559,747,0.143464596043631,6.61606518513282,7.57712193087668,8.42002127966396,10.0615384615385,353.963316529014,33,9323,1,0,0,0,9 +"5937",2011,27067,"MN","27","067",42205,0.957303637009833,2858,0.136121312640682,7.95787735848981,8.42156296040099,9.38336888185854,6.00769230769231,286.200174208802,69,24109,1,0,0,0,9 +"5938",2011,27071,"MN","27","071",13238,0.955809034597371,574,0.167170267411996,6.35262939631957,7.27170370688737,8.21446516075919,8.38461538461539,422.609614368727,32,7572,1,0,0,0,9 +"5939",2011,27075,"MN","27","075",10779,0.98589850635495,475,0.16522868540681,6.16331480403464,6.98564181763921,7.99598047476376,6.92307692307692,393.056010481494,24,6106,1,0,0,0,9 +"5940",2011,27079,"MN","27","079",27786,0.982437198589218,1271,0.131972936010941,7.14755927118945,8.16820293023605,8.95892593869494,7.57692307692308,222.979250541963,36,16145,1,0,0,0,9 +"5941",2011,27083,"MN","27","083",25834,0.933421073004568,2290,0.114964775102578,7.73630709654828,7.92768504561578,8.90585118120802,5.29230769230769,238.363239091571,36,15103,1,0,0,0,9 +"5942",2011,27085,"MN","27","085",36345,0.980932728023112,1868,0.121804925024075,7.53262361878879,8.43663368355782,9.23630047364571,7.66923076923077,245.263056650957,51,20794,1,0,0,0,9 +"5943",2011,27087,"MN","27","087",5473,0.532066508313539,278,0.130824045313356,5.62762111369064,6.32435896238131,7.24351297466548,7.61538461538461,665.73230553609,19,2854,1,0,0,0,9 +"5944",2011,27091,"MN","27","091",20627,0.982644107238086,942,0.151015659087604,6.84800527457636,7.64969262371151,8.63070043220983,6.65384615384615,325.046121409119,37,11383,1,0,0,0,9 +"5945",2011,27093,"MN","27","093",23198,0.986722993361497,1045,0.140012070006035,6.95177216439891,7.8804263442924,8.73969653784302,7.75384615384615,323.325635103926,42,12990,1,0,0,0,9 +"5946",2011,27095,"MN","27","095",25842,0.922451822614349,1369,0.121314139772463,7.22183582528845,8.04686951095958,8.87696334026227,9.60769230769231,335.639427358038,49,14599,1,0,0,0,9 +"5947",2011,27097,"MN","27","097",33259,0.98466580474458,1679,0.13476051595057,7.42595365707754,8.22040309993373,9.11943049661634,8.23846153846154,300.442757748261,57,18972,1,0,0,0,9 +"5948",2011,27099,"MN","27","099",39349,0.941548705176752,2194,0.123764263386617,7.69348164083518,8.40626163070896,9.26302769425519,5.69230769230769,248.939701272358,54,21692,1,0,0,0,9 +"5949",2011,27103,"MN","27","103",32971,0.954505474507901,3267,0.123684449971187,8.09162741160107,8.20412493257404,9.18993356219852,5.10769230769231,211.693548387097,42,19840,1,0,0,0,9 +"5950",2011,27105,"MN","27","105",21617,0.878336494425684,1386,0.116806217328954,7.23417717974985,7.79934339821592,8.62730241409627,5.3,209.995800083998,25,11905,1,0,0,0,9 +"5951",2011,27109,"MN","27","109",145849,0.879066705976729,8119,0.116044676343341,9.00196227286245,9.7994039989928,10.7036488807506,5.28461538461538,205.122328539506,179,87265,1,0,0,0,9 +"5952",2011,27111,"MN","27","111",57283,0.97552502487649,2589,0.153588324633836,7.85902697975154,8.63675242647388,9.64075822143992,6.43076923076923,368.441112946258,116,31484,1,0,0,0,9 +"5953",2011,27113,"MN","27","113",14075,0.951474245115453,982,0.126820603907638,6.88959130835447,7.41637847919293,8.30770596654951,7.71538461538462,378.787878787879,31,8184,1,0,0,0,9 +"5954",2011,27115,"MN","27","115",29621,0.932075216906924,1462,0.137233719320752,7.28756064030972,8.19753873972118,8.96072450033086,8.80769230769231,299.926433139041,53,17671,1,0,0,0,9 +"5955",2011,27117,"MN","27","117",9528,0.959277917716205,423,0.126574307304786,6.04737217904628,6.94022246911964,7.81278281857758,6.53076923076923,258.809476408521,13,5023,1,0,0,0,9 +"5956",2011,27119,"MN","27","119",31545,0.959961959106039,2255,0.131399587890315,7.72090525193678,8.12888014212564,9.06450502375264,7.08461538461538,373.175893951209,67,17954,1,0,0,0,9 +"5957",2011,27121,"MN","27","121",10906,0.986521181001284,475,0.154043645699615,6.16331480403464,7.05098944706805,7.97796809312855,5.91538461538462,362.199539018769,22,6074,1,0,0,0,9 +"5958",2011,27123,"MN","27","123",515856,0.73432508296889,43555,0.12042120281629,10.681779786253,11.0161506644269,11.9953886505657,6.68461538461538,284.174610566734,897,315651,1,0,0,0,9 +"5959",2011,27127,"MN","27","127",16028,0.903668579985026,717,0.132580484152733,6.57507584059962,7.45182223652793,8.33591109419694,6.05384615384615,317.013032758013,27,8517,1,0,0,0,9 +"5960",2011,27129,"MN","27","129",15429,0.97938946140385,668,0.142523818782812,6.50428817353665,7.4079243225596,8.30671904320269,7.36153846153846,500.232666356445,43,8596,1,0,0,0,9 +"5961",2011,27131,"MN","27","131",64458,0.929814763101555,6199,0.113345123956685,8.73214326770192,8.97144846369383,9.80151019642366,6.67692307692308,209.83606557377,80,38125,1,0,0,0,9 +"5962",2011,27135,"MN","27","135",15517,0.952181478378553,609,0.129986466456145,6.4118182677099,7.60688453121963,8.34569287325387,5.36923076923077,294.250792213671,26,8836,1,0,0,0,9 +"5963",2011,27137,"MN","27","137",200437,0.943643139739669,17802,0.148934577947185,9.78706608951888,9.96538195607372,10.9840546686793,7.39230769230769,357.824624614698,433,121009,1,0,0,0,9 +"5964",2011,27139,"MN","27","139",132581,0.89184724809739,5723,0.0952926889976694,8.6522484224091,9.99761521526083,10.5940564120813,5.80769230769231,190.945178634239,152,79604,1,0,0,0,9 +"5965",2011,27141,"MN","27","141",89279,0.955252634998152,5406,0.0994746804959733,8.59526472683639,9.51694232928048,10.1669281606149,7.18461538461538,222.292203100976,120,53983,1,0,0,0,9 +"5966",2011,27143,"MN","27","143",15167,0.982000395595701,693,0.125931298213226,6.5410299991899,7.48661331313996,8.32457884513685,6.90769230769231,246.305418719212,21,8526,1,0,0,0,9 +"5967",2011,27145,"MN","27","145",151372,0.93447268979732,16704,0.110344053061332,9.72340349068237,9.7319278783862,10.6948951022636,6.28461538461538,234.039499685371,212,90583,1,0,0,0,9 +"5968",2011,27147,"MN","27","147",36576,0.954997812773403,1765,0.123879046369204,7.4759059693674,8.42617379302907,9.23356849809539,6.51538461538462,249.963947507571,52,20803,1,0,0,0,9 +"5969",2011,27153,"MN","27","153",24882,0.979262117193152,1227,0.141588296760711,7.11232744471091,7.86787149039632,8.79057347915716,6.76153846153846,327.964434079149,45,13721,1,0,0,0,9 +"5970",2011,27157,"MN","27","157",21609,0.985191355453746,964,0.144291730297561,6.87109129461055,7.85399308722424,8.71882705924257,6.2,258.272800645682,32,12390,1,0,0,0,9 +"5971",2011,27159,"MN","27","159",13650,0.976849816849817,671,0.132014652014652,6.50876913697168,7.25981961036319,8.16137502319749,9.00769230769231,277.161862527716,20,7216,1,0,0,0,9 +"5972",2011,27161,"MN","27","161",19186,0.957104138434275,1018,0.13134577295945,6.92559519711047,7.77653502818524,8.71882705924257,6.30769230769231,174.535299764377,20,11459,1,0,0,0,9 +"5973",2011,27163,"MN","27","163",241428,0.8942459035406,11924,0.126936395115728,9.38630845479796,10.4149329841815,11.2054895640316,5.92307692307692,183.633336302529,268,145943,1,0,0,0,9 +"5974",2011,27165,"MN","27","165",11168,0.966690544412607,534,0.130103868194842,6.2803958389602,7.11963563801764,7.97487690055888,6.34615384615385,215.481518315929,13,6033,1,0,0,0,9 +"5975",2011,27169,"MN","27","169",51359,0.954866722482914,7805,0.121283514087112,8.96251983294953,8.5115774526306,9.65020690680168,5.83076923076923,218.508997429306,68,31120,1,0,0,0,9 +"5976",2011,27171,"MN","27","171",126239,0.966389150737886,5708,0.100927605573555,8.64962397859673,9.86089315490371,10.4998209234067,6.83076923076923,220.093743631547,162,73605,1,0,0,0,9 +"5977",2011,29001,"MO","29","001",25676,0.950225891883471,4904,0.10196292257361,8.49780647761605,7.77022320415879,8.9856956945357,8.75384615384615,279.929692077339,43,15361,0,0,0,0,9 +"5978",2011,29003,"MO","29","003",17199,0.982208267922554,925,0.143206000348857,6.82979373751242,7.64730883235624,8.5143892640835,7.06923076923077,289.652417099481,29,10012,0,0,0,0,9 +"5979",2011,29007,"MO","29","007",25535,0.917211670256511,1469,0.12543567652242,7.29233717617388,8.03430693633949,9.00871366412422,8.38461538461539,303.155573928621,44,14514,0,0,0,0,9 +"5980",2011,29009,"MO","29","009",35348,0.965599185243861,1900,0.140403983252235,7.54960916515453,8.29903718161307,9.19522673416613,9.14615384615385,509.813917919959,100,19615,0,0,0,0,9 +"5981",2011,29011,"MO","29","011",12346,0.972217722339219,627,0.1303256115341,6.44094654063292,7.22402480828583,8.13388088794921,8.95384615384615,461.03509815586,31,6724,0,0,0,0,9 +"5982",2011,29013,"MO","29","013",16965,0.977483053345122,853,0.130091364574123,6.74875954749168,7.52725591937378,8.45212119467252,10.2538461538462,594.732370433305,56,9416,0,0,0,0,9 +"5983",2011,29015,"MO","29","015",19046,0.98393363435892,746,0.188175994959572,6.61472560020376,7.5076900778199,8.54907938027856,11.1384615384615,608.813297255508,63,10348,0,0,0,0,9 +"5984",2011,29017,"MO","29","017",12382,0.986028105314166,697,0.143110967533516,6.54678541076052,7.29709100516042,8.18004072349016,9.16923076923077,391.498881431767,28,7152,0,0,0,0,9 +"5985",2011,29019,"MO","29","019",166287,0.846380053762471,26336,0.102719996151233,10.1786921034768,9.83889569664295,10.9162877447901,5.83846153846154,254.574383452665,272,106845,0,0,0,0,9 +"5986",2011,29021,"MO","29","021",89748,0.916042697330303,7177,0.119690689486117,8.87863674743007,9.27472263090545,10.1654671276355,8.25384615384615,403.504511404607,216,53531,0,0,0,0,9 +"5987",2011,29023,"MO","29","023",42996,0.924388315192111,2570,0.134733463578007,7.85166117788927,8.54169066301663,9.45312967553723,9.19230769230769,658.266698974235,163,24762,0,0,0,0,9 +"5988",2011,29025,"MO","29","025",9276,0.981780940060371,424,0.134109529969815,6.04973345523196,6.99025650049388,7.83241092718792,8.80769230769231,405.875531503672,21,5174,0,0,0,0,9 +"5989",2011,29027,"MO","29","027",44311,0.935478775022004,3584,0.129245559793279,8.18423477409482,8.61740045183326,9.46513761709219,7.76153846153846,422.910058697,116,27429,0,0,0,0,9 +"5990",2011,29029,"MO","29","029",43851,0.981026658457048,1948,0.181272947025153,7.57455848420248,8.36287583103188,9.43819281901813,11.4230769230769,412.47118767439,102,24729,0,0,0,0,9 +"5991",2011,29031,"MO","29","031",76627,0.901692614874653,7630,0.122254557792945,8.9398431242785,9.07577987858049,10.0542754416582,6.86923076923077,379.385964912281,173,45600,0,0,0,0,9 +"5992",2011,29033,"MO","29","033",9252,0.970925205361003,455,0.138564634673584,6.12029741895095,7.02197642307216,7.84345640437612,10.6692307692308,373.427672955975,19,5088,0,0,0,0,9 +"5993",2011,29035,"MO","29","035",6330,0.97867298578199,351,0.139178515007899,5.86078622346587,6.59850902861452,7.51697722460432,11.4769230769231,695.797383801837,25,3593,0,0,0,0,9 +"5994",2011,29037,"MO","29","037",100017,0.941999860023796,5221,0.120579501484748,8.56044423341055,9.48242645680341,10.2895319604047,8.65384615384615,352.369380315917,203,57610,0,0,0,0,9 +"5995",2011,29039,"MO","29","039",13914,0.98541037803651,637,0.142230846629294,6.45676965557216,7.32383056620232,8.20685642839965,8.86923076923077,343.218012081274,25,7284,0,0,0,0,9 +"5996",2011,29041,"MO","29","041",7744,0.971978305785124,340,0.144498966942149,5.82894561761021,6.64509096950564,7.62851762657506,9.13076923076923,359.453630481668,15,4173,0,0,0,0,9 +"5997",2011,29043,"MO","29","043",78664,0.974372012610597,4241,0.116470049832198,8.35255436947459,9.28609698437543,10.0676875682164,7.56923076923077,262.128923742327,120,45779,0,0,0,0,9 +"5998",2011,29045,"MO","29","045",7028,0.989186112692089,355,0.144706886738759,5.87211778947542,6.69579891705849,7.57250298502038,10.2076923076923,378.979282465892,15,3958,0,0,0,0,9 +"5999",2011,29047,"MO","29","047",225271,0.904190952230869,12899,0.117280963816914,9.46490506796514,10.3728347163556,11.1510943938821,7.54615384615385,282.740384263227,386,136521,0,0,0,0,9 +"6000",2011,29049,"MO","29","049",20679,0.968035204797137,1040,0.131631123361865,6.94697599213542,7.85243908535751,8.67982211486446,9.06153846153846,430.670494848843,51,11842,0,0,0,0,9 +"6001",2011,29051,"MO","29","051",76490,0.858582821283828,4782,0.130448424630671,8.47261414801827,9.22226894284146,10.0194021771325,6.41538461538462,317.021276595745,149,47000,0,0,0,0,9 +"6002",2011,29053,"MO","29","053",17551,0.914876645205401,1243,0.128425730727594,7.12528309151071,7.62413058566129,8.46842302704681,9.18461538461538,386.464322744839,41,10609,0,0,0,0,9 +"6003",2011,29055,"MO","29","055",24817,0.985171455050973,1427,0.13204658097272,7.26332961747684,7.96519829061218,8.85936344915209,11.0923076923077,534.007869589657,76,14232,0,0,0,0,9 +"6004",2011,29057,"MO","29","057",7765,0.976046361880232,302,0.15788795878944,5.71042701737487,6.75809450442773,7.64873978895624,9.50769230769231,537.006770954938,23,4283,0,0,0,0,9 +"6005",2011,29059,"MO","29","059",16689,0.98064593444784,863,0.139672838396549,6.76041469108343,7.53583046279837,8.45148064805086,11.2230769230769,425.215265228022,40,9407,0,0,0,0,9 +"6006",2011,29061,"MO","29","061",8289,0.987091325853541,391,0.142477982868862,5.96870755998537,6.84054652928869,7.70165236264223,9.05384615384615,513.507479348069,23,4479,0,0,0,0,9 +"6007",2011,29063,"MO","29","063",12817,0.873293282359366,880,0.117188109542015,6.77992190747225,7.60638738977265,7.86863689418417,8.10769230769231,292.602996254682,25,8544,0,0,0,0,9 +"6008",2011,29065,"MO","29","065",15620,0.979129321382842,806,0.137580025608195,6.69208374250663,7.45760928971561,8.38571682862785,9.87692307692308,575.440211761998,50,8689,0,0,0,0,9 +"6009",2011,29067,"MO","29","067",13636,0.982619536520974,702,0.154224112643004,6.55393340402581,7.26892012819372,8.23959345430597,10.4153846153846,502.778512834083,38,7558,0,0,0,0,9 +"6010",2011,29069,"MO","29","069",32018,0.884502467362109,1864,0.127678181023174,7.53047999524554,8.25686684897431,9.13259502335133,12.3923076923077,754.037476788025,134,17771,0,0,0,0,9 +"6011",2011,29071,"MO","29","071",101618,0.979472140762463,6022,0.128067861992954,8.70317470904168,9.44398855593548,10.3135089317255,9.56153846153846,413.223140495868,249,60258,0,0,0,0,9 +"6012",2011,29073,"MO","29","073",15075,0.987330016583748,732,0.14832504145937,6.59578051396131,7.42535788702715,8.34474275441755,9.01538461538462,530.160226201697,45,8488,0,0,0,0,9 +"6013",2011,29075,"MO","29","075",6821,0.988418120510189,371,0.119630552704882,5.91620206260743,6.57368016696065,7.49831587076698,7.08461538461538,444.444444444444,16,3600,0,0,0,0,9 +"6014",2011,29077,"MO","29","077",277510,0.93354473712659,28852,0.118129076429678,10.2699345936236,10.3885952882965,11.3586431098075,7.46923076923077,389.924492685229,661,169520,0,0,0,0,9 +"6015",2011,29079,"MO","29","079",10254,0.980787985176516,632,0.125316949483129,6.44888939414686,6.95939851213398,7.90174751852014,7.21538461538462,333.024976873265,18,5405,0,0,0,0,9 +"6016",2011,29081,"MO","29","081",8887,0.984021604590976,420,0.129965117587487,6.04025471127741,6.80903930604298,7.74889133725553,8.66923076923077,538.793103448276,25,4640,0,0,0,0,9 +"6017",2011,29083,"MO","29","083",22254,0.97506066325155,1190,0.138536892244091,7.08170858610557,7.83873755959928,8.74830491237962,9.84615384615385,585.545841020294,73,12467,0,0,0,0,9 +"6018",2011,29085,"MO","29","085",9614,0.984917828167256,343,0.172976908674849,5.83773044716594,6.74875954749168,7.82484569102686,11.8923076923077,612.369871402327,30,4899,0,0,0,0,9 +"6019",2011,29089,"MO","29","089",10219,0.927879440258342,908,0.134259712300617,6.81124437860129,6.96508034560141,7.98514393119862,8.4,404.380791912384,24,5935,0,0,0,0,9 +"6020",2011,29091,"MO","29","091",40578,0.978683030213416,2460,0.131795554241214,7.80791662892641,8.46041117731725,9.35763905899706,9.78461538461539,559.964726631393,127,22680,0,0,0,0,9 +"6021",2011,29093,"MO","29","093",10618,0.974100583914108,571,0.145695987944999,6.34738920965601,7.12849594568004,8.01466637046494,14.2923076923077,411.658159064713,25,6073,0,0,0,0,9 +"6022",2011,29095,"MO","29","095",675644,0.717212022899633,45250,0.120097270160025,10.7199579491281,11.356762762382,12.2566802048552,9.69230769230769,432.66657051854,1770,409091,0,0,0,0,9 +"6023",2011,29097,"MO","29","097",115313,0.933277254082367,8631,0.114150182546634,9.06311565221966,9.56920292136033,10.4381664123243,7.73076923076923,550.032653653581,379,68905,0,0,0,0,9 +"6024",2011,29099,"MO","29","099",219605,0.976671751553926,12985,0.126941554154049,9.47155012409685,10.2949889536269,11.1196902657197,8.93846153846154,410.657795072106,553,134662,0,0,0,0,9 +"6025",2011,29101,"MO","29","101",53417,0.919257914147182,8248,0.0978153022446038,9.0177260256968,8.62443194208584,9.67721410821299,9.32307692307692,319.829424307036,105,32830,0,0,0,0,9 +"6026",2011,29105,"MO","29","105",35668,0.973870135695862,2020,0.125686890209712,7.61085279039525,8.36637030168165,9.23659274312025,11.5153846153846,492.150204242335,100,20319,0,0,0,0,9 +"6027",2011,29107,"MO","29","107",33213,0.960979134676181,1752,0.129678138078463,7.46851327149634,8.29754352935628,9.15090878820676,9.25384615384615,345.634372008933,65,18806,0,0,0,0,9 +"6028",2011,29109,"MO","29","109",38502,0.976754454314062,1960,0.124616903018025,7.58069975222456,8.46505743699571,9.27565983809682,8.49230769230769,404.287326062429,86,21272,0,0,0,0,9 +"6029",2011,29111,"MO","29","111",10217,0.956053636096702,845,0.122540863267104,6.73933662735717,7.00669522683704,7.94449216393216,7.08461538461538,363.258951738454,21,5781,0,0,0,0,9 +"6030",2011,29113,"MO","29","113",53051,0.966334282105898,2990,0.115059094079282,8.00302866638473,8.83622857152601,9.66237094923167,10.2615384615385,480.046084424105,150,31247,0,0,0,0,9 +"6031",2011,29115,"MO","29","115",12602,0.98262180606253,568,0.136327567052849,6.34212141872115,7.24494154633701,8.146419323098,12.1076923076923,366.515173728192,25,6821,0,0,0,0,9 +"6032",2011,29117,"MO","29","117",15121,0.960518484227234,867,0.128893591693671,6.76503897678054,7.56268124672188,8.51177855871474,7.70769230769231,493.175822915472,43,8719,0,0,0,0,9 +"6033",2011,29119,"MO","29","119",22897,0.921299733589553,1349,0.119928374896275,7.20711885620776,7.97349996402463,8.77554943448619,8.50769230769231,460.405156537753,60,13032,0,0,0,0,9 +"6034",2011,29121,"MO","29","121",15473,0.961933690945518,726,0.13804692044206,6.5875500148248,7.47363710849621,8.34379173199684,8.43846153846154,417.461832061069,35,8384,0,0,0,0,9 +"6035",2011,29123,"MO","29","123",12257,0.982540589051154,715,0.130211307824101,6.57228254269401,7.24565506759454,8.16507925880507,10.6076923076923,377.577693871624,26,6886,0,0,0,0,9 +"6036",2011,29125,"MO","29","125",9170,0.985714285714286,479,0.137513631406761,6.17170059741091,6.95272864462487,7.84227877911735,8.6,499.519692603266,26,5205,0,0,0,0,9 +"6037",2011,29127,"MO","29","127",28786,0.93069547696797,1901,0.129472660320989,7.55013534248843,8.13827263853019,9.04073758759,7.61538461538461,457.748599650665,76,16603,0,0,0,0,9 +"6038",2011,29131,"MO","29","131",24705,0.979356405585914,1351,0.135357215138636,7.2086003379602,7.99530662029082,8.86418136976543,11.6769230769231,528.392278427505,75,14194,0,0,0,0,9 +"6039",2011,29133,"MO","29","133",14241,0.749385576855558,888,0.125833859981743,6.78897174299217,7.56060116276856,8.21743853773019,9.81538461538462,660.180681028492,57,8634,0,0,0,0,9 +"6040",2011,29135,"MO","29","135",15711,0.94939851059767,916,0.117879192922156,6.82001636467413,7.6511201757027,8.32893404195553,7.8,291.23071944774,27,9271,0,0,0,0,9 +"6041",2011,29137,"MO","29","137",8685,0.956822107081174,401,0.150949913644214,5.99396142730657,6.82328612235569,7.76853330092603,10.0538461538462,432.454695222405,21,4856,0,0,0,0,9 +"6042",2011,29139,"MO","29","139",12206,0.97075208913649,578,0.136490250696379,6.35957386867238,7.20637729147225,8.11402544235676,10.1153846153846,411.40170437849,28,6806,0,0,0,0,9 +"6043",2011,29141,"MO","29","141",20375,0.975754601226994,1004,0.154159509202454,6.91174730025167,7.62217459481762,8.60977237270933,12.8769230769231,729.195150852247,80,10971,0,0,0,0,9 +"6044",2011,29143,"MO","29","143",18758,0.828126665955859,1004,0.13796780040516,6.91174730025167,7.75061473277041,8.62962862074603,9.93846153846154,722.690632817567,78,10793,0,0,0,0,9 +"6045",2011,29145,"MO","29","145",58564,0.932467044600779,3569,0.127467386107506,8.18004072349016,8.84836569494255,9.72328375171318,8.13846153846154,465.017966603255,154,33117,0,0,0,0,9 +"6046",2011,29147,"MO","29","147",23439,0.951661760314007,4542,0.0983830368189769,8.4211227226655,7.63723438878947,8.8071726229167,6.99230769230769,234.658323259617,33,14063,0,0,0,0,9 +"6047",2011,29149,"MO","29","149",11049,0.974929857905693,562,0.151868947416056,6.33150184989369,7.0833878476253,8.01895468315572,10.0076923076923,425.950196592398,26,6104,0,0,0,0,9 +"6048",2011,29151,"MO","29","151",13909,0.991013013156949,883,0.120138040117909,6.78332520060396,7.49164547360513,8.22603842948548,6.3,363.727580584473,29,7973,0,0,0,0,9 +"6049",2011,29153,"MO","29","153",9649,0.986008912840709,408,0.169240335786092,6.01126717440416,6.85118492749374,7.8739783796045,12.1153846153846,669.984686064318,35,5224,0,0,0,0,9 +"6050",2011,29155,"MO","29","155",18187,0.717820421179964,1103,0.122670039038874,7.0057890192535,7.66105638236183,8.57527340249276,11.8692307692308,709.361574582875,71,10009,0,0,0,0,9 +"6051",2011,29157,"MO","29","157",19000,0.982263157894737,1055,0.128368421052632,6.96129604591017,7.74759683869289,8.58746524440157,6.79230769230769,275.355667737494,30,10895,0,0,0,0,9 +"6052",2011,29159,"MO","29","159",42147,0.945452819892282,2782,0.120174626901084,7.93092537248339,8.47135865507244,9.39540815443816,8.42307692307692,438.560198593297,106,24170,0,0,0,0,9 +"6053",2011,29161,"MO","29","161",45260,0.928104286345559,5669,0.113764913831198,8.6427680143243,8.46568934854912,9.45469731968959,8.6,412.179725213517,111,26930,0,0,0,0,9 +"6054",2011,29163,"MO","29","163",18665,0.914010179480311,1175,0.124725421912671,7.06902342657826,7.7484600238997,8.43294163896865,8.48461538461538,379.19826652221,42,11076,0,0,0,0,9 +"6055",2011,29165,"MO","29","165",90912,0.893677402323126,5003,0.129278863076382,8.5177930114882,9.44754460693873,10.2544260746229,7.05384615384615,288.497497907503,162,56153,0,0,0,0,9 +"6056",2011,29167,"MO","29","167",31203,0.973143607986412,2507,0.116238823190078,7.82684209815829,8.14931284363534,9.07303042101158,9.53076923076923,555.266354329342,96,17289,0,0,0,0,9 +"6057",2011,29169,"MO","29","169",53322,0.814223022392258,7893,0.071884025355388,8.9737315697084,8.7227428743294,9.54509685181389,8.88461538461539,349.563818598033,113,32326,0,0,0,0,9 +"6058",2011,29171,"MO","29","171",4977,0.988748241912799,220,0.145469158127386,5.39362754635236,6.25190388316589,7.1777824161952,6.99230769230769,455.580865603645,12,2634,0,0,0,0,9 +"6059",2011,29173,"MO","29","173",10278,0.978497762210547,426,0.155964195368749,6.05443934626937,7.12125245324454,7.98344006300654,7.63846153846154,503.862949277796,30,5954,0,0,0,0,9 +"6060",2011,29175,"MO","29","175",25283,0.921963374599533,1764,0.120673970652217,7.47533923656674,8.10591119798651,8.83389994290864,10.7384615384615,359.453630481668,55,15301,0,0,0,0,9 +"6061",2011,29177,"MO","29","177",23345,0.97224245020347,1237,0.133647461983294,7.12044437239249,7.97177612288063,8.82040406548565,9.43076923076923,443.951165371809,60,13515,0,0,0,0,9 +"6062",2011,29179,"MO","29","179",6565,0.979131759329779,289,0.143640517897944,5.66642668811243,6.59578051396131,7.49220304261874,13.4538461538462,610.60227588121,22,3603,0,0,0,0,9 +"6063",2011,29181,"MO","29","181",14143,0.979212331188574,811,0.129463338754154,6.69826805411541,7.39817409297047,8.29054350077274,12.2153846153846,805.21472392638,63,7824,0,0,0,0,9 +"6064",2011,29183,"MO","29","183",365614,0.923364531992757,21819,0.118753658229718,9.99053642882265,10.816272145081,11.6269057236715,7.01538461538462,245.85821723362,543,220859,0,0,0,0,9 +"6065",2011,29185,"MO","29","185",9694,0.980709717350939,426,0.157623272127089,6.05443934626937,6.92362862813843,7.84502441724148,10.2923076923077,629.29061784897,33,5244,0,0,0,0,9 +"6066",2011,29186,"MO","29","186",18196,0.981589360298967,982,0.14547153220488,6.88959130835447,7.65822752616135,8.54907938027856,9.42307692307692,414.859513482934,44,10606,0,0,0,0,9 +"6067",2011,29187,"MO","29","187",65596,0.943959997560827,4666,0.119229831087261,8.44805745258138,9.06912237006065,9.77922733515544,10.9923076923077,518.031974222332,209,40345,0,0,0,0,9 +"6068",2011,29189,"MO","29","189",1000147,0.715509820056452,59898,0.133779334437838,11.0003983945645,11.6943549573263,12.6474195655261,8.00769230769231,338.237437258311,1996,590118,0,0,0,0,9 +"6069",2011,29195,"MO","29","195",23409,0.91516083557606,1833,0.126916997735914,7.5137092478397,7.85979918056211,8.79905837854645,8.16153846153846,425.945299656255,57,13382,0,0,0,0,9 +"6070",2011,29201,"MO","29","201",39159,0.873107076278761,2373,0.131208662121096,7.77191025643576,8.46884293047519,9.36691667901828,8.98461538461538,532.174375803805,120,22549,0,0,0,0,9 +"6071",2011,29203,"MO","29","203",8414,0.975516995483718,479,0.154385547896363,6.17170059741091,6.80128303447162,7.76302130901852,13.3846153846154,500.730231587732,24,4793,0,0,0,0,9 +"6072",2011,29205,"MO","29","205",6232,0.986521181001284,272,0.137034659820282,5.605802066296,6.44571981938558,7.40671073017764,7.29230769230769,451.6711833785,15,3321,0,0,0,0,9 +"6073",2011,29207,"MO","29","207",29850,0.980670016750419,1765,0.131356783919598,7.4759059693674,8.19007704971905,9.05765528431053,10.2230769230769,565.071516863853,96,16989,0,0,0,0,9 +"6074",2011,29209,"MO","29","209",32130,0.983566760037348,1277,0.178711484593838,7.15226885603254,8.08917567883756,9.10775378320108,12.8615384615385,358.994814519346,63,17549,0,0,0,0,9 +"6075",2011,29213,"MO","29","213",52666,0.964037519462272,3692,0.135248547449968,8.21392359562274,8.71522404191537,9.65573107295667,13.4615384615385,436.244963202238,131,30029,0,0,0,0,9 +"6076",2011,29215,"MO","29","215",25935,0.947792558318874,1535,0.137613263929053,7.3362856600213,7.9672801789422,8.83448260862068,9.92307692307692,474.408659628491,71,14966,0,0,0,0,9 +"6077",2011,29217,"MO","29","217",21090,0.975438596491228,1159,0.134803224276908,7.05531284333975,7.77737360265786,8.69851424787661,7.38461538461539,584.594222833563,68,11632,0,0,0,0,9 +"6078",2011,29219,"MO","29","219",32615,0.962532577035107,1814,0.127518013184118,7.50328963067508,8.23403420769204,9.15175741454389,9.23846153846154,434.437086092715,82,18875,0,0,0,0,9 +"6079",2011,29221,"MO","29","221",25106,0.96630287580658,1491,0.13084521628296,7.30720231476474,8.11162807830774,8.8750074860484,12.4307692307692,608.264462809917,92,15125,0,0,0,0,9 +"6080",2011,29223,"MO","29","223",13424,0.985473778307509,686,0.148688915375447,6.53087762772588,7.29233717617388,8.2380082492184,10.3307692307692,550.631211388665,41,7446,0,0,0,0,9 +"6081",2011,29225,"MO","29","225",36451,0.975583660256234,2007,0.119201119310856,7.60439634879634,8.46779284112111,9.22217012372976,9.1,387.296669248644,80,20656,0,0,0,0,9 +"6082",2011,29229,"MO","29","229",18569,0.982443858042975,1017,0.130432441165383,6.92461239604856,7.61579107203583,8.5434455625603,10.0230769230769,618.7997249779,63,10181,0,0,0,0,9 +"6083",2011,29510,"MO","29","510",319417,0.459941080155408,27719,0.115892391450674,10.229873377617,10.5966097327836,11.5741616644408,10.4923076923077,517.787731293887,1067,206069,0,0,0,0,9 +"6084",2011,28001,"MS","28","001",32436,0.452028610186213,1889,0.143205080774448,7.54380286750151,8.26873183211774,9.13129716463573,10.5615384615385,678.780284043442,130,19152,0,0,0,0,9 +"6085",2011,28003,"MS","28","003",37292,0.871634666952698,2163,0.127185455325539,7.67925142595306,8.49167023418515,9.2881343994162,10.6076923076923,596.188151347291,127,21302,0,0,0,0,9 +"6086",2011,28005,"MS","28","005",13141,0.579788448367704,705,0.153945666235446,6.55819780281227,7.22037383672395,8.23695004806146,11.1846153846154,388.167581314416,29,7471,0,0,0,0,9 +"6087",2011,28007,"MS","28","007",19386,0.57257814917982,1111,0.129732796863716,7.01301578963963,7.71957398925958,8.62586820804189,10.9307692307692,490.843873890882,52,10594,0,0,0,0,9 +"6088",2011,28009,"MS","28","009",8720,0.62144495412844,498,0.12454128440367,6.21060007702465,6.99759598298193,7.85127199710988,12.0769230769231,494.657696873763,25,5054,0,0,0,0,9 +"6089",2011,28011,"MS","28","011",33807,0.343390422101932,3033,0.126364362410152,8.01730750768858,8.24117615049496,9.27105910701089,10.9,789.301694233573,157,19891,0,0,0,0,9 +"6090",2011,28013,"MS","28","013",14903,0.711467489767161,869,0.13212104945313,6.76734312526539,7.55642796944025,8.37609035043824,8.50769230769231,487.514863258026,41,8410,0,0,0,0,9 +"6091",2011,28015,"MS","28","015",10437,0.660822075308997,598,0.15349238286864,6.39359075395063,7.1074254741107,8.00269416228394,11.8923076923077,608.552631578947,37,6080,0,0,0,0,9 +"6092",2011,28017,"MS","28","017",17497,0.560267474424187,1155,0.125735840429788,7.05185562295589,7.64204440287326,8.53503310954457,11.1615384615385,618.620476337767,60,9699,0,0,0,0,9 +"6093",2011,28019,"MS","28","019",8449,0.693454846727423,457,0.142502071251036,6.1246833908942,6.86380339145295,7.79893331004122,9.97692307692308,443.131462333826,21,4739,0,0,0,0,9 +"6094",2011,28021,"MS","28","021",9779,0.134676347274772,1237,0.131199509152265,7.12044437239249,6.8627579130514,8.0106915391303,15.6,556.752873563218,31,5568,0,0,0,0,9 +"6095",2011,28023,"MS","28","023",16692,0.645938173975557,943,0.139468008626887,6.84906628263346,7.60837447438078,8.51077262361331,11.5307692307692,560.312929485146,53,9459,0,0,0,0,9 +"6096",2011,28025,"MS","28","025",20504,0.405774483027702,1330,0.134266484588373,7.1929342212158,7.76514490293613,8.73697108525415,14.5769230769231,571.81872492959,67,11717,0,0,0,0,9 +"6097",2011,28027,"MS","28","027",25861,0.235257723985925,1952,0.115540775685395,7.57660976697304,7.94413749111411,8.9736048671425,13.5538461538462,757.682054160236,108,14254,0,0,0,0,9 +"6098",2011,28029,"MS","28","029",29280,0.477629781420765,2158,0.129918032786885,7.67693714581808,8.07402621612406,9.06554578707295,11.2769230769231,633.251687675488,106,16739,0,0,0,0,9 +"6099",2011,28031,"MS","28","031",19488,0.635929802955665,1241,0.120689655172414,7.12367278520461,7.75790620835175,8.64153246567185,9.15384615384615,610.979390844428,67,10966,0,0,0,0,9 +"6100",2011,28033,"MS","28","033",164133,0.749745633114608,9360,0.107437261245453,9.14420056947164,10.1311010985218,10.8282225311929,7.01538461538462,379.184906591035,369,97314,0,0,0,0,9 +"6101",2011,28035,"MS","28","035",75796,0.614082537337063,9011,0.100783682516228,9.10620133223504,9.06392635352065,10.071076109728,9.87692307692308,443.425076452599,203,45780,0,0,0,0,9 +"6102",2011,28037,"MS","28","037",7981,0.648164390427265,405,0.143591028693146,6.00388706710654,6.84374994900622,7.72885582385254,10.5692307692308,508.062734702894,23,4527,0,0,0,0,9 +"6103",2011,28039,"MS","28","039",22860,0.909886264216973,1491,0.114610673665792,7.30720231476474,8.02092771898158,8.76045304631527,11.8846153846154,576.456310679612,76,13184,0,0,0,0,9 +"6104",2011,28041,"MS","28","041",14319,0.728612333263496,1030,0.112228507577345,6.93731408122368,7.69028602067677,8.09803475617607,11.8230769230769,398.492191707054,37,9285,0,0,0,0,9 +"6105",2011,28043,"MS","28","043",21609,0.572307834698505,1329,0.13101022722014,7.19218205871325,7.8995244720322,8.79618763547045,10.0076923076923,628.019323671498,78,12420,0,0,0,0,9 +"6106",2011,28045,"MS","28","045",44767,0.902517479393303,2581,0.138695914401233,7.85593219971861,8.61068353450358,9.49160187662504,9.27692307692308,552.274296233796,144,26074,0,0,0,0,9 +"6107",2011,28047,"MS","28","047",191130,0.724009836237116,14692,0.117590121906556,9.59505840693956,10.0733147117484,10.9726367010536,8.70769230769231,490.1327406948,569,116091,0,0,0,0,9 +"6108",2011,28049,"MS","28","049",248221,0.285201493830095,21128,0.113995189770406,9.95835445397697,10.300214594701,11.2786072085625,9.30769230769231,475.371426249712,702,147674,0,0,0,0,9 +"6109",2011,28051,"MS","28","051",19081,0.164404381321734,1550,0.109690267805671,7.34601020991329,7.6231530684769,8.62730241409627,17.5153846153846,563.018569735283,57,10124,0,0,0,0,9 +"6110",2011,28053,"MS","28","053",9316,0.240875912408759,637,0.115714899098325,6.45676965557216,6.92165818415113,7.92948652331429,18.1307692307692,484.308407593956,25,5162,0,0,0,0,9 +"6111",2011,28057,"MS","28","057",23271,0.931502728718147,1666,0.121610588285849,7.41818082272679,8.03008409426756,8.81150325015824,9.76153846153846,473.9336492891,63,13293,0,0,0,0,9 +"6112",2011,28059,"MS","28","059",140058,0.747340387553728,8895,0.123013323051879,9.09324460009994,9.82124659715222,10.6526369232114,10.1538461538462,460.001437504492,384,83478,0,0,0,0,9 +"6113",2011,28061,"MS","28","061",16857,0.463783591386368,984,0.140950347036839,6.89162589705225,7.58273848891441,8.50694081495189,11.2384615384615,577.42782152231,55,9525,0,0,0,0,9 +"6114",2011,28063,"MS","28","063",7599,0.136860113172786,576,0.130280300039479,6.35610766069589,6.76503897678054,7.72797554210556,18.2076923076923,670.995670995671,31,4620,0,0,0,0,9 +"6115",2011,28065,"MS","28","065",12163,0.396119378442818,745,0.14313902820028,6.61338421837956,7.2841348061952,8.20794694104862,13.6076923076923,752.532561505065,52,6910,0,0,0,0,9 +"6116",2011,28067,"MS","28","067",67945,0.699889616601663,4604,0.123320332621974,8.43468076984177,8.99255742690407,9.89085813613599,8.36923076923077,492.661662668627,191,38769,0,0,0,0,9 +"6117",2011,28069,"MS","28","069",10292,0.355033035367276,713,0.13291877186164,6.5694814204143,7.12205988162914,7.97762509878459,13.9615384615385,432.750562575731,25,5777,0,0,0,0,9 +"6118",2011,28071,"MS","28","071",48428,0.726769637399851,8780,0.0962872718262162,9.08023168662916,8.53601494565683,9.6441337520712,8.41538461538462,262.295081967213,80,30500,0,0,0,0,9 +"6119",2011,28073,"MS","28","073",57390,0.78226171806935,4632,0.104826624847534,8.44074401925283,8.95480275285097,9.80029135970768,6.97692307692308,348.523133222968,120,34431,0,0,0,0,9 +"6120",2011,28075,"MS","28","075",80663,0.55343837943047,5693,0.124307303224527,8.64699262895108,9.20140053040671,10.085642428773,9.99230769230769,440.594588814031,206,46755,0,0,0,0,9 +"6121",2011,28077,"MS","28","077",12748,0.680498901788516,703,0.136256667712582,6.55535689181067,7.30988148582479,8.20576472523446,11.3615384615385,534.173400903986,39,7301,0,0,0,0,9 +"6122",2011,28079,"MS","28","079",23251,0.515891789600447,1460,0.115521913035998,7.28619171470238,7.92226105835325,8.76467807411661,9.48461538461538,484.511517077045,61,12590,0,0,0,0,9 +"6123",2011,28081,"MS","28","081",84032,0.707563785224676,5017,0.115729722010663,8.52058742448425,9.32125543254734,10.1496833473805,9.43846153846154,504.088030982972,246,48801,0,0,0,0,9 +"6124",2011,28083,"MS","28","083",32073,0.261123063012503,2742,0.112649268855424,7.91644286012226,8.18507147753228,9.15978364835903,14.5692307692308,634.71219085139,116,18276,0,0,0,0,9 +"6125",2011,28085,"MS","28","085",34870,0.687381703470032,2018,0.129767708632062,7.60986220091355,8.37655086161377,9.24493501674068,9.52307692307692,536.152728365987,107,19957,0,0,0,0,9 +"6126",2011,28087,"MS","28","087",59626,0.549491832422098,4800,0.121909905074967,8.47637119689598,8.87178596915065,9.82216903135854,10.2769230769231,543.462796983924,191,35145,0,0,0,0,9 +"6127",2011,28089,"MS","28","089",96977,0.58442723532384,5717,0.121338049228168,8.65119947126397,9.4834162920386,10.3339704236196,6.71538461538462,407.006697578568,237,58230,0,0,0,0,9 +"6128",2011,28091,"MS","28","091",26669,0.670028872473659,1631,0.127413851288012,7.39694860262101,8.08332860878638,8.96839619119826,10.4461538461538,696.886804741435,107,15354,0,0,0,0,9 +"6129",2011,28093,"MS","28","093",36771,0.515025427646787,2581,0.137282097304941,7.85593219971861,8.42792472365806,9.3058323534354,11.4307692307692,645.595158036315,144,22305,0,0,0,0,9 +"6130",2011,28095,"MS","28","095",36601,0.68473538974345,2285,0.131881642578072,7.7341213033283,8.42879904065364,9.29651806821724,11.7692307692308,550.807217473884,116,21060,0,0,0,0,9 +"6131",2011,28097,"MS","28","097",10771,0.537554544610528,634,0.137034630025067,6.45204895443723,7.07072410726028,8.06526520889773,12.1384615384615,808.44745091569,49,6061,0,0,0,0,9 +"6132",2011,28099,"MS","28","099",29758,0.615195913703878,1825,0.123966664426373,7.50933526601659,8.16365617616843,9.05415428878685,9.08461538461538,629.730547986679,104,16515,0,0,0,0,9 +"6133",2011,28101,"MS","28","101",21424,0.642176997759522,1381,0.122759522031367,7.23056315340929,7.9168074909376,8.7371316117815,9.01538461538462,569.466543840549,68,11941,0,0,0,0,9 +"6134",2011,28103,"MS","28","103",11295,0.27808764940239,786,0.124037184594954,6.66695679242921,7.16394668434255,8.11102783819368,14.2384615384615,511.786600496278,33,6448,0,0,0,0,9 +"6135",2011,28105,"MS","28","105",47776,0.595780308104488,11449,0.0870939383791025,9.34565766892381,8.3240937614504,9.63135069141981,9.37692307692308,232.640796148502,72,30949,0,0,0,0,9 +"6136",2011,28107,"MS","28","107",34480,0.497998839907193,2279,0.124303944315545,7.73149202924568,8.33973976601914,9.25071426611446,12.9076923076923,742.124394184168,147,19808,0,0,0,0,9 +"6137",2011,28109,"MS","28","109",55441,0.858570372107285,3544,0.136108656048773,8.17301131172497,8.82761475083751,9.69393867348769,9.11538461538461,600.124378109453,193,32160,0,0,0,0,9 +"6138",2011,28111,"MS","28","111",12155,0.789304812834225,733,0.133854380913204,6.59714570188665,7.32974968904151,8.19891444498699,12.9538461538462,538.625088589653,38,7055,0,0,0,0,9 +"6139",2011,28113,"MS","28","113",40436,0.46406667326145,2448,0.128202591749926,7.80302664363222,8.45659356928731,9.38496572213567,11.3,714.063955293387,161,22547,0,0,0,0,9 +"6140",2011,28115,"MS","28","115",29782,0.8428245248808,1832,0.117084144785441,7.51316354523408,8.24064886337491,9.06323150693797,9.11538461538461,506.096158270071,88,17388,0,0,0,0,9 +"6141",2011,28117,"MS","28","117",25368,0.850323241879533,2045,0.121728161463261,7.6231530684769,8.03138533062553,8.8989119057944,10.1615384615385,472.861842105263,69,14592,0,0,0,0,9 +"6142",2011,28119,"MS","28","119",8050,0.290931677018634,578,0.127453416149068,6.35957386867238,6.87729607149743,7.78572089653462,14.5538461538462,856.954515491101,39,4551,0,0,0,0,9 +"6143",2011,28121,"MS","28","121",144209,0.788757983204932,8338,0.119181188414038,9.02857865844074,9.95413313720502,10.7265659026881,6.23076923076923,405.727923627685,357,87990,0,0,0,0,9 +"6144",2011,28123,"MS","28","123",28386,0.595716198125837,1972,0.118685267385331,7.58680353516258,8.19007704971905,9.02917814290207,8.26923076923077,516.937298546494,85,16443,0,0,0,0,9 +"6145",2011,28125,"MS","28","125",4877,0.278654910805823,315,0.147016608570843,5.75257263882563,6.26720054854136,7.32974968904151,14.2615384615385,817.051509769094,23,2815,0,0,0,0,9 +"6146",2011,28127,"MS","28","127",27407,0.637610829350166,1695,0.132666836939468,7.43543801981455,8.09132127353041,9.00208543315572,8.93076923076923,595.504898508036,93,15617,0,0,0,0,9 +"6147",2011,28129,"MS","28","129",16523,0.762210252375477,1010,0.131574169339708,6.9177056098353,7.62705741701893,8.46463594067756,7.99230769230769,525.581894240051,49,9323,0,0,0,0,9 +"6148",2011,28131,"MS","28","131",17900,0.794078212290503,1384,0.12608938547486,7.23273313617761,7.69120009752286,8.55602921520144,10.5076923076923,563.67631604089,59,10467,0,0,0,0,9 +"6149",2011,28133,"MS","28","133",28519,0.258915109225429,2385,0.113047442056173,7.77695440332244,8.18423477409482,8.97157543975902,14.7615384615385,609.220636663008,111,18220,0,0,0,0,9 +"6150",2011,28135,"MS","28","135",15329,0.4134646747994,1370,0.112401330810881,7.22256601882217,7.67461749736436,8.27435700675629,11.8538461538462,432.900432900433,42,9702,0,0,0,0,9 +"6151",2011,28137,"MS","28","137",28734,0.682710377949468,2079,0.125913551889747,7.63964228785801,8.14757773620177,9.06589246761031,10.1307692307692,549.31640625,90,16384,0,0,0,0,9 +"6152",2011,28139,"MS","28","139",22038,0.829294854342499,1506,0.123196297304656,7.31721240835984,7.92334821193015,8.76076662424196,11.5692307692308,527.849996060821,67,12693,0,0,0,0,9 +"6153",2011,28141,"MS","28","141",19634,0.964602220637669,1113,0.136548843842314,7.01481435127554,7.80547462527086,8.64047220757641,11.8,782.726045883941,87,11115,0,0,0,0,9 +"6154",2011,28143,"MS","28","143",10589,0.245537822268392,770,0.111814146756068,6.64639051484773,7.16239749735572,8.11701408773731,14.1,783.545543584721,48,6126,0,0,0,0,9 +"6155",2011,28145,"MS","28","145",27305,0.842299945065006,1652,0.12213880241714,7.40974195408092,8.21148291644507,8.97777759874548,9.66923076923077,444.726810673443,70,15740,0,0,0,0,9 +"6156",2011,28147,"MS","28","147",15372,0.543390580275826,898,0.132903981264637,6.8001700683022,7.48436864328613,8.38206051742474,11.8,536.193029490617,46,8579,0,0,0,0,9 +"6157",2011,28149,"MS","28","149",48325,0.513212622866011,2792,0.136182100362131,7.93451346388226,8.67094379122216,9.61018974129871,9.90769230769231,634.227123779994,180,28381,0,0,0,0,9 +"6158",2011,28151,"MS","28","151",50465,0.273694639849401,3372,0.13012979292579,8.12326131912175,8.64541048921699,9.6580983922746,15.1692307692308,720.556857532617,206,28589,0,0,0,0,9 +"6159",2011,28153,"MS","28","153",20629,0.601289446895148,1379,0.123273062193999,7.2291138777933,7.79193595693806,8.72648119644001,11.1692307692308,784.346799359028,93,11857,0,0,0,0,9 +"6160",2011,28155,"MS","28","155",10194,0.791445948597214,556,0.13007651559741,6.32076829425058,7.12205988162914,7.99699040583765,10.1846153846154,685.635927322592,40,5834,0,0,0,0,9 +"6161",2011,28157,"MS","28","157",9582,0.292423293675642,668,0.131287831350449,6.50428817353665,7.00669522683704,7.84698098213879,12.7076923076923,728.196443691787,43,5905,0,0,0,0,9 +"6162",2011,28159,"MS","28","159",19045,0.524389603570491,1090,0.13578367025466,6.99393297522319,7.69621263934641,8.61068353450358,13.0307692307692,616.13144137416,66,10712,0,0,0,0,9 +"6163",2011,28161,"MS","28","161",12518,0.608244128455025,739,0.14331362837514,6.6052979209482,7.3004728142678,8.22121009392507,11.5,688.00898623982,49,7122,0,0,0,0,9 +"6164",2011,28163,"MS","28","163",28275,0.415066312997347,1728,0.10737400530504,7.454719949364,8.28500889544988,8.85523562320697,11.7615384615385,527.970576021831,89,16857,0,0,0,0,9 +"6165",2011,37001,"NC","37","001",152712,0.771910524385772,11054,0.122930745455498,9.31054763239321,9.92201485715001,10.7537880433704,9.62307692307692,381.917381137958,343,89810,0,0,0,0,9 +"6166",2011,37003,"NC","37","003",37029,0.926922142104837,1880,0.138945151097788,7.539027055824,8.55062796750248,9.27171765165109,11.2769230769231,465.053277948347,103,22148,0,0,0,0,9 +"6167",2011,37005,"NC","37","005",11016,0.971132897603486,499,0.162127814088598,6.21260609575152,7.18690102041163,8.03073492409854,12.2538461538462,528.253561709621,33,6247,0,0,0,0,9 +"6168",2011,37007,"NC","37","007",26515,0.484216481237036,1785,0.13256647180841,7.48717369421374,8.17835816560584,8.88627090207201,12.2923076923077,534.135559921414,87,16288,0,0,0,0,9 +"6169",2011,37009,"NC","37","009",26983,0.981951599155024,1283,0.158729570470296,7.15695636461564,8.09985791073758,8.96226355411676,10.9769230769231,499.620541360992,79,15812,0,0,0,0,9 +"6170",2011,37011,"NC","37","011",17771,0.94659839063643,1260,0.138765404310393,7.13886699994552,7.80302664363222,8.43489794868941,11.1230769230769,426.149242905068,47,11029,0,0,0,0,9 +"6171",2011,37013,"NC","37","013",47685,0.721316975988256,2402,0.158813043934151,7.78405700263993,8.62425226370964,9.55598470176581,11.1076923076923,442.510509624604,120,27118,0,0,0,0,9 +"6172",2011,37015,"NC","37","015",20855,0.360728842004315,1308,0.146919204027811,7.17625453201714,7.79028238070348,8.70682132339263,12.0230769230769,507.900677200903,63,12404,0,0,0,0,9 +"6173",2011,37017,"NC","37","017",34877,0.61292542363162,1938,0.152220661180721,7.56941179245071,8.35725915349991,9.26917515769708,13.4,540.777550423853,111,20526,0,0,0,0,9 +"6174",2011,37019,"NC","37","019",110196,0.864033177247813,4813,0.181993901775019,8.47907586930311,9.4136076932856,10.3998287821011,12.2461538461538,465.145714014492,294,63206,0,0,0,0,9 +"6175",2011,37021,"NC","37","021",241226,0.910552759652774,14856,0.141564342152173,9.60615910303254,10.3678188746223,11.2395669849915,7.93846153846154,353.605831109184,522,147622,0,0,0,0,9 +"6176",2011,37023,"NC","37","023",90533,0.877315454033336,5556,0.138049109164614,8.62263370387423,9.36554763627857,10.1819901219706,11.4230769230769,427.599977395596,227,53087,0,0,0,0,9 +"6177",2011,37025,"NC","37","025",181187,0.802507906196361,9621,0.109698819451727,9.17170348836127,10.2591670011338,10.9157246254575,10.4,321.123184347112,344,107124,0,0,0,0,9 +"6178",2011,37027,"NC","37","027",82460,0.932937181663837,4628,0.140722774678632,8.43988008831357,9.36349055146986,10.1078151895927,13.2384615384615,511.180807299092,251,49102,0,0,0,0,9 +"6179",2011,37031,"NC","37","031",67432,0.913928105350575,3475,0.162445129908649,8.15334975799889,8.9743648418466,9.92113098770872,9.70769230769231,454.500298032982,183,40264,0,0,0,0,9 +"6180",2011,37033,"NC","37","033",23453,0.644565727199079,1274,0.158401910203385,7.14991683613211,7.9973268229981,8.8236479491913,11.7846153846154,446.24180727932,64,14342,0,0,0,0,9 +"6181",2011,37035,"NC","37","035",154501,0.865068834505926,8846,0.132102704836862,9.08772065842827,9.9818365189471,10.7470355337636,11.6538461538462,435.370883617397,399,91646,0,0,0,0,9 +"6182",2011,37037,"NC","37","037",64120,0.832735495945103,2787,0.153275109170306,7.93272102748195,9.0300168178449,9.8501922554779,8.08461538461538,367.816091954023,136,36975,0,0,0,0,9 +"6183",2011,37039,"NC","37","039",27185,0.958543314327754,1136,0.173956225859849,7.0352685992811,8.00736706798333,8.9549318600747,11.8307692307692,662.427133015368,100,15096,0,0,0,0,9 +"6184",2011,37041,"NC","37","041",14805,0.637284701114488,714,0.154745018574806,6.57088296233958,7.33823815006559,8.37609035043824,12.1692307692308,433.839479392625,36,8298,0,0,0,0,9 +"6185",2011,37043,"NC","37","043",10684,0.979876450767503,453,0.17849120179708,6.11589212548303,7.04315991598834,8.00969535774292,11.5384615384615,424.664515033124,25,5887,0,0,0,0,9 +"6186",2011,37045,"NC","37","045",97452,0.77313959692977,6264,0.137821696835365,8.74257423767064,9.43867044997769,10.2925183541809,12.3692307692308,510.793128782843,292,57166,0,0,0,0,9 +"6187",2011,37047,"NC","37","047",57710,0.645156818575637,3672,0.13739386588113,8.20849175174038,8.87556669199055,9.71601274050137,13.3923076923077,555.522896949033,189,34022,0,0,0,0,9 +"6188",2011,37049,"NC","37","049",104866,0.736263421890794,10600,0.121021112658059,9.26860928010016,9.31838727605932,10.3143049780709,10.5461538461538,374.53790777612,231,61676,0,0,0,0,9 +"6189",2011,37051,"NC","37","051",330625,0.558790170132325,35352,0.0971009451795841,10.4731102468106,10.5889553217522,11.5362708289652,10.5538461538462,401.957711015158,795,197782,0,0,0,0,9 +"6190",2011,37053,"NC","37","053",23909,0.924547241624493,1205,0.140156426450291,7.09423484592476,8.10772006191053,8.90123035211078,9.07692307692308,497.342962256438,73,14678,0,0,0,0,9 +"6191",2011,37055,"NC","37","055",34161,0.956353736717309,1541,0.165100553262492,7.34018683532012,8.40559101483493,9.27818591887125,13.3923076923077,439.047174217655,94,21410,0,0,0,0,9 +"6192",2011,37057,"NC","37","057",162934,0.883382228386954,8678,0.133029324757264,9.0685463663583,10.0418136820164,10.8024896942727,11.0076923076923,466.010188160655,451,96779,0,0,0,0,9 +"6193",2011,37059,"NC","37","059",41333,0.918273534463988,1825,0.142985024072775,7.50933526601659,8.6285556592697,9.41123831434307,10.5769230769231,385.243499015954,92,23881,0,0,0,0,9 +"6194",2011,37061,"NC","37","061",59215,0.70875622730727,3725,0.128531622055223,8.22282213081366,8.93168411073171,9.76025208444937,9.44615384615385,361.857341361742,125,34544,0,0,0,0,9 +"6195",2011,37063,"NC","37","063",276609,0.537187871688918,22108,0.110347096442994,10.0036948129532,10.5932289399612,11.4333301571984,8.09230769230769,285.719183757436,500,174997,0,0,0,0,9 +"6196",2011,37065,"NC","37","065",56038,0.405742531853385,3635,0.142885185053,8.19836438996762,8.7653024887482,9.78599822374366,15.5076923076923,555.453824085943,182,32766,0,0,0,0,9 +"6197",2011,37067,"NC","37","067",354545,0.688476780098436,24428,0.122638875178045,10.103485294343,10.7478955269367,11.6192115521545,9.82307692307692,387.223978501249,817,210989,0,0,0,0,9 +"6198",2011,37069,"NC","37","069",60945,0.706144884732136,3365,0.134301419312495,8.12118324207883,9.06149227523977,9.81268718820963,10.6384615384615,404.371584699454,148,36600,0,0,0,0,9 +"6199",2011,37071,"NC","37","071",206894,0.818892766344118,12671,0.129515597359034,9.44707119679891,10.3065163619439,11.068729923502,11.8615384615385,471.815247082195,589,124837,0,0,0,0,9 +"6200",2011,37073,"NC","37","073",12043,0.647762185501951,672,0.14066262559163,6.51025834052315,7.3356339819272,8.19753873972118,8.19230769230769,393.922341024198,28,7108,0,0,0,0,9 +"6201",2011,37075,"NC","37","075",8809,0.918946531955954,473,0.150754909751391,6.15909538849193,6.88550967003482,7.83082299513532,18.0846153846154,442.477876106195,22,4972,0,0,0,0,9 +"6202",2011,37077,"NC","37","077",57512,0.656141327027403,3436,0.131363889275282,8.14206328310415,9.04629085996968,9.73085886771307,8.87692307692308,354.147250698975,133,37555,0,0,0,0,9 +"6203",2011,37079,"NC","37","079",21518,0.593084859187657,1397,0.12807881773399,7.24208235925696,8.00101996132365,8.65608519028286,9.60769230769231,401.785714285714,54,13440,0,0,0,0,9 +"6204",2011,37081,"NC","37","081",495022,0.604969072081645,39891,0.118526045307077,10.5939060135248,11.1089792028313,11.9728282520365,10.4461538461538,309.104129246032,931,301193,0,0,0,0,9 +"6205",2011,37083,"NC","37","083",54122,0.410184398211448,3232,0.145135065223015,8.08085641964099,8.75052466911794,9.69393867348769,14.5769230769231,657.476813619616,207,31484,0,0,0,0,9 +"6206",2011,37085,"NC","37","085",119201,0.741881360055704,8323,0.101869950755447,9.0267780457461,9.73174978928182,10.4830460139832,11.3615384615385,331.634831620598,233,70258,0,0,0,0,9 +"6207",2011,37087,"NC","37","087",58731,0.97631574466636,3014,0.151725664470212,8.01102337918644,8.87514731685335,9.75794141390479,10.0769230769231,376.821054505534,127,33703,0,0,0,0,9 +"6208",2011,37089,"NC","37","089",107391,0.944362190500135,4723,0.145840899144249,8.46019946989612,9.471242028893,10.317086160541,8.51538461538462,413.862718707941,246,59440,0,0,0,0,9 +"6209",2011,37091,"NC","37","091",24732,0.366043991589843,1629,0.142042697719554,7.39572160860205,7.97212112892166,8.87877607170755,11.3230769230769,460.44370029301,66,14334,0,0,0,0,9 +"6210",2011,37093,"NC","37","093",49473,0.519232712792836,3370,0.0925353222970105,8.12266802334641,8.82482493917564,9.63049702882734,10.9,433.42404999496,129,29763,0,0,0,0,9 +"6211",2011,37097,"NC","37","097",161077,0.844155279773028,9018,0.122730122860495,9.10697785898103,10.0574096348084,10.7878953835426,11.3846153846154,415.249462679715,398,95846,0,0,0,0,9 +"6212",2011,37099,"NC","37","099",40256,0.863051470588235,5143,0.135781001589825,8.54539184577492,8.35490952835879,9.40730420550701,11.1846153846154,353.851217906517,86,24304,0,0,0,0,9 +"6213",2011,37101,"NC","37","101",172457,0.819757968653056,8963,0.113761691320155,9.10086027135736,10.229259891735,10.8608050579619,9.49230769230769,385.769395627947,396,102652,0,0,0,0,9 +"6214",2011,37103,"NC","37","103",10056,0.657517899761337,635,0.161893396976929,6.45362499889269,6.96602418710611,8.02845516411425,10.6153846153846,553.50553505535,33,5962,0,0,0,0,9 +"6215",2011,37105,"NC","37","105",58537,0.763465842116952,3548,0.122144968139809,8.17413934342947,8.94206869304423,9.75394291525611,12.3153846153846,437.155263466729,149,34084,0,0,0,0,9 +"6216",2011,37107,"NC","37","107",59425,0.570954985275557,3364,0.142078249894825,8.12088602109284,8.83535597112161,9.7853794640558,10.8769230769231,566.913406180237,193,34044,0,0,0,0,9 +"6217",2011,37109,"NC","37","109",78301,0.92952835851394,4193,0.137903730475984,8.34117174717076,9.36039696818286,10.0852256057917,11.1769230769231,414.19502549693,199,48045,0,0,0,0,9 +"6218",2011,37111,"NC","37","111",45056,0.939275568181818,2444,0.143199573863636,7.80139132029149,8.71980745147795,9.48470921536584,12.3461538461538,532.846443343146,143,26837,0,0,0,0,9 +"6219",2011,37113,"NC","37","113",33889,0.968780430228098,1622,0.161497831154652,7.39141523467536,8.14670905220332,9.14569517848265,11.3307692307692,531.857158363182,98,18426,0,0,0,0,9 +"6220",2011,37115,"NC","37","115",20872,0.977050594097355,1418,0.155423533921043,7.25700270709207,7.85438121065236,8.74049672993181,10.2692307692308,348.941004625497,43,12323,0,0,0,0,9 +"6221",2011,37117,"NC","37","117",24186,0.550111634830067,1301,0.161870503597122,7.1708884785125,7.92479591395644,8.9130119224726,12.4615384615385,636.714837601946,89,13978,0,0,0,0,9 +"6222",2011,37119,"NC","37","119",944015,0.612663993686541,63870,0.101640334104861,11.0646050465556,11.9062910009266,12.6410512474101,9.90769230769231,256.863976254352,1530,595646,0,0,0,0,9 +"6223",2011,37121,"NC","37","121",15354,0.97837697017064,764,0.153054578611437,6.63856778916652,7.52833176670725,8.40804774415544,11.8846153846154,462.649514782216,41,8862,0,0,0,0,9 +"6224",2011,37123,"NC","37","123",27700,0.776534296028881,1573,0.143610108303249,7.36073990305828,8.14815643992162,9.00699944795815,11.7769230769231,516.908513420938,83,16057,0,0,0,0,9 +"6225",2011,37125,"NC","37","125",89265,0.838021621016076,3974,0.138957038032824,8.28752842311176,9.26150865855058,10.1338450208685,9.51538461538462,393.070315912069,189,48083,0,0,0,0,9 +"6226",2011,37127,"NC","37","127",95778,0.590605358224227,5784,0.139384827413393,8.6628507638386,9.43204288549399,10.2843525437761,12.4692307692308,497.686807794757,284,57064,0,0,0,0,9 +"6227",2011,37129,"NC","37","129",206006,0.823165344698698,19242,0.126831257342019,9.86485066892121,10.2016272528867,11.0979401834779,9.54615384615385,361.125780497655,465,128764,0,0,0,0,9 +"6228",2011,37131,"NC","37","131",21918,0.401313988502601,1229,0.155762387079113,7.11395610956603,7.77485576666552,8.74400998809674,12.2384615384615,483.014007406215,60,12422,0,0,0,0,9 +"6229",2011,37133,"NC","37","133",185068,0.792114249897335,36346,0.0722112953076707,10.5008394356412,9.7969596891263,10.8309555850004,8.28461538461539,256.165642004099,290,113208,0,0,0,0,9 +"6230",2011,37135,"NC","37","135",134853,0.790497801309574,16703,0.118380755341001,9.72334362298995,9.72937223228927,10.7069454761359,6.51538461538462,234.477475072259,202,86149,0,0,0,0,9 +"6231",2011,37137,"NC","37","137",13242,0.77994260685697,654,0.174822534360369,6.4831073514572,7.24565506759454,8.1961611392829,9.70769230769231,377.899400573365,29,7674,0,0,0,0,9 +"6232",2011,37139,"NC","37","139",40290,0.592330603127327,3434,0.120873665922065,8.14148104145742,8.47135865507244,9.40771473139643,10.3153846153846,406.905055487053,99,24330,0,0,0,0,9 +"6233",2011,37141,"NC","37","141",53180,0.801222264009026,2953,0.141745016923656,7.99057688174392,8.8722067560283,9.65937569478572,11.3461538461538,468.185388845247,149,31825,0,0,0,0,9 +"6234",2011,37143,"NC","37","143",13499,0.738573227646492,656,0.155863397288688,6.48616078894409,7.25770767716004,8.26873183211774,10.9846153846154,438.247011952191,33,7530,0,0,0,0,9 +"6235",2011,37145,"NC","37","145",39525,0.709475015812777,2131,0.143554712207464,7.66434663209862,8.55043452519604,9.39124425768252,11.9307692307692,400.323665942677,94,23481,0,0,0,0,9 +"6236",2011,37147,"NC","37","147",170813,0.619279563030917,23166,0.106648791368338,10.0504409654923,9.93614833477568,10.9497884849078,10.1230769230769,344.934246909183,368,106687,0,0,0,0,9 +"6237",2011,37149,"NC","37","149",20289,0.942234708462714,877,0.170930060623983,6.77650699237218,7.71199650704767,8.65643325850774,9.32307692307692,459.376688884886,51,11102,0,0,0,0,9 +"6238",2011,37151,"NC","37","151",141861,0.914536059946004,8159,0.129732625598297,9.0068768914288,9.90103454637506,10.6496066178622,10.9461538461538,395.80824759475,332,83879,0,0,0,0,9 +"6239",2011,37153,"NC","37","153",46654,0.638123204869893,3113,0.132335919749646,8.04334217044161,8.69332898912311,9.52361708908944,14.6076923076923,587.651963124839,160,27227,0,0,0,0,9 +"6240",2011,37155,"NC","37","155",135168,0.332216205018939,10364,0.120028409090909,9.246093541682,9.75875075606944,10.6139096586403,14.2153846153846,546.101092202184,430,78740,0,0,0,0,9 +"6241",2011,37157,"NC","37","157",93309,0.792013632125518,5104,0.144359065041957,8.53777982502463,9.41865450904439,10.2525586604481,12.2923076923077,538.401777809897,298,55349,0,0,0,0,9 +"6242",2011,37159,"NC","37","159",137819,0.814176564914852,8867,0.131280882897133,9.09009179938001,9.79606936576883,10.6183473000017,12.4461538461538,489.687259583094,401,81889,0,0,0,0,9 +"6243",2011,37161,"NC","37","161",67424,0.883216658756526,3691,0.147084124347413,8.21365270303,9.06797003068446,9.89993123633335,14.5538461538462,580.592357665354,227,39098,0,0,0,0,9 +"6244",2011,37163,"NC","37","163",63515,0.677572227032984,3664,0.128048492482091,8.20631072579402,9.04239498112674,9.8205406317152,9.81538461538462,465.54681331845,171,36731,0,0,0,0,9 +"6245",2011,37165,"NC","37","165",36274,0.474830457076694,2380,0.13836356619066,7.77485576666552,8.42398080969406,9.2753787681554,18.0230769230769,518.358531317495,108,20835,0,0,0,0,9 +"6246",2011,37167,"NC","37","167",60531,0.860302985247229,3874,0.135236490393352,8.26204284396694,8.9743648418466,9.77241028892919,11.7615384615385,400.156704723528,143,35736,0,0,0,0,9 +"6247",2011,37169,"NC","37","169",47128,0.947801731454762,2431,0.146006620268206,7.79605797431612,8.7804801070333,9.5591645793702,10.4230769230769,512.091038406828,144,28120,0,0,0,0,9 +"6248",2011,37171,"NC","37","171",73499,0.944421012530783,4048,0.137457652485068,8.3059782109673,9.20140053040671,9.96857279919206,10.8,458.424430495804,195,42537,0,0,0,0,9 +"6249",2011,37173,"NC","37","173",14005,0.686683327383077,904,0.138950374866119,6.80682936039218,7.41878088275079,8.3228800217699,15.6923076923077,674.325674325674,54,8008,0,0,0,0,9 +"6250",2011,37175,"NC","37","175",32812,0.946574423991223,1845,0.155705229793978,7.52023455647463,8.11342663994365,9.10320049641828,9.40769230769231,359.015272395715,63,17548,0,0,0,0,9 +"6251",2011,37179,"NC","37","179",204916,0.848933221417556,10035,0.104193913603623,9.21383426123044,10.4143931731023,11.0006988602886,9.10769230769231,238.285026202873,281,117926,0,0,0,0,9 +"6252",2011,37181,"NC","37","181",45293,0.47258958337933,2932,0.134192921643521,7.98344006300654,8.64541048921699,9.54007568065896,14.8846153846154,580.724559649258,151,26002,0,0,0,0,9 +"6253",2011,37183,"NC","37","183",928905,0.710356817973851,61837,0.102227891980342,11.0322571697948,11.9093498284262,12.6092083760771,7.83076923076923,209.247825421634,1217,581607,0,0,0,0,9 +"6254",2011,37185,"NC","37","185",20986,0.406747355379777,1246,0.161965119603545,7.1276936993474,7.71912984090673,8.65869275368994,13.9307692307692,445.471044382115,54,12122,0,0,0,0,9 +"6255",2011,37187,"NC","37","187",12904,0.482408555486671,713,0.162275263484191,6.5694814204143,7.23705902612474,8.25997565976828,16.9153846153846,507.68386388584,37,7288,0,0,0,0,9 +"6256",2011,37189,"NC","37","189",51636,0.965740955922225,11704,0.115055387713998,9.36768594269996,8.46294817656384,9.70045295414463,7.87692307692308,268.355193728328,89,33165,0,0,0,0,9 +"6257",2011,37191,"NC","37","191",124055,0.64793035347225,9245,0.121768570392165,9.13183814382123,9.63750173816611,10.5211296315653,9.03846153846154,446.550127974732,328,73452,0,0,0,0,9 +"6258",2011,37193,"NC","37","193",68949,0.945481442805552,3563,0.143323325936562,8.17835816560584,9.09436819572376,9.90538574981921,11.7692307692308,412.033359809372,166,40288,0,0,0,0,9 +"6259",2011,37195,"NC","37","195",81153,0.579522630093773,4981,0.134733158355206,8.51338595307328,9.23756635822977,10.1210958123517,13.8769230769231,454.669838129118,216,47507,0,0,0,0,9 +"6260",2011,37197,"NC","37","197",38344,0.954621322762362,2012,0.135588358022116,7.60688453121963,8.56978564153541,9.32741204356202,10.3307692307692,381.508078994614,85,22280,0,0,0,0,9 +"6261",2011,37199,"NC","37","199",17691,0.977672262732463,855,0.158046464303883,6.75110146893676,7.70616297019958,8.53326337159373,11.3307692307692,455.67112431897,46,10095,0,0,0,0,9 +"6262",2011,38003,"ND","38","003",11115,0.969770580296896,753,0.150607287449393,6.62406522779989,7.01571242048723,8.01466637046494,3.79230769230769,287.402203416893,18,6263,1,0,0,0,9 +"6263",2011,38005,"ND","38","005",6688,0.434061004784689,413,0.113337320574163,6.02344759296103,6.51619307604296,7.42177579364465,5.86923076923077,700.525394045534,24,3426,1,0,0,0,9 +"6264",2011,38015,"ND","38","015",83315,0.938498469663326,6102,0.127972153873852,8.71637186527662,9.20331575703922,10.1385596747156,3.13076923076923,271.477190014361,138,50833,1,0,0,0,9 +"6265",2011,38017,"ND","38","017",153363,0.929970071008001,18973,0.106570685236987,9.85077219486413,9.82962570393767,10.7802887351238,3.15384615384615,199.862024186348,197,98568,1,0,0,0,9 +"6266",2011,38035,"ND","38","035",66651,0.918665886483324,10887,0.10835546353393,9.29532469588118,8.79815271810719,9.91219949313815,3.54615384615385,220.424434283034,94,42645,1,0,0,0,9 +"6267",2011,38053,"ND","38","053",7018,0.774864633798803,433,0.131376460530066,6.07073772800249,6.61204103483309,7.53369370984863,1.74615384615385,617.588932806324,25,4048,1,0,0,0,9 +"6268",2011,38055,"ND","38","055",9082,0.920171768332966,309,0.179145562651398,5.73334127689775,6.84906628263346,7.80057265467065,4.56153846153846,544.853084257638,28,5139,1,0,0,0,9 +"6269",2011,38057,"ND","38","057",8424,0.963675213675214,321,0.167853751187085,5.77144112313002,6.75809450442773,7.78447323573647,5.22307692307692,274.133542196985,14,5107,1,0,0,0,9 +"6270",2011,38059,"ND","38","059",27725,0.945284039675383,1480,0.134752028854824,7.29979736675816,8.11910083763749,9.00785692335828,3.86923076923077,369.60736791081,61,16504,1,0,0,0,9 +"6271",2011,38061,"ND","38","061",8102,0.672549987657369,651,0.130461614416194,6.47850964220857,6.84694313958538,7.63723438878947,2.08461538461538,445.976079464829,22,4933,1,0,0,0,9 +"6272",2011,38067,"ND","38","067",7355,0.967912984364378,282,0.16519374575119,5.64190707093811,6.56385552653213,7.59287028784482,6.63846153846154,265.700483091787,11,4140,1,0,0,0,9 +"6273",2011,38071,"ND","38","071",11524,0.891530718500521,675,0.140576188823325,6.51471269087253,7.08002649992259,8.0702808933939,3.69230769230769,365.019011406844,24,6575,1,0,0,0,9 +"6274",2011,38077,"ND","38","077",16269,0.957403651115619,1486,0.135656770545209,7.3038432252777,7.38585107812521,8.3959291039232,3.67692307692308,265.336446614307,25,9422,1,0,0,0,9 +"6275",2011,38079,"ND","38","079",14195,0.206762944698838,952,0.10376893272279,6.85856503479136,7.31188616407716,8.26873183211774,10.5769230769231,800.735101076398,61,7618,1,0,0,0,9 +"6276",2011,38085,"ND","38","085",4237,0.130988907245693,320,0.078121312249233,5.76832099579377,6.20657592672493,7.00215595440362,5.2,860.507246376812,19,2208,1,0,0,0,9 +"6277",2011,38089,"ND","38","089",25191,0.960104799333095,2270,0.120955896947322,7.72753511047545,7.85709386490249,8.88086360986736,2.12307692307692,285.202626517212,43,15077,1,0,0,0,9 +"6278",2011,38093,"ND","38","093",21027,0.964902268511913,1485,0.144243115993722,7.3031700512368,7.74370325817375,8.67795057029435,3.66923076923077,335.624101006872,42,12514,1,0,0,0,9 +"6279",2011,38099,"ND","38","099",11024,0.973149492017417,496,0.14994557329463,6.20657592672493,7.01301578963963,7.9820748750812,4.83076923076923,459.619172685489,28,6092,1,0,0,0,9 +"6280",2011,38101,"ND","38","101",64386,0.92037088808126,7060,0.104774329823254,8.86220033048729,8.85836863630802,9.82395721357932,3.06923076923077,251.675697886438,98,38939,1,0,0,0,9 +"6281",2011,38105,"ND","38","105",24417,0.939181717655732,1672,0.125854937133964,7.42177579364465,7.89207842124812,8.80327398250104,1.38461538461538,351.398837680768,52,14798,1,0,0,0,9 +"6282",2011,31001,"NE","31","001",31207,0.96302111705707,2495,0.128496811612779,7.82204400818562,8.11402544235676,9.07004328643746,4.30769230769231,270.224624218882,48,17763,0,0,0,0,9 +"6283",2011,31013,"NE","31","013",11298,0.935563816604709,491,0.161355992211011,6.19644412779452,7.13966033596492,8.07121853996986,4.22307692307692,354.719309068476,23,6484,0,0,0,0,9 +"6284",2011,31019,"NE","31","019",46826,0.967112288045103,5269,0.111775509332422,8.56959587020929,8.53719187792293,9.53978799366043,3.50769230769231,212.812004039821,59,27724,0,0,0,0,9 +"6285",2011,31023,"NE","31","023",8255,0.987643852210781,301,0.140036341611145,5.70711026474888,6.76041469108343,7.67415292128168,3.77692307692308,401.33779264214,18,4485,0,0,0,0,9 +"6286",2011,31025,"NE","31","025",25237,0.984110631216072,1100,0.143519435749099,7.00306545878646,8.05959232888755,8.89178663585731,5.26153846153846,347.506132461161,51,14676,0,0,0,0,9 +"6287",2011,31033,"NE","31","033",9993,0.969478635044531,455,0.132492744921445,6.12029741895095,7.10906213568717,7.96485088744731,3.02307692307692,309.810671256454,18,5810,0,0,0,0,9 +"6288",2011,31037,"NE","31","037",10563,0.9350563286945,653,0.105651803464925,6.48157712927643,7.11720550316434,7.89207842124812,3.88461538461538,225.069252077562,13,5776,0,0,0,0,9 +"6289",2011,31041,"NE","31","041",10905,0.987620357634113,449,0.145988078862907,6.10702288774225,7.07580886397839,7.96935774201635,3.4,374.595607015154,22,5873,0,0,0,0,9 +"6290",2011,31043,"NE","31","043",20810,0.88246035559827,1400,0.108986064392119,7.24422751560335,7.81722278550817,8.66129353538999,5.89230769230769,301.360427070777,35,11614,0,0,0,0,9 +"6291",2011,31045,"NE","31","045",9208,0.91637706342311,1360,0.117615117289314,7.2152399787301,6.69084227741856,7.85941315469358,3.88461538461538,345.290619604834,18,5213,0,0,0,0,9 +"6292",2011,31047,"NE","31","047",24204,0.927945794083623,1372,0.120599900842836,7.22402480828583,7.98173328669189,8.76670599775052,4.98461538461538,248.512689208525,33,13279,0,0,0,0,9 +"6293",2011,31053,"NE","31","053",36928,0.967883448873484,2337,0.123889731369151,7.75662333453886,8.3228800217699,9.22867132866091,4.93076923076923,300.729639124433,61,20284,0,0,0,0,9 +"6294",2011,31055,"NE","31","055",524264,0.828485266964735,37646,0.112136251964659,10.5359819858841,11.1185634883317,11.985762576112,4.91538461538462,323.103808098968,1028,318164,0,0,0,0,9 +"6295",2011,31067,"NE","31","067",21911,0.982018164392314,1073,0.140157911551276,6.9782137426307,7.80261806344267,8.70946507906336,5.78461538461538,408.59687831985,50,12237,0,0,0,0,9 +"6296",2011,31079,"NE","31","079",59508,0.938142770719903,3495,0.117261544666263,8.15908865466791,8.90882979158787,9.72034565935827,4.48461538461538,307.564913940971,104,33814,0,0,0,0,9 +"6297",2011,31081,"NE","31","081",9079,0.990417446855381,343,0.143628152880273,5.83773044716594,6.96129604591017,7.81601383915903,3.79230769230769,217.434275548527,11,5059,0,0,0,0,9 +"6298",2011,31089,"NE","31","089",10443,0.987072680264292,378,0.149478119314373,5.93489419561959,6.91373735065968,7.91425227874244,3.43076923076923,248.491302804402,14,5634,0,0,0,0,9 +"6299",2011,31095,"NE","31","095",7553,0.982920693764067,291,0.158480074142725,5.67332326717149,6.65027904858742,7.60688453121963,4.33846153846154,435.097897026831,18,4137,0,0,0,0,9 +"6300",2011,31101,"NE","31","101",8245,0.979502728926622,309,0.161309884778654,5.73334127689775,6.70441435496411,7.72929567431048,4.09230769230769,372.56191102345,17,4563,0,0,0,0,9 +"6301",2011,31107,"NE","31","107",8575,0.896209912536443,263,0.148221574344023,5.57215403217776,6.69950034016168,7.65302041380419,3.89230769230769,436.179981634527,19,4356,0,0,0,0,9 +"6302",2011,31109,"NE","31","109",289963,0.904311929453068,31679,0.113686918675831,10.3634092797736,10.4553879388738,11.3850352736643,4.00769230769231,248.258009807586,445,179249,0,0,0,0,9 +"6303",2011,31111,"NE","31","111",36035,0.971250173442486,1895,0.140363535451644,7.54697411751653,8.3537326422632,9.23112291115871,4.38461538461539,378.512156063474,78,20607,0,0,0,0,9 +"6304",2011,31119,"NE","31","119",35012,0.954644122015309,2550,0.121158459956586,7.84384863815247,8.21419441485256,9.19573421958682,4.08461538461538,260.821588002207,52,19937,0,0,0,0,9 +"6305",2011,31121,"NE","31","121",7762,0.980417418191188,359,0.139654728162845,5.88332238848828,6.7696419768525,7.64826303090192,4.26153846153846,516.917293233083,22,4256,0,0,0,0,9 +"6306",2011,31131,"NE","31","131",15740,0.980304955527319,706,0.133481575603558,6.55961523749324,7.47420480649612,8.37609035043824,5.07692307692308,217.939894471209,19,8718,0,0,0,0,9 +"6307",2011,31137,"NE","31","137",9141,0.987747511213215,365,0.133355212777595,5.89989735358249,6.91473089271856,7.79276172081653,3.66923076923077,523.138832997988,26,4970,0,0,0,0,9 +"6308",2011,31141,"NE","31","141",32518,0.969647579801956,1756,0.124915431453349,7.47079377419506,8.21419441485256,9.09155683598622,4.18461538461538,252.428250013719,46,18223,0,0,0,0,9 +"6309",2011,31145,"NE","31","145",11051,0.978282508370283,657,0.133743552619672,6.48768401848461,7.03174125876313,7.99867136101578,3.5,246.386333771353,15,6088,0,0,0,0,9 +"6310",2011,31147,"NE","31","147",8341,0.954681692842585,317,0.140750509531231,5.75890177387728,6.74875954749168,7.7066129139642,6.03846153846154,450.856627592426,20,4436,0,0,0,0,9 +"6311",2011,31151,"NE","31","151",14324,0.950781904495951,1131,0.114004468025691,7.03085747611612,7.43425738213314,8.25842246245888,4.71538461538462,211.15389392622,17,8051,0,0,0,0,9 +"6312",2011,31153,"NE","31","153",162597,0.915736452702079,10313,0.101699293344896,9.24116051431607,10.0398524270566,10.8086162197041,4.25384615384615,214.21139604627,210,98034,0,0,0,0,9 +"6313",2011,31155,"NE","31","155",20839,0.984836124574116,866,0.136090983252555,6.76388490856244,7.80994708647679,8.64734387588128,4.59230769230769,332.339156369834,39,11735,0,0,0,0,9 +"6314",2011,31157,"NE","31","157",36965,0.94981739483295,2251,0.13309887731638,7.71912984090673,8.31360713931756,9.26378634768181,5.03076923076923,396.633452645835,82,20674,0,0,0,0,9 +"6315",2011,31159,"NE","31","159",16707,0.984018674806967,1400,0.127371760339977,7.24422751560335,7.49942329059223,8.41803561988302,3.86153846153846,268.154027673496,25,9323,0,0,0,0,9 +"6316",2011,31173,"NE","31","173",6908,0.403300521134916,484,0.10031847133758,6.18208490671663,6.53378883793334,7.44775128004791,10.1615384615385,669.383003492433,23,3436,0,0,0,0,9 +"6317",2011,31177,"NE","31","177",19920,0.984036144578313,860,0.142218875502008,6.75693238924755,7.80180040190897,8.65504025810836,4.35384615384615,299.196443836553,35,11698,0,0,0,0,9 +"6318",2011,31185,"NE","31","185",13787,0.973598317255385,897,0.136287807354754,6.7990558620588,7.25981961036319,8.26539293085222,4.35384615384615,362.506473329881,28,7724,0,0,0,0,9 +"6319",2011,34001,"NJ","34","001",274635,0.728406794472664,18303,0.129947020590966,9.81482025981996,10.4589805677973,11.3440214884936,12.5615384615385,405.924300603401,666,164070,1,0,0,0,9 +"6320",2011,34003,"NJ","34","003",912024,0.770456698507934,47855,0.130442839223529,10.77593088463,11.7525484809282,12.5462700778432,7.70769230769231,221.2449859945,1214,548713,1,0,0,0,9 +"6321",2011,34005,"NJ","34","005",450250,0.763040533037202,27073,0.128504164353137,10.206292200258,11.0054110198633,11.8253830734034,8.73846153846154,304.071629017959,830,272962,1,0,0,0,9 +"6322",2011,34007,"NJ","34","007",512610,0.71830046233979,33405,0.124098242328476,10.4164608683596,11.1197643513182,11.9821350290296,10.8769230769231,403.48310333937,1252,310298,1,0,0,0,9 +"6323",2011,34009,"NJ","34","009",96522,0.930129918567788,5594,0.163071631337933,8.6294498737619,9.18368834097876,10.236955280137,15.2692307692308,452.734516479536,250,55220,1,0,0,0,9 +"6324",2011,34011,"NJ","34","011",157028,0.736454645031459,10905,0.114393611330463,9.29697667863573,9.9876908238182,10.70117491237,12.9923076923077,377.631620354344,360,95331,1,0,0,0,9 +"6325",2011,34013,"NJ","34","013",785576,0.505183457743108,53446,0.112452518916056,10.8864270773572,11.646844282536,12.4210832136142,10.8307692307692,367.372171610214,1759,478806,1,0,0,0,9 +"6326",2011,34015,"NJ","34","015",289703,0.856090547905959,19610,0.125525106747255,9.88379491919039,10.5891316552749,11.4127072604933,10.2,333.170348976041,586,175886,1,0,0,0,9 +"6327",2011,34017,"NJ","34","017",645658,0.678366875342674,47265,0.100029737105403,10.7635253428595,11.5033699561646,12.2715747647579,9.12307692307692,249.758317279671,1067,427213,1,0,0,0,9 +"6328",2011,34019,"NJ","34","019",127348,0.932594151458994,6039,0.151804504193234,8.7059937143079,9.70990280346346,10.5732381552897,6.90769230769231,218.637582783561,172,78669,1,0,0,0,9 +"6329",2011,34021,"NJ","34","021",367407,0.675493390164042,27526,0.120795194430155,10.2228862915395,10.8343121541873,11.6369114447512,8.27692307692308,302.718680858831,680,224631,1,0,0,0,9 +"6330",2011,34023,"NJ","34","023",815253,0.650258263385722,58319,0.116948971668918,10.9736832197591,11.664976799857,12.443880153563,8.77692307692308,246.401759955842,1241,503649,1,0,0,0,9 +"6331",2011,34025,"NJ","34","025",629144,0.861607199623616,33895,0.135843304553489,10.4310227898651,11.3181992880175,12.1652037749113,8.6,298.535064660581,1130,378515,1,0,0,0,9 +"6332",2011,34027,"NJ","34","027",494801,0.862476025715389,23934,0.130525201040418,10.0830553211335,11.1451751289628,11.9176369558469,7.07692307692308,220.937164258025,656,296917,1,0,0,0,9 +"6333",2011,34029,"NJ","34","029",578922,0.940347749783218,31624,0.125925426914161,10.3616716049765,11.075985169527,11.9718239092754,10.4538461538462,375.420132186556,1165,310319,1,0,0,0,9 +"6334",2011,34031,"NJ","34","031",503257,0.771170594745826,36901,0.114343168599741,10.5159939299324,11.1242732251619,11.9459214304614,11,299.740711022103,904,301594,1,0,0,0,9 +"6335",2011,34033,"NJ","34","033",65880,0.829963570127505,3958,0.13879781420765,8.28349412616251,8.99528899055931,9.89686567622724,11.6615384615385,517.736313307361,202,39016,1,0,0,0,9 +"6336",2011,34035,"NJ","34","035",326277,0.743319326829657,14741,0.125745915280574,9.59838800604728,10.7619372847204,11.5178632539999,7.39230769230769,218.483722962639,430,196811,1,0,0,0,9 +"6337",2011,34037,"NJ","34","037",148185,0.954914465026825,7889,0.146715254580423,8.97322466309509,9.90792768056215,10.734503580349,9.26153846153846,332.236770440731,305,91802,1,0,0,0,9 +"6338",2011,34039,"NJ","34","039",539918,0.701100907915646,33049,0.116456573035165,10.405746587636,11.2543878694569,12.0222760013295,9.51538461538462,259.445435381871,848,326851,1,0,0,0,9 +"6339",2011,34041,"NJ","34","041",108154,0.927224143351147,6180,0.133124988442406,8.72907355045174,9.5869257805337,10.409280533774,9.10769230769231,312.979441546487,204,65180,1,0,0,0,9 +"6340",2011,35001,"NM","35","001",670356,0.867506220575336,50306,0.123626849017537,10.8258796332683,11.3410927078904,12.2430360050845,6.90769230769231,357.367062139854,1463,409383,1,0,0,0,9 +"6341",2011,35005,"NM","35","005",65721,0.937097731318757,4388,0.117405395535674,8.38662882139512,8.88364023250367,9.80730699406216,6.48461538461538,449.118500334747,161,35848,1,0,0,0,9 +"6342",2011,35006,"NM","35","006",27492,0.545104030263349,1915,0.123635966826713,7.55747290161475,8.14060704285845,8.9680140012452,9.10769230769231,371.747211895911,61,16409,1,0,0,0,9 +"6343",2011,35007,"NM","35","007",13620,0.957929515418502,660,0.166372980910426,6.49223983502047,7.23056315340929,8.21824792668574,7.85384615384615,403.225806451613,31,7688,1,0,0,0,9 +"6344",2011,35009,"NM","35","009",49836,0.88113010675014,4269,0.096335982021029,8.35913488675796,8.66509582133973,9.54301971035869,4.88461538461538,355.760175787381,102,28671,1,0,0,0,9 +"6345",2011,35013,"NM","35","013",213123,0.935351886000103,20768,0.108899555655654,9.94116861950382,10.0589516551602,11.0338245808985,7.27692307692308,327.609025996307,401,122402,1,0,0,0,9 +"6346",2011,35015,"NM","35","015",54082,0.945009430124626,3378,0.12911874560852,8.12503909736775,8.73182058296211,9.63371088395318,4.86923076923077,504.628439187452,157,31112,1,0,0,0,9 +"6347",2011,35017,"NM","35","017",29350,0.955434412265758,1492,0.167189097103918,7.30787278076371,7.93020620668468,9.01103541014182,6.99230769230769,505.241884552229,80,15834,1,0,0,0,9 +"6348",2011,35025,"NM","35","025",65135,0.927182006601673,4625,0.102924694864512,8.43923164994653,8.97246382105991,9.77832107624323,5.37692307692308,441.905583099806,164,37112,1,0,0,0,9 +"6349",2011,35027,"NM","35","027",20411,0.948851109695752,853,0.189456665523492,6.74875954749168,7.56527528189893,8.70433643848941,6.52307692307692,484.806510258852,56,11551,1,0,0,0,9 +"6350",2011,35028,"NM","35","028",18237,0.906618413116192,529,0.158249712123705,6.2709884318583,7.73236922228439,8.57508466983201,3.39230769230769,269.091583928737,29,10777,1,0,0,0,9 +"6351",2011,35029,"NM","35","029",25106,0.951286545048992,1505,0.121405241774875,7.31654817718298,7.86901937649902,8.77847995250849,19.6461538461538,570.000780822987,73,12807,1,0,0,0,9 +"6352",2011,35031,"NM","35","031",72340,0.1941387890517,5839,0.104050317943047,8.67231482828354,9.04605517766833,9.94960748814968,9.55384615384615,530.615266911819,215,40519,1,0,0,0,9 +"6353",2011,35035,"NM","35","035",65659,0.857734659376475,5434,0.11780563212964,8.60043078998629,8.88875674784872,9.82092082887917,6.55384615384615,449.450084602369,170,37824,1,0,0,0,9 +"6354",2011,35037,"NM","35","037",9044,0.94250331711632,421,0.158005307386112,6.04263283368238,6.80682936039218,7.85205020726589,9.26923076923077,540.973752754959,27,4991,1,0,0,0,9 +"6355",2011,35039,"NM","35","039",40241,0.79217713277503,2461,0.139285803036704,7.80832305039106,8.48632152774915,9.37203396097417,8.90769230769231,641.325122106604,151,23545,1,0,0,0,9 +"6356",2011,35041,"NM","35","041",20429,0.936462871408292,2430,0.0986342943854325,7.79564653633459,7.71423114484909,8.64874763115654,5.51538461538462,353.387347009136,41,11602,1,0,0,0,9 +"6357",2011,35043,"NM","35","043",134347,0.807237973307926,7439,0.13394418930084,8.91449171019134,9.78442244537719,10.6087115143215,7.73846153846154,350.77055553445,277,78969,1,0,0,0,9 +"6358",2011,35045,"NM","35","045",129732,0.589777387229057,8921,0.115769432368267,9.09616332691378,9.61700476065983,10.5280078660499,7.56153846153846,395.715357849492,290,73285,1,0,0,0,9 +"6359",2011,35047,"NM","35","047",29352,0.933633142545653,2109,0.149870536931044,7.65396918047877,8.07184314960916,9.05928489705623,9.14615384615385,575.782249621961,99,17194,1,0,0,0,9 +"6360",2011,35049,"NM","35","049",145876,0.926026214044805,7667,0.16995941758754,8.9446806835589,9.79896002318219,10.7225182047863,5.96923076923077,384.187645334142,342,89019,1,0,0,0,9 +"6361",2011,35051,"NM","35","051",12027,0.956098777750062,482,0.185831878273884,6.1779441140506,6.86066367144829,8.04910772132641,9.50769230769231,931.67701863354,57,6118,1,0,0,0,9 +"6362",2011,35053,"NM","35","053",17777,0.840693030320076,1488,0.132699555605558,7.30518821539304,7.56579328242851,8.51458980554612,7.32307692307692,507.218103784627,52,10252,1,0,0,0,9 +"6363",2011,35055,"NM","35","055",32896,0.895488813229572,1522,0.179322714007782,7.32778053842163,8.25244609024695,9.20743615882879,10.1615384615385,367.947669664759,72,19568,1,0,0,0,9 +"6364",2011,35057,"NM","35","057",16447,0.924180701647717,918,0.158387547881073,6.82219739062049,7.57507169950756,8.43337670532313,11.0769230769231,611.842787514259,59,9643,1,0,0,0,9 +"6365",2011,35061,"NM","35","061",76973,0.914554454159251,4794,0.131539630779624,8.47512041499433,9.14633504200027,10.006630611453,8.63076923076923,461.190588129939,206,44667,1,0,0,0,9 +"6366",2011,32001,"NV","32","001",24607,0.880643719266875,1537,0.131466655829642,7.3375877435386,7.9373746961633,8.85409390765552,12.8076923076923,504.082357117501,71,14085,1,0,0,0,9 +"6367",2011,32003,"NV","32","003",1962162,0.754629332338512,131394,0.11360376971932,11.7859557218896,12.5626730866936,13.2946244972837,13.5230769230769,354.239860299773,4260,1202575,1,0,0,0,9 +"6368",2011,32005,"NV","32","005",46982,0.944531948405772,2110,0.17408794857605,7.65444322647011,8.4898219946201,9.51804563563343,13.5076923076923,334.983436930063,90,26867,1,0,0,0,9 +"6369",2011,32007,"NV","32","007",49463,0.905929684814912,3368,0.11681458868245,8.12207437536222,8.73568594451502,9.54831148472113,7.40769230769231,351.838695490375,104,29559,1,0,0,0,9 +"6370",2011,32013,"NV","32","013",16640,0.92421875,969,0.130709134615385,6.87626461189077,7.65491704784832,8.44548234386224,8,359.138068635275,36,10024,1,0,0,0,9 +"6371",2011,32015,"NV","32","015",5840,0.926883561643836,378,0.126027397260274,5.93489419561959,6.55535689181067,7.40427911803727,9.17692307692308,441.826215022091,15,3395,1,0,0,0,9 +"6372",2011,32019,"NV","32","019",51393,0.926176716673477,2443,0.147996808903936,7.80098207125774,8.7160440501614,9.58754317036638,17.1307692307692,538.624122179041,158,29334,1,0,0,0,9 +"6373",2011,32021,"NV","32","021",4634,0.75507121277514,252,0.176089771255934,5.52942908751142,6.0330862217988,7.20637729147225,14.4230769230769,1147.2275334608,30,2615,1,0,0,0,9 +"6374",2011,32023,"NV","32","023",43981,0.920010913803688,2050,0.165980764421,7.62559507213245,8.372398606513,9.36947859331448,17.0923076923077,694.714131607336,161,23175,1,0,0,0,9 +"6375",2011,32031,"NV","32","031",424066,0.878250083713384,32634,0.130548075063787,10.393109968651,10.9070746207951,11.7648974547879,12.8384615384615,369.419549056013,967,261762,1,0,0,0,9 +"6376",2011,32033,"NV","32","033",10129,0.891499654457498,621,0.137427189258565,6.43133108193348,7.14834574390007,7.78155595923534,8.90769230769231,530.973451327434,33,6215,1,0,0,0,9 +"6377",2011,32510,"NV","32","510",54687,0.916342092270558,3404,0.140453855578108,8.13270648969326,8.80086724247048,9.62172128051365,13.4692307692308,442.236626885564,146,33014,1,0,0,0,9 +"6378",2011,36001,"NY","36","001",304627,0.800313169876603,28765,0.132000774717934,10.2669146492974,10.4846691183861,11.4741014731126,6.97692307692308,290.171822035022,547,188509,1,0,0,0,9 +"6379",2011,36003,"NY","36","003",48808,0.97041468611703,4654,0.133748565808884,8.44548234386224,8.54090971803355,9.52551600873689,9,354.736992976924,99,27908,1,0,0,0,9 +"6380",2011,36005,"NY","36","005",1396954,0.461262146069233,117981,0.0988787032357544,11.678278873534,12.1205637755749,13.007623456773,11.9769230769231,362.032982278359,3001,828930,1,0,0,0,9 +"6381",2011,36007,"NY","36","007",199367,0.898077415018534,18345,0.131526280678347,9.81711233678938,9.9647237520067,10.9865631020551,8.64615384615385,364.444369629075,433,118811,1,0,0,0,9 +"6382",2011,36009,"NY","36","009",79820,0.93951390628915,5281,0.142257579553996,8.57187075270693,9.11283779061494,10.052984563682,9.41538461538462,410.620230033323,191,46515,1,0,0,0,9 +"6383",2011,36011,"NY","36","011",79707,0.939666528661222,4976,0.138896207359454,8.51238163441901,9.19542975924043,10.0354364436654,8.16923076923077,342.953949135384,166,48403,1,0,0,0,9 +"6384",2011,36013,"NY","36","013",134227,0.952990083962243,10218,0.139010780245405,9.23190614989074,9.62085935438703,10.5675148345222,8.24615384615385,376.995576072322,294,77985,1,0,0,0,9 +"6385",2011,36015,"NY","36","015",88916,0.903189527194206,5795,0.136308425930091,8.66475075577385,9.28089202792713,10.1600658799366,7.9,351.414158589809,186,52929,1,0,0,0,9 +"6386",2011,36017,"NY","36","017",50196,0.979719499561718,2696,0.144473663240099,7.8995244720322,8.68693596600333,9.5819728915479,8.74615384615385,352.281277789178,103,29238,1,0,0,0,9 +"6387",2011,36019,"NY","36","019",81735,0.93678350767725,7717,0.12782773597602,8.9511809664576,9.22286165252985,10.0983962248356,9.65384615384615,288.090345132233,150,52067,1,0,0,0,9 +"6388",2011,36021,"NY","36","021",62532,0.922727563487494,3388,0.161421352267639,8.12799505577195,8.91112538371068,9.82037764581312,7.18461538461538,325.873259540546,121,37131,1,0,0,0,9 +"6389",2011,36023,"NY","36","023",49382,0.963367218824673,5924,0.123202786440403,8.68676717538769,8.59858882962023,9.61226588978581,8.49230769230769,347.222222222222,103,29664,1,0,0,0,9 +"6390",2011,36025,"NY","36","025",47584,0.966165097511769,2957,0.158162407531944,7.99193051985248,8.5131851700187,9.49852231946961,8.73076923076923,368.990074167005,100,27101,1,0,0,0,9 +"6391",2011,36027,"NY","36","027",298141,0.840682764195465,22093,0.130263868438088,10.003016095251,10.546997960655,11.4035569279149,7.56923076923077,284.914442843181,516,181107,1,0,0,0,9 +"6392",2011,36029,"NY","36","029",919901,0.819305555706538,70281,0.132230533503062,11.1602567709989,11.5940537370516,12.5469921213644,8.04615384615385,356.944094469633,1969,551627,1,0,0,0,9 +"6393",2011,36031,"NY","36","031",39277,0.954324413779056,2110,0.153575884105202,7.65444322647011,8.47699600166482,9.30373963623473,9.17692307692308,336.742854737551,80,23757,1,0,0,0,9 +"6394",2011,36033,"NY","36","033",51544,0.851621915256868,3868,0.127269905323607,8.26049285657318,8.79346036105272,9.52288577415265,9.16923076923077,387.51345532831,126,32515,1,0,0,0,9 +"6395",2011,36035,"NY","36","035",55116,0.967432324551854,3183,0.140177081065389,8.06557942728209,8.8446246833853,9.69959500581403,10.6692307692308,374.782900149304,123,32819,1,0,0,0,9 +"6396",2011,36037,"NY","36","037",59894,0.945103015327078,3894,0.13225030887902,8.26719218593215,8.89932143415996,9.76869822618749,7.86923076923077,358.011915084049,128,35753,1,0,0,0,9 +"6397",2011,36039,"NY","36","039",48858,0.920135904048467,3283,0.150927176716198,8.09651291750159,8.69316127423802,9.53365499705667,9.49230769230769,425.460070910012,126,29615,1,0,0,0,9 +"6398",2011,36043,"NY","36","043",64388,0.976501832639622,4026,0.142728458719016,8.30052860619974,8.91931939825889,9.83948222256022,8.77692307692308,306.732102848608,115,37492,1,0,0,0,9 +"6399",2011,36045,"NY","36","045",117809,0.910499197854154,11681,0.101630605471568,9.3657188691557,9.54895317309651,10.4277721959863,9.82307692307692,308.899649357155,222,71868,1,0,0,0,9 +"6400",2011,36047,"NY","36","047",2540918,0.501874519366623,198728,0.108543054124533,12.1996923345659,12.7548441317109,13.6383341422022,9.60769230769231,281.287545339111,4446,1580589,1,0,0,0,9 +"6401",2011,36049,"NY","36","049",27021,0.982532104659339,1558,0.133932867029348,7.35115822643069,8.0624327915832,8.94193791425636,9.71538461538461,291.065553024551,46,15804,1,0,0,0,9 +"6402",2011,36051,"NY","36","051",64834,0.952370669710337,6409,0.134636147700281,8.76545853150423,8.91704256073877,9.86703101552551,7.67692307692308,306.455664405928,122,39810,1,0,0,0,9 +"6403",2011,36053,"NY","36","053",72898,0.96084940601937,6152,0.134722488957173,8.72453251118548,9.03073512267646,9.99039892452542,8.22307692307692,275.115777889862,120,43618,1,0,0,0,9 +"6404",2011,36055,"NY","36","055",746821,0.791726531524957,58897,0.127350462828442,10.9835454345564,11.4052066150714,12.3515227275482,7.73846153846154,306.411272018443,1377,449396,1,0,0,0,9 +"6405",2011,36057,"NY","36","057",49919,0.956369318295639,3022,0.139425869909253,8.01367414283268,8.69316127423802,9.58850279755634,10.3076923076923,300.414364640884,87,28960,1,0,0,0,9 +"6406",2011,36059,"NY","36","059",1346207,0.784839924320702,80961,0.132717330989959,11.3017228362237,12.0578278250662,12.9151596100474,6.89230769230769,235.128528970072,1871,795735,1,0,0,0,9 +"6407",2011,36061,"NY","36","061",1608717,0.666743746724875,132515,0.113616627411782,11.7944511255481,12.3735977730814,13.27549982879,7.86923076923077,211.912189506693,2349,1108478,1,0,0,0,9 +"6408",2011,36063,"NY","36","063",215726,0.90010939803269,14587,0.140567200986436,9.58788600008621,10.1547130879773,11.094922080164,9.21538461538461,393.152529332564,511,129975,1,0,0,0,9 +"6409",2011,36065,"NY","36","065",234226,0.89052453613177,16311,0.132414847198859,9.69959500581403,10.240352569152,11.1191715127901,8.05384615384615,327.194811211489,452,138144,1,0,0,0,9 +"6410",2011,36067,"NY","36","067",467679,0.830302408275762,35670,0.127666626040511,10.4820652783529,10.9230746712191,11.8731770052561,7.76923076923077,299.992840266342,838,279340,1,0,0,0,9 +"6411",2011,36069,"NY","36","069",108616,0.955006628857627,6811,0.146267584886205,8.82629423124132,9.48782058194337,10.3926502196659,7.13846153846154,328.07786796032,211,64314,1,0,0,0,9 +"6412",2011,36071,"NY","36","071",374171,0.840679796135991,25649,0.116850317101005,10.1522598634842,10.8236507766242,11.6001118266491,7.76923076923077,281.200818203671,620,220483,1,0,0,0,9 +"6413",2011,36073,"NY","36","073",42653,0.919513281598012,2793,0.136637516704569,7.93487156594518,8.58597270681106,9.47577683548064,9.29230769230769,323.77428307123,84,25944,1,0,0,0,9 +"6414",2011,36075,"NY","36","075",121987,0.975694131341864,10159,0.129440022297458,9.22611529109155,9.60629371971175,10.5077761966118,10.8461538461538,318.393999082594,236,74122,1,0,0,0,9 +"6415",2011,36077,"NY","36","077",61979,0.959486277610158,6758,0.141644750641346,8.81848226727424,8.7653024887482,9.83263581156418,7.80769230769231,333.387987101711,122,36594,1,0,0,0,9 +"6416",2011,36079,"NY","36","079",99805,0.942718300686338,5255,0.139812634637543,8.56693528331105,9.53560720475524,10.3278071261588,7.09230769230769,248.368559462355,153,61602,1,0,0,0,9 +"6417",2011,36081,"NY","36","081",2255261,0.510779461889333,163049,0.117726507042866,12.0018060481106,12.6932621234482,13.5101681219299,8.11538461538461,224.783917618982,3242,1442274,1,0,0,0,9 +"6418",2011,36083,"NY","36","083",159606,0.894640552360187,12821,0.135377116148516,9.4588397305527,9.89060492670511,10.8116856270128,7.64615384615385,312.996971323805,309,98723,1,0,0,0,9 +"6419",2011,36085,"NY","36","085",471014,0.788624117329846,32591,0.128930350265597,10.3917914556198,11.070661508625,11.9084210420409,9.22307692307692,296.042972865606,857,289485,1,0,0,0,9 +"6420",2011,36087,"NY","36","087",315448,0.793049884608557,19826,0.119309680200857,9.89474948659284,10.5283826585798,11.3933758698661,7.20769230769231,227.996361155333,401,175880,1,0,0,0,9 +"6421",2011,36089,"NY","36","089",112290,0.950360673256746,11226,0.127037135987176,9.32598779550214,9.46242117318499,10.379038268211,10.4461538461538,316.564380534277,212,66969,1,0,0,0,9 +"6422",2011,36091,"NY","36","091",221136,0.956560668547862,12337,0.137928695463425,9.42035815607147,10.3334176050438,11.1309620166472,6.69230769230769,242.537726042949,329,135649,1,0,0,0,9 +"6423",2011,36093,"NY","36","093",154882,0.828676024328198,10310,0.129362998928216,9.24086957701101,9.87230643505255,10.7632502600684,7.56153846153846,322.827929474514,299,92619,1,0,0,0,9 +"6424",2011,36095,"NY","36","095",32619,0.9713357245777,2340,0.152395842913639,7.75790620835175,8.24407127029579,9.16993495734114,9.03076923076923,327.952856776838,64,19515,1,0,0,0,9 +"6425",2011,36097,"NY","36","097",18421,0.978502795722273,1046,0.155909016882905,6.95272864462487,7.71333788887187,8.60940767540405,8.9,316.198391905321,35,11069,1,0,0,0,9 +"6426",2011,36099,"NY","36","099",35325,0.934267515923567,2508,0.141288039631989,7.82724090175281,8.3513747067213,9.191972714618,7.98461538461538,283.365076415664,61,21527,1,0,0,0,9 +"6427",2011,36101,"NY","36","101",99117,0.963053764742678,5569,0.141196767456642,8.62497078358967,9.3803362790795,10.2696226081804,9.18461538461538,366.950349722634,213,58046,1,0,0,0,9 +"6428",2011,36103,"NY","36","103",1498910,0.868667898673036,93916,0.12367120107278,11.4501560447171,12.2304042173434,13.0221849669711,7.66153846153846,274.768941772771,2472,899665,1,0,0,0,9 +"6429",2011,36105,"NY","36","105",77061,0.86933727826008,4641,0.143860058914367,8.44268513924118,9.14537509312382,10.0164143713913,8.93846153846154,480.207657365347,222,46230,1,0,0,0,9 +"6430",2011,36107,"NY","36","107",50889,0.978089567490027,2584,0.13922458684588,7.85709386490249,8.70251025718999,9.61513859109664,7.74615384615385,352.886343964312,106,30038,1,0,0,0,9 +"6431",2011,36109,"NY","36","109",101861,0.846771580879826,18276,0.113762872934685,9.81334400268316,9.21761385594268,10.4003156666583,6.10769230769231,208.47704453131,136,65235,1,0,0,0,9 +"6432",2011,36111,"NY","36","111",182458,0.900897740849949,13004,0.14513477074176,9.4730122814238,10.0502682837443,10.9261363023972,7.90769230769231,351.583894277486,398,113202,1,0,0,0,9 +"6433",2011,36113,"NY","36","113",65750,0.975589353612167,3625,0.153338403041825,8.19560956728878,8.99056613813158,9.90263719108129,9.02307692307692,315.712373399338,125,39593,1,0,0,0,9 +"6434",2011,36115,"NY","36","115",63100,0.957369255150555,3953,0.139492868462758,8.28223006329669,9.02208122251547,9.80840734628586,8.18461538461538,328.360524342633,127,38677,1,0,0,0,9 +"6435",2011,36117,"NY","36","117",93258,0.951693152330095,5039,0.141306912007549,8.5249629286806,9.38496572213567,10.2306306938688,8.46153846153846,349.926425725873,195,55726,1,0,0,0,9 +"6436",2011,36119,"NY","36","119",956423,0.764427455215945,53586,0.124852706386191,10.8890431189119,11.7774105558178,12.5741888874858,7.13846153846154,226.889517064686,1277,562829,1,0,0,0,9 +"6437",2011,36121,"NY","36","121",41852,0.928629456178916,2424,0.137532256522986,7.7931743471892,8.66595796468135,9.3292782960477,8.79230769230769,276.439164705443,74,26769,1,0,0,0,9 +"6438",2011,36123,"NY","36","123",25453,0.980552390680863,1873,0.142615801673673,7.53529670244409,7.81923445385907,8.89727211313399,7.54615384615385,284.252416145537,40,14072,1,0,0,0,9 +"6439",2011,39001,"OH","39","001",28454,0.985836789203627,1583,0.133478597033809,7.36707705988101,8.22764270790443,9.01869548772134,14.2846153846154,590.024330900243,97,16440,1,0,0,0,9 +"6440",2011,39003,"OH","39","003",105981,0.853605835008162,8040,0.131976486351327,8.99218436217301,9.40853527792643,10.2989359942576,9.50769230769231,356.766399091867,220,61665,1,0,0,0,9 +"6441",2011,39005,"OH","39","005",53255,0.980508872406347,3787,0.132194160172754,8.2393294279018,8.73584667745758,9.64121328401888,9.86153846153846,339.911556992938,103,30302,1,0,0,0,9 +"6442",2011,39007,"OH","39","007",101100,0.946973293768546,5636,0.140326409495549,8.63692987301857,9.44872715270309,10.2726343979702,10.8538461538462,489.806948502711,290,59207,1,0,0,0,9 +"6443",2011,39009,"OH","39","009",65092,0.932003932894979,13977,0.102823695692251,9.54516840048491,8.72469504674049,9.91016520728937,9.94615384615385,334.367125411901,138,41272,1,0,0,0,9 +"6444",2011,39011,"OH","39","011",45758,0.985751125486254,2347,0.135473578390664,7.76089319585102,8.62461158818351,9.46831038044244,8.06923076923077,333.231193503907,87,26108,1,0,0,0,9 +"6445",2011,39013,"OH","39","013",70132,0.948440084412251,4343,0.151842240346775,8.37632063253482,9.05380351415596,9.90877355696536,9.53846153846154,399.154731157549,170,42590,1,0,0,0,9 +"6446",2011,39015,"OH","39","015",44632,0.983218318695107,2382,0.133693314214017,7.77569574991525,8.66233195708248,9.47838080417267,11.8230769230769,546.489853632438,143,26167,1,0,0,0,9 +"6447",2011,39017,"OH","39","017",370164,0.884367469554036,29813,0.120905868750068,10.3026998189785,10.7746763104979,11.6289024262112,9.06923076923077,393.752283357313,873,221713,1,0,0,0,9 +"6448",2011,39019,"OH","39","019",28832,0.986057158712542,1433,0.151082130965594,7.26752542782817,8.14177220465645,9.02665788954289,10.1692307692308,417.785735601313,70,16755,1,0,0,0,9 +"6449",2011,39021,"OH","39","021",39828,0.96040474038365,2326,0.131615948578889,7.75190533307861,8.54616929965275,9.36082720525012,9.42307692307692,442.017680707228,102,23076,1,0,0,0,9 +"6450",2011,39023,"OH","39","023",137823,0.887159617770619,8808,0.139628363916037,9.08341567840252,9.69233432907347,10.6098223923996,9.49230769230769,536.494231109091,425,79218,1,0,0,0,9 +"6451",2011,39025,"OH","39","025",198886,0.9696811238599,11377,0.132704162183361,9.33934905253972,10.190544429594,11.0141436886924,9.16153846153846,387.7452530329,466,120182,1,0,0,0,9 +"6452",2011,39027,"OH","39","027",41919,0.960232829981631,2762,0.131825663780147,7.92371033396924,8.53208180390999,9.43268360311962,13.4538461538462,569.858141696641,141,24743,1,0,0,0,9 +"6453",2011,39029,"OH","39","029",107437,0.965691521542858,5840,0.146932620977875,8.67248607582227,9.52281261323518,10.3394495340863,10.1076923076923,491.772566896681,315,64054,1,0,0,0,9 +"6454",2011,39031,"OH","39","031",36930,0.978472786352559,2053,0.139453019225562,7.62705741701893,8.399535147948,9.27087087171621,11.4307692307692,419.000988654018,89,21241,1,0,0,0,9 +"6455",2011,39033,"OH","39","033",43310,0.980905102747633,2299,0.140914338489956,7.74022952476318,8.57847641983314,9.42464497462319,11.4923076923077,421.769811014681,104,24658,1,0,0,0,9 +"6456",2011,39035,"OH","39","035",1270424,0.657223887458045,79207,0.134677871324849,11.2798199577353,11.9410648901173,12.880416649177,7.58461538461538,436.537036030218,3292,754117,1,0,0,0,9 +"6457",2011,39037,"OH","39","037",52657,0.985984769356401,2683,0.132783865393015,7.89469085042562,8.75305551513822,9.59716617586541,9.23076923076923,349.484256243214,103,29472,1,0,0,0,9 +"6458",2011,39039,"OH","39","039",39015,0.965936178392926,2395,0.13756247597078,7.78113850984502,8.45446636150793,9.32411538623503,9.62307692307692,365.663322185061,82,22425,1,0,0,0,9 +"6459",2011,39041,"OH","39","041",178584,0.909297585449984,7633,0.117563723513865,8.94023623179847,10.3046099112102,10.8910565424109,6.22307692307692,201.951247262281,213,105471,1,0,0,0,9 +"6460",2011,39043,"OH","39","043",76691,0.88762697057021,4034,0.151934386042691,8.30251371851416,9.09851455679393,10.0334626289579,9.53846153846154,378.152200666801,169,44691,1,0,0,0,9 +"6461",2011,39045,"OH","39","045",147180,0.914098382932464,8201,0.125247995651583,9.01201137703641,9.92656911197945,10.6844853411661,8.06153846153846,320.40607737979,279,87077,1,0,0,0,9 +"6462",2011,39047,"OH","39","047",28870,0.960616556979564,1626,0.13335642535504,7.39387829010776,8.22040309993373,9.04887970584956,10.4846153846154,558.128488303052,94,16842,1,0,0,0,9 +"6463",2011,39049,"OH","39","049",1180917,0.721113338193963,102200,0.108972942213551,11.5346869567517,11.977457904516,12.8513312553631,7.75384615384615,348.729866519249,2599,745276,1,0,0,0,9 +"6464",2011,39051,"OH","39","051",42363,0.982886009017303,2204,0.13908363430352,7.6980291702728,8.55217416031148,9.42641902556827,9.59230769230769,357.70903621804,88,24601,1,0,0,0,9 +"6465",2011,39053,"OH","39","053",31023,0.958063372336653,2018,0.131869902975212,7.60986220091355,8.19891444498699,9.10609035060238,11.1692307692308,575.966001230219,103,17883,1,0,0,0,9 +"6466",2011,39055,"OH","39","055",93287,0.976963564055013,4237,0.150739116918756,8.35161075062656,9.29789326898404,10.1821414937779,6.03076923076923,236.754176610979,124,52375,1,0,0,0,9 +"6467",2011,39057,"OH","39","057",163600,0.88221271393643,15876,0.130177261613692,9.67256381390296,9.81137226362832,10.8183973313334,8.23846153846154,284.821474309718,278,97605,1,0,0,0,9 +"6468",2011,39059,"OH","39","059",39915,0.970737817862959,2239,0.141375422773393,7.71378461659875,8.49699048409872,9.3672586470476,10.7692307692308,463.283685486664,107,23096,1,0,0,0,9 +"6469",2011,39061,"OH","39","061",800746,0.703811196059674,59340,0.125987516640733,10.9910388938448,11.4656032228758,12.4251037523243,8.83076923076923,401.160381268131,1936,482600,1,0,0,0,9 +"6470",2011,39063,"OH","39","063",74926,0.956503750367029,5339,0.129687958786002,8.58279364850019,9.10742131796834,10.0232685908552,7.77692307692308,357.817985417229,159,44436,1,0,0,0,9 +"6471",2011,39065,"OH","39","065",31805,0.976544568464078,3351,0.120295551013992,8.11701408773731,8.21419441485256,9.13086417047439,9.51538461538462,395.362504674894,74,18717,1,0,0,0,9 +"6472",2011,39067,"OH","39","067",15784,0.968258996452103,805,0.157818043588444,6.69084227741856,7.50273821075485,8.43032725839458,10.6153846153846,534.584333406066,49,9166,1,0,0,0,9 +"6473",2011,39069,"OH","39","069",27999,0.982606521661488,1480,0.13400478588521,7.29979736675816,8.12444685571585,8.98306328938037,10.6846153846154,373.203955961933,60,16077,1,0,0,0,9 +"6474",2011,39071,"OH","39","071",43376,0.973418480265585,2450,0.129749170047953,7.80384330353877,8.62819774945915,9.44026090756942,13.4076923076923,502.633801117858,125,24869,1,0,0,0,9 +"6475",2011,39073,"OH","39","073",29471,0.982321604288962,1603,0.145804350039021,7.37963215260955,8.21446516075919,9.06126014896203,9.93076923076923,539.192949907236,93,17248,1,0,0,0,9 +"6476",2011,39075,"OH","39","075",42795,0.992008412197687,3075,0.100479027923823,8.03106018024062,8.46315930292375,9.30665005211359,6.3,293.772032902468,65,22126,1,0,0,0,9 +"6477",2011,39077,"OH","39","077",59428,0.975247358147674,3317,0.132092616275157,8.10681603894705,8.92611897115338,9.75950170200775,11.3538461538462,406.9412551231,140,34403,1,0,0,0,9 +"6478",2011,39079,"OH","39","079",33126,0.981434522731389,1934,0.138501479200628,7.56734567601324,8.36147461641682,9.19329593736692,11.8384615384615,586.345791056952,115,19613,1,0,0,0,9 +"6479",2011,39081,"OH","39","081",69046,0.929452828549083,4746,0.15466500593807,8.46505743699571,8.97916464896471,9.93484086019412,11.9846153846154,622.114696225344,252,40507,1,0,0,0,9 +"6480",2011,39083,"OH","39","083",61290,0.97732093326807,4892,0.130934899657367,8.49535649680706,8.85280791762332,9.79300281936086,8.71538461538461,462.713259715559,163,35227,1,0,0,0,9 +"6481",2011,39085,"OH","39","085",229991,0.94516741959468,12082,0.143218647686214,9.39947202069869,10.2742231801232,11.1423109580478,6.83846153846154,370.270290008545,507,136927,1,0,0,0,9 +"6482",2011,39087,"OH","39","087",62432,0.96605907227063,3618,0.134994874423373,8.19367666595524,9.01201137703641,9.84453340969246,9.5,534.817429075607,197,36835,1,0,0,0,9 +"6483",2011,39089,"OH","39","089",167195,0.945123957056132,10129,0.131104399054996,9.2231578756868,9.99729660621419,10.8293126871932,8.37692307692308,369.603635445595,366,99025,1,0,0,0,9 +"6484",2011,39091,"OH","39","091",45625,0.965150684931507,2355,0.140252054794521,7.76429600645052,8.62730241409627,9.49597034030183,9.73076923076923,372.043582248206,98,26341,1,0,0,0,9 +"6485",2011,39093,"OH","39","093",301899,0.883590207320991,17835,0.136850403611804,9.78891809779299,10.5813941836798,11.4026194069194,7.83076923076923,380.117450134077,679,178629,1,0,0,0,9 +"6486",2011,39095,"OH","39","095",439409,0.769410731232178,34371,0.129002819696456,10.4449684645617,10.8869695339506,11.8121185309954,9.87692307692308,440.640655837255,1161,263480,1,0,0,0,9 +"6487",2011,39097,"OH","39","097",43120,0.920013914656772,2565,0.1235853432282,7.84971375760487,8.78676220844109,9.34548296591848,7.90769230769231,386.59793814433,105,27160,1,0,0,0,9 +"6488",2011,39099,"OH","39","099",237304,0.818426996595085,14371,0.148484644169504,9.57296756607425,10.232251585714,11.1498587082787,9.79230769230769,449.884459849798,623,138480,1,0,0,0,9 +"6489",2011,39101,"OH","39","101",66614,0.922839042843847,4440,0.135436995226229,8.39840965542627,9.08102863549584,9.81170115690542,9.86153846153846,376.402283015154,153,40648,1,0,0,0,9 +"6490",2011,39103,"OH","39","103",173514,0.971241513653077,8090,0.136213792546999,8.99838401005254,10.0999996128494,10.859210513654,6.38461538461539,276.264591439689,284,102800,1,0,0,0,9 +"6491",2011,39105,"OH","39","105",23650,0.982283298097252,1297,0.147315010570825,7.16780918431644,7.986504938554,8.85509298002864,13.0923076923077,597.609561752988,84,14056,1,0,0,0,9 +"6492",2011,39107,"OH","39","107",40720,0.98418467583497,2135,0.13614931237721,7.66622192566273,8.43163530305459,9.31289696030128,6.76153846153846,294.609093307537,67,22742,1,0,0,0,9 +"6493",2011,39109,"OH","39","109",102742,0.956210702536451,5456,0.138327071694147,8.6044711995233,9.47998575694181,10.3138738649634,9.11538461538461,371.014105220937,222,59836,1,0,0,0,9 +"6494",2011,39111,"OH","39","111",14618,0.988370502120673,721,0.15344096319606,6.58063913728495,7.43838353004431,8.32700074024171,9.83846153846154,456.675880302848,38,8321,1,0,0,0,9 +"6495",2011,39113,"OH","39","113",534638,0.754819148657596,37063,0.131726514015091,10.5203744463742,11.059236032575,12.0019041733062,9.72307692307692,469.556308813113,1485,316256,1,0,0,0,9 +"6496",2011,39115,"OH","39","115",15036,0.947126895450918,772,0.144652833200319,6.64898455002478,7.44014668066269,8.365672383775,11.3384615384615,349.895031490553,30,8574,1,0,0,0,9 +"6497",2011,39117,"OH","39","117",34813,0.986039697814035,1721,0.136730531697929,7.45066079621154,8.44117570499232,9.22739412654201,10.1384615384615,392.368433959488,80,20389,1,0,0,0,9 +"6498",2011,39119,"OH","39","119",86252,0.940708621249362,5814,0.131417242498725,8.66802408111882,9.27171765165109,10.1549852973469,10.8692307692308,394.540201255355,198,50185,1,0,0,0,9 +"6499",2011,39121,"OH","39","121",14754,0.966517554561475,672,0.191744611630744,6.51025834052315,7.24064969425547,8.16194579946869,13.3,411.232522617789,35,8511,1,0,0,0,9 +"6500",2011,39123,"OH","39","123",41323,0.981124313336399,1853,0.168090409699199,7.52456122628536,8.43576619272051,9.39382791541011,11.1,386.020255686535,93,24092,1,0,0,0,9 +"6501",2011,39125,"OH","39","125",19369,0.977231658836285,988,0.142185967267283,6.89568269774787,7.75833346749091,8.6195692580331,9.73076923076923,347.934695334107,39,11209,1,0,0,0,9 +"6502",2011,39127,"OH","39","127",36229,0.988213861823401,1991,0.133539429738607,7.5963923040642,8.44741429680832,9.26435496028242,11.5692307692308,478.042836387496,102,21337,1,0,0,0,9 +"6503",2011,39129,"OH","39","129",55946,0.954938690880492,3489,0.124316305008401,8.15737044118677,8.99081526618468,9.65027131696563,9.16923076923077,388.707037643208,133,34216,1,0,0,0,9 +"6504",2011,39131,"OH","39","131",28471,0.975448702188191,1726,0.130272909276106,7.45356187164337,8.1961611392829,9.02509454366498,15.1769230769231,605.915171875937,101,16669,1,0,0,0,9 +"6505",2011,39133,"OH","39","133",161894,0.931442795903492,17840,0.128052923517857,9.789198406134,9.84961197956681,10.830322498286,8.86153846153846,320.283622226475,318,99287,1,0,0,0,9 +"6506",2011,39135,"OH","39","135",41989,0.98440067636762,2247,0.14160851651623,7.71735127218533,8.56293108309009,9.41719192651341,9.54615384615385,468.412691947375,115,24551,1,0,0,0,9 +"6507",2011,39137,"OH","39","137",34386,0.987233176292677,1837,0.128191705926831,7.51588908521513,8.28526113406895,9.16429643347478,7.43076923076923,312.932847688914,61,19493,1,0,0,0,9 +"6508",2011,39139,"OH","39","139",123151,0.888567693319583,7491,0.138496642333396,8.92145757894788,9.62628372437197,10.4481057220369,10.5846153846154,433.549878881304,315,72656,1,0,0,0,9 +"6509",2011,39141,"OH","39","141",77594,0.920934608346006,4403,0.133193288140836,8.39004140575575,9.29468152040993,9.98897693855154,9.94615384615385,489.487380726176,237,48418,1,0,0,0,9 +"6510",2011,39143,"OH","39","143",60609,0.952333811810127,3263,0.139302743816925,8.09040229659332,8.90679988358994,9.7751995322346,9.13846153846154,396.477018492821,140,35311,1,0,0,0,9 +"6511",2011,39145,"OH","39","145",79425,0.956562795089707,5687,0.130827824992131,8.6459381473068,9.21502936146231,10.059507911994,12.5,541.485460902192,254,46908,1,0,0,0,9 +"6512",2011,39147,"OH","39","147",56526,0.957559353217988,4072,0.136468173937657,8.31188955823036,8.75352933651643,9.68365102697941,9.61538461538461,347.137637028015,114,32840,1,0,0,0,9 +"6513",2011,39149,"OH","39","149",49256,0.958664934221212,2567,0.127517459801852,7.85049318087114,8.74719318352693,9.54416625294219,9.64615384615385,406.676568357027,115,28278,1,0,0,0,9 +"6514",2011,39151,"OH","39","151",374512,0.900830948007006,23065,0.140841948989618,10.0460715959919,10.7130167878368,11.6240642542042,9.32307692307692,400.468662755041,875,218494,1,0,0,0,9 +"6515",2011,39153,"OH","39","153",541368,0.816612729234088,35284,0.138290405047953,10.4711848823787,11.1155475670447,12.0208147820039,9.07692307692308,399.82873283863,1298,324639,1,0,0,0,9 +"6516",2011,39155,"OH","39","155",208866,0.901113632664005,11883,0.149047714802792,9.38286408629003,10.1218597389714,11.0311407099887,10.6461538461538,499.569336778639,609,121905,1,0,0,0,9 +"6517",2011,39157,"OH","39","157",92491,0.977716750818999,5003,0.13972170265215,8.5177930114882,9.31316768177565,10.1933173170454,9.29230769230769,363.370731798685,194,53389,1,0,0,0,9 +"6518",2011,39159,"OH","39","159",53101,0.938287414549632,2717,0.107756916065611,7.90728360942635,9.06969804217372,9.77792432956078,7.18461538461538,254.019392212137,82,32281,1,0,0,0,9 +"6519",2011,39161,"OH","39","161",28628,0.980229146290345,1482,0.134833030599413,7.30114780585603,8.12533508671429,8.99826039301795,9.27692307692308,420.870211054032,68,16157,1,0,0,0,9 +"6520",2011,39163,"OH","39","163",13380,0.986322869955157,765,0.136846038863976,6.63987583382654,7.47873482556787,8.27205962221041,11.8846153846154,495.175215845607,39,7876,1,0,0,0,9 +"6521",2011,39165,"OH","39","165",215377,0.916355971157552,10272,0.116846274207552,9.23717702592974,10.4042931430198,11.0521114812903,7.9,265.787463561396,341,128298,1,0,0,0,9 +"6522",2011,39167,"OH","39","167",61617,0.975152961033481,3850,0.148222081568398,8.25582842728183,8.89467026298423,9.81880074436893,10.0384615384615,468.371170376901,170,36296,1,0,0,0,9 +"6523",2011,39169,"OH","39","169",114670,0.968029999127932,7823,0.130653178686666,8.96482339168508,9.50397966490209,10.3982447681231,7.65384615384615,331.971790046966,217,65367,1,0,0,0,9 +"6524",2011,39171,"OH","39","171",37587,0.977119748849336,2053,0.134354963152154,7.62705741701893,8.41980084540759,9.27883978840087,10.7153846153846,353.632773032057,77,21774,1,0,0,0,9 +"6525",2011,39173,"OH","39","173",127150,0.949107353519465,15020,0.124435705859221,9.61713792531813,9.5979808951718,10.5726493703456,8.29230769230769,315.367344555046,243,77053,1,0,0,0,9 +"6526",2011,39175,"OH","39","175",22643,0.985072649383916,1177,0.13487612065539,7.07072410726028,7.94555542825349,8.77601271918292,9.2,284.768721619333,37,12993,1,0,0,0,9 +"6527",2011,40001,"OK","40","001",22668,0.487250749955885,1304,0.119992941591671,7.1731917424866,7.95892649305011,8.75636755980297,8.72307692307692,488.150539327612,62,12701,0,0,0,0,9 +"6528",2011,40003,"OK","40","003",5645,0.911780336581045,219,0.136403897254207,5.3890717298165,6.76041469108343,7.0884087786754,3.87692307692308,378.236834448647,13,3437,0,0,0,0,9 +"6529",2011,40005,"OK","40","005",14171,0.785618516689013,817,0.129983769670454,6.70563909486,7.4442486494967,8.23509549725836,8.12307692307692,603.002707359094,49,8126,0,0,0,0,9 +"6530",2011,40007,"OK","40","007",5635,0.967524401064774,281,0.1377107364685,5.63835466933375,6.46614472423762,7.35179986905778,3.43076923076923,314.663310258024,10,3178,0,0,0,0,9 +"6531",2011,40009,"OK","40","009",22311,0.908610102639953,1626,0.114607144457891,7.39387829010776,7.92768504561578,8.6769282495374,3.5,598.581140999113,81,13532,0,0,0,0,9 +"6532",2011,40011,"OK","40","011",9689,0.846630199194963,519,0.137991536794303,6.25190388316589,6.94022246911964,7.87169266432365,5.04615384615385,623.347185493011,33,5294,0,0,0,0,9 +"6533",2011,40013,"OK","40","013",43128,0.809659617881655,3648,0.122217584863662,8.20193435119422,8.51579221050061,9.44675546548363,5.64615384615385,570.052187876355,142,24910,0,0,0,0,9 +"6534",2011,40015,"OK","40","015",29614,0.674917268859323,1802,0.120686161950429,7.49665243816828,8.17526610411206,8.95299349932047,6.76153846153846,699.177438307873,119,17020,0,0,0,0,9 +"6535",2011,40017,"OK","40","017",119414,0.876781616895841,6444,0.117021454770797,8.77090474429687,9.73737393458638,10.4825137339914,4.17692307692308,368.185431571901,264,71703,0,0,0,0,9 +"6536",2011,40019,"OK","40","019",48067,0.792789231697422,2589,0.127988016726652,7.85902697975154,8.69550672681265,9.53733930680491,6.10769230769231,700.06563115292,192,27426,0,0,0,0,9 +"6537",2011,40021,"OK","40","021",47707,0.583121973714549,4776,0.118766638019578,8.47135865507244,8.57659353469768,9.54144106479549,6.94615384615385,494.459883783881,137,27707,0,0,0,0,9 +"6538",2011,40023,"OK","40","023",15280,0.682133507853403,891,0.137958115183246,6.79234442747081,7.42535788702715,8.37953902611744,8.57692307692308,689.245395127748,58,8415,0,0,0,0,9 +"6539",2011,40027,"OK","40","027",262098,0.842383383314638,28654,0.110115300383826,10.2630483284533,10.3951609374575,11.3093148967583,4.32307692307692,300.139415671783,493,164257,0,0,0,0,9 +"6540",2011,40029,"OK","40","029",5926,0.778265271684104,326,0.135335808302396,5.78689738136671,6.4831073514572,7.39449310721904,8.05384615384615,781.25,25,3200,0,0,0,0,9 +"6541",2011,40031,"OK","40","031",126115,0.696974983150299,12316,0.0967371050231931,9.41865450904439,9.63371088395318,10.5038064707849,5.46153846153846,366.434113581535,281,76685,0,0,0,0,9 +"6542",2011,40033,"OK","40","033",6179,0.842207476938016,331,0.133354911798026,5.80211837537706,6.59030104819669,7.46450983463653,5.79230769230769,746.911806952025,26,3481,0,0,0,0,9 +"6543",2011,40035,"OK","40","035",14983,0.72388707201495,881,0.13061469665621,6.78105762593618,7.49997654095212,8.31287139434261,6.00769230769231,656.606381753254,57,8681,0,0,0,0,9 +"6544",2011,40037,"OK","40","037",70649,0.844286543333947,3886,0.136222734929015,8.26513562993738,9.05333562316602,9.92505333045069,6.64615384615385,546.784561956602,222,40601,0,0,0,0,9 +"6545",2011,40039,"OK","40","039",27800,0.868345323741007,3660,0.106079136690647,8.20521842639541,7.91498300584839,8.99764207852351,3.81538461538462,452.295091987042,74,16361,0,0,0,0,9 +"6546",2011,40041,"OK","40","041",41664,0.71889400921659,2064,0.152241743471582,7.63240112660145,8.42244285487043,9.35573857466554,6.82307692307692,552.730488613752,125,22615,0,0,0,0,9 +"6547",2011,40047,"OK","40","047",60768,0.897528304370721,4070,0.123518957345972,8.31139827843664,8.81045964216192,9.75603108306825,4.21538461538462,423.35307074001,148,34959,0,0,0,0,9 +"6548",2011,40049,"OK","40","049",27463,0.865127626260787,1516,0.128718639624222,7.32383056620232,8.11252776347864,8.96277604612029,5.56923076923077,810.845874416191,125,15416,0,0,0,0,9 +"6549",2011,40051,"OK","40","051",52746,0.895935236795207,3256,0.129128275129868,8.08825472712243,8.79026911147866,9.65547481054255,5.01538461538462,515.463917525773,160,31040,0,0,0,0,9 +"6550",2011,40055,"OK","40","055",6144,0.875813802083333,385,0.114583333333333,5.95324333428778,6.71901315438526,7.21670948670946,6.03076923076923,554.52865064695,21,3787,0,0,0,0,9 +"6551",2011,40061,"OK","40","061",12759,0.792381848107218,716,0.131750137158084,6.57368016696065,7.30249642372733,8.16023249236769,8.5,588.066551921974,41,6972,0,0,0,0,9 +"6552",2011,40063,"OK","40","063",13751,0.721111191913315,818,0.131990400698131,6.70686233660275,7.43661726523423,8.13914867888407,8.92307692307692,584.359069998757,47,8043,0,0,0,0,9 +"6553",2011,40065,"OK","40","065",26422,0.866058587540686,2157,0.11263341155098,7.67647364638916,8.02387999273488,8.9446806835589,5.20769230769231,449.189505891543,69,15361,0,0,0,0,9 +"6554",2011,40067,"OK","40","067",6449,0.903550938129943,349,0.138471080787719,5.85507192220243,6.54534966033442,7.45818615734049,5.80769230769231,811.870100783875,29,3572,0,0,0,0,9 +"6555",2011,40069,"OK","40","069",11075,0.779774266365688,667,0.133634311512415,6.50279004591562,7.13169851046691,8.05674377497531,8.16923076923077,792.239288601455,49,6185,0,0,0,0,9 +"6556",2011,40071,"OK","40","071",45851,0.847724149964014,2676,0.130640553095898,7.89207842124812,8.49760254165123,9.43747594455993,7.40769230769231,482.728603648162,122,25273,0,0,0,0,9 +"6557",2011,40073,"OK","40","073",15171,0.93771010480522,755,0.121349943972052,6.62671774924902,7.50988306115491,8.34711636103872,3.69230769230769,504.754079117267,43,8519,0,0,0,0,9 +"6558",2011,40075,"OK","40","075",9426,0.858794822830469,507,0.14035646085296,6.22851100359118,6.90475076996184,7.86518795418747,4.88461538461539,661.750803554547,35,5289,0,0,0,0,9 +"6559",2011,40077,"OK","40","077",11181,0.740184241123334,777,0.128163849387354,6.65544035036765,7.10414409298753,8.0258433441509,9.46923076923077,653.487992158144,40,6121,0,0,0,0,9 +"6560",2011,40079,"OK","40","079",50505,0.817602217602218,3198,0.130818730818731,8.0702808933939,8.70466811345099,9.56198267338684,8.42307692307692,601.742979665237,174,28916,0,0,0,0,9 +"6561",2011,40081,"OK","40","081",34263,0.892566325190439,1711,0.136327817178881,7.44483327389219,8.32093496888341,9.17998425196128,5.19230769230769,571.134551067661,111,19435,0,0,0,0,9 +"6562",2011,40083,"OK","40","083",42568,0.853786882165007,2821,0.129674873144146,7.944846711002,8.56216655705897,9.4444634273334,4.62307692307692,362.566974177174,90,24823,0,0,0,0,9 +"6563",2011,40085,"OK","40","085",9385,0.879062333510922,496,0.134150239744273,6.20657592672493,6.99117688712121,7.87054784450771,4.79230769230769,609.175709118599,32,5253,0,0,0,0,9 +"6564",2011,40087,"OK","40","087",35199,0.90553708912185,1719,0.124151254296997,7.44949800538285,8.44677072711969,9.23999625688369,4.49230769230769,409.008032326418,83,20293,0,0,0,0,9 +"6565",2011,40089,"OK","40","089",33312,0.713826849183477,1898,0.129232708933718,7.54855597916987,8.30548401772769,9.16188515170678,9.75384615384615,663.466206375748,123,18539,0,0,0,0,9 +"6566",2011,40091,"OK","40","091",20264,0.740327674694039,922,0.15495459928938,6.82654522355659,7.64587582518481,8.63692987301857,10.1230769230769,799.3533321358,89,11134,0,0,0,0,9 +"6567",2011,40093,"OK","40","093",7643,0.9511971738846,369,0.137773125735968,5.91079664404053,6.65286302935335,7.63482067774554,3.78461538461538,452.380952380952,19,4200,0,0,0,0,9 +"6568",2011,40095,"OK","40","095",15952,0.851053159478435,787,0.135656970912738,6.6682282484174,7.45240245122364,8.37031599555548,5.70769230769231,616.35073845796,53,8599,0,0,0,0,9 +"6569",2011,40097,"OK","40","097",41327,0.736346698284415,2293,0.131608875553512,7.7376162828579,8.4906438561827,9.36777137992501,7.21538461538462,488.036624341366,113,23154,0,0,0,0,9 +"6570",2011,40099,"OK","40","099",13598,0.822253272540079,722,0.136122959258715,6.58202513889283,7.37148929521428,8.25035895147729,4.69230769230769,748.522652659225,57,7615,0,0,0,0,9 +"6571",2011,40101,"OK","40","101",70769,0.652828215744182,4603,0.126905848606028,8.43446354381724,9.03503415007613,9.94333307045825,7.03846153846154,669.517409896152,274,40925,0,0,0,0,9 +"6572",2011,40103,"OK","40","103",11584,0.870338397790055,568,0.131819751381215,6.34212141872115,7.26262860097424,8.08794755464267,4.91538461538462,566.182096403979,37,6535,0,0,0,0,9 +"6573",2011,40105,"OK","40","105",10622,0.745716437582376,529,0.132931651289776,6.2709884318583,7.11882624906208,8.00803284696931,7.55384615384615,441.801189464741,26,5885,0,0,0,0,9 +"6574",2011,40107,"OK","40","107",12333,0.675829076461526,654,0.12267899132409,6.4831073514572,7.33498187887181,8.04430540699064,8.13846153846154,494.42011583557,35,7079,0,0,0,0,9 +"6575",2011,40109,"OK","40","109",730890,0.743434716578418,55026,0.114710831999343,10.915561079787,11.4081092456007,12.3153977916442,5.03846153846154,446.709979860503,1963,439435,0,0,0,0,9 +"6576",2011,40111,"OK","40","111",39787,0.701460275969538,2693,0.130494885264031,7.8984110928116,8.41980084540759,9.33282345619073,8.60769230769231,688.032670454545,155,22528,0,0,0,0,9 +"6577",2011,40113,"OK","40","113",47775,0.704908424908425,2543,0.143715332286761,7.84109976542212,8.62353322718756,9.51900085081316,6.43846153846154,434.908669179472,120,27592,0,0,0,0,9 +"6578",2011,40115,"OK","40","115",31876,0.746768728824194,2135,0.125611745513866,7.66622192566273,8.20903626577507,9.0918946167697,7.20769230769231,605.610466777124,106,17503,0,0,0,0,9 +"6579",2011,40117,"OK","40","117",16731,0.837009144701452,853,0.139142908373678,6.74875954749168,7.6251071482389,8.46252579007393,7.42307692307692,540.655146824976,51,9433,0,0,0,0,9 +"6580",2011,40119,"OK","40","119",78253,0.849002594149745,16270,0.091740891723001,9.69707820021308,8.90530866118929,10.0771046686999,4.73076923076923,341.344898901673,170,49803,0,0,0,0,9 +"6581",2011,40121,"OK","40","121",45721,0.781741431727215,2621,0.135911288029571,7.87131120332341,8.59267165259214,9.43388384331172,7,611.990480148087,162,26471,0,0,0,0,9 +"6582",2011,40123,"OK","40","123",37751,0.75001986702339,3479,0.116049905962756,8.15450017515194,8.3354314778808,9.3213449300191,5.16923076923077,546.771768351028,120,21947,0,0,0,0,9 +"6583",2011,40125,"OK","40","125",70071,0.803884631302536,5010,0.120777497110074,8.51919119407891,9.03943341999748,9.9663214967075,5.68461538461538,608.037965297345,246,40458,0,0,0,0,9 +"6584",2011,40127,"OK","40","127",11415,0.782917214191853,581,0.142882172579939,6.36475075685191,7.10824413973154,8.05990833457828,8.3,722.3113964687,45,6230,0,0,0,0,9 +"6585",2011,40131,"OK","40","131",87567,0.814873182820012,5261,0.12372240684276,8.56807640173081,9.34075441069812,10.1505819780061,5.46153846153846,356.411468178954,181,50784,0,0,0,0,9 +"6586",2011,40133,"OK","40","133",25443,0.72294933773533,1479,0.129819596745667,7.2991214627108,7.96137020171951,8.87738195465477,7.91538461538462,606.017396264081,85,14026,0,0,0,0,9 +"6587",2011,40135,"OK","40","135",42428,0.731403789950033,2369,0.126025266333553,7.77022320415879,8.59766657556611,9.4082071401056,8.7,610.291351419136,146,23923,0,0,0,0,9 +"6588",2011,40137,"OK","40","137",45115,0.901917322398315,2478,0.135365177878754,7.81520706218909,8.53149049611706,9.46537011215271,5.56153846153846,513.242438489265,131,25524,0,0,0,0,9 +"6589",2011,40139,"OK","40","139",21257,0.920543820859011,1835,0.102036976054947,7.51479976048867,7.9098566672694,8.65851912750667,4.19230769230769,348.009064422143,43,12356,0,0,0,0,9 +"6590",2011,40141,"OK","40","141",8001,0.859517560304962,437,0.125734283214598,6.07993319509559,6.7990558620588,7.66011431917393,5.57692307692308,522.608498068621,23,4401,0,0,0,0,9 +"6591",2011,40143,"OK","40","143",609323,0.774628563175852,42600,0.117054501471305,10.6596095322575,11.2753660019217,12.13035183499,5.73846153846154,432.991955190687,1577,364210,0,0,0,0,9 +"6592",2011,40145,"OK","40","145",74041,0.817695601085885,3813,0.128523385691711,8.24617155985756,9.19998695989669,10.0045086665949,5.58461538461538,408.191504081915,177,43362,0,0,0,0,9 +"6593",2011,40147,"OK","40","147",51378,0.827786211997353,2940,0.134279263497995,7.98616486033273,8.6741969402259,9.60951909544164,5.46923076923077,489.685351114816,141,28794,0,0,0,0,9 +"6594",2011,40149,"OK","40","149",11550,0.933852813852814,639,0.122164502164502,6.45990445437753,7.10496544826984,8.05261481881557,4.27692307692308,564.174894217207,36,6381,0,0,0,0,9 +"6595",2011,40151,"OK","40","151",8791,0.919918098054829,1166,0.11454897053805,7.06133436691044,6.70808408385307,7.73587031995257,3.25384615384615,331.836814366582,17,5123,0,0,0,0,9 +"6596",2011,40153,"OK","40","153",20111,0.93446372631893,1250,0.114514444831187,7.13089883029635,7.81439963380449,8.5855992240803,4.43846153846154,413.153456998314,49,11860,0,0,0,0,9 +"6597",2011,41001,"OR","41","001",16069,0.969755429709378,696,0.169456717904039,6.54534966033442,7.39326309476384,8.38753998318937,10.9692307692308,470.06155567991,42,8935,1,0,0,0,9 +"6598",2011,41003,"OR","41","003",86281,0.909771560366709,14768,0.129356405234061,9.60021795674263,9.04487593224865,10.2041105291207,6.46923076923077,208.527684793942,114,54669,1,0,0,0,9 +"6599",2011,41005,"OR","41","005",379640,0.927022969128648,20942,0.148403750921926,9.94951199084741,10.8112217817272,11.6611299296199,8.94615384615385,283.680514640097,650,229131,1,0,0,0,9 +"6600",2011,41007,"OR","41","007",37241,0.954727316667114,2366,0.171880454337961,7.76895604453833,8.31458729131958,9.32232887392423,9.53076923076923,478.790048326472,107,22348,1,0,0,0,9 +"6601",2011,41009,"OR","41","009",49408,0.956262143782383,2593,0.154630829015544,7.86057078553866,8.76857428414169,9.60615910303254,11.4076923076923,357.287312929756,106,29668,1,0,0,0,9 +"6602",2011,41011,"OR","41","011",62789,0.939336507987068,3431,0.171112774530571,8.14060704285845,8.74608021735751,9.80604009037016,11.7076923076923,544.036417131596,196,36027,1,0,0,0,9 +"6603",2011,41013,"OR","41","013",20640,0.969331395348837,906,0.16734496124031,6.80903930604298,7.72841577984104,8.68355472863146,14.4307692307692,369.89247311828,43,11625,1,0,0,0,9 +"6604",2011,41015,"OR","41","015",22497,0.954971774014313,823,0.196381739787527,6.71295620067707,7.58018941794454,8.73600738456922,12.1461538461538,607.254226161169,74,12186,1,0,0,0,9 +"6605",2011,41017,"OR","41","017",159683,0.965838567662181,8294,0.147886750624675,9.02328764080633,9.96331185418179,10.7915639779291,12.4076923076923,285.20387375811,273,95721,1,0,0,0,9 +"6606",2011,41019,"OR","41","019",107257,0.955499407964049,5695,0.164446143375258,8.64734387588128,9.31036668604331,10.3292780271055,12.8230769230769,484.297520661157,293,60500,1,0,0,0,9 +"6607",2011,41023,"OR","41","023",7409,0.971116210014847,271,0.186124983128627,5.6021188208797,6.57507584059962,7.6246189861594,13.9461538461538,347.136126952641,14,4033,1,0,0,0,9 +"6608",2011,41025,"OR","41","025",7363,0.944995246502784,334,0.167323101996469,5.8111409929767,6.67456139181443,7.64012317269536,13.4230769230769,607.385811467444,25,4116,1,0,0,0,9 +"6609",2011,41027,"OR","41","027",22439,0.958376041713089,1155,0.129506662507242,7.05185562295589,8.02682357621763,8.78124833323686,8.06923076923077,219.099425808401,29,13236,1,0,0,0,9 +"6610",2011,41029,"OR","41","029",204798,0.950048340315823,12601,0.152472192111251,9.44153145486969,10.0492315665888,11.0097041880642,11.8461538461538,370.926135118275,440,118622,1,0,0,0,9 +"6611",2011,41031,"OR","41","031",21752,0.780433983082015,1280,0.14003310040456,7.15461535691366,7.85515700588134,8.67641669696422,12.8769230769231,496.055948605351,61,12297,1,0,0,0,9 +"6612",2011,41033,"OR","41","033",82722,0.958886390561157,3996,0.16482918691521,8.29304913976844,9.02713842775492,10.054576406899,12.7692307692308,552.012315812624,251,45470,1,0,0,0,9 +"6613",2011,41035,"OR","41","035",66322,0.918699677331805,4426,0.153584029432164,8.39525152061099,8.91931939825889,9.86542217172934,12.1230769230769,486.09659209701,186,38264,1,0,0,0,9 +"6614",2011,41037,"OR","41","037",7908,0.947395042994436,330,0.173874557410218,5.79909265446053,6.81234509417748,7.66152708135852,13.2769230769231,343.864173651408,16,4653,1,0,0,0,9 +"6615",2011,41039,"OR","41","039",354119,0.931771523132054,33872,0.145112236282154,10.4303439933746,10.6088103090262,11.6071987437421,9.76153846153846,342.628197748049,744,217145,1,0,0,0,9 +"6616",2011,41041,"OR","41","041",45877,0.926411927545393,2054,0.198443664581381,7.6275443904885,8.41913925094085,9.53935630792094,10.5461538461538,545.2236910897,146,26778,1,0,0,0,9 +"6617",2011,41043,"OR","41","043",118175,0.95635286651153,7371,0.138345673788872,8.90530866118929,9.55676293945056,10.4510596772691,11.4769230769231,384.98975781965,265,68833,1,0,0,0,9 +"6618",2011,41045,"OR","41","045",30964,0.939833354863713,2128,0.116587004263015,7.66293785046154,8.22710823434815,8.90517298518338,9.5,387.618993330673,68,17543,1,0,0,0,9 +"6619",2011,41047,"OR","41","047",318053,0.919079524481769,21938,0.12031642524988,9.99597557197128,10.5879975397004,11.4195703727361,10.5769230769231,331.383062522749,610,184077,1,0,0,0,9 +"6620",2011,41049,"OR","41","049",11226,0.954213433101728,625,0.132638517726706,6.4377516497364,7.23993259132047,8.01168672912785,8.31538461538462,319.744204636291,20,6255,1,0,0,0,9 +"6621",2011,41051,"OR","41","051",749926,0.831287353685564,52889,0.122652101674032,10.8759506567155,11.6660327435008,12.4296800892297,8.45384615384615,309.381017550961,1544,499061,1,0,0,0,9 +"6622",2011,41053,"OR","41","053",75942,0.932027073292776,6387,0.131679439572305,8.76201995356159,9.07726601775084,10.0102770467176,9.36923076923077,336.405529953917,146,43400,1,0,0,0,9 +"6623",2011,41057,"OR","41","057",25393,0.962666876698303,1164,0.178041192454613,7.05961762829138,7.89394513823596,8.87988996767346,10.0384615384615,387.087855118546,56,14467,1,0,0,0,9 +"6624",2011,41059,"OR","41","059",76810,0.926025257127978,5194,0.122249707069392,8.55525939222269,9.17761054735326,9.93178342169097,9.63076923076923,377.434791399879,168,44511,1,0,0,0,9 +"6625",2011,41061,"OR","41","061",25906,0.95336987570447,2138,0.145603335134718,7.66762609158499,7.85166117788927,8.9126079636709,10.0692307692308,409.444520267504,60,14654,1,0,0,0,9 +"6626",2011,41063,"OR","41","063",6979,0.977074079381,259,0.196446482304055,5.55682806169954,6.42486902390539,7.60539236481493,12.3923076923077,255.885363357216,10,3908,1,0,0,0,9 +"6627",2011,41065,"OR","41","065",25217,0.923266050680097,1471,0.152516159733513,7.29369772060144,7.93272102748195,8.88364023250367,9.10769230769231,396.797772363383,57,14365,1,0,0,0,9 +"6628",2011,41067,"OR","41","067",541041,0.853140519849697,32284,0.113860132596236,10.3823270304443,11.317141697887,12.0441535361044,7.76923076923077,201.042197981823,674,335253,1,0,0,0,9 +"6629",2011,41071,"OR","41","071",99708,0.939052031933245,7032,0.126168411762346,8.85822643936501,9.44990830170453,10.2567817883154,9.29230769230769,352.288154525614,205,58191,1,0,0,0,9 +"6630",2011,44001,"RI","44","001",49238,0.96841870100329,3517,0.140826191153174,8.16536363247398,8.64135583403666,9.60541838719786,9.6,243.317340644277,71,29180,1,0,0,0,9 +"6631",2011,44003,"RI","44","003",165288,0.950909926915445,9370,0.142393882193505,9.14526837523247,9.99085719867304,10.8651148727986,10.6076923076923,342.807890458187,350,102098,1,0,0,0,9 +"6632",2011,44005,"RI","44","005",83258,0.923670998582719,5556,0.148790506617983,8.62263370387423,9.21612361673191,10.1361060742129,10.0230769230769,281.000361286179,140,49822,1,0,0,0,9 +"6633",2011,44007,"RI","44","007",629493,0.820364960372872,54597,0.117375411640797,10.9077342151685,11.2955651584117,12.1889570050495,11.6153846153846,321.301060658615,1232,383441,1,0,0,0,9 +"6634",2011,44009,"RI","44","009",126552,0.951514002149314,11093,0.150554712687275,9.31406955773866,9.55986984775404,10.5626124844816,10.0307692307692,272.04416095506,206,75723,1,0,0,0,9 +"6635",2011,45001,"SC","45","001",25093,0.705894074044554,1721,0.150280954847966,7.45066079621154,8.00001409367807,8.91395385889425,12.3076923076923,491.519556940118,71,14445,0,0,0,0,9 +"6636",2011,45003,"SC","45","003",161628,0.730090083401391,10414,0.138348553468458,9.25090633372284,9.86068443021082,10.8023268907965,9.13076923076923,465.902055635421,444,95299,0,0,0,0,9 +"6637",2011,45005,"SC","45","005",10237,0.251636221549282,686,0.144964345022956,6.53087762772588,7.1777824161952,7.94732502701646,18.1384615384615,790.388871324692,50,6326,0,0,0,0,9 +"6638",2011,45007,"SC","45","007",188183,0.817831578835495,11304,0.131499657248529,9.33291192436436,10.1110706657323,10.9446119613316,10.2,511.079439718952,563,110159,0,0,0,0,9 +"6639",2011,45009,"SC","45","009",15809,0.371813523942058,1397,0.145170472515656,7.24208235925696,7.40913644392013,8.44569718971117,16.0384615384615,668.002672010688,60,8982,0,0,0,0,9 +"6640",2011,45011,"SC","45","011",22463,0.537417085874549,1375,0.138004718871032,7.22620901010067,7.87663846097546,8.821437352167,15.0307692307692,553.519918921026,71,12827,0,0,0,0,9 +"6641",2011,45013,"SC","45","013",163864,0.777083435043695,11483,0.138621051603769,9.34862295977619,9.76082891879855,10.7414707371415,8.56153846153846,290.704100806897,263,90470,0,0,0,0,9 +"6642",2011,45015,"SC","45","015",183833,0.703089216843548,14146,0.116306647881501,9.55718717759594,10.1123698944981,10.9483297979944,9.46153846153846,330.038812564358,375,113623,0,0,0,0,9 +"6643",2011,45017,"SC","45","017",15098,0.556894952973904,886,0.160882236057756,6.78671695060508,7.46622755621548,8.43879912398823,12.2076923076923,434.491978609626,39,8976,0,0,0,0,9 +"6644",2011,45019,"SC","45","019",357461,0.675449909220866,30908,0.12634385289584,10.3387703290535,10.6836836093826,11.66455582861,8.21538461538461,368.989031845166,836,226565,0,0,0,0,9 +"6645",2011,45021,"SC","45","021",55706,0.779126126449575,3913,0.128478081355689,8.27205962221041,8.92052268739398,9.72937223228927,14.5384615384615,649.925243340555,213,32773,0,0,0,0,9 +"6646",2011,45023,"SC","45","023",32884,0.608441795402019,2080,0.142288042817176,7.64012317269536,8.32482129876878,9.21333588095598,17.1153846153846,638.878870627029,124,19409,0,0,0,0,9 +"6647",2011,45025,"SC","45","025",46498,0.653598004215235,2865,0.138177986149942,7.96032362914884,8.74001669151952,9.54122560172861,12.7,533.20758823316,147,27569,0,0,0,0,9 +"6648",2011,45027,"SC","45","027",34711,0.486013079427271,2581,0.149923655325401,7.85593219971861,8.22147894726719,9.22068666403033,14.3153846153846,530.902534308324,106,19966,0,0,0,0,9 +"6649",2011,45029,"SC","45","029",38447,0.586443675709418,2224,0.145681067443494,7.70706265537047,8.40514368760761,9.35383447161491,13.9538461538462,607.379204061282,134,22062,0,0,0,0,9 +"6650",2011,45031,"SC","45","031",68162,0.570420468882955,4283,0.144229922830903,8.36240897761537,9.06056344665796,9.95303933136538,12.7615384615385,668.904699869726,267,39916,0,0,0,0,9 +"6651",2011,45033,"SC","45","033",31752,0.492535903250189,2077,0.130605946082137,7.63867982387611,8.24249315318763,9.17336513585129,15.5923076923077,574.744102030763,105,18269,0,0,0,0,9 +"6652",2011,45035,"SC","45","035",140155,0.704120438086404,8449,0.115372266419321,9.04180337015285,9.88567993388616,10.6835231858642,8.86153846153846,308.743813339618,262,84860,0,0,0,0,9 +"6653",2011,45037,"SC","45","037",26894,0.614932698743214,1655,0.142894325871942,7.41155628781116,8.20903626577507,8.89316082873538,9.79230769230769,405.461809075189,68,16771,0,0,0,0,9 +"6654",2011,45039,"SC","45","039",23591,0.394430079267517,1386,0.161587045907338,7.23417717974985,7.93128476152589,8.90544431878971,14.3230769230769,581.766583894998,82,14095,0,0,0,0,9 +"6655",2011,45041,"SC","45","041",137670,0.559097842667248,9911,0.130391515943924,9.20140053040671,9.77235328451133,10.6862468917858,11.0692307692308,506.80832875374,415,81885,0,0,0,0,9 +"6656",2011,45043,"SC","45","043",60192,0.652794391281233,2958,0.169374667729931,7.99226864327075,8.78339623219089,9.79896002318219,13.4076923076923,434.601416919688,146,33594,0,0,0,0,9 +"6657",2011,45045,"SC","45","045",458972,0.782757989594136,30457,0.121266656789521,10.324071131776,11.0489357160413,11.8615591645899,8.56153846153846,368.51404463996,1022,277330,0,0,0,0,9 +"6658",2011,45047,"SC","45","047",69846,0.662314234172322,5095,0.124344987544025,8.53601494565683,9.06566136060674,9.97296697230593,11.2076923076923,381.972865044522,154,40317,0,0,0,0,9 +"6659",2011,45049,"SC","45","049",20798,0.442302144436965,1328,0.132656986248678,7.19142933003638,7.93343838762749,8.68169016329764,12.7923076923077,641.43681847338,80,12472,0,0,0,0,9 +"6660",2011,45051,"SC","45","051",275545,0.836469542180043,19148,0.147594766735016,9.8599535505124,10.422935893593,11.3484163210147,11.8076923076923,467.76981373817,774,165466,0,0,0,0,9 +"6661",2011,45053,"SC","45","053",25303,0.518594633047465,1983,0.117733075129431,7.5923661285198,8.07496035911586,8.89863879368018,9.76153846153846,413.757434703905,64,15468,0,0,0,0,9 +"6662",2011,45055,"SC","45","055",62125,0.732555331991952,3447,0.143002012072435,8.14525956651686,8.95273476710687,9.8453816311291,10.9076923076923,445.76929387956,163,36566,0,0,0,0,9 +"6663",2011,45057,"SC","45","057",77872,0.745787959728786,4345,0.136647318676803,8.37678103769949,9.28554060453912,10.0427711196385,13.1846153846154,571.95249738037,262,45808,0,0,0,0,9 +"6664",2011,45059,"SC","45","059",66462,0.727001895820168,4668,0.137446962173874,8.44848599340645,9.02208122251547,9.90193635004339,11.5,554.25829462934,216,38971,0,0,0,0,9 +"6665",2011,45061,"SC","45","061",18887,0.340657595171282,1416,0.141049399057553,7.25559127425367,7.64921631982063,8.57659353469768,16,776.129699896516,90,11596,0,0,0,0,9 +"6666",2011,45063,"SC","45","063",266409,0.825520158853492,16689,0.127942374319186,9.7225050987434,10.5048757403564,11.3256074466255,7.89230769230769,377.813603751061,614,162514,0,0,0,0,9 +"6667",2011,45065,"SC","45","065",10017,0.492762304083059,462,0.182689427972447,6.13556489108174,7.00760061395185,7.83042561782033,13.4461538461538,508.130081300813,30,5904,0,0,0,0,9 +"6668",2011,45067,"SC","45","067",32774,0.4178006956734,2036,0.153261731860621,7.61874237767041,8.24328252304838,9.25598272985488,17.5076923076923,565.770862800566,108,19089,0,0,0,0,9 +"6669",2011,45069,"SC","45","069",28589,0.428696351743678,1729,0.132288642484872,7.45529848568329,8.27944348771267,8.9736048671425,19.4692307692308,581.492871121051,104,17885,0,0,0,0,9 +"6670",2011,45071,"SC","45","071",37507,0.663849414775909,2632,0.140667075479244,7.87549929244521,8.40043463080604,9.30728557803266,10.2153846153846,510.368292795071,111,21749,0,0,0,0,9 +"6671",2011,45073,"SC","45","073",74265,0.908799569110617,4658,0.150043762202922,8.44634145044429,9.07004328643746,9.97548257970728,9.91538461538462,503.336064614304,215,42715,0,0,0,0,9 +"6672",2011,45075,"SC","45","075",91706,0.35211436547227,7898,0.137232024076942,8.9743648418466,9.18625257644709,10.2543908726516,15.6153846153846,591.882750845547,315,53220,0,0,0,0,9 +"6673",2011,45077,"SC","45","077",119735,0.909015743099344,15495,0.116833006222074,9.64827267022185,9.51487956149439,10.4824857114052,9.76153846153846,450.112528132033,324,71982,0,0,0,0,9 +"6674",2011,45079,"SC","45","079",389333,0.490271823862863,42835,0.109849409117645,10.6651108043981,10.7987997660251,11.7371883895524,9.03846153846154,338.134820526869,827,244577,0,0,0,0,9 +"6675",2011,45081,"SC","45","081",19797,0.701924534020306,1208,0.135576097388493,7.09672137849476,7.79688034278352,8.64329706821196,9.63846153846154,434.103142906755,50,11518,0,0,0,0,9 +"6676",2011,45083,"SC","45","083",286180,0.758948913271368,19986,0.127133272765392,9.90278730742173,10.5425744562461,11.3720068539117,10.8,465.895285611502,790,169566,0,0,0,0,9 +"6677",2011,45085,"SC","45","085",107316,0.50249729770025,8642,0.118006634611801,9.06438931649188,9.43747594455993,10.3862840035806,11.9153846153846,502.097368755561,316,62936,0,0,0,0,9 +"6678",2011,45087,"SC","45","087",28654,0.672785649473023,1686,0.143784462902213,7.4301141385618,8.18227973925902,9.07988994259212,15.8307692307692,694.2366389371,116,16709,0,0,0,0,9 +"6679",2011,45089,"SC","45","089",34101,0.331251282953579,2085,0.151579132576757,7.6425241342329,8.33062262033287,9.22759072538271,16.4846153846154,648.482748378793,131,20201,0,0,0,0,9 +"6680",2011,45091,"SC","45","091",230131,0.774871703508002,14578,0.121691558286367,9.58726882194216,10.4166404660612,11.1865995795929,10.7769230769231,377.692407303492,525,139002,0,0,0,0,9 +"6681",2011,46005,"SD","46","005",17712,0.918642728093948,1013,0.134202800361337,6.92067150424868,7.50328963067508,8.46421426662535,3.67692307692308,384.381954278778,38,9886,0,0,0,0,9 +"6682",2011,46011,"SD","46","011",32151,0.946564648066934,6547,0.0945227209107026,8.78676220844109,7.98514393119862,9.15482766204592,4.31538461538462,153.450153450153,31,20202,0,0,0,0,9 +"6683",2011,46013,"SD","46","013",36932,0.940674753601213,2742,0.12810029242933,7.91644286012226,8.3133619511344,9.28005298438748,3.74615384615385,256.817332835263,55,21416,0,0,0,0,9 +"6684",2011,46019,"SD","46","019",10312,0.964022498060512,525,0.148855702094647,6.26339826259162,6.96790920180188,7.96762673933382,4.75384615384615,428.742925741725,25,5831,0,0,0,0,9 +"6685",2011,46023,"SD","46","023",9187,0.656906498312833,432,0.11755741809078,6.06842558824411,6.80239476332431,7.71244383427499,4.82307692307692,325.874429719748,15,4603,0,0,0,0,9 +"6686",2011,46027,"SD","46","027",13993,0.925891517187165,3299,0.0933323804759523,8.10137467122858,7.08170858610557,8.39683183474505,3.94615384615385,224.592925322852,20,8905,0,0,0,0,9 +"6687",2011,46029,"SD","46","029",27431,0.96471145783967,1910,0.123692173088841,7.55485852104068,8.06495089174914,8.9632882756103,4.41538461538462,307.287093942054,49,15946,0,0,0,0,9 +"6688",2011,46031,"SD","46","031",4034,0.305404065443728,269,0.0984134853743183,5.59471137960184,6.02102334934953,6.92165818415113,7.3,913.900913900914,19,2079,0,0,0,0,9 +"6689",2011,46033,"SD","46","033",8346,0.951833213515456,258,0.208602923556195,5.55295958492162,6.61606518513282,7.79358680337158,5.44615384615385,273.626604925279,13,4751,0,0,0,0,9 +"6690",2011,46035,"SD","46","035",19723,0.956396085788166,1611,0.123257110987172,7.38461038317697,7.61332497954064,8.59248617545167,3.85384615384615,313.507703332139,35,11164,0,0,0,0,9 +"6691",2011,46041,"SD","46","041",5396,0.217383246849518,372,0.0941438102297999,5.91889385427315,6.4118182677099,7.27100853828099,15.7,766.283524904215,22,2871,0,0,0,0,9 +"6692",2011,46047,"SD","46","047",6960,0.905890804597701,256,0.200862068965517,5.54517744447956,6.49375383985169,7.56060116276856,5.83846153846154,581.68942842691,23,3954,0,0,0,0,9 +"6693",2011,46065,"SD","46","065",17317,0.86596985621066,865,0.139978056245308,6.76272950693188,7.67647364638916,8.58727879898293,3.53076923076923,286.396181384248,30,10475,0,0,0,0,9 +"6694",2011,46071,"SD","46","071",3158,0.437302089930336,183,0.103229892336922,5.20948615284142,5.76519110278484,6.66185474054531,7.4,811.992504684572,13,1601,0,0,0,0,9 +"6695",2011,46079,"SD","46","079",11563,0.972930900285393,907,0.149355703537144,6.81014245011514,7.01750614294126,8.07184314960916,4.81538461538462,194.84412470024,13,6672,0,0,0,0,9 +"6696",2011,46081,"SD","46","081",24335,0.955660571193754,2248,0.152332032052599,7.71779621101358,7.77904864492556,8.88571765171212,4.7,296.347346657478,43,14510,0,0,0,0,9 +"6697",2011,46083,"SD","46","083",46808,0.969962399589814,2267,0.101606562980687,7.72621265050753,8.82555985506085,9.55852941226462,3.5,121.911864892969,34,27889,0,0,0,0,9 +"6698",2011,46093,"SD","46","093",25504,0.939695734002509,2167,0.134410288582183,7.68109900153636,7.94058382710424,8.91004576147356,4.73846153846154,238.771295818276,37,15496,0,0,0,0,9 +"6699",2011,46099,"SD","46","099",171482,0.907156436244037,12199,0.114624275434156,9.40910926014874,9.98262215569986,10.8504820619853,4.35384615384615,299.210047359043,314,104943,0,0,0,0,9 +"6700",2011,46103,"SD","46","103",102443,0.85978544166024,6991,0.129994240699706,8.85237888651199,9.37543099184177,10.3136416501304,4.7,325.005745051049,198,60922,0,0,0,0,9 +"6701",2011,46109,"SD","46","109",10291,0.620445049072005,518,0.132445826450296,6.24997524225948,6.96979066990159,7.85438121065236,6.52307692307692,414.468726450641,22,5308,0,0,0,0,9 +"6702",2011,46113,"SD","46","113",13897,0.0359789882708498,1286,0.0705188170108657,7.15929190479756,7.32974968904151,8.20056279700856,NA,879.557384026103,62,7049,0,0,0,0,9 +"6703",2011,46115,"SD","46","115",6562,0.970893020420603,299,0.144620542517525,5.70044357339069,6.41673228251233,7.42833319419081,4.03076923076923,495.482366656951,17,3431,0,0,0,0,9 +"6704",2011,46121,"SD","46","121",9848,0.0987002437043054,792,0.083570268074736,6.67456139181443,6.91174730025167,7.8578675593318,8.31538461538462,778.688524590164,38,4880,0,0,0,0,9 +"6705",2011,46125,"SD","46","125",8356,0.982168501675443,323,0.142412637625658,5.77765232322266,6.85435450225502,7.70841066725737,4,239.338555265448,11,4596,0,0,0,0,9 +"6706",2011,46127,"SD","46","127",14641,0.970903626801448,624,0.145003756574004,6.43615036836943,7.54697411751653,8.33230835221912,5.03076923076923,248.021731427897,21,8467,0,0,0,0,9 +"6707",2011,46135,"SD","46","135",22507,0.942551206291376,1268,0.132492113564669,7.14519613499717,7.92804560087478,8.71078434046842,4.33846153846154,238.130674207471,32,13438,0,0,0,0,9 +"6708",2011,47001,"TN","47","001",75212,0.937642929319789,4268,0.145295963410094,8.35890061242164,9.12945564323572,10.0245097807836,8.87692307692308,457.220461747397,202,44180,0,0,0,0,9 +"6709",2011,47003,"TN","47","003",45249,0.892307012309664,2718,0.118742955645429,7.90765159471109,8.70549681988774,9.48615227185748,11.4153846153846,537.204251914505,141,26247,0,0,0,0,9 +"6710",2011,47005,"TN","47","005",16531,0.965095880467001,780,0.157401246143609,6.65929391968364,7.6177595766085,8.46968220874519,11.5461538461538,711.932844543619,67,9411,0,0,0,0,9 +"6711",2011,47007,"TN","47","007",13002,0.95016151361329,716,0.141978157206584,6.57368016696065,7.49554194388426,8.14467918344776,11.4615384615385,667.779632721202,52,7787,0,0,0,0,9 +"6712",2011,47009,"TN","47","009",123689,0.954911107697532,7115,0.140610725286808,8.86996051052395,9.69818391935025,10.5351581859943,8.30769230769231,423.734586824716,311,73395,0,0,0,0,9 +"6713",2011,47011,"TN","47","011",99813,0.934287116908619,7394,0.124152164547704,8.90842413949658,9.49333648243725,10.3269235459655,9.03846153846154,436.206838921015,261,59834,0,0,0,0,9 +"6714",2011,47013,"TN","47","013",40697,0.988008944148217,2255,0.143008084133966,7.72090525193678,8.61341204915678,9.40153907670774,11.8769230769231,682.565096486054,162,23734,0,0,0,0,9 +"6715",2011,47015,"TN","47","015",13725,0.976539162112933,789,0.132167577413479,6.67076632084587,7.49776170062257,8.31360713931756,10.4846153846154,503.9950829748,41,8135,0,0,0,0,9 +"6716",2011,47017,"TN","47","017",28548,0.884160011209192,1902,0.138328429312036,7.55066124310534,8.14089846060785,9.029897050194,12.3,648.708760657358,105,16186,0,0,0,0,9 +"6717",2011,47019,"TN","47","019",57387,0.978409744367191,3921,0.144510080680293,8.27410200229233,8.91152994173656,9.76543165404016,10.2153846153846,452.52806544252,156,34473,0,0,0,0,9 +"6718",2011,47021,"TN","47","021",38978,0.974010980553133,2125,0.133613833444507,7.66152708135852,8.64505856241413,9.39789819556538,8.59230769230769,519.232366868821,125,24074,0,0,0,0,9 +"6719",2011,47023,"TN","47","023",17150,0.890787172011662,1622,0.120291545189504,7.39141523467536,7.62900388965296,8.53267276226462,9.23076923076923,485.928325571978,48,9878,0,0,0,0,9 +"6720",2011,47025,"TN","47","025",32112,0.97901096163428,2262,0.144836821126059,7.72400465667607,8.34093322600088,9.18850367736701,11.2076923076923,734.76146124392,142,19326,0,0,0,0,9 +"6721",2011,47027,"TN","47","027",7744,0.975981404958678,380,0.148502066115702,5.94017125272043,6.82871207164168,7.69621263934641,10.7923076923077,929.283771532185,41,4412,0,0,0,0,9 +"6722",2011,47029,"TN","47","029",35434,0.966388214709036,1908,0.152932211999774,7.55381085200823,8.4320709379994,9.2987174825936,13.3615384615385,748.602293186771,158,21106,0,0,0,0,9 +"6723",2011,47031,"TN","47","031",52929,0.943887094031627,3124,0.127359292637307,8.04686951095958,8.79724623670353,9.65322970873035,10.0846153846154,569.16685747931,174,30571,0,0,0,0,9 +"6724",2011,47033,"TN","47","033",14563,0.854013596099705,801,0.125042916981391,6.68586094706836,7.47363710849621,8.33399124719497,10.7,546.713643542704,45,8231,0,0,0,0,9 +"6725",2011,47035,"TN","47","035",56538,0.984435247090452,2696,0.150624358838303,7.8995244720322,8.69181854157572,9.6476270924073,10.3153846153846,633.61158604043,189,29829,0,0,0,0,9 +"6726",2011,47037,"TN","47","037",636083,0.669871699133604,52444,0.112312386905482,10.8675012126193,11.3719607996137,12.263973561425,7.63846153846154,373.562730139158,1539,411979,0,0,0,0,9 +"6727",2011,47039,"TN","47","039",11679,0.96027057111054,577,0.143334189571025,6.3578422665081,7.22620901010067,8.08332860878638,11.7846153846154,523.802187644431,34,6491,0,0,0,0,9 +"6728",2011,47041,"TN","47","041",18753,0.971524556071029,1110,0.142110595638031,7.01211529430638,7.77904864492556,8.62389281007529,11.2923076923077,678.6926236828,76,11198,0,0,0,0,9 +"6729",2011,47043,"TN","47","043",49996,0.943355468437475,2930,0.12535002800224,7.98275770201111,8.81343849452851,9.6310881036155,9.70769230769231,545.844216730293,163,29862,0,0,0,0,9 +"6730",2011,47045,"TN","47","045",38122,0.840013640417607,2175,0.131839882482556,7.68478394352278,8.49964003216865,9.34443410645688,12.6153846153846,617.423047455947,137,22189,0,0,0,0,9 +"6731",2011,47047,"TN","47","047",38574,0.707963913516877,1907,0.158941255768134,7.55328660560042,8.45744318701046,9.36785680985117,9.64615384615385,381.729059124626,88,23053,0,0,0,0,9 +"6732",2011,47049,"TN","47","049",17999,0.989554975276404,914,0.14884160231124,6.81783057145415,7.7397944584087,8.56902634005625,11.5769230769231,822.76643112961,85,10331,0,0,0,0,9 +"6733",2011,47051,"TN","47","051",40866,0.931654676258993,2898,0.141682572309499,7.97177612288063,8.49801037199946,9.3923285398689,9.50769230769231,507.721599323038,120,23635,0,0,0,0,9 +"6734",2011,47053,"TN","47","053",49896,0.801827801827802,2658,0.126002084335418,7.88532923927319,8.73632872133291,9.59396878547517,11.5923076923077,663.591199432221,187,28180,0,0,0,0,9 +"6735",2011,47055,"TN","47","055",29292,0.882595930629523,1854,0.143144885975693,7.5251007461258,8.15306194680105,9.07257144223129,10.1153846153846,665.615694517429,114,17127,0,0,0,0,9 +"6736",2011,47057,"TN","47","057",22748,0.987823105327941,1265,0.147441533321611,7.14282740116162,8.04044688130311,8.82820108917151,11.8153846153846,635.295855802615,86,13537,0,0,0,0,9 +"6737",2011,47059,"TN","47","059",69174,0.96862983201781,4065,0.144244947523636,8.31016902198191,9.10164095505284,9.93217218639604,11.5538461538462,625.816148027694,254,40587,0,0,0,0,9 +"6738",2011,47061,"TN","47","061",13588,0.987415366499853,739,0.136296732410951,6.6052979209482,7.42237370098682,8.26410576372896,12.5923076923077,987.141187167165,76,7699,0,0,0,0,9 +"6739",2011,47063,"TN","47","063",62900,0.932543720190779,3711,0.126868044515103,8.2190566610606,9.03765226415047,9.82568816008172,11.0076923076923,502.567464219382,184,36612,0,0,0,0,9 +"6740",2011,47065,"TN","47","065",341179,0.766500869045281,24818,0.13605761198667,10.1193244753346,10.6795042109184,11.5766699209215,7.87692307692308,443.596745993902,921,207621,0,0,0,0,9 +"6741",2011,47067,"TN","47","067",6706,0.987324783775723,353,0.154488517745303,5.8664680569333,6.68210859744981,7.58882987830781,14.0538461538462,981.625975333501,39,3973,0,0,0,0,9 +"6742",2011,47069,"TN","47","069",26874,0.570923569249088,1831,0.130200193495572,7.51261754467451,8.16251625014018,8.85366542803745,12.2538461538462,596.018595780188,100,16778,0,0,0,0,9 +"6743",2011,47071,"TN","47","071",25871,0.951760658652545,1428,0.150477368482084,7.26403014289953,8.06620756800626,8.93208043810331,11.4076923076923,677.670424047236,101,14904,0,0,0,0,9 +"6744",2011,47073,"TN","47","073",56632,0.97656801808165,2842,0.144988698968781,7.95226330865705,8.96264794774056,9.7366652591891,10.0769230769231,556.969606228477,186,33395,0,0,0,0,9 +"6745",2011,47075,"TN","47","075",18550,0.487547169811321,1055,0.139191374663073,6.96129604591017,7.67554600253785,8.65886634973238,14.0153846153846,595.625872498837,64,10745,0,0,0,0,9 +"6746",2011,47077,"TN","47","077",28048,0.909013120365088,1576,0.132308899030234,7.36264527041782,8.20001364817543,9.0395520509959,11.3153846153846,629.545871279262,103,16361,0,0,0,0,9 +"6747",2011,47079,"TN","47","079",32442,0.906201837124715,1611,0.147648110474077,7.38461038317697,8.24275634571448,9.14772000999452,10.9769230769231,619.11023449485,113,18252,0,0,0,0,9 +"6748",2011,47081,"TN","47","081",24369,0.941647174689154,1501,0.134022733801141,7.31388683163346,8.12296471523406,8.83127373772255,10.4076923076923,602.813127930342,90,14930,0,0,0,0,9 +"6749",2011,47083,"TN","47","083",8346,0.962377186676252,428,0.143182362808531,6.0591231955818,6.91968384984741,7.76895604453833,11.3076923076923,620.852065938771,29,4671,0,0,0,0,9 +"6750",2011,47085,"TN","47","085",18403,0.962669130033147,958,0.14432429495191,6.86484777797086,7.72134861261795,8.58185670474196,10.6076923076923,552.012943751785,58,10507,0,0,0,0,9 +"6751",2011,47087,"TN","47","087",11566,0.987809095625108,614,0.158568217188311,6.41999492814714,7.29709100516042,8.12563098847706,11.8461538461538,616.016427104723,42,6818,0,0,0,0,9 +"6752",2011,47089,"TN","47","089",51918,0.966004083362225,3432,0.136157016834239,8.14089846060785,8.80462523261281,9.64406894535721,10.6461538461538,529.713623572256,160,30205,0,0,0,0,9 +"6753",2011,47091,"TN","47","091",18227,0.971525758490152,1033,0.143687935480331,6.94022246911964,7.83991936001258,8.49331025095291,11.6923076923077,464.908359409924,52,11185,0,0,0,0,9 +"6754",2011,47093,"TN","47","093",436822,0.879278058339553,38087,0.124235958811598,10.5476282955412,10.9483825586982,11.8330214831604,7.00769230769231,421.730203651296,1140,270315,0,0,0,0,9 +"6755",2011,47095,"TN","47","095",7794,0.70490120605594,661,0.118039517577624,6.49375383985169,7.07749805356923,7.3790081276283,12.1923076923077,670.369660984486,35,5221,0,0,0,0,9 +"6756",2011,47097,"TN","47","097",27703,0.633433202180269,1953,0.11756849438689,7.57712193087668,8.22871079879369,8.94324493313279,12.6076923076923,582.935877053524,99,16983,0,0,0,0,9 +"6757",2011,47099,"TN","47","099",42165,0.971516660737579,2502,0.126479307482509,7.82484569102686,8.57395152523485,9.39715183404299,10.5846153846154,531.018206338503,126,23728,0,0,0,0,9 +"6758",2011,47101,"TN","47","101",12151,0.969302938029792,652,0.146572298576249,6.48004456192665,7.31055015853442,8.17611034223734,13.0846153846154,528.495929152978,37,7001,0,0,0,0,9 +"6759",2011,47103,"TN","47","103",33386,0.914844545617924,1912,0.138950458275924,7.55590509361135,8.31041499418829,9.18952523226226,6.76153846153846,460.448031455326,89,19329,0,0,0,0,9 +"6760",2011,47105,"TN","47","105",49200,0.97130081300813,2336,0.157621951219512,7.75619534394812,8.65990729361541,9.54294800778096,8.80769230769231,510.855683269476,140,27405,0,0,0,0,9 +"6761",2011,47107,"TN","47","107",52334,0.942618565368594,3073,0.139756181449918,8.03040956213048,8.81135422996573,9.65130131576919,11.3230769230769,636.650039380415,194,30472,0,0,0,0,9 +"6762",2011,47109,"TN","47","109",26079,0.931822539207792,1385,0.141033015069596,7.23345541862144,8.07121853996986,8.9254543868264,11.4615384615385,640.507011866235,95,14832,0,0,0,0,9 +"6763",2011,47111,"TN","47","111",22452,0.98178336005701,1399,0.128763584535899,7.24351297466548,8.02518932189084,8.7937637591133,10.4230769230769,593.968930855924,78,13132,0,0,0,0,9 +"6764",2011,47113,"TN","47","113",98095,0.610469442886997,7564,0.126397879606504,8.93115542977835,9.3805049984995,10.3301595302887,9.46923076923077,401.405781621473,233,58046,0,0,0,0,9 +"6765",2011,47115,"TN","47","115",28107,0.950048030739673,1621,0.154054150211691,7.39079852173568,8.18562889114761,9.05251628678262,10.6230769230769,633.173560565714,107,16899,0,0,0,0,9 +"6766",2011,47117,"TN","47","117",30855,0.918100794036623,1746,0.136217792902285,7.46508273639955,8.33997857199043,9.1503780308035,11.6153846153846,646.307965745678,120,18567,0,0,0,0,9 +"6767",2011,47119,"TN","47","119",81601,0.856202742613448,4833,0.13673852036127,8.48322267184508,9.23317760587894,10.1498396889872,10.3923076923077,391.917961214336,193,49245,0,0,0,0,9 +"6768",2011,47121,"TN","47","121",11689,0.975190349901617,589,0.158268457524168,6.37842618365159,7.36897040219479,8.16280135349207,12.1230769230769,700.901158632528,49,6991,0,0,0,0,9 +"6769",2011,47123,"TN","47","123",44911,0.962614949566921,2507,0.147024114359511,7.82684209815829,8.65014941866486,9.48729005784892,11.6230769230769,634.289862825265,166,26171,0,0,0,0,9 +"6770",2011,47125,"TN","47","125",176603,0.748917062564056,16194,0.0876032683476498,9.69239608224606,10.0714988712123,10.9168686968416,8.66153846153846,302.807179015186,329,108650,0,0,0,0,9 +"6771",2011,47127,"TN","47","127",6368,0.964038944723618,319,0.142116834170854,5.76519110278484,6.73221070646721,7.50328963067508,6.98461538461538,410.621407062688,15,3653,0,0,0,0,9 +"6772",2011,47129,"TN","47","129",22010,0.95329395729214,1375,0.134120854157201,7.22620901010067,8.08240225392624,8.66768002469017,10.9461538461538,433.400751227969,60,13844,0,0,0,0,9 +"6773",2011,47131,"TN","47","131",31679,0.882603617538432,1765,0.139366772941065,7.4759059693674,8.32385113133882,9.14644164612595,12.3846153846154,542.034798634072,100,18449,0,0,0,0,9 +"6774",2011,47133,"TN","47","133",22160,0.986687725631769,1176,0.143862815884477,7.06987412845857,7.97246601597457,8.76826314537129,10.3615384615385,636.142307390246,81,12733,0,0,0,0,9 +"6775",2011,47135,"TN","47","135",7867,0.967967459005974,437,0.151264776916232,6.07993319509559,6.82110747225646,7.69848278788095,11.8846153846154,693.202146690519,31,4472,0,0,0,0,9 +"6776",2011,47139,"TN","47","139",16772,0.986107798712139,917,0.143512997853565,6.82110747225646,7.73848812249465,8.50552538654856,11.3307692307692,650.803335367094,64,9834,0,0,0,0,9 +"6777",2011,47141,"TN","47","141",73071,0.953346744946696,8000,0.118419071861614,8.98719682066197,9.05765528431053,9.98539006815576,9.03076923076923,415.368639667705,180,43335,0,0,0,0,9 +"6778",2011,47143,"TN","47","143",32088,0.965594614809274,2167,0.136904761904762,7.68109900153636,8.29729437026692,9.15461622320382,11.4307692307692,516.129032258065,96,18600,0,0,0,0,9 +"6779",2011,47145,"TN","47","145",53996,0.959293280983777,2763,0.159363656567153,7.92407232492342,8.79679268767466,9.67771554986823,9.21538461538461,624.402676011469,196,31390,0,0,0,0,9 +"6780",2011,47147,"TN","47","147",66775,0.908618494945713,3741,0.124163234743542,8.22710823434815,9.11316846022391,9.92309408217505,8.53076923076923,449.187244074947,181,40295,0,0,0,0,9 +"6781",2011,47149,"TN","47","149",269206,0.822849416432026,25177,0.0977095607081566,10.133686158324,10.5715989366249,11.349912295709,8.07692307692308,292.498279421886,493,168548,0,0,0,0,9 +"6782",2011,47151,"TN","47","151",22107,0.991269733568553,1342,0.126340073279957,7.20191631753163,7.99934295271328,8.77986510086385,17.7461538461538,818.84897643878,106,12945,0,0,0,0,9 +"6783",2011,47153,"TN","47","153",14272,0.982903587443946,795,0.142096412556054,6.67834211465433,7.55485852104068,8.34117174717076,10.3461538461538,491.135601341639,41,8348,0,0,0,0,9 +"6784",2011,47155,"TN","47","155",91201,0.9715682942073,5572,0.141522571024441,8.6255093348997,9.39789819556538,10.2352702389568,10.1615384615385,472.300229767679,259,54838,0,0,0,0,9 +"6785",2011,47157,"TN","47","157",933321,0.43541932518394,68559,0.119046930263007,11.135449967401,11.7207685589943,12.5990568569359,9.66153846153846,449.9057761184,2545,565674,0,0,0,0,9 +"6786",2011,47159,"TN","47","159",19211,0.966321378376972,1089,0.132892613606788,6.99301512293296,7.81963630236759,8.6652683094816,10.4,611.246943765281,70,11452,0,0,0,0,9 +"6787",2011,47161,"TN","47","161",13223,0.963699614308402,698,0.148226574907358,6.54821910276237,7.41336733569524,8.25244609024695,12.5846153846154,649.603741717552,50,7697,0,0,0,0,9 +"6788",2011,47163,"TN","47","163",156895,0.964415692023328,8610,0.145218139520061,9.06067959742178,9.92495545915137,10.7548130055579,8.42307692307692,490.377296944656,451,91970,0,0,0,0,9 +"6789",2011,47165,"TN","47","165",163713,0.91301240585659,8930,0.126715654834986,9.09717167387054,10.0496204614841,10.8213170998263,7.97692307692308,387.141587586954,379,97897,0,0,0,0,9 +"6790",2011,47167,"TN","47","167",61313,0.795426744736027,3818,0.117283447229788,8.24748200428569,9.03610602536485,9.82730820579731,10.4692307692308,433.19905082501,157,36242,0,0,0,0,9 +"6791",2011,47169,"TN","47","169",7812,0.891449052739375,465,0.140424987199181,6.14203740558736,6.90775527898214,7.77527584648686,10.5923076923077,492.294520547945,23,4672,0,0,0,0,9 +"6792",2011,47171,"TN","47","171",18303,0.99043872589193,896,0.151887668688193,6.79794041297493,7.7332456465298,8.58783803098557,11.2,563.750822136616,60,10643,0,0,0,0,9 +"6793",2011,47173,"TN","47","173",19193,0.990569478455687,1165,0.137393841504715,7.0604763659998,7.81601383915903,8.66025403425689,10.3153846153846,669.448791514519,77,11502,0,0,0,0,9 +"6794",2011,47175,"TN","47","175",5555,0.987218721872187,267,0.170837083708371,5.58724865840025,6.5510803350434,7.4079243225596,11.8923076923077,579.091740323072,19,3281,0,0,0,0,9 +"6795",2011,47177,"TN","47","177",39910,0.952618391380606,2249,0.129140566274117,7.71824095195932,8.58091888229678,9.36211680694198,10.3615384615385,596.20828686626,139,23314,0,0,0,0,9 +"6796",2011,47179,"TN","47","179",123910,0.936252118473085,10713,0.130974094100557,9.27921323626256,9.68731961495834,10.5549529941014,8.18461538461538,466.414243976575,356,76327,0,0,0,0,9 +"6797",2011,47181,"TN","47","181",16997,0.931752662234512,1053,0.132317467788433,6.95939851213398,7.78655180642871,8.39208338037339,10.9,472.723834735747,50,10577,0,0,0,0,9 +"6798",2011,47183,"TN","47","183",34860,0.901950659781985,4360,0.124670109007458,8.38022733634308,8.25738565573044,9.24994562656854,11.5615384615385,476.580176190247,99,20773,0,0,0,0,9 +"6799",2011,47185,"TN","47","185",26058,0.969836518535575,1465,0.140954793153734,7.28961052145117,8.08332860878638,8.93287262193137,10,683.477106834771,103,15070,0,0,0,0,9 +"6800",2011,47187,"TN","47","187",188464,0.91619089056796,7246,0.125355505560744,8.88820487145502,10.289090031548,10.9522441095193,5.94615384615385,191.468800520217,212,110723,0,0,0,0,9 +"6801",2011,47189,"TN","47","189",116814,0.912313592548838,6067,0.130617905388053,8.7106195279423,9.7473014693468,10.492606662672,7.66923076923077,404.106287043076,285,70526,0,0,0,0,9 +"6802",2011,48001,"TX","48","001",58404,0.761762892952538,3541,0.11807410451339,8.1721644521119,9.15027184551006,9.45634070543332,7.51538461538462,580.36181114713,222,38252,0,0,0,0,9 +"6803",2011,48003,"TX","48","003",15387,0.957951517514785,1076,0.102359134334178,6.98100574072173,7.54591815120932,8.38251828808963,5.17692307692308,489.693656758911,43,8781,0,0,0,0,9 +"6804",2011,48005,"TX","48","005",87299,0.823331309636995,5824,0.117790581793606,8.66974258987652,9.30528684928514,10.1342817627809,8.16923076923077,501.313441215986,250,49869,0,0,0,0,9 +"6805",2011,48007,"TX","48","007",23222,0.947721987770218,1088,0.164111618292998,6.99209642741589,7.71423114484909,8.7579408766788,9.04615384615385,568.636873298094,71,12486,0,0,0,0,9 +"6806",2011,48009,"TX","48","009",8840,0.976357466063348,456,0.140950226244344,6.12249280951439,6.95939851213398,7.82564473221999,6.26153846153846,493.485984998026,25,5066,0,0,0,0,9 +"6807",2011,48013,"TX","48","013",45506,0.970069880894827,2707,0.120467630642113,7.9035962896143,8.63177109612367,9.45312967553723,8.23076923076923,450.788880540947,114,25289,0,0,0,0,9 +"6808",2011,48015,"TX","48","015",28612,0.88714525373969,1482,0.142073255976513,7.30114780585603,8.11342663994365,9.00060650757189,8.13846153846154,380.134886572655,62,16310,0,0,0,0,9 +"6809",2011,48019,"TX","48","019",20526,0.977004774432427,822,0.188297768683621,6.71174039505618,7.64826303090192,8.70863965598719,7.74615384615385,460.868107926931,55,11934,0,0,0,0,9 +"6810",2011,48021,"TX","48","021",75058,0.886687628234166,4009,0.13774680913427,8.29629711264251,9.1984701994057,9.97938321153939,8.2,381.969263759828,171,44768,0,0,0,0,9 +"6811",2011,48023,"TX","48","023",3696,0.96482683982684,172,0.135010822510822,5.14749447681345,5.93489419561959,6.88857245956536,6.21538461538462,673.575129533679,13,1930,0,0,0,0,9 +"6812",2011,48025,"TX","48","025",32316,0.897883401411066,2724,0.104530263646491,7.9098566672694,8.4525479979227,8.87402812255634,8.89230769230769,329.249987895221,68,20653,0,0,0,0,9 +"6813",2011,48027,"TX","48","027",315915,0.702552901888166,29475,0.0894512764509441,10.2912977254056,10.5763810040688,11.4684300650837,8.26923076923077,314.092937667886,594,189116,0,0,0,0,9 +"6814",2011,48029,"TX","48","029",1755360,0.870112683438155,137452,0.103604958527026,11.8310300442333,12.36493790851,13.1838930013475,7.42307692307692,334.616348016299,3500,1045974,0,0,0,0,9 +"6815",2011,48031,"TX","48","031",10569,0.968776610843031,417,0.18232566941054,6.0330862217988,7.06987412845857,8.01928379291679,5.87692307692308,441.176470588235,27,6120,0,0,0,0,9 +"6816",2011,48035,"TX","48","035",18260,0.96538882803943,866,0.148795180722892,6.76388490856244,7.5963923040642,8.49801037199946,8.58461538461538,568.932236106878,56,9843,0,0,0,0,9 +"6817",2011,48037,"TX","48","037",92832,0.727270768700448,5932,0.123007152705963,8.68811670325782,9.39149458101813,10.1744684332645,8.53076923076923,452.01035249517,248,54866,0,0,0,0,9 +"6818",2011,48039,"TX","48","039",319214,0.799833340642954,18486,0.109919990977839,9.82476896782472,10.7728124551295,11.4464544110268,8.27692307692308,315.178497129067,606,192272,0,0,0,0,9 +"6819",2011,48041,"TX","48","041",197481,0.819354773370603,45930,0.0735918898526947,10.7348737773198,9.88103742369854,11.0396043389122,6.23076923076923,178.641693554734,227,127070,0,0,0,0,9 +"6820",2011,48043,"TX","48","043",9350,0.955401069518717,700,0.15475935828877,6.5510803350434,6.95272864462487,7.9291264873068,5.73076923076923,456.460674157303,26,5696,0,0,0,0,9 +"6821",2011,48047,"TX","48","047",7223,0.979233005676312,492,0.12252526650976,6.19847871649231,6.49677499018586,7.53689712956617,11.0076923076923,647.249190938511,24,3708,0,0,0,0,9 +"6822",2011,48049,"TX","48","049",37995,0.945913936044216,2378,0.132201605474405,7.77401507725073,8.38389034410182,9.28014624622014,8.29230769230769,475.182310044695,101,21255,0,0,0,0,9 +"6823",2011,48051,"TX","48","051",17330,0.862088863242931,916,0.145239469128679,6.82001636467413,7.59488438721652,8.50936261230105,7.53846153846154,450.404340260006,44,9769,0,0,0,0,9 +"6824",2011,48053,"TX","48","053",43221,0.960944911038615,2172,0.148608315402235,7.68340368105383,8.47762041629641,9.42149231043801,6.95384615384615,386.100386100386,93,24087,0,0,0,0,9 +"6825",2011,48055,"TX","48","055",38432,0.900161323896753,3112,0.117896544546211,8.04302088529828,8.48363640788739,9.31127109055462,8.68461538461538,340.898896564098,76,22294,0,0,0,0,9 +"6826",2011,48057,"TX","48","057",21353,0.915187561466773,1276,0.124057509483445,7.15148546390474,7.7944112057266,8.6769282495374,8.80769230769231,368.910874486459,44,11927,0,0,0,0,9 +"6827",2011,48059,"TX","48","059",13513,0.971434914526752,664,0.147931621401613,6.49828214947643,7.30720231476474,8.26075135470051,7.4,433.982114676486,33,7604,0,0,0,0,9 +"6828",2011,48061,"TX","48","061",413116,0.977887566688291,28725,0.0937218602039137,10.265523102717,10.8722378983826,11.6550151308763,11.8230769230769,297.161172161172,649,218400,0,0,0,0,9 +"6829",2011,48063,"TX","48","063",12421,0.797117784397392,730,0.13420819579744,6.59304453414244,7.18992217074581,8.1656479252975,9.24615384615385,692.50036835126,47,6787,0,0,0,0,9 +"6830",2011,48065,"TX","48","065",6240,0.974519230769231,243,0.147115384615385,5.49306144334055,6.53233429222235,7.47079377419506,5.15384615384615,375.072129255626,13,3466,0,0,0,0,9 +"6831",2011,48067,"TX","48","067",30279,0.812411242114997,1486,0.141484196968196,7.3038432252777,8.14931284363534,9.06334734823552,11,615.918196495844,103,16723,0,0,0,0,9 +"6832",2011,48069,"TX","48","069",8089,0.955124242798863,437,0.113116578068983,6.07993319509559,6.80350525760834,7.63482067774554,5.19230769230769,285.306704707561,12,4206,0,0,0,0,9 +"6833",2011,48071,"TX","48","071",35693,0.887512957722803,1925,0.122348919956294,7.56268124672188,8.55583681500844,9.260082463871,9.6,379.542651105418,80,21078,0,0,0,0,9 +"6834",2011,48073,"TX","48","073",51082,0.82430210250186,3286,0.123937982068047,8.09742629859721,8.73327184500832,9.5244209182825,8.38461538461539,483.735277621985,138,28528,0,0,0,0,9 +"6835",2011,48077,"TX","48","077",10668,0.972628421447319,458,0.157105361829771,6.12686918411419,7.10002716662926,8.0245348716057,6.7,494.80455220188,30,6063,0,0,0,0,9 +"6836",2011,48083,"TX","48","083",8748,0.954160951074531,363,0.154778235025149,5.89440283426485,6.88857245956536,7.77695440332244,9.08461538461538,511.50895140665,24,4692,0,0,0,0,9 +"6837",2011,48085,"TX","48","085",812083,0.773866710668737,41329,0.100472488649559,10.6293197117134,11.8431424640361,12.4479280333661,6.97692307692308,175.898843088181,875,497445,0,0,0,0,9 +"6838",2011,48089,"TX","48","089",20803,0.846224102292939,1059,0.146757679180887,6.96508034560141,7.6889133368648,8.6447065117152,8,395.952485701716,45,11365,0,0,0,0,9 +"6839",2011,48091,"TX","48","091",112128,0.959251926369863,5383,0.1521475456621,8.59100111856096,9.54215893991605,10.4165806037445,7.10769230769231,363.107093611154,237,65270,0,0,0,0,9 +"6840",2011,48093,"TX","48","093",13870,0.977865897620764,696,0.134967555875991,6.54534966033442,7.3356339819272,8.1886891244442,7.66923076923077,505.326413548211,37,7322,0,0,0,0,9 +"6841",2011,48097,"TX","48","097",38452,0.942837823780298,2383,0.135493602413399,7.77611547709874,8.3670677328386,9.29605924737872,6.26923076923077,421.525923844316,90,21351,0,0,0,0,9 +"6842",2011,48099,"TX","48","099",76656,0.769137445209768,7422,0.0777108119390524,8.91220384162054,9.29550838434606,10.108344926163,7.92307692307692,255.792011741273,122,47695,0,0,0,0,9 +"6843",2011,48111,"TX","48","111",6887,0.953971250181501,439,0.108465224335705,6.08449941307517,6.83410873881384,7.53262361878879,4.52307692307692,530.30303030303,21,3960,0,0,0,0,9 +"6844",2011,48113,"TX","48","113",2409257,0.697341960612753,172252,0.0986615375611651,12.056713799839,12.7557708449335,13.5131167973667,8.4,318.376972230907,4674,1468071,0,0,0,0,9 +"6845",2011,48115,"TX","48","115",13750,0.9096,1100,0.0983272727272727,7.00306545878646,7.37838371299671,8.0323601479245,7.72307692307692,358.024691358025,29,8100,0,0,0,0,9 +"6846",2011,48117,"TX","48","117",19519,0.962139453865464,1332,0.0996977304165172,7.19443685110033,7.74109909003537,8.54849804124465,5.60769230769231,326.139088729017,34,10425,0,0,0,0,9 +"6847",2011,48119,"TX","48","119",5145,0.896015549076774,277,0.1444120505345,5.62401750618734,6.35437004079735,7.26892012819372,8.30769230769231,525.210084033613,15,2856,0,0,0,0,9 +"6848",2011,48121,"TX","48","121",684842,0.822389689884674,50720,0.0956103743637219,10.8340755891111,11.6147868658601,12.2991166230732,6.77692307692308,204.987167942892,881,429783,0,0,0,0,9 +"6849",2011,48123,"TX","48","123",20207,0.886969861929034,978,0.135398624239125,6.88550967003482,7.82003798945875,8.54694614956558,6.66923076923077,458.596521588648,53,11557,0,0,0,0,9 +"6850",2011,48127,"TX","48","127",10109,0.97398357898902,622,0.124839252151548,6.43294009273918,7.05703698169789,7.90875473878325,8.05384615384615,561.902978085784,30,5339,0,0,0,0,9 +"6851",2011,48131,"TX","48","131",11778,0.977160808286636,854,0.105620648667006,6.74993119378857,7.21964204013074,7.97659540931658,9.72307692307692,580.483213053028,37,6374,0,0,0,0,9 +"6852",2011,48133,"TX","48","133",18583,0.963192164881881,1127,0.135069687348652,7.02731451403978,7.48324441607385,8.51016857647927,7.92307692307692,464.271295922487,46,9908,0,0,0,0,9 +"6853",2011,48135,"TX","48","135",139631,0.925525134103458,11260,0.102470081858613,9.32901190169368,9.72154592356046,10.6082915279031,6.36153846153846,493.323442136499,399,80880,0,0,0,0,9 +"6854",2011,48139,"TX","48","139",152419,0.887789580039234,9497,0.115438363983493,9.15873123824295,9.95084812389597,10.7222316055053,8,350.494849298449,312,89017,0,0,0,0,9 +"6855",2011,48141,"TX","48","141",819796,0.936219498509385,67497,0.0951980736671074,11.1198384314285,11.5668547819953,12.3867386660132,9.8,281.555632510749,1309,464917,0,0,0,0,9 +"6856",2011,48143,"TX","48","143",38925,0.960847784200385,5640,0.103326910725755,8.6376393444921,8.30967689598773,9.35478697634121,6.23846153846154,268.131868131868,61,22750,0,0,0,0,9 +"6857",2011,48145,"TX","48","145",17853,0.724472077521985,1258,0.125189043858175,7.13727843726039,7.69757534680234,8.66233195708248,8.51538461538462,458.458083832335,49,10688,0,0,0,0,9 +"6858",2011,48147,"TX","48","147",33884,0.908422854444576,2032,0.130769684806989,7.61677580869837,8.33447155460094,9.089979015305,8.52307692307692,505.305709954523,100,19790,0,0,0,0,9 +"6859",2011,48149,"TX","48","149",24734,0.915500929894073,1060,0.155939193013665,6.96602418710611,7.81075811652936,8.80926561216931,5.97692307692308,394.932935916542,53,13420,0,0,0,0,9 +"6860",2011,48157,"TX","48","157",605979,0.589540231592184,32704,0.115023787953048,10.3952526735634,11.4590393384124,12.1486659655806,7.33846153846154,207.695909234438,763,367364,0,0,0,0,9 +"6861",2011,48159,"TX","48","159",10561,0.937221853991099,556,0.139001988448064,6.32076829425058,7.02553831463852,7.97487690055888,8.4,452.488687782805,26,5746,0,0,0,0,9 +"6862",2011,48161,"TX","48","161",19602,0.812927252321192,924,0.135700438730742,6.82871207164168,7.85243908535751,8.53679972105516,8.08461538461538,378.888007753987,43,11349,0,0,0,0,9 +"6863",2011,48163,"TX","48","163",17491,0.930592876336402,1620,0.0985078040134927,7.39018142822643,7.68524360797583,8.25945819533241,6.72307692307692,313.063276728963,33,10541,0,0,0,0,9 +"6864",2011,48165,"TX","48","165",17907,0.96353381359245,1226,0.0853856033953203,7.11151211649616,7.61726781362835,8.45062594714412,5.24615384615385,293.163019579102,28,9551,0,0,0,0,9 +"6865",2011,48167,"TX","48","167",295632,0.813081804405477,18090,0.127601206905883,9.80311457838934,10.5718039859656,11.4143640054796,9.10769230769231,393.518389309696,705,179153,0,0,0,0,9 +"6866",2011,48171,"TX","48","171",25041,0.979034383610878,1024,0.156782876083224,6.93147180559945,7.77233157516961,8.79815271810719,5.5,343.07992202729,44,12825,0,0,0,0,9 +"6867",2011,48177,"TX","48","177",19753,0.899154558801195,1193,0.122310535108591,7.08422642209792,7.72400465667607,8.57734711423598,6.33846153846154,475.972540045767,52,10925,0,0,0,0,9 +"6868",2011,48179,"TX","48","179",22663,0.925296739178396,1272,0.117195428672285,7.14834574390007,7.98002359231065,8.66267785815822,7.06923076923077,439.137134052388,57,12980,0,0,0,0,9 +"6869",2011,48181,"TX","48","181",121429,0.903976809493614,7944,0.131476006555271,8.98017220572501,9.56906321753222,10.4828499437895,8.12307692307692,492.624946298153,344,69830,0,0,0,0,9 +"6870",2011,48183,"TX","48","183",122719,0.767346539655636,9114,0.115084053813998,9.11756697182383,9.5979808951718,10.4938542197016,7.39230769230769,478.589774178608,341,71251,0,0,0,0,9 +"6871",2011,48185,"TX","48","185",26663,0.819300153771144,1597,0.140681843753516,7.37588214821501,8.13739583005665,8.84202652949881,8.10769230769231,513.039760581445,84,16373,0,0,0,0,9 +"6872",2011,48187,"TX","48","187",135816,0.892148200506568,7849,0.112151734699888,8.96814141412681,9.86250929580757,10.6053962387646,6.69230769230769,276.435754048262,218,78861,0,0,0,0,9 +"6873",2011,48189,"TX","48","189",36383,0.915867300662397,3019,0.0979028667234697,8.01268092970684,8.37701116081637,9.14942195700677,7.71538461538462,355.082112738571,72,20277,0,0,0,0,9 +"6874",2011,48193,"TX","48","193",8393,0.970213272965567,399,0.135470034552603,5.98896141688986,6.78897174299217,7.68109900153636,6.56923076923077,573.263013070397,25,4361,0,0,0,0,9 +"6875",2011,48199,"TX","48","199",55074,0.92824200167048,3208,0.127537495006718,8.0734029689864,8.84534519642173,9.69867495790664,9.86923076923077,464.275698750506,149,32093,0,0,0,0,9 +"6876",2011,48201,"TX","48","201",4179279,0.719944756021314,302416,0.101242822027436,12.6195588319407,13.3024023310407,14.0612715946712,8.09230769230769,297.003570082528,7573,2549801,0,0,0,0,9 +"6877",2011,48203,"TX","48","203",66350,0.75731725697061,4239,0.128696307460437,8.35208267135264,8.9850695596458,9.88573083094687,8.8,460.350074124164,177,38449,0,0,0,0,9 +"6878",2011,48207,"TX","48","207",5956,0.938549361987911,327,0.135661517797179,5.78996017089725,6.49072353450251,7.27793857294566,5.52307692307692,603.682463024449,20,3313,0,0,0,0,9 +"6879",2011,48209,"TX","48","209",163161,0.927599119887718,21437,0.103921893099454,9.97287368002114,9.9338227523322,10.8326155332118,6.92307692307692,212.143235970064,216,101818,0,0,0,0,9 +"6880",2011,48213,"TX","48","213",78829,0.917948978167933,4377,0.141470778520595,8.3841188371909,9.10486873903395,10.0146263417701,8.79230769230769,537.32708357151,235,43735,0,0,0,0,9 +"6881",2011,48215,"TX","48","215",795305,0.97576024292567,59744,0.0788251048339945,10.9978240463414,11.5615251348063,12.2942941233857,11.9307692307692,246.952313722135,1039,420729,0,0,0,0,9 +"6882",2011,48217,"TX","48","217",35210,0.914200511218404,2007,0.137574552683897,7.60439634879634,8.27359179819963,9.19634286233233,8.5,502.59067357513,97,19300,0,0,0,0,9 +"6883",2011,48219,"TX","48","219",22907,0.941197014013184,1827,0.114113589732396,7.51043055637801,7.78696700261487,8.76389700713946,6.55384615384615,477.196276304467,61,12783,0,0,0,0,9 +"6884",2011,48221,"TX","48","221",51564,0.9747304320844,2412,0.153789465518579,7.78821155784708,8.59433940059289,9.5719232522675,8.21538461538461,451.244447578086,128,28366,0,0,0,0,9 +"6885",2011,48223,"TX","48","223",35261,0.905135985933468,2068,0.127194350699073,7.63433723562832,8.3786205415523,9.20964012686179,7.59230769230769,496.141124586549,99,19954,0,0,0,0,9 +"6886",2011,48225,"TX","48","225",23433,0.721589211795331,1171,0.135748730422908,7.06561336359772,7.98956044933387,8.68558484267669,7.99230769230769,419.982316534041,57,13572,0,0,0,0,9 +"6887",2011,48227,"TX","48","227",34967,0.899076271913518,2622,0.116853032859553,7.87169266432365,8.34426735626264,9.05520587502619,6.75384615384615,540.641312453393,116,21456,0,0,0,0,9 +"6888",2011,48231,"TX","48","231",86688,0.883455610926541,5978,0.125692137320044,8.69584134284388,9.27472263090545,10.1425438223104,9.13076923076923,487.135642422555,245,50294,0,0,0,0,9 +"6889",2011,48233,"TX","48","233",22023,0.940516732506925,1189,0.132588657312809,7.08086789669078,7.85399308722424,8.7224171414275,8.18461538461538,521.083854417188,65,12474,0,0,0,0,9 +"6890",2011,48237,"TX","48","237",9031,0.945299523862252,615,0.119920274609678,6.42162226780652,7.08590146436561,7.69984240739699,7.16153846153846,348.879911861917,19,5446,0,0,0,0,9 +"6891",2011,48239,"TX","48","239",14050,0.910106761565836,743,0.13373665480427,6.61069604471776,7.31721240835984,8.26513562993738,6.43076923076923,411.999485000644,32,7767,0,0,0,0,9 +"6892",2011,48241,"TX","48","241",36201,0.81003287202011,1967,0.134499046987652,7.58426481838906,8.34117174717076,9.23464266449915,12.7384615384615,545.964290984211,111,20331,0,0,0,0,9 +"6893",2011,48245,"TX","48","245",253500,0.602,19544,0.117917159763314,9.88042361293758,10.353001443479,11.186460983296,11.7384615384615,414.631115645458,634,152907,0,0,0,0,9 +"6894",2011,48249,"TX","48","249",41245,0.975366711116499,2705,0.114389622984604,7.90285719128058,8.46800294722547,9.34888418142424,8.22307692307692,544.384932829924,124,22778,0,0,0,0,9 +"6895",2011,48251,"TX","48","251",152084,0.945937771231688,9081,0.118868520028405,9.11393959768983,9.92275081871697,10.6996650359155,8.03846153846154,371.601580425999,332,89343,0,0,0,0,9 +"6896",2011,48253,"TX","48","253",20271,0.848404124118198,1536,0.116866459474126,7.33693691370762,8.03527891114467,8.36053938137086,8.53076923076923,406.963599366946,54,13269,0,0,0,0,9 +"6897",2011,48255,"TX","48","255",14955,0.88505516549649,1205,0.113540621865597,7.09423484592476,7.60589000105312,8.08886878916199,8.03076923076923,484.05766600021,46,9503,0,0,0,0,9 +"6898",2011,48257,"TX","48","257",105212,0.87049005816827,5581,0.113418621450025,8.62712325078843,9.6177369469341,10.353926026287,8.29230769230769,419.423536488222,258,61513,0,0,0,0,9 +"6899",2011,48259,"TX","48","259",34424,0.973448756681385,1554,0.151522193818266,7.34858753092759,8.30474226964077,9.20482519128807,6.26153846153846,219.130612036895,43,19623,0,0,0,0,9 +"6900",2011,48265,"TX","48","265",49635,0.955575702629193,2671,0.146388637050468,7.89020821310996,8.4721958254855,9.50196466366059,6.88461538461539,540.123456790123,140,25920,0,0,0,0,9 +"6901",2011,48273,"TX","48","273",32034,0.918055815695823,4294,0.0958981082599738,8.36497397843873,8.10137467122858,9.09414357757367,8.3,401.628222523745,74,18425,0,0,0,0,9 +"6902",2011,48277,"TX","48","277",49869,0.83139826345024,3262,0.125909883895807,8.09009578318096,8.73020559553099,9.5858959496782,10.0923076923077,579.164297896532,163,28144,0,0,0,0,9 +"6903",2011,48279,"TX","48","279",14064,0.927474402730375,773,0.108219567690557,6.65027904858742,7.34342622914737,8.20275638165564,7.81538461538462,558.81150333924,41,7337,0,0,0,0,9 +"6904",2011,48281,"TX","48","281",19920,0.931676706827309,1033,0.13574297188755,6.94022246911964,7.82604401351897,8.66233195708248,7.8,395.987328405491,45,11364,0,0,0,0,9 +"6905",2011,48283,"TX","48","283",7000,0.982428571428571,1060,0.0941428571428571,6.96602418710611,6.64898455002478,7.33888813383888,7.02307692307692,460.29919447641,20,4345,0,0,0,0,9 +"6906",2011,48285,"TX","48","285",19317,0.916653724698452,862,0.148418491484185,6.75925527066369,7.61677580869837,8.54811029405096,6.13076923076923,406.464724668538,42,10333,0,0,0,0,9 +"6907",2011,48287,"TX","48","287",16555,0.8650558743582,872,0.133192389006343,6.77078942390898,7.55276208421415,8.4257355809274,6.69230769230769,434.688111280156,40,9202,0,0,0,0,9 +"6908",2011,48289,"TX","48","289",16829,0.909857983243211,771,0.144928397409234,6.64768837356333,7.40731771046942,8.42178300661158,8.96923076923077,629.277986310444,57,9058,0,0,0,0,9 +"6909",2011,48291,"TX","48","291",76005,0.868837576475232,5119,0.121597263337938,8.54071438645758,9.23649532945303,10.066838635698,11.4615384615385,499.70669389706,230,46027,0,0,0,0,9 +"6910",2011,48293,"TX","48","293",23587,0.797812354262942,1533,0.1332937635138,7.33498187887181,7.90912218321141,8.76888532613486,8.56923076923077,553.138137030754,75,13559,0,0,0,0,9 +"6911",2011,48297,"TX","48","297",11504,0.934457579972184,603,0.136474269819193,6.40191719672719,7.23128700432762,7.95577578153419,6.16923076923077,479.76011994003,32,6670,0,0,0,0,9 +"6912",2011,48299,"TX","48","299",19073,0.974781104178682,585,0.190111676191475,6.37161184723186,7.34729970074316,8.52416880515266,7.98461538461538,683.583635422061,66,9655,0,0,0,0,9 +"6913",2011,48303,"TX","48","303",283476,0.882413325995852,35784,0.100608164359593,10.4852561451127,10.3408388495066,11.3538828390625,6.2,370.918139775102,632,170388,0,0,0,0,9 +"6914",2011,48307,"TX","48","307",8256,0.957848837209302,376,0.146802325581395,5.9295891433899,6.77650699237218,7.7066129139642,6.12307692307692,565.738854944558,25,4419,0,0,0,0,9 +"6915",2011,48309,"TX","48","309",237847,0.814813724789465,23850,0.110087577308101,10.0795394963165,10.1950371365144,11.1647145994436,7.67692307692308,387.091130437318,531,137177,0,0,0,0,9 +"6916",2011,48313,"TX","48","313",13747,0.774423510584127,1240,0.108096311922601,7.12286665859908,7.4899708988348,8.06526520889773,8.56153846153846,260.540028422549,22,8444,0,0,0,0,9 +"6917",2011,48315,"TX","48","315",10485,0.75584167858846,469,0.171292322365284,6.15060276844628,6.98749024700099,8.03430693633949,10.7538461538462,798.270414102777,48,6013,0,0,0,0,9 +"6918",2011,48321,"TX","48","321",36675,0.843544648943422,2247,0.132297205180641,7.71735127218533,8.28928832300032,9.24541789858888,11.9846153846154,485.226999759789,101,20815,0,0,0,0,9 +"6919",2011,48323,"TX","48","323",55233,0.977567758405301,3990,0.0944725073778357,8.29154650988391,8.84692850009902,9.6073027675926,14.4076923076923,309.363398872542,90,29092,0,0,0,0,9 +"6920",2011,48325,"TX","48","325",46521,0.953784312461039,3042,0.130156273510888,8.02027047281924,8.63408694288774,9.45720044990771,7.70769230769231,343.053173241853,92,26818,0,0,0,0,9 +"6921",2011,48329,"TX","48","329",140247,0.901937296341455,10027,0.113057676813051,9.21303673352392,9.70814154461942,10.6393589173059,4.91538461538462,360.639469448512,298,82631,0,0,0,0,9 +"6922",2011,48331,"TX","48","331",24610,0.87687931735067,1237,0.13592035757822,7.12044437239249,7.90544164906029,8.81209910895734,10.4923076923077,485.510544682142,64,13182,0,0,0,0,9 +"6923",2011,48335,"TX","48","335",9397,0.848036607427903,934,0.108651697350218,6.83947643822884,7.14755927118945,7.57044325205737,7.72307692307692,393.120393120393,24,6105,0,0,0,0,9 +"6924",2011,48337,"TX","48","337",19760,0.976214574898785,1030,0.138410931174089,6.93731408122368,7.71244383427499,8.60703389541603,6.71538461538462,692.392909896603,75,10832,0,0,0,0,9 +"6925",2011,48339,"TX","48","339",471456,0.915512794407113,26246,0.119678188420553,10.1752688754562,11.109952249517,11.8593268158122,7.29230769230769,334.689217155498,938,280260,0,0,0,0,9 +"6926",2011,48341,"TX","48","341",22075,0.87678369195923,1573,0.0981653454133635,7.36073990305828,7.91388671485608,8.68202943386917,4.99230769230769,304.126253493342,37,12166,0,0,0,0,9 +"6927",2011,48343,"TX","48","343",12769,0.746652047928577,687,0.140104941655572,6.53233429222235,7.2283884515736,8.20930841164694,12.3769230769231,610.275333522566,43,7046,0,0,0,0,9 +"6928",2011,48347,"TX","48","347",65656,0.787848787620324,9008,0.106859997563056,9.10586835037947,8.80417501875363,9.89141497130186,7.21538461538462,462.367003809274,176,38065,0,0,0,0,9 +"6929",2011,48349,"TX","48","349",48072,0.828444832750874,3053,0.12333582958895,8.02387999273488,8.67145815042767,9.52193426447428,8.37692307692308,432.997387084733,116,26790,0,0,0,0,9 +"6930",2011,48351,"TX","48","351",14562,0.780868012635627,911,0.137687130888614,6.81454289725996,7.49220304261874,8.30523682949259,13.1384615384615,609.537468626748,51,8367,0,0,0,0,9 +"6931",2011,48353,"TX","48","353",15147,0.928764771902027,903,0.133953918267644,6.80572255341699,7.45587668749182,8.32845106681936,7.26923076923077,554.283648632365,46,8299,0,0,0,0,9 +"6932",2011,48355,"TX","48","355",343278,0.924615035044483,26040,0.120313565098841,10.1673890963225,10.6372247007002,11.541979285361,8.21538461538461,403.148491388847,820,203399,0,0,0,0,9 +"6933",2011,48357,"TX","48","357",10444,0.971562619685944,640,0.0961317502872463,6.46146817635372,7.1777824161952,7.9359451033537,4.95384615384615,465.83850931677,27,5796,0,0,0,0,9 +"6934",2011,48361,"TX","48","361",82350,0.89197328476017,5131,0.127273831208257,8.54305585094196,9.23112291115871,10.0933638337342,11.8769230769231,551.604006386994,266,48223,0,0,0,0,9 +"6935",2011,48363,"TX","48","363",28059,0.957553726077194,1595,0.136426814925692,7.37462901521894,8.0845624152353,8.9987547694957,8.16153846153846,505.114282106327,80,15838,0,0,0,0,9 +"6936",2011,48365,"TX","48","365",24008,0.820476507830723,1468,0.136621126291236,7.29165620917446,7.92262357421729,8.82981174915805,8.46153846153846,574.796274738067,79,13744,0,0,0,0,9 +"6937",2011,48367,"TX","48","367",118326,0.961589168906242,6881,0.131585619390497,8.83651926920248,9.66230731373577,10.4533415632696,7.1,365.258016564026,258,70635,0,0,0,0,9 +"6938",2011,48371,"TX","48","371",15638,0.939826064714158,997,0.112546361427292,6.90475076996184,7.70526247486633,8.23562571996431,6.20769230769231,357.51840168244,34,9510,0,0,0,0,9 +"6939",2011,48373,"TX","48","373",45582,0.851037690316353,2530,0.145210828835944,7.83597458172157,8.60721669406383,9.36879605766816,9.67692307692308,614.287881086,162,26372,0,0,0,0,9 +"6940",2011,48375,"TX","48","375",122268,0.828475152942716,9047,0.105252396375176,9.11018849002574,9.64769166894667,10.4296351923999,6.13076923076923,468.972447868688,336,71646,0,0,0,0,9 +"6941",2011,48379,"TX","48","379",10990,0.951865332120109,481,0.158689717925387,6.17586727010576,7.11963563801764,8.04398443122155,8.46153846153846,541.960913122023,33,6089,0,0,0,0,9 +"6942",2011,48381,"TX","48","381",123480,0.943586005830904,9334,0.121112730806608,9.14141892650976,9.62145615159316,10.53182950973,5.11538461538462,284.650755419312,208,73072,0,0,0,0,9 +"6943",2011,48387,"TX","48","387",12681,0.805299266619352,598,0.147385852850722,6.39359075395063,7.27517231945277,8.19063168090354,12.4615384615385,687.974774258277,48,6977,0,0,0,0,9 +"6944",2011,48389,"TX","48","389",14095,0.927279177013125,1345,0.0954239091876552,7.20414929203594,7.66715825531915,7.97487690055888,8.23846153846154,277.745631292674,24,8641,0,0,0,0,9 +"6945",2011,48391,"TX","48","391",7323,0.915471801174382,436,0.13464427147344,6.07764224334903,6.68710860786651,7.56631101477246,7.84615384615385,688.599846977812,27,3921,0,0,0,0,9 +"6946",2011,48395,"TX","48","395",16652,0.756906077348066,926,0.13475858755705,6.83087423464618,7.53476265703754,8.44419229853175,9.48461538461538,530.475262531125,49,9237,0,0,0,0,9 +"6947",2011,48397,"TX","48","397",81103,0.900681849006818,3594,0.10962603109626,8.1870210673435,9.44208681209766,10.0917911810076,7.32307692307692,269.945378239872,128,47417,0,0,0,0,9 +"6948",2011,48399,"TX","48","399",10503,0.954298771779492,508,0.138151004474912,6.23048144757848,7.01301578963963,7.93307977188041,7.56923076923077,411.522633744856,23,5589,0,0,0,0,9 +"6949",2011,48401,"TX","48","401",53644,0.803426291849974,3565,0.127488628737603,8.1789193328484,8.82864061741828,9.57934894307373,7.3,464.108910891089,150,32320,0,0,0,0,9 +"6950",2011,48403,"TX","48","403",10727,0.913582548708865,446,0.164724526894752,6.10031895202006,6.88755257166462,7.94661756324447,16.1923076923077,511.228774876757,28,5477,0,0,0,0,9 +"6951",2011,48405,"TX","48","405",8798,0.753353034780632,442,0.15014776085474,6.0913098820777,6.75925527066369,7.78530518253986,14.5692307692308,794.646591384358,38,4782,0,0,0,0,9 +"6952",2011,48407,"TX","48","407",26789,0.876292508119004,1441,0.15286124902012,7.27309259599952,7.98173328669189,8.93642970360832,9.95384615384615,628.431567109876,95,15117,0,0,0,0,9 +"6953",2011,48409,"TX","48","409",64455,0.957567295012024,4007,0.119339073772399,8.29579811063615,8.95519002452689,9.81071415238377,10.0307692307692,434.469780827983,157,36136,0,0,0,0,9 +"6954",2011,48415,"TX","48","415",16861,0.927940217068976,1116,0.119921712828421,7.01750614294126,7.59839932932396,8.34806422840827,5.88461538461539,448.156447341617,44,9818,0,0,0,0,9 +"6955",2011,48419,"TX","48","419",25736,0.807506994093876,1591,0.120686975442959,7.37211802833779,8.05547514175727,8.87276752991094,8.83846153846154,500.035213747447,71,14199,0,0,0,0,9 +"6956",2011,48423,"TX","48","423",212770,0.790205386097664,16218,0.116059594867698,9.6938770155045,10.1513627400695,11.0520322099524,8.03846153846154,403.821530582094,492,121836,0,0,0,0,9 +"6957",2011,48425,"TX","48","425",8428,0.962149976269578,430,0.13656858092074,6.06378520868761,6.94889722231331,7.78986855905471,8.05384615384615,443.224989447024,21,4738,0,0,0,0,9 +"6958",2011,48427,"TX","48","427",61640,0.992667099286178,4705,0.0830953926022064,8.45638105201948,8.97613587330255,9.72657136040072,16.6538461538462,342.401792940298,110,32126,0,0,0,0,9 +"6959",2011,48429,"TX","48","429",9535,0.962139486103828,609,0.130676455165181,6.4118182677099,6.95272864462487,7.81963630236759,8.06153846153846,486.61800486618,26,5343,0,0,0,0,9 +"6960",2011,48439,"TX","48","439",1848598,0.776596642428478,125908,0.103379425921698,11.7433067605077,12.4885109936589,13.2532196952045,7.8,308.564271231937,3444,1116137,0,0,0,0,9 +"6961",2011,48441,"TX","48","441",132867,0.883620462567831,14181,0.105692158323737,9.55965831946135,9.56324822934567,10.5792087792727,6.77692307692308,375.97844219171,293,77930,0,0,0,0,9 +"6962",2011,48445,"TX","48","445",12657,0.930157225250849,1011,0.108082484000948,6.91869521902047,7.23561914106675,8.06777619577889,7.33076923076923,442.906574394464,32,7225,0,0,0,0,9 +"6963",2011,48449,"TX","48","449",32447,0.863901131075292,2309,0.104601349893673,7.7445698093545,8.321664807135,9.10219821335648,8.49230769230769,464.751665826754,83,17859,0,0,0,0,9 +"6964",2011,48451,"TX","48","451",111761,0.923792736285466,10653,0.116283855727848,9.2735968216112,9.39764947028118,10.410967586051,6.45384615384615,380.691335465205,250,65670,0,0,0,0,9 +"6965",2011,48453,"TX","48","453",1061662,0.825770348755065,94979,0.0970836292530014,11.4614110935154,11.9984640495093,12.7475797420781,6.59230769230769,221.140834956845,1546,699102,0,0,0,0,9 +"6966",2011,48455,"TX","48","455",14687,0.891945257710901,660,0.16347790563083,6.49223983502047,7.29709100516042,8.3255483071614,9.87692307692308,719.969685486927,57,7917,0,0,0,0,9 +"6967",2011,48457,"TX","48","457",21676,0.873823583687027,1374,0.137525373685182,7.2254814727823,7.85243908535751,8.60135049942296,12.4,560.069417054508,71,12677,0,0,0,0,9 +"6968",2011,48459,"TX","48","459",39728,0.891537454691905,2151,0.138642770841724,7.67368812926773,8.45318786144033,9.35071082482346,8.22307692307692,657.459294885937,149,22663,0,0,0,0,9 +"6969",2011,48463,"TX","48","463",26587,0.971640275322526,1798,0.112724263737917,7.49443021503157,8.02420748577858,8.86939815988352,9.16153846153846,370.978098023828,52,14017,0,0,0,0,9 +"6970",2011,48465,"TX","48","465",48962,0.964891140067808,3831,0.0971161308770067,8.25088114470065,8.71751837264977,9.4834162920386,9.28461538461539,290.329784858185,78,26866,0,0,0,0,9 +"6971",2011,48467,"TX","48","467",52490,0.953343493998857,2674,0.140617260430558,7.89133075766189,8.73052880173936,9.60588981529697,8.23076923076923,532.932495217273,156,29272,0,0,0,0,9 +"6972",2011,48469,"TX","48","469",87560,0.908714024668799,5664,0.122944266788488,8.64188563537355,9.22038970782918,10.1496442581593,6.97692307692308,439.463854098,220,50061,0,0,0,0,9 +"6973",2011,48471,"TX","48","471",68405,0.745442584606388,10298,0.10882245449894,9.23970498060609,9.13151359143021,9.7503946464023,8.12307692307692,376.126759041093,174,46261,0,0,0,0,9 +"6974",2011,48473,"TX","48","473",44138,0.70542389777516,5818,0.108704517649191,8.66871183905515,8.44612674298238,9.4448589813119,8.46153846153846,309.68247745982,79,25510,0,0,0,0,9 +"6975",2011,48475,"TX","48","475",10671,0.923531065504639,653,0.119107862430887,6.48157712927643,7.06133436691044,8.00603417874901,6.74615384615385,592.617676938706,35,5906,0,0,0,0,9 +"6976",2011,48477,"TX","48","477",33952,0.794297832233742,2246,0.13760603204524,7.71690613529839,8.17695386822578,9.13905916997122,6.82307692307692,418.544752092724,78,18636,0,0,0,0,9 +"6977",2011,48479,"TX","48","479",255877,0.981115926792951,19277,0.0769744838340296,9.86666795439759,10.4644738294937,11.1760111306382,7.68461538461538,263.953928041651,363,137524,0,0,0,0,9 +"6978",2011,48481,"TX","48","481",41286,0.841447464031391,2537,0.125175604321077,7.83873755959928,8.44333134281778,9.35944979456402,8.52307692307692,462.123175261294,107,23154,0,0,0,0,9 +"6979",2011,48483,"TX","48","483",5447,0.955204699834771,222,0.133100789425372,5.40267738187228,6.46925031679577,7.3004728142678,5.1,472.653612424038,14,2962,0,0,0,0,9 +"6980",2011,48485,"TX","48","485",130825,0.847957194725779,12694,0.110720428052742,9.44888471986641,9.59205908635435,10.5147194398948,7.10769230769231,438.029125094458,342,78077,0,0,0,0,9 +"6981",2011,48487,"TX","48","487",13455,0.88859160163508,892,0.127684875510962,6.79346613258001,7.27724772663148,8.22335889947926,7.48461538461538,454.302512025655,34,7484,0,0,0,0,9 +"6982",2011,48489,"TX","48","489",22168,0.961024900757849,1943,0.0973926380368098,7.57198844937744,7.952615111651,8.60538720215215,16.9615384615385,351.919918667397,45,12787,0,0,0,0,9 +"6983",2011,48491,"TX","48","491",442366,0.862887292423016,23098,0.0976250435160026,10.047501312675,11.2013058281408,11.8192035547041,7.02307692307692,197.172605048973,524,265757,0,0,0,0,9 +"6984",2011,48493,"TX","48","493",43669,0.96603998259635,2149,0.137191142458037,7.67275789664251,8.66250492257629,9.46931428029122,6.72307692307692,297.13034639143,76,25578,0,0,0,0,9 +"6985",2011,48495,"TX","48","495",7160,0.946787709497207,410,0.110893854748603,6.01615715969835,6.7286286130847,7.57609734062311,7.41538461538462,424.681488883337,17,4003,0,0,0,0,9 +"6986",2011,48497,"TX","48","497",59938,0.969101404784944,3450,0.124311788848477,8.1461295100254,8.95969714695939,9.77098420272304,7.82307692307692,377.508444267832,133,35231,0,0,0,0,9 +"6987",2011,48499,"TX","48","499",42109,0.935049514355601,2145,0.154266308865088,7.67089483136212,8.34521792667643,9.32482909846088,8.90769230769231,611.098629521456,136,22255,0,0,0,0,9 +"6988",2011,48501,"TX","48","501",7971,0.961610839292435,506,0.102120185673065,6.22653666928747,6.8596149036542,7.67322312112171,5.44615384615385,254.276467868701,11,4326,0,0,0,0,9 +"6989",2011,48503,"TX","48","503",18354,0.964149504195271,986,0.13642802658821,6.89365635460264,7.6004023345004,8.53129331579502,7.39230769230769,629.983266069495,64,10159,0,0,0,0,9 +"6990",2011,48505,"TX","48","505",14223,0.989664627715672,1078,0.0860577937144062,6.98286275146894,7.43070708254597,8.23270600986098,8.36923076923077,336.202259279182,25,7436,0,0,0,0,9 +"6991",2011,48507,"TX","48","507",11872,0.97877358490566,967,0.106384770889488,6.87419849545329,7.21081845347222,8.03527891114467,14.4923076923077,542.351252193332,34,6269,0,0,0,0,9 +"6992",2011,49001,"UT","49","001",6560,0.962957317073171,312,0.109756097560976,5.74300318780948,6.59850902861452,7.39326309476384,8.39230769230769,326.700326700327,11,3367,0,0,0,0,9 +"6993",2011,49003,"UT","49","003",50242,0.96743760200629,2878,0.0959953823494288,7.96485088744731,8.65747673686329,9.48166437781514,7.82307692307692,288.446940944284,76,26348,0,0,0,0,9 +"6994",2011,49005,"UT","49","005",114800,0.951106271777003,15501,0.0737979094076655,9.6486598169553,9.37982994995476,10.3744594628464,5.51538461538462,175.61855029218,113,64344,0,0,0,0,9 +"6995",2011,49007,"UT","49","007",21308,0.965036605969589,1507,0.128167824291346,7.3178761986265,7.71735127218533,8.69667739339003,7.91538461538461,564.455881132232,68,12047,0,0,0,0,9 +"6996",2011,49011,"UT","49","011",311904,0.945624294654766,20743,0.0880559402893198,9.93996411934615,10.5951586442127,11.3581412511694,6.30769230769231,215.246217106225,368,170967,0,0,0,0,9 +"6997",2011,49013,"UT","49","013",18700,0.932245989304813,1222,0.0941176470588235,7.10824413973154,7.60240133566582,8.47449443688312,6.93846153846154,321.414222579349,32,9956,0,0,0,0,9 +"6998",2011,49015,"UT","49","015",10986,0.980156562898234,562,0.123338794829783,6.33150184989369,7.04228617193974,7.97384437594469,7.66153846153846,496.745460774238,29,5838,0,0,0,0,9 +"6999",2011,49019,"UT","49","019",9286,0.932586689640319,453,0.155502907602843,6.11589212548303,7.0833878476253,7.94271754057379,10.3307692307692,527.055516514406,30,5692,0,0,0,0,9 +"7000",2011,49021,"UT","49","021",46632,0.950227311717276,5580,0.091932578486876,8.62694405537536,8.45574322910002,9.47101089518111,8.60769230769231,318.058664153611,81,25467,0,0,0,0,9 +"7001",2011,49023,"UT","49","023",10317,0.976058931860037,518,0.0973151109818746,6.24997524225948,7.10414409298753,7.85631957140659,8.53846153846154,464.306442251886,24,5169,0,0,0,0,9 +"7002",2011,49025,"UT","49","025",7297,0.972043305468,308,0.168973550774291,5.73009978297357,6.52356230614951,7.60787807327851,7.86923076923077,458.365164247517,18,3927,0,0,0,0,9 +"7003",2011,49027,"UT","49","027",12571,0.963885132447697,585,0.117094900962533,6.37161184723186,7.14282740116162,8.02812905943176,5.55384615384615,329.308452250274,21,6377,0,0,0,0,9 +"7004",2011,49035,"UT","49","035",1047702,0.90717398649616,80424,0.0967231140152448,11.2950679180853,11.8493477003414,12.6391626482505,6.92307692307692,264.153660312153,1651,625015,0,0,0,0,9 +"7005",2011,49037,"UT","49","037",14850,0.476161616161616,1035,0.100740740740741,6.94215670569947,7.41697962138115,8.25738565573044,10.4230769230769,311.32442599559,24,7709,0,0,0,0,9 +"7006",2011,49039,"UT","49","039",28000,0.958,2787,0.0976071428571429,7.93272102748195,8.0375431851187,8.81180122393875,8.23076923076923,344.281484541761,50,14523,0,0,0,0,9 +"7007",2011,49041,"UT","49","041",20872,0.973409352242238,1116,0.10559601379839,7.01750614294126,7.70751219460034,8.58410389669886,7.71538461538462,382.712592177728,41,10713,0,0,0,0,9 +"7008",2011,49043,"UT","49","043",37438,0.968694908916075,1888,0.131711095678188,7.54327334670545,8.60739945930239,9.33846969968671,6.46153846153846,154.168986338915,36,23351,0,0,0,0,9 +"7009",2011,49045,"UT","49","045",59198,0.960556099868239,3079,0.0880435149836143,8.0323601479245,9.05450494041805,9.67218581352046,7.46923076923077,321.513297540267,103,32036,0,0,0,0,9 +"7010",2011,49047,"UT","49","047",33246,0.898694579799074,2314,0.0929735908079167,7.74673290775362,8.26462082941122,9.0994088112689,6.31538461538462,377.771694497673,69,18265,0,0,0,0,9 +"7011",2011,49049,"UT","49","049",530844,0.954208769431321,62589,0.0630844466547611,11.044344822798,10.9966516936305,11.8651374647727,6.6,179.399851434498,512,285396,0,0,0,0,9 +"7012",2011,49051,"UT","49","051",24404,0.974266513686281,1292,0.0984674643501065,7.16394668434255,8.15478757276852,8.81031046635796,7.3,258.493353028065,35,13540,0,0,0,0,9 +"7013",2011,49053,"UT","49","053",141288,0.952395107864787,9376,0.104580714568824,9.14590851181679,9.58204184993154,10.4976151820729,9.26923076923077,262.489535890123,185,70479,0,0,0,0,9 +"7014",2011,49057,"UT","49","057",233851,0.945431065079901,17723,0.0981778996027385,9.78261851005514,10.2506877525123,11.102548312501,8.16153846153846,318.896083091802,428,134213,0,0,0,0,9 +"7015",2011,51001,"VA","51","001",33227,0.694856592530171,1765,0.155385680320222,7.4759059693674,8.19643681123503,9.18543273627,8.36923076923077,670.718926849717,128,19084,0,0,0,0,9 +"7016",2011,51003,"VA","51","003",100231,0.840209116939869,6711,0.130358871007972,8.81150325015824,9.37101259736508,10.3190679943854,5.56923076923077,197.909266213336,117,59118,0,0,0,0,9 +"7017",2011,51005,"VA","51","005",16163,0.942151828249706,747,0.155726040957743,6.61606518513282,7.56527528189893,8.44376191333035,7.81538461538462,590.938936309915,54,9138,0,0,0,0,9 +"7018",2011,51007,"VA","51","007",12747,0.756727073036793,690,0.149996077508433,6.5366915975913,7.35244110024358,8.26384813136891,7.46153846153846,389.408099688473,30,7704,0,0,0,0,9 +"7019",2011,51009,"VA","51","009",32160,0.786194029850746,2241,0.14169776119403,7.71467747380093,8.25114213909075,9.19998695989669,7.24615384615385,523.311132254995,99,18918,0,0,0,0,9 +"7020",2011,51011,"VA","51","011",15104,0.787341101694915,823,0.138572563559322,6.71295620067707,7.49942329059223,8.41227702146668,7.92307692307692,504.009163802978,44,8730,0,0,0,0,9 +"7021",2011,51013,"VA","51","013",216078,0.790719092179676,15718,0.0999315062153482,9.66256183142612,10.453053004618,11.2817497419588,3.75384615384615,138.894971626635,222,159833,0,0,0,0,9 +"7022",2011,51015,"VA","51","015",73656,0.948205169979364,3878,0.14702128815032,8.2630748358026,9.15925758174687,9.97114620100994,6.31538461538462,397.34501286856,176,44294,0,0,0,0,9 +"7023",2011,51021,"VA","51","021",6776,0.959120425029516,337,0.154368358913813,5.82008293035236,6.95463886488099,7.49554194388426,7.36153846153846,608.756731444627,26,4271,0,0,0,0,9 +"7024",2011,51023,"VA","51","023",33001,0.955425593163844,1428,0.165661646616769,7.26403014289953,8.33734856449717,9.18368834097876,5.86923076923077,307.913373704198,60,19486,0,0,0,0,9 +"7025",2011,51025,"VA","51","025",17119,0.416729949179274,1273,0.142940592324318,7.14913159855741,7.629489916394,8.4707303170059,10.5307692307692,465.46974446661,49,10527,0,0,0,0,9 +"7026",2011,51027,"VA","51","027",23835,0.967946297461716,1339,0.154814348646948,7.19967834569117,8.04782935745784,8.87178596915065,8.5,705.076551168413,105,14892,0,0,0,0,9 +"7027",2011,51029,"VA","51","029",17217,0.634953824708137,1108,0.142591624557124,7.01031186730723,7.79110951061003,8.43381158247719,9.53846153846154,370.069500857478,41,11079,0,0,0,0,9 +"7028",2011,51031,"VA","51","031",54799,0.836694100257304,3753,0.138068212923594,8.23031079913502,8.84678466694523,9.72208557280156,7.12307692307692,374.06859935443,124,33149,0,0,0,0,9 +"7029",2011,51033,"VA","51","033",28672,0.677315848214286,1576,0.130510602678571,7.36264527041782,8.23747928861363,9.07589427542326,8.93846153846154,350.715805208992,61,17393,0,0,0,0,9 +"7030",2011,51035,"VA","51","035",30093,0.986309108430532,1438,0.154720366862726,7.27100853828099,8.26590733415575,9.07153796909572,9.8,402.067777139575,70,17410,0,0,0,0,9 +"7031",2011,51036,"VA","51","036",7200,0.430138888888889,343,0.177222222222222,5.83773044716594,6.73459165997295,7.72665366484764,8.96923076923077,483.729111697449,22,4548,0,0,0,0,9 +"7032",2011,51037,"VA","51","037",12497,0.687284948387613,689,0.143794510682564,6.53524127101366,7.23705902612474,8.17018565287964,9.77692307692308,524.971623155505,37,7048,0,0,0,0,9 +"7033",2011,51041,"VA","51","041",320344,0.720075918387733,18211,0.130537796868367,9.80978108609582,10.7226284134114,11.529644912777,6.73846153846154,304.667443371034,591,193982,0,0,0,0,9 +"7034",2011,51043,"VA","51","043",14197,0.926815524406565,585,0.154539691484116,6.37161184723186,7.43070708254597,8.321664807135,5.70769230769231,370.458891013384,31,8368,0,0,0,0,9 +"7035",2011,51045,"VA","51","045",5170,0.992649903288201,248,0.156479690522244,5.51342874616498,6.46302945692067,7.3304052118444,7.5,392.927308447937,12,3054,0,0,0,0,9 +"7036",2011,51047,"VA","51","047",47347,0.805056286565147,2548,0.121908463049401,7.84306401669205,8.77431295828538,9.52449396163376,6.34615384615385,350.815024805103,99,28220,0,0,0,0,9 +"7037",2011,51049,"VA","51","049",9987,0.654951436867928,622,0.14398718333834,6.43294009273918,7.07665381544395,8.0040315078527,7.60769230769231,412.654745529574,24,5816,0,0,0,0,9 +"7038",2011,51051,"VA","51","051",15778,0.991063506147801,845,0.150842945874002,6.73933662735717,7.60688453121963,8.44031214708028,9.86153846153846,748.155953635406,71,9490,0,0,0,0,9 +"7039",2011,51053,"VA","51","053",28114,0.652877569894003,1655,0.134701572170449,7.41155628781116,8.20903626577507,9.06866159364425,7.95384615384615,381.56736131494,65,17035,0,0,0,0,9 +"7040",2011,51057,"VA","51","057",11168,0.585243553008596,644,0.151504297994269,6.46769872610435,7.14755927118945,8.13856473726163,8.3,571.163939487496,37,6478,0,0,0,0,9 +"7041",2011,51059,"VA","51","059",1103571,0.699361436645218,59130,0.123854287580953,10.9874936888149,12.0169862587833,12.7771115123903,4.74615384615385,157.246452637569,1097,697631,0,0,0,0,9 +"7042",2011,51061,"VA","51","061",66032,0.88981100072692,3334,0.136585291979646,8.11192806331074,9.07176772211224,9.90123501748283,5.47692307692308,303.905181583346,120,39486,0,0,0,0,9 +"7043",2011,51063,"VA","51","063",15404,0.971890418073228,700,0.15651778758764,6.5510803350434,7.58426481838906,8.39525152061099,6.30769230769231,311.422533644756,28,8991,0,0,0,0,9 +"7044",2011,51065,"VA","51","065",25959,0.829115143110289,1152,0.130552024346084,7.04925484125584,8.24117615049496,9.0636947916347,5.8,323.289796974008,50,15466,0,0,0,0,9 +"7045",2011,51067,"VA","51","067",56339,0.903228669305455,3301,0.156144056515025,8.10198073185319,8.80432511256254,9.7133555736502,7.49230769230769,407.171072622303,134,32910,0,0,0,0,9 +"7046",2011,51069,"VA","51","069",79519,0.932230033073857,4469,0.12384461575221,8.40491994893345,9.30255485596399,10.083347749334,6.46923076923077,277.054823272605,132,47644,0,0,0,0,9 +"7047",2011,51071,"VA","51","071",17152,0.975513059701492,907,0.151061100746269,6.81014245011514,7.70975686445416,8.52118521268578,7.93076923076923,509.94900509949,51,10001,0,0,0,0,9 +"7048",2011,51073,"VA","51","073",36897,0.892755508577933,1986,0.145296365558175,7.59387784460512,8.43814998407578,9.33617975681533,6.26923076923077,440.626669040413,99,22468,0,0,0,0,9 +"7049",2011,51075,"VA","51","075",21537,0.797557691414775,835,0.171843803686679,6.72743172485086,7.97968130238774,8.81892608709068,6.35384615384615,276.967930029155,38,13720,0,0,0,0,9 +"7050",2011,51077,"VA","51","077",15368,0.970783446121812,759,0.164042165538782,6.63200177739563,7.55118686729615,8.38571682862785,10.8,550.314465408805,49,8904,0,0,0,0,9 +"7051",2011,51079,"VA","51","079",18694,0.90713597945865,945,0.129881245319354,6.85118492749374,7.83042561782033,8.65172408437384,6.02307692307692,331.214752484111,37,11171,0,0,0,0,9 +"7052",2011,51081,"VA","51","081",12001,0.389634197150238,830,0.131905674527123,6.72142570079064,7.56268124672188,7.85515700588134,8.72307692307692,527.451450491489,44,8342,0,0,0,0,9 +"7053",2011,51083,"VA","51","083",35997,0.619968330694225,1750,0.156429702475206,7.46737106691756,8.32385113133882,9.24057855503679,10.9461538461538,562.768425729377,114,20257,0,0,0,0,9 +"7054",2011,51085,"VA","51","085",99899,0.880929739036427,5408,0.136768135817175,8.5956346177228,9.51679512975125,10.3137743509235,5.96153846153846,277.70297562946,165,59416,0,0,0,0,9 +"7055",2011,51087,"VA","51","087",310401,0.615484486196887,18045,0.121343036910319,9.80062391707689,10.680585180216,11.522083402755,6.72307692307692,273.380614160064,520,190211,0,0,0,0,9 +"7056",2011,51089,"VA","51","089",53530,0.764786101251635,2743,0.145170932187558,7.9168074909376,8.77307495131822,9.66472262031896,12.5461538461538,645.957087674879,199,30807,0,0,0,0,9 +"7057",2011,51093,"VA","51","093",35301,0.733123707543696,1759,0.152630237103765,7.47250074473756,8.37885024179449,9.29716006392874,6.93076923076923,379.996246950647,81,21316,0,0,0,0,9 +"7058",2011,51095,"VA","51","095",68339,0.82831179853378,3427,0.144134388855558,8.13944052187461,8.98619632032839,9.89095940195886,6.09230769230769,352.094032932705,133,37774,0,0,0,0,9 +"7059",2011,51097,"VA","51","097",6986,0.68894932722588,365,0.168622960206127,5.89989735358249,6.68210859744981,7.62851762657506,7.32307692307692,404.954740352549,17,4198,0,0,0,0,9 +"7060",2011,51099,"VA","51","099",24277,0.791242740042015,1419,0.111257568892367,7.25770767716004,8.13973227971767,8.8758461777386,6.95384615384615,282.427498794517,41,14517,0,0,0,0,9 +"7061",2011,51101,"VA","51","101",16013,0.789608443139949,832,0.132517329669643,6.72383244082121,7.69938940625674,8.5179928715868,6.86153846153846,370.027752081406,36,9729,0,0,0,0,9 +"7062",2011,51103,"VA","51","103",11276,0.706810925860234,440,0.177456544874069,6.08677472691231,6.82110747225646,8.01598781102724,9.23076923076923,697.471665213601,40,5735,0,0,0,0,9 +"7063",2011,51105,"VA","51","105",25546,0.9507946449542,1534,0.142448915681516,7.3356339819272,8.18339736999843,8.88377886146348,7.59230769230769,534.283170080142,84,15722,0,0,0,0,9 +"7064",2011,51107,"VA","51","107",326357,0.747800721296004,13262,0.0887800782578587,9.49265808192881,11.0056435548276,11.5180622490754,4.66153846153846,150.368352003229,298,198180,0,0,0,0,9 +"7065",2011,51109,"VA","51","109",33325,0.807261815453863,1614,0.153758439609902,7.3864708488299,8.34616759436413,9.24888778158842,6.78461538461538,420.702475295959,86,20442,0,0,0,0,9 +"7066",2011,51111,"VA","51","111",12907,0.63810335476873,783,0.15503215309522,6.6631326959908,7.41336733569524,8.14554963178358,8.50769230769231,353.892821031345,28,7912,0,0,0,0,9 +"7067",2011,51113,"VA","51","113",13142,0.883655455790595,681,0.155379698676001,6.52356230614951,7.31388683163346,8.26539293085222,5.23076923076923,420.168067226891,32,7616,0,0,0,0,9 +"7068",2011,51115,"VA","51","115",8944,0.898703041144902,364,0.17095259391771,5.89715386763674,6.83087423464618,7.83082299513532,6.52307692307692,246.761258482418,12,4863,0,0,0,0,9 +"7069",2011,51117,"VA","51","117",32567,0.614364233733534,1709,0.157521417385697,7.44366368311559,8.20849175174038,9.1140497116579,10.3076923076923,533.276450511945,100,18752,0,0,0,0,9 +"7070",2011,51119,"VA","51","119",10855,0.807369875633349,484,0.178443113772455,6.18208490671663,6.92067150424868,8.02551638648901,6.47692307692308,477.602108036891,29,6072,0,0,0,0,9 +"7071",2011,51121,"VA","51","121",94761,0.893289433416701,21325,0.0941526577389432,9.96763537235988,9.1958356857733,10.2923150194913,6.30769230769231,240.940476382982,149,61841,0,0,0,0,9 +"7072",2011,51125,"VA","51","125",15019,0.853851787735535,638,0.186630268326786,6.45833828334479,7.3790081276283,8.40670845824097,6.33076923076923,396.151669496321,35,8835,0,0,0,0,9 +"7073",2011,51127,"VA","51","127",18763,0.837339444651708,879,0.161114960294196,6.77878489768518,7.88306935130575,8.6652683094816,6.39230769230769,320.215724277408,38,11867,0,0,0,0,9 +"7074",2011,51131,"VA","51","131",12406,0.613009833951314,648,0.162663227470579,6.47389069635227,7.05444965813294,8.18729927015515,8.88461538461539,649.819494584838,45,6925,0,0,0,0,9 +"7075",2011,51133,"VA","51","133",12452,0.735142948923868,540,0.177722454224221,6.29156913955832,6.86901445066571,8.1199938277251,8.99230769230769,564.883100580574,36,6373,0,0,0,0,9 +"7076",2011,51135,"VA","51","135",15891,0.585866213580014,1006,0.128815052545466,6.91373735065968,7.57455848420248,8.3291754420774,7.12307692307692,533.361221501778,51,9562,0,0,0,0,9 +"7077",2011,51137,"VA","51","137",33982,0.847919486787123,1623,0.135807192042846,7.39203156751459,8.35819745992578,9.19522673416613,7.46153846153846,340.979541227526,66,19356,0,0,0,0,9 +"7078",2011,51139,"VA","51","139",23956,0.969193521456003,1268,0.143304391384204,7.14519613499717,8.02092771898158,8.85822643936501,11.0230769230769,567.255193930369,80,14103,0,0,0,0,9 +"7079",2011,51141,"VA","51","141",18339,0.929439991275424,786,0.157533126124652,6.66695679242921,7.76472054477148,8.5608272284363,10.7846153846154,654.462676657498,69,10543,0,0,0,0,9 +"7080",2011,51143,"VA","51","143",63269,0.769144446727465,3212,0.153993266844742,8.07464907506665,8.96021095557699,9.83601138741121,9.08461538461538,525.525525525526,196,37296,0,0,0,0,9 +"7081",2011,51145,"VA","51","145",28138,0.851339825147487,1415,0.145745966308906,7.25488481007734,8.35349709874545,8.98155594077189,6.22307692307692,343.445907269605,60,17470,0,0,0,0,9 +"7082",2011,51147,"VA","51","147",22328,0.632031529917592,3811,0.111787889645288,8.24564690087386,7.7007477945118,8.78124833323686,8.97692307692308,392.604754086659,55,14009,0,0,0,0,9 +"7083",2011,51149,"VA","51","149",36734,0.631948603473621,2391,0.12179452278543,7.77946696745832,8.63817111796914,9.2127374965759,7.78461538461538,298.583859409657,70,23444,0,0,0,0,9 +"7084",2011,51153,"VA","51","153",419149,0.674488069874913,25708,0.0980582084175317,10.1545575064912,11.1068501707364,11.7786456305587,5.63846153846154,182.311540744509,473,259446,0,0,0,0,9 +"7085",2011,51155,"VA","51","155",34741,0.936472755533807,1856,0.157537203880142,7.52617891334615,8.47156801338996,9.24811773631021,8.68461538461538,544.750800401395,114,20927,0,0,0,0,9 +"7086",2011,51159,"VA","51","159",9204,0.677314211212516,522,0.126032159930465,6.25766758788264,7.16472037877186,7.66105638236183,6.62307692307692,294.525294525294,17,5772,0,0,0,0,9 +"7087",2011,51161,"VA","51","161",92841,0.91001820316455,4760,0.148156525672925,8.46800294722547,9.41156545918937,10.2445563516163,5.68461538461538,338.222859453697,184,54402,0,0,0,0,9 +"7088",2011,51163,"VA","51","163",22449,0.956746402957816,1300,0.16089803554724,7.17011954344963,7.85127199710988,8.78477459216102,6.76923076923077,338.123415046492,44,13013,0,0,0,0,9 +"7089",2011,51165,"VA","51","165",76868,0.964991934224905,4686,0.132994223864287,8.45233461906774,9.16324876444233,10.0131039988595,6.00769230769231,301.475881929446,134,44448,0,0,0,0,9 +"7090",2011,51167,"VA","51","167",28681,0.985739688295387,1618,0.152853805655312,7.38894609761844,8.22710823434815,9.08045945112166,9.49230769230769,655.606863918819,115,17541,0,0,0,0,9 +"7091",2011,51169,"VA","51","169",23053,0.987897453693662,1205,0.148917711360777,7.09423484592476,7.99598047476376,8.79603631520081,7.27692307692308,548.02636451159,74,13503,0,0,0,0,9 +"7092",2011,51171,"VA","51","171",42266,0.964818057067146,2219,0.140278237827095,7.70481192293259,8.5571828396324,9.40607161568006,7.02307692307692,422.272821362037,102,24155,0,0,0,0,9 +"7093",2011,51173,"VA","51","173",32054,0.970861670930305,1850,0.146658763336869,7.52294091807237,8.33902300574476,9.16083495207234,10.8923076923077,536.606099245564,101,18822,0,0,0,0,9 +"7094",2011,51175,"VA","51","175",18638,0.61015130378796,1017,0.149318596415924,6.92461239604856,7.72400465667607,8.57281709516423,7.64615384615385,345.132743362832,39,11300,0,0,0,0,9 +"7095",2011,51177,"VA","51","177",124557,0.800509003909857,7334,0.115184212850342,8.90027634863127,9.781602364546,10.55252609347,6.69230769230769,278.227370617584,208,74759,0,0,0,0,9 +"7096",2011,51179,"VA","51","179",132251,0.769990397048037,9062,0.101277116997225,9.11184512522708,9.86951703296497,10.5963346880871,6.15384615384615,188.73510472948,153,81066,0,0,0,0,9 +"7097",2011,51181,"VA","51","181",6923,0.530117001300014,400,0.156435071500794,5.99146454710798,6.63725803128446,7.66622192566273,8.43846153846154,423.429781227946,18,4251,0,0,0,0,9 +"7098",2011,51183,"VA","51","183",12088,0.402961614824619,924,0.134348113831899,6.82871207164168,7.39633529380081,7.96276393016811,10.4692307692308,561.027303328762,45,8021,0,0,0,0,9 +"7099",2011,51185,"VA","51","185",44733,0.957458699394183,2481,0.156103994813672,7.8164169836918,8.648045999835,9.48615227185748,7.94615384615385,676.806366442304,182,26891,0,0,0,0,9 +"7100",2011,51187,"VA","51","187",37654,0.931401710309662,2325,0.130238487278908,7.75147531802146,8.51117511909067,9.33485624667375,7.39230769230769,432.711219895974,99,22879,0,0,0,0,9 +"7101",2011,51191,"VA","51","191",54839,0.977898940535021,3091,0.151917431025365,8.03624994213212,8.86389860431748,9.70479268162423,7.07692307692308,507.028569693658,167,32937,0,0,0,0,9 +"7102",2011,51193,"VA","51","193",17639,0.693406655706106,980,0.161800555587051,6.88755257166462,7.50604217851812,8.53973715585113,7.51538461538462,578.438216814601,58,10027,0,0,0,0,9 +"7103",2011,51195,"VA","51","195",41461,0.939075275560165,3211,0.137454475290032,8.07433769408951,8.6312359074569,9.38286408629003,7.64615384615385,540.141447112769,139,25734,0,0,0,0,9 +"7104",2011,51197,"VA","51","197",29204,0.959697301739488,1443,0.148952198328996,7.27447955877387,8.27563105457801,9.08828572596888,9.15384615384615,410.07277347811,71,17314,0,0,0,0,9 +"7105",2011,51199,"VA","51","199",65796,0.791051127728129,4028,0.124247674630677,8.30102525383845,9.03527244389354,9.89540497634277,6.11538461538461,259.383582545011,102,39324,0,0,0,0,9 +"7106",2011,51510,"VA","51","510",144269,0.686453777318759,7705,0.111174264741559,8.94962474775422,10.1524547838598,10.8938833994171,4.44615384615385,211.080268332177,219,103752,0,0,0,0,9 +"7107",2011,51520,"VA","51","520",17726,0.925645943811351,1179,0.132404377750197,7.07242190053737,7.66434663209862,8.58895555764313,8.26923076923077,657.513053567975,68,10342,0,0,0,0,9 +"7108",2011,51530,"VA","51","530",6715,0.92553983618764,684,0.125093075204765,6.52795791762255,6.58617165485467,7.60986220091355,9.11538461538461,492.227979274611,19,3860,0,0,0,0,9 +"7109",2011,51540,"VA","51","540",43780,0.722087711283691,9906,0.0950662402923709,9.20089591314818,8.43381158247719,9.70552429975222,5.57692307692308,205.920205920206,64,31080,0,0,0,0,9 +"7110",2011,51550,"VA","51","550",225360,0.646822861199858,14680,0.117993432729854,9.59424130216851,10.3157958591263,11.1654509243661,6.9,320.35216945976,441,137661,0,0,0,0,9 +"7111",2011,51570,"VA","51","570",17288,0.84260758907913,1041,0.12523137436372,6.94793706861497,7.62070508683826,8.53010941668278,7.50769230769231,517.223544015724,50,9667,0,0,0,0,9 +"7112",2011,51580,"VA","51","580",5916,0.854293441514537,351,0.134381338742393,5.86078622346587,6.58617165485467,7.44132038971762,9.36923076923077,434.908669179472,15,3449,0,0,0,0,9 +"7113",2011,51590,"VA","51","590",42657,0.490236069109408,3073,0.141993107813489,8.03040956213048,8.41670965283791,9.47239689678899,11.6,766.220391349125,186,24275,0,0,0,0,9 +"7114",2011,51600,"VA","51","600",22467,0.770329817065029,1715,0.125962522811234,7.44716835960004,8.03495502450216,8.86967937473351,4.9,230.736959865753,33,14302,0,0,0,0,9 +"7115",2011,51620,"VA","51","620",8448,0.406013257575758,571,0.133641098484848,6.34738920965601,6.8351845861473,7.88720858581393,11.3615384615385,560.747663551402,27,4815,0,0,0,0,9 +"7116",2011,51630,"VA","51","630",25759,0.702744671765208,4178,0.0883962886758026,8.33758794211651,7.99395754757357,9.0831885863157,8.02307692307692,227.566270988376,37,16259,0,0,0,0,9 +"7117",2011,51640,"VA","51","640",6844,0.914962010520164,411,0.133401519579193,6.01859321449623,6.72503364216684,7.5923661285198,10.2692307692308,732.217573221757,28,3824,0,0,0,0,9 +"7118",2011,51650,"VA","51","650",136652,0.445167286245353,12523,0.120144600883997,9.43532223256403,9.6423824949348,10.6825601039278,8.90769230769231,343.425430176125,288,83861,0,0,0,0,9 +"7119",2011,51660,"VA","51","660",49950,0.867567567567568,13801,0.0664464464464464,9.53249633228804,8.35890061242164,9.71601274050137,7.77692307692308,150.663862644779,48,31859,0,0,0,0,9 +"7120",2011,51670,"VA","51","670",22500,0.585466666666667,1531,0.115511111111111,7.33367639565768,7.87625888230323,8.85051762174672,11.2923076923077,575.285725243538,75,13037,0,0,0,0,9 +"7121",2011,51680,"VA","51","680",76614,0.663847338606521,12583,0.102057065288329,9.44010197559197,8.87919392811032,10.0758429450182,8.03076923076923,346.425419240953,157,45320,0,0,0,0,9 +"7122",2011,51683,"VA","51","683",39103,0.767076694882746,2729,0.103163440145257,7.91169052070834,8.63923381732526,9.41033811378308,6.10769230769231,253.009589879616,62,24505,0,0,0,0,9 +"7123",2011,51690,"VA","51","690",13622,0.525033034796652,783,0.133240346498312,6.6631326959908,7.35564110297425,8.33758794211651,15.1615384615385,795.687885010267,62,7792,0,0,0,0,9 +"7124",2011,51700,"VA","51","700",180139,0.523606770327358,17341,0.103803174215467,9.76082891879855,9.96062374390694,10.9546412900445,8.10769230769231,347.967921707218,384,110355,0,0,0,0,9 +"7125",2011,51710,"VA","51","710",243701,0.501097656554548,37535,0.0965363293544138,10.5330291100071,10.2212501357761,11.217157455935,8.29230769230769,357.06876716979,568,159073,0,0,0,0,9 +"7126",2011,51730,"VA","51","730",32093,0.181379116941389,2802,0.135169663166423,7.93808872689695,8.15162164696975,9.2681374707024,12.8230769230769,622.703144140465,122,19592,0,0,0,0,9 +"7127",2011,51735,"VA","51","735",12043,0.959893714190816,557,0.142157269783277,6.32256523992728,7.31455283232408,8.15937473677543,5.69230769230769,144.092219020173,10,6940,0,0,0,0,9 +"7128",2011,51740,"VA","51","740",95767,0.429761817745152,7796,0.118297534641369,8.96136606062745,9.32482909846088,10.3077853128923,9.32307692307692,546.080964685616,317,58050,0,0,0,0,9 +"7129",2011,51750,"VA","51","750",16817,0.882143069512993,5485,0.0705833382886365,8.60977237270933,7.20042489294496,8.6347984334905,8.40769230769231,261.194029850746,28,10720,0,0,0,0,9 +"7130",2011,51760,"VA","51","760",206487,0.441567750027847,25115,0.115532696973659,10.1312205561841,10.0817592530548,11.163453091562,8.48461538461538,449.917120530429,608,135136,0,0,0,0,9 +"7131",2011,51770,"VA","51","770",96791,0.672345569319462,6425,0.132439999586738,8.76795190976342,9.42545175159313,10.3381554124524,8.02307692307692,540.359682141363,323,59775,0,0,0,0,9 +"7132",2011,51775,"VA","51","775",25030,0.90123851378346,2324,0.135437475029964,7.7510451179718,7.96032362914884,8.93892527198827,6.33076923076923,480.736213172172,70,14561,0,0,0,0,9 +"7133",2011,51790,"VA","51","790",24023,0.854514423677309,1766,0.134954002414353,7.4764723811639,7.89282552625112,8.93208043810331,7.05384615384615,472.418053637619,65,13759,0,0,0,0,9 +"7134",2011,51800,"VA","51","800",84808,0.535586265446656,4836,0.118632676162626,8.48384321173468,9.39715183404299,10.1861822084769,7.42307692307692,390.241989253638,199,50994,0,0,0,0,9 +"7135",2011,51810,"VA","51","810",442654,0.711103932190831,35765,0.111628947213851,10.4847250405425,10.9721731379621,11.8591075509146,6.13076923076923,251.870189979011,702,278715,0,0,0,0,9 +"7136",2011,51820,"VA","51","820",21099,0.86008815583677,1281,0.120432247973838,7.15539630189673,7.80751004221619,8.76467807411661,8.06153846153846,482.736049746359,59,12222,0,0,0,0,9 +"7137",2011,51840,"VA","51","840",26663,0.836515020815362,2267,0.114090687469527,7.72621265050753,8.03915739047324,8.98406692765304,7.4,397.62686190356,63,15844,0,0,0,0,9 +"7138",2011,50001,"VT","50","001",36973,0.966948854569551,3122,0.153301057528467,8.04622910107538,8.39479954320217,9.32286516281803,5.00769230769231,338.922582946843,76,22424,1,0,0,0,9 +"7139",2011,50003,"VT","50","003",36823,0.976889444097439,2125,0.154930342449013,7.66152708135852,8.29554851622576,9.29311779843375,6.47692307692308,334.259215667812,71,21241,1,0,0,0,9 +"7140",2011,50005,"VT","50","005",31115,0.97615298087739,1956,0.157962397557448,7.57865685059476,8.18283871076603,9.13680146864131,6.37692307692308,389.526076606795,72,18484,1,0,0,0,9 +"7141",2011,50007,"VT","50","007",158083,0.936780045925242,16752,0.123719818070254,9.72627293311032,9.87256431988262,10.8371465785714,4.26923076923077,239.246373922145,240,100315,1,0,0,0,9 +"7142",2011,50011,"VT","50","011",48233,0.971616942757034,2477,0.134285655049447,7.81480342948936,8.81343849452851,9.60622641363735,5.23076923076923,315.950399184644,93,29435,1,0,0,0,9 +"7143",2011,50013,"VT","50","013",6975,0.973906810035842,333,0.189534050179211,5.80814248998044,6.73221070646721,7.70345904786717,6.43846153846154,315.599639314698,14,4436,1,0,0,0,9 +"7144",2011,50015,"VT","50","015",24717,0.978152688433062,1609,0.136019743496379,7.38336814699238,8.10349427838097,8.9219914105367,7.05384615384615,310.743801652893,47,15125,1,0,0,0,9 +"7145",2011,50017,"VT","50","017",29020,0.982529290144728,1558,0.165678842177808,7.35115822643069,8.13622555490846,9.08952775175944,5.40769230769231,364.268101322573,65,17844,1,0,0,0,9 +"7146",2011,50019,"VT","50","019",27198,0.979520552981837,1393,0.158430766968159,7.23921497377981,8.09620827165004,8.95892593869494,8.54615384615385,375.727972947586,60,15969,1,0,0,0,9 +"7147",2011,50021,"VT","50","021",61240,0.981352057478772,4013,0.162312214239059,8.29729437026692,8.85152027169106,9.83097062169695,6.89230769230769,397.198142830305,148,37261,1,0,0,0,9 +"7148",2011,50023,"VT","50","023",59608,0.974382633203597,3591,0.157109783921621,8.18618599422608,8.93577193866978,9.82384892987591,5.33076923076923,258.348743609268,95,36772,1,0,0,0,9 +"7149",2011,50025,"VT","50","025",44261,0.969657260342062,2456,0.172115406339667,7.80628928926703,8.5099671463245,9.53531822917166,5.68461538461538,431.368211481031,117,27123,1,0,0,0,9 +"7150",2011,50027,"VT","50","027",56629,0.977078881844991,2530,0.166875629094633,7.83597458172157,8.76311532961979,9.7586929676329,5.53076923076923,342.837049843233,117,34127,1,0,0,0,9 +"7151",2011,53001,"WA","53","001",18876,0.926944267853359,1244,0.094458571731299,7.12608727329912,7.72665366484764,8.47198659857816,9.19230769230769,287.179487179487,28,9750,1,0,0,0,9 +"7152",2011,53003,"WA","53","003",21984,0.962563682678311,1246,0.148744541484716,7.1276936993474,7.74889133725553,8.77539495854551,7.99230769230769,375.879718490083,47,12504,1,0,0,0,9 +"7153",2011,53005,"WA","53","005",180449,0.931132896275402,11479,0.125830567085437,9.3482745580655,10.0125661475624,10.8713265462909,7.34615384615385,277.803936340522,295,106190,1,0,0,0,9 +"7154",2011,53007,"WA","53","007",73213,0.957466570144646,4412,0.136642399573846,8.39208338037339,9.01905879381072,9.94044609352166,7.67692307692308,307.035429010051,128,41689,1,0,0,0,9 +"7155",2011,53009,"WA","53","009",71778,0.903090083312436,3851,0.172699155730168,8.25608813381491,8.84029066908897,9.89777124554002,9.85384615384615,435.261156694016,174,39976,1,0,0,0,9 +"7156",2011,53011,"WA","53","011",432388,0.900966261783398,25700,0.126862910164019,10.1542462708833,11.0019831677315,11.7811570981004,10.5,280.061118310349,724,258515,1,0,0,0,9 +"7157",2011,53015,"WA","53","015",102313,0.942421784133004,5936,0.142347502272439,8.68879078484722,9.41979059615839,10.29688007941,10.7384615384615,436.149710924029,258,59154,1,0,0,0,9 +"7158",2011,53017,"WA","53","017",38660,0.954604242110709,2238,0.128789446456286,7.71333788887187,8.44912846050211,9.28600427589717,8.54615384615385,201.115275619344,44,21878,1,0,0,0,9 +"7159",2011,53019,"WA","53","019",7641,0.790995942939406,415,0.196963748200497,6.0282785202307,6.62273632394984,7.68753876620163,15.7615384615385,493.938033228559,22,4454,1,0,0,0,9 +"7160",2011,53021,"WA","53","021",83048,0.926512378383585,6073,0.0862874482227146,8.71160799589757,9.2924732015147,9.99255098927689,8.14615384615385,221.324509003395,103,46538,1,0,0,0,9 +"7161",2011,53025,"WA","53","025",90588,0.943425177727734,6265,0.106404821830706,8.74273386733017,9.28405540979846,10.0869334769918,9.19230769230769,306.426901056366,152,49604,1,0,0,0,9 +"7162",2011,53027,"WA","53","027",72374,0.902851852875342,4388,0.155166219913229,8.38662882139512,9.02689818751353,9.92368225982165,12.2538461538462,486.696950032446,210,43148,1,0,0,0,9 +"7163",2011,53029,"WA","53","029",78970,0.894137014055971,5446,0.158731163733063,8.6026366732337,9.00442260132704,10.0541034208433,8.13846153846154,284.090909090909,131,46112,1,0,0,0,9 +"7164",2011,53031,"WA","53","031",29858,0.934958805010383,1084,0.21850090428026,6.98841318199959,7.88608140177575,9.05415428878685,9.41538461538462,385.185185185185,65,16875,1,0,0,0,9 +"7165",2011,53033,"WA","53","033",1974499,0.740239929217488,131470,0.121726068233005,11.7865339676906,12.6141177559017,13.3685310281635,7.54615384615385,228.91841882889,2942,1285174,1,0,0,0,9 +"7166",2011,53035,"WA","53","035",254351,0.867120632511765,20392,0.143435646016725,9.92289794605595,10.3022636724935,11.2399349412614,7.53846153846154,301.357695723893,475,157620,1,0,0,0,9 +"7167",2011,53037,"WA","53","037",41561,0.942782897427877,7323,0.121387839561127,8.89877535906107,8.30795254527102,9.45876173047466,8.32307692307692,284.943581170928,75,26321,1,0,0,0,9 +"7168",2011,53039,"WA","53","039",20691,0.946401817215214,882,0.176598521096129,6.78219205600679,7.77401507725073,8.6909784171879,10.6769230769231,416.840350145894,50,11995,1,0,0,0,9 +"7169",2011,53041,"WA","53","041",75674,0.952229299363057,4506,0.144805349261305,8.41316512099219,9.05087559732516,9.97970757844754,11.4923076923077,473.692723617626,205,43277,1,0,0,0,9 +"7170",2011,53043,"WA","53","043",10527,0.966467179633324,410,0.172888762230455,6.01615715969835,6.94793706861497,7.95437227253187,7.26923076923077,402.802101576182,23,5710,1,0,0,0,9 +"7171",2011,53045,"WA","53","045",60882,0.911451660589337,3231,0.163365198252357,8.0805469658245,8.84404789894249,9.7407333012347,10.5769230769231,459.955955732724,165,35873,1,0,0,0,9 +"7172",2011,53047,"WA","53","047",41325,0.846412583182093,2061,0.162444041137326,7.63094658089046,8.41338702269065,9.36220272128543,9.43846153846154,508.438367870113,119,23405,1,0,0,0,9 +"7173",2011,53049,"WA","53","049",20888,0.930438529299119,890,0.190300651091536,6.79122146272619,7.56164174558878,8.65294711239386,12.1538461538462,584.999563433162,67,11453,1,0,0,0,9 +"7174",2011,53051,"WA","53","051",12956,0.936786045075641,495,0.189641864773078,6.20455776256869,7.17011954344963,8.19533366716287,12.6384615384615,516.374507405897,38,7359,1,0,0,0,9 +"7175",2011,53053,"WA","53","053",807728,0.800432818968762,61893,0.118931125329319,11.0331623666561,11.5785821107734,12.4261234191341,9.09230769230769,327.018991176506,1630,498442,1,0,0,0,9 +"7176",2011,53055,"WA","53","055",15807,0.965331815018663,531,0.223508572151578,6.27476202124194,7.33106030521863,8.47365918939251,6.53846153846154,291.923451183912,27,9249,1,0,0,0,9 +"7177",2011,53057,"WA","53","057",117578,0.931075541342768,6864,0.142739287962034,8.8340456411678,9.52646411805927,10.4310522923064,9.46923076923077,328.617742410846,223,67860,1,0,0,0,9 +"7178",2011,53059,"WA","53","059",11156,0.955629257798494,450,0.175421297956257,6.10924758276437,7.21376830811864,8.12385426310591,10.9923076923077,414.017447878161,28,6763,1,0,0,0,9 +"7179",2011,53061,"WA","53","061",722149,0.836755295652282,45562,0.124503391959277,10.7268293147539,11.5519730862209,12.3208065929936,9.01538461538462,282.918752779649,1285,454194,1,0,0,0,9 +"7180",2011,53063,"WA","53","063",473516,0.922657312530094,38602,0.130094864798655,10.5610593675822,10.9549034063733,11.8794140967635,8.69230769230769,327.832416513863,944,287952,1,0,0,0,9 +"7181",2011,53065,"WA","53","065",43457,0.918033918586189,1797,0.174632395241273,7.49387388678356,8.46358142196759,9.42359519054002,11.1307692307692,428.781443972558,105,24488,1,0,0,0,9 +"7182",2011,53067,"WA","53","067",256439,0.868662722908762,17360,0.139187097126412,9.76192398821434,10.4052320675659,11.3045843155372,8.07692307692308,289.202473442207,456,157675,1,0,0,0,9 +"7183",2011,53071,"WA","53","071",59452,0.938555473323017,5455,0.124571082553993,8.60428789826717,8.81254577017224,9.70033043515403,7.18461538461538,278.096330275229,97,34880,1,0,0,0,9 +"7184",2011,53073,"WA","53","073",203503,0.900753305848071,21599,0.132705660358815,9.98040229630425,10.0835565742768,11.0514771345669,8.06923076923077,233.562910528665,293,125448,1,0,0,0,9 +"7185",2011,53075,"WA","53","075",45067,0.877693212328311,11966,0.0842079570417379,9.38982457394998,8.20794694104862,9.55470991405776,5.82307692307692,122.278455215516,36,29441,1,0,0,0,9 +"7186",2011,53077,"WA","53","077",245899,0.899165917714183,17096,0.106047604910959,9.74659979699898,10.2896339162579,11.1136710306388,9.71538461538461,323.323589334751,438,135468,1,0,0,0,9 +"7187",2011,55001,"WI","55","001",20767,0.946597967929889,813,0.173111186016276,6.70073110954781,7.73892375743946,8.57187075270693,11.4923076923077,488.896254557507,59,12068,0,0,0,0,9 +"7188",2011,55003,"WI","55","003",16025,0.863213728549142,1091,0.13996879875195,6.99484998583307,7.46336304552002,8.44074401925283,9.89230769230769,405.896176030763,38,9362,0,0,0,0,9 +"7189",2011,55005,"WI","55","005",45892,0.971236816874401,2388,0.144382463174409,7.77821147451249,8.55525939222269,9.46931428029122,8.27692307692308,292.397660818713,77,26334,0,0,0,0,9 +"7190",2011,55007,"WI","55","007",15061,0.879490073700286,483,0.195006971648629,6.18001665365257,7.30787278076371,8.35208267135264,10.5384615384615,297.584983403914,26,8737,0,0,0,0,9 +"7191",2011,55009,"WI","55","009",250496,0.905878736586612,17236,0.11938713592233,9.75475549873573,10.3765801559849,11.2335157487024,7.01538461538462,266.123468147321,405,152185,0,0,0,0,9 +"7192",2011,55011,"WI","55","011",13441,0.988096123800313,664,0.14894725094859,6.49828214947643,7.34858753092759,8.21311069759668,6.74615384615385,320.389593745995,25,7803,0,0,0,0,9 +"7193",2011,55013,"WI","55","013",15464,0.93074236937403,588,0.174599068804966,6.37672694789863,7.33171496972647,8.33734856449717,10.0230769230769,447.058823529412,38,8500,0,0,0,0,9 +"7194",2011,55015,"WI","55","015",49623,0.964633335348528,2211,0.121737903794611,7.70120018085745,8.86925752279729,9.58925614485081,5.76923076923077,214.51920457641,63,29368,0,0,0,0,9 +"7195",2011,55017,"WI","55","017",62958,0.961402839988564,3289,0.13388290606436,8.09833884618906,8.97284431443757,9.77069874127266,7.56923076923077,270.628814009021,102,37690,0,0,0,0,9 +"7196",2011,55019,"WI","55","019",34670,0.982953562157485,1754,0.120449956734929,7.46965417293213,8.24143968982973,9.081711229379,8.19230769230769,342.298288508557,63,18405,0,0,0,0,9 +"7197",2011,55021,"WI","55","021",56712,0.970746931866272,2690,0.138683171110171,7.89729647259588,8.93247660846174,9.69707820021308,7.69230769230769,339.538695703079,116,34164,0,0,0,0,9 +"7198",2011,55023,"WI","55","023",16673,0.971390871468842,757,0.15564085647454,6.62936325343745,7.47420480649612,8.40983067308774,9.00769230769231,314.13612565445,30,9550,0,0,0,0,9 +"7199",2011,55025,"WI","55","025",496121,0.879148433547461,48694,0.118702897075512,10.7933110981951,11.0733656830912,11.9858622881934,5.18461538461538,214.696892989068,687,319986,0,0,0,0,9 +"7200",2011,55027,"WI","55","027",88392,0.958593537876731,4822,0.127454973300751,8.48094405874112,9.37254425185104,10.0941079121448,7.60769230769231,294.161178124769,159,54052,0,0,0,0,9 +"7201",2011,55029,"WI","55","029",27766,0.979399265288482,1065,0.182273283872362,6.97073007814353,7.93701748951545,8.97449144816442,11.8230769230769,390.797352663095,62,15865,0,0,0,0,9 +"7202",2011,55031,"WI","55","031",43968,0.948735443959243,3158,0.143354257641921,8.05769419481559,8.56235774337061,9.49867223326946,7.33846153846154,388.457269700333,105,27030,0,0,0,0,9 +"7203",2011,55033,"WI","55","033",43808,0.957336559532506,5883,0.118517165814463,8.67982211486446,8.489616423646,9.46769209462013,7.15384615384615,301.788375558867,81,26840,0,0,0,0,9 +"7204",2011,55035,"WI","55","035",99952,0.942812550024012,12698,0.118726988954698,9.4491997797304,9.29081375612606,10.3380906623876,6.26923076923077,266.692685465249,164,61494,0,0,0,0,9 +"7205",2011,55039,"WI","55","039",101822,0.963514761053603,6234,0.133969083302233,8.73777346032728,9.43356392009056,10.318407819415,7.13076923076923,287.033982184098,174,60620,0,0,0,0,9 +"7206",2011,55041,"WI","55","041",9249,0.833063033841496,549,0.144880527624608,6.30809844150953,6.90575327631146,7.82324569068552,11.3153846153846,533.386013433425,27,5062,0,0,0,0,9 +"7207",2011,55043,"WI","55","043",51186,0.976673309107959,6071,0.122416285703122,8.71127861513043,8.54305585094196,9.52522410185311,6.63076923076923,279.386023966608,83,29708,0,0,0,0,9 +"7208",2011,55045,"WI","55","045",36853,0.983366347380132,1649,0.139364502211489,7.4079243225596,8.45914025996762,9.27415988468914,6.66923076923077,300.383566708258,65,21639,0,0,0,0,9 +"7209",2011,55047,"WI","55","047",19055,0.983521385463133,876,0.15082655471005,6.77536609093639,7.64300363556072,8.55275336681479,7.98461538461538,271.256196801048,29,10691,0,0,0,0,9 +"7210",2011,55049,"WI","55","049",23586,0.984991096413126,1034,0.145806834562876,6.94119005506837,7.9844627322622,8.84231554684186,7.16923076923077,342.319212665811,48,14022,0,0,0,0,9 +"7211",2011,55053,"WI","55","053",20522,0.90317707825748,1100,0.135902933437287,7.00306545878646,7.82724090175281,8.59507973007331,7.79230769230769,330.469266358229,40,12104,0,0,0,0,9 +"7212",2011,55055,"WI","55","055",83854,0.975266534691249,5260,0.129343859565435,8.56788630573176,9.29403793099775,10.1167423711,7.39230769230769,258.849024801348,129,49836,0,0,0,0,9 +"7213",2011,55057,"WI","55","057",26705,0.95382887099794,1254,0.142332896461337,7.13409372119287,8.09894674894334,8.87010104878573,8.95384615384615,391.859436228037,62,15822,0,0,0,0,9 +"7214",2011,55059,"WI","55","059",166871,0.894403461356377,11354,0.115070923048343,9.33732538373067,10.0184220906282,10.825561529166,8.80769230769231,360.935449230402,363,100572,0,0,0,0,9 +"7215",2011,55061,"WI","55","061",20556,0.98482194979568,927,0.138645650904845,6.83195356556585,7.84227877911735,8.65625923953924,7.21538461538462,327.593448131037,39,11905,0,0,0,0,9 +"7216",2011,55063,"WI","55","063",115255,0.931421630298035,12896,0.122320072881871,9.46467246474641,9.46583494017472,10.4728556319142,5.85384615384615,275.944469731452,194,70304,0,0,0,0,9 +"7217",2011,55065,"WI","55","065",16853,0.985284519076722,858,0.133032694475761,6.75460409948796,7.52940645783701,8.43381158247719,6.23846153846154,220.796971927242,21,9511,0,0,0,0,9 +"7218",2011,55067,"WI","55","067",19794,0.9735273315146,871,0.151156916237244,6.7696419768525,7.67878899819915,8.60849534982302,9.87692307692308,320.827020764638,36,11221,0,0,0,0,9 +"7219",2011,55069,"WI","55","069",28503,0.981405466091289,1212,0.144756692278006,7.10002716662926,8.14438886554762,8.99826039301795,9.60769230769231,364.830353885443,60,16446,0,0,0,0,9 +"7220",2011,55071,"WI","55","071",81035,0.957610908866539,4027,0.144024187079657,8.30077696085145,9.16972668909089,10.049490846656,8.23076923076923,322.335987864998,153,47466,0,0,0,0,9 +"7221",2011,55073,"WI","55","073",134355,0.927267314204905,7232,0.13038591790406,8.88627090207201,9.74179181353583,10.5681838169221,7.69230769230769,306.674911972942,243,79237,0,0,0,0,9 +"7222",2011,55075,"WI","55","075",41419,0.981119775948236,2181,0.154035587532292,7.68753876620163,8.37470754311948,9.3710977508543,9.46923076923077,414.816056314422,99,23866,0,0,0,0,9 +"7223",2011,55077,"WI","55","077",15363,0.980147106684892,675,0.159343878148799,6.51471269087253,7.40000951716269,8.34830105493394,9.64615384615385,431.671021242758,38,8803,0,0,0,0,9 +"7224",2011,55079,"WI","55","079",951376,0.666245522275105,76708,0.111835909251442,11.2477612843934,11.6849609678957,12.5991479831035,9.06153846153846,378.949264443544,2188,577386,0,0,0,0,9 +"7225",2011,55081,"WI","55","081",45059,0.961805632615016,2229,0.133669189285159,7.70930833338587,8.56445838388335,9.4444634273334,7.19230769230769,422.816728167282,110,26016,0,0,0,0,9 +"7226",2011,55083,"WI","55","083",37571,0.97721647014985,1672,0.149450373958638,7.42177579364465,8.45977592054629,9.29053691397046,9.35384615384615,367.268329824876,82,22327,0,0,0,0,9 +"7227",2011,55085,"WI","55","085",35795,0.976030171811706,1588,0.166727196535829,7.37023064180708,8.23350314023399,9.22867132866091,9.18461538461538,370.406003463537,77,20788,0,0,0,0,9 +"7228",2011,55087,"WI","55","087",177877,0.933150435413235,10640,0.117631846725546,9.27237576289563,10.0701877284271,10.8827155241809,6.89230769230769,274.536719286205,296,107818,0,0,0,0,9 +"7229",2011,55089,"WI","55","089",86811,0.959152641946297,4292,0.14699750031678,8.36450810375059,9.25607826365004,10.1541684468434,5.96153846153846,207.260022502517,105,50661,0,0,0,0,9 +"7230",2011,55093,"WI","55","093",40906,0.976604899036816,4552,0.12242702781988,8.42332197580617,8.49494758246892,9.43819281901813,5.88461538461538,170.411762374668,43,25233,0,0,0,0,9 +"7231",2011,55095,"WI","55","095",43953,0.978044729597525,1865,0.145678338224922,7.53101633207792,8.58969988220299,9.43508264465409,8.38461538461539,348.896467913286,89,25509,0,0,0,0,9 +"7232",2011,55097,"WI","55","097",70093,0.956058379581413,8180,0.126289358423808,9.00944742959679,8.94884572927805,9.96335894957352,7.34615384615385,247.908991913996,107,43161,0,0,0,0,9 +"7233",2011,55099,"WI","55","099",13985,0.980050053628888,475,0.177046835895602,6.16331480403464,7.32118855673948,8.25660734462616,8.72307692307692,333.374490677861,27,8099,0,0,0,0,9 +"7234",2011,55101,"WI","55","101",194910,0.856200297573239,11181,0.129865065927864,9.32197118814737,10.1169039480918,10.970075836179,8.80769230769231,368.028687364348,429,116567,0,0,0,0,9 +"7235",2011,55103,"WI","55","103",18009,0.982564273418846,918,0.152479315897607,6.82219739062049,7.57814547241947,8.49617382419216,7.26153846153846,248.138957816377,25,10075,0,0,0,0,9 +"7236",2011,55105,"WI","55","105",159899,0.922776252509397,9384,0.125191527151514,9.14676139033331,9.93875816661805,10.7671788742669,9.29230769230769,337.160851172111,318,94317,0,0,0,0,9 +"7237",2011,55107,"WI","55","107",14615,0.983441669517619,592,0.155593568251796,6.383506634884,7.35755620091035,8.279189777195,10.7538461538462,470.763131813677,38,8072,0,0,0,0,9 +"7238",2011,55109,"WI","55","109",84836,0.972358432740818,3842,0.118841058041398,8.2537483433285,9.43556176308536,10.1441173248576,6.23076923076923,247.15864860657,127,51384,0,0,0,0,9 +"7239",2011,55111,"WI","55","111",62241,0.968766568660529,3230,0.132709950032936,8.0802374162167,8.96890555068972,9.79957043911635,7.41538461538462,346.086766950076,127,36696,0,0,0,0,9 +"7240",2011,55113,"WI","55","113",16545,0.805500151103052,718,0.169960713206407,6.57646956904822,7.45818615734049,8.41648848729461,10.8538461538462,388.39141223433,36,9269,0,0,0,0,9 +"7241",2011,55115,"WI","55","115",41669,0.904245362259713,2034,0.136264369195325,7.6177595766085,8.52852870107998,9.3615151997733,8.9,336.82792303482,80,23751,0,0,0,0,9 +"7242",2011,55117,"WI","55","117",115209,0.926568236856496,6127,0.134633578973865,8.72046051272565,9.5792797987349,10.4074093999853,7.98461538461538,291.408572390868,199,68289,0,0,0,0,9 +"7243",2011,55119,"WI","55","119",20656,0.987945391169636,957,0.132794345468629,6.86380339145295,7.80343505695217,8.64206217346211,8.22307692307692,270.315931745227,32,11838,0,0,0,0,9 +"7244",2011,55121,"WI","55","121",28994,0.983582810236601,1296,0.133924260191764,7.16703787691222,8.19229373114764,8.98707181284882,6.48461538461538,293.994120117598,49,16667,0,0,0,0,9 +"7245",2011,55123,"WI","55","123",29874,0.986978643636607,1331,0.141393854187588,7.19368581839511,8.08917567883756,8.99615656203344,6.79230769230769,389.578767957146,64,16428,0,0,0,0,9 +"7246",2011,55125,"WI","55","125",21414,0.876622770150369,778,0.173251144111329,6.65672652417839,7.62997570702779,8.6447065117152,10.7461538461538,604.281767955801,70,11584,0,0,0,0,9 +"7247",2011,55127,"WI","55","127",102641,0.970752428366832,8835,0.130103954560069,9.0864763847538,9.42319113380496,10.3186389302337,7.79230769230769,320.366876992129,197,61492,0,0,0,0,9 +"7248",2011,55129,"WI","55","129",15838,0.975375678747317,605,0.16826619522667,6.40522845803084,7.40913644392013,8.39412119382624,8.7,549.943883277217,49,8910,0,0,0,0,9 +"7249",2011,55131,"WI","55","131",132341,0.971142729766286,5970,0.133972087259428,8.69450220638665,9.78824503702385,10.5781906825165,6.66153846153846,238.690611502614,189,79182,0,0,0,0,9 +"7250",2011,55133,"WI","55","133",390895,0.94926003146625,18021,0.142813287455711,9.79929302351827,10.8158104228489,11.6681926641149,6.30769230769231,222.568247792649,516,231839,0,0,0,0,9 +"7251",2011,55135,"WI","55","135",52293,0.982942267607519,2399,0.140248216778536,7.7828072628397,8.74321260347591,9.59246861471991,8.10769230769231,404.764274576159,122,30141,0,0,0,0,9 +"7252",2011,55137,"WI","55","137",24563,0.965028701705818,1086,0.156902658470057,6.99025650049388,7.94909149983052,8.77955745588373,9.54615384615385,426.364716572307,61,14307,0,0,0,0,9 +"7253",2011,55139,"WI","55","139",167579,0.943799640766445,14586,0.123261267819954,9.58781744354418,9.9423716705861,10.8180968716277,6.86153846153846,295.883651223532,307,103757,0,0,0,0,9 +"7254",2011,55141,"WI","55","141",74653,0.962613692684822,3831,0.138494099366402,8.25088114470065,9.05239918390761,9.98220630724752,8.12307692307692,302.19843595008,131,43349,0,0,0,0,9 +"7255",2011,54001,"WV","54","001",16600,0.978855421686747,1061,0.14355421686747,6.96696713861398,7.65491704784832,8.50491816054062,9.10769230769231,370.446593949372,36,9718,1,0,0,0,9 +"7256",2011,54003,"WV","54","003",105778,0.904819527690068,6037,0.127682504868687,8.70566247879643,9.62324440918135,10.396810901166,7.48461538461538,455.791321486865,296,64942,1,0,0,0,9 +"7257",2011,54005,"WV","54","005",24411,0.990291262135922,1289,0.16000983163328,7.16162200293919,8.13563990335439,8.91072066195136,7.83846153846154,827.113173290296,123,14871,1,0,0,0,9 +"7258",2011,54007,"WV","54","007",14535,0.987547299621603,790,0.15906432748538,6.67203294546107,7.4759059693674,8.34593026197902,10.8076923076923,520.652551197501,45,8643,1,0,0,0,9 +"7259",2011,54009,"WV","54","009",23814,0.9782480893592,1534,0.163349290333417,7.3356339819272,7.94165125293056,8.86092472971904,9.52307692307692,525.792241011795,74,14074,1,0,0,0,9 +"7260",2011,54011,"WV","54","011",96584,0.928849498881802,8936,0.13205085728485,9.09784334074904,9.35487352270848,10.2938390228342,6.93846153846154,554.272517321016,324,58455,1,0,0,0,9 +"7261",2011,54013,"WV","54","013",7642,0.990840094216174,375,0.165925150484166,5.92692602597041,6.7945865808765,7.72001794043224,12.3,415.391342369917,19,4574,1,0,0,0,9 +"7262",2011,54015,"WV","54","015",9344,0.993364726027397,447,0.148865582191781,6.10255859461357,7.09754885061479,7.8984110928116,12.0076923076923,518.518518518518,28,5400,1,0,0,0,9 +"7263",2011,54017,"WV","54","017",8253,0.976735732460923,474,0.155095116927178,6.16120732169508,6.93439720992856,7.7336835707759,6.93076923076923,518.858511275195,26,5011,1,0,0,0,9 +"7264",2011,54019,"WV","54","019",45924,0.945322707081265,2517,0.157825973347269,7.83082299513532,8.66267785815822,9.49837238319225,8.70769230769231,697.674418604651,192,27520,1,0,0,0,9 +"7265",2011,54021,"WV","54","021",8754,0.851382225268449,889,0.118917066483893,6.7900972355139,7.16162200293919,7.57609734062311,7.92307692307692,272.66530334015,16,5868,1,0,0,0,9 +"7266",2011,54023,"WV","54","023",11881,0.986533120107735,561,0.156131638750947,6.3297209055227,7.3185395485679,8.15219801586179,8.71538461538461,435.60331058516,30,6887,1,0,0,0,9 +"7267",2011,54025,"WV","54","025",35743,0.959488571188764,2022,0.158324706935624,7.61184239958042,8.32893404195553,9.26898656740892,8.12307692307692,561.476969927674,118,21016,1,0,0,0,9 +"7268",2011,54027,"WV","54","027",23775,0.980357518401682,1148,0.152471083070452,7.04577657687951,8.03883475778775,8.83506493503108,8.56923076923077,462.798148807405,65,14045,1,0,0,0,9 +"7269",2011,54029,"WV","54","029",30644,0.968313536091894,1385,0.161369272940869,7.23345541862144,8.26821888006751,9.12815370098824,10.3384615384615,523.185372838418,95,18158,1,0,0,0,9 +"7270",2011,54031,"WV","54","031",13967,0.954822080618601,735,0.147132526670008,6.59987049921284,7.52294091807237,8.31311670281925,10.2153846153846,408.948761125812,34,8314,1,0,0,0,9 +"7271",2011,54033,"WV","54","033",69309,0.97127357197478,3680,0.142679882843498,8.21066803116298,9.08930204359913,9.94217927964711,6.93846153846154,604.061036850149,249,41221,1,0,0,0,9 +"7272",2011,54035,"WV","54","035",29320,0.988881309686221,1540,0.139120054570259,7.33953769540767,8.20740183337636,9.05462179697676,10,397.037037037037,67,16875,1,0,0,0,9 +"7273",2011,54037,"WV","54","037",54483,0.906117504542701,3631,0.132169667602738,8.19726337141434,8.95982562386584,9.73258060055743,6.06923076923077,348.7358326068,116,33263,1,0,0,0,9 +"7274",2011,54039,"WV","54","039",192216,0.90513276730345,10928,0.152375452615807,9.29908358181057,10.065733944899,10.994840220475,6.90769230769231,553.583248089536,644,116333,1,0,0,0,9 +"7275",2011,54041,"WV","54","041",16436,0.985945485519591,846,0.148211243611584,6.74051935960622,7.6506445514369,8.48879371689454,7.29230769230769,453.141091658084,44,9710,1,0,0,0,9 +"7276",2011,54043,"WV","54","043",21569,0.99499281376049,1104,0.145764754972414,7.00669522683704,7.97659540931658,8.77585831479753,10.4076923076923,749.613601236476,97,12940,1,0,0,0,9 +"7277",2011,54045,"WV","54","045",36462,0.972766167516867,1903,0.165514782513302,7.55118686729615,8.51338595307328,9.32936707839782,8.7,909.893992932862,206,22640,1,0,0,0,9 +"7278",2011,54047,"WV","54","047",21730,0.901564657156006,1229,0.164979291302347,7.11395610956603,7.8984110928116,8.79709507654906,11.6692307692308,1207.98319327731,161,13328,1,0,0,0,9 +"7279",2011,54049,"WV","54","049",56715,0.952693291016486,4166,0.142784095918187,8.33471162182092,8.86996051052395,9.74090979777877,6.69230769230769,414.336026517506,140,33789,1,0,0,0,9 +"7280",2011,54051,"WV","54","051",32935,0.986731440716563,1756,0.165659632609686,7.47079377419506,8.30325712085294,9.19207456316929,8.69230769230769,474.514005816623,93,19599,1,0,0,0,9 +"7281",2011,54053,"WV","54","053",27328,0.983752927400468,1412,0.148163056206089,7.25276241805319,8.13446757027756,9.04263152755007,10.6,618.123377426134,100,16178,1,0,0,0,9 +"7282",2011,54055,"WV","54","055",62568,0.925489067894131,4172,0.15295358649789,8.33615081612066,8.92638468126522,9.85387705198279,8.35384615384615,766.043290987405,281,36682,1,0,0,0,9 +"7283",2011,54057,"WV","54","057",28066,0.961341124492268,1720,0.148934654029787,7.4500795698075,8.16023249236769,9.02135667230868,8.62307692307692,365.474812694159,60,16417,1,0,0,0,9 +"7284",2011,54059,"WV","54","059",26605,0.973764330013155,1504,0.158391279834618,7.31588350450979,8.17103418920548,9.03788993497749,8.36153846153846,901.009856685009,149,16537,1,0,0,0,9 +"7285",2011,54061,"WV","54","061",99070,0.92210558191178,19211,0.104411022509337,9.86323831062844,9.26653165162593,10.361102254969,5.4,250.075780539557,165,65980,1,0,0,0,9 +"7286",2011,54063,"WV","54","063",13551,0.984281602833739,640,0.156667404619585,6.46146817635372,7.39878627541995,8.26384813136891,7.73076923076923,556.202302418833,43,7731,1,0,0,0,9 +"7287",2011,54065,"WV","54","065",17471,0.98254249899834,832,0.162669566710549,6.72383244082121,7.72400465667607,8.5577591531629,8.06153846153846,511.731196292363,53,10357,1,0,0,0,9 +"7288",2011,54067,"WV","54","067",26207,0.98874346548632,1410,0.158049376120884,7.25134498337221,8.11282747875137,8.98143022576764,8.86153846153846,716.524854455889,112,15631,1,0,0,0,9 +"7289",2011,54069,"WV","54","069",44216,0.946060249683373,3243,0.155328387913877,8.08425410630732,8.48590890137647,9.49341183187028,7.10769230769231,448.568032818311,117,26083,1,0,0,0,9 +"7290",2011,54071,"WV","54","071",7539,0.969094044302958,400,0.161559888579387,5.99146454710798,6.65157187358973,7.6515955738576,7.00769230769231,345.940959409594,15,4336,1,0,0,0,9 +"7291",2011,54073,"WV","54","073",7572,0.978605388272583,408,0.143026941362916,6.01126717440416,6.9782137426307,7.64204440287326,9.49230769230769,408.338706211047,19,4653,1,0,0,0,9 +"7292",2011,54075,"WV","54","075",8826,0.984251076365284,435,0.169952413324269,6.07534603108868,6.90975328164481,7.83834331555712,10.8538461538462,355.672032946462,19,5342,1,0,0,0,9 +"7293",2011,54077,"WV","54","077",33660,0.982590612002377,1808,0.149346405228758,7.49997654095212,8.42945427710823,9.19948162864131,7.43076923076923,436.184335293002,92,21092,1,0,0,0,9 +"7294",2011,54079,"WV","54","079",56032,0.976459880068532,2555,0.144471016561965,7.8458075026378,8.97487117097134,9.74326011321524,7.13076923076923,339.356413538535,114,33593,1,0,0,0,9 +"7295",2011,54081,"WV","54","081",79366,0.898419978328251,4732,0.153302421691908,8.46210322509828,9.25779631313248,10.0594651339905,7,659.190315291972,318,48241,1,0,0,0,9 +"7296",2011,54083,"WV","54","083",29432,0.978356890459364,1760,0.148579777113346,7.4730690880322,8.20494516501921,9.02292586811622,9.48461538461538,446.706248232966,79,17685,1,0,0,0,9 +"7297",2011,54085,"WV","54","085",10315,0.992341250605914,490,0.155598642753272,6.19440539110467,7.12689080889881,8.01301211036892,8.87692307692308,493.096646942801,30,6084,1,0,0,0,9 +"7298",2011,54087,"WV","54","087",14803,0.989664257245153,727,0.156252111058569,6.58892647753352,7.53369370984863,8.37632063253482,12.5461538461538,674.285714285714,59,8750,1,0,0,0,9 +"7299",2011,54089,"WV","54","089",13857,0.941040629284838,597,0.165620264126434,6.3919171133926,7.47816969415979,8.47177732788576,9.02307692307692,605.700712589074,51,8420,1,0,0,0,9 +"7300",2011,54091,"WV","54","091",16919,0.981795614398014,900,0.148590342218807,6.80239476332431,7.71735127218533,8.51016857647927,7.23846153846154,443.929743292801,46,10362,1,0,0,0,9 +"7301",2011,54093,"WV","54","093",7130,0.98976157082749,322,0.16030855539972,5.77455154554441,6.71538338633468,7.61874237767041,9.10769230769231,344.742674218173,14,4061,1,0,0,0,9 +"7302",2011,54095,"WV","54","095",9117,0.992541406164308,415,0.164418119995613,6.0282785202307,7.07157336421153,7.87966991460429,10.2615384615385,655.185323848746,35,5342,1,0,0,0,9 +"7303",2011,54097,"WV","54","097",24279,0.983360105440916,1908,0.143992750937024,7.55381085200823,7.96380795323145,8.87486763568805,8.46153846153846,419.345820519989,60,14308,1,0,0,0,9 +"7304",2011,54099,"WV","54","099",42234,0.990765733769001,2405,0.142065634323057,7.78530518253986,8.6285556592697,9.45383541953829,7.92307692307692,509.482026606284,126,24731,1,0,0,0,9 +"7305",2011,54101,"WV","54","101",9123,0.993752055244985,449,0.163213855091527,6.10702288774225,7.04053639021596,7.89580837708318,9.15384615384615,617.51497005988,33,5344,1,0,0,0,9 +"7306",2011,54103,"WV","54","103",16370,0.991997556505803,869,0.149053145998778,6.76734312526539,7.58528107863913,8.45892828328426,10.3076923076923,500.053197148633,47,9399,1,0,0,0,9 +"7307",2011,54107,"WV","54","107",86913,0.976332654493574,4757,0.143327235281258,8.46737249643228,9.30455904721516,10.1771340860234,8.02307692307692,470.633994554648,242,51420,1,0,0,0,9 +"7308",2011,54109,"WV","54","109",23462,0.988833006563805,1313,0.1692950302617,7.1800698743028,8.03657340970731,8.87416809036397,8.56923076923077,927.540274775089,133,14339,1,0,0,0,9 +"7309",2011,56001,"WY","56","001",36873,0.940091665988664,8448,0.101537710519893,9.04168500594604,8.1164170727942,9.379238908438,4.46153846153846,180.360721442886,45,24950,0,0,0,0,9 +"7310",2011,56003,"WY","56","003",11723,0.975944724046746,564,0.147829053996417,6.33505425149806,7.12044437239249,8.03980234373648,6.48461538461538,268.181101120051,17,6339,0,0,0,0,9 +"7311",2011,56005,"WY","56","005",46570,0.969465321022117,3192,0.115632381361391,8.0684029585697,8.70167907103957,9.53914039514886,5.20769230769231,320.480383227069,95,29643,0,0,0,0,9 +"7312",2011,56007,"WY","56","007",15842,0.962252240878677,934,0.143984345410933,6.83947643822884,7.56837926783652,8.37124213593193,6.33846153846154,422.114691650365,41,9713,0,0,0,0,9 +"7313",2011,56009,"WY","56","009",13739,0.977290923648009,739,0.142659582211224,6.6052979209482,7.44132038971762,8.29054350077274,5.13846153846154,415.191110025644,34,8189,0,0,0,0,9 +"7314",2011,56011,"WY","56","011",7117,0.98341998032879,315,0.163552058451595,5.75257263882563,6.59441345974978,7.60339933974067,5.18461538461538,339.147286821705,14,4128,0,0,0,0,9 +"7315",2011,56013,"WY","56","013",40525,0.762072794571252,2462,0.142011104256632,7.8087293067444,8.38845031552351,9.35841549004155,6.84615384615385,552.888736499229,129,23332,0,0,0,0,9 +"7316",2011,56015,"WY","56","015",13575,0.975395948434623,968,0.144456721915285,6.87523208727658,7.29097477814298,8.17272910486547,5.10769230769231,280.540678398368,22,7842,0,0,0,0,9 +"7317",2011,56017,"WY","56","017",4806,0.971702039117769,214,0.165626300457761,5.36597601502185,6.03787091992214,7.21007962817079,5.4,598.802395209581,16,2672,0,0,0,0,9 +"7318",2011,56019,"WY","56","019",8650,0.974913294797688,344,0.164971098265896,5.8406416573734,6.86797440897029,7.79069603117474,6.63846153846154,323.16703696223,16,4951,0,0,0,0,9 +"7319",2011,56021,"WY","56","021",92610,0.940038872691934,6558,0.130569053018033,8.78844095740459,9.33096381429992,10.2237578145811,6.57692307692308,379.23298792864,213,56166,0,0,0,0,9 +"7320",2011,56023,"WY","56","023",18021,0.979690361245214,747,0.144387103934299,6.61606518513282,7.68432406768116,8.53168763756669,8.33076923076923,376.157407407407,39,10368,0,0,0,0,9 +"7321",2011,56025,"WY","56","025",76431,0.960801245567898,5326,0.133506038125891,8.58035576637388,9.12728479683886,10.0364437797848,6.46153846153846,378.100100399462,177,46813,0,0,0,0,9 +"7322",2011,56029,"WY","56","029",28462,0.97856791511489,1593,0.162110884688356,7.37337430991005,8.02518932189084,9.0280988119824,6.2,390.179482561979,65,16659,0,0,0,0,9 +"7323",2011,56031,"WY","56","031",8695,0.981598619896492,368,0.169982748706153,5.90808293816893,6.81563999007433,7.79482315217939,5.31538461538462,521.983537442281,26,4981,0,0,0,0,9 +"7324",2011,56033,"WY","56","033",29257,0.971083843182828,1569,0.161123833612469,7.35819375273303,8.12029131396856,9.06102796878917,7.31538461538462,396.597310035636,69,17398,0,0,0,0,9 +"7325",2011,56035,"WY","56","035",10194,0.970669020992741,522,0.142142436727487,6.25766758788264,7.22256601882217,7.96171881598136,4.9,201.113861386139,13,6464,0,0,0,0,9 +"7326",2011,56037,"WY","56","037",44000,0.960909090909091,3041,0.122477272727273,8.01994168767737,8.59341321732765,9.45930760329985,5.57692307692308,300.608549013857,82,27278,0,0,0,0,9 +"7327",2011,56039,"WY","56","039",21422,0.969517318644384,1123,0.137988983288208,7.02375895473844,8.1086232683546,8.8321499060029,8.13076923076923,101.426736087633,15,14789,0,0,0,0,9 +"7328",2011,56041,"WY","56","041",20901,0.973541935792546,1076,0.129036888187168,6.98100574072173,7.86172707782398,8.70797882662232,6.57692307692308,433.608770350978,53,12223,0,0,0,0,9 +"7329",2011,56043,"WY","56","043",8451,0.968287776594486,325,0.143414980475683,5.78382518232974,6.7945865808765,7.73236922228439,5.88461538461538,412.236927750054,19,4609,0,0,0,0,9 +"7330",2012,2020,"AK","02","020",298806,0.705745533891555,25861,0.118253984190411,10.1604913213384,10.5689808653142,11.4443682128731,5.43076923076923,327.892780624612,629,191831,0,0,0,0,9 +"7331",2012,2050,"AK","02","050",17655,0.126876239025772,1447,0.0898329085244973,7.27724772663148,7.50108212425987,8.41913925094085,15.5538461538462,543.137664508043,52,9574,0,0,0,0,9 +"7332",2012,2070,"AK","02","070",4948,0.215036378334681,421,0.121261115602264,6.04263283368238,6.12905021006055,7.19668657083435,10.1692307692308,640.34151547492,18,2811,0,0,0,0,9 +"7333",2012,2090,"AK","02","090",100388,0.811541220066143,10937,0.11367892576802,9.29990681533523,9.42035815607147,10.3073513792773,6.17692307692308,280.513461597097,184,65594,0,0,0,0,9 +"7334",2012,2110,"AK","02","110",32391,0.750331882312988,2068,0.145688617208484,7.63433723562832,8.3813734682737,9.2424202654396,5.19230769230769,305.537275547617,65,21274,0,0,0,0,9 +"7335",2012,2122,"AK","02","122",56920,0.879040758959944,3459,0.165108924806746,8.14873480893717,8.81700144366586,9.71534911042061,8.81538461538462,386.133272763408,136,35221,0,0,0,0,9 +"7336",2012,2130,"AK","02","130",13846,0.722085800953344,797,0.155568395204391,6.68085467879022,7.43543801981455,8.33230835221912,8.37692307692308,424.457955718711,37,8717,0,0,0,0,9 +"7337",2012,2150,"AK","02","150",14037,0.61124171831588,1098,0.118045166346085,7.00124562206948,7.47986413116503,8.2995345703326,6.81538461538462,289.59679215861,26,8978,0,0,0,0,9 +"7338",2012,2170,"AK","02","170",93718,0.885006082076015,5760,0.128875989671141,8.65869275368994,9.42149231043801,10.2164718078501,8.79230769230769,377.146666198888,215,57007,0,0,0,0,9 +"7339",2012,2180,"AK","02","180",9825,0.184732824427481,835,0.099236641221374,6.72743172485086,6.97728134163075,7.83439230291044,11.8384615384615,509.832483612527,28,5492,0,0,0,0,9 +"7340",2012,2185,"AK","02","185",9287,0.328416065467858,772,0.139872940669753,6.64898455002478,7.05531284333975,7.64587582518481,7.85384615384615,318.085428657982,21,6602,0,0,0,0,9 +"7341",2012,2188,"AK","02","188",7715,0.131691510045366,760,0.0878807517822424,6.63331843328038,6.65286302935335,7.51752085060303,15.9230769230769,587.958607714017,25,4252,0,0,0,0,9 +"7342",2012,2220,"AK","02","220",9022,0.712037242296608,508,0.147417424074485,6.23048144757848,7.06219163228656,7.93200315236138,5.77692307692308,318.696883852691,18,5648,0,0,0,0,9 +"7343",2012,2261,"AK","02","261",9764,0.796702171241294,534,0.162945514133552,6.2803958389602,7.06817200038804,7.95542508891267,10.0846153846154,256.739409499358,16,6232,0,0,0,0,9 +"7344",2012,2270,"AK","02","270",7800,0.0412820512820513,740,0.0724358974358974,6.60665018619822,6.59987049921284,7.48885295573346,NA,569.505565622573,22,3863,0,0,0,0,9 +"7345",2012,2290,"AK","02","290",5616,0.236467236467236,389,0.145477207977208,5.96357934361845,6.32256523992728,7.29979736675816,17.5923076923077,843.627598674299,28,3319,0,0,0,0,9 +"7346",2012,1001,"AL","01","001",54970,0.797398581044206,3369,0.110078224486083,8.12237124340655,8.9884460400624,9.70868847423106,7.1,405.271624798911,131,32324,0,0,0,0,9 +"7347",2012,1003,"AL","01","003",190203,0.884260500623019,10603,0.137232325462795,9.2688922589258,10.0910868243254,10.9381122793718,7.73846153846154,411.068778824945,451,109714,0,0,0,0,9 +"7348",2012,1005,"AL","01","005",27172,0.506955689680553,1802,0.131017223612542,7.49665243816828,8.16194579946869,8.8688354928269,11.7615384615385,348.181054148157,58,16658,0,0,0,0,9 +"7349",2012,1007,"AL","01","007",22657,0.773138544379221,1517,0.121375292404114,7.32448997934853,8.09009578318096,8.73214326770192,8.74615384615385,497.406381013288,70,14073,0,0,0,0,9 +"7350",2012,1009,"AL","01","009",57585,0.971294607970826,3370,0.129078753147521,8.12266802334641,8.95299349932047,9.72142596194803,7.06153846153846,455.430711610487,152,33375,0,0,0,0,9 +"7351",2012,1011,"AL","01","011",10610,0.274552309142319,713,0.135438265786993,6.5694814204143,7.21817683840341,7.91425227874244,10.5615384615385,431.832202344232,28,6484,0,0,0,0,9 +"7352",2012,1013,"AL","01","013",20672,0.545327012383901,1257,0.14139899380805,7.13648320859025,7.76726399675731,8.75210719832936,11.8076923076923,692.307692307692,81,11700,0,0,0,0,9 +"7353",2012,1015,"AL","01","015",117227,0.771068098646216,9080,0.134132921596561,9.11382947159534,9.5655642636476,10.4914964149728,9.1,561.402501184545,391,69647,0,0,0,0,9 +"7354",2012,1017,"AL","01","017",34088,0.593816005632481,2145,0.139638582492373,7.67089483136212,8.35042997353814,9.23776096755218,10.0769230769231,802.098572365434,159,19823,0,0,0,0,9 +"7355",2012,1019,"AL","01","019",25961,0.941566195447017,1416,0.154308385655406,7.25559127425367,8.0643219609108,8.91637191488169,8.21538461538461,710.397025627407,107,15062,0,0,0,0,9 +"7356",2012,1021,"AL","01","021",43572,0.884696594143028,2704,0.12726062609015,7.90248743716286,8.67060073804555,9.45766909007875,7.4,632.269143704629,162,25622,0,0,0,0,9 +"7357",2012,1023,"AL","01","023",13565,0.563509030593439,751,0.146037596756358,6.62140565176413,7.36327958696304,8.29154650988391,10.5538461538462,666.144200626959,51,7656,0,0,0,0,9 +"7358",2012,1025,"AL","01","025",25161,0.547752474067008,1465,0.130042526131712,7.28961052145117,8.0375431851187,8.9201217518724,15.3692307692308,478.132470819857,68,14222,0,0,0,0,9 +"7359",2012,1027,"AL","01","027",13433,0.841733045485,767,0.137273877763716,6.64248680136726,7.40853056689463,8.27588566947436,9.58461538461538,286.944045911047,22,7667,0,0,0,0,9 +"7360",2012,1029,"AL","01","029",14889,0.954933172140506,842,0.133924373698704,6.73578001424233,7.57558465155779,8.35631996582815,8.40769230769231,682.83494231222,58,8494,0,0,0,0,9 +"7361",2012,1031,"AL","01","031",51159,0.783107566606071,3266,0.121444907054477,8.09132127353041,8.82555985506085,9.61333576618342,7.21538461538462,428.10208077523,129,30133,0,0,0,0,9 +"7362",2012,1033,"AL","01","033",54578,0.820825240939573,3359,0.140899263439481,8.11939858961229,8.80522520263231,9.70369424983013,8.97692307692308,549.086433778283,174,31689,0,0,0,0,9 +"7363",2012,1035,"AL","01","035",13043,0.522809169669555,802,0.148815456566741,6.68710860786651,7.28550654852279,8.23536064375335,12.1846153846154,757.262839047226,55,7263,0,0,0,0,9 +"7364",2012,1037,"AL","01","037",11343,0.67001675041876,619,0.161773781186635,6.4281052726846,7.26403014289953,8.1101268019411,9.58461538461538,601.865783930184,40,6646,0,0,0,0,9 +"7365",2012,1039,"AL","01","039",37809,0.859239863524558,2194,0.138300404665556,7.69348164083518,8.38389034410182,9.29990681533523,8.58461538461538,537.483641802206,115,21396,0,0,0,0,9 +"7366",2012,1041,"AL","01","041",13914,0.730918499353169,845,0.139499784389823,6.73933662735717,7.45818615734049,8.31801027754687,8.50769230769231,630.641770743168,51,8087,0,0,0,0,9 +"7367",2012,1043,"AL","01","043",80292,0.974767100084691,5094,0.132055497434365,8.5358186555394,9.21582530220675,10.0552210275621,7.89230769230769,521.556975824552,244,46783,0,0,0,0,9 +"7368",2012,1045,"AL","01","045",50313,0.772364995130483,3444,0.122016178721205,8.14438886554762,8.7216023446742,9.60447486374196,7.63076923076923,513.595166163142,153,29790,0,0,0,0,9 +"7369",2012,1047,"AL","01","047",42794,0.291092209188204,2843,0.133406552320419,7.952615111651,8.4525479979227,9.48622816454525,13.1846153846154,724.907833146928,175,24141,0,0,0,0,9 +"7370",2012,1049,"AL","01","049",70913,0.943931296095215,4375,0.125040542636752,8.38366179879172,9.16009915553944,9.92905782864766,9.26923076923077,523.637075462465,214,40868,0,0,0,0,9 +"7371",2012,1051,"AL","01","051",80211,0.773684407375547,5751,0.121118051140118,8.65712903171375,9.33573878137052,10.1516358628399,7.11538461538462,418.663916024513,207,49443,0,0,0,0,9 +"7372",2012,1053,"AL","01","053",38029,0.63377948407794,2429,0.128033868889532,7.79523492900217,8.52377150677636,9.24212969446559,9.41538461538462,605.096948014664,137,22641,0,0,0,0,9 +"7373",2012,1055,"AL","01","055",104271,0.82638509269116,6677,0.13787150789769,8.80642406385787,9.51922115556896,10.3537985484361,8.45384615384615,650.489095705461,397,61031,0,0,0,0,9 +"7374",2012,1057,"AL","01","057",16955,0.875729873193748,1057,0.14414626953701,6.96318998587024,7.62021477057445,8.49719454490955,8.80769230769231,613.685179502915,60,9777,0,0,0,0,9 +"7375",2012,1059,"AL","01","059",31699,0.932679264330105,2112,0.12028770623679,7.65539064482615,8.33230835221912,9.10119492471538,8.56153846153846,620.333772507686,113,18216,0,0,0,0,9 +"7376",2012,1061,"AL","01","061",26928,0.884469696969697,1561,0.141042780748663,7.35308192051543,8.09529377684465,8.96495121171465,7.74615384615385,523.492535384218,81,15473,0,0,0,0,9 +"7377",2012,1063,"AL","01","063",8849,0.179907334162052,605,0.164538365917053,6.40522845803084,6.72262979485545,7.89543600694297,13.8769230769231,910.530482977039,46,5052,0,0,0,0,9 +"7378",2012,1065,"AL","01","065",15366,0.407588181699857,1016,0.139593908629442,6.92362862813843,7.40853056689463,8.43381158247719,11.7461538461538,500.625782227785,44,8789,0,0,0,0,9 +"7379",2012,1067,"AL","01","067",17152,0.704174440298508,857,0.153917910447761,6.75343791859778,7.64539769942863,8.52654928634026,8.5,620.090946672179,60,9676,0,0,0,0,9 +"7380",2012,1069,"AL","01","069",103410,0.714544047964414,6243,0.127772942655449,8.73921611506174,9.49182830026464,10.3582189019472,7.76153846153846,407.777612014521,246,60327,0,0,0,0,9 +"7381",2012,1071,"AL","01","071",53107,0.936543205227183,3131,0.142165816182424,8.04910772132641,8.8427489162961,9.65598726971718,8.8,670.510494946877,207,30872,0,0,0,0,9 +"7382",2012,1073,"AL","01","073",658183,0.548444733455589,45185,0.129869656311391,10.7185204523361,11.3273546350011,12.2534713659,7.60769230769231,519.113617888219,2069,398564,0,0,0,0,9 +"7383",2012,1075,"AL","01","075",14250,0.880491228070175,788,0.143438596491228,6.66949808985788,7.48155570190952,8.31139827843664,7.70769230769231,632.283659806596,51,8066,0,0,0,0,9 +"7384",2012,1077,"AL","01","077",92687,0.880587353134744,7730,0.13503511819349,8.95286414158147,9.28526229849344,10.234552338068,7.85384615384615,479.050742528651,260,54274,0,0,0,0,9 +"7385",2012,1079,"AL","01","079",33782,0.811053223610207,2097,0.133739861464685,7.64826303090192,8.38753998318937,9.23298210245701,9.23076923076923,628.74251497006,126,20040,0,0,0,0,9 +"7386",2012,1081,"AL","01","081",148670,0.725896280352458,22942,0.0981099078495998,10.0407245708412,9.79551251087083,10.7697473508047,6.97692307692308,287.432799276095,270,93935,0,0,0,0,9 +"7387",2012,1083,"AL","01","083",87336,0.838669048273335,5060,0.122377942658239,8.52912176228151,9.41857331055464,10.1631173124207,7.04615384615385,404.850746268657,217,53600,0,0,0,0,9 +"7388",2012,1085,"AL","01","085",10857,0.251174357557336,828,0.136225476651009,6.71901315438526,7.08086789669078,8.11432470915534,15.7538461538462,639.284001917852,40,6257,0,0,0,0,9 +"7389",2012,1087,"AL","01","087",20625,0.169260606060606,2660,0.139636363636364,7.88608140177575,7.61874237767041,8.79649020733358,10.9615384615385,561.519405450041,68,12110,0,0,0,0,9 +"7390",2012,1089,"AL","01","089",342823,0.709902777818291,24589,0.120385738413117,10.1100544674455,10.677269573117,11.5774577360883,7.12307692307692,391.243018623358,821,209844,0,0,0,0,9 +"7391",2012,1091,"AL","01","091",20378,0.476494258514084,1237,0.136421631170871,7.12044437239249,7.79729127354747,8.70963008195129,10.4,578.592092574735,66,11407,0,0,0,0,9 +"7392",2012,1093,"AL","01","093",30495,0.950516478111166,1745,0.136612559435973,7.46450983463653,8.24879073369641,9.07257144223129,9.13076923076923,627.554839081122,109,17369,0,0,0,0,9 +"7393",2012,1095,"AL","01","095",94264,0.952155647967411,5967,0.122209963506747,8.69399956752208,9.38940663604946,10.2046656426557,7.97692307692308,625.659441349055,338,54023,0,0,0,0,9 +"7394",2012,1097,"AL","01","097",413893,0.611624260376474,30234,0.126472300812046,10.3167223979087,10.8250244989302,11.7563734784248,9.41538461538462,529.477233297326,1294,244392,0,0,0,0,9 +"7395",2012,1099,"AL","01","099",22582,0.562483393853512,1307,0.137808874324683,7.17548971362422,7.8935720735049,8.8034242116007,12.8230769230769,573.989621009593,73,12718,0,0,0,0,9 +"7396",2012,1101,"AL","01","101",228923,0.402519624502562,19071,0.119398225604242,9.85592413560452,10.2738089585087,11.2000623273212,8.26153846153846,432.774484489217,595,137485,0,0,0,0,9 +"7397",2012,1103,"AL","01","103",120148,0.852357092918734,7486,0.12838332722975,8.92078988846438,9.65303703668967,10.4820372431968,8.01538461538462,515.724684522639,367,71162,0,0,0,0,9 +"7398",2012,1105,"AL","01","105",10166,0.305134762935274,849,0.123844186504033,6.74405918631135,6.92951677076365,7.99429498641598,13.6153846153846,813.609467455621,44,5408,0,0,0,0,9 +"7399",2012,1107,"AL","01","107",19314,0.571864968416693,1224,0.141607124365745,7.10987946307227,7.65254569269392,8.66025403425689,10.3846153846154,665.826885009897,74,11114,0,0,0,0,9 +"7400",2012,1109,"AL","01","109",33225,0.591482317531979,5770,0.110880361173815,8.66042735950215,8.13681086367554,9.25646030758974,8.2,377.710193269891,77,20386,0,0,0,0,9 +"7401",2012,1111,"AL","01","111",22541,0.790958697484584,1295,0.141120624639546,7.16626597413364,7.8991534833431,8.7804801070333,9.39230769230769,648.631545641512,82,12642,0,0,0,0,9 +"7402",2012,1113,"AL","01","113",57549,0.552416201845384,4224,0.115466819579836,8.3485378253861,8.89054824560617,9.77018470522171,9.02307692307692,516.4959521806,178,34463,0,0,0,0,9 +"7403",2012,1115,"AL","01","115",84779,0.896731501904953,4864,0.129029594593001,8.489616423646,9.3816852380565,10.1408495410879,7.05384615384615,505.573015284312,259,51229,0,0,0,0,9 +"7404",2012,1117,"AL","01","117",200949,0.856879108629553,11181,0.12336961119488,9.32197118814737,10.3057140887938,11.0500642677208,5.16153846153846,310.48541944129,380,122389,0,0,0,0,9 +"7405",2012,1119,"AL","01","119",13444,0.252454626599226,1783,0.138946742041059,7.48605261786314,7.20934025660291,8.37885024179449,10.7461538461538,494.296577946768,39,7890,0,0,0,0,9 +"7406",2012,1121,"AL","01","121",82170,0.662918340026774,5472,0.137288548131922,8.60739945930239,9.29210467377882,10.1238672880276,9.59230769230769,596.60961158657,290,48608,0,0,0,0,9 +"7407",2012,1123,"AL","01","123",41060,0.717998051631758,2462,0.148538723818802,7.8087293067444,8.49002752334347,9.40228217214713,8.84615384615385,513.342666836367,121,23571,0,0,0,0,9 +"7408",2012,1125,"AL","01","125",198884,0.674413225799964,28526,0.112638522958106,10.2585712310834,10.0479341569012,11.0633360406748,7.16923076923077,377.739214657573,468,123895,0,0,0,0,9 +"7409",2012,1127,"AL","01","127",66110,0.926380275298745,4034,0.140886401452125,8.30251371851416,9.02208122251547,9.88078171500049,9.40769230769231,845.573024410426,327,38672,0,0,0,0,9 +"7410",2012,1129,"AL","01","129",17147,0.667988569429055,1016,0.139907855601563,6.92362862813843,7.64587582518481,8.52357279838028,12.1923076923077,499.490316004077,49,9810,0,0,0,0,9 +"7411",2012,1131,"AL","01","131",11304,0.275300778485492,686,0.141454352441614,6.53087762772588,7.13169851046691,8.11342663994365,20.3461538461538,758.653390232338,48,6327,0,0,0,0,9 +"7412",2012,1133,"AL","01","133",24194,0.977308423576093,1299,0.142349342812267,7.1693500166706,8.01895468315572,8.8405801884888,10.2076923076923,740.314813483792,103,13913,0,0,0,0,9 +"7413",2012,5001,"AR","05","001",19007,0.737517756615984,1101,0.143315620560846,7.00397413672268,7.74716496652033,8.63408694288774,8.4,484.770877160889,53,10933,0,0,0,0,9 +"7414",2012,5003,"AR","05","003",21523,0.727407889234772,1283,0.13376388049993,7.15695636461564,7.90470391387375,8.74909824839902,11.5384615384615,657.462195923734,80,12168,0,0,0,0,9 +"7415",2012,5005,"AR","05","005",41091,0.982964639458762,1804,0.156238592392495,7.49776170062257,8.28045768658256,9.30991417687228,8.09230769230769,540.233153255616,114,21102,0,0,0,0,9 +"7416",2012,5007,"AR","05","007",235010,0.916778009446407,13849,0.101021233139015,9.53596830684272,10.3982447681231,11.1312550054278,5.76923076923077,305.764784845999,410,134090,0,0,0,0,9 +"7417",2012,5009,"AR","05","009",37348,0.979624076255757,2173,0.132108814394345,7.68386398025643,8.39728289474368,9.2688922589258,7.31538461538462,410.344498520851,86,20958,0,0,0,0,9 +"7418",2012,5011,"AR","05","011",11262,0.698810158053632,695,0.132924880127864,6.54391184556479,7.22256601882217,8.08271113423758,10.3307692307692,405.426477467644,26,6413,0,0,0,0,9 +"7419",2012,5013,"AR","05","013",5276,0.771607278241092,361,0.149734647460197,5.88887795833288,6.44571981938558,7.31455283232408,8.62307692307692,568.540745420088,18,3166,0,0,0,0,9 +"7420",2012,5015,"AR","05","015",27643,0.966718518250552,1450,0.156820894982455,7.27931883541462,7.99867136101578,8.95221710176595,6.07692307692308,572.991274905587,88,15358,0,0,0,0,9 +"7421",2012,5017,"AR","05","017",11503,0.435016952099452,703,0.141093627749283,6.55535689181067,7.12044437239249,8.05515773181968,10.9230769230769,593.008739076155,38,6408,0,0,0,0,9 +"7422",2012,5019,"AR","05","019",22768,0.740073787772312,3425,0.111340477863668,8.13885675069633,7.74022952476318,8.83448260862068,9.53846153846154,537.47387279785,72,13396,0,0,0,0,9 +"7423",2012,5021,"AR","05","021",15710,0.986059834500318,905,0.135073201782304,6.80793494369993,7.52779398772144,8.37609035043824,10.5615384615385,747.470101195952,65,8696,0,0,0,0,9 +"7424",2012,5023,"AR","05","023",25776,0.982115145872129,1265,0.143854748603352,7.14282740116162,7.91315518592807,8.85637603673042,8.17692307692308,485.50621162359,68,14006,0,0,0,0,9 +"7425",2012,5025,"AR","05","025",8610,0.872009291521487,481,0.137166085946574,6.17586727010576,6.97260625130175,7.81359155295243,7.08461538461538,612.745098039216,30,4896,0,0,0,0,9 +"7426",2012,5027,"AR","05","027",24408,0.615453949524746,2482,0.117830219600131,7.81681996576455,7.87245515006398,8.87276752991094,8.66923076923077,542.49547920434,75,13825,0,0,0,0,9 +"7427",2012,5029,"AR","05","029",21141,0.869258786244738,1273,0.134714535736247,7.14913159855741,7.79152281915073,8.71243097347674,8.82307692307692,681.912681912682,82,12025,0,0,0,0,9 +"7428",2012,5031,"AR","05","031",100018,0.838299106160891,9022,0.107210702073627,9.10742131796834,9.43380387210131,10.3228884383828,6.6,371.803755217928,220,59171,0,0,0,0,9 +"7429",2012,5033,"AR","05","033",61940,0.937600904100743,3788,0.124830481110752,8.23959345430597,8.97170239970333,9.7990710356157,7.65384615384615,504.445249574984,181,35881,0,0,0,0,9 +"7430",2012,5035,"AR","05","035",50038,0.46792437747312,3342,0.116531436108557,8.11432470915534,8.73873546136347,9.63645741981521,9.2,627.1121485559,180,28703,0,0,0,0,9 +"7431",2012,5037,"AR","05","037",17703,0.75755521662995,1001,0.127040614585099,6.90875477931522,7.69165682281055,8.54985397365579,7.61538461538461,885.9357696567,88,9933,0,0,0,0,9 +"7432",2012,5039,"AR","05","039",7954,0.566884586371637,445,0.147850138295197,6.09807428216624,6.77764659363512,7.71601526664259,10.6461538461538,542.127851818387,24,4427,0,0,0,0,9 +"7433",2012,5041,"AR","05","041",12586,0.498967106308597,764,0.139758461782933,6.63856778916652,7.18841273649695,8.22121009392507,9.5,742.751035566348,52,7001,0,0,0,0,9 +"7434",2012,5043,"AR","05","043",18789,0.70174038000958,1921,0.121241151737719,7.56060116276856,7.61972421378267,8.62317351495347,10.1076923076923,342.21235664077,37,10812,0,0,0,0,9 +"7435",2012,5045,"AR","05","045",118572,0.864613905475154,14750,0.099644098100732,9.59899836176797,9.60035337552543,10.5278204170957,6.34615384615385,373.839398594364,275,73561,0,0,0,0,9 +"7436",2012,5047,"AR","05","047",17958,0.964194230983406,1098,0.133088317184542,7.00124562206948,7.68109900153636,8.5143892640835,6.81538461538462,565.812983918999,57,10074,0,0,0,0,9 +"7437",2012,5049,"AR","05","049",12170,0.980690221857025,556,0.157025472473295,6.32076829425058,7.15773548424991,8.1185050675871,6.92307692307692,592.885375494071,39,6578,0,0,0,0,9 +"7438",2012,5051,"AR","05","051",97043,0.89377904640211,5465,0.144224725121853,8.60611940061064,9.28730141311231,10.2315315136757,7.58461538461538,565.276409007233,304,53779,0,0,0,0,9 +"7439",2012,5053,"AR","05","053",18039,0.965519152946394,1041,0.127612395365597,6.94793706861497,7.77611547709874,8.57546209954021,6.52307692307692,423.88847023361,45,10616,0,0,0,0,9 +"7440",2012,5055,"AR","05","055",43237,0.981173531928672,2815,0.119666026782617,7.94271754057379,8.66146668057266,9.44722902508206,8.27692307692308,523.246525003994,131,25036,0,0,0,0,9 +"7441",2012,5057,"AR","05","057",22355,0.682442406620443,1361,0.12735405949452,7.21597500265147,7.85360481309784,8.77152528418647,6.98461538461538,653.751096228972,82,12543,0,0,0,0,9 +"7442",2012,5059,"AR","05","059",33512,0.87428383862497,2129,0.139711148245405,7.66340766489348,8.31090675716845,9.14056147736827,6.89230769230769,513.393991765364,101,19673,0,0,0,0,9 +"7443",2012,5061,"AR","05","061",13676,0.767548990933021,779,0.124597835624452,6.65801104587075,7.37148929521428,8.28071107566285,6.4,548.37446141794,42,7659,0,0,0,0,9 +"7444",2012,5063,"AR","05","063",36961,0.957766294201997,2254,0.12813506128081,7.72046169459972,8.43988008831357,9.26577507886428,8.83076923076923,492.0049200492,104,21138,0,0,0,0,9 +"7445",2012,5065,"AR","05","065",13548,0.970253912016534,643,0.148804251550044,6.46614472423762,7.29369772060144,8.155649270366,8.44615384615385,620.364126770061,46,7415,0,0,0,0,9 +"7446",2012,5067,"AR","05","067",17691,0.815386354643604,1124,0.133966423605223,7.02464903045364,7.7621706071382,8.58447793822183,10.3615384615385,584.632516703786,63,10776,0,0,0,0,9 +"7447",2012,5069,"AR","05","069",74658,0.423437541857537,5717,0.133609258217472,8.65119947126397,9.05812115899867,10.0128799293073,9.63846153846154,596.033994334278,263,44125,0,0,0,0,9 +"7448",2012,5071,"AR","05","071",25921,0.953898383550017,1823,0.117472319740751,7.50823877467866,8.03430693633949,8.90163893230033,7.04615384615385,541.088941494758,80,14785,0,0,0,0,9 +"7449",2012,5073,"AR","05","073",7444,0.612439548629769,493,0.138635142396561,6.20050917404269,6.68210859744981,7.67136092319064,9,637.411130178965,26,4079,0,0,0,0,9 +"7450",2012,5075,"AR","05","075",17040,0.982394366197183,1163,0.126291079812207,7.05875815251866,7.58882987830781,8.4755375161474,8.71538461538461,622.625580413677,59,9476,0,0,0,0,9 +"7451",2012,5077,"AR","05","077",10174,0.426282681344604,699,0.136131315116965,6.54965074223381,7.19142933003638,7.80547462527086,9.06923076923077,542.784163473819,34,6264,0,0,0,0,9 +"7452",2012,5079,"AR","05","079",14186,0.688566192020302,1193,0.114972508106584,7.08422642209792,7.646353722446,8.03203531439882,8.38461538461539,310.459265603254,29,9341,0,0,0,0,9 +"7453",2012,5081,"AR","05","081",12926,0.771777812161535,674,0.142271390994894,6.51323011091231,7.37775890822787,8.22630598801551,7,531.697341513292,39,7335,0,0,0,0,9 +"7454",2012,5083,"AR","05","083",21928,0.952663261583364,1197,0.134120758847136,7.08757370555797,7.85205020726589,8.72696777499149,7.67692307692308,561.241333773523,68,12116,0,0,0,0,9 +"7455",2012,5085,"AR","05","085",70131,0.919365188005304,4333,0.110735623333476,8.37401542173991,9.19553125632248,9.94989392535028,6.1,419.404106766225,173,41249,0,0,0,0,9 +"7456",2012,5087,"AR","05","087",15604,0.969430915149962,868,0.142591643168418,6.76619171466035,7.53155238140729,8.39412119382624,5.63076923076923,389.148321102958,35,8994,0,0,0,0,9 +"7457",2012,5089,"AR","05","089",16628,0.981958142891508,765,0.179516478229492,6.63987583382654,7.34213173058472,8.43141741439483,7.91538461538462,742.439130909488,68,9159,0,0,0,0,9 +"7458",2012,5091,"AR","05","091",43686,0.735773474339605,2924,0.12653939477178,7.98070782086967,8.61250337122056,9.47792177272096,5.70769230769231,519.259087034023,134,25806,0,0,0,0,9 +"7459",2012,5093,"AR","05","093",45499,0.638541506406734,3153,0.120002637420603,8.05610965954506,8.58466490653125,9.49709701635146,10.5230769230769,649.225922938035,169,26031,0,0,0,0,9 +"7460",2012,5095,"AR","05","095",7856,0.570519348268839,433,0.152113034623218,6.07073772800249,6.74993119378857,7.71289096149013,8.64615384615385,648.899188876014,28,4315,0,0,0,0,9 +"7461",2012,5097,"AR","05","097",9344,0.972067636986301,448,0.151220034246575,6.10479323241498,6.88550967003482,7.82244472948932,8.11538461538461,395.413206801107,20,5058,0,0,0,0,9 +"7462",2012,5099,"AR","05","099",8909,0.674374228308452,524,0.141093276462005,6.26149168432104,6.91274282049318,7.83557924666997,7.44615384615385,645.031243700867,32,4961,0,0,0,0,9 +"7463",2012,5101,"AR","05","101",8053,0.978517322736868,398,0.160064572209115,5.98645200528444,6.71174039505618,7.69984240739699,7.06153846153846,514.541387024609,23,4470,0,0,0,0,9 +"7464",2012,5103,"AR","05","103",25405,0.582641212359772,1443,0.15221413107656,7.27447955877387,7.93808872689695,8.94219945473124,10.0230769230769,598.678777869529,87,14532,0,0,0,0,9 +"7465",2012,5105,"AR","05","105",10328,0.96727343144849,606,0.139039504260263,6.40687998606931,7.16239749735572,7.99193051985248,8.67692307692308,386.100386100386,23,5957,0,0,0,0,9 +"7466",2012,5107,"AR","05","107",20736,0.361448688271605,1346,0.1328125,7.20489251020467,7.66528471847135,8.71358200542163,11.1384615384615,855.15766969535,96,11226,0,0,0,0,9 +"7467",2012,5109,"AR","05","109",11251,0.946671406986046,604,0.130655052884188,6.40357419793482,7.27309259599952,8.04366335239394,8.59230769230769,433.38683788122,27,6230,0,0,0,0,9 +"7468",2012,5111,"AR","05","111",24294,0.913929365275377,1541,0.12978513213139,7.34018683532012,8.00869818298853,8.86049916761602,8.30769230769231,765.453495089544,106,13848,0,0,0,0,9 +"7469",2012,5113,"AR","05","113",20421,0.964644238773811,1072,0.14392047402184,6.97728134163075,7.71378461659875,8.62998601889136,7.11538461538461,661.951396445412,73,11028,0,0,0,0,9 +"7470",2012,5115,"AR","05","115",62653,0.942955644582063,6272,0.115126171133066,8.74385056203024,8.88627090207201,9.81694879111889,6.97692307692308,437.341396252902,162,37042,0,0,0,0,9 +"7471",2012,5117,"AR","05","117",8488,0.870051837888784,422,0.146324222431668,6.04500531403601,6.89568269774787,7.7848892956551,7.26923076923077,547.59898904802,26,4748,0,0,0,0,9 +"7472",2012,5119,"AR","05","119",389392,0.605631343222254,27138,0.126602498253688,10.2086902387059,10.8208177439849,11.7244659604334,6.57692307692308,473.651310407323,1129,238361,0,0,0,0,9 +"7473",2012,5121,"AR","05","121",17840,0.980997757847534,1116,0.133071748878924,7.01750614294126,7.62608275807238,8.51639287124547,10.3769230769231,510.817307692308,51,9984,0,0,0,0,9 +"7474",2012,5123,"AR","05","123",27927,0.455115121566942,1780,0.12507609123787,7.48436864328613,8.26616443661249,8.87514731685335,10.3846153846154,566.986205284078,97,17108,0,0,0,0,9 +"7475",2012,5125,"AR","05","125",111454,0.92463258384625,5961,0.122839916019165,8.69299353121993,9.63023421673647,10.4011671446321,5.86153846153846,352.758137313801,229,64917,0,0,0,0,9 +"7476",2012,5127,"AR","05","127",11007,0.929045153084401,659,0.124557100027255,6.49072353450251,7.11801620446533,7.9976631270201,6.37692307692308,512.142739137618,31,6053,0,0,0,0,9 +"7477",2012,5129,"AR","05","129",8005,0.97576514678326,378,0.15840099937539,5.93489419561959,6.7202201551353,7.67740043051481,7.88461538461539,699.932264619553,31,4429,0,0,0,0,9 +"7478",2012,5131,"AR","05","131",127645,0.851588389674488,9255,0.121367856163579,9.1329192250076,9.67959371983121,10.5455256322702,7.54615384615385,504.726806601506,378,74892,0,0,0,0,9 +"7479",2012,5133,"AR","05","133",17186,0.909752123821715,1136,0.108984056790411,7.0352685992811,7.70210434005105,8.4525479979227,8.33846153846154,474.38330170778,45,9486,0,0,0,0,9 +"7480",2012,5135,"AR","05","135",17032,0.975810239549084,834,0.14872005636449,6.72623340235875,7.48042830607421,8.41582469702795,9.75384615384615,802.44122965642,71,8848,0,0,0,0,9 +"7481",2012,5137,"AR","05","137",12552,0.982711918419375,572,0.159894837476099,6.3491389913798,7.13249755166004,8.13329386122263,7.90769230769231,614.664129957559,42,6833,0,0,0,0,9 +"7482",2012,5139,"AR","05","139",40868,0.654791034550259,2356,0.138935108153078,7.76472054477148,8.51036996606811,9.39607277189222,8.87692307692308,475.947645758967,112,23532,0,0,0,0,9 +"7483",2012,5141,"AR","05","141",17166,0.977513689852033,814,0.146102761272282,6.70196036600254,7.51969240411654,8.43576619272051,9.78461538461539,575.836592785745,53,9204,0,0,0,0,9 +"7484",2012,5143,"AR","05","143",211824,0.89728264974696,23176,0.0958862074174787,10.0508725394492,10.1996213086777,11.0514454066654,5.39230769230769,320.485261586324,410,127931,0,0,0,0,9 +"7485",2012,5145,"AR","05","145",78659,0.937693080257822,7110,0.112027867122643,8.86925752279729,9.15302900526307,10.0464183817252,7.53076923076923,462.668567043087,211,45605,0,0,0,0,9 +"7486",2012,5147,"AR","05","147",7063,0.713436216904998,376,0.154183774600028,5.9295891433899,6.69208374250663,7.60986220091355,9.77692307692308,756.048387096774,30,3968,0,0,0,0,9 +"7487",2012,5149,"AR","05","149",21827,0.952673294543455,1307,0.122966967517295,7.17548971362422,7.89729647259588,8.70665585636156,6.43846153846154,560.702096538274,69,12306,0,0,0,0,9 +"7488",2012,4001,"AZ","04","001",72231,0.239024795447938,5311,0.113566197339093,8.5775354204224,8.98406692765304,9.87693821730259,18.9615384615385,628.43071871954,245,38986,0,0,0,0,9 +"7489",2012,4003,"AZ","04","003",132085,0.897823371313927,9184,0.132414732937124,9.12521811855935,9.55108916536466,10.4859266111117,9.02307692307692,434.443428202507,323,74348,0,0,0,0,9 +"7490",2012,4005,"AZ","04","005",136204,0.673409004140848,18588,0.115620686617133,9.83027149020487,9.62006307033699,10.6514779689786,8.59230769230769,316.685516995059,266,83995,0,0,0,0,9 +"7491",2012,4007,"AZ","04","007",53009,0.817219717406478,2644,0.162915731290913,7.88004820097158,8.45765547870004,9.53978799366043,10.2076923076923,580.467276157307,160,27564,0,0,0,0,9 +"7492",2012,4009,"AZ","04","009",37027,0.820968482458746,3120,0.103167958516758,8.04558828080353,8.41094339157353,9.12869638293567,8.5,364.929353420043,78,21374,0,0,0,0,9 +"7493",2012,4011,"AZ","04","011",8764,0.933135554541305,504,0.116271109082611,6.22257626807137,6.95272864462487,7.74153358928183,8.22307692307692,361.44578313253,18,4980,0,0,0,0,9 +"7494",2012,4012,"AZ","04","012",20524,0.794630676281427,851,0.146949912297798,6.74641212857337,7.34213173058472,8.46463594067756,8.54615384615385,694.670574188646,64,9213,0,0,0,0,9 +"7495",2012,4013,"AZ","04","013",3948165,0.862078712515814,283478,0.108212042809761,12.5548897977279,13.1884750355128,13.9707983053708,7.29230769230769,293.675160793307,6797,2314462,0,0,0,0,9 +"7496",2012,4015,"AZ","04","015",203484,0.93818187179336,10239,0.157162233885711,9.23395923757482,9.88827238672965,10.8934561640875,11.0307692307692,696.767771725606,756,108501,0,0,0,0,9 +"7497",2012,4017,"AZ","04","017",107334,0.518950192855945,7324,0.124862578493301,8.8989119057944,9.35018926709258,10.2686513638708,14.1307692307692,578.49660372114,333,57563,0,0,0,0,9 +"7498",2012,4019,"AZ","04","019",993231,0.871733765861114,85728,0.125996872832201,11.3589347723443,11.651295134235,12.5775361969623,7.39230769230769,377.221366648786,2180,577910,0,0,0,0,9 +"7499",2012,4021,"AZ","04","021",382371,0.845111161672826,21896,0.117312766920085,9.99405925072051,10.8412657660517,11.5026023646472,8.53076923076923,341.820973550003,748,218828,0,0,0,0,9 +"7500",2012,4023,"AZ","04","023",47330,0.970547221635326,2966,0.121001478977393,7.99496952269788,8.60483770126828,9.50211406233122,15.4615384615385,257.431318128796,64,24861,0,0,0,0,9 +"7501",2012,4025,"AZ","04","025",212065,0.952160894065499,10386,0.176002640699785,9.24821402440426,9.8788874356679,10.9750026733199,8.59230769230769,500.69516551979,569,113642,0,0,0,0,9 +"7502",2012,4027,"AZ","04","027",202520,0.92678253999605,17943,0.0945042464941734,9.79495534571267,10.0218037793542,10.8600945510718,23.7769230769231,297.879961916612,316,106083,0,0,0,0,9 +"7503",2012,6001,"CA","06","001",1553729,0.544402530943298,110739,0.119246020380646,11.6149313601754,12.3512546553747,13.1263334860832,8.82307692307692,249.821086397809,2468,987907,0,0,0,0,9 +"7504",2012,6005,"CA","06","005",37105,0.927772537393882,1669,0.178709068858644,7.41997992366183,8.34212526333359,9.15841529911126,12.4615384615385,463.111559447934,101,21809,0,0,0,0,9 +"7505",2012,6007,"CA","06","007",220877,0.894230725698013,26108,0.133336653431548,10.1699970597551,10.0367063963224,11.087864608165,12.3461538461538,401.500143662952,531,132254,0,0,0,0,9 +"7506",2012,6009,"CA","06","009",44816,0.942832916815423,1954,0.18839253837915,7.57763383260273,8.34188696951619,9.43978403583887,12.5615384615385,438.544033807758,110,25083,0,0,0,0,9 +"7507",2012,6011,"CA","06","011",21274,0.927564162827865,1422,0.117373319544984,7.25981961036319,7.85399308722424,8.65886634973238,21.1846153846154,218.505756786285,26,11899,0,0,0,0,9 +"7508",2012,6013,"CA","06","013",1077439,0.704418533206984,65073,0.127343636159448,11.0832649956217,11.9029113862299,12.7094022441692,9.10769230769231,254.594882827791,1652,648874,0,0,0,0,9 +"7509",2012,6015,"CA","06","015",28195,0.813016492285866,1819,0.13555594963646,7.50604217851812,8.19560956728878,8.87346805533363,13.7307692307692,391.778332954804,69,17612,0,0,0,0,9 +"7510",2012,6017,"CA","06","017",180613,0.923399755277859,9855,0.163969370975511,9.19573421958682,9.93119999110266,10.8925081645741,10.3923076923077,340.6317000956,367,107741,0,0,0,0,9 +"7511",2012,6019,"CA","06","019",944779,0.789418477760407,79288,0.0993491599622769,11.2808420720865,11.6493601389917,12.50044603113,15.3538461538462,320.74713909469,1733,540301,0,0,0,0,9 +"7512",2012,6021,"CA","06","021",27836,0.915972122431384,1813,0.124191694208938,7.50273821075485,8.06652149046999,8.9470256559727,14.4076923076923,358.836344995515,56,15606,0,0,0,0,9 +"7513",2012,6023,"CA","06","023",134597,0.87129728002853,13054,0.146972072185859,9.47684987919516,9.65476975010249,10.6329666623435,9.73076923076923,442.330953679767,373,84326,0,0,0,0,9 +"7514",2012,6025,"CA","06","025",176487,0.904978836968162,14296,0.0997807203930035,9.56773505683926,10.0055024779429,10.7736924602149,27.7153846153846,276.22394930944,279,101005,0,0,0,0,9 +"7515",2012,6027,"CA","06","027",18344,0.831661578717837,886,0.162396423898823,6.78671695060508,7.58069975222456,8.55082137239622,9.23076923076923,380.228136882129,40,10520,0,0,0,0,9 +"7516",2012,6029,"CA","06","029",854392,0.844971628947837,69867,0.0971099916665886,11.1543487137419,11.5854600571534,12.3654880139607,13.3615384615385,341.571594217,1685,493308,0,0,0,0,9 +"7517",2012,6031,"CA","06","031",150884,0.833269266456351,13120,0.0887304154184672,9.48189306249808,9.95811777318724,10.5257829921241,15.1153846153846,283.332071676526,262,92471,0,0,0,0,9 +"7518",2012,6033,"CA","06","033",63966,0.903542506956821,3574,0.170105993809211,8.18144069571937,8.79346036105272,9.83032528690714,12.9923076923077,606.992554224668,225,37068,0,0,0,0,9 +"7519",2012,6035,"CA","06","035",33622,0.831181964190114,2790,0.120724525608233,7.93379687481541,8.56121007683301,8.85537824604113,12.7,320.924261874198,75,23370,0,0,0,0,9 +"7520",2012,6037,"CA","06","037",9931394,0.729575525852665,782992,0.108947142767672,13.5708777578071,14.1612879385668,14.9473761104371,10.9923076923077,246.150942527379,15181,6167354,0,0,0,0,9 +"7521",2012,6039,"CA","06","039",151520,0.87740232312566,11340,0.10840813093981,9.33609157728174,9.83435181370127,10.7205544562652,14.6769230769231,344.699519509761,297,86162,0,0,0,0,9 +"7522",2012,6041,"CA","06","041",256087,0.882192379933382,10384,0.157649548786155,9.24802143894387,10.4599841952777,11.2427689193843,6.39230769230769,220.597919136046,335,151860,0,0,0,0,9 +"7523",2012,6043,"CA","06","043",17912,0.924575703439035,835,0.184010719071014,6.72743172485086,7.43248380791712,8.52615293278771,12.5307692307692,454.457551730806,47,10342,0,0,0,0,9 +"7524",2012,6045,"CA","06","045",87293,0.88879978921563,4788,0.164068138338698,8.47386806667786,9.23063307524395,10.1408101050236,10.2076923076923,461.054564635552,236,51187,0,0,0,0,9 +"7525",2012,6047,"CA","06","047",260776,0.835345277172746,21990,0.0929916863515047,9.99834308354881,10.3704553282382,11.1786967098613,16.5923076923077,341.614694224042,499,146071,0,0,0,0,9 +"7526",2012,6049,"CA","06","049",9358,0.908527463133148,404,0.169801239581107,6.00141487796115,6.92165818415113,7.84698098213879,14.6692307692308,774.893452150329,40,5162,0,0,0,0,9 +"7527",2012,6051,"CA","06","051",14328,0.934533780011167,1012,0.142448352875489,6.91968384984741,7.52185925220163,8.37286082052632,10.5153846153846,136.827702347121,13,9501,0,0,0,0,9 +"7528",2012,6053,"CA","06","053",424222,0.844819457736751,33214,0.107035938730193,10.4107267527667,10.9212331830656,11.6847251943046,11.8461538461538,231.293814678812,582,251628,0,0,0,0,9 +"7529",2012,6055,"CA","06","055",138504,0.870776295269451,8703,0.133411309420667,9.07142307278951,9.78098087804333,10.6054210203767,8.60769230769231,248.23605659293,203,81777,0,0,0,0,9 +"7530",2012,6057,"CA","06","057",98165,0.958590128864667,4628,0.186675495339479,8.43988008831357,9.22444049635496,10.2663930462255,9.90769230769231,337.695968645017,193,57152,0,0,0,0,9 +"7531",2012,6059,"CA","06","059",3078710,0.762199427682373,228703,0.112461712860256,12.3401794975462,12.9754166864256,13.7592639635847,8.02307692307692,207.523742549733,3916,1887013,0,0,0,0,9 +"7532",2012,6061,"CA","06","061",360269,0.888158570401561,19802,0.130102784308392,9.89353822168246,10.7499136044373,11.5639797307927,9.51538461538462,275.781742574829,573,207773,0,0,0,0,9 +"7533",2012,6063,"CA","06","063",19380,0.935242518059855,952,0.198400412796698,6.85856503479136,7.46278915741245,8.62425226370964,16.4769230769231,594.059405940594,66,11110,0,0,0,0,9 +"7534",2012,6065,"CA","06","065",2260763,0.824994481951447,170402,0.102838289550917,12.0459156303977,12.5925995526181,13.3785547827647,11.8153846153846,281.890504460435,3650,1294829,0,0,0,0,9 +"7535",2012,6067,"CA","06","067",1444819,0.676651539050912,106807,0.115723145944232,11.5787787464315,12.154974069026,13.0082334111575,10.6846153846154,325.969799990667,2864,878609,0,0,0,0,9 +"7536",2012,6069,"CA","06","069",56704,0.906443989841986,3766,0.115353414221219,8.2337687092171,8.90557995798965,9.71262966471989,13.2615384615385,245.479583283439,82,33404,0,0,0,0,9 +"7537",2012,6071,"CA","06","071",2073088,0.792017029667819,172760,0.102737558656458,12.0596586270746,12.509837198812,13.329548263923,11.5846153846154,315.172026652131,3874,1229170,0,0,0,0,9 +"7538",2012,6073,"CA","06","073",3175148,0.788951570131534,276782,0.111204895015917,12.5309854717094,12.9539210568602,13.7851400063433,9.27692307692308,239.366720235846,4732,1976883,0,0,0,0,9 +"7539",2012,6075,"CA","06","075",828963,0.563856287916348,55578,0.122255154934539,10.9255427184821,11.8230977264572,12.5439439030651,6.9,240.191058738253,1405,584951,0,0,0,0,9 +"7540",2012,6077,"CA","06","077",699444,0.708289727269088,52233,0.105369407700974,10.8634697580347,11.4097403591694,12.21150287511,14.5923076923077,355.567915458265,1432,402736,0,0,0,0,9 +"7541",2012,6079,"CA","06","079",274174,0.911712999773866,29996,0.141716574146345,10.3088193184213,10.2885458508666,11.2744779023961,8.36923076923077,290.958726965767,486,167034,0,0,0,0,9 +"7542",2012,6081,"CA","06","081",739700,0.655965932134649,40976,0.127623360821955,10.6207418084393,11.6003226008787,12.3463431542157,6.5,194.357954186431,892,458947,0,0,0,0,9 +"7543",2012,6083,"CA","06","083",429635,0.881767081359759,48083,0.110028279818916,10.7806839632692,10.8070982312529,11.7294632461474,8.53846153846154,269.859680776696,691,256059,0,0,0,0,9 +"7544",2012,6085,"CA","06","085",1837605,0.594824241335869,116915,0.109040299737974,11.6692024540275,12.5487150929033,13.237272955299,7.99230769230769,191.103460756039,2186,1143883,0,0,0,0,9 +"7545",2012,6087,"CA","06","087",266391,0.900529672548998,27153,0.140864368540979,10.2092428164953,10.3847710739211,11.3170200641019,12.0461538461538,276.87853981105,461,166499,0,0,0,0,9 +"7546",2012,6089,"CA","06","089",177908,0.912792004856443,11641,0.147520066551251,9.36228862824824,9.84638796049556,10.8647325294113,14.4076923076923,511.605782019047,527,103009,0,0,0,0,9 +"7547",2012,6093,"CA","06","093",44091,0.901884738381983,2209,0.180943956816584,7.70029520342012,8.37008432637803,9.43316387207947,15.8615384615385,581.885308399213,145,24919,0,0,0,0,9 +"7548",2012,6095,"CA","06","095",419645,0.631557626088718,31169,0.129986059645653,10.3471792901165,10.8719342066274,11.7593010505543,10.8538461538462,319.75564018791,827,258635,0,0,0,0,9 +"7549",2012,6097,"CA","06","097",489784,0.898683909641801,32951,0.146035803537886,10.4027768884838,10.9988111059045,11.917923797489,9.00769230769231,281.827016520894,841,298410,0,0,0,0,9 +"7550",2012,6099,"CA","06","099",520336,0.864750853294794,39284,0.106888625811014,10.5785725902777,11.0973039547777,11.9302598536485,15.1230769230769,346.742247194736,1046,301665,0,0,0,0,9 +"7551",2012,6101,"CA","06","101",94153,0.771531443501535,6710,0.111414399966013,8.81135422996573,9.349058291288,10.1966794181615,17.0461538461538,323.003377692464,175,54179,0,0,0,0,9 +"7552",2012,6103,"CA","06","103",63213,0.931153401990097,3734,0.13503551484663,8.22523532410167,8.86488793377419,9.78098087804333,13.9692307692308,455.337568160099,162,35578,0,0,0,0,9 +"7553",2012,6105,"CA","06","105",13494,0.913072476656292,550,0.202312138728324,6.30991827822652,7.20711885620776,8.25738565573044,14.9076923076923,757.862826828344,60,7917,0,0,0,0,9 +"7554",2012,6107,"CA","06","107",449625,0.898704475952182,34592,0.0935201556852933,10.4513777204389,10.9153247999215,11.7164538914086,16.3923076923077,335.071939541719,830,247708,0,0,0,0,9 +"7555",2012,6109,"CA","06","109",54201,0.930185789930075,3113,0.173686832346267,8.04334217044161,8.63728467167406,9.57748036576268,13.1692307692308,439.201907391141,140,31876,0,0,0,0,9 +"7556",2012,6111,"CA","06","111",833287,0.868773903829053,59458,0.119634651686634,10.9930254599285,11.5903401069177,12.421510584724,9.23846153846154,224.775525781893,1119,497830,0,0,0,0,9 +"7557",2012,6113,"CA","06","113",204558,0.784144350257629,30089,0.10227906021764,10.3119149354394,10.0716679257751,11.0742344389634,10.8,256.854711629373,326,126920,0,0,0,0,9 +"7558",2012,6115,"CA","06","115",72770,0.826728047272228,5694,0.111392057166415,8.64716826783798,9.05823759376623,9.94960748814968,15.6230769230769,390.670965616248,166,42491,0,0,0,0,9 +"7559",2012,8001,"CO","08","001",460568,0.887927515589446,30991,0.0999852356221014,10.3414521187349,11.1265568525531,11.8325784766642,9.53076923076923,306.371887229225,851,277767,0,0,0,0,9 +"7560",2012,8003,"CO","08","003",15685,0.901434491552439,1832,0.118712145361811,7.51316354523408,7.35755620091035,8.4359831359907,10.6307692307692,438.034188034188,41,9360,0,0,0,0,9 +"7561",2012,8005,"CO","08","005",597052,0.804616683303967,36691,0.121697942557767,10.5102867723608,11.3542696522542,12.1441653264092,7.83076923076923,254.257380413189,933,366951,0,0,0,0,9 +"7562",2012,8007,"CO","08","007",12141,0.94679186228482,469,0.204019438267029,6.15060276844628,7.07242190053737,8.18646442942209,10.2153846153846,238.999015886405,17,7113,0,0,0,0,9 +"7563",2012,8011,"CO","08","011",5850,0.879316239316239,393,0.130598290598291,5.97380961186926,6.78445706263764,7.00488198971286,8.49230769230769,423.50449973531,16,3778,0,0,0,0,9 +"7564",2012,8013,"CO","08","013",304717,0.926108487547462,32739,0.124820735305218,10.3963223067812,10.6162657770452,11.4708109688629,6.32307692307692,201.312372258848,393,195219,0,0,0,0,9 +"7565",2012,8014,"CO","08","014",58971,0.906021603839175,3219,0.116023130013057,8.07682603129881,9.14323856843545,9.8005130769083,6.73846153846154,197.520026336003,72,36452,0,0,0,0,9 +"7566",2012,8015,"CO","08","015",18164,0.9581589958159,879,0.180356749614622,6.77878489768518,7.65539064482615,8.5016733797582,6.95384615384615,317.230127798423,35,11033,0,0,0,0,9 +"7567",2012,8019,"CO","08","019",9017,0.970500166352445,328,0.207718753465676,5.79301360838414,7.16006920759613,7.9707403900071,7.12307692307692,348.605577689243,21,6024,0,0,0,0,9 +"7568",2012,8021,"CO","08","021",8248,0.942774005819593,483,0.137124151309408,6.18001665365257,6.75110146893676,7.67647364638916,10.7692307692308,652.565256525653,29,4444,0,0,0,0,9 +"7569",2012,8029,"CO","08","029",30473,0.966429298067141,1416,0.162832671545302,7.25559127425367,8.04494704961772,9.00565049932022,9.8,443.698285166087,74,16678,0,0,0,0,9 +"7570",2012,8031,"CO","08","031",634965,0.820372776452245,43984,0.104889245863945,10.691581210405,11.4874948301084,12.2362623166932,7.93076923076923,321.565852402236,1336,415467,0,0,0,0,9 +"7571",2012,8035,"CO","08","035",298826,0.930949783486042,11852,0.113079183203603,9.38025190869346,10.8390121225256,11.4189553868284,6.08461538461538,148.124133613558,265,178904,0,0,0,0,9 +"7572",2012,8037,"CO","08","037",52330,0.960596216319511,2998,0.116529715268488,8.00570067866254,9.09649955555242,9.69282824771042,7.28461538461538,149.562816382881,52,34768,0,0,0,0,9 +"7573",2012,8039,"CO","08","039",23276,0.969539439766283,995,0.176233029730194,6.90274273715859,7.94200680848986,8.89013510781884,7.20769230769231,317.175756739985,46,14503,0,0,0,0,9 +"7574",2012,8041,"CO","08","041",645900,0.864282396655829,52768,0.112328533828766,10.8736602253593,11.3068848215557,12.178300546184,8.97692307692308,288.166130061013,1134,393523,0,0,0,0,9 +"7575",2012,8043,"CO","08","043",47072,0.92617692046227,2592,0.144841944255608,7.86018505747217,8.74001669151952,9.2985343827121,11.8076923076923,430.011352299701,125,29069,0,0,0,0,9 +"7576",2012,8045,"CO","08","045",56765,0.956029243371796,3245,0.124301946622038,8.08487062913819,9.00134624376639,9.72853875007159,8.6,243.336864103518,85,34931,0,0,0,0,9 +"7577",2012,8049,"CO","08","049",14227,0.972165600618542,684,0.186546706965629,6.52795791762255,7.56268124672188,8.38935981990635,7.36923076923077,295.389809051588,28,9479,0,0,0,0,9 +"7578",2012,8051,"CO","08","051",15390,0.959584145549058,2013,0.12962962962963,7.60738142563979,7.64204440287326,8.44569718971117,6.06153846153846,270.03568328672,28,10369,0,0,0,0,9 +"7579",2012,8055,"CO","08","055",6567,0.915029693924166,272,0.194152581087254,5.605802066296,6.31716468674728,7.48099216286952,14.4153846153846,476.99214365881,17,3564,0,0,0,0,9 +"7580",2012,8059,"CO","08","059",546736,0.937150654063387,33002,0.14451033039712,10.4043234446727,11.1724331586861,12.0449821071606,7.50769230769231,283.006430632663,966,341335,0,0,0,0,9 +"7581",2012,8065,"CO","08","065",7259,0.955916792946687,481,0.14092850254856,6.17586727010576,6.94793706861497,7.62900388965296,8.72307692307692,282.056845302669,13,4609,0,0,0,0,9 +"7582",2012,8067,"CO","08","067",52489,0.908628474537522,3752,0.154413305644992,8.23004431012611,8.80672355472564,9.70613357290821,6.73846153846154,320.955066290719,107,33338,0,0,0,0,9 +"7583",2012,8069,"CO","08","069",310983,0.948778550596013,33683,0.128408948399109,10.4247485380236,10.5306017624916,11.4804126037898,6.8,232.081700974024,452,194759,0,0,0,0,9 +"7584",2012,8071,"CO","08","071",14996,0.928714323819685,905,0.160309415844225,6.80793494369993,7.36327958696304,8.3091845276863,12.1615384615385,605.143721633888,52,8593,0,0,0,0,9 +"7585",2012,8075,"CO","08","075",22360,0.930232558139535,1672,0.128354203935599,7.42177579364465,7.9402277651457,8.58914169072882,6.08461538461538,315.66109477007,44,13939,0,0,0,0,9 +"7586",2012,8077,"CO","08","077",147360,0.957878664495114,10037,0.135409880564604,9.2140335438138,9.71800099239902,10.6631946473413,9.79230769230769,372.072408323225,319,85736,0,0,0,0,9 +"7587",2012,8081,"CO","08","081",13172,0.970847251746128,786,0.146978439113271,6.66695679242921,7.34407285057307,8.25140306538056,8.36923076923077,479.676849280485,38,7922,0,0,0,0,9 +"7588",2012,8083,"CO","08","083",25497,0.8471192689336,1219,0.160528689649763,7.10578612948127,7.96067260838812,8.90449432889673,8.66923076923077,440.165061898212,64,14540,0,0,0,0,9 +"7589",2012,8085,"CO","08","085",40675,0.95980331899201,1762,0.146551936078672,7.47420480649612,8.41493895737748,9.33432635175717,10.4692307692308,407.66956365917,91,22322,0,0,0,0,9 +"7590",2012,8087,"CO","08","087",28243,0.938498034911305,1770,0.115462238430762,7.47873482556787,8.0861025356691,8.95841146923022,6.87692307692308,400.203277855419,63,15742,0,0,0,0,9 +"7591",2012,8089,"CO","08","089",18631,0.934034673393806,1048,0.137244377650153,6.95463886488099,7.58426481838906,8.53267276226462,10.3923076923077,617.283950617284,62,10044,0,0,0,0,9 +"7592",2012,8093,"CO","08","093",16052,0.967542985297782,560,0.222713680538251,6.3279367837292,7.59588991771854,8.54012816269873,6.93076923076923,299.569369032016,32,10682,0,0,0,0,9 +"7593",2012,8097,"CO","08","097",17303,0.970062994856383,788,0.165058082413454,6.66949808985788,7.8458075026378,8.61250337122056,7.3,128.194171438339,15,11701,0,0,0,0,9 +"7594",2012,8099,"CO","08","099",12422,0.964578972790211,761,0.134438898728063,6.63463335786169,7.21670948670946,8.13593277200489,7.10769230769231,367.755222124154,25,6798,0,0,0,0,9 +"7595",2012,8101,"CO","08","101",160763,0.924149213438416,10894,0.133712359187126,9.29596745794362,9.84219708409302,10.7504067698185,10.8153846153846,484.306098789777,447,92297,0,0,0,0,9 +"7596",2012,8105,"CO","08","105",11867,0.950872166512177,674,0.14637229291312,6.51323011091231,7.18159194461187,8.10892415597534,12.3769230769231,539.40665268205,36,6674,0,0,0,0,9 +"7597",2012,8107,"CO","08","107",23283,0.977064811235665,1276,0.162564961559936,7.15148546390474,8.16763571524637,8.90625787815662,7.29230769230769,203.717850776674,32,15708,0,0,0,0,9 +"7598",2012,8117,"CO","08","117",28307,0.967852474652913,1993,0.137527819973858,7.5973963202128,8.43381158247719,9.12532699764923,6.17692307692308,114.109942448899,23,20156,0,0,0,0,9 +"7599",2012,8119,"CO","08","119",23456,0.9668741473397,912,0.209541268758527,6.81563999007433,7.88720858581393,8.90313563303554,8.5,324.499729583559,48,14792,0,0,0,0,9 +"7600",2012,8123,"CO","08","123",264025,0.946565666130101,19366,0.112027270144873,9.87127423017148,10.4919406619814,11.2579170795657,7.86923076923077,282.248494140136,440,155891,0,0,0,0,9 +"7601",2012,8125,"CO","08","125",10107,0.980112793113684,516,0.122687246462848,6.24610676548156,7.05358572719368,7.89170465933011,5.21538461538462,273.473108477666,15,5485,0,0,0,0,9 +"7602",2012,9001,"CT","09","001",935293,0.81460355204198,51867,0.122519894835094,10.8564380287729,11.7426950157848,12.5469281188611,7.8,232.918692177844,1286,552124,0,0,0,0,9 +"7603",2012,9003,"CT","09","003",897795,0.787440339943974,56490,0.129380315105341,10.9418189103193,11.6352492867465,12.5207665902288,8.55384615384615,290.317844139092,1562,538031,0,0,0,0,9 +"7604",2012,9005,"CT","09","005",187591,0.957636560389358,9178,0.158152576616149,9.12456459495478,10.0238450491999,10.9439939197972,7.62307692307692,324.640671694891,365,112432,0,0,0,0,9 +"7605",2012,9007,"CT","09","007",165677,0.909794358903167,9111,0.147715132456527,9.11723775371386,9.93875816661805,10.8343712867132,7.16923076923077,303.732715210615,304,100088,0,0,0,0,9 +"7606",2012,9009,"CT","09","009",864732,0.805207856306925,59819,0.128032731528381,10.9990786152271,11.5915980036215,12.4955655773859,9.1,306.596737718327,1593,519575,0,0,0,0,9 +"7607",2012,9011,"CT","09","011",274173,0.861317489322435,20106,0.134400542723025,9.90877355696536,10.4138830838256,11.3153034508861,8.67692307692308,315.427317556005,529,167709,0,0,0,0,9 +"7608",2012,9013,"CT","09","013",152005,0.916502746620177,17549,0.128726028749054,9.77275224721361,9.77218225175814,10.7363966754712,7.36153846153846,222.859641078683,209,93781,0,0,0,0,9 +"7609",2012,9015,"CT","09","015",117945,0.943024290983085,8535,0.132561787273729,9.05193063522854,9.62582181535983,10.4976703849435,9.49230769230769,310.18486464031,224,72215,0,0,0,0,9 +"7610",2012,11001,"DC","11","001",635737,0.437987721337597,58724,0.106347436125316,10.9806037808594,11.3614162932864,12.3269176552224,8.97692307692308,347.480880378306,1488,428225,1,0,0,0,9 +"7611",2012,10001,"DE","10","001",167370,0.702658779948617,13262,0.116562107904642,9.49265808192881,9.90433719149071,10.8329511401205,7.76923076923077,436.788680406029,426,97530,1,0,0,0,9 +"7612",2012,10003,"DE","10","003",545053,0.689083446930849,41982,0.122644953793484,10.644996233974,11.1556932229126,12.0514927069179,6.85384615384615,361.261512030577,1207,334107,1,0,0,0,9 +"7613",2012,10005,"DE","10","005",203095,0.834525714567074,10670,0.154336640488441,9.2751913442958,9.96284077823564,10.9641556462881,7.12307692307692,379.699780499894,429,112984,1,0,0,0,9 +"7614",2012,12001,"FL","12","001",251596,0.72277778661028,44218,0.112708469133055,10.6968872249852,10.1640039569151,11.3428486345927,6.85384615384615,261.209216433097,430,164619,0,0,0,0,9 +"7615",2012,12003,"FL","12","003",27059,0.852877046454045,1861,0.120181824901142,7.52886925664225,8.20958048347558,8.93274063486591,8.84615384615385,434.171100103957,71,16353,0,0,0,0,9 +"7616",2012,12005,"FL","12","005",171818,0.846762271706108,12284,0.128519712719273,9.41605288156071,9.95522574794054,10.8652677692307,8.93076923076923,461.063123559178,482,104541,0,0,0,0,9 +"7617",2012,12007,"FL","12","007",27052,0.789812213514712,1782,0.131931095667603,7.48549160803075,8.12444685571585,8.85037430393924,7.80769230769231,523.68626978872,87,16613,0,0,0,0,9 +"7618",2012,12009,"FL","12","009",547119,0.856616202325271,31304,0.14523165892612,10.3515011638902,10.9745402059627,11.9748843216329,9.69230769230769,457.638826704872,1431,312692,0,0,0,0,9 +"7619",2012,12011,"FL","12","011",1814468,0.665918054217545,113906,0.123102749676489,11.6431288258354,12.4311143941275,13.2497869049396,8.23076923076923,313.463584095224,3492,1114005,0,0,0,0,9 +"7620",2012,12013,"FL","12","013",14673,0.835071219246235,943,0.124923328562666,6.84906628263346,7.58882987830781,8.21851757748959,9.43076923076923,436.974789915966,39,8925,0,0,0,0,9 +"7621",2012,12015,"FL","12","015",162840,0.916924588553181,6603,0.166635961680177,8.79527937019457,9.50844296175585,10.618494067449,9.8,491.122024933887,390,79410,0,0,0,0,9 +"7622",2012,12017,"FL","12","017",139215,0.945831986495708,5681,0.16342348166505,8.64488255255713,9.37636315580063,10.4853958626041,11.0846153846154,677.25361980383,464,68512,0,0,0,0,9 +"7623",2012,12019,"FL","12","019",193909,0.848454687508058,11966,0.125182430934098,9.38982457394998,10.1706479892671,10.9826281591396,7.85384615384615,374.395507253913,432,115386,0,0,0,0,9 +"7624",2012,12021,"FL","12","021",332330,0.906255830048446,16413,0.129627177805194,9.70582898273194,10.4667538122416,11.3614395647951,8.7,305.893629484123,517,169013,0,0,0,0,9 +"7625",2012,12023,"FL","12","023",67903,0.791231609796327,5060,0.135222302401956,8.52912176228151,8.98532006064911,9.84622913369585,9.09230769230769,495.098524606397,200,40396,0,0,0,0,9 +"7626",2012,12027,"FL","12","027",35003,0.843213438848099,2673,0.114904436762563,7.89095671613892,8.31996102188653,8.96992349199152,10.3076923076923,432.276657060519,84,19432,0,0,0,0,9 +"7627",2012,12029,"FL","12","029",16152,0.899826646854879,856,0.152179296681525,6.75227037614174,7.49164547360513,8.33134542484572,10.5307692307692,556.506849315069,52,9344,0,0,0,0,9 +"7628",2012,12031,"FL","12","031",880349,0.6355206855463,68057,0.120963390655297,11.1281008683294,11.6508596510595,12.551479846209,8.97692307692308,442.560845289394,2431,549303,0,0,0,0,9 +"7629",2012,12033,"FL","12","033",303556,0.716523475075439,28000,0.127511892369118,10.2399597891573,10.4143331761021,11.4167008672132,8.67692307692308,492.322636906536,892,181182,0,0,0,0,9 +"7630",2012,12035,"FL","12","035",98461,0.849920273001493,4573,0.152984430383604,8.42792472365806,9.26188863385676,10.2234673912871,10.1769230769231,434.346164240763,225,51802,0,0,0,0,9 +"7631",2012,12037,"FL","12","037",11609,0.840640882074253,715,0.143164785941942,6.57228254269401,7.28756064030972,7.9592759601164,6.7,502.035278154681,37,7370,0,0,0,0,9 +"7632",2012,12039,"FL","12","039",46571,0.426102080693994,3038,0.139743617272552,8.01895468315572,8.70118002752925,9.59947282546345,10.6230769230769,478.639805686527,134,27996,0,0,0,0,9 +"7633",2012,12041,"FL","12","041",16908,0.927253371185238,1465,0.138041163946061,7.28961052145117,7.51643330291563,8.41272116981953,9.34615384615385,594.865372573575,57,9582,0,0,0,0,9 +"7634",2012,12043,"FL","12","043",12676,0.80285579047018,702,0.129220574313664,6.55393340402581,7.39756153552405,7.94129557090653,7.96153846153846,370.472008781559,27,7288,0,0,0,0,9 +"7635",2012,12045,"FL","12","045",15769,0.794914071913247,987,0.137294692117446,6.89467003943348,7.72400465667607,8.16763571524637,8.33076923076923,467.289719626168,48,10272,0,0,0,0,9 +"7636",2012,12047,"FL","12","047",14726,0.633369550454978,1546,0.134591878310471,7.34342622914737,7.50933526601659,8.14293601043227,9.19230769230769,514.690113660733,48,9326,0,0,0,0,9 +"7637",2012,12049,"FL","12","049",27433,0.895454379761601,2190,0.101374257281376,7.69165682281055,8.11072758297449,8.83302530728436,9.33076923076923,389.81288981289,60,15392,0,0,0,0,9 +"7638",2012,12051,"FL","12","051",37864,0.828306570885274,2869,0.0994084090428903,7.96171881598136,8.4984180360899,9.19836900019496,13.2769230769231,335.38025507794,71,21170,0,0,0,0,9 +"7639",2012,12053,"FL","12","053",172777,0.921766207307686,8544,0.142501606116555,9.05298456119998,9.80917687306489,10.7615557752099,10.9076923076923,519.615772388349,469,90259,0,0,0,0,9 +"7640",2012,12055,"FL","12","055",98244,0.870872521477139,4731,0.13285289686902,8.46189187563115,9.0641578617981,10.0705685599138,10.5923076923077,482.315112540193,222,46028,0,0,0,0,9 +"7641",2012,12057,"FL","12","057",1279861,0.771412676845376,94978,0.115977438174927,11.4614005648168,12.076908843936,12.9057534355036,8.13076923076923,339.792999375035,2675,787244,0,0,0,0,9 +"7642",2012,12059,"FL","12","059",19704,0.914991879821356,1393,0.132511165245635,7.23921497377981,7.80180040190897,8.55101473989175,9.09230769230769,532.371629744118,62,11646,0,0,0,0,9 +"7643",2012,12061,"FL","12","061",140515,0.883329181937871,6459,0.146596448777711,8.77322978603247,9.52127499623811,10.5244940553184,11.2923076923077,412.681593843237,296,71726,0,0,0,0,9 +"7644",2012,12063,"FL","12","063",49111,0.706094357679542,3404,0.133554600802264,8.13270648969326,8.85680335672838,9.42108740295384,8.90769230769231,390.0310702717,118,30254,0,0,0,0,9 +"7645",2012,12065,"FL","12","065",14218,0.627444084962723,782,0.163173442115628,6.66185474054531,7.48211892355212,8.29853954537488,9.53846153846154,435.280641466208,38,8730,0,0,0,0,9 +"7646",2012,12067,"FL","12","067",8791,0.832214765100671,815,0.106131270617677,6.70318811324086,7.1929342212158,7.53636393840451,5.88461538461539,376.816795262875,21,5573,0,0,0,0,9 +"7647",2012,12069,"FL","12","069",303806,0.859940225012014,15255,0.131070485770525,9.63266259715077,10.4482217279533,11.3206626572819,9.10769230769231,415.938878347303,662,159158,0,0,0,0,9 +"7648",2012,12071,"FL","12","071",644451,0.882793261240963,34972,0.139492374129298,10.4623030203008,11.1689269770395,12.0870525950864,9.1,360.446607764885,1250,346792,0,0,0,0,9 +"7649",2012,12073,"FL","12","073",283707,0.6408266274713,49509,0.109761126796307,10.8099097502117,10.3276762746424,11.4750262782161,7.23076923076923,261.11495545368,483,184976,0,0,0,0,9 +"7650",2012,12075,"FL","12","075",39835,0.885226559558178,2129,0.156344922806577,7.66340766489348,8.35019365072007,9.35979432514452,9.58461538461538,614.124872057318,138,22471,0,0,0,0,9 +"7651",2012,12077,"FL","12","077",8304,0.789619460500963,566,0.114523121387283,6.33859407820318,7.18387071506245,7.52833176670725,8.20769230769231,311.754997249221,17,5453,0,0,0,0,9 +"7652",2012,12079,"FL","12","079",18973,0.590312549412323,1359,0.141833131291836,7.21450441415114,7.75190533307861,8.5567984460086,8.84615384615385,477.918399858395,54,11299,0,0,0,0,9 +"7653",2012,12081,"FL","12","081",333965,0.875912146482416,17301,0.139403829742638,9.75851958228352,10.505040141935,11.4350179760937,8.38461538461539,435.533233932355,777,178402,0,0,0,0,9 +"7654",2012,12083,"FL","12","083",333945,0.841599664615431,18238,0.137456766832862,9.81126260849361,10.4425215525657,11.4239958857701,10.5307692307692,486.630497412814,853,175287,0,0,0,0,9 +"7655",2012,12085,"FL","12","085",149032,0.915286649847013,6956,0.146948306403994,8.84735987547417,9.59533062689496,10.5576339957463,8.57692307692308,345.533657537753,270,78140,0,0,0,0,9 +"7656",2012,12086,"FL","12","086",2576473,0.781730683768081,185394,0.112793341905776,12.1302385691307,12.8251345459866,13.6029161680694,7.86923076923077,262.928240863478,4215,1603099,0,0,0,0,9 +"7657",2012,12087,"FL","12","087",74596,0.914191109442866,3860,0.173977156952115,8.25842246245888,9.16377273615985,10.0240666754945,5.86153846153846,504.065715233986,243,48208,0,0,0,0,9 +"7658",2012,12089,"FL","12","089",74546,0.916467684382797,4192,0.151557427628578,8.34093322600088,9.12249228140299,10.0147158192218,8.30769230769231,447.77483322672,196,43772,0,0,0,0,9 +"7659",2012,12091,"FL","12","091",189957,0.845164958385319,15464,0.119026937675369,9.64627002088817,9.98860964595295,10.935069328745,6.93846153846154,344.996266831441,402,116523,0,0,0,0,9 +"7660",2012,12093,"FL","12","093",39693,0.882397400045348,2669,0.118635527674905,7.88945914940452,8.48735234940522,9.22522898446993,10.2692307692308,537.249283667622,120,22336,0,0,0,0,9 +"7661",2012,12095,"FL","12","095",1202716,0.705921431160806,109952,0.104898413257993,11.6077991859039,12.0416872694217,12.864957002267,8.47692307692308,272.233846652491,2083,765151,0,0,0,0,9 +"7662",2012,12097,"FL","12","097",288932,0.817877562886769,20864,0.107139396120887,9.94578046472638,10.6228140448794,11.3862618635579,9.73846153846154,309.830117584024,532,171707,0,0,0,0,9 +"7663",2012,12099,"FL","12","099",1355149,0.774914787967965,79435,0.12320932974898,11.2826943561541,12.0001303015357,12.8560304481945,8.77692307692308,330.139548725143,2485,752712,0,0,0,0,9 +"7664",2012,12101,"FL","12","101",469755,0.913412310672585,24546,0.130985300848315,10.1083041871575,10.9840716386848,11.8052517364157,9.33846153846154,474.573935940173,1240,261287,0,0,0,0,9 +"7665",2012,12103,"FL","12","103",921863,0.847379708264677,50333,0.150697012462806,10.8264162045905,11.5706187357487,12.531426154703,8.21538461538461,471.246376274671,2544,539845,0,0,0,0,9 +"7666",2012,12105,"FL","12","105",615581,0.810872980160206,39627,0.123665285315824,10.587265983092,11.2080158468518,12.0708197720073,9.91538461538462,405.444794217092,1391,343080,0,0,0,0,9 +"7667",2012,12107,"FL","12","107",72936,0.814193265328507,4330,0.149610617527696,8.37332282099653,8.91784674252718,9.92900908976621,12.1769230769231,601.847302741476,245,40708,0,0,0,0,9 +"7668",2012,12109,"FL","12","109",202164,0.910364852298134,10747,0.141924378227578,9.28238192484115,10.1602206068439,11.0143577385997,6.72307692307692,316.729786186166,373,117766,0,0,0,0,9 +"7669",2012,12111,"FL","12","111",283042,0.765374043428184,15949,0.128666416998184,9.67715141032275,10.4162812383968,11.2878550584623,11.2769230769231,402.142192861495,627,155915,0,0,0,0,9 +"7670",2012,12113,"FL","12","113",158285,0.89455728590833,10212,0.125090817196829,9.23131877836138,9.95065735701252,10.7477880682276,7.76153846153846,355.245273693315,345,97116,0,0,0,0,9 +"7671",2012,12115,"FL","12","115",386585,0.927234631452333,16699,0.152406327198417,9.72310411637243,10.5018294258222,11.5247848634827,8.68461538461538,427.12884197773,832,194789,0,0,0,0,9 +"7672",2012,12117,"FL","12","117",430626,0.826438719445644,31782,0.125793612090306,10.3666553707726,10.9662308381233,11.8393545807191,8.34615384615385,273.774894544589,736,268834,0,0,0,0,9 +"7673",2012,12119,"FL","12","119",101727,0.894393818750184,2788,0.180974569190087,7.93307977188041,8.90109412160856,9.91753837575879,10.9,440.351334075144,186,42239,0,0,0,0,9 +"7674",2012,12121,"FL","12","121",43533,0.847678772425516,2676,0.132726896836882,7.89207842124812,8.52098598965493,9.33149549353265,8.26923076923077,464.855333814218,116,24954,0,0,0,0,9 +"7675",2012,12123,"FL","12","123",22760,0.768145869947276,1558,0.134226713532513,7.35115822643069,7.99260665240021,8.61068353450358,9.26153846153846,544.515946538434,77,14141,0,0,0,0,9 +"7676",2012,12125,"FL","12","125",15266,0.76110310493908,1047,0.150596095899384,6.95368421087054,7.6586995582683,8.02355239240435,7.43076923076923,942.937688344512,97,10287,0,0,0,0,9 +"7677",2012,12127,"FL","12","127",496711,0.860347364966751,32465,0.146890244025198,10.3879178649426,10.897313234903,11.8763942782262,9.79230769230769,511.806156508839,1449,283115,0,0,0,0,9 +"7678",2012,12129,"FL","12","129",30860,0.834640311082307,1822,0.130038885288399,7.5076900778199,8.43119947824926,9.04887970584956,7.52307692307692,429.944360141629,85,19770,0,0,0,0,9 +"7679",2012,12131,"FL","12","131",57215,0.912365638381543,3128,0.147094293454514,8.0481491016652,8.87793983472502,9.71751935482198,7.52307692307692,427.423981640849,149,34860,0,0,0,0,9 +"7680",2012,12133,"FL","12","133",24747,0.816785873035115,1615,0.128904513678426,7.38709023565676,8.11162807830774,8.7681075396758,9.08461538461538,502.711998941659,76,15118,0,0,0,0,9 +"7681",2012,13001,"GA","13","001",18382,0.788434337939288,1136,0.133989772603634,7.0352685992811,7.73061406606374,8.55410354543633,11.0384615384615,543.936978336303,58,10663,0,0,0,0,9 +"7682",2012,13003,"GA","13","003",8254,0.784225829900654,571,0.111339956384783,6.34738920965601,7.01571242048723,7.74500280351584,11.3923076923077,660.276890308839,31,4695,0,0,0,0,9 +"7683",2012,13005,"GA","13","005",11152,0.826667862266858,690,0.128048780487805,6.5366915975913,7.2991214627108,8.06871619271478,9.57692307692308,474.151116549403,31,6538,0,0,0,0,9 +"7684",2012,13009,"GA","13","009",46522,0.558252009801814,6255,0.121555393147328,8.74113642290101,8.49474306257865,9.52799378292395,11.4461538461538,411.00221308884,117,28467,0,0,0,0,9 +"7685",2012,13011,"GA","13","011",18128,0.952835392762577,1085,0.1306266548985,6.98933526597456,7.83913164827433,8.57508466983201,8.09230769230769,528.266913809082,57,10790,0,0,0,0,9 +"7686",2012,13013,"GA","13","013",70128,0.837497148072097,4133,0.105649669176363,8.32675881451173,9.23483784357657,9.96542895407631,8.5,411.88514832627,173,42002,0,0,0,0,9 +"7687",2012,13015,"GA","13","015",100241,0.874741872088267,6426,0.117806087329536,8.7681075396758,9.568014816248,10.3214081019116,9.78461538461538,481.279872543813,290,60256,0,0,0,0,9 +"7688",2012,13017,"GA","13","017",17608,0.631133575647433,1139,0.128407542026352,7.03790596344718,7.64060382639363,8.54927308487965,13.7384615384615,575.234635180139,57,9909,0,0,0,0,9 +"7689",2012,13019,"GA","13","019",19160,0.873225469728601,1183,0.121816283924843,7.07580886397839,7.82284529027977,8.62998601889136,10.0846153846154,623.813398426905,69,11061,0,0,0,0,9 +"7690",2012,13021,"GA","13","021",156701,0.436831928322091,11943,0.122730550538924,9.38790061166843,9.83381587928681,10.7871931073126,10.3846153846154,567.041786617814,520,91704,0,0,0,0,9 +"7691",2012,13023,"GA","13","023",12888,0.721989447548107,1098,0.112662942271881,7.00124562206948,7.26192709270275,8.23137604557397,12.4153846153846,547.906715369486,39,7118,0,0,0,0,9 +"7692",2012,13025,"GA","13","025",18522,0.95912968361948,1106,0.13114134542706,7.00850518208228,7.80425138352811,8.61413839747272,11.8538461538462,507.473703635357,55,10838,0,0,0,0,9 +"7693",2012,13027,"GA","13","027",15616,0.634157274590164,921,0.140048668032787,6.82546003625531,7.49498623395053,8.44009614103127,9.03076923076923,472.91971624817,42,8881,0,0,0,0,9 +"7694",2012,13029,"GA","13","029",32293,0.81909392128325,1848,0.107639426501099,7.52185925220163,8.47156801338996,9.18430435742534,8.17692307692308,383.887252839714,73,19016,0,0,0,0,9 +"7695",2012,13031,"GA","13","031",73114,0.677079629072407,14292,0.0923079027272479,9.5674552191433,8.91931939825889,10.04094248799,9.64615384615385,308.085031468685,140,45442,0,0,0,0,9 +"7696",2012,13033,"GA","13","033",23054,0.491584974407912,1576,0.131300425088922,7.36264527041782,7.88833450073865,8.84678466694523,12.1615384615385,580.737612187948,77,13259,0,0,0,0,9 +"7697",2012,13035,"GA","13","035",23431,0.706115829456703,1722,0.122743374162434,7.45124168498768,8.06808962627824,8.75400293349426,10.1,551.191952597492,80,14514,0,0,0,0,9 +"7698",2012,13037,"GA","13","037",6568,0.361449451887942,471,0.127283800243605,6.15485809401642,6.91473089271856,7.28892769452126,7.66923076923077,393.42744735015,17,4321,0,0,0,0,9 +"7699",2012,13039,"GA","13","039",51402,0.770728765417688,5334,0.102272285125092,8.58185670474196,8.71768205216564,9.63023421673647,8.46153846153846,282.091917591125,89,31550,0,0,0,0,9 +"7700",2012,13043,"GA","13","043",11090,0.730838593327322,747,0.132642019837692,6.61606518513282,7.20117088328168,8.0507033814703,8.51538461538462,637.044115304985,40,6279,0,0,0,0,9 +"7701",2012,13045,"GA","13","045",111428,0.791300211795958,10688,0.10946979215278,9.27687689577643,9.57317629802839,10.4276241903618,10.1153846153846,422.670798110767,281,66482,0,0,0,0,9 +"7702",2012,13047,"GA","13","047",64893,0.952814633319464,3841,0.12294084107685,8.2534880283459,9.13281116946695,9.88933791693169,7.35384615384615,376.923882315988,144,38204,0,0,0,0,9 +"7703",2012,13049,"GA","13","049",13350,0.664194756554307,1066,0.106292134831461,6.97166860472579,7.629489916394,8.01565761455734,9.17692307692308,377.099760027425,33,8751,0,0,0,0,9 +"7704",2012,13051,"GA","13","051",276243,0.553371488146306,26076,0.114757659017604,10.1687706300444,10.4032320062913,11.3787653032833,9.1,338.665598642982,575,169784,0,0,0,0,9 +"7705",2012,13053,"GA","13","053",12293,0.735377857317172,2720,0.029447653135931,7.90838715929004,7.028201432058,7.77946696745832,11.5461538461538,178.422742952302,15,8407,0,0,0,0,9 +"7706",2012,13055,"GA","13","055",25635,0.869865418373318,1645,0.129744489955139,7.40549566319947,8.14206328310415,8.85366542803745,10.0769230769231,531.088082901554,82,15440,0,0,0,0,9 +"7707",2012,13057,"GA","13","057",220690,0.908844986179709,12250,0.113625447460238,9.41328121597287,10.4618740137304,11.1227380562133,6.97692307692308,240.47825956669,321,133484,0,0,0,0,9 +"7708",2012,13059,"GA","13","059",119915,0.669499228620273,25929,0.080798899220281,10.1631173124207,9.43548192595306,10.6030143400601,8.59230769230769,270.097286226318,211,78120,0,0,0,0,9 +"7709",2012,13063,"GA","13","063",265371,0.240278704153807,20485,0.102155096073045,9.92744818998097,10.5613183879685,11.3783420906355,11.8692307692308,338.964248516261,550,162259,0,0,0,0,9 +"7710",2012,13065,"GA","13","065",6688,0.71261961722488,483,0.136214114832536,6.18001665365257,6.73459165997295,7.59789795052178,9.55384615384615,468.14044213264,18,3845,0,0,0,0,9 +"7711",2012,13067,"GA","13","067",706517,0.670888315497009,46303,0.113889687013901,10.7429620327916,11.5939523036126,12.3404505547584,7.60769230769231,232.334670197552,1030,443326,0,0,0,0,9 +"7712",2012,13069,"GA","13","069",43131,0.701954510676775,3422,0.112471308339709,8.13798045445214,8.68033192879342,9.40681135187456,11.2384615384615,470.062418124374,122,25954,0,0,0,0,9 +"7713",2012,13071,"GA","13","071",46029,0.740011731734341,3112,0.112993982054792,8.04302088529828,8.67658724356649,9.47616019757083,8.64615384615385,498.887098012127,130,26058,0,0,0,0,9 +"7714",2012,13073,"GA","13","073",132601,0.783877949638389,7911,0.120987021214018,8.9760094750214,9.82951803233595,10.6230575553272,6.88461538461538,264.930739535236,210,79266,0,0,0,0,9 +"7715",2012,13075,"GA","13","075",16906,0.710398675026618,1013,0.11901100201112,6.92067150424868,7.66152708135852,8.50025047068593,9.32307692307692,615.288351235791,59,9589,0,0,0,0,9 +"7716",2012,13077,"GA","13","077",130614,0.792794034330164,7211,0.116557183762843,8.88336291691676,9.87024095874249,10.5981336092198,7.86153846153846,313.20310902025,245,78224,0,0,0,0,9 +"7717",2012,13079,"GA","13","079",12567,0.765656083393013,805,0.141959099228137,6.69084227741856,7.36581283720947,8.2443340478561,9.68461538461538,561.797752808989,43,7654,0,0,0,0,9 +"7718",2012,13081,"GA","13","081",23593,0.541007926079769,1589,0.137710337812063,7.37086016653672,7.91753635394363,8.87052254510387,12.3153846153846,652.045050385299,88,13496,0,0,0,0,9 +"7719",2012,13083,"GA","13","083",16528,0.971139883833495,1430,0.137282187802517,7.26542972325395,7.57301725605255,8.50875771259514,7.48461538461538,481.656077064972,47,9758,0,0,0,0,9 +"7720",2012,13085,"GA","13","085",22511,0.977610945759851,1231,0.142907911687619,7.11558212618445,7.99091546309133,8.81848226727424,8.43846153846154,357.99522673031,48,13408,0,0,0,0,9 +"7721",2012,13087,"GA","13","087",27449,0.562096979853547,1869,0.123866078909978,7.53315880745556,8.14002395246292,8.99019232964177,9.97692307692308,558.659217877095,88,15752,0,0,0,0,9 +"7722",2012,13089,"GA","13","089",710783,0.374032580970563,50752,0.11146017842295,10.8347063049945,11.5858691882206,12.3860372602504,9.25384615384615,309.206678511129,1401,453095,0,0,0,0,9 +"7723",2012,13091,"GA","13","091",21511,0.684719445864906,1564,0.124959323137,7.35500192110526,7.97349996402463,8.69584134284388,11.3692307692308,541.643771096632,69,12739,0,0,0,0,9 +"7724",2012,13093,"GA","13","093",14414,0.493617316497849,898,0.142916608852505,6.8001700683022,7.56837926783652,8.24328252304838,11.3153846153846,379.464285714286,34,8960,0,0,0,0,9 +"7725",2012,13095,"GA","13","095",94716,0.297584357447527,8580,0.12063431732759,9.05718919248201,9.28905912668757,10.3027669015572,11.1230769230769,519.087862450823,285,54904,0,0,0,0,9 +"7726",2012,13097,"GA","13","097",133597,0.553657642012919,8346,0.108235963382411,9.0295376611515,9.95679132455844,10.6603369671431,9.46923076923077,350.34725231192,283,80777,0,0,0,0,9 +"7727",2012,13099,"GA","13","099",10641,0.49619396673245,614,0.129499107226764,6.41999492814714,7.14124512235049,8.02387999273488,10,876.424189307625,50,5705,0,0,0,0,9 +"7728",2012,13103,"GA","13","103",53360,0.844565217391304,3275,0.111188155922039,8.09407314806935,8.95596411823087,9.69035621134864,8.23846153846154,414.755231571671,132,31826,0,0,0,0,9 +"7729",2012,13105,"GA","13","105",19577,0.686928538591204,1274,0.137661541604945,7.14991683613211,7.69666708152646,8.65678120562329,12.3846153846154,624.665357844012,70,11206,0,0,0,0,9 +"7730",2012,13107,"GA","13","107",22727,0.640295683548203,1570,0.124785497425969,7.35883089834235,7.91169052070834,8.77817188103347,12.2,651.120533010297,86,13208,0,0,0,0,9 +"7731",2012,13109,"GA","13","109",10678,0.670443903352688,707,0.115096460011238,6.56103066589657,7.15695636461564,8.03947991910045,8.42307692307692,540.098199672668,33,6110,0,0,0,0,9 +"7732",2012,13111,"GA","13","111",23617,0.985180166828979,1056,0.178134394715671,6.96224346426621,7.78613643778307,8.81966534934065,10.0615384615385,562.26730491604,74,13161,0,0,0,0,9 +"7733",2012,13113,"GA","13","113",107343,0.734058112778663,5551,0.148551838499017,8.62173337069016,9.47347357150655,10.3791314952655,7.43846153846154,214.791780207098,134,62386,0,0,0,0,9 +"7734",2012,13115,"GA","13","115",95944,0.821103977320103,6981,0.122842491453348,8.8509474519704,9.40672918598157,10.2478925273398,10.7692307692308,478.142076502732,266,55632,0,0,0,0,9 +"7735",2012,13117,"GA","13","117",186848,0.884216047268368,7587,0.101028643603357,8.93419153533807,10.3914231880079,10.9155974255809,6.50769230769231,222.85750819732,244,109487,0,0,0,0,9 +"7736",2012,13119,"GA","13","119",21927,0.893875131116888,1486,0.134674146030009,7.3038432252777,7.87511928104029,8.74893963153771,11.1153846153846,610.049767217852,76,12458,0,0,0,0,9 +"7737",2012,13121,"GA","13","121",973464,0.474168536278691,74473,0.106003920021696,11.2181919225717,11.9008781213271,12.6697594908385,8.96923076923077,324.266475268273,2024,624178,0,0,0,0,9 +"7738",2012,13123,"GA","13","123",28291,0.973666537061256,1429,0.155173023222933,7.26473017792987,8.11252776347864,8.9799204116912,10.4,395.157749482531,63,15943,0,0,0,0,9 +"7739",2012,13127,"GA","13","127",80889,0.704347933588003,5013,0.134431134023168,8.5197898172635,9.18060255371223,10.1218999294744,9.34615384615385,410.730329867796,192,46746,0,0,0,0,9 +"7740",2012,13129,"GA","13","129",55691,0.934531611930114,3559,0.115099387692805,8.17723488551019,8.96264794774056,9.70832388772888,9.65384615384615,452.682449379091,148,32694,0,0,0,0,9 +"7741",2012,13131,"GA","13","131",25283,0.681683344539809,1574,0.126488154095637,7.36137542897735,8.0013550258267,8.89918494333876,8.47692307692308,530.266510570897,77,14521,0,0,0,0,9 +"7742",2012,13133,"GA","13","133",16116,0.611938446264582,748,0.167907669396873,6.61740297797448,7.3864708488299,8.42398080969406,10.9384615384615,483.926719668165,42,8679,0,0,0,0,9 +"7743",2012,13135,"GA","13","135",836854,0.609630831662393,51765,0.10193175870582,10.8544695242002,11.7983600136315,12.4769505657629,7.63076923076923,213.267895053617,1102,516721,0,0,0,0,9 +"7744",2012,13137,"GA","13","137",43373,0.919442971433841,2814,0.123440850298573,7.94236223767433,8.62748154531036,9.51502704324379,9.38461538461539,378.004138150565,95,25132,0,0,0,0,9 +"7745",2012,13139,"GA","13","139",184136,0.885839814050484,12430,0.107165356041187,9.42786818450476,10.1353926095189,10.8765366182289,7.66153846153846,356.68359349334,380,106537,0,0,0,0,9 +"7746",2012,13141,"GA","13","141",9078,0.248402731879269,649,0.156532275831681,6.47543271670409,6.96413561241824,7.75790620835175,16.7307692307692,478.553704360156,27,5642,0,0,0,0,9 +"7747",2012,13143,"GA","13","143",28325,0.939982347749338,1763,0.122541924095322,7.47477218239787,8.22977775008189,9.03539156951164,10.1,618.894484557976,102,16481,0,0,0,0,9 +"7748",2012,13145,"GA","13","145",32564,0.808131679154895,1762,0.153113868075175,7.47420480649612,8.38731227056172,9.18972941807206,7.08461538461538,322.102356971215,63,19559,0,0,0,0,9 +"7749",2012,13147,"GA","13","147",25512,0.795939165882722,1497,0.139816556914393,7.31121838441963,8.03073492409854,8.87821865809223,10.1307692307692,427.969904051909,62,14487,0,0,0,0,9 +"7750",2012,13149,"GA","13","149",11652,0.878904909028493,733,0.131479574322005,6.59714570188665,7.32778053842163,8.13914867888407,10.1692307692308,425.407070558897,29,6817,0,0,0,0,9 +"7751",2012,13151,"GA","13","151",208047,0.565280922099333,12763,0.105259869164179,9.45430563898269,10.4032016715474,11.0932042193139,9.26153846153846,358.540285873992,449,125230,0,0,0,0,9 +"7752",2012,13153,"GA","13","153",145630,0.659445169264575,10300,0.109469202774154,9.23989917421773,9.84834475303892,10.7211064606069,7.92307692307692,289.376709696381,256,88466,0,0,0,0,9 +"7753",2012,13155,"GA","13","155",9598,0.715461554490519,671,0.119608251719108,6.50876913697168,7.14834574390007,7.87815533650332,11.5692307692308,442.869796279894,25,5645,0,0,0,0,9 +"7754",2012,13157,"GA","13","157",60860,0.902957607624055,3477,0.116924088070983,8.15392513200786,9.09817900508785,9.79517824902928,8.1,468.89391275224,168,35829,0,0,0,0,9 +"7755",2012,13159,"GA","13","159",13638,0.765654788092096,798,0.142542894852618,6.68210859744981,7.46737106691756,8.31898612539206,9.64615384615385,528.905289052891,43,8130,0,0,0,0,9 +"7756",2012,13161,"GA","13","161",15194,0.830196130051336,927,0.119849940766092,6.83195356556585,7.56579328242851,8.37401542173991,11.3692307692308,514.258999532492,44,8556,0,0,0,0,9 +"7757",2012,13163,"GA","13","163",16351,0.446027765885879,1037,0.138279004342242,6.94408720822953,7.539027055824,8.47491179915963,13.0076923076923,684.56519413841,64,9349,0,0,0,0,9 +"7758",2012,13165,"GA","13","165",9114,0.551678736010533,688,0.123765635286373,6.53378883793334,7.04315991598834,7.78447323573647,13.5384615384615,539.762504498021,30,5558,0,0,0,0,9 +"7759",2012,13167,"GA","13","167",10008,0.64568345323741,602,0.129496402877698,6.40025744530882,7.24136628332232,7.80220931624712,9.83076923076923,481.231953801732,30,6234,0,0,0,0,9 +"7760",2012,13169,"GA","13","169",28610,0.741488989863684,1620,0.132121635791681,7.39018142822643,8.25556865328375,9.06218833095232,8.36153846153846,418.78552198624,70,16715,0,0,0,0,9 +"7761",2012,13171,"GA","13","171",18026,0.674636635970265,1580,0.130256296460668,7.36518012602101,7.67600993202889,8.58895555764313,11.8923076923077,644.850818094321,67,10390,0,0,0,0,9 +"7762",2012,13173,"GA","13","173",10462,0.730548652265341,763,0.111928885490346,6.63725803128446,7.2034055210831,8.0487882835342,9.20769230769231,334.182049649905,21,6284,0,0,0,0,9 +"7763",2012,13175,"GA","13","175",47819,0.618728957109099,3029,0.127020640331249,8.01598781102724,8.70334075304372,9.56962191577987,12.0846153846154,638.569604086846,175,27405,0,0,0,0,9 +"7764",2012,13177,"GA","13","177",28718,0.769726304060171,1662,0.120621213176405,7.41577697541539,8.38935981990635,9.06900719585954,7.53076923076923,338.419180910864,59,17434,0,0,0,0,9 +"7765",2012,13179,"GA","13","179",64482,0.521277255668248,7710,0.0848453832077169,8.95027346655738,8.86389860431748,9.88078171500049,8.79230769230769,303.242945215779,121,39902,0,0,0,0,9 +"7766",2012,13181,"GA","13","181",7764,0.665507470376095,448,0.168598660484286,6.10479323241498,6.77650699237218,7.75491027202143,10.6307692307692,635.129215943933,29,4566,0,0,0,0,9 +"7767",2012,13183,"GA","13","183",16013,0.702616623993006,1259,0.0966090051832886,7.13807303404435,7.69393732550927,8.47428569040496,8.41538461538462,320.51282051282,31,9672,0,0,0,0,9 +"7768",2012,13185,"GA","13","185",114141,0.59826004678424,16254,0.0954258329609868,9.69609431131315,9.47470263910635,10.4652153942292,9,369.077879740927,257,69633,0,0,0,0,9 +"7769",2012,13187,"GA","13","187",30684,0.96421587798201,3716,0.128307912918785,8.22040309993373,8.13593277200489,9.13475438501959,8.22307692307692,362.475654620212,67,18484,0,0,0,0,9 +"7770",2012,13189,"GA","13","189",21630,0.578409616273694,1336,0.132316227461859,7.19743535409659,7.84424071814181,8.78920309447372,12.4307692307692,591.380427738172,73,12344,0,0,0,0,9 +"7771",2012,13191,"GA","13","191",13887,0.631669907107367,748,0.164902426730035,6.61740297797448,7.36454701425564,8.33302993974291,9.62307692307692,552.139540720291,44,7969,0,0,0,0,9 +"7772",2012,13193,"GA","13","193",14297,0.372525704693292,1101,0.138980205637546,7.00397413672268,7.45876269238096,8.24301946898925,13.1076923076923,680.347981262547,61,8966,0,0,0,0,9 +"7773",2012,13195,"GA","13","195",28081,0.89494676115523,1715,0.134753035860546,7.44716835960004,8.18729927015515,9.04286801803243,8.82307692307692,550.015110305228,91,16545,0,0,0,0,9 +"7774",2012,13197,"GA","13","197",8672,0.640221402214022,480,0.143796125461255,6.17378610390194,6.90775527898214,7.84267147497946,9.87692307692308,534.124629080119,27,5055,0,0,0,0,9 +"7775",2012,13199,"GA","13","199",21331,0.592986732923914,1297,0.144109511977873,7.16780918431644,7.76302130901852,8.75935474856621,11.8384615384615,660.200505338658,81,12269,0,0,0,0,9 +"7776",2012,13201,"GA","13","201",6004,0.701032644903398,344,0.132911392405063,5.8406416573734,6.5366915975913,7.42714413340862,8.04615384615385,392.630625188765,13,3311,0,0,0,0,9 +"7777",2012,13205,"GA","13","205",23086,0.50112622368535,1558,0.12206532097375,7.35115822643069,8.01994168767737,8.74353163362697,8.73846153846154,531.759906759907,73,13728,0,0,0,0,9 +"7778",2012,13207,"GA","13","207",26336,0.75273390036452,1648,0.150630315917375,7.40731771046942,8.09193345597989,8.9782822032724,8.52307692307692,398.356778289556,64,16066,0,0,0,0,9 +"7779",2012,13209,"GA","13","209",8883,0.72666891815828,682,0.131599684791174,6.52502965784346,7.03790596344718,7.82524529143177,11.4769230769231,471.52018106375,25,5302,0,0,0,0,9 +"7780",2012,13211,"GA","13","211",17807,0.747458864491492,911,0.14140506542371,6.81454289725996,7.72046169459972,8.56445838388335,8.88461538461539,484.141883213121,49,10121,0,0,0,0,9 +"7781",2012,13213,"GA","13","213",39311,0.969041744041108,2656,0.116048943043932,7.88457651059632,8.61685751452918,9.37602428761711,12.5923076923077,552.060598279625,129,23367,0,0,0,0,9 +"7782",2012,13215,"GA","13","215",199077,0.489790382615772,17216,0.108299803593584,9.75359446296151,10.1096070128445,11.0123306607696,9.66153846153846,436.907830861428,522,119476,0,0,0,0,9 +"7783",2012,13217,"GA","13","217",100965,0.557173277868568,6276,0.107779923735948,8.74448811385292,9.61393706902432,10.3518524949595,10.8538461538462,411.703912034292,243,59023,0,0,0,0,9 +"7784",2012,13219,"GA","13","219",33521,0.907431162554816,1731,0.134214373079562,7.45645455517621,8.46968220874519,9.21761385594268,6.2,204.855065041483,40,19526,0,0,0,0,9 +"7785",2012,13221,"GA","13","221",14500,0.808689655172414,822,0.135241379310345,6.71174039505618,7.55747290161475,8.37655086161377,8.41538461538462,382.608695652174,33,8625,0,0,0,0,9 +"7786",2012,13223,"GA","13","223",144750,0.803564766839378,8417,0.096020725388601,9.03800874921158,10.1016824584864,10.7115024121159,8.18461538461538,272.623744722948,237,86933,0,0,0,0,9 +"7787",2012,13225,"GA","13","225",28012,0.518849064686563,3097,0.118377838069399,8.0381891799732,8.00101996132365,9.03360319347613,10.9692307692308,532.30543318649,87,16344,0,0,0,0,9 +"7788",2012,13227,"GA","13","227",29258,0.975938204935402,1598,0.150557112584592,7.37650812632622,8.20193435119422,9.06508335931904,8.96923076923077,512.820512820513,87,16965,0,0,0,0,9 +"7789",2012,13229,"GA","13","229",18902,0.896254364617501,1060,0.124378372658978,6.96602418710611,7.8407064517494,8.60849534982302,9.3,521.075649018331,56,10747,0,0,0,0,9 +"7790",2012,13231,"GA","13","231",17780,0.883577052868391,935,0.123903262092238,6.84054652928869,7.85360481309784,8.57414047185799,9.10769230769231,378.236834448647,39,10311,0,0,0,0,9 +"7791",2012,13233,"GA","13","233",41097,0.847847774776748,2778,0.118183809037156,7.92948652331429,8.53089883847235,9.37475250822657,9.87692307692308,551.244540558877,130,23583,0,0,0,0,9 +"7792",2012,13235,"GA","13","235",11716,0.666951177876408,704,0.142625469443496,6.55677835615804,7.3362856600213,8.35279013512463,8.89230769230769,439.155687774472,31,7059,0,0,0,0,9 +"7793",2012,13237,"GA","13","237",21135,0.714360066240833,1107,0.157132718239886,7.00940893270864,7.72709448477984,8.74097653801779,11.3615384615385,639.481770617058,77,12041,0,0,0,0,9 +"7794",2012,13241,"GA","13","241",16303,0.966938600257621,829,0.155983561307735,6.7202201551353,7.53315880745556,8.41693076947784,11.2923076923077,566.829157691872,50,8821,0,0,0,0,9 +"7795",2012,13243,"GA","13","243",7310,0.380984952120383,438,0.150205198358413,6.08221891037645,6.55535689181067,7.66762609158499,12.3153846153846,667.655786350148,27,4044,0,0,0,0,9 +"7796",2012,13245,"GA","13","245",201827,0.406387648827957,18399,0.119022727385335,9.82005159429409,10.0408989083591,11.0564459709444,10.4615384615385,564.337756960708,694,122976,0,0,0,0,9 +"7797",2012,13247,"GA","13","247",85453,0.477654383111184,5445,0.126350157396464,8.60245303536706,9.34679249511168,10.19898897404,10.0307692307692,384.479579426419,196,50978,0,0,0,0,9 +"7798",2012,13251,"GA","13","251",14170,0.562032462949894,977,0.145024700070572,6.88448665204278,7.36960072052641,8.34616759436413,13.6153846153846,496.031746031746,40,8064,0,0,0,0,9 +"7799",2012,13253,"GA","13","253",8869,0.650242417408952,511,0.141278610891871,6.2363695902037,6.89770494312864,7.84267147497946,10.7692307692308,675.260896255371,33,4887,0,0,0,0,9 +"7800",2012,13255,"GA","13","255",63693,0.643869813009279,4237,0.125571098864867,8.35161075062656,8.98218427883843,9.85366685755217,12.3538461538462,595.430542084276,221,37116,0,0,0,0,9 +"7801",2012,13257,"GA","13","257",25721,0.868162202091676,1856,0.14066327125695,7.52617891334615,7.9844627322622,8.9445502459405,10.3384615384615,792.052624513358,118,14898,0,0,0,0,9 +"7802",2012,13261,"GA","13","261",31509,0.445110920689327,3043,0.119140563013742,8.02059914989697,8.150467911624,9.17201525765451,11.7076923076923,472.865233408479,86,18187,0,0,0,0,9 +"7803",2012,13263,"GA","13","263",6643,0.409152491344272,399,0.176576847809725,5.98896141688986,6.5510803350434,7.62900388965296,9.89230769230769,770.613922424865,30,3893,0,0,0,0,9 +"7804",2012,13267,"GA","13","267",25457,0.686608791295125,2018,0.109243037278548,7.60986220091355,8.22710823434815,8.70284253830287,8.19230769230769,385.13265680401,63,16358,0,0,0,0,9 +"7805",2012,13269,"GA","13","269",8434,0.601731088451506,545,0.138961346929097,6.30078579466324,6.93731408122368,7.82883452758809,13.1692307692308,624.739691795085,30,4802,0,0,0,0,9 +"7806",2012,13271,"GA","13","271",16364,0.615375213884136,976,0.128819359569787,6.88346258641309,7.84227877911735,8.24905227417129,11.5923076923077,473.798919738463,50,10553,0,0,0,0,9 +"7807",2012,13273,"GA","13","273",9225,0.376368563685637,653,0.143306233062331,6.48157712927643,6.8501261661455,7.90728360942635,10.7230769230769,641.025641025641,33,5148,0,0,0,0,9 +"7808",2012,13275,"GA","13","275",44535,0.608285618053217,2576,0.13164926462333,7.85399308722424,8.58969988220299,9.50703173858555,9.55384615384615,487.424449210372,125,25645,0,0,0,0,9 +"7809",2012,13277,"GA","13","277",40947,0.663589518157618,3471,0.113830073021223,8.15219801586179,8.50451313825886,9.3998030369215,9.94615384615385,369.654708896917,88,23806,0,0,0,0,9 +"7810",2012,13279,"GA","13","279",27170,0.723076923076923,1651,0.117592933382407,7.40913644392013,8.08271113423758,8.97461803845511,11.6076923076923,585.846481592437,88,15021,0,0,0,0,9 +"7811",2012,13281,"GA","13","281",10560,0.981723484848485,602,0.150662878787879,6.40025744530882,6.84694313958538,7.89133075766189,11.1692307692308,567.403639209548,29,5111,0,0,0,0,9 +"7812",2012,13283,"GA","13","283",6787,0.66317960807426,485,0.130691026963312,6.18414889093748,6.65286302935335,7.53636393840451,13.2769230769231,501.127536958156,20,3991,0,0,0,0,9 +"7813",2012,13285,"GA","13","285",68324,0.626675838651133,4927,0.121289737134828,8.50248556254396,9.05111014640562,9.93571269983086,9.67692307692308,526.448362720403,209,39700,0,0,0,0,9 +"7814",2012,13287,"GA","13","287",8446,0.575420317309969,609,0.127397584655458,6.4118182677099,6.88959130835447,7.7445698093545,11.5076923076923,501.567398119122,24,4785,0,0,0,0,9 +"7815",2012,13289,"GA","13","289",8560,0.572663551401869,520,0.168224299065421,6.25382881157547,6.76157276880406,7.86018505747217,14.6692307692308,558.213716108453,28,5016,0,0,0,0,9 +"7816",2012,13291,"GA","13","291",21342,0.982054165495268,921,0.168259769468653,6.82546003625531,7.62851762657506,8.65678120562329,8.73076923076923,477.047704770477,53,11110,0,0,0,0,9 +"7817",2012,13293,"GA","13","293",26561,0.702307895034073,1707,0.135198222958473,7.44249272279444,8.0861025356691,8.98042393637454,10.5230769230769,703.216564656856,108,15358,0,0,0,0,9 +"7818",2012,13295,"GA","13","295",68487,0.944953056784499,3994,0.135310350869508,8.29254851397576,9.10985683339786,9.91467474192669,8.87692307692308,483.163976887826,194,40152,0,0,0,0,9 +"7819",2012,13297,"GA","13","297",84998,0.8147838772677,5061,0.118249841172733,8.52931937121408,9.37966111659289,10.141992510963,8.96153846153846,488.140811407506,241,49371,0,0,0,0,9 +"7820",2012,13299,"GA","13","299",35896,0.680744372632048,2586,0.126587920659684,7.8578675593318,8.37999795223839,9.23229753932823,9.97692307692308,538.50552802135,113,20984,0,0,0,0,9 +"7821",2012,13301,"GA","13","301",5546,0.381536242336819,313,0.152001442481067,5.74620319054015,6.3491389913798,7.40671073017764,14.7384615384615,935.182199290551,29,3101,0,0,0,0,9 +"7822",2012,13303,"GA","13","303",20791,0.458275215237362,1386,0.132268770140926,7.23417717974985,7.82484569102686,8.67709870892586,10.1846153846154,417.101147028154,52,12467,0,0,0,0,9 +"7823",2012,13305,"GA","13","305",30331,0.774455177870825,1930,0.120998318551977,7.56527528189893,8.3354314778808,9.03539156951164,10.5230769230769,548.750069286625,99,18041,0,0,0,0,9 +"7824",2012,13309,"GA","13","309",7932,0.618633383761977,680,0.116742309631871,6.52209279817015,7.12528309151071,7.35372233039963,13.1538461538462,257.022214062787,14,5447,0,0,0,0,9 +"7825",2012,13311,"GA","13","311",27626,0.966191269094331,1716,0.140736986896402,7.44775128004791,8.07713663853845,8.9758830607617,8.53076923076923,413.383283813461,64,15482,0,0,0,0,9 +"7826",2012,13313,"GA","13","313",102926,0.923469288615122,7265,0.104949186794396,8.89082357600438,9.54136924893133,10.292586123224,10.4615384615385,454.591372865946,270,59394,0,0,0,0,9 +"7827",2012,13315,"GA","13","315",9069,0.628404454735914,636,0.126254272797442,6.45519856334012,7.12849594568004,7.59940133341582,11.4615384615385,591.613015486341,34,5747,0,0,0,0,9 +"7828",2012,13317,"GA","13","317",10093,0.558109580897652,524,0.144951946893887,6.26149168432104,7.01301578963963,7.96485088744731,12.0153846153846,891.742464776173,50,5607,0,0,0,0,9 +"7829",2012,13319,"GA","13","319",9481,0.597088914671448,565,0.139225820061175,6.33682573114644,6.93537044601511,7.94165125293056,11.3307692307692,536.341779175143,29,5407,0,0,0,0,9 +"7830",2012,13321,"GA","13","321",21356,0.697087469563589,1488,0.137385278141974,7.30518821539304,7.83636976054512,8.75904072752422,10.0153846153846,451.127819548872,57,12635,0,0,0,0,9 +"7831",2012,15001,"HI","15","001",189199,0.343506043900866,11224,0.163753508210931,9.3258096217823,9.97310689441619,10.935265353017,8.08461538461538,375.314615035708,422,112439,1,0,0,0,9 +"7832",2012,15003,"HI","15","003",978295,0.208687563567227,77610,0.120208117183467,11.2594515638482,11.7349003336408,12.5722839732717,5.31538461538462,272.727731016184,1623,595099,1,0,0,0,9 +"7833",2012,15007,"HI","15","007",68680,0.337449039021549,3683,0.154557367501456,8.21148291644507,9.02761873516089,9.91427911361433,7.05384615384615,296.55409048576,121,40802,1,0,0,0,9 +"7834",2012,15009,"HI","15","009",158936,0.346862888206574,8445,0.143435093370917,9.0413298292419,9.96024588635474,10.7816817391434,6.25384615384615,320.559071512503,311,97018,1,0,0,0,9 +"7835",2012,19005,"IA","19","005",14150,0.97356890459364,732,0.149681978798587,6.59578051396131,7.29369772060144,8.22147894726719,6.46153846153846,521.628498727735,41,7860,1,0,0,0,9 +"7836",2012,19007,"IA","19","007",12713,0.98497600880988,664,0.146936207032172,6.49828214947643,7.19443685110033,8.16337131645991,6.55384615384615,458.584121524792,32,6978,1,0,0,0,9 +"7837",2012,19011,"IA","19","011",25829,0.986681636919741,1248,0.128382825506214,7.12929754892937,8.07527154629746,8.88985958777302,5.32307692307692,265.522875816993,39,14688,1,0,0,0,9 +"7838",2012,19013,"IA","19","013",131904,0.878267527899078,15917,0.125136462882096,9.67514299942985,9.54602658547643,10.5988073712077,5.47692307692308,310.50456992613,248,79870,1,0,0,0,9 +"7839",2012,19015,"IA","19","015",26138,0.9803734027087,1448,0.142818884382891,7.27793857294566,8.01466637046494,8.92465630218707,4.33076923076923,323.945524262859,49,15126,1,0,0,0,9 +"7840",2012,19017,"IA","19","017",24499,0.97677456222703,2019,0.126250051022491,7.61035761831284,7.9291264873068,8.82453082152646,3.84615384615385,205.791562545936,28,13606,1,0,0,0,9 +"7841",2012,19019,"IA","19","019",20995,0.985853774708264,1055,0.128744939271255,6.96129604591017,7.77191025643576,8.65678120562329,4.83076923076923,413.793103448276,48,11600,1,0,0,0,9 +"7842",2012,19021,"IA","19","021",20558,0.881700554528651,1651,0.124720303531472,7.40913644392013,7.68386398025643,8.62532985002082,4.19230769230769,360.948779649364,42,11636,1,0,0,0,9 +"7843",2012,19023,"IA","19","023",14972,0.988511888859204,660,0.144670050761421,6.49223983502047,7.39817409297047,8.30003171177957,4.53846153846154,481.77887584929,39,8095,1,0,0,0,9 +"7844",2012,19025,"IA","19","025",9912,0.972054075867635,506,0.149213075060533,6.22653666928747,6.95177216439891,7.81318726752142,5.54615384615385,202.168718985481,11,5441,1,0,0,0,9 +"7845",2012,19027,"IA","19","027",20653,0.9825691182879,993,0.136493487628916,6.90073066404517,7.71912984090673,8.62962862074603,3.76923076923077,345.652751927679,39,11283,1,0,0,0,9 +"7846",2012,19029,"IA","19","029",13697,0.98247791487187,651,0.142658976418194,6.47850964220857,7.25770767716004,8.22228507387272,5.21538461538462,483.48106365834,36,7446,1,0,0,0,9 +"7847",2012,19031,"IA","19","031",18299,0.983059183561943,795,0.142412153669599,6.67834211465433,7.68937110752969,8.5434455625603,4.56153846153846,346.553715825953,36,10388,1,0,0,0,9 +"7848",2012,19033,"IA","19","033",43704,0.968355299286107,2590,0.151565074135091,7.85941315469358,8.44998444172279,9.44351345892757,5.6,427.451911659938,108,25266,1,0,0,0,9 +"7849",2012,19035,"IA","19","035",11954,0.97816630416597,578,0.155763761084156,6.35957386867238,7.06561336359772,8.06714903991011,4.37692307692308,454.75216007276,30,6597,1,0,0,0,9 +"7850",2012,19039,"IA","19","039",9339,0.97740657457972,529,0.13459685191134,6.2709884318583,6.97728134163075,7.84541603659248,6.03846153846154,494.86105824134,26,5254,1,0,0,0,9 +"7851",2012,19041,"IA","19","041",16540,0.981197097944377,903,0.144921402660218,6.80572255341699,7.48941208350872,8.43337670532313,5.06153846153846,342.355836097143,32,9347,1,0,0,0,9 +"7852",2012,19043,"IA","19","043",17947,0.987017328801471,856,0.15295035381958,6.75227037614174,7.53476265703754,8.47741232140439,5.71538461538462,314.784727863526,31,9848,1,0,0,0,9 +"7853",2012,19045,"IA","19","045",48711,0.953850259694935,2819,0.136930056866006,7.94413749111411,8.61685751452918,9.53719507950244,6.17692307692308,399.740708729473,111,27768,1,0,0,0,9 +"7854",2012,19047,"IA","19","047",17292,0.952232246125376,1031,0.122310895211659,6.93828448401696,7.58933582317062,8.39728289474368,4.48461538461538,331.479897348161,31,9352,1,0,0,0,9 +"7855",2012,19049,"IA","19","049",72248,0.940067545122356,3116,0.100708670136198,8.04430540699064,9.31937413300031,9.98534399900596,3.93846153846154,207.253886010363,88,42460,1,0,0,0,9 +"7856",2012,19053,"IA","19","053",8241,0.964567406868098,941,0.12340735347652,6.84694313958538,6.67076632084587,7.68386398025643,4.46153846153846,400.623191631427,18,4493,1,0,0,0,9 +"7857",2012,19055,"IA","19","055",17568,0.989697176684882,809,0.139287340619308,6.69579891705849,7.56631101477246,8.4721958254855,4.50769230769231,394.816764527232,39,9878,1,0,0,0,9 +"7858",2012,19057,"IA","19","057",40247,0.92292593236763,2217,0.140954605312197,7.70391020961631,8.43402895015547,9.34679249511168,6.18461538461538,407.912627746831,93,22799,1,0,0,0,9 +"7859",2012,19059,"IA","19","059",16929,0.988067812629216,727,0.168113887412133,6.58892647753352,7.50439155916124,8.44591198941127,5.73076923076923,326.969728931547,31,9481,1,0,0,0,9 +"7860",2012,19061,"IA","19","061",95183,0.949455259867834,6719,0.131031801897398,8.81269461292015,9.27021176901357,10.2128088000914,4.54615384615385,275.781987081791,152,55116,1,0,0,0,9 +"7861",2012,19063,"IA","19","063",9949,0.965122122826415,672,0.143934063724997,6.51025834052315,6.93049476595163,7.87359778968554,4.49230769230769,429.568641489171,24,5587,1,0,0,0,9 +"7862",2012,19065,"IA","19","065",20773,0.973908438838877,1400,0.139844991094209,7.24422751560335,7.63094658089046,8.62263370387423,5.43076923076923,316.233309908644,36,11384,1,0,0,0,9 +"7863",2012,19067,"IA","19","067",16090,0.964947172156619,824,0.138036047234307,6.71417052990947,7.46737106691756,8.36613771649628,6.26153846153846,242.32633279483,21,8666,1,0,0,0,9 +"7864",2012,19069,"IA","19","069",10509,0.979160719383386,487,0.148824816823675,6.18826412308259,7.00760061395185,7.94626364358054,4.50769230769231,311.095748358106,18,5786,1,0,0,0,9 +"7865",2012,19071,"IA","19","071",7140,0.984453781512605,319,0.162605042016807,5.76519110278484,6.61873898351722,7.56320059235807,5.14615384615385,558.233950773915,22,3941,1,0,0,0,9 +"7866",2012,19073,"IA","19","073",9181,0.985295719420542,408,0.148349852957194,6.01126717440416,6.82979373751242,7.79770203551669,4.99230769230769,425.187284875481,21,4939,1,0,0,0,9 +"7867",2012,19075,"IA","19","075",12437,0.990592586636649,589,0.13982471657152,6.37842618365159,7.24992553671799,8.12563098847706,4.56153846153846,394.85229599298,27,6838,1,0,0,0,9 +"7868",2012,19077,"IA","19","077",10768,0.987462852897474,412,0.149238484398217,6.02102334934953,7.08170858610557,7.9483852851119,5.62307692307692,360.26762738034,21,5829,1,0,0,0,9 +"7869",2012,19079,"IA","19","079",15321,0.963579400822401,730,0.135826643169506,6.59304453414244,7.49052940206071,8.33615081612066,6.93076923076923,282.785436550018,24,8487,1,0,0,0,9 +"7870",2012,19081,"IA","19","081",11180,0.984078711985689,443,0.152951699463327,6.09356977004514,7.07326971745971,8.0013550258267,4.6,420.916302412174,26,6177,1,0,0,0,9 +"7871",2012,19083,"IA","19","083",17360,0.973963133640553,937,0.140207373271889,6.84268328223842,7.47816969415979,8.42704964156327,5.36923076923077,350.224362482215,32,9137,1,0,0,0,9 +"7872",2012,19085,"IA","19","085",14474,0.988254801713417,687,0.144258670719912,6.53233429222235,7.43543801981455,8.29054350077274,5.06923076923077,477.356181150551,39,8170,1,0,0,0,9 +"7873",2012,19087,"IA","19","087",20003,0.93915912613108,1309,0.133529970504424,7.1770187659099,7.77863014732581,8.60666819784384,5.96153846153846,339.529751294457,40,11781,1,0,0,0,9 +"7874",2012,19091,"IA","19","091",9724,0.98364870423694,510,0.139140271493213,6.23441072571837,6.86901445066571,7.86288203464149,4.25384615384615,357.277171869124,19,5318,1,0,0,0,9 +"7875",2012,19095,"IA","19","095",16183,0.986281900760057,730,0.137798924797627,6.59304453414244,7.53315880745556,8.40200678160712,4.52307692307692,208.699472759227,19,9104,1,0,0,0,9 +"7876",2012,19097,"IA","19","097",19684,0.978612070717334,974,0.140825035561878,6.88141130364254,7.68294316987829,8.59748202264504,5.49230769230769,444.76717799764,49,11017,1,0,0,0,9 +"7877",2012,19099,"IA","19","099",36583,0.974633026269032,1881,0.135582100975863,7.53955882930103,8.39502555744203,9.21024036697585,6,304.963873510369,65,21314,1,0,0,0,9 +"7878",2012,19101,"IA","19","101",17281,0.877206180197905,1765,0.190903304206932,7.4759059693674,7.44190672805162,8.46842302704681,5.28461538461538,383.356708742403,41,10695,1,0,0,0,9 +"7879",2012,19103,"IA","19","103",137180,0.875295232541187,22462,0.101574573552996,10.019580271523,9.65091519053111,10.7020302481414,3.7,185.110843480976,166,89676,1,0,0,0,9 +"7880",2012,19105,"IA","19","105",20602,0.967527424521891,1014,0.139403941364916,6.92165818415113,7.83042561782033,8.59748202264504,5.27692307692308,365.418154638319,44,12041,1,0,0,0,9 +"7881",2012,19107,"IA","19","107",10427,0.988587321377194,520,0.140884242831112,6.25382881157547,6.99301512293296,7.92334821193015,5.5,350.508236943568,20,5706,1,0,0,0,9 +"7882",2012,19109,"IA","19","109",15407,0.983903420523139,653,0.150840527033167,6.48157712927643,7.28138566357028,8.29579811063615,3.9,328.547091749817,27,8218,1,0,0,0,9 +"7883",2012,19111,"IA","19","111",35549,0.952150552758165,2072,0.14726152634392,7.63626960337937,8.28828304520769,9.20432229965062,7.2,483.231854643858,100,20694,1,0,0,0,9 +"7884",2012,19113,"IA","19","113",215542,0.921769307141996,15375,0.120250345640293,9.64049809267472,10.2210681753338,11.0714082184696,5.23846153846154,285.002336084722,366,128420,1,0,0,0,9 +"7885",2012,19115,"IA","19","115",11364,0.958201337557198,612,0.129531854980641,6.41673228251233,7.21670948670946,8.04012466444838,5.49230769230769,371.747211895911,24,6456,1,0,0,0,9 +"7886",2012,19117,"IA","19","117",8777,0.990315597584596,408,0.143670958186168,6.01126717440416,6.83947643822884,7.74500280351584,4.77692307692308,276.654607363269,13,4699,1,0,0,0,9 +"7887",2012,19119,"IA","19","119",11761,0.991242241306011,590,0.127880282288921,6.38012253689976,7.18083119904456,8.03171037532204,2.96153846153846,175.382653061224,11,6272,1,0,0,0,9 +"7888",2012,19121,"IA","19","121",15639,0.98593260438647,645,0.133768143743206,6.46925031679577,7.63964228785801,8.38617292897783,5.60769230769231,377.142857142857,33,8750,1,0,0,0,9 +"7889",2012,19123,"IA","19","123",22407,0.96942919623332,1453,0.131476770652028,7.28138566357028,7.85825418218603,8.73857519211079,5.2,251.730648206419,32,12712,1,0,0,0,9 +"7890",2012,19125,"IA","19","125",33277,0.974516933617814,2281,0.125642335547075,7.73236922228439,8.24722005274523,9.12325626506907,4.83076923076923,354.229282954058,66,18632,1,0,0,0,9 +"7891",2012,19127,"IA","19","127",41032,0.936732306492494,2517,0.134090465977773,7.83082299513532,8.39660622842712,9.3142498353667,6.43846153846154,446.94220727498,101,22598,1,0,0,0,9 +"7892",2012,19129,"IA","19","129",14874,0.983864461476402,659,0.155707946752723,6.49072353450251,7.53101633207792,8.36730010184162,4.61538461538461,426.120004606703,37,8683,1,0,0,0,9 +"7893",2012,19133,"IA","19","133",9090,0.977777777777778,376,0.146094609460946,5.9295891433899,6.80239476332431,7.75876054415766,6.40769230769231,400.337126000843,19,4746,1,0,0,0,9 +"7894",2012,19135,"IA","19","135",8070,0.98451053283767,409,0.135811648079306,6.0137151560428,6.82762923450285,7.67971363996637,5.79230769230769,404.221872894678,18,4453,1,0,0,0,9 +"7895",2012,19137,"IA","19","137",10541,0.987003130632767,459,0.148562754956835,6.12905021006055,7.09920174355309,7.95296679092313,5.1,296.115659292806,17,5741,1,0,0,0,9 +"7896",2012,19139,"IA","19","139",42922,0.958529425469456,2512,0.130492521317739,7.82883452758809,8.55948610360649,9.41466800903275,5.76923076923077,357.534636167879,88,24613,1,0,0,0,9 +"7897",2012,19141,"IA","19","141",14154,0.97746220149781,706,0.142433234421365,6.55961523749324,7.29844510150815,8.21878715560148,3.8,285.565939771547,22,7704,1,0,0,0,9 +"7898",2012,19145,"IA","19","145",15705,0.954918815663801,842,0.147532632919452,6.73578001424233,7.53636393840451,8.28853445941392,5.43076923076923,480.384307445957,42,8743,1,0,0,0,9 +"7899",2012,19147,"IA","19","147",9278,0.982539340375081,568,0.136775167061867,6.34212141872115,6.81124437860129,7.80057265467065,4.29230769230769,320.128051220488,16,4998,1,0,0,0,9 +"7900",2012,19149,"IA","19","149",24836,0.981236914156869,1167,0.139434691576743,7.06219163228656,7.94555542825349,8.82702806850915,4.10769230769231,326.465467208357,45,13784,1,0,0,0,9 +"7901",2012,19151,"IA","19","151",7143,0.981380372392552,345,0.151336973260535,5.84354441703136,6.47850964220857,7.52886925664225,4.06153846153846,622.245268343272,24,3857,1,0,0,0,9 +"7902",2012,19153,"IA","19","153",444753,0.881761337191655,29066,0.113660840961163,10.2773243851861,11.0087112707919,11.8280792116701,5.2,288.499948217958,780,270364,1,0,0,0,9 +"7903",2012,19155,"IA","19","155",92965,0.965460119399774,5827,0.13313612649922,8.67025756714308,9.29504909990314,10.2115603146356,5.08461538461538,412.697827809201,224,54277,1,0,0,0,9 +"7904",2012,19157,"IA","19","157",18734,0.962474645030426,1703,0.132753282801324,7.44014668066269,7.54274354536855,8.55891078476811,4.89230769230769,308.522946394138,32,10372,1,0,0,0,9 +"7905",2012,19161,"IA","19","161",10161,0.988682216317292,423,0.151067808286586,6.04737217904628,6.92461239604856,7.87739718635329,4.26923076923077,478.821362799263,26,5430,1,0,0,0,9 +"7906",2012,19163,"IA","19","163",168433,0.885218454815861,10390,0.129760795093598,9.24859908409327,9.95189669174382,10.8322600619123,5.74615384615385,341.065480583202,342,100274,1,0,0,0,9 +"7907",2012,19165,"IA","19","165",12032,0.985538563829787,527,0.139876994680851,6.26720054854136,7.1708884785125,8.06337782236703,3.77692307692308,374.824301108855,24,6403,1,0,0,0,9 +"7908",2012,19167,"IA","19","167",34289,0.976464755460935,3070,0.110181107643851,8.02943284058124,8.155649270366,9.10208678653593,3.46153846153846,189.04612725505,35,18514,1,0,0,0,9 +"7909",2012,19169,"IA","19","169",92046,0.895421854290246,21090,0.0946591921430589,9.95655427347282,9.01869548772134,10.2258608647778,3.6,112.384422837877,66,58727,1,0,0,0,9 +"7910",2012,19171,"IA","19","171",17500,0.897371428571429,839,0.139314285714286,6.73221070646721,7.58984151218266,8.46168048148598,6,350.244109530885,33,9422,1,0,0,0,9 +"7911",2012,19175,"IA","19","175",12585,0.979658323400874,756,0.135001986491855,6.62804137617953,7.21081845347222,8.17357548663415,5.06923076923077,358.268844941244,25,6978,1,0,0,0,9 +"7912",2012,19179,"IA","19","179",35430,0.957945244143381,2401,0.13652272085803,7.78364059622125,8.32457884513685,9.23356849809539,6.97692307692308,444.9442597301,91,20452,1,0,0,0,9 +"7913",2012,19181,"IA","19","181",46906,0.981153796955613,2891,0.124376412399267,7.96935774201635,8.70367275835886,9.52427481557203,4.79230769230769,231.19662900399,62,26817,1,0,0,0,9 +"7914",2012,19183,"IA","19","183",21910,0.978366042902784,1090,0.136421725239617,6.99393297522319,7.81923445385907,8.70880479511728,4.21538461538462,329.5978905735,40,12136,1,0,0,0,9 +"7915",2012,19187,"IA","19","187",37335,0.937699209856703,2864,0.136199276817999,7.95997452808054,8.24879073369641,9.2213792190914,6.36153846153846,359.192051126557,77,21437,1,0,0,0,9 +"7916",2012,19189,"IA","19","189",10608,0.973699095022624,646,0.153374811463047,6.4707995037826,7.03878354138854,7.96970358327866,5.36923076923077,354.969574036511,21,5916,1,0,0,0,9 +"7917",2012,19191,"IA","19","191",21048,0.976577347016344,2275,0.133361839604713,7.72973533138505,7.61085279039525,8.68067166040871,4.63076923076923,166.099161199236,20,12041,1,0,0,0,9 +"7918",2012,19193,"IA","19","193",102351,0.90527693916034,7441,0.121513224101377,8.91476052739726,9.40376670850224,10.2902793953787,5.24615384615385,398.603185418619,234,58705,1,0,0,0,9 +"7919",2012,19197,"IA","19","197",13019,0.981949458483754,641,0.145863737614256,6.46302945692067,7.2254814727823,8.11581970121133,5.37692307692308,403.400086442876,28,6941,1,0,0,0,9 +"7920",2012,16001,"ID","16","001",409032,0.942395704981517,26702,0.115475072854936,10.19249374795,10.9582001989142,11.7133734083523,6.33076923076923,238.149148485388,589,247324,0,0,0,0,9 +"7921",2012,16005,"ID","16","005",83781,0.932204199042742,7212,0.114703811126628,8.88350158432321,9.15873123824295,10.1043445942711,7.10769230769231,346.496083979169,169,48774,0,0,0,0,9 +"7922",2012,16009,"ID","16","009",9129,0.88651550005477,434,0.164311534669734,6.0730445341004,6.86380339145295,7.83201418050547,12.4076923076923,516.590502682297,26,5033,0,0,0,0,9 +"7923",2012,16011,"ID","16","011",45519,0.905160482435906,2615,0.111887343746567,7.86901937649902,8.54636356871602,9.39540815443816,6.55384615384615,349.548499854355,84,24031,0,0,0,0,9 +"7924",2012,16013,"ID","16","013",21131,0.966920637925323,852,0.155174861577777,6.74758652682932,7.95296679092313,8.74416938875062,7.19230769230769,179.6875,23,12800,0,0,0,0,9 +"7925",2012,16015,"ID","16","015",6792,0.973645465253239,237,0.214664310954064,5.46806014113513,6.61204103483309,7.60339933974067,9.71538461538461,347.739692001987,14,4026,0,0,0,0,9 +"7926",2012,16017,"ID","16","017",40367,0.976515470557634,1730,0.186340327495231,7.45587668749182,8.38091517312361,9.3735640530782,10.7153846153846,353.718303856808,83,23465,0,0,0,0,9 +"7927",2012,16019,"ID","16","019",106788,0.965005431321871,6444,0.107661909577855,8.77090474429687,9.42682178041684,10.2872862976712,6.46923076923077,300.028980071939,176,58661,0,0,0,0,9 +"7928",2012,16021,"ID","16","021",10816,0.962647928994083,426,0.164016272189349,6.05443934626937,7.09174211509515,7.99867136101578,9.69230769230769,405.885337392187,24,5913,0,0,0,0,9 +"7929",2012,16027,"ID","16","027",193784,0.955827106469058,12733,0.102547165916691,9.45195232757344,10.1318176305376,10.8949414139753,9.36923076923077,319.054541335498,338,105938,0,0,0,0,9 +"7930",2012,16031,"ID","16","031",23265,0.967418869546529,1447,0.106468944766817,7.27724772663148,7.87054784450771,8.66853994391076,5.93076923076923,324.621275178958,39,12014,0,0,0,0,9 +"7931",2012,16035,"ID","16","035",8579,0.960251777596456,377,0.176127753817461,5.93224518744801,6.79682371827486,7.68708015578313,12.8153846153846,404.940271309982,20,4939,0,0,0,0,9 +"7932",2012,16039,"ID","16","039",26314,0.907463707532112,2844,0.0965265638063388,7.95296679092313,7.98309894071089,8.90163893230033,7.73076923076923,283.122064217232,44,15541,0,0,0,0,9 +"7933",2012,16043,"ID","16","043",12973,0.976181299622292,656,0.119247668234025,6.48616078894409,7.30114780585603,8.08794755464267,6.36153846153846,178.465199286139,12,6724,0,0,0,0,9 +"7934",2012,16045,"ID","16","045",16638,0.97487678807549,856,0.144127899987979,6.75227037614174,7.46106551435428,8.43272403478979,9.67692307692308,377.400377400377,34,9009,0,0,0,0,9 +"7935",2012,16047,"ID","16","047",15246,0.964187327823691,936,0.110979929161747,6.84161547647759,7.4599147662411,8.2529671950008,5.84615384615385,385.428322765137,31,8043,0,0,0,0,9 +"7936",2012,16049,"ID","16","049",16448,0.955131322957198,722,0.176982003891051,6.58202513889283,7.350516171834,8.36520683441836,11.2,345.82775546631,31,8964,0,0,0,0,9 +"7937",2012,16051,"ID","16","051",26642,0.974251182343668,1472,0.0984911042714511,7.29437729928882,8.04494704961772,8.8376812155932,6.3,235.69745018213,33,14001,0,0,0,0,9 +"7938",2012,16053,"ID","16","053",22572,0.963140173666489,1439,0.107566897040581,7.27170370688737,7.84306401669205,8.69751274553952,6.62307692307692,326.690623979092,40,12244,0,0,0,0,9 +"7939",2012,16055,"ID","16","055",142173,0.965675620546799,8973,0.135996286214682,9.10197534729806,9.75115189123243,10.6458771759245,8.99230769230769,330.10910591405,272,82397,0,0,0,0,9 +"7940",2012,16057,"ID","16","057",38127,0.952605764943478,7221,0.107745167466625,8.88474872645118,8.20985248130127,9.35244738860101,5.96153846153846,239.728858394643,58,24194,0,0,0,0,9 +"7941",2012,16059,"ID","16","059",7769,0.978504312009268,290,0.191401724803707,5.66988092298052,6.53233429222235,7.66105638236183,10.1384615384615,654.205607476636,28,4280,0,0,0,0,9 +"7942",2012,16065,"ID","16","065",37712,0.971759652100127,9047,0.0564011455239712,9.11018849002574,7.87663846097546,9.2735968216112,4.67692307692308,90.5428041106433,20,22089,0,0,0,0,9 +"7943",2012,16067,"ID","16","067",20156,0.961103393530462,1235,0.119220083349871,7.11882624906208,7.68982866873648,8.57111303340567,6.21538461538462,404.55357982877,43,10629,0,0,0,0,9 +"7944",2012,16069,"ID","16","069",39512,0.917569346021462,2910,0.136237092528852,7.97590836016554,8.40804774415544,9.3461815948876,5.88461538461539,439.020107120906,100,22778,0,0,0,0,9 +"7945",2012,16073,"ID","16","073",11411,0.9311190956095,654,0.125405310665148,6.4831073514572,7.2115567333138,7.98888225330923,4.26923076923077,323.258445126879,20,6187,0,0,0,0,9 +"7946",2012,16075,"ID","16","075",22697,0.965854518218267,1247,0.119399039520642,7.12849594568004,7.8811822022271,8.73069036567864,8.06923076923077,371.348407327942,45,12118,0,0,0,0,9 +"7947",2012,16079,"ID","16","079",12703,0.966622057781626,621,0.164291899551287,6.43133108193348,7.26752542782817,8.17526610411206,13.3923076923077,567.631178180811,41,7223,0,0,0,0,9 +"7948",2012,16083,"ID","16","083",78564,0.961356346418207,5351,0.114556285321521,8.5850387383113,9.1178960815849,10.002427500391,7.1,328.115387244514,144,43887,0,0,0,0,9 +"7949",2012,16085,"ID","16","085",9544,0.981349538977368,385,0.20651718357083,5.95324333428778,7.04228617193974,7.9402277651457,11.5692307692308,275.339872655309,16,5811,0,0,0,0,9 +"7950",2012,16087,"ID","16","087",10028,0.964898284802553,462,0.148982848025529,6.13556489108174,6.98471632011827,7.86672228513673,8.66923076923077,417.933130699088,22,5264,0,0,0,0,9 +"7951",2012,17001,"IL","17","001",67149,0.945687947698402,4268,0.131707099137738,8.35890061242164,8.9201217518724,9.86396679437384,6.56153846153846,369.138937612902,141,38197,1,0,0,0,9 +"7952",2012,17003,"IL","17","003",7721,0.615464318093511,497,0.143116176661054,6.20859002609663,6.69332366826995,7.65396918047877,12,403.496973772697,18,4461,1,0,0,0,9 +"7953",2012,17005,"IL","17","005",17538,0.918405747519672,1210,0.133709659026115,7.09837563859079,7.74370325817375,8.48528964240323,9.01538461538462,342.085798816568,37,10816,1,0,0,0,9 +"7954",2012,17007,"IL","17","007",53729,0.94645349811089,3078,0.116920099015429,8.03203531439882,8.93853164868069,9.62957688416827,10.4769230769231,297.113752122241,91,30628,1,0,0,0,9 +"7955",2012,17011,"IL","17","011",34350,0.974934497816594,1750,0.142590975254731,7.46737106691756,8.29454951514368,9.17398754251038,9.24615384615385,317.014863319821,61,19242,1,0,0,0,9 +"7956",2012,17015,"IL","17","015",15121,0.975662985252298,763,0.158653528205806,6.63725803128446,7.37274636640433,8.32336569443608,8.23076923076923,466.395599138962,39,8362,1,0,0,0,9 +"7957",2012,17017,"IL","17","017",13427,0.944365830043941,762,0.126461607209354,6.63594655568665,7.43838353004431,8.21039625510477,8.51538461538462,613.817421966828,47,7657,1,0,0,0,9 +"7958",2012,17019,"IL","17","019",204697,0.75433934058633,34925,0.10210213144306,10.4609581841252,9.97324679695098,11.0659349900335,7.10769230769231,221.86709695437,286,128906,1,0,0,0,9 +"7959",2012,17021,"IL","17","021",34522,0.972307514049012,2109,0.131973813799896,7.65396918047877,8.33182700443606,9.15493336470444,9.41538461538462,375.375375375375,75,19980,1,0,0,0,9 +"7960",2012,17023,"IL","17","023",16265,0.986719950814633,875,0.133784199200738,6.77422388635761,7.54960916515453,8.43054538469057,9.66923076923077,378.01058429636,35,9259,1,0,0,0,9 +"7961",2012,17025,"IL","17","025",13710,0.983005105762217,829,0.139679066374909,6.7202201551353,7.34987370473834,8.24905227417129,9.7,320.595024365222,25,7798,1,0,0,0,9 +"7962",2012,17027,"IL","17","027",37908,0.94940381977419,2387,0.12519784742007,7.77779262633883,8.47657950853094,9.2711532113727,6.67692307692308,273.87732034952,63,23003,1,0,0,0,9 +"7963",2012,17029,"IL","17","029",53333,0.942530890818068,8509,0.117469484184276,9.04887970584956,8.57451825803551,9.72883650204639,8.83076923076923,376.099484379739,124,32970,1,0,0,0,9 +"7964",2012,17031,"IL","17","031",5239105,0.66581734857385,370196,0.115200210723015,12.8217878740929,13.472274900892,14.318214893159,9.65384615384615,324.86621289217,10493,3229945,1,0,0,0,9 +"7965",2012,17033,"IL","17","033",19594,0.938042257834031,1284,0.135704807594161,7.15773548424991,7.81681996576455,8.57847641983314,7.72307692307692,364.530349270939,43,11796,1,0,0,0,9 +"7966",2012,17035,"IL","17","035",10955,0.984938384299407,635,0.140757644911,6.45362499889269,7.15305163493748,8.03786623470962,7.80769230769231,348.101265822785,22,6320,1,0,0,0,9 +"7967",2012,17037,"IL","17","037",104385,0.893250946017148,15795,0.0993437754466638,9.66744871323619,9.35884658027541,10.3777010578054,8.50769230769231,236.479223611068,154,65122,1,0,0,0,9 +"7968",2012,17039,"IL","17","039",16490,0.981867798665858,859,0.141176470588235,6.75576892198425,7.61628356158038,8.46294817656384,8.1,385.617509119333,37,9595,1,0,0,0,9 +"7969",2012,17041,"IL","17","041",19881,0.982495850309341,1159,0.127860771590966,7.05531284333975,7.74586822979227,8.61703852638595,7.21538461538462,314.578464857091,35,11126,1,0,0,0,9 +"7970",2012,17043,"IL","17","043",928719,0.828744754872033,55498,0.130335440536912,10.9241022630492,11.7173916756157,12.5633099313251,7.51538461538462,208.657055581709,1179,565042,1,0,0,0,9 +"7971",2012,17045,"IL","17","045",18170,0.987837094111172,949,0.144193725921849,6.85540879860993,7.65822752616135,8.54558626591746,9.73076923076923,532.790855371501,55,10323,1,0,0,0,9 +"7972",2012,17047,"IL","17","047",6725,0.986765799256506,345,0.143048327137546,5.84354441703136,6.71417052990947,7.5251007461258,7.87692307692308,370.566437268396,14,3778,1,0,0,0,9 +"7973",2012,17049,"IL","17","049",34270,0.986402100962941,2135,0.129121680770353,7.66622192566273,8.25192471380136,9.18409906077096,6.58461538461538,323.461033053674,64,19786,1,0,0,0,9 +"7974",2012,17051,"IL","17","051",22167,0.943339197906798,1496,0.126404114223846,7.31055015853442,7.952615111651,8.66060065471097,8.99230769230769,345.039104431836,45,13042,1,0,0,0,9 +"7975",2012,17053,"IL","17","053",13877,0.982489010593068,703,0.133962672047272,6.55535689181067,7.40000951716269,8.25218543600333,7.47692307692308,452.839953422176,35,7729,1,0,0,0,9 +"7976",2012,17055,"IL","17","055",39872,0.984324839486356,2237,0.136536918138042,7.71289096149013,8.50004703258127,9.33952483035701,10.7076923076923,521.114106019766,116,22260,1,0,0,0,9 +"7977",2012,17057,"IL","17","057",36585,0.949405494054941,2152,0.13713270466038,7.67415292128168,8.45190772471761,9.18932100475211,9.98461538461538,436.25562723349,94,21547,1,0,0,0,9 +"7978",2012,17059,"IL","17","059",5391,0.987571879057689,300,0.144871081432016,5.7037824746562,6.46614472423762,7.34923082461333,8.46923076923077,523.731587561375,16,3055,1,0,0,0,9 +"7979",2012,17061,"IL","17","061",13657,0.984183934978399,775,0.136779673427546,6.65286302935335,7.41997992366183,8.23429963569625,8.43076923076923,383.337592639918,30,7826,1,0,0,0,9 +"7980",2012,17063,"IL","17","063",50161,0.970913658021172,2837,0.116385239528718,7.95050243480885,8.86432272251144,9.6029903830375,11.5,285.589490306757,85,29763,1,0,0,0,9 +"7981",2012,17065,"IL","17","065",8387,0.987003696196495,417,0.140336234648861,6.0330862217988,6.85856503479136,7.7484600238997,8,410.988535582955,19,4623,1,0,0,0,9 +"7982",2012,17067,"IL","17","067",18830,0.986988847583643,946,0.150876261285183,6.85224256905188,7.60837447438078,8.55756708555451,8.33846153846154,314.735336194564,33,10485,1,0,0,0,9 +"7983",2012,17069,"IL","17","069",4278,0.979897148200094,187,0.164329125759701,5.23110861685459,6.18620862390049,7.0825485693553,10.5923076923077,548.060708263069,13,2372,1,0,0,0,9 +"7984",2012,17071,"IL","17","071",7048,0.986379114642452,307,0.165295119182747,5.7268477475872,6.57507584059962,7.57916796739608,8,403.327451474666,16,3967,1,0,0,0,9 +"7985",2012,17073,"IL","17","073",50263,0.969918230109623,2622,0.141893639456459,7.87169266432365,8.68828526625864,9.55626776736815,7.44615384615385,377.265355052535,107,28362,1,0,0,0,9 +"7986",2012,17075,"IL","17","075",29270,0.977075503928937,1497,0.139733515544927,7.31121838441963,8.07992777075827,9.00171590676118,8.63846153846154,509.569972657221,82,16092,1,0,0,0,9 +"7987",2012,17077,"IL","17","077",59081,0.802068346845856,11217,0.109493745874308,9.32518576364522,8.68440111040014,9.83440539134868,7.87692307692308,326.444581534032,127,38904,1,0,0,0,9 +"7988",2012,17079,"IL","17","079",9674,0.990800082695886,509,0.140272896423403,6.23244801655052,6.97073007814353,7.90617884039481,7.66923076923077,487.6286797905,27,5537,1,0,0,0,9 +"7989",2012,17081,"IL","17","081",38672,0.891756309474555,2409,0.13725693007861,7.78696700261487,8.48673398393153,9.27528506061656,9.26923076923077,486.372798177197,111,22822,1,0,0,0,9 +"7990",2012,17083,"IL","17","083",22717,0.981159484086807,1560,0.134480785314962,7.35244110024358,7.88004820097158,8.81001204797317,9.06923076923077,405.131667792032,54,13329,1,0,0,0,9 +"7991",2012,17085,"IL","17","085",22542,0.984118534291545,1008,0.164359861591695,6.91572344863131,7.77317368048254,8.72192834304709,7.61538461538461,313.656104230336,39,12434,1,0,0,0,9 +"7992",2012,17087,"IL","17","087",12851,0.900941560968018,879,0.136409617928566,6.77878489768518,7.39387829010776,8.05706068196577,11.6307692307692,416.720927204063,32,7679,1,0,0,0,9 +"7993",2012,17089,"IL","17","089",520615,0.882609990107853,31298,0.111089768831094,10.3513094767231,11.2204050398782,11.9349526613774,8.94615384615385,224.655811577306,686,305356,1,0,0,0,9 +"7994",2012,17091,"IL","17","091",112995,0.822177972476658,8345,0.123492189919908,9.02941783609594,9.53985992316954,10.410275033969,10.6769230769231,362.749580856577,238,65610,1,0,0,0,9 +"7995",2012,17093,"IL","17","093",118255,0.892731808380195,5848,0.0893239186503742,8.67385500142962,9.93183202554527,10.4761605796282,8.37692307692308,185.01520279961,129,69724,1,0,0,0,9 +"7996",2012,17095,"IL","17","095",52302,0.89820656953845,3741,0.141581583878246,8.22710823434815,8.69751274553952,9.58438361007601,8.37692307692308,428.986272439282,130,30304,1,0,0,0,9 +"7997",2012,17097,"IL","17","097",702117,0.839308833143194,43958,0.12213064204399,10.6909899115772,11.4542046547539,12.2412129296599,8.18461538461538,247.714836650241,1029,415397,1,0,0,0,9 +"7998",2012,17099,"IL","17","099",112913,0.960606838893661,6936,0.134988885247934,8.84448051846038,9.48691093967325,10.3672530148147,10.1,364.320845224361,240,65876,1,0,0,0,9 +"7999",2012,17101,"IL","17","101",16732,0.890509203920631,1204,0.121264642601004,7.09340462586877,7.7553388128465,8.32385113133882,10.2538461538462,507.857416634726,53,10436,1,0,0,0,9 +"8000",2012,17103,"IL","17","103",35218,0.932108580839344,2056,0.141177806803339,7.62851762657506,8.35608503102148,9.16199011103514,8.31538461538462,336.349424416126,71,21109,1,0,0,0,9 +"8001",2012,17105,"IL","17","105",38519,0.934188322645967,2413,0.132506035982243,7.78862606562503,8.44698529637274,9.31578088443418,7.79230769230769,392.362019356526,90,22938,1,0,0,0,9 +"8002",2012,17107,"IL","17","107",30359,0.901248394215883,2417,0.125564083138443,7.79028238070348,8.23403420769204,9.0663545214478,7.53076923076923,313.462384513858,57,18184,1,0,0,0,9 +"8003",2012,17109,"IL","17","109",32567,0.916172812970184,6344,0.113028525808334,8.75526476331468,7.94909149983052,9.17936556767675,7.73076923076923,321.559315326012,65,20214,1,0,0,0,9 +"8004",2012,17111,"IL","17","111",308248,0.949842334743453,17024,0.123608263476162,9.74237939214137,10.6839356514979,11.4365410575489,9.00769230769231,279.642660861881,519,185594,1,0,0,0,9 +"8005",2012,17113,"IL","17","113",172762,0.860009724360681,22307,0.107732024403515,10.0126558095368,9.94673859453044,10.9069829760468,6.4,221.274053049754,237,107107,1,0,0,0,9 +"8006",2012,17115,"IL","17","115",110162,0.802300248724606,7513,0.141881955665293,8.92439013236916,9.43380387210131,10.4015014555748,9.93076923076923,421.781554926031,268,63540,1,0,0,0,9 +"8007",2012,17117,"IL","17","117",47058,0.98168217943814,2787,0.142738747928089,7.93272102748195,8.61177583390219,9.52361708908944,9.54615384615385,374.325663327095,102,27249,1,0,0,0,9 +"8008",2012,17119,"IL","17","119",268124,0.898595425996927,19377,0.129242440065045,9.87184207470058,10.4014406800794,11.313852381535,8.87692307692308,391.012294269284,631,161376,1,0,0,0,9 +"8009",2012,17121,"IL","17","121",39018,0.941975498487877,2352,0.137141831974986,7.76302130901852,8.39976009452414,9.31847703058076,9.83076923076923,469.759248385203,104,22139,1,0,0,0,9 +"8010",2012,17123,"IL","17","123",12261,0.984829948617568,643,0.152352989152598,6.46614472423762,7.21081845347222,8.14728825870662,8.38461538461539,579.206487112656,40,6906,1,0,0,0,9 +"8011",2012,17125,"IL","17","125",14322,0.985407066052227,760,0.14327607875995,6.63331843328038,7.41577697541539,8.28702502516506,10.0846153846154,520.381613183001,42,8071,1,0,0,0,9 +"8012",2012,17127,"IL","17","127",15067,0.923740625207407,809,0.136125306962235,6.69579891705849,7.53636393840451,8.38799525294456,9.64615384615385,669.406928948914,57,8515,1,0,0,0,9 +"8013",2012,17129,"IL","17","129",12692,0.981011660888749,635,0.147809643870154,6.45362499889269,7.32383056620232,8.23057721714645,7.17692307692308,392.528424472117,29,7388,1,0,0,0,9 +"8014",2012,17131,"IL","17","131",16165,0.988122486854315,814,0.14562326012991,6.70196036600254,7.53262361878879,8.414717399827,7.79230769230769,481.874931551856,44,9131,1,0,0,0,9 +"8015",2012,17133,"IL","17","133",33320,0.987454981992797,1664,0.135984393757503,7.41697962138115,8.36147461641682,9.19968379178765,6.74615384615385,182.592818015825,36,19716,1,0,0,0,9 +"8016",2012,17135,"IL","17","135",29620,0.958980418636057,1774,0.136056718433491,7.48099216286952,8.18841130807903,8.97309789628247,11.2846153846154,415.788574357806,73,17557,1,0,0,0,9 +"8017",2012,17137,"IL","17","137",35318,0.918596749532816,2524,0.136446004870038,7.8336002236611,8.29454951514368,9.21024036697585,7.77692307692308,521.210366295063,108,20721,1,0,0,0,9 +"8018",2012,17139,"IL","17","139",14876,0.988236084969078,802,0.130142511427803,6.68710860786651,7.42177579364465,8.34402957240705,7.13846153846154,365.052324166464,30,8218,1,0,0,0,9 +"8019",2012,17141,"IL","17","141",52788,0.976111995150413,2938,0.131639766613624,7.98548435673382,8.78905071352105,9.62707507234258,10.1692307692308,338.403916286099,103,30437,1,0,0,0,9 +"8020",2012,17143,"IL","17","143",187354,0.763970878657515,13593,0.127090961495351,9.51731023333525,10.0279151309112,10.9403308148066,8.42307692307692,387.839813982216,427,110097,1,0,0,0,9 +"8021",2012,17145,"IL","17","145",21849,0.901276946313332,1670,0.129662684791066,7.4205789054108,7.97384437594469,8.64047220757641,10.6769230769231,378.984914914171,51,13457,1,0,0,0,9 +"8022",2012,17147,"IL","17","147",16505,0.984913662526507,818,0.144441078461072,6.70686233660275,7.58171964012531,8.45892828328426,6.73846153846154,326.522013903518,31,9494,1,0,0,0,9 +"8023",2012,17149,"IL","17","149",16233,0.974557999137559,887,0.139160968397708,6.78784498230958,7.54538974961182,8.39231000926955,7.59230769230769,372.031950979319,34,9139,1,0,0,0,9 +"8024",2012,17153,"IL","17","153",5965,0.652137468566639,359,0.151215423302598,5.88332238848828,6.47543271670409,7.4599147662411,11.4538461538462,804.289544235925,27,3357,1,0,0,0,9 +"8025",2012,17157,"IL","17","157",33023,0.888501953184144,2025,0.134936256548466,7.61332497954064,8.36124088964235,9.02087334702136,8.43076923076923,396.029922260793,81,20453,1,0,0,0,9 +"8026",2012,17159,"IL","17","159",16132,0.98065955864121,957,0.134329283411852,6.86380339145295,7.50328963067508,8.42463920980563,8.07692307692308,549.994500054999,50,9091,1,0,0,0,9 +"8027",2012,17161,"IL","17","161",147699,0.861725536394965,9551,0.137604181477193,9.16440114003474,9.75568335776773,10.6645503578944,8.05384615384615,394.265651063234,338,85729,1,0,0,0,9 +"8028",2012,17163,"IL","17","163",268748,0.665177043177996,18010,0.124480926369685,9.79868243817,10.4298419779197,11.3238934432848,9.59230769230769,466.428977290466,747,160153,1,0,0,0,9 +"8029",2012,17165,"IL","17","165",24913,0.941516477341147,1578,0.13691646931321,7.36391350140582,7.95542508891267,8.8758461777386,9.13076923076923,602.107375815354,84,13951,1,0,0,0,9 +"8030",2012,17167,"IL","17","167",199431,0.845811333243077,12223,0.137200334952941,9.41107470177726,10.1005745615306,11.0296015128215,7.44615384615385,382.031132186123,456,119362,1,0,0,0,9 +"8031",2012,17173,"IL","17","173",22204,0.990407133849757,1175,0.143217438299406,7.06902342657826,7.82444593087762,8.72955886955857,8.63076923076923,305.024883608926,38,12458,1,0,0,0,9 +"8032",2012,17177,"IL","17","177",46895,0.881266659558588,2713,0.144023883143192,7.90581031265893,8.55352512066363,9.50091824753999,9.09230769230769,315.67337314114,83,26293,1,0,0,0,9 +"8033",2012,17179,"IL","17","179",136149,0.972184885676722,7487,0.13294992985626,8.92092346223069,9.77092711695165,10.5869883560443,7.51538461538462,337.676683989857,269,79662,1,0,0,0,9 +"8034",2012,17181,"IL","17","181",17609,0.972911579306037,1087,0.1449258901698,6.99117688712121,7.65444322647011,8.52436739516424,11.0076923076923,541.072306935563,55,10165,1,0,0,0,9 +"8035",2012,17183,"IL","17","183",80881,0.845241774953327,4811,0.135408810474648,8.47866024169945,9.15080265925999,10.0288418536888,9.33076923076923,504.697400043697,231,45770,1,0,0,0,9 +"8036",2012,17185,"IL","17","185",11690,0.97519247219846,765,0.146877673224979,6.63987583382654,7.16239749735572,8.12148037475075,7.99230769230769,429.884375926475,29,6746,1,0,0,0,9 +"8037",2012,17187,"IL","17","187",17742,0.947694735655507,1348,0.136568594296021,7.20637729147225,7.59538727885397,8.50552538654856,7.12307692307692,280.448717948718,28,9984,1,0,0,0,9 +"8038",2012,17189,"IL","17","189",14598,0.982189341005617,831,0.138169612275654,6.72262979485545,7.46622755621548,8.32336569443608,6.38461538461539,396.686500991716,34,8571,1,0,0,0,9 +"8039",2012,17191,"IL","17","191",16668,0.987520998320134,911,0.137628989680826,6.81454289725996,7.51588908521513,8.43923164994653,7.71538461538462,442.191544434858,41,9272,1,0,0,0,9 +"8040",2012,17193,"IL","17","193",14524,0.984783806114018,748,0.14059487744423,6.61740297797448,7.32052696227274,8.29804166137157,7.58461538461538,582.909587002356,47,8063,1,0,0,0,9 +"8041",2012,17195,"IL","17","195",57772,0.966696669666967,3289,0.142439243924392,8.09833884618906,8.82055174325303,9.69134575932969,8.85384615384615,430.429208132365,141,32758,1,0,0,0,9 +"8042",2012,17197,"IL","17","197",682459,0.821243473966934,40446,0.109093733103381,10.6077230300815,11.5427560749289,12.2205276664998,9.8,258.317859878675,1042,403379,1,0,0,0,9 +"8043",2012,17199,"IL","17","199",66793,0.937972542032848,4124,0.131735361489976,8.32457884513685,9.04664427930539,9.88057710095302,8.7,454.580084821088,179,39377,1,0,0,0,9 +"8044",2012,17201,"IL","17","201",292128,0.830461304633585,18191,0.12919336729105,9.80868224526222,10.5145294831772,11.3709240167729,10.6230769230769,421.051398722206,719,170763,1,0,0,0,9 +"8045",2012,17203,"IL","17","203",38846,0.981568243834629,2339,0.136281727848427,7.75747876658418,8.43228868432579,9.30592324186991,6,303.648311806028,67,22065,1,0,0,0,9 +"8046",2012,20001,"KS","20","001",13304,0.952720986169573,833,0.134846662657847,6.72503364216684,7.24921505711439,8.2190566610606,7.12307692307692,531.842356470749,39,7333,0,0,0,0,9 +"8047",2012,20003,"KS","20","003",7925,0.978044164037855,377,0.127066246056782,5.93224518744801,6.74170069465205,7.61677580869837,6.49230769230769,458.494208494209,19,4144,0,0,0,0,9 +"8048",2012,20005,"KS","20","005",16779,0.926455688658442,1497,0.120209786042076,7.31121838441963,7.49665243816828,8.45616848957846,7.70769230769231,408.338706211047,38,9306,0,0,0,0,9 +"8049",2012,20009,"KS","20","009",27522,0.964900806627425,1635,0.136181963520093,7.39939808333135,7.90137735379262,8.9343233310549,4.49230769230769,416.070732024444,64,15382,0,0,0,0,9 +"8050",2012,20011,"KS","20","011",14877,0.944343617664852,1020,0.132015863413323,6.92755790627832,7.3132203870903,8.30052860619974,7.63846153846154,434.404865334492,35,8057,0,0,0,0,9 +"8051",2012,20013,"KS","20","013",9869,0.868578376735232,471,0.146012767250988,6.15485809401642,6.92067150424868,7.8991534833431,5.33846153846154,728.971962616822,39,5350,0,0,0,0,9 +"8052",2012,20015,"KS","20","015",65692,0.955063021372465,4064,0.126819095171406,8.30992298925832,8.99961934066053,9.82016028994637,6.20769230769231,350.951262632926,133,37897,0,0,0,0,9 +"8053",2012,20021,"KS","20","021",21206,0.930397057436575,1102,0.135810619635952,7.00488198971286,7.82923253754359,8.70001462325184,7.8,759.40916298089,91,11983,0,0,0,0,9 +"8054",2012,20027,"KS","20","027",8499,0.979644664078127,382,0.136486645487704,5.94542060860658,6.85751406254539,7.71601526664259,5.14615384615385,263.504611330698,12,4554,0,0,0,0,9 +"8055",2012,20029,"KS","20","029",9416,0.97483007646559,619,0.133283772302464,6.4281052726846,6.83947643822884,7.793999089504,4.98461538461538,442.122186495177,22,4976,0,0,0,0,9 +"8056",2012,20031,"KS","20","031",8470,0.974852420306966,408,0.148288075560803,6.01126717440416,6.88755257166462,7.77443551030296,7.01538461538462,395.256916996047,19,4807,0,0,0,0,9 +"8057",2012,20035,"KS","20","035",36281,0.915272456657755,2608,0.12615418538629,7.86633892304654,8.30844552038576,9.20873909060921,6.16923076923077,485.579752795762,99,20388,0,0,0,0,9 +"8058",2012,20037,"KS","20","037",39333,0.939440164747159,5505,0.110517885744794,8.61341204915678,8.31849832050434,9.3502762122737,6.61538461538461,372.081088016423,87,23382,0,0,0,0,9 +"8059",2012,20041,"KS","20","041",19708,0.968236249238888,1046,0.129947229551451,6.95272864462487,7.73848812249465,8.58541243039338,6.05384615384615,511.042160978281,56,10958,0,0,0,0,9 +"8060",2012,20045,"KS","20","045",113360,0.866857798165138,21315,0.098817925194072,9.96716632919931,9.41897923708751,10.5043275398109,5.12307692307692,179.661749608256,133,74028,0,0,0,0,9 +"8061",2012,20051,"KS","20","051",29100,0.963161512027491,4135,0.116460481099656,8.32724260745779,7.96415571884094,9.07669468710627,3.41538461538462,252.35531628533,45,17832,0,0,0,0,9 +"8062",2012,20055,"KS","20","055",37106,0.907319570958875,2768,0.0996065326362313,7.92588031673756,8.3999849905107,9.23552067050648,4.46923076923077,332.161940981081,69,20773,0,0,0,0,9 +"8063",2012,20057,"KS","20","057",34661,0.928882605810565,2595,0.0955540809555408,7.86134179559999,8.36264243156764,9.12685006147716,3.84615384615385,274.029264257277,53,19341,0,0,0,0,9 +"8064",2012,20059,"KS","20","059",25836,0.962068431645766,1572,0.125677349434897,7.36010397298915,8.02682357621763,8.91193433616143,7.23846153846154,371.22030237581,55,14816,0,0,0,0,9 +"8065",2012,20061,"KS","20","061",37946,0.732488272808728,5039,0.064644494808412,8.5249629286806,8.3291754420774,9.28498391497195,8.66153846153846,277.320391715053,64,23078,0,0,0,0,9 +"8066",2012,20073,"KS","20","073",6427,0.972304341061148,266,0.158705461334993,5.5834963087817,6.48463523563525,7.45703208912238,5.58461538461538,694.846554719166,24,3454,0,0,0,0,9 +"8067",2012,20079,"KS","20","079",34769,0.957289539532342,2050,0.126204377462682,7.62559507213245,8.23164217997341,9.15345250976914,5.4,333.492139113864,63,18891,0,0,0,0,9 +"8068",2012,20085,"KS","20","085",13402,0.887330249216535,607,0.134905238024176,6.4085287910595,7.40488757561612,8.2117543973752,5.62307692307692,296.936158725874,22,7409,0,0,0,0,9 +"8069",2012,20087,"KS","20","087",18858,0.974546611517658,805,0.145296425920034,6.69084227741856,7.6980291702728,8.58223158759546,6.02307692307692,449.954086317723,49,10890,0,0,0,0,9 +"8070",2012,20091,"KS","20","091",559647,0.89285388825456,28532,0.121521244641712,10.2587815433979,11.2709303339707,12.0576828399559,4.59230769230769,208.658126700534,704,337394,0,0,0,0,9 +"8071",2012,20095,"KS","20","095",7827,0.97994122907883,362,0.137983901878114,5.89164421182577,6.66057514983969,7.62803112693033,6.12307692307692,621.11801242236,26,4186,0,0,0,0,9 +"8072",2012,20099,"KS","20","099",21165,0.908150248051028,1392,0.13508150248051,7.23849684089437,7.75362354655975,8.69181854157572,7.92307692307692,607.371661535902,73,12019,0,0,0,0,9 +"8073",2012,20103,"KS","20","103",77708,0.867568332732795,4733,0.123539403922376,8.46231452990625,9.34626888920043,9.95446579730076,6.39230769230769,358.819234379889,172,47935,0,0,0,0,9 +"8074",2012,20107,"KS","20","107",9481,0.979854445733572,408,0.148296593186373,6.01126717440416,6.98564181763921,7.85010354517558,9.85384615384615,459.506031016657,24,5223,0,0,0,0,9 +"8075",2012,20111,"KS","20","111",33544,0.923592892916766,4315,0.116980682089196,8.36985260351753,8.14728825870662,9.21999362900432,5.80769230769231,273.183330849849,55,20133,0,0,0,0,9 +"8076",2012,20113,"KS","20","113",29226,0.968042154246219,1768,0.13474303702183,7.47760424319759,8.04654935728308,8.99826039301795,4.11538461538461,375.477040502277,61,16246,0,0,0,0,9 +"8077",2012,20115,"KS","20","115",12378,0.975521085797383,780,0.137340442720957,6.65929391968364,7.06390396147207,8.07433769408951,5.1,487.062404870624,32,6570,0,0,0,0,9 +"8078",2012,20117,"KS","20","117",10027,0.982946045676673,430,0.144509823476613,6.06378520868761,6.86797440897029,7.8770178956224,4.16153846153846,294.71357524406,16,5429,0,0,0,0,9 +"8079",2012,20121,"KS","20","121",32681,0.969768366941036,1500,0.131544322389156,7.3132203870903,8.3296580675694,9.14484138974349,6.30769230769231,331.285065455517,62,18715,0,0,0,0,9 +"8080",2012,20125,"KS","20","125",34483,0.877098860307978,2184,0.130789084476409,7.6889133368648,8.2147358333823,9.17055950196434,7.70769230769231,503.408495018353,96,19070,0,0,0,0,9 +"8081",2012,20133,"KS","20","133",16425,0.960669710806697,956,0.132785388127854,6.8627579130514,7.48717369421374,8.38685668968823,8.79230769230769,480.661748267382,43,8946,0,0,0,0,9 +"8082",2012,20139,"KS","20","139",16179,0.978676061561283,734,0.143952036590642,6.59850902861452,7.51643330291563,8.414717399827,7.19230769230769,401.47206423553,36,8967,0,0,0,0,9 +"8083",2012,20143,"KS","20","143",6027,0.978596316575411,232,0.141529782644765,5.44673737166631,6.50727771238501,7.39510754656249,5.38461538461538,388.872270415794,13,3343,0,0,0,0,9 +"8084",2012,20145,"KS","20","145",6865,0.927458120903132,378,0.14843408594319,5.93489419561959,6.63856778916652,7.4265490723973,4.08461538461538,327.786182551689,13,3966,0,0,0,0,9 +"8085",2012,20149,"KS","20","149",22339,0.960517480639241,1250,0.117238909530418,7.13089883029635,7.87131120332341,8.72988228482659,4.67692307692308,272.719980749178,34,12467,0,0,0,0,9 +"8086",2012,20155,"KS","20","155",64210,0.944307740227379,4174,0.13309453356175,8.33663008763715,8.85694575615902,9.76806866542839,5.44615384615385,440.007700134752,160,36363,0,0,0,0,9 +"8087",2012,20159,"KS","20","159",9988,0.958850620744894,805,0.128954745694834,6.69084227741856,6.88346258641309,7.87473912517181,4.45384615384615,516.033910799853,28,5426,0,0,0,0,9 +"8088",2012,20161,"KS","20","161",77545,0.860107034625056,20390,0.0694435489070862,9.9227998635685,8.75636755980297,10.0562944727799,4.37692307692308,121.699872411424,62,50945,0,0,0,0,9 +"8089",2012,20169,"KS","20","169",55841,0.919664762450529,3752,0.126430400601708,8.23004431012611,8.77832592863448,9.6775902130253,5.76153846153846,444.541158915693,143,32168,0,0,0,0,9 +"8090",2012,20173,"KS","20","173",504171,0.829690720013646,35370,0.119086579751711,10.4736192821995,11.0196777734783,11.9089864930031,6.86153846153846,384.995665835952,1137,295328,0,0,0,0,9 +"8091",2012,20175,"KS","20","175",23358,0.901575477352513,1940,0.0858378285812142,7.57044325205737,7.99395754757357,8.73552518573323,4.09230769230769,315.093759606517,41,13012,0,0,0,0,9 +"8092",2012,20177,"KS","20","177",179013,0.86323339645724,10958,0.134973437683297,9.30182506209836,9.92705758404856,10.8861089486996,6.17692307692308,422.816653956425,438,103591,0,0,0,0,9 +"8093",2012,20181,"KS","20","181",6122,0.972394642273767,416,0.134759882391375,6.03068526026126,6.40025744530882,7.40367029001237,3.83076923076923,318.933024064946,11,3449,0,0,0,0,9 +"8094",2012,20191,"KS","20","191",23632,0.964412660798917,1203,0.141249153689912,7.09257371597468,7.85399308722424,8.76732914779405,6.37692307692308,440.361400045555,58,13171,0,0,0,0,9 +"8095",2012,20205,"KS","20","205",9121,0.970069071373753,414,0.149764280232431,6.02586597382531,6.87523208727658,7.82204400818562,9.90769230769231,586.095392077607,29,4948,0,0,0,0,9 +"8096",2012,20209,"KS","20","209",159424,0.679157466880771,10778,0.110340977519069,9.28526229849344,9.90568513607962,10.7543860656432,8.38461538461539,468.971180964525,434,92543,0,0,0,0,9 +"8097",2012,21001,"KY","21","001",18939,0.961824805955964,1670,0.130049105021384,7.4205789054108,7.67089483136212,8.63052187672324,9.54615384615385,490.150744474244,53,10813,1,0,0,0,9 +"8098",2012,21003,"KY","21","003",20220,0.981256181998022,1249,0.128189910979228,7.13009851012558,7.87929148508227,8.68727346178784,8.03846153846154,517.694984299414,61,11783,1,0,0,0,9 +"8099",2012,21005,"KY","21","005",21702,0.968159616625196,1182,0.12925076029859,7.07496319796604,8.06337782236703,8.80732226751107,6.92307692307692,352.977286678944,46,13032,1,0,0,0,9 +"8100",2012,21007,"KY","21","007",8274,0.958423978728547,439,0.141648537587624,6.08449941307517,6.97166860472579,7.7591874385078,9.16923076923077,654.422630356766,31,4737,1,0,0,0,9 +"8101",2012,21009,"KY","21","009",42610,0.944801689744192,2424,0.129312367988735,7.7931743471892,8.59655874679698,9.43188264192342,7.9,501.557254378514,124,24723,1,0,0,0,9 +"8102",2012,21011,"KY","21","011",11783,0.97581261138929,663,0.138165153186795,6.49677499018586,7.36327958696304,8.1426451859428,10.4769230769231,529.879305269355,36,6794,1,0,0,0,9 +"8103",2012,21013,"KY","21","013",28288,0.967335972850679,1865,0.137726244343891,7.53101633207792,8.20467182895081,9.04144823549389,11.9923076923077,669.096122826931,112,16739,1,0,0,0,9 +"8104",2012,21015,"KY","21","015",123456,0.938180404354588,6840,0.114218831000518,8.8305430106166,9.81137226362832,10.5191055305868,6.89230769230769,305.939301642554,225,73544,1,0,0,0,9 +"8105",2012,21017,"KY","21","017",20050,0.925087281795511,1125,0.134214463840399,7.02553831463852,7.88495294575981,8.69550672681265,7.3,475.9020507052,55,11557,1,0,0,0,9 +"8106",2012,21019,"KY","21","019",49238,0.958812299443519,2734,0.142714976237865,7.9135210172839,8.76374072050946,9.56990114789337,9.4,447.404371584699,131,29280,1,0,0,0,9 +"8107",2012,21021,"KY","21","021",29026,0.905291807345139,2268,0.133879969682354,7.72665366484764,8.18785544369562,9.03396112463786,9.03846153846154,455.854126679463,76,16672,1,0,0,0,9 +"8108",2012,21023,"KY","21","023",8464,0.988303402646503,515,0.131734404536862,6.24416690066374,6.9782137426307,7.81116338502528,9.50769230769231,406.008932196508,20,4926,1,0,0,0,9 +"8109",2012,21025,"KY","21","025",13608,0.987066431510876,848,0.144326866549089,6.7428806357919,7.50108212425987,8.33375100695358,14.5153846153846,889.7014015844,73,8205,1,0,0,0,9 +"8110",2012,21027,"KY","21","027",20079,0.967129837143284,1053,0.148314159071667,6.95939851213398,7.76895604453833,8.65381978894806,9.71538461538461,492.058011049724,57,11584,1,0,0,0,9 +"8111",2012,21029,"KY","21","029",75906,0.97897399415066,4556,0.128948963191316,8.42420032456707,9.28767171491251,10.0609612763603,8.10769230769231,373.642037968942,173,46301,1,0,0,0,9 +"8112",2012,21031,"KY","21","031",12745,0.986347587289133,709,0.135739505688505,6.56385552653213,7.38087903556412,8.21365270303,9.03846153846154,527.383367139959,39,7395,1,0,0,0,9 +"8113",2012,21033,"KY","21","033",12988,0.936633815829997,699,0.14605789959963,6.54965074223381,7.4151751096133,8.23057721714645,8.38461538461539,652.173913043478,48,7360,1,0,0,0,9 +"8114",2012,21035,"KY","21","035",38065,0.933193222120058,6072,0.113490082753185,8.71144331907547,8.24328252304838,9.37999875481674,7.09230769230769,356.242940307585,82,23018,1,0,0,0,9 +"8115",2012,21037,"KY","21","037",91659,0.956087236387043,7167,0.126905159340599,8.87724243599392,9.30900854377288,10.2489195305288,6.95384615384615,428.722621845122,239,55747,1,0,0,0,9 +"8116",2012,21039,"KY","21","039",5028,0.976929196499602,283,0.137828162291169,5.64544689764324,6.39692965521615,7.25770767716004,8.01538461538462,599.858856739591,17,2834,1,0,0,0,9 +"8117",2012,21041,"KY","21","041",10877,0.966259078790108,664,0.126781281603383,6.49828214947643,7.20711885620776,8.04302088529828,10.2846153846154,582.127123977344,37,6356,1,0,0,0,9 +"8118",2012,21043,"KY","21","043",27633,0.987623493648898,1988,0.132993160351753,7.59488438721652,8.16905314992734,9.00601857490256,12.5461538461538,477.282588483233,77,16133,1,0,0,0,9 +"8119",2012,21045,"KY","21","045",16029,0.98502713831181,881,0.139621935242373,6.78105762593618,7.61332497954064,8.44333134281778,8.42307692307692,556.950966473736,51,9157,1,0,0,0,9 +"8120",2012,21047,"KY","21","047",74975,0.745728576192064,8833,0.0886428809603201,9.08624998674513,8.99751836973384,9.9259826303635,9.36923076923077,403.687008006459,180,44589,1,0,0,0,9 +"8121",2012,21049,"KY","21","049",35694,0.940802375749426,1971,0.136689639715358,7.58629630715272,8.51458980554612,9.29569203907569,8.2,582.734151040932,124,21279,1,0,0,0,9 +"8122",2012,21051,"KY","21","051",21530,0.951045053413841,1446,0.120808174640037,7.27655640271871,8.08240225392624,8.70814407490825,14.0692307692308,698.375358376829,95,13603,1,0,0,0,9 +"8123",2012,21053,"KY","21","053",10282,0.984244310445439,581,0.136938338844583,6.36475075685191,7.12044437239249,7.98412195870293,10.9615384615385,818.972871523631,48,5861,1,0,0,0,9 +"8124",2012,21055,"KY","21","055",9222,0.981999566254608,483,0.144545651702451,6.18001665365257,6.99668148817654,7.84698098213879,7.72307692307692,606.520090978014,32,5276,1,0,0,0,9 +"8125",2012,21057,"KY","21","057",6849,0.964958388085852,408,0.1419185282523,6.01126717440416,6.66057514983969,7.57814547241947,10.8384615384615,445.8431681091,17,3813,1,0,0,0,9 +"8126",2012,21059,"KY","21","059",97871,0.93277886197137,6147,0.128945244250084,8.72371943690701,9.39024233725137,10.2732218506885,7.03846153846154,430.648081418854,245,56891,1,0,0,0,9 +"8127",2012,21061,"KY","21","061",12106,0.975962332727573,745,0.144721625640178,6.61338421837956,7.32646561384032,8.16876982367527,10.0153846153846,547.235023041475,38,6944,1,0,0,0,9 +"8128",2012,21063,"KY","21","063",7633,0.959386872789205,482,0.139132713218918,6.1779441140506,7.04141166379481,7.5569505720129,14.4538461538462,479.266513857054,23,4799,1,0,0,0,9 +"8129",2012,21065,"KY","21","065",14512,0.992557883131202,774,0.13747243660419,6.65157187358973,7.54327334670545,8.3742461820963,10.0461538461538,696.540515439981,60,8614,1,0,0,0,9 +"8130",2012,21067,"KY","21","067",306062,0.800220216818815,32993,0.112052459959093,10.4040506967356,10.6096003154861,11.5009034897429,5.86153846153846,304.963277338687,600,196745,1,0,0,0,9 +"8131",2012,21069,"KY","21","069",14527,0.97886693742686,785,0.135540717285055,6.66568371778241,7.57095858316901,8.35396813031327,9.1,593.824228028504,50,8420,1,0,0,0,9 +"8132",2012,21071,"KY","21","071",39142,0.985539829339329,2424,0.145521434775944,7.7931743471892,8.55294636112206,9.42027709580311,11.6538461538462,801.248260447856,190,23713,1,0,0,0,9 +"8133",2012,21073,"KY","21","073",49455,0.862642806591851,3336,0.141320392275806,8.11252776347864,8.75494945509829,9.64419855458556,6.71538461538462,443.708609271523,134,30200,1,0,0,0,9 +"8134",2012,21075,"KY","21","075",6557,0.733567180112856,399,0.147475979868842,5.98896141688986,6.59304453414244,7.52023455647463,11.3307692307692,916.710319539026,35,3818,1,0,0,0,9 +"8135",2012,21077,"KY","21","077",8551,0.976026195766577,521,0.124780727400304,6.25575004175337,7.02997291170639,7.82404601085629,9.39230769230769,560.224089635854,28,4998,1,0,0,0,9 +"8136",2012,21079,"KY","21","079",17008,0.970543273753528,868,0.14052210724365,6.76619171466035,7.71378461659875,8.53483662658883,8.5,571.428571428571,58,10150,1,0,0,0,9 +"8137",2012,21081,"KY","21","081",24522,0.981078215479977,1526,0.114998776608759,7.3304052118444,8.12976444579417,8.87094386383772,9.08461538461538,559.127760693318,80,14308,1,0,0,0,9 +"8138",2012,21083,"KY","21","083",37566,0.936964276207209,2231,0.128680189533088,7.71020519443253,8.4156033356546,9.27509761919146,8.28461538461539,496.31310266591,105,21156,1,0,0,0,9 +"8139",2012,21085,"KY","21","085",25797,0.981587006241036,1510,0.137923014303989,7.31986492980897,8.09681747057232,8.91435727448502,10.3076923076923,696.543566828756,106,15218,1,0,0,0,9 +"8140",2012,21087,"KY","21","087",11304,0.969656758669498,571,0.144373673036093,6.34738920965601,7.2291138777933,8.09529377684465,8.35384615384615,551.048522883821,36,6533,1,0,0,0,9 +"8141",2012,21089,"KY","21","089",36698,0.981088887677803,1959,0.14398604828601,7.58018941794454,8.46653127661401,9.2987174825936,9.96153846153846,532.115275946506,113,21236,1,0,0,0,9 +"8142",2012,21091,"KY","21","091",8645,0.978368999421631,459,0.133603238866397,6.12905021006055,7.03085747611612,7.79605797431612,7.20769230769231,581.278813389457,29,4989,1,0,0,0,9 +"8143",2012,21093,"KY","21","093",108280,0.828001477650536,8680,0.114250092353158,9.0687768076544,9.55725786645893,10.3795043165952,8.20769230769231,388.056483777083,252,64939,1,0,0,0,9 +"8144",2012,21095,"KY","21","095",28686,0.969357874921565,1793,0.149550303283832,7.49164547360513,8.18004072349016,9.07840770071536,14.1615384615385,845.530351624001,145,17149,1,0,0,0,9 +"8145",2012,21097,"KY","21","097",18612,0.967279174725983,1020,0.140232108317215,6.92755790627832,7.79893331004122,8.61122983334262,7.93076923076923,514.563998897363,56,10883,1,0,0,0,9 +"8146",2012,21099,"KY","21","099",18399,0.945105712266971,1111,0.130061416381325,7.01301578963963,7.70210434005105,8.57640505104808,8.33846153846154,638.737554010896,68,10646,1,0,0,0,9 +"8147",2012,21101,"KY","21","101",46436,0.908002411921785,2801,0.138254802308554,7.93773177526011,8.66544076787644,9.56395062454207,7.56923076923077,464.647192306307,129,27763,1,0,0,0,9 +"8148",2012,21103,"KY","21","103",15335,0.960547766547114,782,0.144179980436909,6.66185474054531,7.5973963202128,8.42792472365806,7.34615384615385,469.116497263487,42,8953,1,0,0,0,9 +"8149",2012,21105,"KY","21","105",4747,0.895512955550874,241,0.143459026753739,5.48479693349065,6.29526600143965,7.20489251020467,8.16153846153846,453.172205438066,12,2648,1,0,0,0,9 +"8150",2012,21107,"KY","21","107",46618,0.917328070702304,2636,0.140310609635763,7.8770178956224,8.6769282495374,9.53604051161548,7.75384615384615,551.296093464768,151,27390,1,0,0,0,9 +"8151",2012,21109,"KY","21","109",13303,0.993835976847328,799,0.1383898368789,6.68336094576627,7.50108212425987,8.31164394850298,11.8307692307692,646.766169154229,52,8040,1,0,0,0,9 +"8152",2012,21111,"KY","21","111",751802,0.749802474587724,50738,0.129865310281164,10.8344304157426,11.4697569695689,12.3676003339108,7.98461538461538,462.562192317445,2116,457452,1,0,0,0,9 +"8153",2012,21113,"KY","21","113",49469,0.946956679940973,3539,0.119266611413208,8.17159948034546,8.80207133653528,9.63082544684073,6.71538461538462,316.509546336317,93,29383,1,0,0,0,9 +"8154",2012,21115,"KY","21","115",23419,0.988727101925787,1435,0.142832742644861,7.26892012819372,8.0507033814703,8.88253050843362,10.2076923076923,800.056641178136,113,14124,1,0,0,0,9 +"8155",2012,21117,"KY","21","117",161774,0.930532718483811,10218,0.123202739624414,9.23190614989074,9.95963156315417,10.8130758733506,7.43076923076923,430.925733431562,427,99089,1,0,0,0,9 +"8156",2012,21119,"KY","21","119",16122,0.987284456022826,1131,0.146259769259397,7.03085747611612,7.64060382639363,8.50187648730434,13.8692307692308,900.627403359644,89,9882,1,0,0,0,9 +"8157",2012,21121,"KY","21","121",31493,0.980535357063474,2186,0.124472104912203,7.68982866873648,8.30028018985266,9.14580185083861,12.8769230769231,612.008601201963,111,18137,1,0,0,0,9 +"8158",2012,21123,"KY","21","123",14057,0.958526001280501,856,0.133741196556876,6.75227037614174,7.42892719480227,8.30844552038576,8.63076923076923,400.679941719281,33,8236,1,0,0,0,9 +"8159",2012,21125,"KY","21","125",59542,0.981156158677908,3620,0.12994188975849,8.19422930481982,9.00614123666291,9.81257767717629,10.2461538461538,557.43858371383,199,35699,1,0,0,0,9 +"8160",2012,21127,"KY","21","127",15881,0.99149927586424,986,0.144071532019394,6.89365635460264,7.62070508683826,8.48115142006897,10.6461538461538,673.471535304641,64,9503,1,0,0,0,9 +"8161",2012,21129,"KY","21","129",7582,0.97085201793722,446,0.139804800844104,6.10031895202006,6.92362862813843,7.64300363556072,12.7076923076923,620.496397117694,31,4996,1,0,0,0,9 +"8162",2012,21131,"KY","21","131",11147,0.992374629945277,705,0.141562752310039,6.55819780281227,7.26262860097424,8.14031554015999,14.3384615384615,860.685630926331,59,6855,1,0,0,0,9 +"8163",2012,21133,"KY","21","133",24009,0.990961722687326,1332,0.151276604606606,7.19443685110033,8.03203531439882,8.90734159541251,13.5384615384615,807.223970447394,118,14618,1,0,0,0,9 +"8164",2012,21135,"KY","21","135",13840,0.991329479768786,815,0.13764450867052,6.70318811324086,7.50988306115491,8.32675881451173,11.7,688.298918387414,56,8136,1,0,0,0,9 +"8165",2012,21137,"KY","21","137",24412,0.968376208422087,1384,0.129567425856136,7.23273313617761,8.07899825868515,8.86897618927454,10.3461538461538,538.586918007228,76,14111,1,0,0,0,9 +"8166",2012,21139,"KY","21","139",9438,0.985272303454122,507,0.157342657342657,6.22851100359118,6.99209642741589,7.93020620668468,9.75384615384615,452.980612429788,25,5519,1,0,0,0,9 +"8167",2012,21141,"KY","21","141",26731,0.91870861546519,1495,0.131831955407579,7.30988148582479,8.0734029689864,8.95027346655738,7.58461538461538,444.909709500131,68,15284,1,0,0,0,9 +"8168",2012,21143,"KY","21","143",8446,0.93701160312574,409,0.166469334596259,6.0137151560428,6.96508034560141,7.63723438878947,9.25384615384615,491.545418796697,25,5086,1,0,0,0,9 +"8169",2012,21145,"KY","21","145",65609,0.868859455257663,3571,0.143776006340594,8.18060094759445,8.9947928972836,9.88888140014677,8.01538461538462,565.442843369727,217,38377,1,0,0,0,9 +"8170",2012,21147,"KY","21","147",18062,0.929299080943417,1188,0.120806112279925,7.08002649992259,7.90581031265893,8.48425669116997,13.2538461538462,758.116303960043,85,11212,1,0,0,0,9 +"8171",2012,21149,"KY","21","149",9478,0.985967503692762,497,0.131884363789829,6.20859002609663,7.07326971745971,7.89878235697031,7.67692307692308,672.520082196899,36,5353,1,0,0,0,9 +"8172",2012,21151,"KY","21","151",85418,0.934440047765108,10703,0.112013861247044,9.27827935498438,9.29330189269053,10.1965675300495,6.79230769230769,366.517132767013,192,52385,1,0,0,0,9 +"8173",2012,21153,"KY","21","153",13066,0.992499617327415,782,0.133782335833461,6.66185474054531,7.49831587076698,8.27664912542186,17.2538461538462,656.482767327358,52,7921,1,0,0,0,9 +"8174",2012,21155,"KY","21","155",19929,0.904761904761905,1113,0.122233930453109,7.01481435127554,7.86863689418417,8.60593640125063,8.90769230769231,469.286851588033,56,11933,1,0,0,0,9 +"8175",2012,21157,"KY","21","157",31264,0.989700614124872,1671,0.149692937563971,7.42117752859539,8.22871079879369,9.11327865913305,8.13076923076923,489.10626945309,88,17992,1,0,0,0,9 +"8176",2012,21159,"KY","21","159",12734,0.923119208418407,814,0.123998743521282,6.70196036600254,7.54908271081229,8.14409846333852,9.18461538461538,727.802037845706,60,8244,1,0,0,0,9 +"8177",2012,21161,"KY","21","161",17463,0.919773234839375,1004,0.138750501059383,6.91174730025167,7.7106533235012,8.55410354543633,9.5,541.285306564315,55,10161,1,0,0,0,9 +"8178",2012,21163,"KY","21","163",29257,0.939945995830058,1967,0.116108965375808,7.58426481838906,8.25816336153762,9.0808010006212,9.81538461538462,380.292882279487,67,17618,1,0,0,0,9 +"8179",2012,21165,"KY","21","165",6337,0.9693861448635,425,0.143916679816948,6.05208916892442,6.63594655568665,7.49776170062257,11.7230769230769,448.053766451974,16,3571,1,0,0,0,9 +"8180",2012,21167,"KY","21","167",21333,0.947499179674682,1129,0.141658463413491,7.02908756414966,7.86557175768479,8.74528448245438,8.3,524.375256042605,64,12205,1,0,0,0,9 +"8181",2012,21169,"KY","21","169",9973,0.975634212373408,600,0.136468464855109,6.39692965521615,7.04925484125584,7.96762673933382,8,494.437577255871,28,5663,1,0,0,0,9 +"8182",2012,21171,"KY","21","171",10845,0.971230982019364,602,0.138681420009221,6.40025744530882,7.1693500166706,8.03527891114467,7.26923076923077,712.204596956944,44,6178,1,0,0,0,9 +"8183",2012,21173,"KY","21","173",26870,0.961443989579457,1623,0.128656494231485,7.39203156751459,8.26770566476243,9.02220192986066,8.9,509.886829996269,82,16082,1,0,0,0,9 +"8184",2012,21175,"KY","21","175",13538,0.949844881075491,885,0.138868370512631,6.78558764500793,7.5963923040642,8.19284713459287,10.7,440.47887960244,39,8854,1,0,0,0,9 +"8185",2012,21177,"KY","21","177",31387,0.94561442635486,2036,0.135884283302004,7.61874237767041,8.31139827843664,9.09178203585205,9.85384615384615,515.21232170942,95,18439,1,0,0,0,9 +"8186",2012,21179,"KY","21","179",44401,0.936465394923538,2590,0.12855566316074,7.85941315469358,8.6557370008643,9.50755189464409,8.32307692307692,463.433932406465,123,26541,1,0,0,0,9 +"8187",2012,21181,"KY","21","181",7022,0.987895186556537,382,0.132725719168328,5.94542060860658,6.82328612235569,7.62364194651157,8.26923076923077,645.802285146547,26,4026,1,0,0,0,9 +"8188",2012,21183,"KY","21","183",24029,0.981522327187981,1399,0.130800282991385,7.24351297466548,7.98820359702258,8.83185793519791,8.73846153846154,598.365440747227,82,13704,1,0,0,0,9 +"8189",2012,21185,"KY","21","185",62119,0.928894541122684,3002,0.125533250696244,8.00703401219341,9.16230492293763,9.73483218650599,5.89230769230769,302.180012950572,112,37064,1,0,0,0,9 +"8190",2012,21187,"KY","21","187",10762,0.981509013194574,586,0.143932354580933,6.37331978957701,7.24636808010246,8.04398443122155,6.56153846153846,461.489497135582,29,6284,1,0,0,0,9 +"8191",2012,21189,"KY","21","189",4685,0.990608324439701,267,0.150266808964781,5.58724865840025,6.35610766069589,7.2283884515736,12.8615384615385,1196.51921682379,33,2758,1,0,0,0,9 +"8192",2012,21191,"KY","21","191",14555,0.988869804191,939,0.13775334936448,6.84481547920826,7.54115245513631,8.37609035043824,8.89230769230769,350.48049745619,31,8845,1,0,0,0,9 +"8193",2012,21193,"KY","21","193",28296,0.97289369522194,1761,0.144119310149844,7.47363710849621,8.25712628599743,9.09043007530363,12.6,767.117013968399,134,17468,1,0,0,0,9 +"8194",2012,21195,"KY","21","195",64605,0.984598715269716,4227,0.144261280086681,8.34924780056679,9.09144421703233,9.90233689077873,9.72307692307692,772.13235107972,305,39501,1,0,0,0,9 +"8195",2012,21197,"KY","21","197",12470,0.988372093023256,783,0.134643143544507,6.6631326959908,7.41637847919293,8.22416351263786,10.9692307692308,864.514386059705,64,7403,1,0,0,0,9 +"8196",2012,21199,"KY","21","199",63528,0.977317088527893,3605,0.137215086261176,8.19007704971905,9.0067543198775,9.84940088663236,9.50769230769231,622.188703638861,231,37127,1,0,0,0,9 +"8197",2012,21203,"KY","21","203",17063,0.991912324913556,1017,0.134267127703217,6.92461239604856,7.73805229768932,8.54071438645758,10.2615384615385,646.637485077596,65,10052,1,0,0,0,9 +"8198",2012,21205,"KY","21","205",23808,0.969296034946237,3837,0.106770833333333,8.25244609024695,7.85593219971861,8.90734159541251,8.37692307692308,363.636363636364,52,14300,1,0,0,0,9 +"8199",2012,21207,"KY","21","207",17648,0.98356754306437,980,0.14143245693563,6.88755257166462,7.69393732550927,8.53679972105516,10.3923076923077,584.737363726462,59,10090,1,0,0,0,9 +"8200",2012,21209,"KY","21","209",48976,0.924432375040836,3087,0.114811336164652,8.03495502450216,8.93049418529218,9.62245002280302,6.57692307692308,376.192395539433,112,29772,1,0,0,0,9 +"8201",2012,21211,"KY","21","211",43704,0.899780340472268,2506,0.128134724510342,7.82644313545601,8.71243097347674,9.53567943560506,6.27692307692308,334.653998538293,87,25997,1,0,0,0,9 +"8202",2012,21213,"KY","21","213",17552,0.887477210574294,1077,0.125227894257065,6.98193467715639,7.70255611326858,8.55043452519604,8.57692307692308,467.153284671533,48,10275,1,0,0,0,9 +"8203",2012,21215,"KY","21","215",17486,0.972435090929887,845,0.129818140226467,6.73933662735717,7.90691548867859,8.58746524440157,7.07692307692308,431.115276476101,46,10670,1,0,0,0,9 +"8204",2012,21217,"KY","21","217",25035,0.931615737966846,2113,0.128340323547034,7.65586401761606,7.89729647259588,8.90490157793514,9.64615384615385,609.243697478992,87,14280,1,0,0,0,9 +"8205",2012,21219,"KY","21","219",12617,0.90948719980978,768,0.113022113022113,6.64378973314767,7.34729970074316,8.16763571524637,7.64615384615385,550.847457627119,39,7080,1,0,0,0,9 +"8206",2012,21221,"KY","21","221",14412,0.908340271995559,688,0.150985290036081,6.53378883793334,7.46851327149634,8.32142158689788,9.41538461538462,506.798516687268,41,8090,1,0,0,0,9 +"8207",2012,21223,"KY","21","223",8843,0.979871084473595,483,0.129707112970711,6.18001665365257,7.09672137849476,7.84893372636407,9.07692307692308,444.015444015444,23,5180,1,0,0,0,9 +"8208",2012,21225,"KY","21","225",15092,0.85687781606149,1641,0.131990458521071,7.40306109109009,7.4205789054108,8.3584318990313,7.83846153846154,498.724193922524,43,8622,1,0,0,0,9 +"8209",2012,21227,"KY","21","227",117436,0.86364487891277,14190,0.108731564426581,9.56029277015409,9.56022229550731,10.5046016776491,6.98461538461538,364.628274000056,262,71854,1,0,0,0,9 +"8210",2012,21229,"KY","21","229",11813,0.925759756200796,797,0.131973249809532,6.68085467879022,7.26122509197192,8.13593277200489,7.51538461538462,422.432629278951,29,6865,1,0,0,0,9 +"8211",2012,21231,"KY","21","231",20816,0.971704458109147,1276,0.144167947732513,7.15148546390474,7.87092959675514,8.71555212590782,13.0307692307692,534.056363486977,65,12171,1,0,0,0,9 +"8212",2012,21233,"KY","21","233",13461,0.941683381620979,836,0.141519946512146,6.7286286130847,7.46851327149634,8.28324144138542,7.13846153846154,622.35499128703,50,8034,1,0,0,0,9 +"8213",2012,21235,"KY","21","235",35784,0.982645875251509,2880,0.127263581488934,7.96554557312999,8.37539918579835,9.26738211234338,10.7076923076923,759.407952017026,157,20674,1,0,0,0,9 +"8214",2012,21237,"KY","21","237",7197,0.993191607614284,364,0.137835209114909,5.89715386763674,6.7428806357919,7.66246781520024,14.2846153846154,930.688219446486,38,4083,1,0,0,0,9 +"8215",2012,21239,"KY","21","239",25114,0.932985585729075,1353,0.150115473441109,7.21007962817079,8.09285102753838,8.95338147216724,5.39230769230769,398.856611048328,60,15043,1,0,0,0,9 +"8216",2012,25001,"MA","25","001",214854,0.948900183380342,10566,0.168733186256714,9.26539657772426,9.932220771359,11.0172347287885,8.40769230769231,361.686521486203,429,118611,1,0,0,0,9 +"8217",2012,25003,"MA","25","003",130321,0.943746594946325,8543,0.154602865232771,9.05286751315162,9.55979934329461,10.5655309880447,7.39230769230769,367.43885896406,279,75931,1,0,0,0,9 +"8218",2012,25005,"MA","25","005",551204,0.920328952620083,38189,0.127678681577057,10.5503027950116,11.194687960473,12.0445473398718,8.76923076923077,341.900318527641,1141,333723,1,0,0,0,9 +"8219",2012,25007,"MA","25","007",16838,0.926772775864117,724,0.174486281031001,6.58479139238572,7.61381868480863,8.54012816269873,9.22307692307692,258.002866698519,27,10465,1,0,0,0,9 +"8220",2012,25009,"MA","25","009",757409,0.885749971283679,48377,0.133528912384194,10.7867797731467,11.4680745318323,12.3638624101348,7.11538461538461,280.598255824238,1269,452248,1,0,0,0,9 +"8221",2012,25011,"MA","25","011",71714,0.960035697353376,4321,0.17435926039546,8.37124213593193,9.04144823549389,10.0347350891458,6.10769230769231,314.682973642511,141,44807,1,0,0,0,9 +"8222",2012,25013,"MA","25","013",467009,0.851666670235477,35524,0.128006098383543,10.4779638033784,10.9216125902916,11.8618907658389,8.60769230769231,332.494804768676,912,274290,1,0,0,0,9 +"8223",2012,25015,"MA","25","015",160497,0.906110394586815,23992,0.133074138457417,10.0854757204288,9.70467069321298,10.872845005347,5.83076923076923,219.936218496636,220,100029,1,0,0,0,9 +"8224",2012,25017,"MA","25","017",1543163,0.831996360721453,101732,0.122416750531214,11.5300971834785,12.2489788665406,13.1022565838543,5.43076923076923,214.038204780533,2060,962445,1,0,0,0,9 +"8225",2012,25021,"MA","25","021",682984,0.830401590666838,39033,0.130880079181943,10.5721627211716,11.4083424247778,12.268084539933,5.71538461538462,239.135031094845,984,411483,1,0,0,0,9 +"8226",2012,25023,"MA","25","023",499545,0.879021909938044,29007,0.138834339248716,10.2752924591517,11.0695403973618,11.9245846832417,7.03846153846154,270.753235501164,800,295472,1,0,0,0,9 +"8227",2012,25025,"MA","25","025",751371,0.63911835830768,88460,0.0971410927491213,11.3903057514223,11.4736751513789,12.4663269933806,6.16923076923077,245.875444413374,1231,500660,1,0,0,0,9 +"8228",2012,25027,"MA","25","027",807047,0.893356892473425,54689,0.128203190148777,10.9094178712952,11.5741240396912,12.4130258374457,7.21538461538462,294.995488304297,1445,489838,1,0,0,0,9 +"8229",2012,24001,"MD","24","001",73966,0.901765676121461,6760,0.129546007625125,8.81877816903701,9.08273424737104,9.90847509404717,8.76923076923077,386.525539899773,172,44499,1,0,0,0,9 +"8230",2012,24003,"MD","24","003",550476,0.784871638363889,36547,0.125335164475835,10.5063543824659,11.2053127570296,12.0515393925311,5.92307692307692,300.584795321637,1028,342000,1,0,0,0,9 +"8231",2012,24005,"MD","24","005",818218,0.657957903639372,57420,0.130787882935844,10.9581479536751,11.5229550006074,12.4658026742124,7.24615384615385,349.039077774262,1721,493068,1,0,0,0,9 +"8232",2012,24009,"MD","24","009",89746,0.835491275377176,5161,0.129376239609565,8.54888563814873,9.32767886439342,10.2176411421937,6.18461538461538,315.771979391723,171,54153,1,0,0,0,9 +"8233",2012,24011,"MD","24","011",32636,0.830003676921191,2049,0.130653266331658,7.6251071482389,8.29279885820037,9.19674841845672,7.63076923076923,420.146273146947,81,19279,1,0,0,0,9 +"8234",2012,24013,"MD","24","013",167085,0.942843462908101,10215,0.132591196097795,9.23161250725172,9.95322964443094,10.8165530890546,5.81538461538462,331.049426682584,330,99683,1,0,0,0,9 +"8235",2012,24015,"MD","24","015",101780,0.912428767930831,6426,0.132717626252702,8.7681075396758,9.48963738789352,10.3434507010519,8.21538461538461,401.95140926109,248,61699,1,0,0,0,9 +"8236",2012,24017,"MD","24","017",150700,0.511964167219642,9801,0.113676177836762,9.19023970026918,9.98644907325047,10.7872550927047,6.58461538461538,327.646957717429,305,93088,1,0,0,0,9 +"8237",2012,24019,"MD","24","019",32483,0.695132838715636,1910,0.147831173229074,7.55485852104068,8.18674278711352,9.20018902091981,10.7153846153846,478.494337817002,90,18809,1,0,0,0,9 +"8238",2012,24021,"MD","24","021",239705,0.849640182724599,14243,0.123101312029369,9.56402083693459,10.4078020246865,11.2059654275629,6.02307692307692,263.928211526465,385,145873,1,0,0,0,9 +"8239",2012,24023,"MD","24","023",29976,0.982152388577529,1899,0.14595009340806,7.54908271081229,8.18729927015515,9.08091482453572,8.17692307692308,341.830822711472,59,17260,1,0,0,0,9 +"8240",2012,24025,"MD","24","025",248609,0.826985346467747,15057,0.130586583751996,9.61959827832304,10.3799080495779,11.2455687589797,6.84615384615385,314.200118240214,473,150541,1,0,0,0,9 +"8241",2012,24027,"MD","24","027",299223,0.637534547812167,15760,0.12338623702055,9.66523036341187,10.6615559934796,11.4471381644321,4.94615384615385,171.874575072748,316,183855,1,0,0,0,9 +"8242",2012,24029,"MD","24","029",19987,0.828738680142092,1623,0.146895482063341,7.39203156751459,7.51697722460432,8.65207367361006,7.54615384615385,458.963282937365,51,11112,1,0,0,0,9 +"8243",2012,24031,"MD","24","031",1005310,0.644963245168157,54140,0.12635405994171,10.8993285631683,11.8649476013683,12.6724603702656,5.1,169.508312239507,1044,615899,1,0,0,0,9 +"8244",2012,24033,"MD","24","033",882787,0.265693763048164,70251,0.118499706044606,11.1598298219701,11.7155968849204,12.5825757066363,7.19230769230769,319.885465574188,1783,557387,1,0,0,0,9 +"8245",2012,24035,"MD","24","035",48506,0.910691460850204,2533,0.140869170824228,7.83715965000168,8.70566247879643,9.56703531571492,6.25384615384615,301.458216489063,86,28528,1,0,0,0,9 +"8246",2012,24037,"MD","24","037",108847,0.812305346036179,7556,0.112295240107674,8.9300972286214,9.5645121856968,10.4037172370887,6.12307692307692,328.18124073682,217,66122,1,0,0,0,9 +"8247",2012,24039,"MD","24","039",26044,0.551528183074796,3503,0.124481646444479,8.16137502319749,7.98684490116138,8.86644061952617,11.1461538461538,383.831114309704,64,16674,1,0,0,0,9 +"8248",2012,24041,"MD","24","041",37995,0.844558494538755,1816,0.149519673641269,7.50439155916124,8.27410200229233,9.27911988737101,7.10769230769231,293.714509496769,60,20428,1,0,0,0,9 +"8249",2012,24043,"MD","24","043",149090,0.866033939231337,9433,0.125581863304045,9.15196945864985,9.89993123633335,10.6602431343062,7.71538461538462,412.989802584231,373,90317,1,0,0,0,9 +"8250",2012,24045,"MD","24","045",100593,0.701480222281869,10636,0.122115852991759,9.27199975236291,9.32607687045878,10.3399990290496,9.29230769230769,377.364791530999,226,59889,1,0,0,0,9 +"8251",2012,24047,"MD","24","047",51578,0.838593974175036,2601,0.157353910582031,7.86365126544865,8.58429093494873,9.58575855873205,12.8307692307692,443.889582466362,128,28836,1,0,0,0,9 +"8252",2012,24510,"MD","24","510",623035,0.316661182758593,53816,0.117709277969937,10.8933260997054,11.2265092576397,12.2539671706394,10.0230769230769,612.778639418545,2418,394596,1,0,0,0,9 +"8253",2012,23001,"ME","23","001",107517,0.943460103983556,6906,0.134099723764614,8.84014587794994,9.50844296175585,10.3961390223232,7.46923076923077,404.939645445975,262,64701,0,0,0,0,9 +"8254",2012,23003,"ME","23","003",70786,0.964724663068968,3950,0.159480688271692,8.28147085789517,8.98732181285012,9.93124862332152,8.98461538461538,440.947183784837,181,41048,0,0,0,0,9 +"8255",2012,23005,"ME","23","005",283742,0.941806288811667,17559,0.14207977669855,9.77332191795933,10.5133889844928,11.4000590727893,5.76923076923077,280.257540126487,491,175196,0,0,0,0,9 +"8256",2012,23007,"ME","23","007",30648,0.983294179065518,2310,0.156290785695641,7.74500280351584,8.0845624152353,9.13841463240459,8.34615384615385,324.318381706245,59,18192,0,0,0,0,9 +"8257",2012,23009,"ME","23","009",54494,0.976621279406907,3031,0.17431276837817,8.0166478770578,8.73343296641365,9.72118599554218,8.42307692307692,405.216013649382,133,32822,0,0,0,0,9 +"8258",2012,23011,"ME","23","011",121610,0.974886933640326,7329,0.153317983718444,8.89959435992585,9.60150369537349,10.535583457776,6.90769230769231,365.101687581134,270,73952,0,0,0,0,9 +"8259",2012,23013,"ME","23","013",39613,0.981243531164012,1840,0.169010173427915,7.51752085060303,8.44848599340645,9.35253413767936,6.66923076923077,361.181579739433,84,23257,0,0,0,0,9 +"8260",2012,23015,"ME","23","015",34155,0.981964573268921,1493,0.170604596691553,7.30854279753919,8.22335889947926,9.19553125632248,7.09230769230769,413.671854801179,80,19339,0,0,0,0,9 +"8261",2012,23017,"ME","23","017",57486,0.981004070556309,2871,0.161239258254184,7.96241568012106,8.81224801819743,9.75272280064639,9.35384615384615,359.775877322324,122,33910,0,0,0,0,9 +"8262",2012,23019,"ME","23","019",153392,0.96467873161573,13606,0.140548398873475,9.51826615090501,9.79272357555127,10.7740065601641,7.46923076923077,403.566599053415,382,94656,0,0,0,0,9 +"8263",2012,23021,"ME","23","021",17269,0.978342695002606,725,0.177948925820835,6.58617165485467,7.56423847517049,8.51599247083972,9.13076923076923,494.749596122779,49,9904,0,0,0,0,9 +"8264",2012,23023,"ME","23","023",35124,0.97468967088031,1724,0.157015146338686,7.45240245122364,8.38617292897783,9.29284159348793,6.36923076923077,298.013245033113,63,21140,0,0,0,0,9 +"8265",2012,23025,"ME","23","025",51821,0.980876478647652,2611,0.156423071727678,7.86748856869913,8.78339623219089,9.65278008287571,9.64615384615385,394.375303054792,122,30935,0,0,0,0,9 +"8266",2012,23027,"ME","23","027",38934,0.98186674885704,2043,0.169543329737504,7.62217459481762,8.44827174594982,9.38025190869346,7.96923076923077,359.587557404038,83,23082,0,0,0,0,9 +"8267",2012,23029,"ME","23","029",32553,0.931711363008018,1592,0.164869597272141,7.37274636640433,8.18507147753228,9.13798470978404,9.94615384615385,414.535666218035,77,18575,0,0,0,0,9 +"8268",2012,23031,"ME","23","031",198950,0.97394822819804,10880,0.151892435285248,9.29468152040993,10.1133432095234,11.0235677478195,6.66923076923077,306.751016268611,369,120293,0,0,0,0,9 +"8269",2012,26001,"MI","26","001",10571,0.986567022987418,344,0.197994513291079,5.8406416573734,6.74405918631135,7.89506349809157,12.5615384615385,534.266764922623,29,5428,1,0,0,0,9 +"8270",2012,26003,"MI","26","003",9456,0.873413705583756,465,0.17586717428088,6.14203740558736,6.9782137426307,7.77233157516961,11.8384615384615,455.42126466982,26,5709,1,0,0,0,9 +"8271",2012,26005,"MI","26","005",111506,0.965122953024949,6220,0.136405215862824,8.73552518573323,9.53921237125283,10.3889030563649,7.26923076923077,356.840729062524,232,65015,1,0,0,0,9 +"8272",2012,26007,"MI","26","007",29168,0.980732309380143,1579,0.157192814042787,7.36454701425564,8.04076899436758,9.03073512267646,9.58461538461538,436.83801089103,73,16711,1,0,0,0,9 +"8273",2012,26009,"MI","26","009",23251,0.978667584189927,967,0.167820738892951,6.87419849545329,7.72973533138505,8.7551071216339,11.4307692307692,464.274472773056,59,12708,1,0,0,0,9 +"8274",2012,26011,"MI","26","011",15500,0.976193548387097,803,0.165870967741935,6.68835471394676,7.38212436573751,8.37539918579835,12.6615384615385,539.507699224458,48,8897,1,0,0,0,9 +"8275",2012,26013,"MI","26","013",8725,0.760343839541547,489,0.14865329512894,6.19236248947487,7.01481435127554,7.68202151082687,13.8923076923077,420.248328557784,22,5235,1,0,0,0,9 +"8276",2012,26015,"MI","26","015",59025,0.981313002964845,3127,0.146378653113088,8.04782935745784,8.85978949474541,9.72865786150047,6.75384615384615,347.668575435316,119,34228,1,0,0,0,9 +"8277",2012,26017,"MI","26","017",106980,0.962759394279305,6841,0.145401009534492,8.830689198761,9.43500276925966,10.3674731094563,8.63076923076923,384.566689877825,243,63188,1,0,0,0,9 +"8278",2012,26019,"MI","26","019",17319,0.970552572319418,746,0.160575090940585,6.61472560020376,7.55013534248843,8.48260174664662,10.3692307692308,402.269210933471,39,9695,1,0,0,0,9 +"8279",2012,26021,"MI","26","021",156669,0.807600737861351,9708,0.139727706183099,9.18070556684649,9.81901839590968,10.731143772668,8.91538461538462,416.142779255171,374,89873,1,0,0,0,9 +"8280",2012,26023,"MI","26","023",43790,0.964032884220142,2476,0.134733957524549,7.81439963380449,8.59062950948942,9.37999875481674,8.74615384615385,421.625029553156,107,25378,1,0,0,0,9 +"8281",2012,26025,"MI","26","025",134755,0.846580831880079,8944,0.135913324180921,9.09873819539488,9.69338361472972,10.5941065399072,8.24615384615385,502.775473744656,394,78365,1,0,0,0,9 +"8282",2012,26027,"MI","26","027",51815,0.911859500144746,2770,0.153681366399691,7.92660259918138,8.72566970568704,9.60447486374196,8.33846153846154,418.004280363831,125,29904,1,0,0,0,9 +"8283",2012,26029,"MI","26","029",26193,0.967777650517314,1254,0.163173366930096,7.13409372119287,7.91278922069068,8.9165060800392,10.7230769230769,323.711896412193,48,14828,1,0,0,0,9 +"8284",2012,26031,"MI","26","031",25745,0.948572538356963,1151,0.170596232278112,7.04838640872188,7.95892649305011,8.88861880730088,11.9230769230769,607.8814980436,87,14312,1,0,0,0,9 +"8285",2012,26033,"MI","26","033",39006,0.74114238835051,3465,0.128364866943547,8.150467911624,8.54266598738927,9.21423278669153,9.92307692307692,284.442245857037,69,24258,1,0,0,0,9 +"8286",2012,26035,"MI","26","035",30796,0.979088193271853,1722,0.159631120924795,7.45124168498768,8.10741881171997,9.07852179735533,11.7076923076923,506.795669200645,88,17364,1,0,0,0,9 +"8287",2012,26037,"MI","26","037",76171,0.95221278439301,5797,0.133935487258931,8.66509582133973,9.14473461487819,10.0443792912336,6.02307692307692,254.605030109812,115,45168,1,0,0,0,9 +"8288",2012,26039,"MI","26","039",13952,0.979071100917431,644,0.166929472477064,6.46769872610435,7.24208235925696,8.25816336153762,11.6615384615385,506.26502974307,40,7901,1,0,0,0,9 +"8289",2012,26041,"MI","26","041",36840,0.958469055374593,1993,0.166178067318132,7.5973963202128,8.29179710504873,9.26188863385676,9.74615384615385,382.021412064331,81,21203,1,0,0,0,9 +"8290",2012,26043,"MI","26","043",26176,0.979255806845966,1274,0.158503973105134,7.14991683613211,7.93164402145431,8.91972065553706,8.32307692307692,283.585042537756,43,15163,1,0,0,0,9 +"8291",2012,26045,"MI","26","045",108013,0.897882662272134,6920,0.14440854341607,8.84217104861172,9.45602788772529,10.4017141407256,6.84615384615385,318.619110959879,206,64654,1,0,0,0,9 +"8292",2012,26047,"MI","26","047",32813,0.940176149696767,1763,0.159784231859324,7.47477218239787,8.24064886337491,9.17502402684861,11.9,250.901677904971,48,19131,1,0,0,0,9 +"8293",2012,26049,"MI","26","049",418243,0.761872882510885,27503,0.132513873513723,10.2220503686138,10.8627803009548,11.7513752755418,10,485.984517162733,1189,244658,1,0,0,0,9 +"8294",2012,26051,"MI","26","051",25543,0.984496731002623,1244,0.164546059585796,7.12608727329912,7.89245204352035,8.84433633274893,11.6923076923077,573.600057360006,80,13947,1,0,0,0,9 +"8295",2012,26053,"MI","26","053",16037,0.922865872669452,976,0.163808692398828,6.88346258641309,7.49997654095212,8.30992298925832,10.9615384615385,377.398050110074,36,9539,1,0,0,0,9 +"8296",2012,26055,"MI","26","055",89238,0.960745422353706,5336,0.147661310204173,8.58223158759546,9.2819165704654,10.1967540032818,8.17692307692308,321.173303629444,173,53865,1,0,0,0,9 +"8297",2012,26057,"MI","26","057",41975,0.92829064919595,3408,0.120547945205479,8.13388088794921,8.58895555764313,9.30419494744781,8.86923076923077,372.144582129142,94,25259,1,0,0,0,9 +"8298",2012,26059,"MI","26","059",46270,0.98165117786903,3164,0.144002593473093,8.05959232888755,8.57281709516423,9.48782058194337,9.04615384615385,351.952770208901,93,26424,1,0,0,0,9 +"8299",2012,26061,"MI","26","061",36752,0.950070744449282,5482,0.118687418371789,8.60922527686273,8.13827263853019,9.14088310696096,8.85384615384615,244.844147283172,52,21238,1,0,0,0,9 +"8300",2012,26063,"MI","26","063",32449,0.983512588985793,1547,0.159820025270424,7.34407285057307,8.13064796816058,9.08125621856465,7.95384615384615,433.212996389892,78,18005,1,0,0,0,9 +"8301",2012,26065,"MI","26","065",283592,0.792095686761263,40823,0.1162515162628,10.6170009270489,10.3335477074997,11.4151472420515,7.73846153846154,300.35805395132,531,176789,1,0,0,0,9 +"8302",2012,26067,"MI","26","067",63890,0.93441853185162,4316,0.124463922366568,8.37008432637803,9.0896405867384,9.75138477432617,8.36923076923077,313.91965698535,123,39182,1,0,0,0,9 +"8303",2012,26069,"MI","26","069",25455,0.973600471420153,1104,0.174071891573365,7.00669522683704,7.76131918094799,8.82761475083751,11.1153846153846,593.450069602169,81,13649,1,0,0,0,9 +"8304",2012,26071,"MI","26","071",11569,0.976834644308065,460,0.189212550782263,6.13122648948314,6.89060912014717,8.02420748577858,9.41538461538462,399.042298483639,25,6265,1,0,0,0,9 +"8305",2012,26073,"MI","26","073",70679,0.9038186731561,16054,0.0983318949051345,9.68371331869152,8.75888368001702,10.0301642553626,7.29230769230769,301.891855628606,135,44718,1,0,0,0,9 +"8306",2012,26075,"MI","26","075",159988,0.891873140485536,10880,0.135741430607296,9.29468152040993,9.91249684669372,10.7183212513527,8.42307692307692,396.547945777286,380,95827,1,0,0,0,9 +"8307",2012,26077,"MI","26","077",255413,0.839503079326424,31568,0.118376903289966,10.3598992282624,10.2855816743211,11.2772284475844,7.16153846153846,311.223870295695,487,156479,1,0,0,0,9 +"8308",2012,26079,"MI","26","079",17104,0.97749064546305,842,0.152420486435921,6.73578001424233,7.61726781362835,8.48260174664662,11.2153846153846,506.22658702035,50,9877,1,0,0,0,9 +"8309",2012,26081,"MI","26","081",615871,0.848547829009647,46593,0.116469195659481,10.7492055942381,11.2470179305293,12.1395481536575,6.72307692307692,278.173184539656,1024,368116,1,0,0,0,9 +"8310",2012,26085,"MI","26","085",11462,0.888501134182516,440,0.184784505321933,6.08677472691231,7.0343879299155,8.04141290939305,12.9153846153846,498.597693985665,32,6418,1,0,0,0,9 +"8311",2012,26087,"MI","26","087",88200,0.97469387755102,4996,0.148809523809524,8.51639287124547,9.29807648628027,10.1587497337318,11.5769230769231,325.49109182275,171,52536,1,0,0,0,9 +"8312",2012,26089,"MI","26","089",21380,0.94466791393826,917,0.193077642656689,6.82110747225646,7.56060116276856,8.68304655550289,7.94615384615385,240.901660500731,28,11623,1,0,0,0,9 +"8313",2012,26091,"MI","26","091",99041,0.95394836481861,6639,0.140143980775638,8.80071662871916,9.41962837699995,10.2442007834146,8.27692307692308,392.183844777763,228,58136,1,0,0,0,9 +"8314",2012,26093,"MI","26","093",182805,0.976860589152376,9535,0.143278356718908,9.16272451803452,10.0761795603542,10.9093630141524,7.83846153846154,265.080435059848,291,109778,1,0,0,0,9 +"8315",2012,26097,"MI","26","097",11066,0.783209831917585,463,0.183173685161757,6.13772705408623,7.06646697013696,8.04173471148754,13.1,317.158261972724,20,6306,1,0,0,0,9 +"8316",2012,26099,"MI","26","099",849761,0.855056892467411,53808,0.131664079664753,10.8931774339801,11.6339476932177,12.4730033908123,9.77692307692308,373.155458008783,1911,512119,1,0,0,0,9 +"8317",2012,26101,"MI","26","101",24675,0.933292806484296,1341,0.172644376899696,7.20117088328168,7.87435882472988,8.79330862749655,10.7076923076923,481.507327285415,69,14330,1,0,0,0,9 +"8318",2012,26103,"MI","26","103",67840,0.950353773584906,7787,0.146049528301887,8.96021095557699,8.86545282575362,9.92343722784375,7.98461538461538,268.223788839042,113,42129,1,0,0,0,9 +"8319",2012,26105,"MI","26","105",28667,0.969372449157568,1547,0.16164928314787,7.34407285057307,8.02027047281924,9.00491394146713,9.56153846153846,407.08073767964,66,16213,1,0,0,0,9 +"8320",2012,26107,"MI","26","107",43502,0.94673808100777,6114,0.124293135947773,8.71833650245078,8.30176976311717,9.41564576516051,10.0076923076923,273.63578680203,69,25216,1,0,0,0,9 +"8321",2012,26109,"MI","26","109",23736,0.959470845972363,1106,0.167551398719245,7.00850518208228,7.82524529143177,8.80447518384668,7.93076923076923,444.63882207158,61,13719,1,0,0,0,9 +"8322",2012,26111,"MI","26","111",83743,0.954061832033722,5534,0.134578412524032,8.61866616034687,9.20823816388431,10.1218195468531,7.68461538461538,268.080303152463,133,49612,1,0,0,0,9 +"8323",2012,26113,"MI","26","113",15009,0.980345126257579,803,0.143447264974349,6.68835471394676,7.38894609761844,8.32190796823042,9.53076923076923,346.062052505967,29,8380,1,0,0,0,9 +"8324",2012,26115,"MI","26","115",150835,0.961222527927868,9195,0.143607252958531,9.12641513703842,9.84161214881804,10.7173911217319,7.63846153846154,418.066691063131,377,90177,1,0,0,0,9 +"8325",2012,26117,"MI","26","117",63100,0.959793977812995,3739,0.131410459587956,8.22657347497711,8.99590876126399,9.7655464514229,10.0615384615385,342.374150751618,128,37386,1,0,0,0,9 +"8326",2012,26119,"MI","26","119",9515,0.985811875985286,337,0.195060430898581,5.82008293035236,6.7202201551353,7.83755436088108,16.1,486.286714646956,25,5141,1,0,0,0,9 +"8327",2012,26121,"MI","26","121",170191,0.827470312766245,11063,0.13481911499433,9.31136148603491,9.91921325299761,10.8176760763184,9.91538461538462,389.401083115609,389,99897,1,0,0,0,9 +"8328",2012,26123,"MI","26","123",47886,0.970220941402498,2764,0.142150106502944,7.92443418488756,8.60006266923853,9.51907429112457,9.05384615384615,468.984721357125,128,27293,1,0,0,0,9 +"8329",2012,26125,"MI","26","125",1223723,0.782006221996318,68573,0.137277798979017,11.1356541502328,12.0068531188353,12.8517481673103,8.18461538461538,308.568364062161,2290,742137,1,0,0,0,9 +"8330",2012,26127,"MI","26","127",26302,0.970268420652422,1410,0.142954908371987,7.25134498337221,7.94626364358054,8.87108426397835,12.5538461538462,379.781798094186,55,14482,1,0,0,0,9 +"8331",2012,26129,"MI","26","129",21356,0.979303240307174,1056,0.167447087469564,6.96224346426621,7.66293785046154,8.68963274835574,11.3,524.401590120951,62,11823,1,0,0,0,9 +"8332",2012,26131,"MI","26","131",6414,0.976769566573121,174,0.203772996570003,5.15905529921453,6.35437004079735,7.43838353004431,13.2307692307692,541.310541310541,19,3510,1,0,0,0,9 +"8333",2012,26133,"MI","26","133",23327,0.978265529215073,1226,0.144167702662151,7.11151211649616,7.85243908535751,8.77012852753818,9.84615384615385,407.692307692308,53,13000,1,0,0,0,9 +"8334",2012,26135,"MI","26","135",8574,0.982621880102636,387,0.174830884068113,5.95842469302978,6.64898455002478,7.73149202924568,15.4692307692308,540.774388924941,25,4623,1,0,0,0,9 +"8335",2012,26137,"MI","26","137",24043,0.97491993511625,1317,0.148359189784969,7.18311170174328,7.91571319938212,8.84188198949711,10.6,386.128515226577,53,13726,1,0,0,0,9 +"8336",2012,26139,"MI","26","139",270868,0.941329355996279,25225,0.113834044626903,10.1355908452218,10.3792247136296,11.2752011287785,6.5,225.233847606651,353,156726,1,0,0,0,9 +"8337",2012,26141,"MI","26","141",13084,0.980281259553653,508,0.190003057169061,6.23048144757848,7.06646697013696,8.15277405274407,14.3692307692308,453.193598640419,32,7061,1,0,0,0,9 +"8338",2012,26143,"MI","26","143",24184,0.97845683096262,971,0.195418458484949,6.87832646829133,7.62997570702779,8.78874588193814,13.2923076923077,538.917545615521,70,12989,1,0,0,0,9 +"8339",2012,26145,"MI","26","145",198409,0.775977904228135,14920,0.137095595461899,9.61045787375775,10.0335504368343,10.985580816978,9.10769230769231,454.272511291544,522,114909,1,0,0,0,9 +"8340",2012,26147,"MI","26","147",160637,0.95652931765409,9367,0.144020368906292,9.14494815320913,9.90023225981546,10.7714909937788,11.7076923076923,422.877460210597,402,95063,1,0,0,0,9 +"8341",2012,26149,"MI","26","149",60987,0.949825372620394,3651,0.133290701296998,8.20275638165564,8.86361575889062,9.75056944611141,8.81538461538462,432.485777313363,149,34452,1,0,0,0,9 +"8342",2012,26151,"MI","26","151",42306,0.982839313572543,2163,0.146551316598118,7.67925142595306,8.47407690034261,9.37143829231851,10.3692307692308,361.891937384279,86,23764,1,0,0,0,9 +"8343",2012,26153,"MI","26","153",8348,0.888356492573071,351,0.179444178246287,5.86078622346587,6.79570577517351,7.77148876011762,12.4230769230769,276.536907041055,13,4701,1,0,0,0,9 +"8344",2012,26155,"MI","26","155",69345,0.97932078736751,4244,0.140038935756003,8.35326149973387,9.05578961212758,9.92500439599838,9.46923076923077,394.936957268312,161,40766,1,0,0,0,9 +"8345",2012,26157,"MI","26","157",54705,0.975047984644914,3147,0.147024952015355,8.05420489706441,8.77647578934632,9.66376990660086,10.4461538461538,378.596668349319,120,31696,1,0,0,0,9 +"8346",2012,26159,"MI","26","159",75312,0.929891650732951,4131,0.144704695134905,8.32627478739676,9.09549053029724,9.9956564400075,10.4153846153846,429.371785451874,187,43552,1,0,0,0,9 +"8347",2012,26161,"MI","26","161",352685,0.764027389880488,45340,0.116214185462949,10.7219449240615,10.6620478716443,11.6333982134371,5.88461538461539,222.826548063999,499,223941,1,0,0,0,9 +"8348",2012,26163,"MI","26","163",1795797,0.553297505230268,132061,0.127987183406588,11.7910192160355,12.3517777617739,13.2237947842136,11.6538461538462,514.403677630371,5492,1067644,1,0,0,0,9 +"8349",2012,26165,"MI","26","165",32518,0.976966603112122,1765,0.142905467740943,7.4759059693674,8.22362717580548,9.13399913871946,10.8769230769231,388.545880349159,73,18788,1,0,0,0,9 +"8350",2012,27001,"MN","27","001",16038,0.961965332335703,546,0.179324105250031,6.3026189757449,7.20266119652324,8.31556648356428,8.15384615384615,372.104189172968,31,8331,1,0,0,0,9 +"8351",2012,27003,"MN","27","003",336119,0.890413811774996,19301,0.123001079974652,9.86791218702221,10.7460456264328,11.5425425179424,5.93846153846154,252.871902319197,525,207615,1,0,0,0,9 +"8352",2012,27005,"MN","27","005",32995,0.897317775420518,1629,0.150962267010153,7.39572160860205,8.15392513200786,9.09985563880091,5.84615384615385,366.560892876682,67,18278,1,0,0,0,9 +"8353",2012,27007,"MN","27","007",45160,0.756399468556245,4732,0.124844995571302,8.46210322509828,8.40782465436087,9.46179923427044,7.06153846153846,377.678433790658,98,25948,1,0,0,0,9 +"8354",2012,27009,"MN","27","009",38678,0.954651222917421,2840,0.110450385231915,7.95155933115525,8.48177324618498,9.3487971151232,6.43076923076923,254.388196387688,60,23586,1,0,0,0,9 +"8355",2012,27013,"MN","27","013",64979,0.936471783191493,10863,0.106249711445236,9.29311779843375,8.76981787205262,9.8747279308647,4.82307692307692,204.151908697363,83,40656,1,0,0,0,9 +"8356",2012,27015,"MN","27","015",25413,0.985794672018258,1635,0.137331287136505,7.39939808333135,7.81439963380449,8.84922702143852,5.66923076923077,274.145929987347,39,14226,1,0,0,0,9 +"8357",2012,27017,"MN","27","017",35264,0.909199183303085,1947,0.13866833030853,7.5740450053722,8.39660622842712,9.1689974084418,6.90769230769231,372.973748386171,78,20913,1,0,0,0,9 +"8358",2012,27019,"MN","27","019",93804,0.948904097906273,4310,0.11145580145836,8.36869318309779,9.53314824640334,10.2370985568763,4.85384615384615,165.482507419732,92,55595,1,0,0,0,9 +"8359",2012,27021,"MN","27","021",28412,0.862206110094326,1283,0.161833028297902,7.15695636461564,7.9373746961633,8.923591197573,8.99230769230769,534.341196402971,82,15346,1,0,0,0,9 +"8360",2012,27023,"MN","27","023",12112,0.963177014531044,639,0.145145310435931,6.45990445437753,7.12125245324454,8.10167774745457,5.31538461538462,417.474280602356,28,6707,1,0,0,0,9 +"8361",2012,27025,"MN","27","025",53468,0.966877384603875,2879,0.123943293184709,7.96519829061218,8.89863879368018,9.63560810738053,6.60769230769231,216.537259875646,70,32327,1,0,0,0,9 +"8362",2012,27027,"MN","27","027",60229,0.946271729565492,7203,0.105198492420595,8.88225288488936,8.79769958011892,9.78504179732965,4.86923076923077,249.313687041291,89,35698,1,0,0,0,9 +"8363",2012,27029,"MN","27","029",8679,0.887890309943542,446,0.143564926834889,6.10031895202006,6.86380339145295,7.74759683869289,10.5615384615385,692.695214105793,33,4764,1,0,0,0,9 +"8364",2012,27033,"MN","27","033",11578,0.949559509414407,535,0.141129728795992,6.28226674689601,7.10824413973154,7.99631723179675,6.54615384615385,248.097915977506,15,6046,1,0,0,0,9 +"8365",2012,27035,"MN","27","035",62813,0.975307659242514,3370,0.144285418623533,8.12266802334641,8.7937637591133,9.76680835362087,7.75384615384615,384.582514315016,135,35103,1,0,0,0,9 +"8366",2012,27037,"MN","27","037",404669,0.883104463153837,22087,0.122453165426558,10.0027444791335,10.9172860477581,11.7402681874117,5.23846153846154,202.53389714027,501,247366,1,0,0,0,9 +"8367",2012,27039,"MN","27","039",20273,0.980959897400483,970,0.116706950130716,6.87729607149743,7.90617884039481,8.64064899534316,5.06923076923077,209.387541441284,24,11462,1,0,0,0,9 +"8368",2012,27041,"MN","27","041",36297,0.982946249001295,2190,0.141719701352729,7.69165682281055,8.25556865328375,9.20923976653215,5.08461538461538,284.035259549461,58,20420,1,0,0,0,9 +"8369",2012,27043,"MN","27","043",14174,0.983067588542402,676,0.152038944546352,6.51619307604296,7.24850407237061,8.22228507387272,5.87692307692308,378.936364824252,29,7653,1,0,0,0,9 +"8370",2012,27045,"MN","27","045",20833,0.988623817981088,990,0.140594249507992,6.89770494312864,7.71690613529839,8.62461158818351,5.56153846153846,290.058890744484,33,11377,1,0,0,0,9 +"8371",2012,27047,"MN","27","047",31026,0.971185457358345,1658,0.139012441178367,7.41336733569524,8.10711747075039,9.03109408169916,5.82307692307692,267.208829509149,46,17215,1,0,0,0,9 +"8372",2012,27049,"MN","27","049",46167,0.962289080945264,2260,0.141789589966859,7.72312009226633,8.56235774337061,9.48105429619781,5.19230769230769,235.160250331879,62,26365,1,0,0,0,9 +"8373",2012,27053,"MN","27","053",1184545,0.779916339185088,80309,0.122048550287241,11.2936369733555,11.9541823371764,12.8374109095234,5.26923076923077,241.271453777469,1805,748120,1,0,0,0,9 +"8374",2012,27055,"MN","27","055",18766,0.981988702973463,883,0.15160396461686,6.78332520060396,7.60936653795421,8.57659353469768,5.85384615384615,167.926112510495,18,10719,1,0,0,0,9 +"8375",2012,27057,"MN","27","057",20453,0.957756808292182,842,0.159340927981225,6.73578001424233,7.60190195987517,8.61232153650781,8.13076923076923,324.353545364447,36,11099,1,0,0,0,9 +"8376",2012,27059,"MN","27","059",38150,0.97213630406291,2152,0.12264744429882,7.67415292128168,8.47386806667786,9.30592324186991,7.03076923076923,269.672855879752,61,22620,1,0,0,0,9 +"8377",2012,27061,"MN","27","061",45150,0.944739756367663,2187,0.166866002214839,7.69028602067677,8.46463594067756,9.43771495981821,7.9,435.926638652162,111,25463,1,0,0,0,9 +"8378",2012,27063,"MN","27","063",10311,0.970322956066337,545,0.140723499175638,6.30078579466324,7.01571242048723,7.90544164906029,4.56153846153846,314.795383001049,18,5718,1,0,0,0,9 +"8379",2012,27065,"MN","27","065",15977,0.979533078800776,772,0.150278525380234,6.64898455002478,7.54168309988211,8.40312823512826,9.04615384615385,283.255256563896,26,9179,1,0,0,0,9 +"8380",2012,27067,"MN","27","067",42380,0.951675318546484,2932,0.138650306748466,7.98344006300654,8.40893960597598,9.38697914563464,5.27692307692308,247.647350173353,60,24228,1,0,0,0,9 +"8381",2012,27071,"MN","27","071",13166,0.956934528330548,597,0.17256569952909,6.3919171133926,7.23849684089437,8.20685642839965,8.03076923076923,346.251165268345,26,7509,1,0,0,0,9 +"8382",2012,27075,"MN","27","075",10792,0.983135656041512,497,0.167068198665678,6.20859002609663,6.98471632011827,7.98989937494294,6.07692307692308,347.567030784508,21,6042,1,0,0,0,9 +"8383",2012,27079,"MN","27","079",27666,0.981348948167426,1266,0.134461071351117,7.14361760270412,8.12710918534638,8.94715577112479,6.53076923076923,282.698831511496,45,15918,1,0,0,0,9 +"8384",2012,27083,"MN","27","083",25639,0.932368657123913,2112,0.118998400873669,7.65539064482615,7.94803199063728,8.8967249174979,4.44615384615385,228.786757284167,34,14861,1,0,0,0,9 +"8385",2012,27085,"MN","27","085",35933,0.979489605654969,1900,0.123813764506164,7.54960916515453,8.41183267575841,9.21969646690021,6.84615384615385,249.914245111971,51,20407,1,0,0,0,9 +"8386",2012,27087,"MN","27","087",5503,0.530619662002544,321,0.127203343630747,5.77144112313002,6.3135480462771,7.24565506759454,6.96923076923077,458.230525202679,13,2837,1,0,0,0,9 +"8387",2012,27091,"MN","27","091",20461,0.98225893162602,958,0.154831142172914,6.86484777797086,7.6226639513236,8.61250337122056,5.65384615384615,365.060991897427,41,11231,1,0,0,0,9 +"8388",2012,27093,"MN","27","093",23041,0.986241916583482,1098,0.143049346816544,7.00124562206948,7.85554467791566,8.72550732848445,6.60769230769231,233.44486810365,30,12851,1,0,0,0,9 +"8389",2012,27095,"MN","27","095",25629,0.921963400834992,1366,0.126575363845644,7.21964204013074,8.03106018024062,8.86827250899781,8.36153846153846,416.204217536071,60,14416,1,0,0,0,9 +"8390",2012,27097,"MN","27","097",33101,0.984501978792181,1713,0.139149874626144,7.44600149832412,8.20985248130127,9.12380161055894,7.1,397.667020148462,75,18860,1,0,0,0,9 +"8391",2012,27099,"MN","27","099",39397,0.937228722999213,2257,0.124476482980938,7.72179177681754,8.41759382619348,9.26378634768181,5.00769230769231,290.309202340906,63,21701,1,0,0,0,9 +"8392",2012,27103,"MN","27","103",33030,0.955101422948834,3125,0.123221313957009,8.0471895621705,8.21662849313344,9.17895289873455,4.58461538461538,252.385038614911,50,19811,1,0,0,0,9 +"8393",2012,27105,"MN","27","105",21736,0.87246963562753,1434,0.118605079131395,7.26822302115957,7.7848892956551,8.62353322718756,4.38461538461539,251.741210036083,30,11917,1,0,0,0,9 +"8394",2012,27109,"MN","27","109",146944,0.875435540069686,8251,0.119086182491289,9.01808968410434,9.81054955687686,10.7058702313022,4.46923076923077,208.680183364882,183,87694,1,0,0,0,9 +"8395",2012,27111,"MN","27","111",57227,0.973229419679522,2702,0.156429657329582,7.90174751852014,8.60977237270933,9.63233478203556,5.6,340.818601688167,107,31395,1,0,0,0,9 +"8396",2012,27113,"MN","27","113",14130,0.954423213021939,973,0.127883934890304,6.880384082186,7.41997992366183,8.31115254800169,6.66153846153846,292.718624222466,24,8199,1,0,0,0,9 +"8397",2012,27115,"MN","27","115",29197,0.931739562283796,1427,0.142411891632702,7.26332961747684,8.17244681834278,8.94376726273464,7.59230769230769,353.848831138697,61,17239,1,0,0,0,9 +"8398",2012,27117,"MN","27","117",9398,0.958927431368376,431,0.132581400297936,6.06610809010375,6.88653164253051,7.79193595693806,5.00769230769231,343.434343434343,17,4950,1,0,0,0,9 +"8399",2012,27119,"MN","27","119",31524,0.956667935541175,2270,0.13364420758787,7.72753511047545,8.10802122137675,9.06067959742178,6.26153846153846,413.246216563355,74,17907,1,0,0,0,9 +"8400",2012,27121,"MN","27","121",10886,0.984567334190704,478,0.156163880213118,6.16961073249146,7.03174125876313,7.96206730875367,4.7,334.896182183523,20,5972,1,0,0,0,9 +"8401",2012,27123,"MN","27","123",521091,0.727602280599742,42897,0.121205317305423,10.666557172401,11.021248660043,11.9998230837589,5.78461538461538,284.713854710992,905,317863,1,0,0,0,9 +"8402",2012,27127,"MN","27","127",15820,0.908091024020228,733,0.134197218710493,6.59714570188665,7.40306109109009,8.31801027754687,5.56923076923077,333.174678724417,28,8404,1,0,0,0,9 +"8403",2012,27129,"MN","27","129",15283,0.975462932670287,710,0.144147091539619,6.56526497003536,7.37086016653672,8.29978317194979,6.84615384615385,375.984020679121,32,8511,1,0,0,0,9 +"8404",2012,27131,"MN","27","131",64438,0.927418603929358,6236,0.116002979608306,8.73809423017767,8.96046776091995,9.79618069954762,5.86923076923077,227.225240284162,87,38288,1,0,0,0,9 +"8405",2012,27135,"MN","27","135",15512,0.950618875709128,680,0.133960804538422,6.52209279817015,7.57558465155779,8.34450508359052,4.76153846153846,271.431802759557,24,8842,1,0,0,0,9 +"8406",2012,27137,"MN","27","137",200397,0.94254405006063,18141,0.15031662150631,9.80592984894132,9.95939518447442,10.9784046476927,6.54615384615385,372.721112047735,451,121002,1,0,0,0,9 +"8407",2012,27139,"MN","27","139",135140,0.889336983868581,6076,0.0974026935030339,8.71210186371566,9.99126946591966,10.6077724775065,5.02307692307692,172.927037142257,140,80959,1,0,0,0,9 +"8408",2012,27141,"MN","27","141",89474,0.956367212821602,5249,0.102376109260791,8.5657928612523,9.4993465673901,10.1655825499853,6.23076923076923,234.018052821218,126,53842,1,0,0,0,9 +"8409",2012,27143,"MN","27","143",15082,0.982164169208328,727,0.130022543429253,6.58892647753352,7.48268182815465,8.31434234336979,6.00769230769231,306.206571664115,26,8491,1,0,0,0,9 +"8410",2012,27145,"MN","27","145",151919,0.931772852638577,16986,0.112823280827283,9.74014475433995,9.7225050987434,10.6968646095049,5.43076923076923,239.534117129986,218,91010,1,0,0,0,9 +"8411",2012,27147,"MN","27","147",36324,0.954465367250303,1799,0.126665565466358,7.49498623395053,8.40514368760761,9.2223677521889,5.48461538461538,276.95447257179,57,20581,1,0,0,0,9 +"8412",2012,27153,"MN","27","153",24641,0.978531715433627,1259,0.144961649283714,7.13807303404435,7.85321638815607,8.77183540978982,5.83076923076923,288.846096874537,39,13502,1,0,0,0,9 +"8413",2012,27157,"MN","27","157",21542,0.984356141491041,1026,0.146179556215765,6.93342302573071,7.81802793853073,8.70748291785937,5.20769230769231,180.209698558322,22,12208,1,0,0,0,9 +"8414",2012,27159,"MN","27","159",13606,0.974790533588123,731,0.132294575922387,6.59441345974978,7.24992553671799,8.15593633797239,7.84615384615385,429.481850928235,31,7218,1,0,0,0,9 +"8415",2012,27161,"MN","27","161",19177,0.955206758095635,1053,0.133701830317568,6.95939851213398,7.79688034278352,8.72046051272565,5.8,184.000700955051,21,11413,1,0,0,0,9 +"8416",2012,27163,"MN","27","163",243720,0.892831938289841,12386,0.128988183161004,9.42432208149801,10.3991284699769,11.2087887544465,5.17692307692308,203.542594180996,299,146898,1,0,0,0,9 +"8417",2012,27165,"MN","27","165",11114,0.963379521324456,557,0.134784955911463,6.32256523992728,7.10414409298753,7.9672801789422,5.66923076923077,367.033700367034,22,5994,1,0,0,0,9 +"8418",2012,27169,"MN","27","169",51353,0.95416041906023,7961,0.122349229840516,8.98230989908858,8.49902922078857,9.64342064711732,4.92307692307692,207.953418434271,65,31257,1,0,0,0,9 +"8419",2012,27171,"MN","27","171",127273,0.966253643742192,5936,0.103431206933128,8.68879078484722,9.84633502103182,10.5065458983144,5.9,197.379983506604,146,73969,1,0,0,0,9 +"8420",2012,29001,"MO","29","001",25696,0.949291718555417,5088,0.101533312577833,8.53464010501996,7.76429600645052,8.98117874833641,7.26153846153846,267.083577617093,41,15351,0,0,0,0,9 +"8421",2012,29003,"MO","29","003",17311,0.981976777771359,973,0.142857142857143,6.880384082186,7.67740043051481,8.52595469708481,5.52307692307692,357.426528991263,36,10072,0,0,0,0,9 +"8422",2012,29007,"MO","29","007",25539,0.916441520811308,1563,0.12702141822311,7.35436233042148,8.04782935745784,9.02569611981258,6.72307692307692,417.750993014656,61,14602,0,0,0,0,9 +"8423",2012,29009,"MO","29","009",35334,0.963462953529179,1924,0.141761476198562,7.56216163122565,8.28071107566285,9.19451582162921,7.29230769230769,559.26115956901,109,19490,0,0,0,0,9 +"8424",2012,29011,"MO","29","011",12299,0.970648020164241,664,0.132531100089438,6.49828214947643,7.19443685110033,8.12444685571585,7.66153846153846,420.736288504884,28,6655,0,0,0,0,9 +"8425",2012,29013,"MO","29","013",16615,0.976045741799579,813,0.134155883238038,6.70073110954781,7.49720722320332,8.43250638324904,8.48461538461538,653.879686137751,60,9176,0,0,0,0,9 +"8426",2012,29015,"MO","29","015",19006,0.982268757234558,776,0.18588866673682,6.65415252018322,7.47420480649612,8.53503310954457,9.34615384615385,689.519306540583,70,10152,0,0,0,0,9 +"8427",2012,29017,"MO","29","017",12447,0.984976299509922,735,0.14332770948823,6.59987049921284,7.28344822875663,8.17919979842309,7.23846153846154,616.16020165243,44,7141,0,0,0,0,9 +"8428",2012,29019,"MO","29","019",168868,0.843753701115664,27022,0.10354241182462,10.2044066280199,9.85618627941811,10.9309260217497,4.67692307692308,221.71929049827,241,108696,0,0,0,0,9 +"8429",2012,29021,"MO","29","021",89962,0.91317445143505,7121,0.122273848958449,8.87080344398212,9.27378454453272,10.1671586550264,6.47692307692308,454.689450832044,244,53663,0,0,0,0,9 +"8430",2012,29023,"MO","29","023",43001,0.922815748470966,2597,0.135299179088858,7.86211221166275,8.53699581871242,9.44770236052795,8.46923076923077,572.100949444129,141,24646,0,0,0,0,9 +"8431",2012,29025,"MO","29","025",9085,0.980077050082554,442,0.136708860759494,6.0913098820777,6.94697599213542,7.81601383915903,7.19230769230769,632.161201106282,32,5062,0,0,0,0,9 +"8432",2012,29027,"MO","29","027",44413,0.93470380294058,3601,0.129601693197938,8.18896686364888,8.61938870373091,9.46366389179152,6.4,387.125317995797,105,27123,0,0,0,0,9 +"8433",2012,29029,"MO","29","029",44232,0.979991861096039,2055,0.176840296617833,7.62803112693033,8.35490952835879,9.43739626011031,9.91538461538462,427.907734941723,105,24538,0,0,0,0,9 +"8434",2012,29031,"MO","29","031",77076,0.899696403549743,7961,0.122450568270279,8.98230989908858,9.0685463663583,10.0600211053509,5.70769230769231,298.51396696736,137,45894,0,0,0,0,9 +"8435",2012,29033,"MO","29","033",9076,0.969259585720582,442,0.139819303657999,6.0913098820777,7.00850518208228,7.80913539812054,8.61538461538461,568.527918781726,28,4925,0,0,0,0,9 +"8436",2012,29035,"MO","29","035",6271,0.976080369956945,363,0.141923138255462,5.89440283426485,6.59030104819669,7.5076900778199,9.75384615384615,563.221627710504,20,3551,0,0,0,0,9 +"8437",2012,29037,"MO","29","037",100458,0.940731449959187,5484,0.122130641661192,8.6095900406822,9.48318795546951,10.2883757336555,6.86923076923077,362.18698552985,209,57705,0,0,0,0,9 +"8438",2012,29039,"MO","29","039",13910,0.982818116462976,649,0.141121495327103,6.47543271670409,7.29573507274928,8.19533366716287,7.66153846153846,567.31700567317,41,7227,0,0,0,0,9 +"8439",2012,29041,"MO","29","041",7680,0.970963541666667,355,0.146354166666667,5.87211778947542,6.64509096950564,7.60589000105312,6.76923076923077,487.567040468064,20,4102,0,0,0,0,9 +"8440",2012,29043,"MO","29","043",79695,0.973775017253278,4304,0.118564527260179,8.36730010184162,9.2983512492989,10.0758429450182,6.00769230769231,292.068711868807,135,46222,0,0,0,0,9 +"8441",2012,29045,"MO","29","045",6968,0.988518943742824,360,0.145378874856487,5.88610403145016,6.66057514983969,7.54274354536855,8.32307692307692,411.522633744856,16,3888,0,0,0,0,9 +"8442",2012,29047,"MO","29","047",227636,0.902344093201427,13306,0.1179207155283,9.49597034030183,10.3813973455405,11.1569788271807,6.29230769230769,312.164241949066,430,137748,0,0,0,0,9 +"8443",2012,29049,"MO","29","049",20560,0.966974708171206,1094,0.133268482490272,6.99759598298193,7.82763954636642,8.66802408111882,7.22307692307692,477.326968973747,56,11732,0,0,0,0,9 +"8444",2012,29051,"MO","29","051",76480,0.858891213389121,4887,0.130713912133891,8.49433389727015,9.20763672040187,10.0168608797038,5.33076923076923,312.754380703483,146,46682,0,0,0,0,9 +"8445",2012,29053,"MO","29","053",17538,0.910936252708405,1277,0.130288516364466,7.15226885603254,7.59789795052178,8.45382731579442,7.37692307692308,411.522633744856,43,10449,0,0,0,0,9 +"8446",2012,29055,"MO","29","055",24783,0.98438445708752,1435,0.132671589395957,7.26892012819372,7.95577578153419,8.85865296954849,9.09230769230769,481.245576786978,68,14130,0,0,0,0,9 +"8447",2012,29057,"MO","29","057",7556,0.977368978295394,322,0.16079936474325,5.77455154554441,6.7202201551353,7.61628356158038,7.73846153846154,462.737457379445,19,4106,0,0,0,0,9 +"8448",2012,29059,"MO","29","059",16703,0.979704244746453,830,0.141830808836736,6.72142570079064,7.51860721681525,8.44376191333035,9.39230769230769,407.550407550408,38,9324,0,0,0,0,9 +"8449",2012,29061,"MO","29","061",8294,0.986496262358331,434,0.141065830721003,6.0730445341004,6.85435450225502,7.69621263934641,7.14615384615385,449.74139869575,20,4447,0,0,0,0,9 +"8450",2012,29063,"MO","29","063",12783,0.872799812250645,910,0.117186888836736,6.8134445995109,7.60190195987517,7.85205020726589,6.11538461538461,480.712862000234,41,8529,0,0,0,0,9 +"8451",2012,29065,"MO","29","065",15659,0.978095663835494,830,0.139344785746216,6.72142570079064,7.43070708254597,8.38068594676157,8.43076923076923,438.14135823821,38,8673,0,0,0,0,9 +"8452",2012,29067,"MO","29","067",13582,0.981961419525843,681,0.158592254454425,6.52356230614951,7.23921497377981,8.23509549725836,10.1,479.424690371554,36,7509,0,0,0,0,9 +"8453",2012,29069,"MO","29","069",31848,0.883195177091183,1936,0.125722180356694,7.56837926783652,8.23483028044206,9.12216468107246,10.7230769230769,857.516042932591,151,17609,0,0,0,0,9 +"8454",2012,29071,"MO","29","071",101331,0.9788120121187,6149,0.130907619583346,8.72404474595347,9.40919123072135,10.3060484474969,8.12307692307692,419.052707147269,251,59897,0,0,0,0,9 +"8455",2012,29073,"MO","29","073",14914,0.98571811720531,758,0.149792141611908,6.63068338564237,7.38336814699238,8.32093496888341,7.27692307692308,538.277511961723,45,8360,0,0,0,0,9 +"8456",2012,29075,"MO","29","075",6767,0.986700162553569,380,0.122654056450421,5.94017125272043,6.55535689181067,7.49886973397693,5.46153846153846,420.521446593776,15,3567,0,0,0,0,9 +"8457",2012,29077,"MO","29","077",280550,0.932193904829799,30032,0.117258955622884,10.3100187588263,10.3915766493282,11.3659092740436,6.12307692307692,389.963689009796,668,171298,0,0,0,0,9 +"8458",2012,29079,"MO","29","079",10333,0.978999322558792,638,0.123681409077712,6.45833828334479,6.93342302573071,7.9043348420851,6.65384615384615,479.616306954436,26,5421,0,0,0,0,9 +"8459",2012,29081,"MO","29","081",8731,0.981674493185202,427,0.135494216011912,6.05678401322862,6.77308037565554,7.72621265050753,7.46153846153846,480.559196155526,22,4578,0,0,0,0,9 +"8460",2012,29083,"MO","29","083",22228,0.973726831023934,1193,0.138518985063883,7.08422642209792,7.81197342962202,8.74097653801779,8.02307692307692,581.9592628516,72,12372,0,0,0,0,9 +"8461",2012,29085,"MO","29","085",9444,0.983693350275307,373,0.169207962727658,5.92157841964382,6.68586094706836,7.80016307039296,12.3461538461538,612.331081081081,29,4736,0,0,0,0,9 +"8462",2012,29089,"MO","29","089",10198,0.927730927632869,914,0.138654638164346,6.81783057145415,6.92755790627832,7.98480338973441,6.99230769230769,289.214018373596,17,5878,0,0,0,0,9 +"8463",2012,29091,"MO","29","091",40533,0.978412651419831,2451,0.129844817802778,7.80425138352811,8.47177732788576,9.35097150171593,8.41538461538462,465.384274443755,105,22562,0,0,0,0,9 +"8464",2012,29093,"MO","29","093",10544,0.973918816388467,585,0.144347496206373,6.37161184723186,7.11882624906208,8.00703401219341,11.7307692307692,690.584470271181,41,5937,0,0,0,0,9 +"8465",2012,29095,"MO","29","095",677570,0.717635078294494,45599,0.121640568502147,10.7276410654375,11.3507946954227,12.2567467482581,8.01538461538462,435.509005730253,1783,409406,0,0,0,0,9 +"8466",2012,29097,"MO","29","097",115813,0.933478970409194,8552,0.115997340540354,9.05392045270488,9.58114501982072,10.4399516828571,6.09230769230769,473.087565830581,318,67218,0,0,0,0,9 +"8467",2012,29099,"MO","29","099",219885,0.97593742183414,13295,0.129058371421425,9.49514330367712,10.28363485266,11.1178808741899,7.4,435.536827058377,585,134317,0,0,0,0,9 +"8468",2012,29101,"MO","29","101",54335,0.915836937517254,8636,0.0965491856078034,9.0636947916347,8.62766064444221,9.6824667466029,7.90769230769231,276.975310480388,93,33577,0,0,0,0,9 +"8469",2012,29105,"MO","29","105",35490,0.974781628627783,2001,0.125190194420964,7.60140233458373,8.35819745992578,9.21711735625521,9.53846153846154,463.285842383182,93,20074,0,0,0,0,9 +"8470",2012,29107,"MO","29","107",33061,0.959136142282448,1862,0.131181754937842,7.52940645783701,8.27359179819963,9.14601516141962,7.33076923076923,431.88483071181,81,18755,0,0,0,0,9 +"8471",2012,29109,"MO","29","109",38384,0.975276156731972,1989,0.125338682784494,7.59538727885397,8.44634145044429,9.27181169406428,6.73076923076923,406.50406504065,86,21156,0,0,0,0,9 +"8472",2012,29111,"MO","29","111",10116,0.955318307631475,849,0.122973507315144,6.74405918631135,6.9782137426307,7.93200315236138,5.69230769230769,543.002277106323,31,5709,0,0,0,0,9 +"8473",2012,29113,"MO","29","113",53267,0.96577618412901,3118,0.119417275236075,8.04494704961772,8.82746811252065,9.66605489648747,8.57692307692308,385.129543573748,121,31418,0,0,0,0,9 +"8474",2012,29115,"MO","29","115",12489,0.981023300504444,600,0.139402674353431,6.39692965521615,7.22037383672395,8.13856473726163,9.57692307692308,515.767757147068,35,6786,0,0,0,0,9 +"8475",2012,29117,"MO","29","117",14997,0.95879175835167,914,0.128825765153031,6.81783057145415,7.55328660560042,8.50512061018197,6.4,413.793103448276,36,8700,0,0,0,0,9 +"8476",2012,29119,"MO","29","119",22976,0.913779596100279,1367,0.121387534818942,7.22037383672395,7.97143099776935,8.77199043653224,6.90769230769231,568.400030724326,74,13019,0,0,0,0,9 +"8477",2012,29121,"MO","29","121",15550,0.962700964630225,776,0.13620578778135,6.65415252018322,7.4500795698075,8.34045601291618,6.93076923076923,500.059530896535,42,8399,0,0,0,0,9 +"8478",2012,29123,"MO","29","123",12376,0.979072398190045,735,0.130332902391726,6.59987049921284,7.26822302115957,8.1721644521119,8.53076923076923,534.064665127021,37,6928,0,0,0,0,9 +"8479",2012,29125,"MO","29","125",9020,0.984811529933481,467,0.14179600886918,6.1463292576689,6.89770494312864,7.83161727635261,7.44615384615385,506.723835509647,26,5131,0,0,0,0,9 +"8480",2012,29127,"MO","29","127",28753,0.928876986749209,1918,0.130525510381525,7.55903825544338,8.13094230223188,9.03717675296699,6.28461538461538,404.956180114838,67,16545,0,0,0,0,9 +"8481",2012,29131,"MO","29","131",24573,0.979286208440158,1310,0.138159768851992,7.1777824161952,7.96485088744731,8.85566343070012,9.33076923076923,489.639511779733,69,14092,0,0,0,0,9 +"8482",2012,29133,"MO","29","133",14288,0.747200447928332,910,0.12297032474804,6.8134445995109,7.5522372875608,8.21066803116298,8.16923076923077,698.080279232112,60,8595,0,0,0,0,9 +"8483",2012,29135,"MO","29","135",15674,0.950363659563609,941,0.115541661350006,6.84694313958538,7.64539769942863,8.321664807135,6.80769230769231,315.560391730141,29,9190,0,0,0,0,9 +"8484",2012,29137,"MO","29","137",8691,0.958347716028075,419,0.149464963755609,6.03787091992214,6.81014245011514,7.75705114203201,7.89230769230769,228.310502283105,11,4818,0,0,0,0,9 +"8485",2012,29139,"MO","29","139",11971,0.971932169409406,597,0.14276167404561,6.3919171133926,7.18083119904456,8.09162741160107,8.10769230769231,421.496311907271,28,6643,0,0,0,0,9 +"8486",2012,29141,"MO","29","141",20079,0.975994820459186,1002,0.151800388465561,6.90975328164481,7.59085212368858,8.57243866564222,10.2538461538462,607.533414337789,65,10699,0,0,0,0,9 +"8487",2012,29143,"MO","29","143",18468,0.826456573532597,1078,0.13872644574399,6.98286275146894,7.72001794043224,8.61195776786066,8.34615384615385,779.123251666197,83,10653,0,0,0,0,9 +"8488",2012,29145,"MO","29","145",58651,0.931169119026104,3717,0.127295357282911,8.22067217029725,8.82849412946665,9.71854255753546,6.35384615384615,406.393109513845,134,32973,0,0,0,0,9 +"8489",2012,29147,"MO","29","147",23336,0.9516198148783,4708,0.0993315049708605,8.45701846838017,7.61085279039525,8.80866806210672,5.76923076923077,226.950354609929,32,14100,0,0,0,0,9 +"8490",2012,29149,"MO","29","149",10973,0.974482821470883,590,0.150824751663173,6.38012253689976,7.05098944706805,8.00603417874901,8.13076923076923,582.847626977519,35,6005,0,0,0,0,9 +"8491",2012,29151,"MO","29","151",13848,0.990323512420566,900,0.123700173310225,6.80239476332431,7.46450983463653,8.22174772834662,5.19230769230769,377.500943752359,30,7947,0,0,0,0,9 +"8492",2012,29153,"MO","29","153",9600,0.984791666666667,442,0.168541666666667,6.0913098820777,6.8134445995109,7.85438121065236,10.5076923076923,563.325563325563,29,5148,0,0,0,0,9 +"8493",2012,29155,"MO","29","155",18081,0.718212488247331,1169,0.12383164647973,7.06390396147207,7.66387725870347,8.57187075270693,9.93076923076923,909.181736437207,91,10009,0,0,0,0,9 +"8494",2012,29157,"MO","29","157",18991,0.981517560949924,1065,0.132062555947554,6.97073007814353,7.75147531802146,8.58485183989005,5.29230769230769,403.447643498991,44,10906,0,0,0,0,9 +"8495",2012,29159,"MO","29","159",42299,0.94240998605168,2835,0.121775928508948,7.94979721616185,8.46821300919452,9.40029935589935,7.29230769230769,391.655672823219,95,24256,0,0,0,0,9 +"8496",2012,29161,"MO","29","161",45248,0.927201202263083,5629,0.114060289957567,8.63568708546403,8.45169420918354,9.44904226220624,7.3,440.134278254383,118,26810,0,0,0,0,9 +"8497",2012,29163,"MO","29","163",18554,0.913441845424167,1249,0.125794976824404,7.13009851012558,7.72621265050753,8.42945427710823,7.07692307692308,439.58015609581,49,11147,0,0,0,0,9 +"8498",2012,29165,"MO","29","165",92203,0.892172705877249,5325,0.130440441200395,8.58016799057763,9.45203086057697,10.2614416779732,5.66923076923077,246.978918585164,140,56685,0,0,0,0,9 +"8499",2012,29167,"MO","29","167",31088,0.971082089552239,2630,0.115961142563047,7.87473912517181,8.13798045445214,9.06658546833104,7.96923076923077,345.777413116099,59,17063,0,0,0,0,9 +"8500",2012,29169,"MO","29","169",53521,0.813325610508025,8099,0.0720838549354459,8.99949587624899,8.72566970568704,9.54395137631636,8.39230769230769,292.271720403643,95,32504,0,0,0,0,9 +"8501",2012,29171,"MO","29","171",4948,0.987469684721099,232,0.140662894098626,5.44673737166631,6.23832462503951,7.15773548424991,6.15384615384615,575.594781273983,15,2606,0,0,0,0,9 +"8502",2012,29173,"MO","29","173",10230,0.978592375366569,469,0.156109481915934,6.15060276844628,7.09589322109753,7.9755646584952,6.59230769230769,306.487314830581,18,5873,0,0,0,0,9 +"8503",2012,29175,"MO","29","175",25337,0.921971819868177,1789,0.120574653668548,7.48941208350872,8.10741881171997,8.82995804423548,9.00769230769231,452.044025157233,69,15264,0,0,0,0,9 +"8504",2012,29177,"MO","29","177",23081,0.972098262640267,1240,0.135176118885664,7.12286665859908,7.9359451033537,8.80056599227992,8.46153846153846,520.636836942579,69,13253,0,0,0,0,9 +"8505",2012,29179,"MO","29","179",6549,0.977859215147351,301,0.142311803328752,5.70711026474888,6.58063913728495,7.48324441607385,11.2923076923077,422.297297297297,15,3552,0,0,0,0,9 +"8506",2012,29181,"MO","29","181",14032,0.977978905359179,841,0.132554161915621,6.73459165997295,7.38398945797851,8.28677323113125,10.7769230769231,657.640232108317,51,7755,0,0,0,0,9 +"8507",2012,29183,"MO","29","183",369175,0.921627954222252,22508,0.120582379630257,10.0216260805532,10.8098491533324,11.6316147565193,5.76923076923077,245.540030670018,546,222367,0,0,0,0,9 +"8508",2012,29185,"MO","29","185",9533,0.978915346690444,420,0.157872652889961,6.04025471127741,6.90675477864855,7.81561053203519,8.17692307692308,605.587028716546,31,5119,0,0,0,0,9 +"8509",2012,29186,"MO","29","186",17867,0.979459338445178,995,0.150165108859909,6.90274273715859,7.62705741701893,8.52813313145457,7.52307692307692,530.529564965757,55,10367,0,0,0,0,9 +"8510",2012,29187,"MO","29","187",65811,0.943808785765298,4688,0.121104374648615,8.45276133125685,9.07429152751291,9.77741399528076,9.16923076923077,568.993546480122,231,40598,0,0,0,0,9 +"8511",2012,29189,"MO","29","189",1000975,0.713049776467944,61459,0.135346037613327,11.0261255648069,11.6841439434195,12.6445985074981,6.68461538461538,339.486598588468,2002,589714,0,0,0,0,9 +"8512",2012,29195,"MO","29","195",23547,0.91183590266276,1902,0.125281352189239,7.55066124310534,7.85515700588134,8.80282315974189,6.82307692307692,391.15390401685,52,13294,0,0,0,0,9 +"8513",2012,29201,"MO","29","201",39177,0.872782499936187,2447,0.131224953416545,7.80261806344267,8.4525479979227,9.36220272128543,7.20769230769231,558.309884318192,125,22389,0,0,0,0,9 +"8514",2012,29203,"MO","29","203",8333,0.976599063962558,476,0.154686187447498,6.16541785423142,6.76619171466035,7.74889133725553,11.3615384615385,653.456998313659,31,4744,0,0,0,0,9 +"8515",2012,29205,"MO","29","205",6213,0.985353291485595,279,0.139385160148077,5.63121178182137,6.47389069635227,7.40853056689463,6.2,510.204081632653,17,3332,0,0,0,0,9 +"8516",2012,29207,"MO","29","207",29816,0.979474107861551,1798,0.132512744834988,7.49443021503157,8.20193435119422,9.06126014896203,8.94615384615385,583.967439391258,99,16953,0,0,0,0,9 +"8517",2012,29209,"MO","29","209",31908,0.982104801303748,1332,0.177886423467469,7.19443685110033,8.0471895621705,9.08851166361105,11.5846153846154,368.809272918862,63,17082,0,0,0,0,9 +"8518",2012,29213,"MO","29","213",52928,0.962175030229746,3787,0.134144498186215,8.2393294279018,8.69984802600031,9.65052891614273,11.6923076923077,417.75282400909,125,29922,0,0,0,0,9 +"8519",2012,29215,"MO","29","215",25799,0.947401062056669,1552,0.139036396759564,7.34729970074316,7.96901178110648,8.82246957226897,8.46153846153846,514.661068598903,76,14767,0,0,0,0,9 +"8520",2012,29217,"MO","29","217",20937,0.97363519128815,1171,0.135692792663705,7.06561336359772,7.76302130901852,8.68457030082437,6.05384615384615,521.920668058455,60,11496,0,0,0,0,9 +"8521",2012,29219,"MO","29","219",32746,0.962132779576131,1833,0.129053930251023,7.5137092478397,8.24380842366528,9.15461622320382,7.70769230769231,322.495374041766,61,18915,0,0,0,0,9 +"8522",2012,29221,"MO","29","221",25088,0.96484375,1494,0.134088010204082,7.30921236569276,8.11671562481911,8.87094386383772,10.9076923076923,519.273017775115,78,15021,0,0,0,0,9 +"8523",2012,29223,"MO","29","223",13409,0.983667685882616,699,0.148631516145872,6.54965074223381,7.26403014289953,8.23880116587155,9.31538461538462,499.25785993793,37,7411,0,0,0,0,9 +"8524",2012,29225,"MO","29","225",36451,0.976187210227429,2020,0.120161312446846,7.61085279039525,8.44569718971117,9.21253795551967,7.32307692307692,365.105637231039,75,20542,0,0,0,0,9 +"8525",2012,29229,"MO","29","229",18557,0.981031416716064,1054,0.130894002263297,6.96034772910131,7.58832367733522,8.53503310954457,8.69230769230769,555.390260835069,56,10083,0,0,0,0,9 +"8526",2012,29510,"MO","29","510",319534,0.462207464620353,26986,0.120206300424994,10.2030734919907,10.6019953393382,11.5791438243891,8.77692307692308,512.705872061661,1055,205771,0,0,0,0,9 +"8527",2012,28001,"MS","28","001",32208,0.451192250372578,1936,0.145833333333333,7.56837926783652,8.25764495820823,9.12761072437719,9.73076923076923,613.496932515337,118,19234,0,0,0,0,9 +"8528",2012,28003,"MS","28","003",37224,0.870674833440791,2226,0.126558134536858,7.70796153183549,8.49023300983345,9.28581883315209,8.53076923076923,565.605571916047,121,21393,0,0,0,0,9 +"8529",2012,28005,"MS","28","005",12937,0.580660122130324,688,0.154672644353405,6.53378883793334,7.20266119652324,8.21311069759668,9.84615384615385,635.622495509189,46,7237,0,0,0,0,9 +"8530",2012,28007,"MS","28","007",19148,0.568780029245874,1094,0.130875287236265,6.99759598298193,7.70255611326858,8.60135049942296,9.60769230769231,539.915156189742,56,10372,0,0,0,0,9 +"8531",2012,28009,"MS","28","009",8651,0.616807305513813,516,0.125419026702115,6.24610676548156,6.95749737087695,7.82364593083495,10.3923076923077,581.745235707121,29,4985,0,0,0,0,9 +"8532",2012,28011,"MS","28","011",34002,0.338480089406505,3049,0.125433798011882,8.02256894698825,8.24564690087386,9.26992916338784,10.3923076923077,649.874055415617,129,19850,0,0,0,0,9 +"8533",2012,28013,"MS","28","013",14828,0.706568653898031,854,0.13346371729161,6.74993119378857,7.51860721681525,8.365672383775,8.15384615384615,564.971751412429,47,8319,0,0,0,0,9 +"8534",2012,28015,"MS","28","015",10403,0.65750264346823,625,0.152167643948861,6.4377516497364,7.07918439460967,7.9820748750812,10.8076923076923,545.90570719603,33,6045,0,0,0,0,9 +"8535",2012,28017,"MS","28","017",17497,0.557181231068183,1179,0.1265931302509,7.07242190053737,7.65254569269392,8.52892411429194,10.0230769230769,401.243855953456,40,9969,0,0,0,0,9 +"8536",2012,28019,"MS","28","019",8427,0.692535896523081,485,0.138839444642221,6.18414889093748,6.86066367144829,7.77611547709874,8.92307692307692,363.714163457424,17,4674,0,0,0,0,9 +"8537",2012,28021,"MS","28","021",9352,0.141253207869974,1241,0.131950384944397,7.12367278520461,6.7900972355139,7.94661756324447,15.1384615384615,409.074005206396,22,5378,0,0,0,0,9 +"8538",2012,28023,"MS","28","023",16526,0.646012344184921,968,0.138448505385453,6.87523208727658,7.58018941794454,8.49801037199946,10.5538461538462,590.002145462347,55,9322,0,0,0,0,9 +"8539",2012,28025,"MS","28","025",20406,0.404635891404489,1404,0.134372243457807,7.24708058458576,7.78530518253986,8.73327184500832,13.7846153846154,599.109893871962,70,11684,0,0,0,0,9 +"8540",2012,28027,"MS","28","027",25628,0.234196972061807,1965,0.119166536600593,7.58324752430336,7.90912218321141,8.96341629199657,12.3307692307692,888.07442909501,126,14188,0,0,0,0,9 +"8541",2012,28029,"MS","28","029",29047,0.477501979550384,2156,0.132337246531483,7.67600993202889,8.07121853996986,9.05497228474248,10.8,630.953103197234,104,16483,0,0,0,0,9 +"8542",2012,28031,"MS","28","031",19447,0.634339486810305,1298,0.122589602509384,7.16857989726403,7.7341213033283,8.63052187672324,8.28461538461539,584.955671328032,64,10941,0,0,0,0,9 +"8543",2012,28033,"MS","28","033",166521,0.745203307690922,9805,0.107403870983239,9.19064773863045,10.1444317284758,10.8387766668196,6.33076923076923,398.507888621632,391,98116,0,0,0,0,9 +"8544",2012,28035,"MS","28","035",76433,0.609815132207293,9293,0.100872659715045,9.13701670755734,9.07038841154874,10.0841827875855,8.82307692307692,439.636222576613,204,46402,0,0,0,0,9 +"8545",2012,28037,"MS","28","037",7898,0.647505697644973,416,0.141048366675108,6.03068526026126,6.84374994900622,7.71690613529839,9.55384615384615,741.239892183288,33,4452,0,0,0,0,9 +"8546",2012,28039,"MS","28","039",22918,0.907758094074527,1577,0.113447944846845,7.36327958696304,8.00703401219341,8.75715452765661,10.0461538461538,438.82878111523,58,13217,0,0,0,0,9 +"8547",2012,28041,"MS","28","041",14331,0.725350638476031,1033,0.113879003558719,6.94022246911964,7.70436116791031,8.08764028777898,11.0153846153846,365.237941776775,34,9309,0,0,0,0,9 +"8548",2012,28043,"MS","28","043",21622,0.570160022199611,1438,0.132226436037369,7.27100853828099,7.88193748927207,8.79905837854645,9.03076923076923,723.705371502091,90,12436,0,0,0,0,9 +"8549",2012,28045,"MS","28","045",45296,0.90049894030378,2677,0.138268279759802,7.89245204352035,8.6278397115033,9.5027114339141,8.28461538461539,442.849507520806,116,26194,0,0,0,0,9 +"8550",2012,28047,"MS","28","047",193633,0.72000640386711,15101,0.118192663440633,9.62251624577579,10.0768524512872,10.9823052138761,8.02307692307692,522.782020398749,612,117066,0,0,0,0,9 +"8551",2012,28049,"MS","28","049",248036,0.280672966827396,21439,0.116225064103598,9.97296697230593,10.2982286972813,11.2815481087289,8.61538461538461,467.668137830506,693,148182,0,0,0,0,9 +"8552",2012,28051,"MS","28","051",18921,0.164579039162835,1586,0.112731885206913,7.36897040219479,7.60389796852188,8.62209360124161,16.2230769230769,760.118460019743,77,10130,0,0,0,0,9 +"8553",2012,28053,"MS","28","053",9213,0.238250298491262,658,0.1227613155324,6.48920493132532,6.89972310728487,7.91971976092457,18.6923076923077,581.170089112747,30,5162,0,0,0,0,9 +"8554",2012,28057,"MS","28","057",23301,0.930560920132183,1724,0.122312347109566,7.45240245122364,8.00034949532468,8.80312373082921,8.2,461.911252461003,61,13206,0,0,0,0,9 +"8555",2012,28059,"MS","28","059",140000,0.747042857142857,9061,0.124371428571429,9.11173476822206,9.81345342983215,10.6510282169264,9.26153846153846,471.556255939564,392,83129,0,0,0,0,9 +"8556",2012,28061,"MS","28","061",16558,0.46968232878367,1030,0.142710472279261,6.93731408122368,7.54115245513631,8.48528964240323,9.94615384615385,784.27159432746,73,9308,0,0,0,0,9 +"8557",2012,28063,"MS","28","063",7683,0.134322530261617,589,0.134713002733307,6.37842618365159,6.78445706263764,7.74240202181578,17.0461538461538,642.811227769445,30,4667,0,0,0,0,9 +"8558",2012,28065,"MS","28","065",12065,0.396104434314132,779,0.142975549108993,6.65801104587075,7.27586460054653,8.20083725837985,12.6769230769231,523.103748910201,36,6882,0,0,0,0,9 +"8559",2012,28067,"MS","28","067",68442,0.696195318663978,4675,0.125084012740715,8.44998444172279,8.99367578675968,9.89947953113859,7.41538461538462,519.213468705822,202,38905,0,0,0,0,9 +"8560",2012,28069,"MS","28","069",10392,0.353541185527329,796,0.129041570438799,6.67959918584438,7.12929754892937,7.98480338973441,12.8769230769231,438.374641713033,26,5931,0,0,0,0,9 +"8561",2012,28071,"MS","28","071",50266,0.728146261886762,9017,0.0956312417936577,9.10686696349991,8.5850387383113,9.67815410514888,7.56923076923077,292.303738918155,91,31132,0,0,0,0,9 +"8562",2012,28073,"MS","28","073",58167,0.783760551515464,4537,0.105678477487235,8.42002127966396,8.98594603876032,9.81416441457593,6.31538461538462,343.288705801579,120,34956,0,0,0,0,9 +"8563",2012,28075,"MS","28","075",80280,0.553861484803189,5756,0.125473343298455,8.65799806800726,9.1834829178063,10.078070913235,8.86153846153846,557.652711050103,260,46624,0,0,0,0,9 +"8564",2012,28077,"MS","28","077",12690,0.682978723404255,723,0.136327817178881,6.58340922215876,7.3004728142678,8.20876404581967,10.0923076923077,486.516541562413,35,7194,0,0,0,0,9 +"8565",2012,28079,"MS","28","079",23189,0.514381818965889,1510,0.117081374789771,7.31986492980897,7.9229859587112,8.77152528418647,9.03076923076923,583.300039952058,73,12515,0,0,0,0,9 +"8566",2012,28081,"MS","28","081",84802,0.704558854743992,5305,0.115315676517063,8.57640505104808,9.3206287258703,10.1557237780536,8.15384615384615,484.596746278989,238,49113,0,0,0,0,9 +"8567",2012,28083,"MS","28","083",30806,0.259787054469908,2515,0.116438356164384,7.83002808253384,8.13035354743124,9.14494815320913,13.7769230769231,612.44347776315,107,17471,0,0,0,0,9 +"8568",2012,28085,"MS","28","085",34848,0.685405188246097,2135,0.130452249770432,7.66622192566273,8.38571682862785,9.24792513230345,8.45384615384615,575.287643821911,115,19990,0,0,0,0,9 +"8569",2012,28087,"MS","28","087",59619,0.547543568325534,4850,0.123316392425234,8.48673398393153,8.85794198480471,9.81988852865982,8.96923076923077,360.437065417908,127,35235,0,0,0,0,9 +"8570",2012,28089,"MS","28","089",98092,0.584716388696326,5916,0.12280308282021,8.68541582383069,9.49175283141437,10.3454774353267,6.11538461538461,449.010136743996,264,58796,0,0,0,0,9 +"8571",2012,28091,"MS","28","091",26333,0.667489461891923,1665,0.128204154482968,7.41758040241454,8.06589354696427,8.95105137402562,10.0307692307692,787.245302990209,119,15116,0,0,0,0,9 +"8572",2012,28093,"MS","28","093",36567,0.512374545355102,2652,0.138622255038696,7.88306935130575,8.4189186221479,9.29550838434606,10.6384615384615,578.217463974342,128,22137,0,0,0,0,9 +"8573",2012,28095,"MS","28","095",36410,0.684949189783027,2298,0.133067838505905,7.7397944584087,8.40312823512826,9.28451977015043,10.8461538461538,483.392361443477,101,20894,0,0,0,0,9 +"8574",2012,28097,"MS","28","097",10600,0.535943396226415,670,0.136698113207547,6.50727771238501,7.04228617193974,8.0452677166078,11.4230769230769,636.515912897822,38,5970,0,0,0,0,9 +"8575",2012,28099,"MS","28","099",29747,0.612734057215854,1839,0.123407402427136,7.51697722460432,8.16479480424477,9.04617302576227,8.16923076923077,640.439158279963,105,16395,0,0,0,0,9 +"8576",2012,28101,"MS","28","101",21499,0.641378668775292,1432,0.122331271221917,7.26682734752059,7.9218984110238,8.7371316117815,7.79230769230769,580.856974492802,69,11879,0,0,0,0,9 +"8577",2012,28103,"MS","28","103",11155,0.27359928283281,812,0.129269385925594,6.69950034016168,7.11963563801764,8.09681747057232,12.8692307692308,457.413249211357,29,6340,0,0,0,0,9 +"8578",2012,28105,"MS","28","105",48853,0.59482529220314,12147,0.0862997154729495,9.40483750470027,8.34616759436413,9.64872432684146,8.24615384615385,280.836125737993,88,31335,0,0,0,0,9 +"8579",2012,28107,"MS","28","107",34427,0.494640834228948,2347,0.125628140703518,7.76089319585102,8.3291754420774,9.24532134087143,11.9153846153846,624.397177521702,123,19699,0,0,0,0,9 +"8580",2012,28109,"MS","28","109",55003,0.858971328836609,3600,0.135483519080777,8.1886891244442,8.8167050156216,9.67727680217245,8.06153846153846,579.022306597057,183,31605,0,0,0,0,9 +"8581",2012,28111,"MS","28","111",12003,0.79371823710739,730,0.133216695826043,6.59304453414244,7.29097477814298,8.1758290087146,11.2846153846154,478.607686729514,33,6895,0,0,0,0,9 +"8582",2012,28113,"MS","28","113",40091,0.459454740465441,2599,0.127859120500861,7.86288203464149,8.45169420918354,9.37458281537023,10.3076923076923,669.09156226144,149,22269,0,0,0,0,9 +"8583",2012,28115,"MS","28","115",30306,0.838612815944037,1896,0.116214610968125,7.54750168281497,8.24328252304838,9.07199742235444,7.63076923076923,430.69250821716,76,17646,0,0,0,0,9 +"8584",2012,28117,"MS","28","117",25366,0.850981628952141,2013,0.121856027753686,7.60738142563979,8.00469951054955,8.89384721767028,8.43846153846154,619.322873658134,90,14532,0,0,0,0,9 +"8585",2012,28119,"MS","28","119",7796,0.299640841457158,538,0.131862493586455,6.28785856016178,6.84481547920826,7.76429600645052,13.6769230769231,590.640617900954,26,4402,0,0,0,0,9 +"8586",2012,28121,"MS","28","121",145833,0.785981225099943,8380,0.11861512826315,9.03360319347613,9.9607181859904,10.7296785068538,5.61538461538462,399.310282239768,352,88152,0,0,0,0,9 +"8587",2012,28123,"MS","28","123",28360,0.595768688293371,2007,0.119499294781382,7.60439634879634,8.18367658262066,9.0259366489779,7.45384615384615,555.624151129769,90,16198,0,0,0,0,9 +"8588",2012,28125,"MS","28","125",4788,0.275271512113617,280,0.150793650793651,5.63478960316925,6.23048144757848,7.29369772060144,13.2769230769231,698.529411764706,19,2720,0,0,0,0,9 +"8589",2012,28127,"MS","28","127",27426,0.635346022022898,1727,0.131991540873624,7.45414107814668,8.10319175228579,8.99578483784851,8.06923076923077,560.42257150219,87,15524,0,0,0,0,9 +"8590",2012,28129,"MS","28","129",16334,0.763377005020203,1034,0.132729276356067,6.94119005506837,7.59488438721652,8.45680604140114,7.11538461538461,414.214083278831,38,9174,0,0,0,0,9 +"8591",2012,28131,"MS","28","131",18051,0.791036507672705,1392,0.124148246634535,7.23849684089437,7.70345904786717,8.56483984488359,10.1,554.615529234819,59,10638,0,0,0,0,9 +"8592",2012,28133,"MS","28","133",28415,0.258067921872251,2485,0.115256026746437,7.81802793853073,8.18255926406867,8.96200720958831,14.0692307692308,698.228882833787,123,17616,0,0,0,0,9 +"8593",2012,28135,"MS","28","135",15045,0.415952143569292,1373,0.11379195746095,7.22475340576797,7.6511201757027,8.2482674474469,11.0538461538462,641.025641025641,61,9516,0,0,0,0,9 +"8594",2012,28137,"MS","28","137",28519,0.681545636242505,2111,0.125810862933483,7.65491704784832,8.13446757027756,9.05169627853659,9.04615384615385,518.806744487678,84,16191,0,0,0,0,9 +"8595",2012,28139,"MS","28","139",21914,0.828648352651273,1491,0.123026375832801,7.30720231476474,7.91534816926308,8.75416074932352,9.86153846153846,493.159401845371,62,12572,0,0,0,0,9 +"8596",2012,28141,"MS","28","141",19617,0.965489116582556,1142,0.135596676352144,7.04053639021596,7.79934339821592,8.63710728808157,10.1076923076923,616.500453309157,68,11030,0,0,0,0,9 +"8597",2012,28143,"MS","28","143",10438,0.232994826595133,737,0.113144280513508,6.60258789218934,7.16626597413364,8.08917567883756,12.0846153846154,734.189888202903,44,5993,0,0,0,0,9 +"8598",2012,28145,"MS","28","145",27339,0.840886645451553,1698,0.119572771498592,7.43720636687129,8.19891444498699,8.97499771320498,7.87692307692308,415.70734203121,65,15636,0,0,0,0,9 +"8599",2012,28147,"MS","28","147",15069,0.544628044329418,919,0.131793748755724,6.82328612235569,7.46965417293213,8.35585004100747,11.0230769230769,585.704040162563,49,8366,0,0,0,0,9 +"8600",2012,28149,"MS","28","149",48226,0.507630738605731,2933,0.13648239538838,7.98378106897745,8.68084148294457,9.60258514191349,8.83846153846154,527.135073940423,149,28266,0,0,0,0,9 +"8601",2012,28151,"MS","28","151",50035,0.271969621265114,3425,0.131388028380134,8.13885675069633,8.6427680143243,9.64251232291291,14.2538461538462,691.317758003332,195,28207,0,0,0,0,9 +"8602",2012,28153,"MS","28","153",20628,0.600397517936785,1364,0.125169672290091,7.21817683840341,7.79975331828725,8.7165357325445,10.9076923076923,610.842453550522,72,11787,0,0,0,0,9 +"8603",2012,28155,"MS","28","155",10090,0.791575817641229,562,0.132804757185332,6.33150184989369,7.07242190053737,7.97315543344413,8.96153846153846,606.796116504854,35,5768,0,0,0,0,9 +"8604",2012,28157,"MS","28","157",9460,0.287949260042283,674,0.134038054968288,6.51323011091231,7.01031186730723,7.83755436088108,12.0538461538462,609.013398294762,35,5747,0,0,0,0,9 +"8605",2012,28159,"MS","28","159",18981,0.520889310362995,1104,0.136083451872926,7.00669522683704,7.70706265537047,8.60153433984999,11.2538461538462,570.947210782478,61,10684,0,0,0,0,9 +"8606",2012,28161,"MS","28","161",12391,0.606165765474941,772,0.145024614639658,6.64898455002478,7.30182234213793,8.21039625510477,9.89230769230769,684.053014108593,48,7017,0,0,0,0,9 +"8607",2012,28163,"MS","28","163",28336,0.413961038961039,1812,0.108730942970073,7.50218648660292,8.29804166137157,8.84505705350085,11.0076923076923,486.505270473763,84,17266,0,0,0,0,9 +"8608",2012,37001,"NC","37","001",153299,0.769522306081579,11014,0.123869040241619,9.30692246982243,9.9023869470921,10.7546209051529,8.73846153846154,415.520180021612,373,89767,0,0,0,0,9 +"8609",2012,37003,"NC","37","003",36926,0.92411850728484,1960,0.137301630287602,7.58069975222456,8.52813313145457,9.2588447810358,9.79230769230769,463.813372520206,101,21776,0,0,0,0,9 +"8610",2012,37005,"NC","37","005",10944,0.969480994152047,505,0.160910087719298,6.22455842927536,7.16703787691222,8.00503334463711,10.6769230769231,342.40991358226,21,6133,0,0,0,0,9 +"8611",2012,37007,"NC","37","007",26315,0.484552536576097,1845,0.135740072202166,7.52023455647463,8.15248607578024,8.8731879040501,11.1769230769231,470.267928964792,76,16161,0,0,0,0,9 +"8612",2012,37009,"NC","37","009",26921,0.980758515656922,1301,0.158797964414398,7.1708884785125,8.08271113423758,8.95053283629038,10.6846153846154,423.620025673941,66,15580,0,0,0,0,9 +"8613",2012,37011,"NC","37","011",17617,0.944996310382017,1246,0.137197025600272,7.1276936993474,7.79975331828725,8.4156033356546,10.9076923076923,376.942171554657,41,10877,0,0,0,0,9 +"8614",2012,37013,"NC","37","013",47442,0.723093461489819,2454,0.156759833059315,7.80547462527086,8.61086566727887,9.53906841386396,10.8461538461538,588.786799174948,157,26665,0,0,0,0,9 +"8615",2012,37015,"NC","37","015",20490,0.362371888726208,1319,0.150317227916057,7.18462915271731,7.74759683869289,8.68406264365127,11.6692307692308,491.038546525902,60,12219,0,0,0,0,9 +"8616",2012,37017,"NC","37","017",34805,0.609883637408418,2014,0.152305703203563,7.60787807327851,8.34759040703006,9.25913053614561,13.0153846153846,600.482354678348,122,20317,0,0,0,0,9 +"8617",2012,37019,"NC","37","019",112039,0.862869179482145,4865,0.177741679236694,8.4898219946201,9.41938499891089,10.3977568739864,11.5230769230769,480.861091650213,302,62804,0,0,0,0,9 +"8618",2012,37021,"NC","37","021",243761,0.909099486792391,14888,0.140691086761213,9.60831079832209,10.3777632933045,11.2450460198146,7.43076923076923,380.844340004862,564,148092,0,0,0,0,9 +"8619",2012,37023,"NC","37","023",89965,0.877085533262936,5674,0.138653920969266,8.6436496153688,9.33007705357852,10.1751926704648,10.1,511.23189782964,269,52618,0,0,0,0,9 +"8620",2012,37025,"NC","37","025",184358,0.797952895995834,10109,0.11040475596394,9.22118139515406,10.2586763927696,10.9326247105919,9.22307692307692,317.524596651726,345,108653,0,0,0,0,9 +"8621",2012,37027,"NC","37","027",82094,0.93273564450508,4764,0.140704558189393,8.46884293047519,9.33406129896594,10.0966666193309,11.9,526.077843080843,256,48662,0,0,0,0,9 +"8622",2012,37031,"NC","37","031",67792,0.912290535756431,3584,0.160918692471088,8.18423477409482,8.96966910379376,9.91734114682466,9.16153846153846,442.97619941437,177,39957,0,0,0,0,9 +"8623",2012,37033,"NC","37","033",23044,0.644940114563444,1342,0.160258635653532,7.20191631753163,7.96589273508453,8.80836915312227,10.9076923076923,549.607423269093,77,14010,0,0,0,0,9 +"8624",2012,37035,"NC","37","035",154739,0.862665520650903,9214,0.131834896180019,9.12847934549586,9.95953701838715,10.7426164231111,10.3923076923077,452.294957789463,412,91091,0,0,0,0,9 +"8625",2012,37037,"NC","37","037",64551,0.830304720298679,2808,0.153088255797741,7.9402277651457,9.01554129367111,9.84065424336456,8.03076923076923,322.307503209418,118,36611,0,0,0,0,9 +"8626",2012,37039,"NC","37","039",27044,0.958512054429818,1200,0.17131341517527,7.09007683577609,7.97899637085411,8.93392789178263,11.2230769230769,554.65367965368,82,14784,0,0,0,0,9 +"8627",2012,37041,"NC","37","041",14696,0.636159499183451,740,0.155212302667392,6.60665018619822,7.33106030521863,8.36357570275064,11.1461538461538,453.598136569817,37,8157,0,0,0,0,9 +"8628",2012,37043,"NC","37","043",10660,0.978517823639775,436,0.176078799249531,6.07764224334903,7.04403289727469,7.99463231143183,10.6153846153846,469.646895112193,27,5749,0,0,0,0,9 +"8629",2012,37045,"NC","37","045",97332,0.773692105371307,6420,0.137724489376567,8.76717339668401,9.41572720170113,10.2861274700023,11.3076923076923,614.547830540202,348,56627,0,0,0,0,9 +"8630",2012,37047,"NC","37","047",57546,0.645396726097383,3693,0.137142459945087,8.21419441485256,8.86262516940892,9.70765513371423,12.5461538461538,620.841254752852,209,33664,0,0,0,0,9 +"8631",2012,37049,"NC","37","049",105381,0.737751587098244,11283,0.119309932530532,9.33105244713845,9.31388924760474,10.2986329282374,9.71538461538461,406.127654044219,250,61557,0,0,0,0,9 +"8632",2012,37051,"NC","37","051",330161,0.555180654286848,35262,0.0984640826748162,10.4705611758407,10.5798445637886,11.5273706294017,10.7769230769231,421.940928270042,831,196947,0,0,0,0,9 +"8633",2012,37053,"NC","37","053",24030,0.92334581772784,1246,0.142155638784852,7.1276936993474,8.08116577772543,8.90557995798965,8.76923076923077,407.913522333265,60,14709,0,0,0,0,9 +"8634",2012,37055,"NC","37","055",34389,0.954578498938614,1521,0.165110936636715,7.32712329225929,8.4096079807363,9.26842058305271,13.0307692307692,408.661750199634,87,21289,0,0,0,0,9 +"8635",2012,37057,"NC","37","057",163064,0.882714762301918,8953,0.133009125251435,9.09974395063416,10.0173964266439,10.7971031353711,9.92307692307692,449.456906238295,432,96116,0,0,0,0,9 +"8636",2012,37059,"NC","37","059",41285,0.917403415284001,1977,0.143926365508054,7.58933582317062,8.59895749321888,9.4038491181607,9.3,354.579991557619,84,23690,0,0,0,0,9 +"8637",2012,37061,"NC","37","061",59449,0.707934532119968,3702,0.129808743628993,8.21662849313344,8.923591197573,9.75307155675316,9.34615384615385,412.299294445574,142,34441,0,0,0,0,9 +"8638",2012,37063,"NC","37","063",282757,0.536807223163352,21558,0.111325272230219,9.97850225634157,10.6212541722776,11.455539966525,7.57692307692308,259.74025974026,462,177870,0,0,0,0,9 +"8639",2012,37065,"NC","37","065",55667,0.403722133400399,3722,0.144035065658289,8.2220164372022,8.74544368009859,9.76864100976636,14.6384615384615,596.102171294437,193,32377,0,0,0,0,9 +"8640",2012,37067,"NC","37","067",357644,0.687647493037769,24536,0.123631320531031,10.1078967057941,10.7479385071872,11.6251642708601,9.08461538461538,367.572560237131,780,212203,0,0,0,0,9 +"8641",2012,37069,"NC","37","069",61405,0.705496295089976,3458,0.135363569741878,8.14844566624324,9.05462179697676,9.8137269453285,9.94615384615385,445.562146352131,163,36583,0,0,0,0,9 +"8642",2012,37071,"NC","37","071",207915,0.817598537864031,12986,0.128845922612606,9.47162713306843,10.2872181684983,11.0697896418408,10.7076923076923,520.636655070182,648,124463,0,0,0,0,9 +"8643",2012,37073,"NC","37","073",11888,0.647291386271871,660,0.143506056527591,6.49223983502047,7.26403014289953,8.1820001362934,7.86153846153846,472.373318064701,33,6986,0,0,0,0,9 +"8644",2012,37075,"NC","37","075",8703,0.915201654601861,478,0.147190623922785,6.16961073249146,6.87419849545329,7.81197342962202,18.1307692307692,881.870385561936,43,4876,0,0,0,0,9 +"8645",2012,37077,"NC","37","077",57573,0.655949837597485,3606,0.133951678738297,8.19035440376326,9.01286456741055,9.73341072215861,8.18461538461538,385.535761765488,145,37610,0,0,0,0,9 +"8646",2012,37079,"NC","37","079",21198,0.591423719218794,1335,0.133880554769318,7.19668657083435,7.97933889526233,8.63852547658376,8.81538461538462,332.025354663447,44,13252,0,0,0,0,9 +"8647",2012,37081,"NC","37","081",500618,0.600483802020702,39591,0.119444366762681,10.5863570986849,11.1112680982049,11.9796926124546,9.77692307692308,328.395844059831,995,302988,0,0,0,0,9 +"8648",2012,37083,"NC","37","083",53739,0.410465397569735,3428,0.144904073391764,8.13973227971767,8.7281022050621,9.68551809249565,13.8538461538462,562.1925509487,176,31306,0,0,0,0,9 +"8649",2012,37085,"NC","37","085",122250,0.738372188139059,8509,0.101398773006135,9.04887970584956,9.75475549873573,10.5006743419502,10.8769230769231,386.666294424747,277,71638,0,0,0,0,9 +"8650",2012,37087,"NC","37","087",58666,0.97586336208366,3093,0.150393754474483,8.03689677268507,8.85594853405202,9.74992836440983,9.33846153846154,504.643315715608,169,33489,0,0,0,0,9 +"8651",2012,37089,"NC","37","089",107811,0.943911103690718,4861,0.144716216341561,8.48899945704546,9.46653177733659,10.31281187097,7.69230769230769,399.262379671454,236,59109,0,0,0,0,9 +"8652",2012,37091,"NC","37","091",24619,0.364515211828263,1716,0.146756570128762,7.44775128004791,7.95402108727804,8.87290767425985,11.0307692307692,535.093815149409,77,14390,0,0,0,0,9 +"8653",2012,37093,"NC","37","093",50499,0.517535000693083,3407,0.0944573159864552,8.13358741766097,8.8486528862139,9.64859530290734,10.9307692307692,351.326503808773,107,30456,0,0,0,0,9 +"8654",2012,37097,"NC","37","097",162729,0.842179328822767,9405,0.122639480363058,9.14899674173513,10.0491883467077,10.7936601562552,10.1692307692308,372.352562905802,359,96414,0,0,0,0,9 +"8655",2012,37099,"NC","37","099",40661,0.862915324266496,5122,0.131846240869629,8.54130026675947,8.35936910622267,9.40615383561844,10.8461538461538,320.286177779626,77,24041,0,0,0,0,9 +"8656",2012,37101,"NC","37","101",174387,0.819281253763182,9490,0.114136948281695,9.15799389160397,10.223794111563,10.8705094208166,8.62307692307692,371.21893216554,384,103443,0,0,0,0,9 +"8657",2012,37103,"NC","37","103",10065,0.663089915548932,659,0.160059612518629,6.49072353450251,6.96979066990159,8.02551638648901,10.1769230769231,521.973396194646,31,5939,0,0,0,0,9 +"8658",2012,37105,"NC","37","105",59257,0.761985925713418,3606,0.122685927400982,8.19035440376326,8.9445502459405,9.75481351515439,11.6307692307692,390.295051408266,134,34333,0,0,0,0,9 +"8659",2012,37107,"NC","37","107",59132,0.569420956504093,3473,0.143796928904823,8.15277405274407,8.82232217747174,9.77480154490808,10.0461538461538,521.466030636129,176,33751,0,0,0,0,9 +"8660",2012,37109,"NC","37","109",78743,0.927726909058583,4368,0.136697865207066,8.38206051742474,9.34031544839793,10.081131519779,9.83846153846154,403.091060985798,193,47880,0,0,0,0,9 +"8661",2012,37111,"NC","37","111",45005,0.93945117209199,2488,0.143695144983891,7.81923445385907,8.70781355102489,9.47990938900104,11.0769230769231,461.486511837317,123,26653,0,0,0,0,9 +"8662",2012,37113,"NC","37","113",33816,0.967914596640643,1625,0.158327418973267,7.39326309476384,8.12118324207883,9.13302726887351,10.9,523.704520396913,95,18140,0,0,0,0,9 +"8663",2012,37115,"NC","37","115",20913,0.974848180557548,1453,0.153062688280017,7.28138566357028,7.83201418050547,8.72631895096224,9.98461538461538,330.824580266314,40,12091,0,0,0,0,9 +"8664",2012,37117,"NC","37","117",23851,0.55154920129135,1367,0.163892499266278,7.22037383672395,7.88683299895506,8.88696203486613,12.3,622.163665641927,85,13662,0,0,0,0,9 +"8665",2012,37119,"NC","37","119",967418,0.608202452300867,65496,0.102923451910136,11.0897443510563,11.9249357731144,12.6660385651053,8.95384615384615,254.968190463698,1555,609880,0,0,0,0,9 +"8666",2012,37121,"NC","37","121",15327,0.977360214001435,791,0.154498597246689,6.67329796776765,7.50823877467866,8.39231000926955,12.5230769230769,628.212450028555,55,8755,0,0,0,0,9 +"8667",2012,37123,"NC","37","123",27513,0.77705084868971,1584,0.142260022534802,7.36770857237437,8.13739583005665,8.98769669570362,10.8307692307692,384.22131147541,60,15616,0,0,0,0,9 +"8668",2012,37125,"NC","37","125",90205,0.836849398592096,4153,0.135413779723962,8.33158624363075,9.26558584620216,10.1343611499122,9.01538461538462,454.027158702187,219,48235,0,0,0,0,9 +"8669",2012,37127,"NC","37","127",95225,0.585423995799422,5888,0.14011026516146,8.68067166040871,9.41197423980251,10.2734981796599,11.8,416.769681771624,236,56626,0,0,0,0,9 +"8670",2012,37129,"NC","37","129",209118,0.823683279296856,19878,0.125742403810289,9.89736887152795,10.207510384576,11.1060844106821,8.83846153846154,342.315928436015,446,130289,0,0,0,0,9 +"8671",2012,37131,"NC","37","131",21287,0.403156856297271,1232,0.160285620331658,7.11639414409346,7.67832635650689,8.71226643213535,11.7461538461538,587.651051150472,71,12082,0,0,0,0,9 +"8672",2012,37133,"NC","37","133",190813,0.790999565019155,38155,0.0709542850853978,10.5494120897237,9.81449239096457,10.8463812662048,8.19230769230769,267.579822244401,311,116227,0,0,0,0,9 +"8673",2012,37135,"NC","37","135",137870,0.788264306955828,17181,0.11863349532168,9.75155940106197,9.73317361486645,10.722540247483,6.26923076923077,188.485263879369,165,87540,0,0,0,0,9 +"8674",2012,37137,"NC","37","137",13016,0.782267977873387,638,0.174016594960049,6.45833828334479,7.22766249872865,8.16080392095467,9.24615384615385,402.468473302925,30,7454,0,0,0,0,9 +"8675",2012,37139,"NC","37","139",40411,0.591175669990844,3388,0.122169706268095,8.12799505577195,8.46505743699571,9.40878131065002,10.2769230769231,400.198036141596,97,24238,0,0,0,0,9 +"8676",2012,37141,"NC","37","141",53730,0.801377256653639,3037,0.142359947887586,8.01862546504575,8.87192625111763,9.66440514992041,10.6846153846154,400,128,32000,0,0,0,0,9 +"8677",2012,37143,"NC","37","143",13590,0.738116261957322,654,0.154010301692421,6.4831073514572,7.23345541862144,8.26075135470051,10.6769230769231,441.58972300281,33,7473,0,0,0,0,9 +"8678",2012,37145,"NC","37","145",39188,0.709426355006635,2223,0.14593753189752,7.7066129139642,8.52674740422105,9.37814033225112,11.3,460.29424417104,107,23246,0,0,0,0,9 +"8679",2012,37147,"NC","37","147",173021,0.617740043116153,24377,0.107819282052468,10.1013953437821,9.94208307029549,10.9606526512901,9.33076923076923,344.4603916848,372,107995,0,0,0,0,9 +"8680",2012,37149,"NC","37","149",20251,0.940398005036788,894,0.16897930966372,6.79570577517351,7.67415292128168,8.63586472113374,8.69230769230769,447.815755803327,49,10942,0,0,0,0,9 +"8681",2012,37151,"NC","37","151",142274,0.912288963549208,8367,0.129454432995488,9.0320506762956,9.87411023382545,10.6450676906177,10.1846153846154,435.314433731472,363,83388,0,0,0,0,9 +"8682",2012,37153,"NC","37","153",46364,0.636593046329048,3201,0.131653869381417,8.07121853996986,8.67214355141406,9.52464003233223,13.7,508.493312207524,138,27139,0,0,0,0,9 +"8683",2012,37155,"NC","37","155",135458,0.329629848366283,10465,0.120960002362356,9.2557916348801,9.75903964817025,10.6170009270489,13.5538461538462,585.398134361598,460,78579,0,0,0,0,9 +"8684",2012,37157,"NC","37","157",92722,0.791462651797847,5184,0.145165117232156,8.55333223803211,9.3933283733133,10.2418152096568,11.5384615384615,510.671010725922,279,54634,0,0,0,0,9 +"8685",2012,37159,"NC","37","159",137505,0.814341296680121,8959,0.131762481364314,9.10041389259758,9.77446028679989,10.6099950847979,11.1230769230769,524.847278046142,427,81357,0,0,0,0,9 +"8686",2012,37161,"NC","37","161",67227,0.883246314724739,3790,0.145685513261041,8.24012129807647,9.0415666277275,9.89101003102502,13.5,492.052451245588,191,38817,0,0,0,0,9 +"8687",2012,37163,"NC","37","163",63710,0.67785277036572,3762,0.129179092764087,8.23270600986098,9.0295376611515,9.81656708050543,9.56923076923077,441.826215022091,162,36666,0,0,0,0,9 +"8688",2012,37165,"NC","37","165",36094,0.472239153321882,2487,0.138444062725107,7.8188324438034,8.41582469702795,9.26245832623829,17.5384615384615,679.948647235034,143,21031,0,0,0,0,9 +"8689",2012,37167,"NC","37","167",60464,0.858874702302196,3965,0.13474133368616,8.28526113406895,8.94923531437485,9.76909864949748,10.1846153846154,440.516273849607,157,35640,0,0,0,0,9 +"8690",2012,37169,"NC","37","169",46716,0.947619659217399,2459,0.14562462539601,7.80751004221619,8.73536440110389,9.54129742790929,9.53076923076923,468.307558266173,129,27546,0,0,0,0,9 +"8691",2012,37171,"NC","37","171",73292,0.943950226491295,4204,0.13664520002183,8.34379173199684,9.17398754251038,9.96199228190869,9.87692307692308,441.805225653207,186,42100,0,0,0,0,9 +"8692",2012,37173,"NC","37","173",14054,0.680873772591433,939,0.136402447701722,6.84481547920826,7.39939808333135,8.32239411311117,15.1,709.926516378129,57,8029,0,0,0,0,9 +"8693",2012,37175,"NC","37","175",32849,0.946908581691985,1881,0.153216231848763,7.53955882930103,8.10741881171997,9.09470502837726,8.90769230769231,410.096459308034,71,17313,0,0,0,0,9 +"8694",2012,37179,"NC","37","179",208106,0.846506107464465,10699,0.10520600078806,9.27790555813861,10.3997983439439,11.0141436886924,8.04615384615385,263.188775082561,314,119306,0,0,0,0,9 +"8695",2012,37181,"NC","37","181",45104,0.470113515431004,2995,0.135531216743526,8.00469951054955,8.6213730103259,9.53336545669996,13.8230769230769,592.107825951463,152,25671,0,0,0,0,9 +"8696",2012,37183,"NC","37","183",952266,0.706637641163288,62480,0.103547748213209,11.0426017845136,11.9263851974041,12.6300159748841,7.31538461538462,206.061545512138,1223,593512,0,0,0,0,9 +"8697",2012,37185,"NC","37","185",20750,0.409542168674699,1253,0.159951807228916,7.13329595489607,7.69712131728263,8.64117917119723,12.7461538461538,461.409395973154,55,11920,0,0,0,0,9 +"8698",2012,37187,"NC","37","187",12662,0.484125730532301,729,0.165297741273101,6.59167373200866,7.21081845347222,8.23190824356418,15.7076923076923,437.050613280699,31,7093,0,0,0,0,9 +"8699",2012,37189,"NC","37","189",52079,0.96486107644156,11654,0.115459206205956,9.36340474770302,8.4675826908629,9.70387740560463,7.56153846153846,204.290091930541,68,33286,0,0,0,0,9 +"8700",2012,37191,"NC","37","191",124587,0.646207068153178,9515,0.122789697159415,9.16062477973025,9.63952200670166,10.5207790807925,8.68461538461538,444.697524336343,328,73758,0,0,0,0,9 +"8701",2012,37193,"NC","37","193",68910,0.943622115803222,3662,0.142475692932811,8.20576472523446,9.07692325853583,9.89500164888583,10.6230769230769,488.770804090636,195,39896,0,0,0,0,9 +"8702",2012,37195,"NC","37","195",81393,0.577297802022287,5054,0.136129642598258,8.52793528794814,9.22650895313777,10.1215381567843,13.3,441.533748811662,209,47335,0,0,0,0,9 +"8703",2012,37197,"NC","37","197",38149,0.952030197383942,2098,0.135521245642088,7.64873978895624,8.53089883847235,9.31919477688827,9.41538461538462,407.09245521983,90,22108,0,0,0,0,9 +"8704",2012,37199,"NC","37","199",17625,0.976,888,0.154893617021277,6.78897174299217,7.68708015578313,8.52018870039604,10.9384615384615,511.637239165329,51,9968,0,0,0,0,9 +"8705",2012,38003,"ND","38","003",11009,0.9669361431556,776,0.149423199200654,6.65415252018322,7.01121398735037,7.9912539298402,3.29230769230769,499.034127495171,31,6212,1,0,0,0,9 +"8706",2012,38005,"ND","38","005",6771,0.431989366415596,425,0.115640230394329,6.05208916892442,6.48616078894409,7.43366654016617,6.68461538461538,782.83560452305,27,3449,1,0,0,0,9 +"8707",2012,38015,"ND","38","015",85787,0.9352232855794,6279,0.12848100528052,8.74496601111411,9.23024103368252,10.1631944431574,2.7,262.210993722248,137,52248,1,0,0,0,9 +"8708",2012,38017,"ND","38","017",157534,0.925831883910775,19647,0.106573818985108,9.88567993388616,9.86016242779775,10.7996776127033,2.81538461538462,225.214052563174,227,100793,1,0,0,0,9 +"8709",2012,38035,"ND","38","035",67651,0.915078860622903,11343,0.108187609939247,9.33635609255904,8.80612448326845,9.92529796679998,3.23076923076923,271.57027456215,118,43451,1,0,0,0,9 +"8710",2012,38053,"ND","38","053",7989,0.80460633370885,507,0.128676930779822,6.22851100359118,6.7428806357919,7.65964295456468,1.46923076923077,338.91124761703,16,4721,1,0,0,0,9 +"8711",2012,38055,"ND","38","055",9388,0.921815083084789,335,0.177034512143161,5.81413053182507,6.87109129461055,7.81923445385907,4.21538461538462,455.407969639469,24,5270,1,0,0,0,9 +"8712",2012,38057,"ND","38","057",8474,0.96211942412084,319,0.167099362756667,5.76519110278484,6.71901315438526,7.76811037852599,5.12307692307692,237.812128418549,12,5046,1,0,0,0,9 +"8713",2012,38059,"ND","38","059",28092,0.9426883098391,1537,0.136408942047558,7.3375877435386,8.12710918534638,9.01602720232985,3.43846153846154,310.392168566824,52,16753,1,0,0,0,9 +"8714",2012,38061,"ND","38","061",8739,0.67822405309532,693,0.129534271655796,6.5410299991899,6.95272864462487,7.72223474470961,1.57692307692308,490.01130795326,26,5306,1,0,0,0,9 +"8715",2012,38067,"ND","38","067",7221,0.966763606148733,272,0.169921063564603,5.605802066296,6.55819780281227,7.56527528189893,6.13846153846154,319.488817891374,13,4069,1,0,0,0,9 +"8716",2012,38071,"ND","38","071",11588,0.892129789437349,729,0.1427338626165,6.59167373200866,7.05961762829138,8.07620452723903,3.96153846153846,317.796610169492,21,6608,1,0,0,0,9 +"8717",2012,38077,"ND","38","077",16231,0.9561333251186,1525,0.140287104922679,7.32974968904151,7.37086016653672,8.39276311303806,3.5,273.080558764836,26,9521,1,0,0,0,9 +"8718",2012,38079,"ND","38","079",14406,0.204775787866167,1006,0.103845619880605,6.91373735065968,7.3356339819272,8.279189777195,10.1,626.959247648903,48,7656,1,0,0,0,9 +"8719",2012,38085,"ND","38","085",4331,0.131609328099746,343,0.0796582775340568,5.83773044716594,6.20455776256869,7.02642680869964,4.94615384615385,899.280575539568,20,2224,1,0,0,0,9 +"8720",2012,38089,"ND","38","089",26917,0.957127465913735,2491,0.118029498086711,7.82043951526218,7.92840602618053,8.94115288216057,1.73846153846154,209.050664043286,34,16264,1,0,0,0,9 +"8721",2012,38093,"ND","38","093",20992,0.964939024390244,1476,0.148866234756098,7.29709100516042,7.72709448477984,8.67265729404031,3.29230769230769,368.79660065742,46,12473,1,0,0,0,9 +"8722",2012,38099,"ND","38","099",11021,0.97323291897287,526,0.150258597223482,6.26530121273771,6.99484998583307,7.97762509878459,4.68461538461538,459.392945036916,28,6095,1,0,0,0,9 +"8723",2012,38101,"ND","38","101",65595,0.918057778794115,7760,0.101532128973245,8.95673761317726,8.87192625111763,9.82503940620699,2.54615384615385,237.415704796302,94,39593,1,0,0,0,9 +"8724",2012,38105,"ND","38","105",26755,0.934965427022986,2024,0.121061483834797,7.61283103040736,8.01367414283268,8.88211404420882,1.06923076923077,435.545339059948,72,16531,1,0,0,0,9 +"8725",2012,31001,"NE","31","001",31351,0.963254760613697,2543,0.131032502950464,7.84109976542212,8.11880299698004,9.07589427542326,3.71538461538462,331.945538426916,59,17774,0,0,0,0,9 +"8726",2012,31013,"NE","31","013",11270,0.935936113575865,535,0.16433007985803,6.28226674689601,7.13409372119287,8.06620756800626,3.90769230769231,429.90941194534,28,6513,0,0,0,0,9 +"8727",2012,31019,"NE","31","019",47642,0.965576592082616,5497,0.112526762100667,8.61195776786066,8.55948610360649,9.5542846234361,3.22307692307692,258.947891170941,73,28191,0,0,0,0,9 +"8728",2012,31023,"NE","31","023",8250,0.985090909090909,336,0.139757575757576,5.8171111599632,6.76503897678054,7.66387725870347,3.23846153846154,403.587443946188,18,4460,0,0,0,0,9 +"8729",2012,31025,"NE","31","025",25125,0.982248756218906,1132,0.144278606965174,7.03174125876313,8.04173471148754,8.87961160998204,4.50769230769231,247.049135328026,36,14572,0,0,0,0,9 +"8730",2012,31033,"NE","31","033",10076,0.966256450972608,485,0.131798332671695,6.18414889093748,7.12205988162914,7.95577578153419,2.70769230769231,412.017167381974,24,5825,0,0,0,0,9 +"8731",2012,31037,"NE","31","037",10550,0.92739336492891,652,0.107962085308057,6.48004456192665,7.11314210870709,7.90617884039481,3.45384615384615,276.81660899654,16,5780,0,0,0,0,9 +"8732",2012,31041,"NE","31","041",10846,0.986631016042781,470,0.143831827401807,6.1527326947041,7.08086789669078,7.94944442025063,2.78461538461538,258.933195235629,15,5793,0,0,0,0,9 +"8733",2012,31043,"NE","31","043",20711,0.879098063830815,1420,0.109507025252281,7.25841215059531,7.82204400818562,8.65084957622891,5.61538461538461,247.905624893144,29,11698,0,0,0,0,9 +"8734",2012,31045,"NE","31","045",9144,0.911745406824147,1401,0.118657042869641,7.24494154633701,6.66057514983969,7.85166117788927,3.56153846153846,390.167772142021,20,5126,0,0,0,0,9 +"8735",2012,31047,"NE","31","047",23967,0.926065006049985,1418,0.120457295447908,7.25700270709207,7.9665866976384,8.74989095553526,4.24615384615385,400.030190957808,53,13249,0,0,0,0,9 +"8736",2012,31053,"NE","31","053",36587,0.965561538251291,2289,0.125290403695302,7.73587031995257,8.31139827843664,9.21483027724904,4.4,364.144260986681,73,20047,0,0,0,0,9 +"8737",2012,31055,"NE","31","055",530899,0.827413500496328,37001,0.112853857325028,10.5187002182882,11.1299505458972,11.9934362007339,4.33846153846154,318.507173444191,1019,319930,0,0,0,0,9 +"8738",2012,31067,"NE","31","067",21656,0.980190247506465,1068,0.143747691171038,6.97354301952014,7.78530518253986,8.70051424854327,4.81538461538462,445.61808879353,54,12118,0,0,0,0,9 +"8739",2012,31079,"NE","31","079",60105,0.934547874552866,3611,0.117228184011314,8.19174002127746,8.92119055624937,9.72913416539135,3.86923076923077,330.670412313815,113,34173,0,0,0,0,9 +"8740",2012,31081,"NE","31","081",9042,0.99126299491263,413,0.144658261446583,6.02344759296103,6.96790920180188,7.81278281857758,3.23076923076923,199.600798403194,10,5010,0,0,0,0,9 +"8741",2012,31089,"NE","31","089",10378,0.986702640200424,410,0.151956060898054,6.01615715969835,6.89770494312864,7.89989532313973,3.1,268.913589100036,15,5578,0,0,0,0,9 +"8742",2012,31095,"NE","31","095",7536,0.982882165605096,319,0.154723991507431,5.76519110278484,6.65157187358973,7.58933582317062,3.67692307692308,463.8671875,19,4096,0,0,0,0,9 +"8743",2012,31101,"NE","31","101",8234,0.97947534612582,328,0.160310905999514,5.79301360838414,6.73101810048208,7.71467747380093,3.61538461538462,440.334654337296,20,4542,0,0,0,0,9 +"8744",2012,31107,"NE","31","107",8578,0.8897178829564,324,0.150967591513173,5.78074351579233,6.68710860786651,7.64921631982063,3.26923076923077,414.9377593361,18,4338,0,0,0,0,9 +"8745",2012,31109,"NE","31","109",293515,0.901906205815716,32674,0.114454116484677,10.3943349335865,10.4707596701205,11.3909612001456,3.51538461538462,225.205334275369,408,181168,0,0,0,0,9 +"8746",2012,31111,"NE","31","111",35979,0.969815725840073,1850,0.141499207871258,7.52294091807237,8.36380888451688,9.22473625225991,3.83846153846154,381.548696375287,78,20443,0,0,0,0,9 +"8747",2012,31119,"NE","31","119",35088,0.951208390332877,2547,0.125484496124031,7.84267147497946,8.21797820315073,9.19938053173984,3.60769230769231,280.490859003256,56,19965,0,0,0,0,9 +"8748",2012,31121,"NE","31","121",7848,0.977701325178389,370,0.135321100917431,5.91350300563827,6.74875954749168,7.650168700845,3.55384615384615,375.675041089458,16,4259,0,0,0,0,9 +"8749",2012,31131,"NE","31","131",15689,0.977882592899484,743,0.13614634457263,6.61069604471776,7.4713630881871,8.36915711258883,4.37692307692308,311.886334757999,27,8657,0,0,0,0,9 +"8750",2012,31137,"NE","31","137",9208,0.986099044309296,420,0.129452649869679,6.04025471127741,6.89972310728487,7.79646924308606,2.93846153846154,240.915478819514,12,4981,0,0,0,0,9 +"8751",2012,31141,"NE","31","141",32672,0.967250244857982,1895,0.127724045053869,7.54697411751653,8.21824792668574,9.09335701649036,3.55384615384615,267.511055303816,49,18317,0,0,0,0,9 +"8752",2012,31145,"NE","31","145",11047,0.976283153797411,697,0.137412872273015,6.54678541076052,7.02197642307216,8.00469951054955,3.16153846153846,296.63810151615,18,6068,0,0,0,0,9 +"8753",2012,31147,"NE","31","147",8285,0.952564876282438,341,0.148823174411587,5.83188247728352,6.7286286130847,7.70345904786717,4.96923076923077,314.818979087025,14,4447,0,0,0,0,9 +"8754",2012,31151,"NE","31","151",14412,0.94511518179295,1204,0.115528726061615,7.09340462586877,7.44132038971762,8.25842246245888,4.23076923076923,393.072104164108,32,8141,0,0,0,0,9 +"8755",2012,31153,"NE","31","153",165710,0.915400398286163,10368,0.102287128115382,9.24647941859206,10.0571095211917,10.8191180665144,3.76153846153846,206.912484054681,206,99559,0,0,0,0,9 +"8756",2012,31155,"NE","31","155",20799,0.984855041107746,949,0.136208471561133,6.85540879860993,7.76089319585102,8.64011853825354,4.12307692307692,385.637158282629,45,11669,0,0,0,0,9 +"8757",2012,31157,"NE","31","157",36923,0.946835305906887,2275,0.133900278958914,7.72973533138505,8.32724260745779,9.2620785673806,4.56923076923077,421.96139295761,87,20618,0,0,0,0,9 +"8758",2012,31159,"NE","31","159",16899,0.981951594768921,1428,0.127048937806971,7.26403014289953,7.47760424319759,8.4189186221479,3.41538461538462,285.231354320727,27,9466,0,0,0,0,9 +"8759",2012,31173,"NE","31","173",6931,0.396623863800317,480,0.102149761939114,6.17378610390194,6.48768401848461,7.44366368311559,8.47692307692308,524.17006406523,18,3434,0,0,0,0,9 +"8760",2012,31177,"NE","31","177",19951,0.984161194927573,917,0.14310059646133,6.82110747225646,7.77904864492556,8.65207367361006,3.68461538461538,206.27417275462,24,11635,0,0,0,0,9 +"8761",2012,31185,"NE","31","185",13839,0.971457475251102,933,0.136859599682058,6.83840520084734,7.23993259132047,8.27435700675629,3.6,335.483870967742,26,7750,0,0,0,0,9 +"8762",2012,34001,"NJ","34","001",274657,0.726677273836094,18587,0.131971877651034,9.83021769060835,10.434674471044,11.3401541590081,12.7846153846154,411.083393816672,674,163957,1,0,0,0,9 +"8763",2012,34003,"NJ","34","003",916299,0.76590283302721,48779,0.131208262805045,10.7950551713548,11.7434497118172,12.5460245354156,7.72307692307692,212.534079676745,1174,552382,1,0,0,0,9 +"8764",2012,34005,"NJ","34","005",450667,0.761526803604435,28195,0.129594578702235,10.2468999362413,10.981318735354,11.8213655905065,8.73076923076923,314.197406682639,859,273395,1,0,0,0,9 +"8765",2012,34007,"NJ","34","007",511636,0.716607119123752,33533,0.125577559045884,10.4202853075724,11.1044458177012,11.9769990461852,10.8,377.144038024385,1168,309696,1,0,0,0,9 +"8766",2012,34009,"NJ","34","009",96267,0.92906187997964,5795,0.162038912607643,8.66475075577385,9.15482766204592,10.2225956149878,15.8923076923077,543.926157903412,297,54603,1,0,0,0,9 +"8767",2012,34011,"NJ","34","011",156862,0.734282362841224,11020,0.114903545791843,9.3074670827069,9.98206765265899,10.6934210955338,13.2,403.983464862834,387,95796,1,0,0,0,9 +"8768",2012,34013,"NJ","34","013",785092,0.5046937174242,53734,0.114142036856827,10.8918012272575,11.6331676965463,12.4184868426313,10.7846153846154,346.512049737614,1662,479637,1,0,0,0,9 +"8769",2012,34015,"NJ","34","015",289839,0.854263918934305,19947,0.127425915767029,9.90083403507056,10.5655825663406,11.4101726573954,10.1692307692308,377.642213906119,663,175563,1,0,0,0,9 +"8770",2012,34017,"NJ","34","017",652373,0.67493749741329,46649,0.100945318092564,10.7504067698185,11.5237467036018,12.2785839866037,8.90769230769231,231.785875749001,1010,435747,1,0,0,0,9 +"8771",2012,34019,"NJ","34","019",126658,0.931555843294541,6347,0.155173775047766,8.75573753930647,9.65605130865287,10.5634915145028,6.87692307692308,242.999305716269,189,77778,1,0,0,0,9 +"8772",2012,34021,"NJ","34","021",368628,0.672325488025869,28455,0.12225604132079,10.2560791710372,10.8196382746094,11.636946779816,8.28461538461539,280.293708716646,631,225121,1,0,0,0,9 +"8773",2012,34023,"NJ","34","023",819389,0.643612496628585,57828,0.118651824713292,10.9652283664283,11.6636961533423,12.4441520988604,8.67692307692308,253.404944640161,1289,508672,1,0,0,0,9 +"8774",2012,34025,"NJ","34","025",627682,0.860792566936761,34799,0.137870768956255,10.4573439297175,11.2853847603316,12.1570399519529,8.76923076923077,281.187318106122,1057,375906,1,0,0,0,9 +"8775",2012,34027,"NJ","34","027",495623,0.859919737381034,24763,0.1316928391136,10.1171058826253,11.1108047581125,11.9150449828273,7.13846153846154,216.602861172678,645,297780,1,0,0,0,9 +"8776",2012,34029,"NJ","34","029",580013,0.940115135350415,31792,0.124992026040796,10.3669699647916,11.053109762112,11.9624393559131,10.7,359.520984484514,1109,308466,1,0,0,0,9 +"8777",2012,34031,"NJ","34","031",503531,0.769908903324721,37292,0.115470546997106,10.5265341054166,11.1097128181654,11.9428750339254,11.1,293.658501015873,886,301711,1,0,0,0,9 +"8778",2012,34033,"NJ","34","033",65427,0.830329986091369,3987,0.140186773044767,8.29079434738136,8.97664130672246,9.88679907124989,11.8769230769231,452.418500038779,175,38681,1,0,0,0,9 +"8779",2012,34035,"NJ","34","035",327462,0.736326657749601,15559,0.12874776309923,9.65239452831496,10.7441922974537,11.5173954596417,7.46153846153846,204.551783499152,404,197505,1,0,0,0,9 +"8780",2012,34037,"NJ","34","037",147003,0.953225444378686,8240,0.149704427800793,9.01675562290352,9.85644835453034,10.7208415365503,9.04615384615385,312.551587519947,284,90865,1,0,0,0,9 +"8781",2012,34039,"NJ","34","039",542977,0.697876705643149,33653,0.118388071686278,10.423857484145,11.2463131904709,12.026144222905,9.49230769230769,261.932479627474,864,329856,1,0,0,0,9 +"8782",2012,34041,"NJ","34","041",107586,0.924144405405908,6421,0.135937761418772,8.76732914779405,9.54402300698865,10.3990066264847,8.78461538461539,320.205426476503,207,64646,1,0,0,0,9 +"8783",2012,35001,"NM","35","001",673725,0.866110059742477,50122,0.124562692493228,10.8222153124437,11.3399401891533,12.244134033079,6.63846153846154,360.939419322225,1478,409487,1,0,0,0,9 +"8784",2012,35005,"NM","35","005",65780,0.935421100638492,4539,0.118181818181818,8.42046200245647,8.87724243599392,9.80774728025529,6.34615384615385,418.550142307048,150,35838,1,0,0,0,9 +"8785",2012,35006,"NM","35","006",27421,0.543670909157215,1919,0.125341891251231,7.5595594960077,8.1341742721379,8.95622201636254,8.42307692307692,495.386711251471,80,16149,1,0,0,0,9 +"8786",2012,35007,"NM","35","007",13245,0.954020385050963,674,0.167232918082295,6.51323011091231,7.18235211188526,8.17554759602103,7.70769230769231,376.495898883959,28,7437,1,0,0,0,9 +"8787",2012,35009,"NM","35","009",50830,0.880542986425339,4815,0.096222703128074,8.47949132423223,8.67094379122216,9.55322060489273,4.86153846153846,355.001033983594,103,29014,1,0,0,0,9 +"8788",2012,35013,"NM","35","013",214452,0.934563445433011,22405,0.107711749016097,10.0170394272202,10.0466350617546,11.0364529575759,7.18461538461538,334.996087636933,411,122688,1,0,0,0,9 +"8789",2012,35015,"NM","35","015",54437,0.94476183478149,3565,0.129213586347521,8.1789193328484,8.73809423017767,9.64062816551569,4.57692307692308,465.79887697805,146,31344,1,0,0,0,9 +"8790",2012,35017,"NM","35","017",29260,0.952836637047163,1569,0.16326042378674,7.35819375273303,7.92624152317096,8.99739464563842,6.51538461538462,489.63499936411,77,15726,1,0,0,0,9 +"8791",2012,35025,"NM","35","025",66374,0.926673094886552,4730,0.103775574773255,8.46168048148598,8.99317889233952,9.79099052130898,4.61538461538461,372.013923949725,140,37633,1,0,0,0,9 +"8792",2012,35027,"NM","35","027",20202,0.946143946143946,833,0.184437184437184,6.72503364216684,7.54538974961182,8.66163979578127,6.4,527.68088721939,59,11181,1,0,0,0,9 +"8793",2012,35028,"NM","35","028",18248,0.907387110916265,583,0.157058307759754,6.36818718635049,7.71333788887187,8.55525939222269,3.81538461538462,178.840361445783,19,10624,1,0,0,0,9 +"8794",2012,35029,"NM","35","029",24922,0.95112751785571,1532,0.118931064922558,7.33432935030054,7.85554467791566,8.76405326934776,19.6923076923077,506.329113924051,64,12640,1,0,0,0,9 +"8795",2012,35031,"NM","35","031",72379,0.191492007350198,6038,0.105721272744857,8.70582811026678,9.04393153364228,9.95517826794148,9.38461538461539,649.012856399713,262,40369,1,0,0,0,9 +"8796",2012,35035,"NM","35","035",66240,0.858001207729469,5654,0.116923309178744,8.64011853825354,8.8989119057944,9.81983416753888,6.36923076923077,443.026291500752,168,37921,1,0,0,0,9 +"8797",2012,35037,"NM","35","037",8806,0.94015444015444,424,0.157392686804452,6.04973345523196,6.76157276880406,7.80669637252118,7.96923076923077,652.356902356902,31,4752,1,0,0,0,9 +"8798",2012,35039,"NM","35","039",40191,0.788783558508124,2495,0.139409320494638,7.82204400818562,8.46062283992784,9.35884658027541,9.12307692307692,737.027038608219,172,23337,1,0,0,0,9 +"8799",2012,35041,"NM","35","041",20322,0.935537840763704,2489,0.0999409506938293,7.81963630236759,7.70796153183549,8.64909826229618,5.47692307692308,337.633105358843,39,11551,1,0,0,0,9 +"8800",2012,35043,"NM","35","043",135415,0.806439463870325,7630,0.134061957685633,8.9398431242785,9.78470401654616,10.6111784585369,7.62307692307692,339.729474677572,270,79475,1,0,0,0,9 +"8801",2012,35045,"NM","35","045",129792,0.58126849112426,9138,0.118921042899408,9.12019682212322,9.62463306868703,10.5274454137431,6.96923076923077,442.916728937679,326,73603,1,0,0,0,9 +"8802",2012,35047,"NM","35","047",29094,0.931326046607548,2141,0.148449852203203,7.66902828858968,8.05864371221562,9.04899722156742,8.7,604.766986837424,102,16866,1,0,0,0,9 +"8803",2012,35049,"NM","35","049",146774,0.924979901072397,7880,0.168101979914699,8.97208318285193,9.79272357555127,10.7161274175808,5.63846153846154,387.27210961386,342,88310,1,0,0,0,9 +"8804",2012,35051,"NM","35","051",11858,0.956147748355541,484,0.178529262944847,6.18208490671663,6.81234509417748,8.02289686960146,9.60769230769231,774.150117805453,46,5942,1,0,0,0,9 +"8805",2012,35053,"NM","35","053",17471,0.834354072462939,1461,0.135996794688341,7.2868764117507,7.53208814354172,8.4986218058308,6.82307692307692,438.072481083234,44,10044,1,0,0,0,9 +"8806",2012,35055,"NM","35","055",32767,0.893612475966674,1558,0.176824243903928,7.35115822643069,8.23562571996431,9.18717409394434,10.2769230769231,533.277565744759,102,19127,1,0,0,0,9 +"8807",2012,35057,"NM","35","057",16153,0.922800718132855,939,0.156070079861326,6.84481547920826,7.53422832627409,8.39457347786833,10.4230769230769,545.92164418754,51,9342,1,0,0,0,9 +"8808",2012,35061,"NM","35","061",76798,0.912120107294461,4946,0.130602359436444,8.50633444808136,9.13053930177263,9.99802470636012,8.45384615384615,381.4984536897,169,44299,1,0,0,0,9 +"8809",2012,32001,"NV","32","001",24267,0.877941237070919,1516,0.132072361643384,7.32383056620232,7.90285719128058,8.83010431791379,11.4538461538462,469.009308030882,65,13859,1,0,0,0,9 +"8810",2012,32003,"NV","32","003",1989644,0.750315131752213,134204,0.113831419088038,11.8071163093348,12.5678470650136,13.3056594591945,11.6923076923077,350.586885897813,4267,1217102,1,0,0,0,9 +"8811",2012,32005,"NV","32","005",46930,0.940890688259109,2209,0.174259535478372,7.70029520342012,8.45019832259196,9.50412876285973,11.9,259.554619319892,69,26584,1,0,0,0,9 +"8812",2012,32007,"NV","32","007",50998,0.903721714577042,3588,0.117514412329895,8.18535022317869,8.76514642163902,9.5767180913763,6.63076923076923,359.806358759649,110,30572,1,0,0,0,9 +"8813",2012,32013,"NV","32","013",17078,0.919487059374634,1088,0.128059491743764,6.99209642741589,7.67693714581808,8.46695197497949,6.86153846153846,458.17898225775,47,10258,1,0,0,0,9 +"8814",2012,32015,"NV","32","015",5922,0.922154677473826,392,0.124282337048295,5.97126183979046,6.53958595561767,7.41034709782102,7.83846153846154,321.543408360129,11,3421,1,0,0,0,9 +"8815",2012,32019,"NV","32","019",50981,0.92253976971813,2461,0.148486691120221,7.80832305039106,8.69064216970659,9.56857410037891,15.2923076923077,466.638807633375,134,28716,1,0,0,0,9 +"8816",2012,32021,"NV","32","021",4663,0.747801844306241,253,0.167274286939738,5.53338948872752,6.02586597382531,7.19818357710194,14.0384615384615,768.639508070715,20,2602,1,0,0,0,9 +"8817",2012,32023,"NV","32","023",43604,0.915053664801394,2063,0.165191266856252,7.63191651307125,8.33134542484572,9.34931939925763,14.9461538461538,775.703392058901,177,22818,1,0,0,0,9 +"8818",2012,32031,"NV","32","031",427490,0.876107043439613,32827,0.130997216309153,10.3990066264847,10.8985524955745,11.7710345350796,11.4692307692308,373.887940117073,983,262913,1,0,0,0,9 +"8819",2012,32033,"NV","32","033",10022,0.889443224905209,595,0.136499700658551,6.38856140554563,7.10496544826984,7.76556908109732,7.95384615384615,485.122897800776,30,6184,1,0,0,0,9 +"8820",2012,32510,"NV","32","510",54330,0.915516289342905,3466,0.142186637217007,8.15075647027555,8.76950712003023,9.62218508704839,12.1846153846154,478.675766653284,155,32381,1,0,0,0,9 +"8821",2012,36001,"NY","36","001",305776,0.797211030296688,30108,0.131730417037308,10.3125461961544,10.4636460503208,11.4747458097281,7.2,294.304131882067,557,189260,1,0,0,0,9 +"8822",2012,36003,"NY","36","003",48221,0.969225026440762,4479,0.135770722299413,8.4071550862073,8.51519118874556,9.51044496442652,8.54615384615385,370.909090909091,102,27500,1,0,0,0,9 +"8823",2012,36005,"NY","36","005",1411087,0.461353552261484,122303,0.0999555661699102,11.7142568512191,12.1187102978666,13.0196216519424,12.5307692307692,341.270972954988,2872,841560,1,0,0,0,9 +"8824",2012,36007,"NY","36","007",198689,0.895343979787507,18892,0.132196548374595,9.84649383101601,9.93513155787059,10.9763716926315,8.80769230769231,366.562056149482,431,117579,1,0,0,0,9 +"8825",2012,36009,"NY","36","009",79354,0.937911132394082,5207,0.144315346422361,8.5577591531629,9.0990735595476,10.0418136820164,9.46923076923077,367.024280067758,169,46046,1,0,0,0,9 +"8826",2012,36011,"NY","36","011",79524,0.939816910618178,5132,0.140246969468337,8.54325072573553,9.17014318222477,10.0305166006647,8.38461538461539,314.203670564734,151,48058,1,0,0,0,9 +"8827",2012,36013,"NY","36","013",133333,0.952344880862202,10060,0.14084285210713,9.21632244365373,9.59621483031934,10.5549269296963,8.64615384615385,405.941746066631,314,77351,1,0,0,0,9 +"8828",2012,36015,"NY","36","015",89162,0.903030438976245,5887,0.13721091944999,8.68050180902826,9.26908086699878,10.1584785472895,8.53076923076923,417.80613795199,220,52656,1,0,0,0,9 +"8829",2012,36017,"NY","36","017",49898,0.978896949777546,2848,0.146639143853461,7.95437227253187,8.65903991564447,9.57282838722921,8.76153846153846,372.722252898951,108,28976,1,0,0,0,9 +"8830",2012,36019,"NY","36","019",81730,0.934467147926098,7943,0.129658632081243,8.98004631663313,9.20663351004486,10.0948514373143,9.54615384615385,280.621625283041,145,51671,1,0,0,0,9 +"8831",2012,36021,"NY","36","021",62450,0.921168935148118,3454,0.160672538030424,8.14728825870662,8.87891537657648,9.81246815414896,7.15384615384615,337.571121335039,124,36733,1,0,0,0,9 +"8832",2012,36023,"NY","36","023",49028,0.962776372684996,5970,0.123358081096516,8.69450220638665,8.57243866564222,9.60501412900613,8.73846153846154,372.011227975244,110,29569,1,0,0,0,9 +"8833",2012,36025,"NY","36","025",47217,0.965245568333439,3045,0.156617320033039,8.021256180144,8.47886807709457,9.48402493478411,8.86923076923077,396.241367598777,105,26499,1,0,0,0,9 +"8834",2012,36027,"NY","36","027",297028,0.838577507844378,22461,0.132640693806645,10.0195357508988,10.5126551193008,11.3972452169055,7.9,293.22581720036,528,180066,1,0,0,0,9 +"8835",2012,36029,"NY","36","029",919998,0.817740908132409,69750,0.134126378535606,11.1526726996836,11.5695609643365,12.5453765833841,8.42307692307692,359.551784160139,1983,551520,1,0,0,0,9 +"8836",2012,36031,"NY","36","031",38884,0.952576895381134,2108,0.155642423618969,7.65349490966125,8.44762872803033,9.28554060453912,9.71538461538462,400.775694893342,93,23205,1,0,0,0,9 +"8837",2012,36033,"NY","36","033",51791,0.848699581008283,3939,0.127782819408778,8.27868216297091,8.7895077867369,9.52281261323518,9.7,340.167325549324,111,32631,1,0,0,0,9 +"8838",2012,36035,"NY","36","035",54851,0.965561247743888,3262,0.140617308709048,8.09009578318096,8.8180382503943,9.69424690639091,11.1846153846154,411.320523052367,134,32578,1,0,0,0,9 +"8839",2012,36037,"NY","36","037",59684,0.944792574224248,3908,0.135966088063803,8.27078101316267,8.86559399890272,9.76531684347746,8.03076923076923,349.63078988588,125,35752,1,0,0,0,9 +"8840",2012,36039,"NY","36","039",48589,0.917141739899977,3377,0.15089835147873,8.12474302038557,8.66129353538999,9.5216413100266,10.0846153846154,410.480946842717,120,29234,1,0,0,0,9 +"8841",2012,36043,"NY","36","043",64232,0.975977705816416,4116,0.144273882177108,8.32263709695394,8.89645120735523,9.83547634191958,8.88461538461539,302.519208631167,113,37353,1,0,0,0,9 +"8842",2012,36045,"NY","36","045",120335,0.902414093987618,12892,0.0983836788964142,9.46436224293533,9.54652685348758,10.430904771395,10.0076923076923,265.132974384076,195,73548,1,0,0,0,9 +"8843",2012,36047,"NY","36","047",2568538,0.502107035208356,197331,0.108681280946593,12.1926378008038,12.769990594457,13.6468350686256,9.86153846153846,271.438354838851,4348,1601837,1,0,0,0,9 +"8844",2012,36049,"NY","36","049",27190,0.981500551673409,1641,0.136300110334682,7.40306109109009,8.05864371221562,8.94233019932187,10.1153846153846,310.126582278481,49,15800,1,0,0,0,9 +"8845",2012,36051,"NY","36","051",64780,0.949706699598642,6477,0.136415560358135,8.77601271918292,8.88723835429314,9.85817632982613,7.93846153846154,293.827097950809,116,39479,1,0,0,0,9 +"8846",2012,36053,"NY","36","053",72438,0.961263425274027,5974,0.137759187166957,8.69517199877606,8.98544528762317,9.97604074521784,8.61538461538461,331.38083125248,142,42851,1,0,0,0,9 +"8847",2012,36055,"NY","36","055",747468,0.790227809083466,58528,0.128109832126593,10.9772605511906,11.3861710566247,12.3494974366942,8.00769230769231,296.088514882344,1330,449190,1,0,0,0,9 +"8848",2012,36057,"NY","36","057",49836,0.954651256120074,3004,0.139397222891083,8.00770001288403,8.6699142784339,9.5800401236376,10.5461538461538,339.911900385002,98,28831,1,0,0,0,9 +"8849",2012,36059,"NY","36","059",1349753,0.780726547746143,81866,0.133863010491549,11.3128390432314,12.0368193261403,12.9137241282929,7.13846153846154,248.95525462646,1982,796127,1,0,0,0,9 +"8850",2012,36061,"NY","36","061",1624573,0.665774945170208,126408,0.112974917101294,11.7472700498313,12.3839803087456,13.2777521476241,8.09230769230769,193.783511013034,2162,1115678,1,0,0,0,9 +"8851",2012,36063,"NY","36","063",214724,0.899089063169464,14637,0.143849779251504,9.59130784848395,10.1247493344323,11.0885527289344,9.46153846153846,381.117635211551,492,129094,1,0,0,0,9 +"8852",2012,36065,"NY","36","065",233778,0.88800485931097,16446,0.133181907621761,9.70783756553084,10.2131023349875,11.1150713198634,8.36153846153846,358.85602812616,493,137381,1,0,0,0,9 +"8853",2012,36067,"NY","36","067",467138,0.828029404587081,35019,0.129604099859142,10.4636460503208,10.9011001735822,11.8698443791458,7.98461538461538,316.980536030959,883,278566,1,0,0,0,9 +"8854",2012,36069,"NY","36","069",108641,0.954124133614381,7022,0.146215517162029,8.85680335672838,9.45493225449626,10.3865307952897,7.36923076923077,297.223308564724,190,63925,1,0,0,0,9 +"8855",2012,36071,"NY","36","071",373795,0.838959857675999,26684,0.118433900935004,10.1918194138294,10.7903700708297,11.5948464076555,8.03076923076923,278.272889309229,612,219928,1,0,0,0,9 +"8856",2012,36073,"NY","36","073",42396,0.918176243041796,2872,0.138102651193509,7.96276393016811,8.54539184577492,9.46529261980504,9.81538461538462,348.098844770867,91,26142,1,0,0,0,9 +"8857",2012,36075,"NY","36","075",121469,0.974841317537808,10015,0.131408013567248,9.21183924809992,9.57491403870827,10.498056719735,11.1307692307692,356.54505123634,262,73483,1,0,0,0,9 +"8858",2012,36077,"NY","36","077",61763,0.95874552725742,6932,0.142221070867672,8.8439036508355,8.73117490093806,9.82552601106642,7.98461538461538,325.077825835422,118,36299,1,0,0,0,9 +"8859",2012,36079,"NY","36","079",99600,0.941736947791165,5474,0.14210843373494,8.60776488960062,9.48675925214925,10.3210129751367,7.29230769230769,253.276250857871,155,61198,1,0,0,0,9 +"8860",2012,36081,"NY","36","081",2271920,0.507660921159196,162313,0.119564069157365,11.9972818488778,12.6957134472087,13.5147472986405,8.33846153846154,222.618660140548,3242,1456302,1,0,0,0,9 +"8861",2012,36083,"NY","36","083",159466,0.893588601959038,12599,0.136737611779313,9.44137272471063,9.8755509338431,10.8066525171914,7.85384615384615,348.368356371688,343,98459,1,0,0,0,9 +"8862",2012,36085,"NY","36","085",470597,0.788708810298408,32703,0.129747958444274,10.3952220957965,11.0510804634259,11.9036558820715,9.54615384615385,315.362093337455,908,287923,1,0,0,0,9 +"8863",2012,36087,"NY","36","087",317201,0.791381489970082,20325,0.118407571224555,9.91960693441601,10.5103140266295,11.3908256253081,7.43076923076923,227.436843631484,400,175873,1,0,0,0,9 +"8864",2012,36089,"NY","36","089",112388,0.948713385770723,11105,0.126579350108553,9.31515073632853,9.45093083689411,10.3718648600373,10.3538461538462,354.111881424815,237,66928,1,0,0,0,9 +"8865",2012,36091,"NY","36","091",222527,0.953416888737097,12715,0.136756438544536,9.45053767785622,10.3146364771126,11.1269688232501,6.91538461538462,248.7819282445,337,135460,1,0,0,0,9 +"8866",2012,36093,"NY","36","093",155044,0.825256056345296,10527,0.131227264518459,9.26169866425133,9.85781003903948,10.761216533412,7.77692307692308,333.857453636892,310,92854,1,0,0,0,9 +"8867",2012,36095,"NY","36","095",32038,0.972470191647419,2201,0.154660091141769,7.69666708152646,8.18952211074809,9.14708103233699,9.30769230769231,312.086749537159,59,18905,1,0,0,0,9 +"8868",2012,36097,"NY","36","097",18505,0.976060524182653,1042,0.157254796001081,6.94889722231331,7.69848278788095,8.6044711995233,9.52307692307692,309.119010819165,34,10999,1,0,0,0,9 +"8869",2012,36099,"NY","36","099",35354,0.931606041749166,2508,0.140747864456639,7.82724090175281,8.32312288758773,9.18450961194166,8.08461538461538,373.412994772218,80,21424,1,0,0,0,9 +"8870",2012,36101,"NY","36","101",98903,0.962478387915432,5707,0.142402151603086,8.64944877053671,9.36220272128543,10.2610221268867,9.46923076923077,322.08907667798,186,57748,1,0,0,0,9 +"8871",2012,36103,"NY","36","103",1497017,0.866741660248347,95294,0.125058700068202,11.4647221285837,12.1977733010487,13.0153303527717,7.88461538461539,277.746148058345,2488,895782,1,0,0,0,9 +"8872",2012,36105,"NY","36","105",76940,0.867208214192878,4708,0.143540421107356,8.45701846838017,9.11822508306838,10.0061343894963,9.26153846153846,444.328280188186,204,45912,1,0,0,0,9 +"8873",2012,36107,"NY","36","107",50297,0.977394277988747,2705,0.141678430125057,7.90285719128058,8.66802408111882,9.59641876628416,8,355.980471928397,105,29496,1,0,0,0,9 +"8874",2012,36109,"NY","36","109",102800,0.842636186770428,18593,0.112645914396887,9.83054044478006,9.23014299927236,10.4053531549306,6.23846153846154,217.689145988735,143,65690,1,0,0,0,9 +"8875",2012,36111,"NY","36","111",181555,0.898719396326182,12925,0.146093470298257,9.46691869937663,10.0240666754945,10.91485207264,8.40769230769231,296.542422537224,332,111957,1,0,0,0,9 +"8876",2012,36113,"NY","36","113",65438,0.974632476542682,3741,0.152663589963018,8.22710823434815,8.95144010094985,9.89237604778141,9.32307692307692,352.166590108712,138,39186,1,0,0,0,9 +"8877",2012,36115,"NY","36","115",63016,0.956487241335534,3994,0.140884854640091,8.29254851397576,9.00393101965314,9.80206372239816,8.41538461538462,333.672219180939,128,38361,1,0,0,0,9 +"8878",2012,36117,"NY","36","117",93038,0.951030761624283,5254,0.142941593757389,8.56674497024549,9.3439092638976,10.2203764235358,8.7,309.844353041367,171,55189,1,0,0,0,9 +"8879",2012,36119,"NY","36","119",959731,0.76174886504656,54528,0.125748777522035,10.906469610189,11.7632405051403,12.5715764996857,7.36923076923077,227.311473546627,1280,563104,1,0,0,0,9 +"8880",2012,36121,"NY","36","121",41702,0.929092129873867,2487,0.139369814397391,7.8188324438034,8.6278397115033,9.32482909846088,8.97692307692308,296.635626314208,79,26632,1,0,0,0,9 +"8881",2012,36123,"NY","36","123",25341,0.979440432500691,1924,0.144311589913579,7.56216163122565,7.793999089504,8.8858559930003,7.90769230769231,392.885206086149,55,13999,1,0,0,0,9 +"8882",2012,39001,"OH","39","001",28288,0.985258766968326,1620,0.134898190045249,7.39018142822643,8.21256839823415,9.01054706927019,12.5230769230769,557.905707804549,91,16311,1,0,0,0,9 +"8883",2012,39003,"OH","39","003",105251,0.852371948960105,8157,0.133319398390514,9.00663173330058,9.39922368660528,10.2900756048746,7.7,392.811548659531,240,61098,1,0,0,0,9 +"8884",2012,39005,"OH","39","005",53245,0.979941778570758,3851,0.133439759601841,8.25608813381491,8.7157161275482,9.63652272167307,8.01538461538462,411.181483569321,124,30157,1,0,0,0,9 +"8885",2012,39007,"OH","39","007",100274,0.946087719648164,5804,0.142180425633763,8.66630261400408,9.41719192651341,10.2578347894657,9.41538461538462,481.138352868915,282,58611,1,0,0,0,9 +"8886",2012,39009,"OH","39","009",64633,0.930592731267309,13426,0.105054693422864,9.5049484044987,8.73165920153676,9.90233689077873,8.52307692307692,328.085596062973,134,40843,1,0,0,0,9 +"8887",2012,39011,"OH","39","011",45787,0.984733658025204,2544,0.136479786839059,7.84149292446001,8.60776488960062,9.46000900222975,6.18461538461538,326.270535851374,85,26052,1,0,0,0,9 +"8888",2012,39013,"OH","39","013",69728,0.948026617714548,4477,0.153223955943093,8.40670845824097,9.04180337015285,9.89772095764179,8.23076923076923,431.65808884567,182,42163,1,0,0,0,9 +"8889",2012,39015,"OH","39","015",44289,0.982681930050351,2474,0.135993135993136,7.81359155295243,8.63887970967284,9.46552507883519,9.98461538461538,518.575851393189,134,25840,1,0,0,0,9 +"8890",2012,39017,"OH","39","017",370628,0.8813878066417,30887,0.122899511100079,10.3380906623876,10.7562419276049,11.6253698308106,7.65384615384615,377.307274701412,834,221040,1,0,0,0,9 +"8891",2012,39019,"OH","39","019",28551,0.984624006164408,1444,0.151728485867395,7.27517231945277,8.12799505577195,9.01396045793119,7.92307692307692,412.171172263305,68,16498,1,0,0,0,9 +"8892",2012,39021,"OH","39","021",39579,0.959498724070846,2394,0.132924025366988,7.78072088611792,8.51197962436335,9.34975442775886,7.38461538461539,380.694000787643,87,22853,1,0,0,0,9 +"8893",2012,39023,"OH","39","023",137198,0.886375894692342,8923,0.139644892782694,9.09638749190015,9.67124018697245,10.6009752991945,7.78461538461538,560.609535458553,440,78486,1,0,0,0,9 +"8894",2012,39025,"OH","39","025",199526,0.968400108256568,11577,0.133917384200555,9.35677565020573,10.1677346587288,11.0107126443025,7.43846153846154,436.947549584774,523,119694,1,0,0,0,9 +"8895",2012,39027,"OH","39","027",41829,0.959884290803031,2768,0.133997944010137,7.92588031673756,8.52058742448425,9.42561302890982,10.7076923076923,472.871061106355,116,24531,1,0,0,0,9 +"8896",2012,39029,"OH","39","029",106652,0.965063946292615,5956,0.148614184450362,8.6921543938039,9.50383054471094,10.3245635081584,8.23846153846154,457.821782178218,289,63125,1,0,0,0,9 +"8897",2012,39031,"OH","39","031",36821,0.978001683821732,2082,0.140273213655251,7.64108424917491,8.37885024179449,9.26643711132805,10.0384615384615,464.565062811093,98,21095,1,0,0,0,9 +"8898",2012,39033,"OH","39","033",42774,0.980455416842007,2328,0.141557955767522,7.75276480885133,8.5569906612903,9.41082923272559,9.03076923076923,515.442662158262,125,24251,1,0,0,0,9 +"8899",2012,39035,"OH","39","035",1266271,0.655562671813538,81663,0.136711651771224,11.3103563018916,11.9227278202752,12.8764040137079,6.81538461538462,424.318178796059,3191,752030,1,0,0,0,9 +"8900",2012,39037,"OH","39","037",52524,0.985111568045084,2831,0.132910669408271,7.9483852851119,8.73488189204748,9.5905560458309,7.23076923076923,423.888148224114,124,29253,1,0,0,0,9 +"8901",2012,39039,"OH","39","039",38845,0.965117775775518,2453,0.138241729952375,7.80506704425849,8.43228868432579,9.31388924760474,7.65384615384615,365.078649659711,81,22187,1,0,0,0,9 +"8902",2012,39041,"OH","39","041",181234,0.907561495083704,8151,0.117946963594028,9.00589589809446,10.3017601900628,10.8987742906368,5.17692307692308,221.350991389822,236,106618,1,0,0,0,9 +"8903",2012,39043,"OH","39","043",76440,0.887009419152276,4241,0.15185766614338,8.35255436947459,9.06704720214971,10.0223810824765,8.03846153846154,404.748445449406,179,44225,1,0,0,0,9 +"8904",2012,39045,"OH","39","045",147314,0.911427291364025,8552,0.126070841875178,9.05392045270488,9.91076103650263,10.6785602824947,6.62307692307692,316.641527248443,275,86849,1,0,0,0,9 +"8905",2012,39047,"OH","39","047",28770,0.960166840458811,1676,0.134897462634689,7.42416528104203,8.21743853773019,9.0432226489245,8.27692307692308,479.415113561455,80,16687,1,0,0,0,9 +"8906",2012,39049,"OH","39","049",1199257,0.717248262882768,100660,0.109928897642457,11.5195037803304,11.9900102138065,12.8625817749922,6.40769230769231,347.578839676603,2616,752635,1,0,0,0,9 +"8907",2012,39051,"OH","39","051",42330,0.981242617528939,2320,0.142404913772738,7.74932246466036,8.536211197252,9.42537110317984,7.73076923076923,403.258655804481,99,24550,1,0,0,0,9 +"8908",2012,39053,"OH","39","053",30881,0.958064829506816,1936,0.135196399080341,7.56837926783652,8.20166019080868,9.09268232850795,9.65384615384615,595.305590202971,105,17638,1,0,0,0,9 +"8909",2012,39055,"OH","39","055",93770,0.976197077956703,4628,0.151135757705023,8.43988008831357,9.26150865855058,10.1775903424475,5.36153846153846,253.908860082854,133,52381,1,0,0,0,9 +"8910",2012,39057,"OH","39","057",164403,0.881255208238293,15716,0.13097084603079,9.66243458067835,9.80234037053117,10.8200382506161,6.88461538461538,340.344012390968,334,98136,1,0,0,0,9 +"8911",2012,39059,"OH","39","059",39886,0.970014541443113,2300,0.141904427618713,7.74066440191724,8.47720418319987,9.359966545932,8.96153846153846,513.691175830395,118,22971,1,0,0,0,9 +"8912",2012,39061,"OH","39","061",802564,0.702233092937136,59067,0.12773809939145,10.9864276718099,11.4577720985022,12.4241111884344,7.36923076923077,396.037140404497,1910,482278,1,0,0,0,9 +"8913",2012,39063,"OH","39","063",75478,0.955775192771404,5404,0.129507936087337,8.59489469908009,9.11569996782206,10.0200253687841,6.39230769230769,283.394435572749,126,44461,1,0,0,0,9 +"8914",2012,39065,"OH","39","065",31630,0.976762567183054,3420,0.119759721783117,8.13739583005665,8.20357773693795,9.12249228140299,7.45384615384615,510.619805529904,94,18409,1,0,0,0,9 +"8915",2012,39067,"OH","39","067",15679,0.968046431532623,826,0.160469417692455,6.71659477352098,7.4770384723197,8.41383067842108,8.55384615384615,595.04132231405,54,9075,1,0,0,0,9 +"8916",2012,39069,"OH","39","069",27826,0.982067131459786,1540,0.137856680802128,7.33953769540767,8.12088602109284,8.97638862194537,8.74615384615385,301.015928759564,48,15946,1,0,0,0,9 +"8917",2012,39071,"OH","39","071",42966,0.973118279569892,2462,0.131406228180422,7.8087293067444,8.60300384782935,9.42448354109309,10.4076923076923,511.247443762781,125,24450,1,0,0,0,9 +"8918",2012,39073,"OH","39","073",29310,0.981678607983623,1670,0.146264073694985,7.4205789054108,8.19753873972118,9.04664427930539,8.27692307692308,563.016831857369,96,17051,1,0,0,0,9 +"8919",2012,39075,"OH","39","075",43130,0.991606770229539,3105,0.101738928819847,8.04076899436758,8.46653127661401,9.31289696030128,5.13846153846154,255.823347246533,57,22281,1,0,0,0,9 +"8920",2012,39077,"OH","39","077",59220,0.974045930428909,3478,0.132759202971969,8.15421269491423,8.9138193508572,9.7524902289842,9.88461538461539,430.327868852459,147,34160,1,0,0,0,9 +"8921",2012,39079,"OH","39","079",32869,0.981258936992303,1990,0.138032796860263,7.59588991771854,8.3537326422632,9.1801903950253,10.3153846153846,568.798800351621,110,19339,1,0,0,0,9 +"8922",2012,39081,"OH","39","081",68557,0.92975188529253,4819,0.155739020085476,8.48032171664033,8.95828281049733,9.92093446613985,10.8307692307692,588.103366642578,236,40129,1,0,0,0,9 +"8923",2012,39083,"OH","39","083",60781,0.977279083924253,4958,0.132426251624685,8.50875771259514,8.83898679349679,9.78052864513568,6.93846153846154,359.681178603286,125,34753,1,0,0,0,9 +"8924",2012,39085,"OH","39","085",229572,0.943242207237816,12436,0.144921854581569,9.42835077117864,10.2472900002522,11.1346620142872,5.98461538461538,374.611615898223,510,136141,1,0,0,0,9 +"8925",2012,39087,"OH","39","087",62177,0.966161120671631,3706,0.135242935490616,8.21770840684531,8.9987547694957,9.83199155083106,8.46923076923077,565.390421298202,206,36435,1,0,0,0,9 +"8926",2012,39089,"OH","39","089",167636,0.943395213438641,10423,0.131839223078575,9.25177018173932,9.98030969513741,10.8260386473811,6.75384615384615,358.866226024898,354,98644,1,0,0,0,9 +"8927",2012,39091,"OH","39","091",45412,0.964304589095393,2424,0.139588654981062,7.7931743471892,8.62083222617572,9.48903215258983,7.13846153846154,440.596145741543,115,26101,1,0,0,0,9 +"8928",2012,39093,"OH","39","093",301757,0.883101303366616,18339,0.138028281034077,9.81678521869683,10.5634398282384,11.3965938754561,7.09230769230769,402.363391138976,713,177203,1,0,0,0,9 +"8929",2012,39095,"OH","39","095",436846,0.768002911781268,34205,0.131297986017956,10.4401271111951,10.8703763371734,11.8039220383898,8.32307692307692,439.550376593942,1152,262086,1,0,0,0,9 +"8930",2012,39097,"OH","39","097",42996,0.918504046888083,2587,0.125872174155735,7.85825418218603,8.77090474429687,9.3402276328106,6.38461538461539,378.262986405004,101,26701,1,0,0,0,9 +"8931",2012,39099,"OH","39","099",235689,0.818294447343745,14967,0.150371888378329,9.61360305652915,10.2151912808298,11.1420356815018,8.27692307692308,460.382314314899,631,137060,1,0,0,0,9 +"8932",2012,39101,"OH","39","101",66301,0.921403900393659,4502,0.13645344715766,8.41227702146668,9.06681636189014,9.79734895647446,7.90769230769231,437.56145526057,178,40680,1,0,0,0,9 +"8933",2012,39103,"OH","39","103",173648,0.970048604072607,8643,0.136719109923523,9.06450502375264,10.0708646619443,10.8558015835869,5.50769230769231,289.484970174276,297,102596,1,0,0,0,9 +"8934",2012,39105,"OH","39","105",23575,0.982057264050901,1297,0.146214209968187,7.16780918431644,7.97143099776935,8.84836569494255,11.5230769230769,480.907263853,67,13932,1,0,0,0,9 +"8935",2012,39107,"OH","39","107",40710,0.982731515598133,2336,0.137975927290592,7.75619534394812,8.41138813251926,9.3108189905424,5.10769230769231,413.295814280689,94,22744,1,0,0,0,9 +"8936",2012,39109,"OH","39","109",102947,0.955637366800392,5624,0.138090473738914,8.6347984334905,9.45922963970881,10.3115825328303,7.27692307692308,389.131164038913,232,59620,1,0,0,0,9 +"8937",2012,39111,"OH","39","111",14509,0.988765593769385,708,0.153904473085671,6.56244409369372,7.41758040241454,8.30819906320645,8.38461538461539,329.58984375,27,8192,1,0,0,0,9 +"8938",2012,39113,"OH","39","113",534464,0.753343536702191,37567,0.131767527840977,10.5338812844349,11.0437854626913,11.9951725858442,8.18461538461538,471.32782232562,1483,314643,1,0,0,0,9 +"8939",2012,39115,"OH","39","115",14929,0.949360305445777,807,0.14461785786054,6.69332366826995,7.44132038971762,8.3513747067213,9.90769230769231,470.865214832254,40,8495,1,0,0,0,9 +"8940",2012,39117,"OH","39","117",34839,0.984787163810672,1829,0.138723843967967,7.51152464839087,8.42901750051251,9.22473625225991,8.13846153846154,403.563167478714,82,20319,1,0,0,0,9 +"8941",2012,39119,"OH","39","119",85803,0.940573173432164,5823,0.133958020115847,8.66957087183712,9.25263328416643,10.1463945146913,9.15384615384615,483.709774135519,242,50030,1,0,0,0,9 +"8942",2012,39121,"OH","39","121",14676,0.965998909784683,665,0.192491142000545,6.49978704065585,7.2034055210831,8.14322675036744,10.9692307692308,354.349951124145,29,8184,1,0,0,0,9 +"8943",2012,39123,"OH","39","123",41246,0.979828346991223,1930,0.16726470445619,7.56527528189893,8.41781474743596,9.37712518962101,9.56923076923077,353.699103120131,84,23749,1,0,0,0,9 +"8944",2012,39125,"OH","39","125",19245,0.976617303195635,1033,0.141387373343726,6.94022246911964,7.74240202181578,8.59895749321888,7.69230769230769,522.146200936262,58,11108,1,0,0,0,9 +"8945",2012,39127,"OH","39","127",35983,0.987410721729706,2101,0.134702498402023,7.650168700845,8.43337670532313,9.25665127483943,9.77692307692308,426.479647443491,90,21103,1,0,0,0,9 +"8946",2012,39129,"OH","39","129",56235,0.952236151862719,3581,0.124210900684627,8.18339736999843,8.98807143807263,9.64419855458556,7.43846153846154,368.044399006864,126,34235,1,0,0,0,9 +"8947",2012,39131,"OH","39","131",28365,0.974863387978142,1689,0.131112286268288,7.4318919168078,8.18255926406867,9.01724094201035,13.0076923076923,593.939393939394,98,16500,1,0,0,0,9 +"8948",2012,39133,"OH","39","133",161418,0.929945854861292,18595,0.129929747611791,9.83064800635917,9.82200631066824,10.8239894051817,7.27692307692308,326.629366399516,324,99195,1,0,0,0,9 +"8949",2012,39135,"OH","39","135",41821,0.982975060376366,2306,0.141364386313096,7.743269700829,8.55660619377307,9.40590715552016,7.73076923076923,440.274863185615,107,24303,1,0,0,0,9 +"8950",2012,39137,"OH","39","137",34207,0.986464758675125,1965,0.132575203905633,7.58324752430336,8.26975694753298,9.15978364835903,5.8,328.677074774035,64,19472,1,0,0,0,9 +"8951",2012,39139,"OH","39","139",122645,0.887830730971503,7684,0.1382771413429,8.94689552388845,9.60669746105362,10.43505653744,8.7,445.887385567183,320,71767,1,0,0,0,9 +"8952",2012,39141,"OH","39","141",77359,0.92161222352926,4538,0.134283018136222,8.42024166533979,9.27902652976463,9.98202143019024,8.4,532.049125168237,253,47552,1,0,0,0,9 +"8953",2012,39143,"OH","39","143",60467,0.951146906577141,3316,0.14090330262788,8.10651451625519,8.88640916684928,9.76594813851407,7.50769230769231,357.725438571388,125,34943,1,0,0,0,9 +"8954",2012,39145,"OH","39","145",78808,0.956514567049031,5698,0.132308902649477,8.64787051505785,9.20301359658972,10.0477610416926,11.2846153846154,523.028377531392,242,46269,1,0,0,0,9 +"8955",2012,39147,"OH","39","147",56117,0.956216476290607,4163,0.138638915123759,8.33399124719497,8.75904072752422,9.67495450393748,7.95384615384615,497.054491899853,162,32592,1,0,0,0,9 +"8956",2012,39149,"OH","39","149",49158,0.957423003376866,2757,0.130090727857114,7.9218984110238,8.72306850116393,9.53647363080222,7.28461538461538,383.727127376088,108,28145,1,0,0,0,9 +"8957",2012,39151,"OH","39","151",374914,0.89991037944702,24011,0.141675157502787,10.0862673376608,10.697723638403,11.6211877663725,7.48461538461538,398.811815831454,870,218148,1,0,0,0,9 +"8958",2012,39153,"OH","39","153",540806,0.814745028716397,36133,0.139539871968876,10.4949618541848,11.0940255121357,12.015946713672,7.45384615384615,401.914112097275,1301,323701,1,0,0,0,9 +"8959",2012,39155,"OH","39","155",207245,0.900176120051147,12168,0.149398055441627,9.40656483393913,10.0974082451734,11.0167092685882,9.02307692307692,464.55093409704,558,120116,1,0,0,0,9 +"8960",2012,39157,"OH","39","157",92426,0.977116828598014,5169,0.140858632852228,8.55043452519604,9.30792070031505,10.1893053883782,7.36153846153846,378.224789718307,201,53143,1,0,0,0,9 +"8961",2012,39159,"OH","39","159",52798,0.939770445850222,2806,0.110382969051858,7.93951526066241,9.04097452634244,9.74706763326483,5.75384615384615,238.102697452928,76,31919,1,0,0,0,9 +"8962",2012,39161,"OH","39","161",28642,0.978528035751693,1567,0.135465400460862,7.35691824235602,8.12474302038557,8.99603266932437,7.53846153846154,379.54206072673,61,16072,1,0,0,0,9 +"8963",2012,39163,"OH","39","163",13223,0.985631097330409,777,0.142857142857143,6.65544035036765,7.4312996751559,8.26075135470051,10.7769230769231,551.423441908182,43,7798,1,0,0,0,9 +"8964",2012,39165,"OH","39","165",217293,0.913793817564303,10961,0.118521995646431,9.30209879721572,10.3808080977447,11.0583856522148,6.50769230769231,282.895297737613,365,129023,1,0,0,0,9 +"8965",2012,39167,"OH","39","167",61472,0.9743623112962,3900,0.148766918271733,8.26873183211774,8.8768237631806,9.80681144027067,8.65384615384615,378.777329062805,136,35905,1,0,0,0,9 +"8966",2012,39169,"OH","39","169",115058,0.967312138225938,8056,0.13156842635888,8.9941724343984,9.49341183187028,10.3933244458636,6.10769230769231,358.747144587364,234,65227,1,0,0,0,9 +"8967",2012,39171,"OH","39","171",37531,0.976685939623245,2099,0.136527137566279,7.64921631982063,8.40312823512826,9.26672070541229,7.9,337.822203711417,73,21609,1,0,0,0,9 +"8968",2012,39173,"OH","39","173",128471,0.94719430844315,15909,0.123343011263242,9.67464026580524,9.5869257805337,10.576049299487,6.84615384615385,279.376145378119,218,78031,1,0,0,0,9 +"8969",2012,39175,"OH","39","175",22544,0.98416430092264,1244,0.135290986515259,7.12608727329912,7.92371033396924,8.76123680683819,6.82307692307692,419.939342095031,54,12859,1,0,0,0,9 +"8970",2012,40001,"OK","40","001",22466,0.48477699635004,1384,0.118668209739161,7.23273313617761,7.944846711002,8.74560285240295,8.87692307692308,598.945855294681,75,12522,0,0,0,0,9 +"8971",2012,40003,"OK","40","003",5665,0.906266548984996,203,0.140688437775816,5.31320597904179,6.74758652682932,7.09174211509515,2.77692307692308,432.152117545376,15,3471,0,0,0,0,9 +"8972",2012,40005,"OK","40","005",14031,0.783336896871214,805,0.133205045969639,6.69084227741856,7.41577697541539,8.2220164372022,6.56923076923077,521.28583840139,42,8057,0,0,0,0,9 +"8973",2012,40007,"OK","40","007",5592,0.962625178826896,288,0.13483547925608,5.66296048013595,6.49526555593701,7.34083555412327,2.9,541.40127388535,17,3140,0,0,0,0,9 +"8974",2012,40009,"OK","40","009",23078,0.906577693040991,1753,0.114697980760898,7.46908388492123,7.94767857130157,8.71489585024849,2.93076923076923,463.39202965709,65,14027,0,0,0,0,9 +"8975",2012,40011,"OK","40","011",9811,0.842319845071858,563,0.138110284374681,6.33327962813969,6.96318998587024,7.88720858581393,3.76923076923077,546.963410033949,29,5302,0,0,0,0,9 +"8976",2012,40013,"OK","40","013",43471,0.806445676427963,3593,0.121529295392331,8.18674278711352,8.52813313145457,9.45250192912615,5.20769230769231,611.350199091019,152,24863,0,0,0,0,9 +"8977",2012,40015,"OK","40","015",29741,0.673750042029521,1863,0.120170807975522,7.52994337060159,8.16080392095467,8.94897560784178,5.80769230769231,675.120347540214,115,17034,0,0,0,0,9 +"8978",2012,40017,"OK","40","017",122526,0.875201997943294,6773,0.115477531299479,8.8206993992149,9.76560384517274,10.5030106310634,3.79230769230769,363.209350592605,266,73236,0,0,0,0,9 +"8979",2012,40019,"OK","40","019",48028,0.793079037228284,2786,0.127446489547764,7.93236215433975,8.69934806765309,9.53372736904874,5.36153846153846,598.321780372127,164,27410,0,0,0,0,9 +"8980",2012,40021,"OK","40","021",47997,0.579119528303852,5113,0.118049044731962,8.53954159508,8.57414047185799,9.54745525919611,6.83076923076923,444.874968607613,124,27873,0,0,0,0,9 +"8981",2012,40023,"OK","40","023",15177,0.678460828885814,876,0.137378928642024,6.77536609093639,7.42297125104942,8.35749381265856,8.19230769230769,818.783865141481,68,8305,0,0,0,0,9 +"8982",2012,40027,"OK","40","027",266224,0.839552406995613,30095,0.109685828475269,10.3121143239819,10.4110879809464,11.3209050257073,4.00769230769231,321.867189326237,537,166839,0,0,0,0,9 +"8983",2012,40029,"OK","40","029",5899,0.775894219359213,357,0.135616206136633,5.87773578177964,6.49375383985169,7.39018142822643,6.89230769230769,564.971751412429,18,3186,0,0,0,0,9 +"8984",2012,40031,"OK","40","031",126428,0.69528110861518,12882,0.0986015756003417,9.46358626710684,9.63488889456061,10.5019118807812,5.76923076923077,382.606897264878,296,77364,0,0,0,0,9 +"8985",2012,40033,"OK","40","033",6158,0.84686586554076,362,0.136083143877882,5.89164421182577,6.59850902861452,7.45240245122364,5.46923076923077,573.72346528973,20,3486,0,0,0,0,9 +"8986",2012,40035,"OK","40","035",14762,0.720837284920742,889,0.131079799485165,6.7900972355139,7.48605261786314,8.28551330907974,5.46153846153846,635.14467184192,54,8502,0,0,0,0,9 +"8987",2012,40037,"OK","40","037",70761,0.84205989174828,4171,0.135286386568873,8.33591109419694,9.04852707581358,9.92329017983231,5.82307692307692,596.047782751713,241,40433,0,0,0,0,9 +"8988",2012,40039,"OK","40","039",28593,0.863847794914839,3841,0.103941524149267,8.2534880283459,7.93987157636188,9.02389030459845,3.46923076923077,414.054181947238,70,16906,0,0,0,0,9 +"8989",2012,40041,"OK","40","041",41733,0.714997723623991,2075,0.150767977380011,7.6377164326648,8.42222295382501,9.3472286240383,6.39230769230769,605.709704716519,136,22453,0,0,0,0,9 +"8990",2012,40047,"OK","40","047",61365,0.892316467041473,4254,0.123376517558869,8.35561499576018,8.80956425335415,9.75753649705182,3.93076923076923,519.753472123605,183,35209,0,0,0,0,9 +"8991",2012,40049,"OK","40","049",27342,0.861787725843025,1543,0.132141028454393,7.34148385236316,8.08240225392624,8.95195816856926,4.81538461538462,633.779810519438,97,15305,0,0,0,0,9 +"8992",2012,40051,"OK","40","051",53025,0.895106082036775,3355,0.129033474776049,8.11820704940578,8.80056599227992,9.65669147255669,4.61538461538461,543.583145706015,169,31090,0,0,0,0,9 +"8993",2012,40055,"OK","40","055",6054,0.875123885034688,379,0.115130492236538,5.93753620508243,6.69208374250663,7.19067603433221,5.18461538461538,375.93984962406,14,3724,0,0,0,0,9 +"8994",2012,40061,"OK","40","061",12819,0.787658943755363,743,0.127779077931196,6.61069604471776,7.28344822875663,8.15851624480683,8.62307692307692,573.47670250896,40,6975,0,0,0,0,9 +"8995",2012,40063,"OK","40","063",13658,0.718553228876849,848,0.131131937326109,6.7428806357919,7.42714413340862,8.12266802334641,7.78461538461538,764.602657307596,61,7978,0,0,0,0,9 +"8996",2012,40065,"OK","40","065",26226,0.863112941355906,2207,0.112178753908335,7.69938940625674,8.02617019494643,8.92811007820265,4.97692307692308,431.682909281183,66,15289,0,0,0,0,9 +"8997",2012,40067,"OK","40","067",6336,0.902146464646465,360,0.142992424242424,5.88610403145016,6.5424719605068,7.44833386089748,4.76923076923077,854.457419538593,30,3511,0,0,0,0,9 +"8998",2012,40069,"OK","40","069",10972,0.77971199416697,669,0.134979948960992,6.50578406012823,7.12367278520461,8.0381891799732,7.59230769230769,574.4296733957,35,6093,0,0,0,0,9 +"8999",2012,40071,"OK","40","071",45692,0.844611748227261,2794,0.130022761096034,7.93522953981691,8.50065722277614,9.42883312507496,6.88461538461539,502.994011976048,126,25050,0,0,0,0,9 +"9000",2012,40073,"OK","40","073",15036,0.937483373237563,813,0.123304070231445,6.70073110954781,7.48549160803075,8.33950090300594,3.25384615384615,356.040826014716,30,8426,0,0,0,0,9 +"9001",2012,40075,"OK","40","075",9359,0.857890800299177,500,0.142322897745486,6.21460809842219,6.88755257166462,7.84698098213879,4.56153846153846,654.475457170356,34,5195,0,0,0,0,9 +"9002",2012,40077,"OK","40","077",11009,0.735943319102553,779,0.127713688800073,6.65801104587075,7.04315991598834,8.00603417874901,8.21538461538461,650.650650650651,39,5994,0,0,0,0,9 +"9003",2012,40079,"OK","40","079",50346,0.813172843920073,3152,0.129742184086124,8.05579245097777,8.69433468816865,9.54881061126007,8.34615384615385,561.916134016998,160,28474,0,0,0,0,9 +"9004",2012,40081,"OK","40","081",34169,0.890690391875677,1813,0.137932043665311,7.50273821075485,8.29853954537488,9.17647330246461,4.82307692307692,544.097833972432,105,19298,0,0,0,0,9 +"9005",2012,40083,"OK","40","083",43035,0.853096316951319,2848,0.130475194609039,7.95437227253187,8.58895555764313,9.4501443641835,4.23076923076923,396.745882258646,99,24953,0,0,0,0,9 +"9006",2012,40085,"OK","40","085",9572,0.877664020058504,531,0.131529460927706,6.27476202124194,6.97634807044775,7.87245515006398,4.1,527.605049934049,28,5307,0,0,0,0,9 +"9007",2012,40087,"OK","40","087",35583,0.901526009611331,1847,0.125930922069528,7.52131798019924,8.44074401925283,9.24454854330592,4.08461538461538,483.374835213124,99,20481,0,0,0,0,9 +"9008",2012,40089,"OK","40","089",33350,0.707226386806597,1952,0.128695652173913,7.57660976697304,8.28702502516506,9.15271125913955,9.23846153846154,636.734693877551,117,18375,0,0,0,0,9 +"9009",2012,40091,"OK","40","091",20193,0.742138364779874,950,0.154063289258654,6.85646198459459,7.62021477057445,8.6285556592697,9.86923076923077,712.068650721198,78,10954,0,0,0,0,9 +"9010",2012,40093,"OK","40","093",7705,0.950681375730045,385,0.136664503569111,5.95324333428778,6.66695679242921,7.63191651307125,3.4,572.519083969466,24,4192,0,0,0,0,9 +"9011",2012,40095,"OK","40","095",16021,0.848136820423195,788,0.135135135135135,6.66949808985788,7.454719949364,8.36590507720246,5.63076923076923,634.771364758434,54,8507,0,0,0,0,9 +"9012",2012,40097,"OK","40","097",41161,0.734505964383761,2406,0.132236826121814,7.78572089653462,8.48755838628655,9.35867416648188,5.90769230769231,621.171973415577,143,23021,0,0,0,0,9 +"9013",2012,40099,"OK","40","099",13621,0.822479994126716,760,0.138242419792967,6.63331843328038,7.37525577800975,8.25192471380136,4.48461538461538,611.979166666667,47,7680,0,0,0,0,9 +"9014",2012,40101,"OK","40","101",70538,0.649649834131957,4610,0.126811080552326,8.4359831359907,9.03788993497749,9.93445313179301,6.49230769230769,640.249178058488,259,40453,0,0,0,0,9 +"9015",2012,40103,"OK","40","103",11537,0.868076623038918,605,0.132876831065268,6.40522845803084,7.21890970761906,8.081784206935,4.30769230769231,521.072796934866,34,6525,0,0,0,0,9 +"9016",2012,40105,"OK","40","105",10607,0.74403695672669,558,0.13481663052701,6.32435896238131,7.11314210870709,8.00068478451475,6.6,661.46540027137,39,5896,0,0,0,0,9 +"9017",2012,40107,"OK","40","107",12334,0.67699043294957,661,0.121209664342468,6.49375383985169,7.34407285057307,8.02975852044082,7.40769230769231,819.556309170552,58,7077,0,0,0,0,9 +"9018",2012,40109,"OK","40","109",743477,0.742134591924162,55568,0.115072826731694,10.9253627749839,11.4294568957285,12.3296566010473,4.63076923076923,449.52158220803,1999,444695,0,0,0,0,9 +"9019",2012,40111,"OK","40","111",39555,0.700518265705979,2831,0.131083301731766,7.9483852851119,8.39773375137891,9.32456151606621,7.68461538461538,581.551400196833,130,22354,0,0,0,0,9 +"9020",2012,40113,"OK","40","113",47454,0.704218822438572,2574,0.145319678003962,7.85321638815607,8.61195776786066,9.50368140227964,5.66923076923077,398.508335770693,109,27352,0,0,0,0,9 +"9021",2012,40115,"OK","40","115",32196,0.745216797117654,2250,0.124984470120512,7.71868549519847,8.22657347497711,9.10230962776248,7.63076923076923,560.588901472254,99,17660,0,0,0,0,9 +"9022",2012,40117,"OK","40","117",16443,0.836891078270389,909,0.143465304384845,6.81234509417748,7.59186171488993,8.45169420918354,6.37692307692308,775.778472147398,72,9281,0,0,0,0,9 +"9023",2012,40119,"OK","40","119",78754,0.846928409985525,16707,0.0912842522284582,9.72358307225778,8.91247327446604,10.0748324186165,4.56153846153846,281.46521608943,141,50095,0,0,0,0,9 +"9024",2012,40121,"OK","40","121",45542,0.777875367792367,2700,0.133305520179175,7.90100705199242,8.58634605010455,9.42238253021922,6.8,605.898940629525,159,26242,0,0,0,0,9 +"9025",2012,40123,"OK","40","123",38064,0.747294031105507,3447,0.114071038251366,8.14525956651686,8.34521792667643,9.3206287258703,4.92307692307692,469.547775346462,103,21936,0,0,0,0,9 +"9026",2012,40125,"OK","40","125",70524,0.801897226476093,5077,0.121235324144972,8.5324758149474,9.04970202601337,9.97194027817057,5.14615384615385,491.042787346395,199,40526,0,0,0,0,9 +"9027",2012,40127,"OK","40","127",11254,0.78523191754043,587,0.141993957703928,6.3750248198281,7.05531284333975,8.05134093329298,7.03076923076923,623.768877216021,38,6092,0,0,0,0,9 +"9028",2012,40131,"OK","40","131",88117,0.815030016909336,5574,0.123631081403134,8.62586820804189,9.32465071815359,10.1522988505989,4.81538461538462,350.829054133511,179,51022,0,0,0,0,9 +"9029",2012,40133,"OK","40","133",25388,0.718725382070269,1539,0.127264849535213,7.33888813383888,7.96067260838812,8.87052254510387,7.60769230769231,814.809520405975,114,13991,0,0,0,0,9 +"9030",2012,40135,"OK","40","135",42064,0.72869912514264,2452,0.124952453404336,7.8046592970561,8.57527340249276,9.39424400995279,8.07692307692308,561.941251596424,132,23490,0,0,0,0,9 +"9031",2012,40137,"OK","40","137",44901,0.901115788067081,2607,0.134674060711343,7.8659554139335,8.51919119407891,9.45634070543332,4.76153846153846,577.508801075907,146,25281,0,0,0,0,9 +"9032",2012,40139,"OK","40","139",21598,0.91489952773405,1830,0.102277988702658,7.51207124583547,7.93200315236138,8.66163979578127,4.04615384615385,344.855240997674,43,12469,0,0,0,0,9 +"9033",2012,40141,"OK","40","141",7826,0.855737285969844,454,0.12624584717608,6.11809719804135,6.73101810048208,7.61529833982581,4.67692307692308,678.203928905519,29,4276,0,0,0,0,9 +"9034",2012,40143,"OK","40","143",615376,0.772820194482723,43317,0.117875900262604,10.6763004466393,11.2841536043972,12.1371351296539,5,432.298734842184,1580,365488,0,0,0,0,9 +"9035",2012,40145,"OK","40","145",74988,0.814957059796234,4013,0.127620419267083,8.29729437026692,9.20743615882879,10.0118036960196,5.00769230769231,393.151843470708,172,43749,0,0,0,0,9 +"9036",2012,40147,"OK","40","147",51655,0.8236375955861,3105,0.133384957893718,8.04076899436758,8.66922734727174,9.61106090905359,4.67692307692308,512.42988712693,148,28882,0,0,0,0,9 +"9037",2012,40149,"OK","40","149",11586,0.934144657345072,626,0.125927843949594,6.4393503711001,7.13966033596492,8.04782935745784,3.85384615384615,311.915159076731,20,6412,0,0,0,0,9 +"9038",2012,40151,"OK","40","151",8853,0.91821981249294,1191,0.111035807071049,7.0825485693553,6.73340189183736,7.74153358928183,2.70769230769231,418.012540376211,22,5263,0,0,0,0,9 +"9039",2012,40153,"OK","40","153",20677,0.932195192726218,1341,0.112492141026261,7.20117088328168,7.86901937649902,8.60098271714592,3.4,468.326349519349,57,12171,0,0,0,0,9 +"9040",2012,41001,"OR","41","001",16001,0.967814511593025,732,0.166989563152303,6.59578051396131,7.36897040219479,8.365672383775,10.5384615384615,365.33850896221,32,8759,1,0,0,0,9 +"9041",2012,41003,"OR","41","003",86708,0.906594547215943,15022,0.128396457074318,9.61727107224596,9.05707263557296,10.2073628048827,6,217.080627363013,120,55279,1,0,0,0,9 +"9042",2012,41005,"OR","41","005",383159,0.925250352986619,21676,0.148450121229046,9.983960936686,10.8141424327917,11.6613885726079,8.03076923076923,280.118127334318,645,230260,1,0,0,0,9 +"9043",2012,41007,"OR","41","007",37435,0.953359155870175,2392,0.169173233604915,7.77988511507052,8.3291754420774,9.31847703058076,8.73846153846154,367.745986187102,82,22298,1,0,0,0,9 +"9044",2012,41009,"OR","41","009",49220,0.955627793579846,2568,0.15530272247054,7.85088266480985,8.7551071216339,9.59103453109243,10.7,386.00806176129,113,29274,1,0,0,0,9 +"9045",2012,41011,"OR","41","011",62697,0.938705201205799,3542,0.168684307064134,8.17244681834278,8.74464743831753,9.79684844204642,11.0769230769231,517.799352750809,184,35535,1,0,0,0,9 +"9046",2012,41013,"OR","41","013",20610,0.970014556040757,914,0.167879670063076,6.81783057145415,7.72400465667607,8.67846133901236,13.5230769230769,287.832533798517,33,11465,1,0,0,0,9 +"9047",2012,41015,"OR","41","015",22272,0.953080100574713,834,0.193067528735632,6.72623340235875,7.56371966841437,8.70101362433393,11.7769230769231,560.795309711955,66,11769,1,0,0,0,9 +"9048",2012,41017,"OR","41","017",161408,0.965317704203013,8329,0.148040989294211,9.02749867993534,9.9681041956221,10.7961001570557,11.2384615384615,307.663426640524,295,95884,1,0,0,0,9 +"9049",2012,41019,"OR","41","019",106955,0.954513580477771,5719,0.162900285166659,8.65154924391532,9.30027247947679,10.316424675483,11.9230769230769,533.998459941746,319,59738,1,0,0,0,9 +"9050",2012,41023,"OR","41","023",7325,0.968327645051195,289,0.187303754266212,5.66642668811243,6.5510803350434,7.59789795052178,13.9769230769231,354.430379746835,14,3950,1,0,0,0,9 +"9051",2012,41025,"OR","41","025",7256,0.94239250275634,346,0.166482910694598,5.84643877505772,6.66185474054531,7.60787807327851,11.7769230769231,503.271263210871,20,3974,1,0,0,0,9 +"9052",2012,41027,"OR","41","027",22545,0.956664448880018,1229,0.131204258150366,7.11395610956603,8.00369733909437,8.78201596972194,7.3,278.090943254416,37,13305,1,0,0,0,9 +"9053",2012,41029,"OR","41","029",205939,0.949883217846061,12743,0.15163713526821,9.45273738021228,10.0512176645605,11.0082475717905,11.0769230769231,404.834397429302,480,118567,1,0,0,0,9 +"9054",2012,41031,"OR","41","031",21835,0.772887565834669,1256,0.1405083581406,7.13568734702814,7.84502441724148,8.67607551647643,11.8,506.535947712418,62,12240,1,0,0,0,9 +"9055",2012,41033,"OR","41","033",82789,0.958810953145949,4171,0.162243776347099,8.33591109419694,9.02761873516089,10.0442489952444,12.1307692307692,507.940732854228,229,45084,1,0,0,0,9 +"9056",2012,41035,"OR","41","035",65936,0.917480587236108,4438,0.152011041009464,8.39795910349254,8.89959435992585,9.8528256377339,11.6923076923077,446.971700608305,169,37810,1,0,0,0,9 +"9057",2012,41037,"OR","41","037",7789,0.950186159969187,323,0.172422647323148,5.77765232322266,6.78332520060396,7.6192334162268,12.9538461538462,422.316070237831,19,4499,1,0,0,0,9 +"9058",2012,41039,"OR","41","039",355217,0.930253901136488,35328,0.14384165172275,10.4724311296368,10.6130984591267,11.6041180883531,8.88461538461539,344.686353825834,749,217299,1,0,0,0,9 +"9059",2012,41041,"OR","41","041",46180,0.924014724989173,2151,0.195300996102209,7.67368812926773,8.43663368355782,9.53104611087515,9.90769230769231,519.7935892124,138,26549,1,0,0,0,9 +"9060",2012,41043,"OR","41","043",118293,0.955821561715402,7376,0.138427464008859,8.90598676523643,9.55810574328497,10.4488885009418,10.7153846153846,364.548397445245,250,68578,1,0,0,0,9 +"9061",2012,41045,"OR","41","045",30755,0.940009754511462,2206,0.117639408226305,7.69893619981345,8.22335889947926,8.9000036089596,9.36923076923077,322.190898107128,56,17381,1,0,0,0,9 +"9062",2012,41047,"OR","41","047",319865,0.918127960233223,22175,0.120510215247057,10.0067208071778,10.5938308057633,11.4233726795179,9.96923076923077,343.336447988874,632,184076,1,0,0,0,9 +"9063",2012,41049,"OR","41","049",11226,0.95572777480848,663,0.13566720114021,6.49677499018586,7.23273313617761,8.01763715990848,8.09230769230769,288.184438040346,18,6246,1,0,0,0,9 +"9064",2012,41051,"OR","41","051",760505,0.829602698207112,52541,0.122547517767799,10.869349096176,11.6937792784891,12.4419863107462,7.6,306.364043767425,1545,504302,1,0,0,0,9 +"9065",2012,41053,"OR","41","053",76227,0.930064150497855,6708,0.129586629409527,8.8110561229431,9.08273424737104,10.004824986442,8.89230769230769,299.387407305053,130,43422,1,0,0,0,9 +"9066",2012,41057,"OR","41","057",25276,0.960792846969457,1174,0.176531096692515,7.06817200038804,7.87815533650332,8.86007342433278,9.7,431.247790738777,61,14145,1,0,0,0,9 +"9067",2012,41059,"OR","41","059",77011,0.923868018854449,5428,0.122060484865798,8.59932602095476,9.17802377049964,9.93134588066452,9.06153846153846,336.942360393549,150,44518,1,0,0,0,9 +"9068",2012,41061,"OR","41","061",25801,0.952947560172086,2181,0.145808302003798,7.68753876620163,7.84971375760487,8.90517298518338,9.42307692307692,362.417943107221,53,14624,1,0,0,0,9 +"9069",2012,41063,"OR","41","063",6800,0.977205882352941,239,0.197058823529412,5.47646355193151,6.40687998606931,7.57301725605255,11.5384615384615,452.127659574468,17,3760,1,0,0,0,9 +"9070",2012,41065,"OR","41","065",25375,0.923034482758621,1543,0.149911330049261,7.34148385236316,7.9291264873068,8.88405606174246,8.6,444.259336387616,64,14406,1,0,0,0,9 +"9071",2012,41067,"OR","41","067",548651,0.84978793440639,32852,0.114701331082965,10.3997679048601,11.3304078889658,12.0529272935248,7.07692307692308,212.588800113381,720,338682,1,0,0,0,9 +"9072",2012,41071,"OR","41","071",99933,0.938288653397777,7056,0.127385348183283,8.86163359768663,9.4444634273334,10.2539331342235,8.47692307692308,294.990339497654,171,57968,1,0,0,0,9 +"9073",2012,44001,"RI","44","001",49280,0.966781655844156,3480,0.142593344155844,8.15478757276852,8.61613313927114,9.59669061622466,8.82307692307692,234.052958848599,67,28626,1,0,0,0,9 +"9074",2012,44003,"RI","44","003",164644,0.949242000923204,9379,0.144408542066519,9.14622842650894,9.96284077823564,10.8568042832467,9.79230769230769,365.071534287124,370,101350,1,0,0,0,9 +"9075",2012,44005,"RI","44","005",83242,0.922983590014656,5502,0.148002210422623,8.61286694148452,9.19553125632248,10.1210555895172,9.11538461538461,292.122895898023,143,48952,1,0,0,0,9 +"9076",2012,44007,"RI","44","007",631397,0.817023204101382,54417,0.118926760817679,10.9044318840261,11.2795295371917,12.1908980921592,10.7769230769231,294.68756095975,1133,384475,1,0,0,0,9 +"9077",2012,44009,"RI","44","009",126330,0.951033008786512,11466,0.151056756114937,9.34714141346833,9.51236903813489,10.5500409052133,9.50769230769231,278.662951160651,209,75001,1,0,0,0,9 +"9078",2012,45001,"SC","45","001",25033,0.705149203051971,1804,0.147605161187233,7.49776170062257,7.95787735848981,8.90463009700501,10.4076923076923,511.097108450606,73,14283,0,0,0,0,9 +"9079",2012,45003,"SC","45","003",162982,0.728055858929207,10671,0.138236124234578,9.27528506061656,9.8536143020404,10.8059430169538,8.41538461538462,429.81138374228,412,95856,0,0,0,0,9 +"9080",2012,45005,"SC","45","005",9982,0.254758565417752,690,0.144159487076738,6.5366915975913,7.1608459066643,7.90765159471109,16.5769230769231,603.687387828357,37,6129,0,0,0,0,9 +"9081",2012,45007,"SC","45","007",188860,0.816070104839564,11744,0.13085883723393,9.3710977508543,10.0973670581638,10.9406853241694,8.66153846153846,503.895393867602,553,109745,0,0,0,0,9 +"9082",2012,45009,"SC","45","009",15683,0.3705285978448,1416,0.148058407192501,7.25559127425367,7.40974195408092,8.43923164994653,15.5769230769231,572.005383580081,51,8916,0,0,0,0,9 +"9083",2012,45011,"SC","45","011",22362,0.537116536982381,1458,0.139656560236115,7.2848209125686,7.84776253747361,8.81477608854528,13.5846153846154,626.46828504307,80,12770,0,0,0,0,9 +"9084",2012,45013,"SC","45","013",167423,0.778841616743219,11974,0.134091492805648,9.3904929114853,9.7797933301898,10.7431563857588,7.38461538461539,321.152202029945,293,91234,0,0,0,0,9 +"9085",2012,45015,"SC","45","015",189696,0.703451838731444,14994,0.115822157557355,9.61540540006301,10.1356304876471,10.9751396596215,8.21538461538462,346.974706918023,404,116435,0,0,0,0,9 +"9086",2012,45017,"SC","45","017",14872,0.560314685314685,887,0.160166756320602,6.78784498230958,7.4265490723973,8.40648506943182,10.9461538461538,460.29919447641,40,8690,0,0,0,0,9 +"9087",2012,45019,"SC","45","019",364913,0.677714962196469,29964,0.126375327817863,10.3077519400678,10.7048387023055,11.680099542434,7,341.549050962942,786,230128,0,0,0,0,9 +"9088",2012,45021,"SC","45","021",55829,0.776800587508284,4051,0.128499525336295,8.30671904320269,8.89863879368018,9.7291936874294,12.5692307692308,597.371565113501,195,32643,0,0,0,0,9 +"9089",2012,45023,"SC","45","023",32708,0.608719579307815,2129,0.143053687171334,7.66340766489348,8.28803156777646,9.20562929224606,14.4923076923077,612.854224503693,117,19091,0,0,0,0,9 +"9090",2012,45025,"SC","45","025",46078,0.653674204609575,2945,0.138829810321629,7.98786409608569,8.70682132339263,9.53046543291733,11.1230769230769,631.679459399905,172,27229,0,0,0,0,9 +"9091",2012,45027,"SC","45","027",34329,0.491217338110635,2582,0.150630662122404,7.85631957140659,8.19946419761216,9.20853875002955,12.5692307692308,471.602434077079,93,19720,0,0,0,0,9 +"9092",2012,45029,"SC","45","029",38106,0.588463758988086,2230,0.144990290243006,7.70975686445416,8.37516869138682,9.33943694531059,11.8384615384615,571.744743637034,124,21688,0,0,0,0,9 +"9093",2012,45031,"SC","45","031",68053,0.570114469604573,4470,0.144607879153013,8.40514368760761,9.04546572878595,9.94874768394099,10.8230769230769,636.685194542698,252,39580,0,0,0,0,9 +"9094",2012,45033,"SC","45","033",31529,0.492689270195693,2112,0.131339401820546,7.65539064482615,8.22924441673591,9.16178018136081,13.8384615384615,749.126019643749,135,18021,0,0,0,0,9 +"9095",2012,45035,"SC","45","035",142645,0.705836166707561,8779,0.115545585194013,9.08011778492621,9.89207264972083,10.6963443122451,7.65384615384615,310.638199225723,268,86274,0,0,0,0,9 +"9096",2012,45037,"SC","45","037",26563,0.613146105485073,1669,0.144561984715582,7.41997992366183,8.18311807939475,8.87891537657648,9.23076923076923,397.853999638315,66,16589,0,0,0,0,9 +"9097",2012,45039,"SC","45","039",23425,0.39778014941302,1392,0.16307363927428,7.23849684089437,7.89469085042562,8.89261137817211,12.7538461538462,655.430711610487,91,13884,0,0,0,0,9 +"9098",2012,45041,"SC","45","041",138031,0.556534401692373,9993,0.130354775376546,9.20964012686179,9.76892705914043,10.6839356514979,9.43076923076923,520.616409829238,425,81634,0,0,0,0,9 +"9099",2012,45043,"SC","45","043",60253,0.654523426219441,3048,0.165850663037525,8.02224091680654,8.77616709973127,9.78571701680162,11.7230769230769,588.341781317886,195,33144,0,0,0,0,9 +"9100",2012,45045,"SC","45","045",466172,0.781565602395682,31340,0.121165578370215,10.35265051591,11.055182367295,11.8724094598286,7.27692307692308,386.63796334972,1083,280107,0,0,0,0,9 +"9101",2012,45047,"SC","45","047",69966,0.659434582511506,5149,0.123159820484235,8.54655780004614,9.05730573580712,9.96890069108436,9.93076923076923,439.626317630014,176,40034,0,0,0,0,9 +"9102",2012,45049,"SC","45","049",20738,0.44300318256341,1372,0.134487414408333,7.22402480828583,7.91644286012226,8.67094379122216,10.9230769230769,502.227622519239,62,12345,0,0,0,0,9 +"9103",2012,45051,"SC","45","051",281441,0.835919428938925,19073,0.146567131299278,9.85602900137643,10.4358202325866,11.3628581037056,10.1769230769231,457.055912973679,763,166938,0,0,0,0,9 +"9104",2012,45053,"SC","45","053",25743,0.521967136697355,2018,0.126014838985355,7.60986220091355,8.07713663853845,8.92465630218707,8.28461538461539,435.869495545157,68,15601,0,0,0,0,9 +"9105",2012,45055,"SC","45","055",62296,0.732679465776294,3498,0.142850263259278,8.15994665557855,8.94311430809178,9.83953552604361,9.32307692307692,544.659312849008,198,36353,0,0,0,0,9 +"9106",2012,45057,"SC","45","057",79350,0.747561436672968,4553,0.133219911783239,8.42354163533478,9.29118275982028,10.0509156866026,11.0461538461538,439.034992392958,202,46010,0,0,0,0,9 +"9107",2012,45059,"SC","45","059",66239,0.727471731155362,4624,0.137034073582029,8.43901541035221,9.00356217474824,9.88923648676627,10.0846153846154,579.040299127545,223,38512,0,0,0,0,9 +"9108",2012,45061,"SC","45","061",18634,0.345229151014275,1440,0.141783835998712,7.27239839257005,7.63964228785801,8.55217416031148,13.7615384615385,624.066098268436,71,11377,0,0,0,0,9 +"9109",2012,45063,"SC","45","063",269868,0.822365008078023,17062,0.128918582418071,9.74460904746864,10.5097688000744,11.3349584135413,6.84615384615385,377.966795098033,619,163771,0,0,0,0,9 +"9110",2012,45065,"SC","45","065",9926,0.48992544831755,449,0.172073342736248,6.10702288774225,6.98286275146894,7.78572089653462,11.5307692307692,454.227812718379,26,5724,0,0,0,0,9 +"9111",2012,45067,"SC","45","067",32398,0.415025618865362,2045,0.154361380332119,7.6231530684769,8.2451219664786,9.2340568985935,15.5846153846154,762.992210009604,143,18742,0,0,0,0,9 +"9112",2012,45069,"SC","45","069",28263,0.427590843151824,1799,0.130382478859286,7.49498623395053,8.25140306538056,8.95286414158147,17.2307692307692,616.227319411161,108,17526,0,0,0,0,9 +"9113",2012,45071,"SC","45","071",37542,0.661632305151564,2657,0.141441585424325,7.88495294575981,8.39049553837028,9.29935806829384,8.64615384615385,499.260355029586,108,21632,0,0,0,0,9 +"9114",2012,45073,"SC","45","073",74574,0.90697830343015,4808,0.149086813098399,8.47803647621504,9.05087559732516,9.97002407633637,8.59230769230769,541.711809317443,230,42458,0,0,0,0,9 +"9115",2012,45075,"SC","45","075",91471,0.352537962851614,7902,0.136502279410961,8.97487117097134,9.17003907520266,10.2472190908389,13.9615384615385,623.732155383245,329,52747,0,0,0,0,9 +"9116",2012,45077,"SC","45","077",119863,0.908387075244237,15730,0.116724927625706,9.66332499605232,9.50241279272926,10.4796794797334,8.76153846153846,410.594736036299,295,71847,0,0,0,0,9 +"9117",2012,45079,"SC","45","079",393205,0.486908864332854,45038,0.109968082806678,10.7152618568543,10.8017365059095,11.7437831854242,7.98461538461538,348.509806149027,859,246478,0,0,0,0,9 +"9118",2012,45081,"SC","45","081",19858,0.703192667942391,1251,0.135914996474972,7.13169851046691,7.79234892411304,8.64259160081057,8.29230769230769,453.554295682512,52,11465,0,0,0,0,9 +"9119",2012,45083,"SC","45","083",288283,0.757699899057523,20562,0.12639316227457,9.93119999110266,10.5256488053628,11.3760054804046,9.23076923076923,475.237029621341,807,169810,0,0,0,0,9 +"9120",2012,45085,"SC","45","085",107944,0.500018528125695,9002,0.118802341955088,9.10520205385288,9.43156207772769,10.3911468982703,10.4307692307692,473.694183035432,300,63332,0,0,0,0,9 +"9121",2012,45087,"SC","45","087",28193,0.67172702443869,1681,0.144362075692548,7.42714413340862,8.15937473677543,9.05847042263806,13.3461538461538,740.514075887393,121,16340,0,0,0,0,9 +"9122",2012,45089,"SC","45","089",33554,0.329886153662753,2083,0.152172617273648,7.64156444126097,8.30967689598773,9.20281210555539,15.4769230769231,628.835133627466,124,19719,0,0,0,0,9 +"9123",2012,45091,"SC","45","091",234151,0.773116493203104,14959,0.122087883459819,9.61306840437446,10.4226086733262,11.1992826428487,9.06923076923077,355.924978687127,501,140760,0,0,0,0,9 +"9124",2012,46005,"SD","46","005",18003,0.906182302949508,1061,0.134310948175304,6.96696713861398,7.51261754467451,8.47616284185825,3.3,311.057595825808,31,9966,0,0,0,0,9 +"9125",2012,46011,"SD","46","011",32799,0.943016555382786,6741,0.0947284978200555,8.81596356085344,8.0149968943483,9.17585244151751,3.71538461538462,179.908586988233,37,20566,0,0,0,0,9 +"9126",2012,46013,"SD","46","013",37578,0.931369418276651,2776,0.131007504390867,7.9287663216267,8.32675881451173,9.29688497337637,3.39230769230769,289.601912291992,63,21754,0,0,0,0,9 +"9127",2012,46019,"SD","46","019",10222,0.964292702015261,529,0.154862062218744,6.2709884318583,6.93828448401696,7.95997452808054,4.42307692307692,363.699341877381,21,5774,0,0,0,0,9 +"9128",2012,46023,"SD","46","023",9192,0.653394255874674,477,0.121409921671018,6.16751649088834,6.80350525760834,7.71779621101358,4.68461538461538,303.819444444444,14,4608,0,0,0,0,9 +"9129",2012,46027,"SD","46","027",14077,0.919727214605385,3302,0.0941251687149251,8.10228362448007,7.10332206252611,8.39908510293591,3.63076923076923,159.872102318145,14,8757,0,0,0,0,9 +"9130",2012,46029,"SD","46","029",27629,0.959173332368164,1957,0.126533714575265,7.57916796739608,8.08764028777898,8.9692874001184,3.67692307692308,254.737496116806,41,16095,0,0,0,0,9 +"9131",2012,46031,"SD","46","031",4067,0.309073026801082,260,0.104007868207524,5.56068163101553,6.04025471127741,6.94215670569947,7.53846153846154,935.891436593355,20,2137,0,0,0,0,9 +"9132",2012,46033,"SD","46","033",8316,0.949013949013949,248,0.209475709475709,5.51342874616498,6.63068338564237,7.78239033558746,5.10769230769231,470.387000213812,22,4677,0,0,0,0,9 +"9133",2012,46035,"SD","46","035",19958,0.950796673013328,1644,0.12611484116645,7.40488757561612,7.64873978895624,8.60300384782935,3.16153846153846,284.191829484902,32,11260,0,0,0,0,9 +"9134",2012,46041,"SD","46","041",5532,0.226138828633406,404,0.0925524222704266,6.00141487796115,6.40357419793482,7.30114780585603,15.1846153846154,1001.72711571675,29,2895,0,0,0,0,9 +"9135",2012,46047,"SD","46","047",6974,0.904215658158876,277,0.195726985947806,5.62401750618734,6.52649485957079,7.55276208421415,5.41538461538462,433.784128604236,17,3919,0,0,0,0,9 +"9136",2012,46065,"SD","46","065",17445,0.865921467469189,910,0.142734307824592,6.8134445995109,7.65775527113487,8.59489469908009,3.12307692307692,274.102079395085,29,10580,0,0,0,0,9 +"9137",2012,46071,"SD","46","071",3174,0.444549464398236,190,0.106490233144297,5.24702407216049,5.71373280550937,6.6631326959908,6.76153846153846,680.272108843537,11,1617,0,0,0,0,9 +"9138",2012,46079,"SD","46","079",11757,0.969464999574721,863,0.158713957642256,6.76041469108343,7.02108396428914,8.08487062913819,4.02307692307692,192.76393831554,13,6744,0,0,0,0,9 +"9139",2012,46081,"SD","46","081",24418,0.952739782127938,2189,0.156564829224343,7.69120009752286,7.82364593083495,8.8879288190033,4.26153846153846,301.142974471289,44,14611,0,0,0,0,9 +"9140",2012,46083,"SD","46","083",48414,0.96744743256083,2251,0.105341430164828,7.71912984090673,8.87052254510387,9.58555243691333,3.05384615384615,149.450854997915,43,28772,0,0,0,0,9 +"9141",2012,46093,"SD","46","093",25851,0.933271440176396,2239,0.133341069977951,7.71378461659875,7.95892649305011,8.90639340705837,4.16153846153846,271.327612317012,43,15848,0,0,0,0,9 +"9142",2012,46099,"SD","46","099",174825,0.90048906048906,12445,0.116699556699557,9.42907421480169,9.9925967276079,10.8678062534209,3.75384615384615,302.587450583628,323,106746,0,0,0,0,9 +"9143",2012,46103,"SD","46","103",104291,0.855049812543748,7159,0.131833044078588,8.87612558539618,9.38915578944085,10.3300616238545,4.16923076923077,373.431183127405,230,61591,0,0,0,0,9 +"9144",2012,46109,"SD","46","109",10323,0.60960960960961,512,0.132035261067519,6.23832462503951,6.96508034560141,7.85825418218603,5.42307692307692,496.088532722763,26,5241,0,0,0,0,9 +"9145",2012,46113,"SD","46","113",14041,0.0390997792180044,1324,0.0710775585784488,7.18841273649695,7.31721240835984,8.22174772834662,NA,1020.40816326531,73,7154,0,0,0,0,9 +"9146",2012,46115,"SD","46","115",6736,0.963925178147268,350,0.14563539192399,5.85793315448346,6.42162226780652,7.46164039220858,3.87692307692308,366.300366300366,13,3549,0,0,0,0,9 +"9147",2012,46121,"SD","46","121",9914,0.096530159370587,790,0.0849304014524914,6.67203294546107,6.93439720992856,7.86134179559999,9.21538461538461,1116.97806661251,55,4924,0,0,0,0,9 +"9148",2012,46125,"SD","46","125",8301,0.981207083483918,328,0.144560896277557,5.79301360838414,6.8596149036542,7.70210434005105,3.30769230769231,351.725653989888,16,4549,0,0,0,0,9 +"9149",2012,46127,"SD","46","127",14801,0.967029254780082,719,0.146409026417134,6.57786135772105,7.51860721681525,8.34283980427146,4.5,267.877940833916,23,8586,0,0,0,0,9 +"9150",2012,46135,"SD","46","135",22594,0.938346463662919,1310,0.135124369301585,7.1777824161952,7.91607809630279,8.70748291785937,3.48461538461538,260.377919952388,35,13442,0,0,0,0,9 +"9151",2012,47001,"TN","47","001",75240,0.937094630515683,4478,0.144989367357788,8.4069317971587,9.12956406194889,10.0196693068255,8.06153846153846,553.740014524328,244,44064,0,0,0,0,9 +"9152",2012,47003,"TN","47","003",45254,0.891788571176029,2809,0.118243691165422,7.94058382710424,8.70068073485016,9.47983301522775,9.92307692307692,498.829668853843,130,26061,0,0,0,0,9 +"9153",2012,47005,"TN","47","005",16447,0.961087128351675,835,0.155165075697696,6.72743172485086,7.58069975222456,8.46125755908593,9.96923076923077,849.005910800645,79,9305,0,0,0,0,9 +"9154",2012,47007,"TN","47","007",12936,0.947897340754484,736,0.143320964749536,6.60123011872888,7.4713630881871,8.12651816878071,10.6,586.777937149563,45,7669,0,0,0,0,9 +"9155",2012,47009,"TN","47","009",124062,0.95407941190695,7255,0.139631797004723,8.88944616531829,9.67746486047107,10.5294794579087,7.19230769230769,432.728517630948,316,73025,0,0,0,0,9 +"9156",2012,47011,"TN","47","011",101077,0.932714663078643,7549,0.122935979500777,8.92917038313962,9.49964612554406,10.3320179335753,7.49230769230769,404.542816878057,244,60315,0,0,0,0,9 +"9157",2012,47013,"TN","47","013",40545,0.987668023184116,2371,0.141842397336293,7.77106708606541,8.59025776227324,9.39706887058834,11.2384615384615,705.482362940926,166,23530,0,0,0,0,9 +"9158",2012,47015,"TN","47","015",13792,0.974405452436195,812,0.135368329466357,6.69950034016168,7.49052940206071,8.31188955823036,8.63846153846154,647.209671510563,53,8189,0,0,0,0,9 +"9159",2012,47017,"TN","47","017",28670,0.880048831531217,2035,0.134844785490059,7.6182510978767,8.12385426310591,9.02292586811622,11.1230769230769,649.756341371986,104,16006,0,0,0,0,9 +"9160",2012,47019,"TN","47","019",57355,0.976811088832709,3838,0.142690262400837,8.25270667656764,8.89082357600438,9.75550944976463,9.08461538461538,487.518355359765,166,34050,0,0,0,0,9 +"9161",2012,47021,"TN","47","021",39226,0.972824147249273,2282,0.134375159333095,7.73280753042202,8.62443194208584,9.39748361904935,7.33076923076923,593.87848332572,143,24079,0,0,0,0,9 +"9162",2012,47023,"TN","47","023",17080,0.892037470725995,1591,0.120901639344262,7.37211802833779,7.63046126178363,8.52257866369258,7.96923076923077,407.331975560081,40,9820,0,0,0,0,9 +"9163",2012,47025,"TN","47","025",31774,0.977749103040222,2211,0.145370428652357,7.70120018085745,8.30893825259578,9.17326136373476,10,727.272727272727,138,18975,0,0,0,0,9 +"9164",2012,47027,"TN","47","027",7706,0.974046197767973,387,0.147806903711394,5.95842469302978,6.82110747225646,7.68708015578313,10.2,870.960348384139,38,4363,0,0,0,0,9 +"9165",2012,47029,"TN","47","029",35535,0.966680737301252,1974,0.151231180526242,7.58781721999343,8.41338702269065,9.29339392711147,11.6461538461538,821.119969446699,172,20947,0,0,0,0,9 +"9166",2012,47031,"TN","47","031",53165,0.942819524123013,3205,0.126192043637732,8.07246736935477,8.79133399330135,9.6538716808908,8.37692307692308,612.532346293688,187,30529,0,0,0,0,9 +"9167",2012,47033,"TN","47","033",14612,0.851081303038598,861,0.12523952915412,6.75809450442773,7.46450983463653,8.34093322600088,9.33076923076923,507.430228343603,42,8277,0,0,0,0,9 +"9168",2012,47035,"TN","47","035",57008,0.983072551220881,2833,0.146137384226775,7.94909149983052,8.69165057315339,9.63984747456458,9.16923076923077,665.968020012846,197,29581,0,0,0,0,9 +"9169",2012,47037,"TN","47","037",649619,0.668434882600417,52201,0.113170950972801,10.8628569307754,11.3963916487143,12.2842320424252,6.30769230769231,372.384428513871,1562,419459,0,0,0,0,9 +"9170",2012,47039,"TN","47","039",11631,0.958043160519302,603,0.144097670019775,6.40191719672719,7.19967834569117,8.06934236681164,10.4769230769231,641.326450805569,41,6393,0,0,0,0,9 +"9171",2012,47041,"TN","47","041",18865,0.969997349589186,1108,0.140471773124834,7.01031186730723,7.77863014732581,8.62011072542292,9.76923076923077,628.874314976193,70,11131,0,0,0,0,9 +"9172",2012,47043,"TN","47","043",50229,0.941368532122877,2984,0.126739532939139,8.00101996132365,8.816111895794,9.63141632759849,8.46923076923077,423.714676542221,127,29973,0,0,0,0,9 +"9173",2012,47045,"TN","47","045",38196,0.83872656822704,2279,0.130013613990994,7.73149202924568,8.48652777710535,9.33679679592874,11.1846153846154,549.800072700836,121,22008,0,0,0,0,9 +"9174",2012,47047,"TN","47","047",38689,0.71053787898369,1894,0.161415389387164,7.54644627374602,8.46463594067756,9.36460533098761,8.61538461538461,382.048129281574,87,22772,0,0,0,0,9 +"9175",2012,47049,"TN","47","049",17919,0.989675763156426,946,0.145767062894135,6.85224256905188,7.71154897962915,8.55043452519604,9.90769230769231,627.020672087783,64,10207,0,0,0,0,9 +"9176",2012,47051,"TN","47","051",40706,0.931484302068491,2940,0.142190340490345,7.98616486033273,8.49637805170232,9.38429367909962,7.9,543.129624085874,127,23383,0,0,0,0,9 +"9177",2012,47053,"TN","47","053",49668,0.80194491423049,2746,0.124909398405412,7.91790058632792,8.7268056084461,9.58857130713058,10.4538461538462,645.346335866915,180,27892,0,0,0,0,9 +"9178",2012,47055,"TN","47","055",28978,0.882324522051211,1851,0.144247360066257,7.5234813125735,8.11282747875137,9.05567289196404,8.56923076923077,552.059836162887,93,16846,0,0,0,0,9 +"9179",2012,47057,"TN","47","057",22682,0.986950004408782,1216,0.145269376598184,7.10332206252611,8.0179667034936,8.80926561216931,10.4769230769231,608.016814292148,81,13322,0,0,0,0,9 +"9180",2012,47059,"TN","47","059",68773,0.968039783054396,4130,0.143893679205502,8.32603268595508,9.07817946837384,9.91803127797697,10.3384615384615,607.879924953096,243,39975,0,0,0,0,9 +"9181",2012,47061,"TN","47","061",13583,0.984245012147537,776,0.135684311271442,6.65415252018322,7.41457288135059,8.25660734462616,10.2230769230769,825.039287585123,63,7636,0,0,0,0,9 +"9182",2012,47063,"TN","47","063",62775,0.930561529271207,3775,0.124922341696535,8.23615566168312,9.02533521755303,9.81421908477795,9.57692307692308,531.752845708588,192,36107,0,0,0,0,9 +"9183",2012,47065,"TN","47","065",345828,0.766970864128989,25188,0.135402570063731,10.1341229696086,10.6900112263512,11.58640824173,7.00769230769231,423.028809885314,886,209442,0,0,0,0,9 +"9184",2012,47067,"TN","47","067",6656,0.987980769230769,351,0.16015625,5.86078622346587,6.66949808985788,7.5847730776122,12.0076923076923,759.878419452888,30,3948,0,0,0,0,9 +"9185",2012,47069,"TN","47","069",26614,0.566769369504772,1870,0.130157060193883,7.53369370984863,8.14060704285845,8.83433697401764,11.0692307692308,490.136754205494,81,16526,0,0,0,0,9 +"9186",2012,47071,"TN","47","071",25966,0.951898636678734,1440,0.148155279981514,7.27239839257005,8.05515773181968,8.927977461002,10.2461538461538,663.552034667208,98,14769,0,0,0,0,9 +"9187",2012,47073,"TN","47","073",56574,0.975801604977552,2993,0.143493477569201,8.0040315078527,8.93761259130621,9.72859830755947,8.96923076923077,529.725148323041,175,33036,0,0,0,0,9 +"9188",2012,47075,"TN","47","075",18282,0.487309922327973,1054,0.144623126572585,6.96034772910131,7.66293785046154,8.64488255255713,11.7384615384615,482.360730161733,51,10573,0,0,0,0,9 +"9189",2012,47077,"TN","47","077",28094,0.90873496120168,1670,0.131202391969816,7.4205789054108,8.1886891244442,9.03419967425731,9.82307692307692,599.791908929555,98,16339,0,0,0,0,9 +"9190",2012,47079,"TN","47","079",32379,0.905988449303561,1669,0.146205874177708,7.41997992366183,8.21419441485256,9.14313162228273,9.58461538461538,782.067522167759,142,18157,0,0,0,0,9 +"9191",2012,47081,"TN","47","081",24200,0.940702479338843,1541,0.132438016528926,7.34018683532012,8.0925452638913,8.81774212957484,9.02307692307692,650.362441568999,96,14761,0,0,0,0,9 +"9192",2012,47083,"TN","47","083",8425,0.960474777448071,461,0.14160237388724,6.13339804299665,6.93244789157251,7.77988511507052,11.3538461538462,486.978615286894,23,4723,0,0,0,0,9 +"9193",2012,47085,"TN","47","085",18285,0.96078753076292,1016,0.144216570959803,6.92362862813843,7.71110125184016,8.5709235138372,9.66923076923077,627.89799072643,65,10352,0,0,0,0,9 +"9194",2012,47087,"TN","47","087",11602,0.987071194621617,651,0.159369074297535,6.47850964220857,7.28619171470238,8.12681372072611,10.6230769230769,902.901124925992,61,6756,0,0,0,0,9 +"9195",2012,47089,"TN","47","089",52316,0.965536355990519,3607,0.133783163850447,8.19063168090354,8.78354947715327,9.64049809267472,9.52307692307692,624.149264632648,188,30121,0,0,0,0,9 +"9196",2012,47091,"TN","47","091",18164,0.970160757542392,1061,0.141984144461572,6.96696713861398,7.82684209815829,8.47949132423223,9.63076923076923,419.058030427257,46,10977,0,0,0,0,9 +"9197",2012,47093,"TN","47","093",440883,0.878126396345516,39522,0.12367226679187,10.5846127578687,10.9444530728445,11.8370575889116,6.23076923076923,425.826095270315,1158,271942,0,0,0,0,9 +"9198",2012,47095,"TN","47","095",7718,0.70355014252397,680,0.119720134749935,6.52209279817015,7.04490511712937,7.35500192110526,10.6384615384615,407.68782760629,21,5151,0,0,0,0,9 +"9199",2012,47097,"TN","47","097",27698,0.63246443786555,2026,0.118961657881435,7.61381868480863,8.21581779183245,8.94167630536016,11.0923076923077,486.041135676605,82,16871,0,0,0,0,9 +"9200",2012,47099,"TN","47","099",42162,0.971087709311703,2598,0.126156254447132,7.86249719723055,8.54772239645106,9.39257859196439,9.68461538461538,614.719348821435,145,23588,0,0,0,0,9 +"9201",2012,47101,"TN","47","101",11950,0.967698744769874,668,0.149456066945607,6.50428817353665,7.29233717617388,8.15937473677543,10.9769230769231,484.083907877365,33,6817,0,0,0,0,9 +"9202",2012,47103,"TN","47","103",33386,0.914604924219733,1917,0.141166956209189,7.55851674304564,8.29354951506035,9.18173511496585,6.22307692307692,553.228891991107,107,19341,0,0,0,0,9 +"9203",2012,47105,"TN","47","105",49842,0.969282934071666,2406,0.150495565988524,7.78572089653462,8.64892296209413,9.53878043690013,7.69230769230769,468.967538653184,128,27294,0,0,0,0,9 +"9204",2012,47107,"TN","47","107",52441,0.94347933868538,3197,0.139261265040712,8.06996814905984,8.79011689289247,9.6471749398304,9.29230769230769,586.753298415435,177,30166,0,0,0,0,9 +"9205",2012,47109,"TN","47","109",26148,0.931467033807557,1496,0.138098516138902,7.31055015853442,8.08332860878638,8.92399074475818,10.4307692307692,622.631293990254,92,14776,0,0,0,0,9 +"9206",2012,47111,"TN","47","111",22486,0.979498354531709,1468,0.129191496931424,7.29165620917446,7.98922140881528,8.79270146293631,8.45384615384615,568.094580070628,74,13026,0,0,0,0,9 +"9207",2012,47113,"TN","47","113",98532,0.608046116997524,7727,0.126943531035603,8.95247596793358,9.38362118411799,10.3316269776832,8.26923076923077,482.708685308416,280,58006,0,0,0,0,9 +"9208",2012,47115,"TN","47","115",28237,0.950278004037256,1660,0.152176222686546,7.41457288135059,8.17301131172497,9.05005424204284,9.26153846153846,637.322056108166,107,16789,0,0,0,0,9 +"9209",2012,47117,"TN","47","117",30980,0.917979341510652,1841,0.135409941897999,7.51806418123308,8.33567131479285,9.14537509312382,9.55384615384615,466.883821932682,86,18420,0,0,0,0,9 +"9210",2012,47119,"TN","47","119",82147,0.856148124703276,4919,0.139128635251439,8.50086053679534,9.25061821847475,10.1534677578039,7.96923076923077,449.461053487899,221,49170,0,0,0,0,9 +"9211",2012,47121,"TN","47","121",11673,0.973100316970787,603,0.152831320140495,6.40191719672719,7.33171496972647,8.14206328310415,10.4769230769231,758.01749271137,52,6860,0,0,0,0,9 +"9212",2012,47123,"TN","47","123",45106,0.962355340752893,2596,0.144149337117013,7.86172707782398,8.63675242647388,9.48508916901606,10.1076923076923,511.518787738933,133,26001,0,0,0,0,9 +"9213",2012,47125,"TN","47","125",184946,0.750819158024504,17794,0.085830458620354,9.78661660080471,10.1012722693834,10.9527520215739,7.70769230769231,317.144130212565,363,114459,0,0,0,0,9 +"9214",2012,47127,"TN","47","127",6290,0.965659777424483,314,0.144356120826709,5.74939298590825,6.69950034016168,7.49997654095212,5.9,361.21144762434,13,3599,0,0,0,0,9 +"9215",2012,47129,"TN","47","129",21908,0.954171991966405,1403,0.135886434179295,7.24636808010246,8.06022424044096,8.66492330344057,10.4,493.612078977933,68,13776,0,0,0,0,9 +"9216",2012,47131,"TN","47","131",31320,0.883365261813538,1818,0.138537675606641,7.50549227473742,8.29204763743135,9.12510922761352,13.6615384615385,590.233309204299,106,17959,0,0,0,0,9 +"9217",2012,47133,"TN","47","133",22158,0.985648524235039,1197,0.142973192526401,7.08757370555797,7.95962530509811,8.75841238945768,9.06153846153846,672.627997151223,85,12637,0,0,0,0,9 +"9218",2012,47135,"TN","47","135",7856,0.96372199592668,430,0.150330957230143,6.06378520868761,6.80461452006262,7.67508185771633,9.93846153846154,523.321956769056,23,4395,0,0,0,0,9 +"9219",2012,47139,"TN","47","139",16626,0.984722723445206,912,0.142728256946951,6.81563999007433,7.72929567431048,8.49002752334347,9.97692307692308,684.008705565344,66,9649,0,0,0,0,9 +"9220",2012,47141,"TN","47","141",73540,0.952338863203699,8258,0.116983954310579,9.01893770644604,9.0543880702023,9.9869091606752,8.18461538461538,453.405141660337,197,43449,0,0,0,0,9 +"9221",2012,47143,"TN","47","143",32378,0.963308419297054,2189,0.136419791216258,7.69120009752286,8.28601746840476,9.15377002048779,10.4230769230769,520.973199419947,97,18619,0,0,0,0,9 +"9222",2012,47145,"TN","47","145",53628,0.959312299545014,2799,0.158816289997762,7.93701748951545,8.76060984757,9.6638969875516,8.78461538461539,608.690021368905,188,30886,0,0,0,0,9 +"9223",2012,47147,"TN","47","147",66809,0.908111182625095,3809,0.124773608346181,8.2451219664786,9.10253241934188,9.91965613369771,7.14615384615385,494.851544536639,198,40012,0,0,0,0,9 +"9224",2012,47149,"TN","47","149",274482,0.820979153459972,26420,0.099358063552437,10.1818765780763,10.5932791092827,11.3686855112515,6.63076923076923,317.122883657367,543,171227,0,0,0,0,9 +"9225",2012,47151,"TN","47","151",22176,0.990124458874459,1404,0.124954906204906,7.24708058458576,8.00302866638473,8.7804801070333,15.7615384615385,729.53046177726,94,12885,0,0,0,0,9 +"9226",2012,47153,"TN","47","153",14349,0.982925639417381,777,0.143842776500105,6.65544035036765,7.55538194424027,8.34379173199684,8.53076923076923,530.759951749095,44,8290,0,0,0,0,9 +"9227",2012,47155,"TN","47","155",92385,0.970384802727716,5742,0.140834551063484,8.65556286068101,9.39199503978243,10.2429909049665,8.95384615384615,468.963010088158,258,55015,0,0,0,0,9 +"9228",2012,47157,"TN","47","157",939421,0.431668016789065,70846,0.120440143450061,11.1682637862209,11.7175546787865,12.6043150660483,8.75384615384615,456.278572294161,2598,569389,0,0,0,0,9 +"9229",2012,47159,"TN","47","159",19185,0.966223612197029,1112,0.133176961167579,7.01391547481053,7.7944112057266,8.65817178467581,8.3,571.428571428571,65,11375,0,0,0,0,9 +"9230",2012,47161,"TN","47","161",13309,0.958223758359005,730,0.146442257119243,6.59304453414244,7.37211802833779,8.25452888193974,11.1846153846154,607.627666451196,47,7735,0,0,0,0,9 +"9231",2012,47163,"TN","47","163",156367,0.964033331841117,8908,0.144570145874769,9.09470502837726,9.90033258084283,10.7455718458704,7.66923076923077,542.929846882815,495,91172,0,0,0,0,9 +"9232",2012,47165,"TN","47","165",166026,0.911483743510053,9427,0.12543216122776,9.15133319139615,10.0512176645605,10.8298870185586,6.63846153846154,403.720722639806,398,98583,0,0,0,0,9 +"9233",2012,47167,"TN","47","167",61542,0.793376880829352,3956,0.11926814208183,8.2829886927426,9.0247334241907,9.82709235128242,9.00769230769231,363.066259592376,132,36357,0,0,0,0,9 +"9234",2012,47169,"TN","47","169",7795,0.891853752405388,475,0.137395766516998,6.16331480403464,6.88653164253051,7.76556908109732,8.77692307692308,713.513513513513,33,4625,0,0,0,0,9 +"9235",2012,47171,"TN","47","171",18256,0.989154250657318,910,0.151402278702892,6.8134445995109,7.72577144158795,8.57546209954021,10.4846153846154,512.236767216847,54,10542,0,0,0,0,9 +"9236",2012,47173,"TN","47","173",19107,0.989270947820171,1128,0.138692625739258,7.028201432058,7.78821155784708,8.64787051505785,9.59230769230769,699.300699300699,79,11297,0,0,0,0,9 +"9237",2012,47175,"TN","47","175",5652,0.98619957537155,291,0.170912951167728,5.67332326717149,6.57228254269401,7.42177579364465,11.6692307692308,722.673893405601,24,3321,0,0,0,0,9 +"9238",2012,47177,"TN","47","177",39757,0.951505395276304,2294,0.128078074301381,7.73805229768932,8.57602797713713,9.35305447417536,8.90769230769231,594.979588291497,137,23026,0,0,0,0,9 +"9239",2012,47179,"TN","47","179",124914,0.935539651280081,11312,0.129505099508462,9.33361938813635,9.68862214266614,10.5581537462778,7.21538461538462,482.359246526098,369,76499,0,0,0,0,9 +"9240",2012,47181,"TN","47","181",16972,0.930414800848456,1088,0.130803676643884,6.99209642741589,7.76556908109732,8.38206051742474,9.63076923076923,503.562945368171,53,10525,0,0,0,0,9 +"9241",2012,47183,"TN","47","183",34556,0.900451441139021,4419,0.12327815719412,8.39366870513074,8.23244015847034,9.23824732522919,11.1076923076923,499.515033947624,103,20620,0,0,0,0,9 +"9242",2012,47185,"TN","47","185",26043,0.969972737395845,1488,0.141419959298084,7.30518821539304,8.06589354696427,8.92757950384347,9.92307692307692,568.790149892934,85,14944,0,0,0,0,9 +"9243",2012,47187,"TN","47","187",193207,0.913693603233837,8188,0.126356705502389,9.01042494678118,10.30098769099,10.9683879267187,5.03846153846154,174.106708852928,197,113149,0,0,0,0,9 +"9244",2012,47189,"TN","47","189",119172,0.910557849159198,6489,0.130743798878931,8.77786371462117,9.74928687145883,10.5064638245848,6.51538461538462,348.001796138303,248,71264,0,0,0,0,9 +"9245",2012,48001,"TX","48","001",58074,0.761890002410717,3473,0.118676171780831,8.15277405274407,9.13916655252166,9.44509623861856,6.26923076923077,523.848188794887,200,38179,0,0,0,0,9 +"9246",2012,48003,"TX","48","003",16102,0.953732455595578,1190,0.102658054900012,7.08170858610557,7.5963923040642,8.41205487329293,3.96923076923077,389.315453660647,36,9247,0,0,0,0,9 +"9247",2012,48005,"TX","48","005",87511,0.823610746077636,5959,0.117322393756214,8.69265796074698,9.2985343827121,10.1360664506368,6.86153846153846,468.464121277922,233,49737,0,0,0,0,9 +"9248",2012,48007,"TX","48","007",23466,0.946305292763999,1175,0.161211966249041,7.06902342657826,7.74109909003537,8.76826314537129,6.92307692307692,702.058846730299,89,12677,0,0,0,0,9 +"9249",2012,48009,"TX","48","009",8815,0.97447532614861,495,0.143845717526943,6.20455776256869,6.92853781816467,7.82164312623998,5.46153846153846,416.584011108907,21,5041,0,0,0,0,9 +"9250",2012,48013,"TX","48","013",46444,0.96908104383774,2934,0.118228404099561,7.98412195870293,8.64417820317073,9.47231994707559,6.7,444.444444444444,115,25875,0,0,0,0,9 +"9251",2012,48015,"TX","48","015",28572,0.887372252554949,1576,0.144722105557889,7.36264527041782,8.09894674894334,8.99081526618468,6.36923076923077,353.422619047619,57,16128,0,0,0,0,9 +"9252",2012,48019,"TX","48","019",20579,0.973225132416541,851,0.186889547597065,6.74641212857337,7.61134771740362,8.70118002752925,6.5,391.456046293932,46,11751,0,0,0,0,9 +"9253",2012,48021,"TX","48","021",74745,0.88541039534417,4121,0.137306843267108,8.32385113133882,9.18655984331078,9.96585183673268,6.63846153846154,388.67421417757,172,44253,0,0,0,0,9 +"9254",2012,48023,"TX","48","023",3593,0.959365432785973,177,0.140829390481492,5.17614973257383,5.91079664404053,6.85856503479136,5.07692307692308,905.700586041556,17,1877,0,0,0,0,9 +"9255",2012,48025,"TX","48","025",32486,0.897956042602967,2772,0.103798559379425,7.92732436030979,8.45212119467252,8.87891537657648,6.98461538461538,313.390313390313,66,21060,0,0,0,0,9 +"9256",2012,48027,"TX","48","027",325138,0.702206447723736,31955,0.088756158923288,10.3720839420844,10.6016720246133,11.4837334954373,7.36923076923077,313.39251254342,609,194325,0,0,0,0,9 +"9257",2012,48029,"TX","48","029",1788768,0.867951014329416,141610,0.103659054723698,11.8608320792171,12.3804208326614,13.2009323843295,6.29230769230769,331.064942764885,3529,1065954,0,0,0,0,9 +"9258",2012,48031,"TX","48","031",10619,0.9655334777286,449,0.179772106601375,6.10702288774225,7.0343879299155,8.00969535774292,5.13076923076923,380.731666942559,23,6041,0,0,0,0,9 +"9259",2012,48035,"TX","48","035",18127,0.964307386771115,850,0.14723892535996,6.74523634948436,7.57147364885127,8.47616284185825,7.16923076923077,540.035310001039,52,9629,0,0,0,0,9 +"9260",2012,48037,"TX","48","037",93068,0.725415824988181,6062,0.121878626380711,8.70979505761775,9.3983954606179,10.1723307831013,7.39230769230769,499.890534919361,274,54812,0,0,0,0,9 +"9261",2012,48039,"TX","48","039",324295,0.795639772429424,19326,0.110957615751091,9.86920661855925,10.778226857252,11.4600625182702,6.62307692307692,316.261360845001,618,195408,0,0,0,0,9 +"9262",2012,48041,"TX","48","041",200304,0.818076523684,46802,0.0748112868439971,10.7536812160354,9.90433719149071,11.0560512662967,5.24615384615385,186.25243311324,244,131005,0,0,0,0,9 +"9263",2012,48043,"TX","48","043",9262,0.954329518462535,637,0.155042107536169,6.45676965557216,6.9555926083963,7.9168074909376,5.05384615384615,341.542333273414,19,5563,0,0,0,0,9 +"9264",2012,48047,"TX","48","047",7203,0.976259891711787,511,0.118145217270582,6.2363695902037,6.45519856334012,7.52617891334615,8.7,466.008771929825,17,3648,0,0,0,0,9 +"9265",2012,48049,"TX","48","049",37804,0.945614220717384,2314,0.131679187387578,7.74673290775362,8.37516869138682,9.2679486845965,6.74615384615385,471.271480934926,99,21007,0,0,0,0,9 +"9266",2012,48051,"TX","48","051",17437,0.857945747548317,929,0.144405574353386,6.83410873881384,7.57609734062311,8.50714285556274,6.26153846153846,575.598725459965,56,9729,0,0,0,0,9 +"9267",2012,48053,"TX","48","053",43383,0.960122628679437,2282,0.146209344674181,7.73280753042202,8.47365918939251,9.41841089379287,5.91538461538462,386.630082314792,93,24054,0,0,0,0,9 +"9268",2012,48055,"TX","48","055",38648,0.900098323328503,3185,0.117910370523701,8.06620756800626,8.48446336679332,9.31551086958172,7.13076923076923,291.532113383567,65,22296,0,0,0,0,9 +"9269",2012,48057,"TX","48","057",21564,0.911704693006863,1375,0.125394175477648,7.22620901010067,7.80710329012598,8.68304655550289,7.30769230769231,405.931571535084,49,12071,0,0,0,0,9 +"9270",2012,48059,"TX","48","059",13488,0.967600830367734,659,0.14991103202847,6.49072353450251,7.31654817718298,8.2529671950008,6.03076923076923,545.502927088877,41,7516,0,0,0,0,9 +"9271",2012,48061,"TX","48","061",415729,0.977697009349841,30000,0.094111789170349,10.3089526606443,10.8776697628261,11.6598184427065,10.2538461538462,298.944793340149,655,219104,0,0,0,0,9 +"9272",2012,48063,"TX","48","063",12487,0.800112116601265,770,0.135420837671178,6.64639051484773,7.22620901010067,8.18172045512811,7.96153846153846,645.918966529654,44,6812,0,0,0,0,9 +"9273",2012,48065,"TX","48","065",6090,0.972906403940887,260,0.148275862068966,5.56068163101553,6.49828214947643,7.44541755670169,4.52307692307692,409.716125256073,14,3417,0,0,0,0,9 +"9274",2012,48067,"TX","48","067",30032,0.813099360681939,1487,0.140816462440064,7.30451594646016,8.13944052187461,9.04899722156742,9.11538461538461,540.671891136626,89,16461,0,0,0,0,9 +"9275",2012,48069,"TX","48","069",8254,0.951538647928277,535,0.114853404409983,6.28226674689601,6.80239476332431,7.64730883235624,4.35384615384615,327.332242225859,14,4277,0,0,0,0,9 +"9276",2012,48071,"TX","48","071",36497,0.887031810833767,2129,0.120009863824424,7.66340766489348,8.56274000637221,9.27902652976463,8,378.717037591173,81,21388,0,0,0,0,9 +"9277",2012,48073,"TX","48","073",51271,0.82297985215814,3389,0.123364084960309,8.12829017160705,8.74592112102435,9.52784820132521,7.2,488.90295803876,139,28431,0,0,0,0,9 +"9278",2012,48077,"TX","48","077",10525,0.969311163895487,495,0.159144893111639,6.20455776256869,7.08673793451058,8.00570067866254,5.56153846153846,620.909548581977,37,5959,0,0,0,0,9 +"9279",2012,48083,"TX","48","083",8673,0.950190245589761,381,0.152657673238787,5.9427993751267,6.880384082186,7.76344638872736,7.45384615384615,515.907136715391,24,4652,0,0,0,0,9 +"9280",2012,48085,"TX","48","085",834839,0.768726664662288,43889,0.10197774660743,10.6894189981894,11.8606696481175,12.4711409431104,5.86923076923077,170.994138744487,872,509959,0,0,0,0,9 +"9281",2012,48089,"TX","48","089",20724,0.846120440069485,1072,0.148089171974522,6.97728134163075,7.67925142595306,8.63621989783788,6.31538461538462,521.33957762658,59,11317,0,0,0,0,9 +"9282",2012,48091,"TX","48","091",114897,0.957701245463328,5813,0.150926481979512,8.66785206770135,9.55895290182487,10.4317306083392,6.01538461538462,388.104156324744,258,66477,0,0,0,0,9 +"9283",2012,48093,"TX","48","093",13723,0.975879909640749,693,0.135028783793631,6.5410299991899,7.28000825288419,8.17103418920548,6.32307692307692,420.403587443946,30,7136,0,0,0,0,9 +"9284",2012,48097,"TX","48","097",38729,0.939580159570348,2491,0.135170027627876,7.82043951526218,8.36217546914963,9.30909914399945,4.98461538461538,475.502307584728,102,21451,0,0,0,0,9 +"9285",2012,48099,"TX","48","099",78515,0.769789212252436,8569,0.0762274724574922,9.05590631866912,9.31856677704705,10.114396566182,7.31538461538462,250.169171775996,122,48767,0,0,0,0,9 +"9286",2012,48111,"TX","48","111",7058,0.950410881269481,484,0.103995466137716,6.18208490671663,6.80682936039218,7.55433482372575,3.66923076923077,446.20723847298,18,4034,0,0,0,0,9 +"9287",2012,48113,"TX","48","113",2456296,0.693968886485994,176471,0.100488296198829,12.0809118359068,12.7712756529874,13.5342690339158,7.07692307692308,318.224746645947,4751,1492970,0,0,0,0,9 +"9288",2012,48115,"TX","48","115",13614,0.906787130894667,1125,0.0991626267078008,7.02553831463852,7.37462901521894,8.01466637046494,6.37692307692308,393.943124461406,32,8123,0,0,0,0,9 +"9289",2012,48117,"TX","48","117",19369,0.959316433476173,1342,0.103928958645258,7.20191631753163,7.73543335249969,8.54383512236266,4.68461538461538,386.436093131098,40,10351,0,0,0,0,9 +"9290",2012,48119,"TX","48","119",5240,0.88530534351145,283,0.14236641221374,5.64544689764324,6.33327962813969,7.28892769452126,6.70769230769231,652.472527472528,19,2912,0,0,0,0,9 +"9291",2012,48121,"TX","48","121",707027,0.817601025137654,50906,0.0972989716092879,10.8377360737841,11.641142762771,12.3274137880544,5.68461538461538,196.733322328328,870,442223,0,0,0,0,9 +"9292",2012,48123,"TX","48","123",20360,0.887966601178782,1041,0.136296660117878,6.94793706861497,7.83241092718792,8.55236726642389,4.76923076923077,403.156630639904,47,11658,0,0,0,0,9 +"9293",2012,48127,"TX","48","127",10472,0.97192513368984,689,0.119461420932009,6.53524127101366,7.07411681619736,7.93487156594518,5.8,323.508267433501,18,5564,0,0,0,0,9 +"9294",2012,48131,"TX","48","131",11564,0.976392251815981,830,0.104375648564511,6.72142570079064,7.20117088328168,7.96311205897929,6.99230769230769,545.341227796821,35,6418,0,0,0,0,9 +"9295",2012,48133,"TX","48","133",18461,0.960673852987379,1166,0.134174746763447,7.06133436691044,7.48549160803075,8.50451313825886,6.60769230769231,643.842616249361,63,9785,0,0,0,0,9 +"9296",2012,48135,"TX","48","135",144472,0.923473060523838,12073,0.100981505066726,9.39872683333239,9.7599058240581,10.6337137313375,4.56153846153846,486.670245124351,408,83835,0,0,0,0,9 +"9297",2012,48139,"TX","48","139",153779,0.886382405920184,9889,0.11729820066459,9.19917830726999,9.94917767845324,10.731143772668,6.71538461538462,334.25811411572,300,89751,0,0,0,0,9 +"9298",2012,48141,"TX","48","141",832118,0.933071992193415,71154,0.0954359838388305,11.1726018211929,11.5764447168293,12.3994248075566,8.49230769230769,271.436126491784,1278,470829,0,0,0,0,9 +"9299",2012,48143,"TX","48","143",39408,0.959221477872513,5764,0.103862159967519,8.65938695711941,8.31409733540581,9.36434818445553,5.53076923076923,288.556785391274,67,23219,0,0,0,0,9 +"9300",2012,48145,"TX","48","145",17572,0.725984520828591,1224,0.128442977464148,7.10987946307227,7.65964295456468,8.64611397148308,7.27692307692308,418.768440087561,44,10507,0,0,0,0,9 +"9301",2012,48147,"TX","48","147",33601,0.908395583464778,2157,0.131811553227583,7.67647364638916,8.32263709695394,9.08918917041203,7.01538461538462,411.543542322935,81,19682,0,0,0,0,9 +"9302",2012,48149,"TX","48","149",24645,0.914871170622844,1152,0.155203895313451,7.04925484125584,7.80954132465341,8.799963219507,4.8,362.20947781467,48,13252,0,0,0,0,9 +"9303",2012,48157,"TX","48","157",624737,0.58745360047508,34982,0.117382194427415,10.462588922467,11.4783754272108,12.1764635920261,5.93076923076923,214.834946133103,815,379361,0,0,0,0,9 +"9304",2012,48159,"TX","48","159",10633,0.936894573497602,561,0.138436941596915,6.3297209055227,7.01571242048723,7.96415571884094,7.36923076923077,435.61596096881,25,5739,0,0,0,0,9 +"9305",2012,48161,"TX","48","161",19484,0.811127078628618,969,0.136111681379594,6.87626461189077,7.84893372636407,8.52257866369258,6.69230769230769,542.752913960317,61,11239,0,0,0,0,9 +"9306",2012,48163,"TX","48","163",17924,0.928810533363089,1774,0.096351260879268,7.48099216286952,7.70210434005105,8.28677323113125,5.01538461538462,444.815123714206,48,10791,0,0,0,0,9 +"9307",2012,48165,"TX","48","165",18305,0.960830374214695,1278,0.086315214422289,7.15305163493748,7.64587582518481,8.46863300080086,4.21538461538462,388.071895424837,38,9792,0,0,0,0,9 +"9308",2012,48167,"TX","48","167",301099,0.813828674289852,18892,0.129455760397743,9.84649383101601,10.5828653690101,11.4309776103228,7.58461538461538,400.895277794581,729,181843,0,0,0,0,9 +"9309",2012,48171,"TX","48","171",25177,0.977678039480478,1049,0.154585534416332,6.9555926083963,7.77022320415879,8.7895077867369,4.66153846153846,346.293089878797,44,12706,0,0,0,0,9 +"9310",2012,48177,"TX","48","177",19923,0.898107714701601,1243,0.122571901822015,7.12528309151071,7.72841577984104,8.58466490653125,5.03076923076923,409.83606557377,45,10980,0,0,0,0,9 +"9311",2012,48179,"TX","48","179",22922,0.922868859610854,1303,0.116525608585638,7.17242457712485,7.98684490116138,8.66905554072548,5.58461538461538,479.78067169294,63,13131,0,0,0,0,9 +"9312",2012,48181,"TX","48","181",121866,0.902130208589763,7980,0.131423038419247,8.98469369044386,9.56233437739637,10.4798761724859,6.8,534.45286641544,373,69791,0,0,0,0,9 +"9313",2012,48183,"TX","48","183",123154,0.766243889764035,9265,0.115505789499326,9.13399913871946,9.59825232083676,10.4911075368811,6.16923076923077,456.595264937993,324,70960,0,0,0,0,9 +"9314",2012,48185,"TX","48","185",26686,0.818256763846211,1645,0.142022034025332,7.40549566319947,8.12622252945853,8.8349193852164,6.42307692307692,507.174666006927,82,16168,0,0,0,0,9 +"9315",2012,48187,"TX","48","187",139657,0.889493544899289,8373,0.111007683109332,9.03276752220443,9.87734889492643,10.6304804498797,5.65384615384615,322.564759184478,262,81224,0,0,0,0,9 +"9316",2012,48189,"TX","48","189",36248,0.915857426616641,3053,0.099150297947473,8.02387999273488,8.34735341212434,9.14590851181679,6.86153846153846,353.25287017957,72,20382,0,0,0,0,9 +"9317",2012,48193,"TX","48","193",8251,0.968852260332081,402,0.138649860622955,5.99645208861902,6.75809450442773,7.6685611080159,5.78461538461538,491.573033707865,21,4272,0,0,0,0,9 +"9318",2012,48199,"TX","48","199",55129,0.927642438643908,3316,0.12927860109924,8.10651451625519,8.83695515733143,9.69756978188699,8.40769230769231,461.404165107869,148,32076,0,0,0,0,9 +"9319",2012,48201,"TX","48","201",4262549,0.717756910243143,309888,0.102633189671251,12.6439662208577,13.320946987327,14.0805052060913,6.6,302.139703698968,7845,2596481,0,0,0,0,9 +"9320",2012,48203,"TX","48","203",66273,0.759585351500611,4185,0.129555022407315,8.33926198292358,8.99044155082686,9.87421320983213,7.36923076923077,541.334776892738,210,38793,0,0,0,0,9 +"9321",2012,48207,"TX","48","207",5883,0.934387217406085,332,0.136155022947476,5.80513496891649,6.49828214947643,7.26682734752059,5.27692307692308,737.553779963122,24,3254,0,0,0,0,9 +"9322",2012,48209,"TX","48","209",168406,0.927294751968457,22420,0.104141182618197,10.0177086966262,9.96693172509266,10.8636994714682,5.79230769230769,229.720712992088,241,104910,0,0,0,0,9 +"9323",2012,48213,"TX","48","213",78989,0.916937801466027,4448,0.141323475420628,8.40020983593042,9.08500388066489,10.0087030576804,7.52307692307692,654.179865032365,285,43566,0,0,0,0,9 +"9324",2012,48215,"TX","48","215",807930,0.974980505736883,62286,0.079121953634597,11.0394919604213,11.5773639811075,12.3092021743866,10.5230769230769,239.777148297465,1020,425395,0,0,0,0,9 +"9325",2012,48217,"TX","48","217",35165,0.911957912697284,1977,0.135418740224655,7.58933582317062,8.2602342916073,9.18122047340233,6.88461538461538,561.208433861324,107,19066,0,0,0,0,9 +"9326",2012,48219,"TX","48","219",23053,0.937578623172689,1944,0.113130612067844,7.57250298502038,7.78945456608667,8.77121506237538,5.24615384615385,449.194547707559,58,12912,0,0,0,0,9 +"9327",2012,48221,"TX","48","221",52132,0.973643827207857,2538,0.152056318575923,7.83913164827433,8.57941653459637,9.57831127565677,6.46923076923077,456.958065309853,130,28449,0,0,0,0,9 +"9328",2012,48223,"TX","48","223",35309,0.906256195304313,2086,0.127502902942593,7.64300363556072,8.36730010184162,9.20331575703922,6.42307692307692,449.358780167626,89,19806,0,0,0,0,9 +"9329",2012,48225,"TX","48","225",23212,0.721824918145787,1241,0.138419782870929,7.12367278520461,7.9707403900071,8.67162954472066,7,573.428656538576,77,13428,0,0,0,0,9 +"9330",2012,48227,"TX","48","227",35485,0.898154149640693,2778,0.115795406509793,7.92948652331429,8.35420356292178,9.07130816328062,5.56923076923077,577.74313356871,126,21809,0,0,0,0,9 +"9331",2012,48231,"TX","48","231",86992,0.883552510575685,6072,0.127218594813316,8.71144331907547,9.26369154747318,10.1467474074352,8.23076923076923,443.489847463357,223,50283,0,0,0,0,9 +"9332",2012,48233,"TX","48","233",22024,0.942063203777697,1224,0.135579367962223,7.10987946307227,7.87511928104029,8.71341765337918,6.46923076923077,572.719206259579,71,12397,0,0,0,0,9 +"9333",2012,48237,"TX","48","237",8992,0.9418371886121,636,0.116436832740214,6.45519856334012,7.06987412845857,7.67832635650689,5.71538461538462,429.505135387488,23,5355,0,0,0,0,9 +"9334",2012,48239,"TX","48","239",14271,0.91044776119403,789,0.131245182538014,6.67076632084587,7.33888813383888,8.26719218593215,5.07692307692308,420.757363253857,33,7843,0,0,0,0,9 +"9335",2012,48241,"TX","48","241",35855,0.814447078510668,1932,0.137330916190211,7.56631101477246,8.30498958014036,9.21572584425252,10.5769230769231,557.424797870738,111,19913,0,0,0,0,9 +"9336",2012,48245,"TX","48","245",251617,0.602355961640112,19365,0.120786751292639,9.87122259194885,10.3420650120945,11.1787944854664,10.9769230769231,462.993453549177,703,151838,0,0,0,0,9 +"9337",2012,48249,"TX","48","249",41673,0.973340052312049,2895,0.114054663691119,7.9707403900071,8.48073665440562,9.36142922633904,6.13076923076923,545.832611332525,126,23084,0,0,0,0,9 +"9338",2012,48251,"TX","48","251",153406,0.944584957563589,9475,0.118528610354223,9.15641202995063,9.91630505624674,10.7031995233241,6.59230769230769,383.7187252507,344,89649,0,0,0,0,9 +"9339",2012,48253,"TX","48","253",19873,0.847129270870025,1518,0.116690987772354,7.32514895795557,8.00034949532468,8.32457884513685,7.16153846153846,417.48899347199,55,13174,0,0,0,0,9 +"9340",2012,48255,"TX","48","255",14857,0.892441273473783,1195,0.114828027192569,7.08590146436561,7.57712193087668,8.10530751550515,6.06153846153846,496.021494264751,48,9677,0,0,0,0,9 +"9341",2012,48257,"TX","48","257",106569,0.869493004532275,5743,0.114310915932401,8.6557370008643,9.62720690280879,10.3640404136265,6.89230769230769,430.429946317164,267,62031,0,0,0,0,9 +"9342",2012,48259,"TX","48","259",35563,0.97283693726626,1726,0.148946939234598,7.45356187164337,8.3296580675694,9.22945648916841,5.39230769230769,282.752120640905,57,20159,0,0,0,0,9 +"9343",2012,48265,"TX","48","265",49712,0.95439732861281,2837,0.143989378822015,7.95050243480885,8.43750042250699,9.50181524266666,5.80769230769231,544.027356804228,140,25734,0,0,0,0,9 +"9344",2012,48273,"TX","48","273",32093,0.919265883526003,4682,0.0939768796933911,8.45148064805086,8.08271113423758,9.09627541568821,6.84615384615385,332.939533884653,62,18622,0,0,0,0,9 +"9345",2012,48277,"TX","48","277",49673,0.831659050188231,3285,0.126708674732752,8.09712193091871,8.69751274553952,9.57748036576268,9.15384615384615,476.770863206194,133,27896,0,0,0,0,9 +"9346",2012,48279,"TX","48","279",13870,0.925811103100216,797,0.111607786589762,6.68085467879022,7.32118855673948,8.19229373114764,7.85384615384615,316.935372743558,23,7257,0,0,0,0,9 +"9347",2012,48281,"TX","48","281",20050,0.928129675810474,1077,0.135660847880299,6.98193467715639,7.80751004221619,8.66440557109662,7.10769230769231,475.017593244194,54,11368,0,0,0,0,9 +"9348",2012,48283,"TX","48","283",7154,0.979452054794521,1109,0.0876432764886777,7.01121398735037,6.6682282484174,7.38461038317697,4.44615384615385,272.294077603812,12,4407,0,0,0,0,9 +"9349",2012,48285,"TX","48","285",19532,0.916240016383371,945,0.145044030309236,6.85118492749374,7.60339933974067,8.54830418644129,4.78461538461538,406.032482598608,42,10344,0,0,0,0,9 +"9350",2012,48287,"TX","48","287",16504,0.865487154629181,899,0.137421231216675,6.80128303447162,7.54486106865846,8.43010908450912,5.36153846153846,382.388287993008,35,9153,0,0,0,0,9 +"9351",2012,48289,"TX","48","289",16740,0.908721624850657,783,0.146714456391876,6.6631326959908,7.37588214821501,8.40223117294656,7.34615384615385,515.290691161644,46,8927,0,0,0,0,9 +"9352",2012,48291,"TX","48","291",76378,0.869530493073922,5239,0.122338893398623,8.56388591940822,9.23610557986221,10.0649684434582,9.52307692307692,487.465181058496,224,45952,0,0,0,0,9 +"9353",2012,48293,"TX","48","293",23679,0.798302293171164,1568,0.132902571899151,7.35755620091035,7.91753635394363,8.7702838190984,6.83846153846154,645.640074211503,87,13475,0,0,0,0,9 +"9354",2012,48297,"TX","48","297",11671,0.932396538428584,682,0.136063747750835,6.52502965784346,7.21007962817079,7.97487690055888,4.56153846153846,366.300366300366,25,6825,0,0,0,0,9 +"9355",2012,48299,"TX","48","299",19266,0.972801827052839,646,0.184781480328039,6.4707995037826,7.34729970074316,8.51418868239594,6.74615384615385,735.139676538542,70,9522,0,0,0,0,9 +"9356",2012,48303,"TX","48","303",286062,0.881162125693032,37078,0.101317196971286,10.5207790807925,10.3499666367349,11.3623699813399,5.31538461538462,401.289694045603,692,172444,0,0,0,0,9 +"9357",2012,48307,"TX","48","307",8241,0.954495813614853,397,0.145977429923553,5.98393628068719,6.76388490856244,7.6980291702728,5.36153846153846,616.860863605209,27,4377,0,0,0,0,9 +"9358",2012,48309,"TX","48","309",239369,0.814378637166885,24684,0.110386056674005,10.113910539441,10.1954106192452,11.1645446012849,6.6,415.744603664067,573,137825,0,0,0,0,9 +"9359",2012,48313,"TX","48","313",13739,0.77305480748235,1249,0.108741538685494,7.13009851012558,7.48099216286952,8.06400734709666,7.02307692307692,273.224043715847,23,8418,0,0,0,0,9 +"9360",2012,48315,"TX","48","315",10387,0.758448060075094,451,0.166554346779628,6.11146733950268,6.93925394604151,8.01730750768858,9.06153846153846,681.663258350375,40,5868,0,0,0,0,9 +"9361",2012,48321,"TX","48","321",36534,0.845595883286801,2349,0.135873432966552,7.76174498465891,8.27690348126706,9.23824732522919,10.0846153846154,482.741974414675,100,20715,0,0,0,0,9 +"9362",2012,48323,"TX","48","323",55723,0.976113992426826,4251,0.093910952389498,8.35490952835879,8.84922702143852,9.61166358091701,12.4230769230769,260.158148769384,76,29213,0,0,0,0,9 +"9363",2012,48325,"TX","48","325",46812,0.952918055199521,3196,0.129432624113475,8.06965530688617,8.62622695244036,9.45657525451379,6.5,344.176751415566,93,27021,0,0,0,0,9 +"9364",2012,48329,"TX","48","329",147365,0.90125877922166,10929,0.112659043870661,9.29917508567667,9.76537425040649,10.6852177910146,3.85384615384615,330.377525151136,288,87173,0,0,0,0,9 +"9365",2012,48331,"TX","48","331",24116,0.876223254271023,1289,0.135801957206834,7.16162200293919,7.85438121065236,8.79087775422416,8.53846153846154,562.5,72,12800,0,0,0,0,9 +"9366",2012,48335,"TX","48","335",9332,0.846335190741535,938,0.103836262323189,6.84374994900622,7.14677217945264,7.54062152865715,5.92307692307692,413.018338014208,25,6053,0,0,0,0,9 +"9367",2012,48337,"TX","48","337",19477,0.97509883452277,1042,0.138214304050932,6.94889722231331,7.67925142595306,8.58354257195777,5.37692307692308,598.634365354036,64,10691,0,0,0,0,9 +"9368",2012,48339,"TX","48","339",484627,0.914107138067008,27823,0.120164580182285,10.2336182957527,11.1299212126421,11.8812008627086,5.91538461538462,312.473873421955,897,287064,0,0,0,0,9 +"9369",2012,48341,"TX","48","341",22431,0.865275734474611,1637,0.0986135259239445,7.40062057737113,7.91498300584839,8.68929604801586,4.3,330.618498508185,41,12401,0,0,0,0,9 +"9370",2012,48343,"TX","48","343",12698,0.747361789258151,732,0.141124586549063,6.59578051396131,7.22983877815125,8.19533366716287,9.69230769230769,673.159553136637,47,6982,0,0,0,0,9 +"9371",2012,48347,"TX","48","347",65868,0.785981053015121,9059,0.107927977166454,9.11151401766929,8.79573360595074,9.89050362497783,6.60769230769231,436.955441011015,167,38219,0,0,0,0,9 +"9372",2012,48349,"TX","48","349",48157,0.824636086134934,3076,0.121955271300123,8.03138533062553,8.67505127603182,9.51355124604559,7.21538461538462,497.793868084625,132,26517,0,0,0,0,9 +"9373",2012,48351,"TX","48","351",14433,0.778008729993764,948,0.136700616642417,6.85435450225502,7.44190672805162,8.2872767558146,10.9846153846154,523.687735963951,43,8211,0,0,0,0,9 +"9374",2012,48353,"TX","48","353",14939,0.927973759957159,903,0.133208380748377,6.80572255341699,7.44541755670169,8.30893825259578,5.90769230769231,588.884799411115,48,8151,0,0,0,0,9 +"9375",2012,48355,"TX","48","355",347966,0.92360460504762,26687,0.120284740463149,10.1919318344325,10.6453534661429,11.5504717000442,6.53846153846154,422.082175033112,870,206121,0,0,0,0,9 +"9376",2012,48357,"TX","48","357",10611,0.969748374328527,678,0.0965978701347658,6.5191472879404,7.21303165983487,7.95752740223077,3.83076923076923,438.96673982779,26,5923,0,0,0,0,9 +"9377",2012,48361,"TX","48","361",82908,0.892422926617455,5242,0.12774400540358,8.56445838388335,9.2277872855799,10.0955944100649,10.3846153846154,593.674368574561,287,48343,0,0,0,0,9 +"9378",2012,48363,"TX","48","363",27862,0.955746177589548,1592,0.136063455602613,7.37274636640433,8.05674377497531,8.97903863296051,6.67692307692308,569.063631660631,88,15464,0,0,0,0,9 +"9379",2012,48365,"TX","48","365",24000,0.822791666666667,1396,0.137916666666667,7.24136628332232,7.93020620668468,8.82482493917564,6.81538461538462,508.174988952718,69,13578,0,0,0,0,9 +"9380",2012,48367,"TX","48","367",119494,0.961295127788843,7227,0.133379081794902,8.88557929128298,9.6469810975528,10.4590379450816,5.9,351.686689362181,250,71086,0,0,0,0,9 +"9381",2012,48371,"TX","48","371",15563,0.937479920323845,1021,0.111932146758337,6.92853781816467,7.69575799055476,8.23031079913502,5.1,379.346680716544,36,9490,0,0,0,0,9 +"9382",2012,48373,"TX","48","373",45517,0.85144012127337,2632,0.14873563723444,7.87549929244521,8.58969988220299,9.36366213691983,8,726.899071395951,191,26276,0,0,0,0,9 +"9383",2012,48375,"TX","48","375",122706,0.82405913321272,9152,0.106400665004156,9.12172771361958,9.64581725415232,10.4315831874671,5.33076923076923,496.679502204364,356,71676,0,0,0,0,9 +"9384",2012,48379,"TX","48","379",10927,0.951130227875904,483,0.155394893383362,6.18001665365257,7.10085190894405,8.00369733909437,6.93076923076923,691.166554281861,41,5932,0,0,0,0,9 +"9385",2012,48381,"TX","48","381",125047,0.941134133565779,9353,0.121898166289475,9.14345242643455,9.64439293693626,10.5394292593253,4.4,309.522527857028,230,74308,0,0,0,0,9 +"9386",2012,48387,"TX","48","387",12721,0.802059586510494,636,0.144249665906768,6.45519856334012,7.25700270709207,8.18896686364888,10.6307692307692,688.270719816461,48,6974,0,0,0,0,9 +"9387",2012,48389,"TX","48","389",14256,0.924733445566779,1400,0.0950476992143659,7.24422751560335,7.68340368105383,7.98104975966596,6.68461538461538,367.647058823529,32,8704,0,0,0,0,9 +"9388",2012,48391,"TX","48","391",7259,0.912522386003582,432,0.135418101666896,6.06842558824411,6.63987583382654,7.56423847517049,5.98461538461538,385.109114249037,15,3895,0,0,0,0,9 +"9389",2012,48395,"TX","48","395",16447,0.75922660667599,911,0.136438256216939,6.81454289725996,7.50659178007084,8.42945427710823,7.99230769230769,551.146384479718,50,9072,0,0,0,0,9 +"9390",2012,48397,"TX","48","397",82772,0.899966172135505,3890,0.110919151403856,8.26616443661249,9.45446232967558,10.1089558121703,6.13846153846154,252.133837601009,122,48387,0,0,0,0,9 +"9391",2012,48399,"TX","48","399",10337,0.952790945148496,531,0.139208667892038,6.27476202124194,6.98564181763921,7.90801944463247,5.5,560.477309708913,31,5531,0,0,0,0,9 +"9392",2012,48401,"TX","48","401",53735,0.803628919698521,3648,0.128482367172234,8.20193435119422,8.8236479491913,9.57838048699361,6.24615384615385,486.188529666791,157,32292,0,0,0,0,9 +"9393",2012,48403,"TX","48","403",10526,0.910602318069542,443,0.161504845145354,6.09356977004514,6.85329909318608,7.91388671485608,14.4461538461538,620.767494356659,33,5316,0,0,0,0,9 +"9394",2012,48405,"TX","48","405",8789,0.754920923882125,449,0.150529070428945,6.10702288774225,6.72262979485545,7.77401507725073,12.0307692307692,768.573868488471,36,4684,0,0,0,0,9 +"9395",2012,48407,"TX","48","407",26956,0.8746104763318,1419,0.153806202700697,7.25770767716004,7.97212112892166,8.92970011431345,8.18461538461538,545.321540200838,82,15037,0,0,0,0,9 +"9396",2012,48409,"TX","48","409",65261,0.95635984738205,4220,0.11633287874841,8.34759040703006,8.9751242394277,9.81115294133333,7.54615384615385,455.222869529874,168,36905,0,0,0,0,9 +"9397",2012,48415,"TX","48","415",17120,0.926343457943925,1171,0.118049065420561,7.06561336359772,7.62657020629066,8.35066624052092,4.44615384615385,540.973752754959,54,9982,0,0,0,0,9 +"9398",2012,48419,"TX","48","419",26062,0.803507021717443,1695,0.119484306653365,7.43543801981455,8.05165955684195,8.88474872645118,7.21538461538462,419.697817571349,60,14296,0,0,0,0,9 +"9399",2012,48423,"TX","48","423",214824,0.78988846683797,16324,0.116998100770864,9.7003916965257,10.1484317338092,11.060746036637,6.98461538461538,392.435799955851,480,122313,0,0,0,0,9 +"9400",2012,48425,"TX","48","425",8555,0.962244301578025,459,0.136995908825248,6.12905021006055,6.95368421087054,7.80220931624712,6.6,248.96265560166,12,4820,0,0,0,0,9 +"9401",2012,48427,"TX","48","427",61951,0.991719261997385,4947,0.082565253183968,8.50653661122771,8.97055917950895,9.73103711553744,14.4384615384615,326.939843068875,105,32116,0,0,0,0,9 +"9402",2012,48429,"TX","48","429",9608,0.958159866777685,657,0.128850957535387,6.48768401848461,6.94408720822953,7.80588204022862,5.89230769230769,567.000567000567,30,5291,0,0,0,0,9 +"9403",2012,48439,"TX","48","439",1882950,0.773452826681537,129033,0.104749993361481,11.7678234645825,12.4955992657573,13.2692753494604,6.46153846153846,299.77770384575,3397,1133173,0,0,0,0,9 +"9404",2012,48441,"TX","48","441",134122,0.881824010975082,14939,0.10544877052236,9.61173052204232,9.55350445388697,10.58258651737,5.62307692307692,436.72596406296,341,78081,0,0,0,0,9 +"9405",2012,48445,"TX","48","445",12630,0.932066508313539,967,0.107917656373713,6.87419849545329,7.21303165983487,8.06463647577422,6.5,333.518621456365,24,7196,0,0,0,0,9 +"9406",2012,48449,"TX","48","449",32605,0.859684097531054,2351,0.104646526606349,7.76259604854007,8.31458729131958,9.10653420325059,7.46153846153846,426.415306065197,76,17823,0,0,0,0,9 +"9407",2012,48451,"TX","48","451",113324,0.923528996505595,10846,0.116356641135152,9.29155162740101,9.39963754250656,10.4199273870866,5.3,381.753964079056,254,66535,0,0,0,0,9 +"9408",2012,48453,"TX","48","453",1096918,0.824142734461464,92047,0.0992508099967363,11.430054595147,12.0467544705012,12.7812327071102,5.46153846153846,223.692497195155,1609,719291,0,0,0,0,9 +"9409",2012,48455,"TX","48","455",14375,0.889530434782609,669,0.163408695652174,6.50578406012823,7.25417784645652,8.30102525383845,8.16153846153846,888.308295231874,68,7655,0,0,0,0,9 +"9410",2012,48457,"TX","48","457",21504,0.87202380952381,1415,0.135044642857143,7.25488481007734,7.82484569102686,8.579980179515,10.6153846153846,644.329896907216,80,12416,0,0,0,0,9 +"9411",2012,48459,"TX","48","459",39921,0.890734200045089,2249,0.138473485133138,7.71824095195932,8.45786772533142,9.34757739028127,6.69230769230769,574.433299456498,130,22631,0,0,0,0,9 +"9412",2012,48463,"TX","48","463",26744,0.968665868979958,1922,0.110192940472629,7.56112158953024,8.03365842788615,8.87640491500694,7.9,464.461646727657,66,14210,0,0,0,0,9 +"9413",2012,48465,"TX","48","465",48968,0.963445515438654,3977,0.0957359908511681,8.28828304520769,8.69751274553952,9.47730940283042,7.56153846153846,340.365050867744,91,26736,0,0,0,0,9 +"9414",2012,48467,"TX","48","467",52211,0.952538737047749,2638,0.141081381318113,7.87777633327726,8.71719093322313,9.59301439178353,6.88461538461539,594.245204336947,171,28776,0,0,0,0,9 +"9415",2012,48469,"TX","48","469",89124,0.90674790179974,5966,0.122840087967326,8.69383196507469,9.23542315234365,10.1597563542822,5.56153846153846,403.043469712758,205,50863,0,0,0,0,9 +"9416",2012,48471,"TX","48","471",68602,0.745240663537506,10558,0.10832045712953,9.26463914538356,9.12118123565636,9.76439788413417,6.91538461538462,393.044815653437,184,46814,0,0,0,0,9 +"9417",2012,48473,"TX","48","473",44365,0.703347233179308,6263,0.108756902964048,8.74241458252541,8.43489794868941,9.4555584776087,6.96923076923077,295.811925891328,76,25692,0,0,0,0,9 +"9418",2012,48475,"TX","48","475",10825,0.922771362586605,695,0.117505773672055,6.54391184556479,7.09672137849476,8.01565761455734,4.79230769230769,433.188937020993,26,6002,0,0,0,0,9 +"9419",2012,48477,"TX","48","477",33916,0.794610213468569,2237,0.13925580846798,7.71289096149013,8.18729927015515,9.1369090938903,5.58461538461538,354.0202757067,66,18643,0,0,0,0,9 +"9420",2012,48479,"TX","48","479",260487,0.980666981461647,20317,0.0779347913715464,9.91921325299761,10.47539886828,11.1924722361879,6.43846153846154,287.735713670675,401,139364,0,0,0,0,9 +"9421",2012,48481,"TX","48","481",41130,0.841308047653781,2568,0.126744468757598,7.85088266480985,8.42836197770962,9.35088461696849,6.73076923076923,395.394308059961,91,23015,0,0,0,0,9 +"9422",2012,48483,"TX","48","483",5593,0.946719113177186,269,0.13338101197926,5.59471137960184,6.47697236288968,7.32712329225929,4.33076923076923,589.58401572224,18,3053,0,0,0,0,9 +"9423",2012,48485,"TX","48","485",131742,0.847300025808019,12945,0.11226488135902,9.46846489218564,9.58617067495466,10.5152077344003,6.03846153846154,384.023600920639,302,78641,0,0,0,0,9 +"9424",2012,48487,"TX","48","487",13294,0.885060929742741,868,0.128479013088611,6.76619171466035,7.25276241805319,8.22013395715186,5.98461538461538,573.300573300573,42,7326,0,0,0,0,9 +"9425",2012,48489,"TX","48","489",22202,0.959643275380596,2051,0.0960273849202775,7.62608275807238,7.95822719232231,8.60337088765729,15.7,396.825396825397,51,12852,0,0,0,0,9 +"9426",2012,48491,"TX","48","491",456144,0.860254656424287,24233,0.0985544038724613,10.0954706196007,11.2325499677009,11.8455689527065,5.79230769230769,203.997323906073,558,273533,0,0,0,0,9 +"9427",2012,48493,"TX","48","493",44356,0.964469293894851,2350,0.136621877536297,7.7621706071382,8.66094715506093,9.47700307720389,5.51538461538462,331.943801142504,86,25908,0,0,0,0,9 +"9428",2012,48495,"TX","48","495",7366,0.945153407548194,461,0.105756177029595,6.13339804299665,6.75343791859778,7.58324752430336,5.61538461538461,705.596107055961,29,4110,0,0,0,0,9 +"9429",2012,48497,"TX","48","497",60395,0.968292077158705,3583,0.125374617104065,8.18395571730495,8.9300972286214,9.77576781093376,6.40769230769231,461.142388321498,163,35347,0,0,0,0,9 +"9430",2012,48499,"TX","48","499",42402,0.931772086222348,2286,0.1511721145229,7.73455884435476,8.33639048059155,9.31199402570268,7.80769230769231,607.139596457592,133,21906,0,0,0,0,9 +"9431",2012,48501,"TX","48","501",8052,0.961872826626925,525,0.102831594634873,6.26339826259162,6.83947643822884,7.66902828858968,3.99230769230769,415.22491349481,18,4335,0,0,0,0,9 +"9432",2012,48503,"TX","48","503",18273,0.963443331691567,1018,0.136813878399825,6.92559519711047,7.60539236481493,8.52158353971753,5.67692307692308,517.464424320828,52,10049,0,0,0,0,9 +"9433",2012,48505,"TX","48","505",14267,0.989626410597883,1100,0.0859325716688862,7.00306545878646,7.43366654016617,8.2358907259285,6.30769230769231,242.980561555076,18,7408,0,0,0,0,9 +"9434",2012,48507,"TX","48","507",12015,0.976029962546817,1065,0.106949646275489,6.97073007814353,7.21303165983487,8.0487882835342,13.4307692307692,423.064869946725,27,6382,0,0,0,0,9 +"9435",2012,49001,"UT","49","001",6500,0.958307692307692,329,0.115230769230769,5.79605775076537,6.63331843328038,7.38212436573751,5.39230769230769,416.666666666667,14,3360,0,0,0,0,9 +"9436",2012,49003,"UT","49","003",50205,0.966497360820635,2969,0.0993327357832885,7.99598047476376,8.68372406230387,9.48059649060458,5.09230769230769,289.645184648805,76,26239,0,0,0,0,9 +"9437",2012,49005,"UT","49","005",115925,0.948716842786284,16573,0.0747811084753073,9.71553014412354,9.41352608394945,10.3830082504737,3.94615384615385,137.612574731273,90,65401,0,0,0,0,9 +"9438",2012,49007,"UT","49","007",21226,0.964571751625365,1529,0.129982097427683,7.33236920592906,7.72046169459972,8.68389336730723,6.23846153846154,546.539981501724,65,11893,0,0,0,0,9 +"9439",2012,49011,"UT","49","011",316022,0.944427919575219,21281,0.089395674984653,9.96556993483267,10.6302145663593,11.3693437364922,4.31538461538462,208.060013755079,360,173027,0,0,0,0,9 +"9440",2012,49013,"UT","49","013",18999,0.93194378651508,1247,0.0957418811516396,7.12849594568004,7.64778604544093,8.489616423646,4.13846153846154,452.711347308336,46,10161,0,0,0,0,9 +"9441",2012,49015,"UT","49","015",10941,0.978795356914359,574,0.125034274746367,6.35262939631957,7.07157336421153,7.96797317966293,6.34615384615385,362.31884057971,21,5796,0,0,0,0,9 +"9442",2012,49019,"UT","49","019",9343,0.930750294338007,443,0.15380498769132,6.09356977004514,7.08673793451058,7.94236223767433,7.67692307692308,531.726338177951,30,5642,0,0,0,0,9 +"9443",2012,49021,"UT","49","021",46661,0.950836887336319,5715,0.095111549259553,8.65084957622891,8.49146504284351,9.47715625174658,6.03076923076923,292.094238825474,76,26019,0,0,0,0,9 +"9444",2012,49023,"UT","49","023",10300,0.974660194174757,563,0.0974757281553398,6.33327962813969,7.13169851046691,7.85282781228174,5.4,309.477756286267,16,5170,0,0,0,0,9 +"9445",2012,49025,"UT","49","025",7177,0.968789187682876,324,0.16302076076355,5.78074351579233,6.51025834052315,7.57814547241947,5.93846153846154,438.59649122807,17,3876,0,0,0,0,9 +"9446",2012,49027,"UT","49","027",12468,0.961421238370228,595,0.122072505614373,6.38856140554563,7.1608459066643,8.01961279440027,4.11538461538461,332.278481012658,21,6320,0,0,0,0,9 +"9447",2012,49035,"UT","49","035",1064140,0.904683594263913,80994,0.0979222658672731,11.3021303568369,11.8851439792848,12.6549388194931,4.63076923076923,270.605461970071,1715,633764,0,0,0,0,9 +"9448",2012,49037,"UT","49","037",15052,0.482726547967048,1070,0.102577730534148,6.97541392745595,7.44541755670169,8.26255897301066,7.83846153846154,445.235975066785,35,7861,0,0,0,0,9 +"9449",2012,49039,"UT","49","039",27958,0.955361613849345,2997,0.0974318620788325,8.00536706731666,8.06306291132679,8.83185793519791,5.67692307692308,268.456375838926,40,14900,0,0,0,0,9 +"9450",2012,49041,"UT","49","041",20662,0.973574678153131,1115,0.106717645920046,7.01660968389422,7.76174498465891,8.5657928612523,5.4,435.647315086656,46,10559,0,0,0,0,9 +"9451",2012,49043,"UT","49","043",37886,0.968009291030988,1923,0.134060074961727,7.56164174558878,8.60116662519242,9.34171945003256,4.38461538461539,208.262495749745,49,23528,0,0,0,0,9 +"9452",2012,49045,"UT","49","045",59810,0.959822772111687,3245,0.0896505601070055,8.08487062913819,9.08125621856465,9.68421151274841,5.3,280.864197530864,91,32400,0,0,0,0,9 +"9453",2012,49047,"UT","49","047",34648,0.898204802586008,2423,0.0923285615331332,7.79276172081653,8.3228800217699,9.13744704645586,3.91538461538462,364.751281915737,69,18917,0,0,0,0,9 +"9454",2012,49049,"UT","49","049",539970,0.953219623312406,66899,0.0634942682000852,11.1109392983215,11.0421695528307,11.8815467661773,4.40769230769231,185.328027195096,543,292994,0,0,0,0,9 +"9455",2012,49051,"UT","49","051",25340,0.973046566692976,1307,0.0999605367008682,7.17548971362422,8.21527695893663,8.84101431048389,5.07692307692308,214.838155256374,30,13964,0,0,0,0,9 +"9456",2012,49053,"UT","49","053",144216,0.950990181394575,9562,0.105640150884784,9.16555218918605,9.62125725876259,10.5197806862359,6.1,281.497791217826,202,71759,0,0,0,0,9 +"9457",2012,49057,"UT","49","057",236268,0.944270912692366,17903,0.0995395059847292,9.79272357555127,10.2781153748241,11.1126120640017,5.6,318.459571889847,431,135339,0,0,0,0,9 +"9458",2012,51001,"VA","51","001",33276,0.69248106743599,1807,0.156629402572425,7.49942329059223,8.18227973925902,9.17574892720656,7.73846153846154,624.536890017995,118,18894,0,0,0,0,9 +"9459",2012,51003,"VA","51","003",101504,0.839306825346784,6762,0.130654949558638,8.81907398326783,9.3726292750199,10.3253180147306,5.13076923076923,171.838673809764,102,59358,0,0,0,0,9 +"9460",2012,51005,"VA","51","005",16035,0.941004053632678,793,0.152354225132523,6.67582322163485,7.51479976048867,8.41670965283791,6.91538461538462,638.727028238458,57,8924,0,0,0,0,9 +"9461",2012,51007,"VA","51","007",12741,0.757632838866651,688,0.152421317008084,6.53378883793334,7.32843735289516,8.25270667656764,6.39230769230769,641.613198900092,49,7637,0,0,0,0,9 +"9462",2012,51009,"VA","51","009",32640,0.784252450980392,2305,0.143535539215686,7.74283595543075,8.24669594371856,9.20843856468659,6.56153846153846,504.678792976553,96,19022,0,0,0,0,9 +"9463",2012,51011,"VA","51","011",15240,0.787139107611549,848,0.140288713910761,6.7428806357919,7.49052940206071,8.41582469702795,7.3,331.352833638026,29,8752,0,0,0,0,9 +"9464",2012,51013,"VA","51","013",221614,0.789386049617804,14658,0.0984685083072369,9.5927415404858,10.4913019948302,11.3022167792574,3.40769230769231,128.797682874222,209,162270,0,0,0,0,9 +"9465",2012,51015,"VA","51","015",73599,0.948097120884795,4078,0.146197638554872,8.3133619511344,9.12891337328045,9.96269941216797,5.68461538461538,387.17954592316,169,43649,0,0,0,0,9 +"9466",2012,51021,"VA","51","021",6693,0.959061706260272,348,0.15329448677723,5.85220247977447,6.93439720992856,7.46393660446893,6.89230769230769,598.515681110845,25,4177,0,0,0,0,9 +"9467",2012,51023,"VA","51","023",33121,0.954047281181124,1463,0.165212403007156,7.28824440102012,8.30474226964077,9.18101454259435,5.37692307692308,351.530190239868,68,19344,0,0,0,0,9 +"9468",2012,51025,"VA","51","025",17023,0.418022675204136,1245,0.144686600481701,7.12689080889881,7.614312146452,8.45807992692373,9.90769230769231,451.098953834341,47,10419,0,0,0,0,9 +"9469",2012,51027,"VA","51","027",23835,0.96589049716803,1381,0.153429830081812,7.23056315340929,8.03040956213048,8.85808422219916,8.93076923076923,738.832779773605,109,14753,0,0,0,0,9 +"9470",2012,51029,"VA","51","029",17071,0.632066076972644,1105,0.140647882373616,7.00760061395185,7.76046702921342,8.41582469702795,8.37692307692308,396.569215161856,43,10843,0,0,0,0,9 +"9471",2012,51031,"VA","51","031",54843,0.8369345221815,3735,0.138139780828912,8.22550309756692,8.82084703337772,9.71998529899401,6.32307692307692,350.172041046253,115,32841,0,0,0,0,9 +"9472",2012,51033,"VA","51","033",28950,0.680552677029361,1604,0.130120898100173,7.38025578842646,8.23536064375335,9.07234187381889,7.63846153846154,367.499282227964,64,17415,0,0,0,0,9 +"9473",2012,51035,"VA","51","035",29920,0.985394385026738,1506,0.152807486631016,7.31721240835984,8.24038511551633,9.05520587502619,8.36923076923077,495.309131169512,85,17161,0,0,0,0,9 +"9474",2012,51036,"VA","51","036",7123,0.42945388179138,369,0.175207075670364,5.91079664404053,6.70441435496411,7.70975686445416,7.68461538461538,651.100134710373,29,4454,0,0,0,0,9 +"9475",2012,51037,"VA","51","037",12400,0.689193548387097,717,0.144838709677419,6.57507584059962,7.2086003379602,8.16451026874704,8.53076923076923,558.819315088122,39,6979,0,0,0,0,9 +"9476",2012,51041,"VA","51","041",323942,0.717446332985534,19154,0.130566582906817,9.86026685008157,10.7209740073517,11.5341878106726,5.97692307692308,283.573747121957,553,195011,0,0,0,0,9 +"9477",2012,51043,"VA","51","043",14255,0.924096808137496,677,0.154331813398807,6.51767127291227,7.36201055125973,8.32893404195553,5.13076923076923,454.817474566128,38,8355,0,0,0,0,9 +"9478",2012,51045,"VA","51","045",5139,0.989686709476552,268,0.153920996302783,5.59098698051086,6.44571981938558,7.30787278076371,6.86923076923077,434.782608695652,13,2990,0,0,0,0,9 +"9479",2012,51047,"VA","51","047",47850,0.805663531870428,2631,0.123469174503657,7.87511928104029,8.76935170779897,9.53032021072713,5.58461538461538,385.608660275233,109,28267,0,0,0,0,9 +"9480",2012,51049,"VA","51","049",9845,0.6532249873032,625,0.14139156932453,6.4377516497364,7.01929665371504,7.98036576511125,6.98461538461538,405.500705218618,23,5672,0,0,0,0,9 +"9481",2012,51051,"VA","51","051",15708,0.990641711229946,883,0.150814871403107,6.78332520060396,7.59186171488993,8.41935983106747,10.4692307692308,552.662344563716,52,9409,0,0,0,0,9 +"9482",2012,51053,"VA","51","053",28222,0.653851605130749,1708,0.13776486429027,7.44307837434852,8.19174002127746,9.07061842880105,7.42307692307692,335.43223680339,57,16993,0,0,0,0,9 +"9483",2012,51057,"VA","51","057",11133,0.58384981586275,656,0.147669091888979,6.48616078894409,7.11232744471091,8.13739583005665,7.22307692307692,608.044901777362,39,6414,0,0,0,0,9 +"9484",2012,51059,"VA","51","059",1120654,0.695691087525677,60683,0.123309246208018,11.013418871924,12.0234290368831,12.7828461093771,4.41538461538462,161.051142243885,1136,705366,0,0,0,0,9 +"9485",2012,51061,"VA","51","061",66567,0.889389637508075,3466,0.139002809199754,8.15075647027555,9.04404963225476,9.90448705286921,5.03846153846154,290.426042376948,115,39597,0,0,0,0,9 +"9486",2012,51063,"VA","51","063",15438,0.971304573131235,717,0.157079932633761,6.57507584059962,7.57147364885127,8.38320455141292,5.55384615384615,392.993487536492,35,8906,0,0,0,0,9 +"9487",2012,51065,"VA","51","065",25889,0.827069411719263,1220,0.133145351307505,7.1066061377273,8.20958048347558,9.0595174822416,5.13846153846154,312.846249103826,48,15343,0,0,0,0,9 +"9488",2012,51067,"VA","51","067",56293,0.90279430835095,3425,0.155863073561544,8.13885675069633,8.76358440945014,9.70283907904929,6.43846153846154,406.091370558376,132,32505,0,0,0,0,9 +"9489",2012,51069,"VA","51","069",80247,0.930701459244582,4675,0.12543771106708,8.44998444172279,9.28479828289419,10.0859341015182,5.65384615384615,290.831485123656,139,47794,0,0,0,0,9 +"9490",2012,51071,"VA","51","071",17024,0.975270206766917,946,0.146264097744361,6.85224256905188,7.69621263934641,8.50268850521336,7.13076923076923,622.385470870319,61,9801,0,0,0,0,9 +"9491",2012,51073,"VA","51","073",36849,0.893294254932291,2031,0.147520963933892,7.61628356158038,8.3999849905107,9.32972212899626,5.53076923076923,367.663543021118,82,22303,0,0,0,0,9 +"9492",2012,51075,"VA","51","075",21438,0.801567310383431,879,0.1696053736356,6.77878489768518,7.93808872689695,8.7984546960651,5.48461538461538,340.162350212601,44,12935,0,0,0,0,9 +"9493",2012,51077,"VA","51","077",15146,0.970619305427175,747,0.16413574541133,6.61606518513282,7.51316354523408,8.36380888451688,9.37692307692308,563.542265669925,49,8695,0,0,0,0,9 +"9494",2012,51079,"VA","51","079",18831,0.9083426265201,983,0.129785991184749,6.89060912014717,7.82324569068552,8.64822145382264,5.44615384615385,387.946589678816,43,11084,0,0,0,0,9 +"9495",2012,51081,"VA","51","081",11746,0.390005108121914,822,0.133747658777456,6.71174039505618,7.51697722460432,7.84776253747361,8.44615384615385,489.089541008277,39,7974,0,0,0,0,9 +"9496",2012,51083,"VA","51","083",35740,0.618802462227196,1796,0.154868494683828,7.49331724886215,8.29379960884682,9.22365138603585,9.31538461538462,522.324343327809,104,19911,0,0,0,0,9 +"9497",2012,51085,"VA","51","085",100340,0.880795295993622,5820,0.138409408012757,8.66905554072548,9.49122438992696,10.3145038906826,5.40769230769231,326.017544449299,194,59506,0,0,0,0,9 +"9498",2012,51087,"VA","51","087",315575,0.611078190604452,18484,0.122303731284164,9.82466077199016,10.6819175336245,11.531943470806,5.93076923076923,284.409383433672,548,192680,0,0,0,0,9 +"9499",2012,51089,"VA","51","089",53098,0.765075897397265,2664,0.145655203585822,7.88758403166028,8.72371943690701,9.64303146633794,10.3615384615385,632.932365708984,191,30177,0,0,0,0,9 +"9500",2012,51093,"VA","51","093",35352,0.73336727766463,1802,0.153032360262503,7.49665243816828,8.36100710822691,9.28804187964004,6.20769230769231,387.523629489603,82,21160,0,0,0,0,9 +"9501",2012,51095,"VA","51","095",69460,0.825611862942701,3562,0.140368557443133,8.17807746384961,8.9641840463529,9.89237604778141,5.60769230769231,242.175366553476,92,37989,0,0,0,0,9 +"9502",2012,51097,"VA","51","097",7008,0.698202054794521,378,0.167808219178082,5.93489419561959,6.68710860786651,7.62803112693033,6.49230769230769,500.71530758226,21,4194,0,0,0,0,9 +"9503",2012,51099,"VA","51","099",24615,0.789112329880154,1462,0.113954905545399,7.28756064030972,8.13064796816058,8.89041055197428,6.33846153846154,333.356010612967,49,14699,0,0,0,0,9 +"9504",2012,51101,"VA","51","101",15977,0.792013519434187,818,0.133316642673844,6.70686233660275,7.66809370908241,8.51177855871474,6.21538461538462,436.40897755611,42,9624,0,0,0,0,9 +"9505",2012,51103,"VA","51","103",11125,0.706966292134831,484,0.173033707865169,6.18208490671663,6.77650699237218,7.98616486033273,7.82307692307692,464.700625558534,26,5595,0,0,0,0,9 +"9506",2012,51105,"VA","51","105",25433,0.951323084181968,1476,0.143868202728738,7.29709100516042,8.16706817834124,8.87290767425985,8.1,456.973675741778,71,15537,0,0,0,0,9 +"9507",2012,51107,"VA","51","107",337902,0.742333576007245,14414,0.0900497777462104,9.57595523548439,11.0226701476156,11.5463215555887,4.35384615384615,129.973565526711,266,204657,0,0,0,0,9 +"9508",2012,51109,"VA","51","109",33357,0.808406031717481,1649,0.155379680426897,7.4079243225596,8.31287139434261,9.24096656551794,6.09230769230769,389.911652929273,79,20261,0,0,0,0,9 +"9509",2012,51111,"VA","51","111",12639,0.639844924440225,722,0.157370045098505,6.58202513889283,7.37148929521428,8.12237124340655,7.40769230769231,513.225424397947,39,7599,0,0,0,0,9 +"9510",2012,51113,"VA","51","113",13135,0.882679862961553,719,0.153026265702322,6.57786135772105,7.28550654852279,8.25582842728183,4.71538461538462,384.258645819531,29,7547,0,0,0,0,9 +"9511",2012,51115,"VA","51","115",8911,0.897879025923016,383,0.170014588710582,5.94803498918065,6.79570577517351,7.81399567500279,5.59230769230769,251.151109250733,12,4778,0,0,0,0,9 +"9512",2012,51117,"VA","51","117",31698,0.623288535554294,1649,0.160041643005868,7.4079243225596,8.11492297420459,9.10007897771865,9.23846153846154,511.552082747765,91,17789,0,0,0,0,9 +"9513",2012,51119,"VA","51","119",10851,0.803520412865174,524,0.173163763708414,6.26149168432104,6.89568269774787,8.00603417874901,5.93076923076923,434.928069588491,26,5978,0,0,0,0,9 +"9514",2012,51121,"VA","51","121",95698,0.891084453175615,20846,0.0945892286150181,9.94491736229927,9.21054035197885,10.293906702439,5.83076923076923,227.265452450306,142,62482,0,0,0,0,9 +"9515",2012,51125,"VA","51","125",14802,0.854816916632888,648,0.184164302121335,6.47389069635227,7.32974968904151,8.38526052015541,5.69230769230769,445.74780058651,38,8525,0,0,0,0,9 +"9516",2012,51127,"VA","51","127",19148,0.837110925423021,980,0.158867766868602,6.88755257166462,7.87777633327726,8.68304655550289,5.46923076923077,324.054840049855,39,12035,0,0,0,0,9 +"9517",2012,51131,"VA","51","131",12209,0.61323613727578,653,0.16340404619543,6.48157712927643,7.04664727784876,8.16251625014018,9.09230769230769,551.662442224542,37,6707,0,0,0,0,9 +"9518",2012,51133,"VA","51","133",12421,0.737219225505193,553,0.172449883262217,6.31535800152233,6.81783057145415,8.090708716084,8.03846153846154,402.965828497743,25,6204,0,0,0,0,9 +"9519",2012,51135,"VA","51","135",15758,0.586495748191395,1014,0.130917629140754,6.92165818415113,7.56112158953024,8.30819906320645,6.23076923076923,567.167314357736,54,9521,0,0,0,0,9 +"9520",2012,51137,"VA","51","137",34263,0.845489303330123,1669,0.135102005078364,7.41997992366183,8.34711636103872,9.19166710671056,6.55384615384615,412.541254125412,80,19392,0,0,0,0,9 +"9521",2012,51139,"VA","51","139",23841,0.96870936621786,1327,0.14181452120297,7.19067603433221,8.00436556497957,8.84980082722101,10,479.908316023207,67,13961,0,0,0,0,9 +"9522",2012,51141,"VA","51","141",18339,0.930148863078685,819,0.155788210916626,6.70808408385307,7.73543335249969,8.54383512236266,8.95384615384615,495.521250238231,52,10494,0,0,0,0,9 +"9523",2012,51143,"VA","51","143",62900,0.769825119236884,3327,0.15516693163752,8.10982627601848,8.93366417870094,9.82363232728666,7.60769230769231,507.929646340475,188,37013,0,0,0,0,9 +"9524",2012,51145,"VA","51","145",28186,0.854502235152203,1487,0.145710636486199,7.30451594646016,8.3221510702129,8.9799204116912,5.53846153846154,305.986952254489,53,17321,0,0,0,0,9 +"9525",2012,51147,"VA","51","147",23187,0.643334627161772,4252,0.108854099279769,8.35514473946184,7.63964228785801,8.79860565085442,8.33076923076923,317.231434751262,44,13870,0,0,0,0,9 +"9526",2012,51149,"VA","51","149",37155,0.629390391602745,2569,0.120522136993675,7.85127199710988,8.65137437288226,9.21711735625521,7.26923076923077,303.426187365671,72,23729,0,0,0,0,9 +"9527",2012,51153,"VA","51","153",429716,0.671720392072904,26455,0.0987279970957563,10.1832004553382,11.1173017708929,11.7999448178719,5.16923076923077,189.537813545937,504,265910,0,0,0,0,9 +"9528",2012,51155,"VA","51","155",34734,0.935164392238153,1928,0.154142914723326,7.56423847517049,8.45062594714412,9.23366619727968,7.3,562.472958030864,117,20801,0,0,0,0,9 +"9529",2012,51159,"VA","51","159",9076,0.679925077126487,516,0.128691053327457,6.24610676548156,7.12286665859908,7.64778604544093,6.26153846153846,514.366796736431,29,5638,0,0,0,0,9 +"9530",2012,51161,"VA","51","161",92771,0.907115370104882,5013,0.146500522792683,8.5197898172635,9.39748361904935,10.2365611632225,5.11538461538461,313.363371715711,169,53931,0,0,0,0,9 +"9531",2012,51163,"VA","51","163",22384,0.956486776268763,1241,0.160963187991422,7.12367278520461,7.83082299513532,8.76888532613486,5.97692307692308,399.529964747356,51,12765,0,0,0,0,9 +"9532",2012,51165,"VA","51","165",77149,0.964341728343854,4884,0.133935631051601,8.4937198352306,9.14238267879296,10.0152078021465,5.56153846153846,287.67923765002,128,44494,0,0,0,0,9 +"9533",2012,51167,"VA","51","167",28429,0.985085651975096,1669,0.155439867740687,7.41997992366183,8.20467182895081,9.06462071762678,8.47692307692308,562.971561230412,97,17230,0,0,0,0,9 +"9534",2012,51169,"VA","51","169",22956,0.987192890747517,1218,0.147978741941105,7.10496544826984,7.9672801789422,8.77909581088053,7.39230769230769,552.733791455034,74,13388,0,0,0,0,9 +"9535",2012,51171,"VA","51","171",42532,0.962733941502868,2266,0.140623530518198,7.72577144158795,8.52476445691256,9.40771473139643,6.24615384615385,333.62164833807,81,24279,0,0,0,0,9 +"9536",2012,51173,"VA","51","173",31911,0.970511735765097,1904,0.145937137664128,7.55171221535131,8.31581113188354,9.15016564894011,9.4,599.157940192162,111,18526,0,0,0,0,9 +"9537",2012,51175,"VA","51","175",18506,0.614881660002161,1009,0.153301631903167,6.91671502035361,7.6889133368648,8.56235774337061,6.16153846153846,375,42,11200,0,0,0,0,9 +"9538",2012,51177,"VA","51","177",125867,0.798088458452176,7645,0.115518761867686,8.94180711836316,9.77018470522171,10.5580238339684,5.97692307692308,291.049239152103,219,75245,0,0,0,0,9 +"9539",2012,51179,"VA","51","179",133449,0.76766405143538,9084,0.103792460040915,9.11426990322545,9.86339445896968,10.6093781892434,5.66923076923077,212.185510760837,175,82475,0,0,0,0,9 +"9540",2012,51181,"VA","51","181",6844,0.534628872004676,405,0.16364699006429,6.00388706710654,6.58063913728495,7.64539769942863,7.64615384615385,459.937061244251,19,4131,0,0,0,0,9 +"9541",2012,51183,"VA","51","183",11927,0.403370503898717,960,0.134820155948688,6.86693328446188,7.35946763825562,7.93379687481541,9.6,531.04058667341,42,7909,0,0,0,0,9 +"9542",2012,51185,"VA","51","185",44276,0.956409793115909,2566,0.157173186376366,7.85010354517558,8.63034328934889,9.47108794568776,8.12307692307692,736.869807135607,196,26599,0,0,0,0,9 +"9543",2012,51187,"VA","51","187",37898,0.930761517758193,2378,0.132328882790649,7.77401507725073,8.48342956126343,9.33520935402205,6.58461538461538,378.178656813736,87,23005,0,0,0,0,9 +"9544",2012,51191,"VA","51","191",55110,0.977245508982036,3327,0.150753039375794,8.10982627601848,8.84318209802261,9.7002079011507,6.59230769230769,396.60748062725,130,32778,0,0,0,0,9 +"9545",2012,51193,"VA","51","193",17515,0.696660005709392,1010,0.162489294890094,6.9177056098353,7.47022413589997,8.53129331579502,7.13076923076923,475.852991799129,47,9877,0,0,0,0,9 +"9546",2012,51195,"VA","51","195",40928,0.941042806880375,3238,0.139537724784988,8.08271113423758,8.60226936377136,9.3735640530782,8.76923076923077,657.634101893669,166,25242,0,0,0,0,9 +"9547",2012,51197,"VA","51","197",29331,0.958610344004637,1502,0.14875046878729,7.31455283232408,8.26642147298455,9.08375621986673,7.56923076923077,499.622378434904,86,17213,0,0,0,0,9 +"9548",2012,51199,"VA","51","199",65872,0.792795117804226,4266,0.124180228321593,8.3584318990313,9.01881660441743,9.88893213452693,5.66153846153846,186.176995664371,73,39210,0,0,0,0,9 +"9549",2012,51510,"VA","51","510",147379,0.6846497804979,7415,0.108882540931883,8.91126025457203,10.185164128036,10.9039907480939,4.00769230769231,183.749641113982,192,104490,0,0,0,0,9 +"9550",2012,51520,"VA","51","520",17706,0.925392522308822,1161,0.130351293346888,7.05703698169789,7.66528471847135,8.5775354204224,7.13846153846154,687.717938783417,71,10324,0,0,0,0,9 +"9551",2012,51530,"VA","51","530",6751,0.924011257591468,709,0.123833506147237,6.56385552653213,6.5424719605068,7.60837447438078,7.72307692307692,466.56298600311,18,3858,0,0,0,0,9 +"9552",2012,51540,"VA","51","540",44610,0.720780094149294,9346,0.0982066801165658,9.14270372326037,8.49084921607663,9.72070588990972,5.03846153846154,240.795893796337,76,31562,0,0,0,0,9 +"9553",2012,51550,"VA","51","550",228134,0.647185426109216,15469,0.11930269052399,9.64659330023667,10.3117487479463,11.1749881556539,6.29230769230769,318.064796787973,446,140223,0,0,0,0,9 +"9554",2012,51570,"VA","51","570",17390,0.833352501437608,1108,0.121046578493387,7.01031186730723,7.6192334162268,8.52991196382401,6.81538461538462,352.07621414518,34,9657,0,0,0,0,9 +"9555",2012,51580,"VA","51","580",5846,0.852719808416011,350,0.134279849469723,5.85793315448346,6.5694814204143,7.41577697541539,8.79230769230769,653.400653400653,22,3367,0,0,0,0,9 +"9556",2012,51590,"VA","51","590",42725,0.484915155061439,3112,0.141954359274429,8.04302088529828,8.39434736141739,9.46715078076088,10.1538461538462,586.631413699083,142,24206,0,0,0,0,9 +"9557",2012,51600,"VA","51","600",22904,0.767202235417394,1715,0.125567586447782,7.44716835960004,8.03947991910045,8.87752145385287,4.20769230769231,272.49812657538,40,14679,0,0,0,0,9 +"9558",2012,51620,"VA","51","620",8488,0.39985862393968,551,0.136192271442036,6.31173480915291,6.80572255341699,7.88495294575981,9.81538461538462,522.247754334656,25,4787,0,0,0,0,9 +"9559",2012,51630,"VA","51","630",27190,0.706105185730048,4281,0.0878999632217727,8.36194190614495,8.03915739047324,9.13561682578025,6.92307692307692,256.529850746269,44,17152,0,0,0,0,9 +"9560",2012,51640,"VA","51","640",6850,0.913576642335766,394,0.135620437956204,5.97635090929793,6.71174039505618,7.57609734062311,8.67692307692308,555.408622057657,21,3781,0,0,0,0,9 +"9561",2012,51650,"VA","51","650",137222,0.446692221363921,12468,0.12184635116818,9.43092064088723,9.63743650021064,10.6845769267414,8.1,384.460213114365,324,84274,0,0,0,0,9 +"9562",2012,51660,"VA","51","660",51336,0.862864266791336,13338,0.0686847436496805,9.49837238319225,8.44505251363855,9.73204658683838,7.22307692307692,134.429134459687,44,32731,0,0,0,0,9 +"9563",2012,51670,"VA","51","670",22306,0.578050748677486,1479,0.115619115932933,7.2991214627108,7.85010354517558,8.84260448067803,9.86923076923077,530.95963145155,68,12807,0,0,0,0,9 +"9564",2012,51680,"VA","51","680",77326,0.665390683599307,13242,0.100393140728862,9.49114887548479,8.86177531100083,10.0853506709299,7.32307692307692,334.119496855346,153,45792,0,0,0,0,9 +"9565",2012,51683,"VA","51","683",40284,0.761567868136233,2745,0.103986694469268,7.91753635394363,8.67402598544303,9.43970453510345,5.5,291.430371770636,74,25392,0,0,0,0,9 +"9566",2012,51690,"VA","51","690",13518,0.516496523154313,818,0.13441337475958,6.70686233660275,7.32317071794347,8.3296580675694,12.5692307692308,700.661736084079,54,7707,0,0,0,0,9 +"9567",2012,51700,"VA","51","700",180148,0.521454581788307,17007,0.105846304149921,9.74138030299241,9.95816511382682,10.9515255864913,7.33846153846154,374.262271484094,416,111152,0,0,0,0,9 +"9568",2012,51710,"VA","51","710",246247,0.502113731334798,37721,0.0977027131295001,10.5379722475307,10.2313874370267,11.2210747156462,7.47692307692308,390.059961673982,631,161770,0,0,0,0,9 +"9569",2012,51730,"VA","51","730",31995,0.1818409126426,2774,0.140084388185654,7.92804560087478,8.11492297420459,9.25989215080543,11.7230769230769,719.983424842018,139,19306,0,0,0,0,9 +"9570",2012,51735,"VA","51","735",12115,0.959636813867107,675,0.137185307470078,6.51471269087253,7.30988148582479,8.17018565287964,5.3,200.918484500574,14,6968,0,0,0,0,9 +"9571",2012,51740,"VA","51","740",96516,0.426064072278172,7822,0.119120145882548,8.96469555531546,9.3345030145966,10.3112832759826,8.63076923076923,449.36882546652,262,58304,0,0,0,0,9 +"9572",2012,51750,"VA","51","750",16720,0.879605263157895,5179,0.075299043062201,8.55236726642389,7.2034055210831,8.61758136544751,7.77692307692308,291.079812206573,31,10650,0,0,0,0,9 +"9573",2012,51760,"VA","51","760",210922,0.443837058249021,23650,0.117711760745679,10.0711183939201,10.1044263938621,11.1917555483575,7.35384615384615,464.075878948095,639,137693,0,0,0,0,9 +"9574",2012,51770,"VA","51","770",98034,0.669380011016586,6432,0.132046024848522,8.7690408108588,9.43228320271387,10.3441910960703,7.05384615384615,539.011811678589,324,60110,0,0,0,0,9 +"9575",2012,51775,"VA","51","775",25190,0.899603017070266,2277,0.138229456133386,7.73061406606374,7.94979721616185,8.94246092682058,5.81538461538462,482.828969738184,71,14705,0,0,0,0,9 +"9576",2012,51790,"VA","51","790",23808,0.856182795698925,1671,0.135836693548387,7.42117752859539,7.91899248816525,8.92319149068606,6.29230769230769,505.780346820809,70,13840,0,0,0,0,9 +"9577",2012,51800,"VA","51","800",85320,0.534622597280825,5070,0.120241443975621,8.53109609658523,9.37041631982282,10.1883656976552,6.88461538461538,377.454431667058,193,51132,0,0,0,0,9 +"9578",2012,51810,"VA","51","810",445189,0.710066960324716,35501,0.112536473273149,10.4773161440809,10.9717780813178,11.860584890982,5.63076923076923,248.593437702271,699,281182,0,0,0,0,9 +"9579",2012,51820,"VA","51","820",21065,0.856824115831949,1296,0.121243769285545,7.16703787691222,7.80791662892641,8.7579408766788,6.89230769230769,526.792328586715,64,12149,0,0,0,0,9 +"9580",2012,51840,"VA","51","840",27012,0.838886420849993,2230,0.116059529098179,7.70975686445416,8.0519780789023,8.99615656203344,6.53846153846154,438.706442717473,70,15956,0,0,0,0,9 +"9581",2012,50001,"VT","50","001",36910,0.966323489569222,3172,0.155621782714711,8.06211758275474,8.37054761107475,9.31325790598287,4.39230769230769,301.557295886218,67,22218,1,0,0,0,9 +"9582",2012,50003,"VT","50","003",36634,0.976442648905388,2147,0.157558552164656,7.67182679787878,8.25945819533241,9.2841482991209,5.72307692307692,328.96305125149,69,20975,1,0,0,0,9 +"9583",2012,50005,"VT","50","005",31034,0.975639621060772,1992,0.157794676806084,7.59689443814454,8.1820001362934,9.12434665880921,6.05384615384615,306.429548563611,56,18275,1,0,0,0,9 +"9584",2012,50007,"VT","50","007",158777,0.934996882419998,17009,0.125622728732751,9.74149789471409,9.85718179965962,10.8361436384965,3.67692307692308,207.409171653418,209,100767,1,0,0,0,9 +"9585",2012,50011,"VT","50","011",48324,0.971566923267941,2592,0.136991970863339,7.86018505747217,8.79072562826358,9.60777330838708,4.35384615384615,313.042294736126,92,29389,1,0,0,0,9 +"9586",2012,50013,"VT","50","013",6973,0.974616377455901,337,0.189445002151154,5.82008293035236,6.69579891705849,7.69621263934641,5.26153846153846,341.06412005457,15,4398,1,0,0,0,9 +"9587",2012,50015,"VT","50","015",24957,0.977120647513724,1612,0.13655487438394,7.38523092306657,8.10258642539079,8.9334003960563,6.16923076923077,308.095706325795,47,15255,1,0,0,0,9 +"9588",2012,50017,"VT","50","017",28923,0.98240154894029,1548,0.168862151229126,7.34471905414967,8.10952565975287,9.08284785146091,4.58461538461538,283.832879200727,50,17616,1,0,0,0,9 +"9589",2012,50019,"VT","50","019",27169,0.979241046781258,1412,0.157753321800582,7.25276241805319,8.08271113423758,8.94897560784178,7.52307692307692,386.810399492708,61,15770,1,0,0,0,9 +"9590",2012,50021,"VT","50","021",60816,0.981205603788477,3925,0.162687450670876,8.27512163021651,8.81848226727424,9.81591238028017,6.08461538461538,382.075214235031,140,36642,1,0,0,0,9 +"9591",2012,50023,"VT","50","023",59432,0.973482299098129,3599,0.157776955175663,8.18841130807903,8.91085558740525,9.81290617430489,4.57692307692308,327.138772817242,119,36376,1,0,0,0,9 +"9592",2012,50025,"VT","50","025",44029,0.969361102909446,2503,0.171705012605328,7.82524529143177,8.48363640788739,9.51583780429796,5.02307692307692,404.191616766467,108,26720,1,0,0,0,9 +"9593",2012,50027,"VT","50","027",56162,0.977012926890068,2553,0.168156404686443,7.84502441724148,8.72258002114119,9.74208564599468,4.52307692307692,286.105978422841,96,33554,1,0,0,0,9 +"9594",2012,53001,"WA","53","001",18936,0.919729615547106,1305,0.0953738910012674,7.17395831975679,7.74196789982069,8.47428569040496,8.42307692307692,245.59967253377,24,9772,1,0,0,0,9 +"9595",2012,53003,"WA","53","003",21935,0.961705037611124,1201,0.150535673581035,7.09090982207998,7.77737360265786,8.76608245914886,7.13076923076923,498.392282958199,62,12440,1,0,0,0,9 +"9596",2012,53005,"WA","53","005",182400,0.929298245614035,11734,0.125866228070175,9.3702458894858,10.0131936126242,10.8755535198777,8.52307692307692,255.061374143153,272,106641,1,0,0,0,9 +"9597",2012,53007,"WA","53","007",73471,0.954757659484695,4530,0.138272243470213,8.41847721847708,9.01176747459618,9.93643865267581,7.38461538461538,346.954510408635,144,41504,1,0,0,0,9 +"9598",2012,53009,"WA","53","009",71791,0.901686840968924,3879,0.170717777994456,8.26333266743997,8.83273359199642,9.88532358190846,9.59230769230769,396.695050155393,157,39577,1,0,0,0,9 +"9599",2012,53011,"WA","53","011",436532,0.899757635179093,26353,0.127078885396718,10.1793373994813,11.0040812103287,11.7853009876046,8.63076923076923,274.974617727594,715,260024,1,0,0,0,9 +"9600",2012,53015,"WA","53","015",101669,0.940798080044065,6042,0.143150812932162,8.70649036194662,9.41230114402249,10.2849672978938,9.80769230769231,433.491483769669,254,58594,1,0,0,0,9 +"9601",2012,53017,"WA","53","017",39192,0.951954480506226,2292,0.129235558277199,7.73718007783463,8.46674164792014,9.29016767183574,8.39230769230769,263.768247760244,58,21989,1,0,0,0,9 +"9602",2012,53019,"WA","53","019",7668,0.787428273343766,433,0.194314032342201,6.07073772800249,6.60258789218934,7.68386398025643,14.4230769230769,542.986425339367,24,4420,1,0,0,0,9 +"9603",2012,53021,"WA","53","021",85691,0.922068828698463,6100,0.0863217840846763,8.7160440501614,9.33423800863242,10.0251297985182,8.91538461538462,215.031315240084,103,47900,1,0,0,0,9 +"9604",2012,53025,"WA","53","025",91292,0.941539236734873,6455,0.106778250010954,8.77261030328074,9.2897982933109,10.0936532633531,8.80769230769231,325.399216631516,162,49785,1,0,0,0,9 +"9605",2012,53027,"WA","53","027",71785,0.901525388312322,4331,0.156063244410392,8.37355374121463,9.0173622349937,9.90668244343265,11.9384615384615,520.453100346184,221,42463,1,0,0,0,9 +"9606",2012,53029,"WA","53","029",79086,0.891497863085755,5540,0.155703917254634,8.61974977974133,8.99541297543331,10.0399832971247,7.45384615384615,261.574679571017,120,45876,1,0,0,0,9 +"9607",2012,53031,"WA","53","031",29808,0.935319377348363,1145,0.214070048309179,7.04315991598834,7.87663846097546,9.03443816698441,9.13846153846154,375.484496124031,62,16512,1,0,0,0,9 +"9608",2012,53033,"WA","53","033",2011708,0.73501323253673,132790,0.122304032195527,11.7965242119844,12.6273093915855,13.3825822652732,6.26923076923077,231.150652322765,3018,1305642,1,0,0,0,9 +"9609",2012,53035,"WA","53","035",254414,0.865915397737546,20826,0.142578631679074,9.94395748508984,10.2835322832974,11.2318746901163,7.23076923076923,284.244462956015,447,157259,1,0,0,0,9 +"9610",2012,53037,"WA","53","037",41636,0.941468921125949,7463,0.121457392640984,8.91771275713139,8.29729437026692,9.45954145760968,8.05384615384615,251.112886656774,66,26283,1,0,0,0,9 +"9611",2012,53039,"WA","53","039",20640,0.946220930232558,893,0.174660852713178,6.7945865808765,7.78862606562503,8.67931204089267,9.42307692307692,355.269835899171,42,11822,1,0,0,0,9 +"9612",2012,53041,"WA","53","041",75452,0.951293537613317,4529,0.145257912315114,8.41825644355621,9.04770378849863,9.97347992435616,11.0076923076923,416.023933062217,178,42786,1,0,0,0,9 +"9613",2012,53043,"WA","53","043",10430,0.96510067114094,414,0.171332694151486,6.02586597382531,6.94408720822953,7.92226105835325,6.63076923076923,516.473731077471,29,5615,1,0,0,0,9 +"9614",2012,53045,"WA","53","045",60689,0.910346191237292,3375,0.162863121817792,8.12415060330663,8.8337542234184,9.72883650204639,10.0153846153846,456.50519908699,162,35487,1,0,0,0,9 +"9615",2012,53047,"WA","53","047",41176,0.840878181464931,2059,0.160578978045463,7.62997570702779,8.41227702146668,9.345919666218,8.86923076923077,421.592489568846,97,23008,1,0,0,0,9 +"9616",2012,53049,"WA","53","049",20591,0.927783983293672,888,0.187266281385071,6.78897174299217,7.54908271081229,8.62801874650512,11.0923076923077,615.106286748078,68,11055,1,0,0,0,9 +"9617",2012,53051,"WA","53","051",13007,0.934804336126701,550,0.188436995463981,6.30991827822652,7.1770187659099,8.18283871076603,11.7153846153846,481.165795985703,35,7274,1,0,0,0,9 +"9618",2012,53053,"WA","53","053",815772,0.797841798934016,63561,0.119626562323787,11.0597553536924,11.5737194842028,12.429512153045,8.5,322.18450338766,1603,497541,1,0,0,0,9 +"9619",2012,53055,"WA","53","055",15806,0.964190813615083,522,0.218334809565988,6.25766758788264,7.31188616407716,8.45062594714412,5.91538461538462,342.012356575463,31,9064,1,0,0,0,9 +"9620",2012,53057,"WA","53","057",117716,0.929584763328689,7064,0.143446940093105,8.8627667422838,9.51620611486159,10.4274169456791,8.86153846153846,313.242280285036,211,67360,1,0,0,0,9 +"9621",2012,53059,"WA","53","059",11205,0.953502900490852,468,0.17599286033021,6.14846829591765,7.22037383672395,8.11252776347864,9.67692307692308,353.77358490566,24,6784,1,0,0,0,9 +"9622",2012,53061,"WA","53","061",732239,0.832551940008658,47204,0.126386330146305,10.7622339137456,11.5530400093066,12.3334583168373,7.4,270.638637734883,1247,460762,1,0,0,0,9 +"9623",2012,53063,"WA","53","063",475605,0.922015117587073,38524,0.130562126134082,10.5590367026808,10.9545364242726,11.881270052975,8.29230769230769,343.80832772462,991,288242,1,0,0,0,9 +"9624",2012,53065,"WA","53","065",43494,0.91571251207063,1911,0.174230928403918,7.55538194424027,8.44591198941127,9.41189249704692,10.8,456.527103726248,111,24314,1,0,0,0,9 +"9625",2012,53067,"WA","53","067",258613,0.864701310452297,17500,0.138685990263444,9.76995615991161,10.4161015761613,11.3049537372732,7.73076923076923,292.43097489651,462,157986,1,0,0,0,9 +"9626",2012,53071,"WA","53","071",59342,0.93893026861245,5546,0.125594014357453,8.62083222617572,8.79754848848156,9.69898173460629,6.83076923076923,347.131823309902,120,34569,1,0,0,0,9 +"9627",2012,53073,"WA","53","073",204902,0.898497818469317,22530,0.131550692526183,10.0226030334263,10.0859757621094,11.0517943582281,7.45384615384615,248.545533700083,314,126335,1,0,0,0,9 +"9628",2012,53075,"WA","53","075",46660,0.875353621945992,12440,0.0819974282040292,9.42867236629317,8.23721470334949,9.57955634740923,6.06153846153846,135.856058848868,41,30179,1,0,0,0,9 +"9629",2012,53077,"WA","53","077",246064,0.896656967293062,17477,0.106533259639769,9.76864100976636,10.2913316518869,11.1144012132914,9.75384615384615,339.765939019786,459,135093,1,0,0,0,9 +"9630",2012,55001,"WI","55","001",20411,0.947773259516927,846,0.177453333986576,6.74051935960622,7.68478394352278,8.54772239645106,10.7615384615385,447.483958122256,53,11844,0,0,0,0,9 +"9631",2012,55003,"WI","55","003",15835,0.862140827281339,1035,0.144237448689612,6.94215670569947,7.4301141385618,8.42002127966396,9.13076923076923,490.142685981919,45,9181,0,0,0,0,9 +"9632",2012,55005,"WI","55","005",45784,0.970666608422156,2383,0.144766730735628,7.77611547709874,8.53895468319775,9.45837163879817,7.78461538461538,321.728139721935,84,26109,0,0,0,0,9 +"9633",2012,55007,"WI","55","007",15060,0.876228419654714,545,0.195418326693227,6.30078579466324,7.29709100516042,8.34474275441755,10.6307692307692,370.413242273411,32,8639,0,0,0,0,9 +"9634",2012,55009,"WI","55","009",252700,0.903209339137317,17377,0.121448357736446,9.76290277172225,10.3682273521068,11.2376066515018,6.46923076923077,283.910640107284,434,152865,0,0,0,0,9 +"9635",2012,55011,"WI","55","011",13344,0.987035371702638,632,0.151154076738609,6.44888939414686,7.31920245876785,8.20985248130127,6.18461538461538,299.596196430897,23,7677,0,0,0,0,9 +"9636",2012,55013,"WI","55","013",15339,0.932264163244019,590,0.1760870982463,6.38012253689976,7.29097477814298,8.32117830749028,8.88461538461539,456.5661420161,38,8323,0,0,0,0,9 +"9637",2012,55015,"WI","55","015",49653,0.963486596983062,2352,0.124906853563732,7.76302130901852,8.85123390284603,9.58314453784479,5.25384615384615,204.806116876024,60,29296,0,0,0,0,9 +"9638",2012,55017,"WI","55","017",63063,0.960531531960103,3293,0.135531135531136,8.09955428237636,8.96264794774056,9.76634966431749,6.66153846153846,236.739905304038,89,37594,0,0,0,0,9 +"9639",2012,55019,"WI","55","019",34433,0.982081143089478,1810,0.123108645775855,7.50108212425987,8.2147358333823,9.07303042101158,7.31538461538462,350.243528703552,64,18273,0,0,0,0,9 +"9640",2012,55021,"WI","55","021",56476,0.968570720305971,2779,0.140785466392804,7.9298464297425,8.90652891759452,9.6852071568879,7.14615384615385,289.8293555733,98,33813,0,0,0,0,9 +"9641",2012,55023,"WI","55","023",16510,0.971532404603271,761,0.156632344033919,6.63463335786169,7.4489161025442,8.39253658681668,8.32307692307692,404.298329609533,38,9399,0,0,0,0,9 +"9642",2012,55025,"WI","55","025",503087,0.876522351004896,50679,0.118774685094228,10.8332669025908,11.081311434367,11.9937206552942,4.80769230769231,219.627681724941,712,324185,0,0,0,0,9 +"9643",2012,55027,"WI","55","027",88154,0.956870930417224,4879,0.131258933230483,8.49269555981584,9.35010231435134,10.0879318547111,7.05384615384615,280.877976190476,151,53760,0,0,0,0,9 +"9644",2012,55029,"WI","55","029",27538,0.978756627206043,1107,0.183564529014453,7.00940893270864,7.91498300584839,8.95441533113759,10.2846153846154,321.419388017485,50,15556,0,0,0,0,9 +"9645",2012,55031,"WI","55","031",43770,0.949211788896504,3073,0.146058944482522,8.03040956213048,8.55217416031148,9.49326112732625,6.75384615384615,366.341445179619,98,26751,0,0,0,0,9 +"9646",2012,55033,"WI","55","033",43818,0.957391939385641,5872,0.11931169838879,8.67795057029435,8.48052920704465,9.46319805327378,6.49230769230769,250.804821441941,67,26714,0,0,0,0,9 +"9647",2012,55035,"WI","55","035",100862,0.941246455553132,12822,0.118498542563106,9.4589177245472,9.29173601018018,10.3439336295395,5.7,229.368912435995,142,61909,0,0,0,0,9 +"9648",2012,55039,"WI","55","039",101802,0.962328834404039,6321,0.13727628140901,8.7516327024723,9.4136076932856,10.3157627525728,6.39230769230769,291.463111699925,176,60385,0,0,0,0,9 +"9649",2012,55041,"WI","55","041",9162,0.830058939096267,566,0.145383104125737,6.33859407820318,6.88141130364254,7.81318726752142,10.8230769230769,560.897435897436,28,4992,0,0,0,0,9 +"9650",2012,55043,"WI","55","043",50880,0.975176886792453,6067,0.124567610062893,8.7106195279423,8.52971447196991,9.51826615090501,5.90769230769231,223.380491437081,66,29546,0,0,0,0,9 +"9651",2012,55045,"WI","55","045",36760,0.982861806311208,1749,0.141838955386289,7.4667994750186,8.44741429680832,9.27434750195047,6.12307692307692,246.09955423477,53,21536,0,0,0,0,9 +"9652",2012,55047,"WI","55","047",19000,0.98178947368421,881,0.151736842105263,6.78105762593618,7.60140233458373,8.54461378699223,7.4,360.018948365703,38,10555,0,0,0,0,9 +"9653",2012,55049,"WI","55","049",23585,0.98371846512614,1081,0.147848208607166,6.98564181763921,7.95014988765202,8.83389994290864,6.56153846153846,351.380423090714,49,13945,0,0,0,0,9 +"9654",2012,55053,"WI","55","053",20500,0.901268292682927,1117,0.137414634146341,7.0184017990692,7.80016307039296,8.5850387383113,7.19230769230769,342.008675342009,41,11988,0,0,0,0,9 +"9655",2012,55055,"WI","55","055",84367,0.97489539748954,5308,0.13053682126898,8.5769703954521,9.28776426894099,10.1206130315248,6.56153846153846,290.837612323492,145,49856,0,0,0,0,9 +"9656",2012,55057,"WI","55","057",26775,0.952418300653595,1277,0.142595704948646,7.15226885603254,8.08085641964099,8.86304982791909,8.25384615384615,331.379046647973,52,15692,0,0,0,0,9 +"9657",2012,55059,"WI","55","059",167273,0.893485499751903,11587,0.117831329622832,9.35763905899706,10.0050508679456,10.8303620779499,8.03846153846154,367.909559698532,371,100840,0,0,0,0,9 +"9658",2012,55061,"WI","55","061",20504,0.984003121342177,943,0.141972298088178,6.84906628263346,7.82684209815829,8.64979915596426,6.43846153846154,246.138176879986,29,11782,0,0,0,0,9 +"9659",2012,55063,"WI","55","063",116581,0.93100076341771,13526,0.12261003079404,9.51236903813489,9.45782525467655,10.4801570950374,5.36923076923077,244.033177227332,173,70892,0,0,0,0,9 +"9660",2012,55065,"WI","55","065",16792,0.984159123392091,893,0.13911386374464,6.7945865808765,7.51316354523408,8.42901750051251,5.51538461538462,210.282830406897,20,9511,0,0,0,0,9 +"9661",2012,55067,"WI","55","067",19621,0.9729371591662,889,0.156719840986698,6.7900972355139,7.64921631982063,8.59396903021829,9.13846153846154,388.261851015801,43,11075,0,0,0,0,9 +"9662",2012,55069,"WI","55","069",28501,0.97964983684783,1322,0.148766709940002,7.18690102041163,8.1164170727942,8.99118884193151,8.99230769230769,399.508297480025,65,16270,0,0,0,0,9 +"9663",2012,55071,"WI","55","071",80720,0.956219028741328,4177,0.147435579781962,8.33734856449717,9.14452103093889,10.0422925154133,7.63076923076923,324.958052800374,153,47083,0,0,0,0,9 +"9664",2012,55073,"WI","55","073",134391,0.925679546993474,7477,0.132032650995974,8.91958692099992,9.72436088663869,10.5639307399229,7.19230769230769,265.510222143553,210,79093,0,0,0,0,9 +"9665",2012,55075,"WI","55","075",41360,0.980149903288201,2143,0.156092843326886,7.66996199547358,8.3584318990313,9.36117126167877,8.23076923076923,425.334793228333,101,23746,0,0,0,0,9 +"9666",2012,55077,"WI","55","077",15237,0.978735971647962,640,0.16420555227407,6.46146817635372,7.35691824235602,8.33278946841796,8.63846153846154,301.100173711639,26,8635,0,0,0,0,9 +"9667",2012,55079,"WI","55","079",954672,0.664246987446998,75422,0.113700831280272,11.2308542886257,11.6863071801947,12.6021875093639,8.49230769230769,379.327681558919,2188,576810,0,0,0,0,9 +"9668",2012,55081,"WI","55","081",45008,0.959940455030217,2233,0.134820476359758,7.71110125184016,8.5571828396324,9.43747594455993,7.18461538461538,351.134434326285,91,25916,0,0,0,0,9 +"9669",2012,55083,"WI","55","083",37418,0.975599978619916,1735,0.153722807205088,7.45876269238096,8.41272116981953,9.279586544713,8.24615384615385,262.419690525744,58,22102,0,0,0,0,9 +"9670",2012,55085,"WI","55","085",35679,0.975419714678102,1654,0.171024972673001,7.41095187558364,8.18283871076603,9.21999362900432,8.58461538461538,349.871227950824,72,20579,0,0,0,0,9 +"9671",2012,55087,"WI","55","087",178960,0.932280956638355,10978,0.120183281180152,9.30364854910983,10.0535011148536,10.8885577998051,6.31538461538462,235.470109147321,255,108294,0,0,0,0,9 +"9672",2012,55089,"WI","55","089",87137,0.957469272524875,4459,0.148960831793612,8.40267980462748,9.23542315234365,10.1488230313568,5.41538461538462,249.100470523111,126,50582,0,0,0,0,9 +"9673",2012,55093,"WI","55","093",40744,0.976070096210485,4511,0.126079913606911,8.4142741374084,8.45638105201948,9.43388384331172,5.43846153846154,247.159657165637,62,25085,0,0,0,0,9 +"9674",2012,55095,"WI","55","095",43522,0.97672441523827,1925,0.150107991360691,7.56268124672188,8.55506684384432,9.42319113380496,7.92307692307692,346.378946530238,87,25117,0,0,0,0,9 +"9675",2012,55097,"WI","55","097",70436,0.954554489181669,8437,0.127676188312795,9.04038207416563,8.9298325032724,9.96095425218446,7.2,254.558918818847,110,43212,0,0,0,0,9 +"9676",2012,55099,"WI","55","099",13846,0.977105301170013,518,0.179329770330781,6.24997524225948,7.27586460054653,8.24590926477409,7.39230769230769,376.034093757834,30,7978,0,0,0,0,9 +"9677",2012,55101,"WI","55","101",194602,0.854163883207778,11450,0.132573149299596,9.34574500898239,10.0938599475198,10.9643806668438,8.23076923076923,362.340773281908,419,115637,0,0,0,0,9 +"9678",2012,55103,"WI","55","103",17815,0.980971091776593,938,0.155936008981196,6.84374994900622,7.57147364885127,8.48694014824522,6.14615384615385,271.793839339642,27,9934,0,0,0,0,9 +"9679",2012,55105,"WI","55","105",160113,0.922286135416862,9609,0.126979071031084,9.17045543827727,9.92201485715001,10.7663775076832,8.18461538461538,394.424894483367,371,94061,0,0,0,0,9 +"9680",2012,55107,"WI","55","107",14305,0.981195386228591,616,0.159035302341839,6.42324696353352,7.30182234213793,8.25166392360559,8.9,599.566271208062,47,7839,0,0,0,0,9 +"9681",2012,55109,"WI","55","109",85075,0.972059947105495,3948,0.121633852483103,8.28096440055337,9.42367598229931,10.1444317284758,5.66153846153846,214.500214500214,110,51282,0,0,0,0,9 +"9682",2012,55111,"WI","55","111",62377,0.968369751671289,3227,0.135723103066836,8.07930819205196,8.95660873889395,9.79884899842356,6.79230769230769,326.592820401165,120,36743,0,0,0,0,9 +"9683",2012,55113,"WI","55","113",16520,0.801634382566586,710,0.172699757869249,6.56526497003536,7.41878088275079,8.40916244720253,10.6307692307692,533.014249972805,49,9193,0,0,0,0,9 +"9684",2012,55115,"WI","55","115",41512,0.902196955097321,2114,0.137550587781846,7.65633716643018,8.49943646982698,9.35504659297544,7.87692307692308,377.470523369242,89,23578,0,0,0,0,9 +"9685",2012,55117,"WI","55","117",114770,0.924326914698963,6241,0.137440097586477,8.73889570493404,9.55605547567857,10.3995852508975,6.74615384615385,290.736285954633,197,67759,0,0,0,0,9 +"9686",2012,55119,"WI","55","119",20369,0.987382787569346,961,0.135647307182483,6.86797440897029,7.76811037852599,8.61866616034687,7.06153846153846,173.943294485998,20,11498,0,0,0,0,9 +"9687",2012,55121,"WI","55","121",29294,0.981941694544958,1396,0.134566805489179,7.24136628332232,8.18507147753228,8.9947928972836,5.60769230769231,311.377245508982,52,16700,0,0,0,0,9 +"9688",2012,55123,"WI","55","123",30029,0.986046821405974,1404,0.144660161843551,7.24708058458576,8.07620452723903,8.99528899055931,6.27692307692308,322.364819658172,53,16441,0,0,0,0,9 +"9689",2012,55125,"WI","55","125",21315,0.875346000469153,807,0.172882946281961,6.69332366826995,7.57301725605255,8.62479120201426,9.93846153846154,466.795842874758,53,11354,0,0,0,0,9 +"9690",2012,55127,"WI","55","127",102881,0.969868100037908,9183,0.13109320477056,9.12510922761352,9.39723479061527,10.3179784718516,7.12307692307692,308.168922224034,189,61330,0,0,0,0,9 +"9691",2012,55129,"WI","55","129",15844,0.972103004291845,634,0.169717243120424,6.45204895443723,7.39203156751459,8.39049553837028,7.79230769230769,465.856152709919,41,8801,0,0,0,0,9 +"9692",2012,55131,"WI","55","131",132743,0.970363785661014,6312,0.136519439819802,8.75020786252571,9.7538848483049,10.5782416119792,6.04615384615385,256.400540588332,203,79173,0,0,0,0,9 +"9693",2012,55133,"WI","55","133",392893,0.947973112272298,18966,0.144448997564222,9.85040318144367,10.7945630352692,11.6677387823476,5.67692307692308,246.951889634485,573,232029,0,0,0,0,9 +"9694",2012,55135,"WI","55","135",51922,0.982685566811756,2473,0.14338815916182,7.81318726752142,8.70913499158718,9.58431481299298,7.45384615384615,436.036761253103,130,29814,0,0,0,0,9 +"9695",2012,55137,"WI","55","137",24433,0.962755289976671,1090,0.158351409978308,6.99393297522319,7.91169052070834,8.76545853150423,8.59230769230769,339.967419788937,48,14119,0,0,0,0,9 +"9696",2012,55139,"WI","55","139",168623,0.941467059653784,15146,0.124591544451231,9.62549174967377,9.92998341634009,10.8204180796976,6.55384615384615,291.531164007928,303,103934,0,0,0,0,9 +"9697",2012,55141,"WI","55","141",74326,0.96150741328741,3853,0.141659715308237,8.25660734462616,9.03491498187007,9.97459817999408,7.41538461538462,290.650359243844,125,43007,0,0,0,0,9 +"9698",2012,54001,"WV","54","001",16869,0.977592032722746,1258,0.140612958681605,7.13727843726039,7.64156444126097,8.51719319141624,8.03846153846154,531.25,51,9600,1,0,0,0,9 +"9699",2012,54003,"WV","54","003",107024,0.903946778292719,6124,0.127251831364927,8.71997075677757,9.61800306362783,10.4056558092109,6.43076923076923,464.497990740599,304,65447,1,0,0,0,9 +"9700",2012,54005,"WV","54","005",24356,0.989448185252094,1353,0.159344719986862,7.21007962817079,8.13944052187461,8.89740886527095,10.0461538461538,712.637437220035,105,14734,1,0,0,0,9 +"9701",2012,54007,"WV","54","007",14452,0.985884306670357,805,0.15810960420703,6.69084227741856,7.46737106691756,8.33086361322474,10.4384615384615,553.201506591337,47,8496,1,0,0,0,9 +"9702",2012,54009,"WV","54","009",23677,0.976939646070026,1625,0.163196350889048,7.39326309476384,7.92624152317096,8.84635304331433,8.43846153846154,578.984989278056,81,13990,1,0,0,0,9 +"9703",2012,54011,"WV","54","011",96933,0.928424788255806,9208,0.130873902592512,9.12782795040172,9.34434665182392,10.2894299941554,6.31538461538462,549.008876498657,321,58469,1,0,0,0,9 +"9704",2012,54013,"WV","54","013",7604,0.99092582851131,367,0.166096791162546,5.90536184805457,6.77992190747225,7.70391020961631,10.7307692307692,533.92658509455,24,4495,1,0,0,0,9 +"9705",2012,54015,"WV","54","015",9217,0.991754366930672,467,0.150265813171314,6.1463292576689,7.05444965813294,7.87777633327726,11.6538461538462,832.544938505203,44,5285,1,0,0,0,9 +"9706",2012,54017,"WV","54","017",8300,0.973975903614458,505,0.152409638554217,6.22455842927536,6.93244789157251,7.72046169459972,6.07692307692308,465.964343598055,23,4936,1,0,0,0,9 +"9707",2012,54019,"WV","54","019",45873,0.94408475573867,2524,0.157979639439322,7.8336002236611,8.66388757056704,9.48918349576076,8.36923076923077,635.352014396416,173,27229,1,0,0,0,9 +"9708",2012,54021,"WV","54","021",8760,0.848858447488585,931,0.117465753424658,6.83625927727707,7.1731917424866,7.58832367733522,7.51538461538462,340.193910529002,20,5879,1,0,0,0,9 +"9709",2012,54023,"WV","54","023",11801,0.985001271078722,567,0.15413947970511,6.34035930372775,7.27862894232068,8.12946976478423,8.53076923076923,385.871178391214,26,6738,1,0,0,0,9 +"9710",2012,54025,"WV","54","025",35892,0.959099520784576,2004,0.156720160481444,7.60290046220476,8.31752199628717,9.26681521890416,7.73076923076923,565.215308712938,118,20877,1,0,0,0,9 +"9711",2012,54027,"WV","54","027",23668,0.979043434172723,1148,0.151935102247761,7.04577657687951,8.02059914989697,8.81774212957484,7.66923076923077,519.592985494696,72,13857,1,0,0,0,9 +"9712",2012,54029,"WV","54","029",30480,0.967224409448819,1467,0.160433070866142,7.29097477814298,8.25894046298846,9.11393959768983,8.96923076923077,659.328379057943,118,17897,1,0,0,0,9 +"9713",2012,54031,"WV","54","031",13857,0.952731471458469,750,0.147867503788699,6.62007320653036,7.48549160803075,8.30028018985266,10.2692307692308,416.360519226059,34,8166,1,0,0,0,9 +"9714",2012,54033,"WV","54","033",69113,0.971438079666633,3755,0.142404468045086,8.23084356419823,9.07509322256816,9.93139450578914,6.29230769230769,504.234591472071,206,40854,1,0,0,0,9 +"9715",2012,54035,"WV","54","035",29285,0.988287519207786,1560,0.141266860167321,7.35244110024358,8.19367666595524,9.05157907959124,8.25384615384615,446.162998215348,75,16810,1,0,0,0,9 +"9716",2012,54037,"WV","54","037",54736,0.904980268927214,3606,0.131851066939491,8.19035440376326,8.92452322613391,9.73352925472557,5.23076923076923,376.71026460129,125,33182,1,0,0,0,9 +"9717",2012,54039,"WV","54","039",192306,0.90418915686458,11214,0.153468950526765,9.32491827668362,10.0698067518526,10.9873414702287,6.37692307692308,557.402021880626,644,115536,1,0,0,0,9 +"9718",2012,54041,"WV","54","041",16450,0.985471124620061,852,0.146869300911854,6.74758652682932,7.64921631982063,8.48425669116997,6.8,588.964662120273,57,9678,1,0,0,0,9 +"9719",2012,54043,"WV","54","043",21606,0.994029436267703,1164,0.14560770156438,7.05961762829138,7.97625194374562,8.7721454392451,9.97692307692308,583.294447036864,75,12858,1,0,0,0,9 +"9720",2012,54045,"WV","54","045",36322,0.971559936126865,2023,0.164500853477231,7.61233683716775,8.5197898172635,9.31298720893633,9.41538461538462,881.889763779528,196,22225,1,0,0,0,9 +"9721",2012,54047,"WV","54","047",21318,0.901491697157332,1198,0.168589924007881,7.0884087786754,7.8804263442924,8.776938645175,11.7,1116.84510513749,145,12983,1,0,0,0,9 +"9722",2012,54049,"WV","54","049",56791,0.952862249300065,4468,0.142716275466183,8.40469616018909,8.85922139360813,9.73548301633697,6.22307692307692,419.745787762341,142,33830,1,0,0,0,9 +"9723",2012,54051,"WV","54","051",32827,0.986322234745789,1818,0.163158375727298,7.50549227473742,8.29354951506035,9.17936556767675,7.8,429.206743199917,83,19338,1,0,0,0,9 +"9724",2012,54053,"WV","54","053",27233,0.983218888848089,1450,0.148863511181287,7.27931883541462,8.1300590399928,9.0300168178449,9.53076923076923,564.723599171739,90,15937,1,0,0,0,9 +"9725",2012,54055,"WV","54","055",62441,0.924937140660784,4129,0.152576031773995,8.32579052588609,8.91677435636543,9.8440559687667,8.09230769230769,792.035641603872,288,36362,1,0,0,0,9 +"9726",2012,54057,"WV","54","057",27895,0.962143753360817,1735,0.145581645456175,7.45876269238096,8.13358741766097,9.0055277773467,8.19230769230769,469.948058372496,76,16172,1,0,0,0,9 +"9727",2012,54059,"WV","54","059",26193,0.974344290459283,1451,0.157828427442446,7.28000825288419,8.14728825870662,9.01115745810682,9.38461538461539,776.686964085995,125,16094,1,0,0,0,9 +"9728",2012,54061,"WV","54","061",101009,0.921254541674504,19252,0.104545139542021,9.865370230423,9.2897982933109,10.3802805815579,5.00769230769231,225.118483412322,152,67520,1,0,0,0,9 +"9729",2012,54063,"WV","54","063",13503,0.984447900466563,640,0.155150707250241,6.46146817635372,7.38894609761844,8.24931374626064,6.99230769230769,619.399051133368,47,7588,1,0,0,0,9 +"9730",2012,54065,"WV","54","065",17434,0.982620167488815,852,0.162211770104394,6.74758652682932,7.68063742756094,8.54441917766983,7.06153846153846,499.559212459594,51,10209,1,0,0,0,9 +"9731",2012,54067,"WV","54","067",26255,0.989183012759474,1489,0.155398971624452,7.30586003268401,8.10016144693661,8.9760094750214,8.96923076923077,662.805662805663,103,15540,1,0,0,0,9 +"9732",2012,54069,"WV","54","069",44017,0.947906490674058,3288,0.154440329872549,8.09803475617607,8.47741232140439,9.48105429619781,6.16153846153846,447.348971097367,115,25707,1,0,0,0,9 +"9733",2012,54071,"WV","54","071",7474,0.969092855231469,441,0.161225582017661,6.08904487544685,6.61606518513282,7.62705741701893,6.56153846153846,516.068496364063,22,4263,1,0,0,0,9 +"9734",2012,54073,"WV","54","073",7531,0.979816757402735,462,0.140884344708538,6.13556489108174,6.94408720822953,7.63626960337937,8.42307692307692,585.302406243226,27,4613,1,0,0,0,9 +"9735",2012,54075,"WV","54","075",8704,0.983226102941177,410,0.170840992647059,6.01615715969835,6.88448665204278,7.80098207125774,9.9,349.582443192853,18,5149,1,0,0,0,9 +"9736",2012,54077,"WV","54","077",33905,0.982038047485622,1876,0.148621147323404,7.53689712956617,8.42726848388825,9.2005930205213,6.82307692307692,468.528159015618,99,21130,1,0,0,0,9 +"9737",2012,54079,"WV","54","079",56448,0.975853883219955,2698,0.14296343537415,7.9002660367677,8.98017220572501,9.74208564599468,6.2,414.010841722762,139,33574,1,0,0,0,9 +"9738",2012,54081,"WV","54","081",79284,0.900080722466071,4805,0.151569042934262,8.47741232140439,9.26226846483654,10.046678392127,7.00769230769231,702.821776985209,335,47665,1,0,0,0,9 +"9739",2012,54083,"WV","54","083",29388,0.977780046277392,1802,0.144855042874643,7.49665243816828,8.19146305132693,9.0135952945165,8.43076923076923,422.688067630091,74,17507,1,0,0,0,9 +"9740",2012,54085,"WV","54","085",10254,0.99161302906183,507,0.155158962356154,6.22851100359118,7.10085190894405,7.9976631270201,7.13076923076923,519.611129735166,31,5966,1,0,0,0,9 +"9741",2012,54087,"WV","54","087",14679,0.989508822126848,750,0.156141426527693,6.62007320653036,7.50604217851812,8.36240897761537,11,572.429906542056,49,8560,1,0,0,0,9 +"9742",2012,54089,"WV","54","089",13838,0.940526087584911,649,0.165703136291372,6.47543271670409,7.48549160803075,8.4707303170059,8.54615384615385,480.192076830732,40,8330,1,0,0,0,9 +"9743",2012,54091,"WV","54","091",16960,0.980837264150943,959,0.148172169811321,6.86589107488344,7.71467747380093,8.50976567558744,6.60769230769231,474.852214361857,49,10319,1,0,0,0,9 +"9744",2012,54093,"WV","54","093",7079,0.98997033479305,333,0.154400339030937,5.80814248998044,6.7093043402583,7.60638738977265,7.80769230769231,328.44871147044,13,3958,1,0,0,0,9 +"9745",2012,54095,"WV","54","095",9052,0.992266902342024,474,0.16570923552806,6.16120732169508,7.02731451403978,7.87321705486274,8.83846153846154,360.053060451014,19,5277,1,0,0,0,9 +"9746",2012,54097,"WV","54","097",24456,0.982703631010795,1939,0.142091920183186,7.56992765524265,7.96485088744731,8.8771028978649,7.55384615384615,389.538119087368,56,14376,1,0,0,0,9 +"9747",2012,54099,"WV","54","099",41933,0.989554765936136,2468,0.142298428445377,7.81116338502528,8.61050136854989,9.44010197559197,7.33846153846154,455.253875810024,111,24382,1,0,0,0,9 +"9748",2012,54101,"WV","54","101",8981,0.99109230597929,460,0.166796570537802,6.13122648948314,7.00760061395185,7.87891291229713,10.3076923076923,936.902485659656,49,5230,1,0,0,0,9 +"9749",2012,54103,"WV","54","103",16345,0.990211073722851,904,0.148730498623432,6.80682936039218,7.57660976697304,8.44268513924118,9.06153846153846,653.314769197815,61,9337,1,0,0,0,9 +"9750",2012,54107,"WV","54","107",86655,0.975546708210721,4907,0.143719346835151,8.4984180360899,9.28581883315209,10.1698055292341,7.00769230769231,486.9237414592,248,50932,1,0,0,0,9 +"9751",2012,54109,"WV","54","109",23213,0.988670141730927,1280,0.16956016025503,7.15461535691366,8.03722003113301,8.85523562320697,8.87692307692308,862.745098039216,121,14025,1,0,0,0,9 +"9752",2012,56001,"WY","56","001",37404,0.93423163298043,8750,0.101914233771789,9.07680897935166,8.14148104145742,9.39449358359911,4.43846153846154,188.694079723249,48,25438,0,0,0,0,9 +"9753",2012,56003,"WY","56","003",11761,0.971771107898988,596,0.143525210441289,6.39024066706535,7.13249755166004,8.03947991910045,5.79230769230769,473.111496609368,30,6341,0,0,0,0,9 +"9754",2012,56005,"WY","56","005",47887,0.965376824607931,3311,0.119406101864807,8.10500553754725,8.73616806585823,9.56731527092391,4.78461538461538,240.099986843836,73,30404,0,0,0,0,9 +"9755",2012,56007,"WY","56","007",15719,0.956231312424454,939,0.147910172402825,6.84481547920826,7.54644627374602,8.3513747067213,5.33076923076923,383.618455158113,37,9645,0,0,0,0,9 +"9756",2012,56009,"WY","56","009",14032,0.972776510832383,743,0.141462371721779,6.61069604471776,7.47533923656674,8.29504914043511,4.43846153846154,408.555635664504,34,8322,0,0,0,0,9 +"9757",2012,56011,"WY","56","011",7137,0.980524029704358,313,0.16617626453692,5.74620319054015,6.59304453414244,7.60837447438078,5.03076923076923,410.23166023166,17,4144,0,0,0,0,9 +"9758",2012,56013,"WY","56","013",41029,0.759072850910332,2514,0.142898925150503,7.82963038915019,8.39479954320217,9.36288977043647,6.22307692307692,642.58053534193,151,23499,0,0,0,0,9 +"9759",2012,56015,"WY","56","015",13647,0.970836081190005,1022,0.144280794313769,6.92951677076365,7.29709100516042,8.16961956172385,4.80769230769231,393.80081300813,31,7872,0,0,0,0,9 +"9760",2012,56017,"WY","56","017",4834,0.972072817542408,201,0.17170045510964,5.30330490805908,6.08221891037645,7.19218205871325,4.88461538461538,372.02380952381,10,2688,0,0,0,0,9 +"9761",2012,56019,"WY","56","019",8645,0.965066512434933,367,0.167148640832851,5.90536184805457,6.87935580446044,7.78197323443438,5.48461538461538,387.359836901121,19,4905,0,0,0,0,9 +"9762",2012,56021,"WY","56","021",94751,0.934871399774145,7122,0.130911547107682,8.87094386383772,9.34679249511168,10.2429909049665,5.89230769230769,368.75337009271,212,57491,0,0,0,0,9 +"9763",2012,56023,"WY","56","023",17957,0.976220972322771,711,0.145959792838447,6.56667242980324,7.71289096149013,8.51197962436335,7.37692307692308,322.959483264827,33,10218,0,0,0,0,9 +"9764",2012,56025,"WY","56","025",78620,0.955609259730348,5535,0.134558636479267,8.61884684514274,9.16471519394991,10.0629668670814,5.20769230769231,400.240559092512,193,48221,0,0,0,0,9 +"9765",2012,56029,"WY","56","029",28829,0.971382982413542,1702,0.159457490721149,7.43955930913332,8.01697774676226,9.02135667230868,5.75384615384615,409.047160731473,68,16624,0,0,0,0,9 +"9766",2012,56031,"WY","56","031",8729,0.977431550005728,372,0.166800320769848,5.91889385427315,6.7990558620588,7.78239033558746,5.03846153846154,401.203610832497,20,4985,0,0,0,0,9 +"9767",2012,56033,"WY","56","033",29538,0.965535919832081,1611,0.163585889362855,7.38461038317697,8.14409846333852,9.06704720214971,6.4,385.079602275993,67,17399,0,0,0,0,9 +"9768",2012,56035,"WY","56","035",10489,0.967394413194775,541,0.140814186290399,6.29341927884648,7.25417784645652,7.98002359231065,5.01538461538462,197.80888618381,13,6572,0,0,0,0,9 +"9769",2012,56037,"WY","56","037",45032,0.956564220998401,3104,0.124555871380352,8.04044688130311,8.6438258423496,9.4774625304626,4.90769230769231,336.833052639123,94,27907,0,0,0,0,9 +"9770",2012,56039,"WY","56","039",21643,0.964515085709005,1037,0.137226816984706,6.94408720822953,8.13211877295581,8.83127373772255,7.00769230769231,176.991150442478,26,14690,0,0,0,0,9 +"9771",2012,56041,"WY","56","041",21008,0.970963442498096,1116,0.13294935262757,7.01750614294126,7.86518795418747,8.70665585636156,5.76153846153846,375.540860478406,46,12249,0,0,0,0,9 +"9772",2012,56043,"WY","56","043",8410,0.966468489892985,352,0.141379310344828,5.8636311755981,6.78897174299217,7.71646080017636,5.35384615384615,457.715780296425,21,4588,0,0,0,0,9 +"9773",2013,2020,"AK","02","020",301801,0.701339624454525,26616,0.118173896044082,10.1892678176983,10.5639049084732,11.4471808835009,5.20769230769231,353.128678423734,678,191998,0,0,0,0,9 +"9774",2013,2050,"AK","02","050",17855,0.12293475217026,1460,0.0936992439092691,7.28619171470238,7.50933526601659,8.4292359126571,16.2076923076923,351.203388079744,34,9681,0,0,0,0,9 +"9775",2013,2070,"AK","02","070",4976,0.205385852090032,424,0.125,6.04973345523196,6.16120732169508,7.20785987143248,10.3538461538462,565.171317555634,16,2831,0,0,0,0,9 +"9776",2013,2090,"AK","02","090",101046,0.810393286226075,11781,0.113482968153118,9.37424334324612,9.4127913000653,10.3035380279428,5.87692307692308,277.267156862745,181,65280,0,0,0,0,9 +"9777",2013,2110,"AK","02","110",32605,0.746909983131422,2152,0.14556049685631,7.67415292128168,8.37586001529959,9.24319470884713,5.06923076923077,367.768400207459,78,21209,0,0,0,0,9 +"9778",2013,2122,"AK","02","122",57039,0.877312014586511,3445,0.165991689896387,8.14467918344776,8.80597465931132,9.71008482573136,8.12307692307692,369.447547040124,129,34917,0,0,0,0,9 +"9779",2013,2130,"AK","02","130",13928,0.717403790924756,802,0.156088454910971,6.68710860786651,7.43661726523423,8.33134542484572,7.96923076923077,336.348874971004,29,8622,0,0,0,0,9 +"9780",2013,2150,"AK","02","150",14091,0.606699311617344,1105,0.120786317507629,7.00760061395185,7.46794233228585,8.30721262662831,6.27692307692308,326.319342860358,29,8887,0,0,0,0,9 +"9781",2013,2170,"AK","02","170",95940,0.879810298102981,6221,0.130279341254951,8.73568594451502,9.43962502804716,10.2294042752178,8.39230769230769,392.688351403948,226,57552,0,0,0,0,9 +"9782",2013,2180,"AK","02","180",9851,0.178966602375393,833,0.1012079991879,6.72503364216684,6.97728134163075,7.8407064517494,12.3846153846154,584.36815193572,32,5476,0,0,0,0,9 +"9783",2013,2185,"AK","02","185",9383,0.326441436640733,754,0.141958861771288,6.62539236800796,7.07072410726028,7.65917136766606,7.4,258.123291831157,17,6586,0,0,0,0,9 +"9784",2013,2188,"AK","02","188",7735,0.139495798319328,727,0.0872656755009696,6.58892647753352,6.62671774924902,7.50328963067508,16.4615384615385,380.499405469679,16,4205,0,0,0,0,9 +"9785",2013,2220,"AK","02","220",8980,0.710356347438753,517,0.148663697104677,6.24804287450843,7.09920174355309,7.9124231214737,5.56153846153846,215.478541928533,12,5569,0,0,0,0,9 +"9786",2013,2261,"AK","02","261",9823,0.79812684515932,531,0.163697444772473,6.27476202124194,7.01301578963963,7.9483852851119,10.2230769230769,276.782806903289,17,6142,0,0,0,0,9 +"9787",2013,2270,"AK","02","270",7980,0.0442355889724311,759,0.0740601503759399,6.63200177739563,6.56667242980324,7.51860721681525,NA,911.161731207289,36,3951,0,0,0,0,9 +"9788",2013,2290,"AK","02","290",5554,0.232445084623695,390,0.149441843716241,5.96614673912369,6.30991827822652,7.29573507274928,18.3846153846154,983.40503995083,32,3254,0,0,0,0,9 +"9789",2013,1001,"AL","01","001",54747,0.79467368074963,3468,0.113430872924544,8.15133333790043,8.95389853526046,9.71244810512245,6.3,526.071483831038,170,32315,0,0,0,0,9 +"9790",2013,1003,"AL","01","003",194978,0.883715085804552,11015,0.137271897342264,9.30701325923644,10.1095256359474,10.956474663178,6.73846153846154,398.335208902703,446,111966,0,0,0,0,9 +"9791",2013,1005,"AL","01","005",26946,0.502300898092481,1819,0.130149187263416,7.50604217851812,8.14438886554762,8.85523562320697,10.3846153846154,480.097234883014,79,16455,0,0,0,0,9 +"9792",2013,1007,"AL","01","007",22510,0.772367836517104,1466,0.124078187472235,7.2902928824466,8.07899825868515,8.72013403541293,8.01538461538462,599.914297957435,84,14002,0,0,0,0,9 +"9793",2013,1009,"AL","01","009",57630,0.970640291514836,3371,0.128179767482214,8.12296471523406,8.93471861401677,9.71353696857768,6.37692307692308,469.342319032433,156,33238,0,0,0,0,9 +"9794",2013,1011,"AL","01","011",10557,0.267216065170029,733,0.136686558681444,6.59714570188665,7.19967834569117,7.9135210172839,9.45384615384615,560.351355444495,37,6603,0,0,0,0,9 +"9795",2013,1013,"AL","01","013",20359,0.5437889876713,1247,0.143671103688786,7.12849594568004,7.76302130901852,8.73969653784302,10.4307692307692,601.307189542484,69,11475,0,0,0,0,9 +"9796",2013,1015,"AL","01","015",116528,0.770655979678704,8851,0.134963270630235,9.08828572596888,9.56184195714092,10.4826538351446,8.92307692307692,614.768849791958,427,69457,0,0,0,0,9 +"9797",2013,1017,"AL","01","017",34125,0.590681318681319,2198,0.140923076923077,7.69530313496357,8.32845106681936,9.2351305407834,8.09230769230769,716.64829106946,143,19954,0,0,0,0,9 +"9798",2013,1019,"AL","01","019",26022,0.943432480209054,1449,0.151756206286988,7.27862894232068,8.04366335239394,8.90598676523643,6.69230769230769,747.813313747747,112,14977,0,0,0,0,9 +"9799",2013,1021,"AL","01","021",43617,0.883027260013298,2855,0.13027030744893,7.95682712209011,8.66146668057266,9.46544759849579,6.65384615384615,585.271317829457,151,25800,0,0,0,0,9 +"9800",2013,1023,"AL","01","023",13401,0.565554809342586,771,0.146108499365719,6.64768837356333,7.33498187887181,8.27715777243181,9.34615384615385,724.828676858197,55,7588,0,0,0,0,9 +"9801",2013,1025,"AL","01","025",25131,0.546178027137798,1589,0.131590465958378,7.37086016653672,8.021256180144,8.91838250466161,13.9615384615385,566.156426923883,81,14307,0,0,0,0,9 +"9802",2013,1027,"AL","01","027",13406,0.840668357451887,774,0.13852006564225,6.65157187358973,7.39449310721904,8.27842825919907,8.48461538461538,492.866407263294,38,7710,0,0,0,0,9 +"9803",2013,1029,"AL","01","029",14974,0.954988646988113,895,0.133230933618272,6.79682371827486,7.56941179245071,8.35913488675796,7.78461538461538,724.045311222702,62,8563,0,0,0,0,9 +"9804",2013,1031,"AL","01","031",50709,0.782405490149678,3161,0.122463468023428,8.05864371221562,8.81566682494622,9.60474453272492,6.98461538461538,339.381720430108,101,29760,0,0,0,0,9 +"9805",2013,1033,"AL","01","033",54544,0.81992519800528,3385,0.14051041361103,8.12710918534638,8.80537513890967,9.69898173460629,8.31538461538462,608.442134617822,192,31556,0,0,0,0,9 +"9806",2013,1035,"AL","01","035",12908,0.525178184071893,823,0.147427951657887,6.71295620067707,7.27447955877387,8.22416351263786,10.8923076923077,651.149903020227,47,7218,0,0,0,0,9 +"9807",2013,1037,"AL","01","037",11252,0.66663704230359,616,0.161215783860647,6.42324696353352,7.26961674960817,8.0861025356691,9.28461538461539,604.960677555959,40,6612,0,0,0,0,9 +"9808",2013,1039,"AL","01","039",37820,0.858276044420941,2225,0.140401903754627,7.70751219460034,8.37885024179449,9.29376198011525,8.20769230769231,565.764249310329,121,21387,0,0,0,0,9 +"9809",2013,1041,"AL","01","041",13847,0.732433017982234,879,0.140391420524301,6.77878489768518,7.41758040241454,8.29903718161307,7.75384615384615,563.274502440856,45,7989,0,0,0,0,9 +"9810",2013,1043,"AL","01","043",80704,0.973557692307692,5185,0.132124801744647,8.55352512066363,9.22276289197474,10.0517351289963,6.76153846153846,537.542662116041,252,46880,0,0,0,0,9 +"9811",2013,1045,"AL","01","045",49807,0.770654727247174,3418,0.123014837271869,8.13681086367554,8.71177264560569,9.59144447917141,7.48461538461538,440.812451256315,130,29491,0,0,0,0,9 +"9812",2013,1047,"AL","01","047",41981,0.289035516066792,2866,0.136085371953979,7.96067260838812,8.43424627059531,9.46537011215271,12.3846153846154,631.765151834225,150,23743,0,0,0,0,9 +"9813",2013,1049,"AL","01","049",70881,0.944272795248374,4507,0.12674764746547,8.41338702269065,9.15377002048779,9.92593374136596,7.72307692307692,543.99531627351,223,40993,0,0,0,0,9 +"9814",2013,1051,"AL","01","051",80557,0.773030276698487,5886,0.121988157453728,8.68033192879342,9.32821229257107,10.1521038998234,6.25384615384615,395.61777236762,195,49290,0,0,0,0,9 +"9815",2013,1053,"AL","01","053",37775,0.631475843812045,2469,0.128577101257445,7.81156848934518,8.5167931113949,9.23395923757482,8.71538461538461,598.165625415393,135,22569,0,0,0,0,9 +"9816",2013,1055,"AL","01","055",103891,0.824989652616685,6845,0.137836771231387,8.83127373772255,9.50502288407271,10.3479810476118,7.7,617.85197844091,376,60856,0,0,0,0,9 +"9817",2013,1057,"AL","01","057",16837,0.875631050662232,1058,0.144978321553721,6.96413561241824,7.60140233458373,8.48115142006897,8.4,652.511651993786,63,9655,0,0,0,0,9 +"9818",2013,1059,"AL","01","059",31566,0.929607805867072,2165,0.120192612304378,7.68017564043659,8.32675881451173,9.09649955555242,8.17692307692308,624.619976784036,113,18091,0,0,0,0,9 +"9819",2013,1061,"AL","01","061",26688,0.883917865707434,1524,0.141786570743405,7.32909373624659,8.07153089355666,8.94676537486763,7.06923076923077,589.275191514437,90,15273,0,0,0,0,9 +"9820",2013,1063,"AL","01","063",8749,0.179906275002857,597,0.160818379243342,6.3919171133926,6.71780469502369,7.86288203464149,12.9538461538462,781.25,39,4992,0,0,0,0,9 +"9821",2013,1065,"AL","01","065",15249,0.408354646206309,1032,0.141058430060988,6.93925394604151,7.39326309476384,8.43337670532313,11.7846153846154,635.785649409628,56,8808,0,0,0,0,9 +"9822",2013,1067,"AL","01","067",17128,0.708138720224194,897,0.150922466137319,6.7990558620588,7.66011431917393,8.52337405049132,7.80769230769231,440.754407544075,43,9756,0,0,0,0,9 +"9823",2013,1069,"AL","01","069",103691,0.713263446200731,6378,0.128188560241487,8.76060984757,9.49235642280134,10.3588533190978,7.00769230769231,498.897783965657,301,60333,0,0,0,0,9 +"9824",2013,1071,"AL","01","071",52986,0.936379420979127,3218,0.142849054467218,8.07651532755233,8.830689198761,9.65027131696563,7.99230769230769,602.861146413791,185,30687,0,0,0,0,9 +"9825",2013,1073,"AL","01","073",659434,0.545495076080396,45386,0.131217074036219,10.7229589664296,11.3337868372788,12.2510221103137,6.76153846153846,510.433491671544,2032,398093,0,0,0,0,9 +"9826",2013,1075,"AL","01","075",14214,0.880610665541016,761,0.142465175179401,6.63463335786169,7.47022413589997,8.29928590689727,7.10769230769231,601.880877742947,48,7975,0,0,0,0,9 +"9827",2013,1077,"AL","01","077",92738,0.88130000646984,7987,0.136351873018612,8.98557049891739,9.27594082906013,10.2359159094003,7.22307692307692,501.27631238208,271,54062,0,0,0,0,9 +"9828",2013,1079,"AL","01","079",33553,0.812326766608053,2104,0.13673889071022,7.6515955738576,8.35467426191846,9.22384872200097,8.45384615384615,626.66065072442,125,19947,0,0,0,0,9 +"9829",2013,1081,"AL","01","081",151943,0.722494619692911,23275,0.0980828336942143,10.0551351021453,9.82401135103433,10.7866970858082,5.97692307692308,343.233910258417,329,95853,0,0,0,0,9 +"9830",2013,1083,"AL","01","083",88931,0.836806063127593,5242,0.122330795785497,8.56445838388335,9.43620023078462,10.1779323982059,6.33076923076923,351.026290021616,190,54127,0,0,0,0,9 +"9831",2013,1085,"AL","01","085",10666,0.250609413088318,816,0.136977311081943,6.70441435496411,7.03878354138854,8.08825472712243,14.2769230769231,713.938017199416,44,6163,0,0,0,0,9 +"9832",2013,1087,"AL","01","087",20043,0.16324901461857,2652,0.140098787606646,7.88306935130575,7.55433482372575,8.76467807411661,9.76923076923077,649.68814968815,75,11544,0,0,0,0,9 +"9833",2013,1089,"AL","01","089",346764,0.708750043257085,24924,0.12300296455226,10.1235864736641,10.671695822318,11.5875040406584,6.4,385.960282377779,819,212198,0,0,0,0,9 +"9834",2013,1091,"AL","01","091",20123,0.476469711275655,1312,0.137653431396909,7.17930796950403,7.77611547709874,8.69801362208393,9.02307692307692,593.708462560922,67,11285,0,0,0,0,9 +"9835",2013,1093,"AL","01","093",30236,0.949563434316709,1711,0.135533800767297,7.44483327389219,8.22764270790443,9.05555615817532,8.03846153846154,577.30054266251,100,17322,0,0,0,0,9 +"9836",2013,1095,"AL","01","095",94358,0.950677208079866,5981,0.123783886898832,8.69634305704456,9.37577006109992,10.2027028608016,6.92307692307692,591.103886508054,320,54136,0,0,0,0,9 +"9837",2013,1097,"AL","01","097",414025,0.609439043536018,30185,0.127987440371958,10.3151003912305,10.8206778796531,11.755848113892,8.66923076923077,559.311993136274,1369,244765,0,0,0,0,9 +"9838",2013,1099,"AL","01","099",22174,0.561874267159737,1381,0.141832777126364,7.23056315340929,7.85593219971861,8.78615105486974,12.0384615384615,592.142114107386,74,12497,0,0,0,0,9 +"9839",2013,1101,"AL","01","101",228261,0.393702822646006,18733,0.12092735947008,9.83804195346106,10.2669494131638,11.1935875931144,7.40769230769231,476.169416065927,646,135666,0,0,0,0,9 +"9840",2013,1103,"AL","01","103",119625,0.851335423197492,7570,0.130599791013584,8.9319483464315,9.63926155612069,10.4771189470945,6.98461538461538,505.628292586472,358,70803,0,0,0,0,9 +"9841",2013,1105,"AL","01","105",10005,0.305147426286857,863,0.128335832083958,6.76041469108343,6.94697599213542,7.97246601597457,13.7,668.523676880223,36,5385,0,0,0,0,9 +"9842",2013,1107,"AL","01","107",19309,0.573204205292869,1266,0.143611787249469,7.14361760270412,7.64587582518481,8.65956043270316,9.45384615384615,544.788782709654,61,11197,0,0,0,0,9 +"9843",2013,1109,"AL","01","109",33728,0.590458965844402,6076,0.109167457305503,8.71210186371566,8.14235427684983,9.26122358229075,7.75384615384615,524.870008829589,107,20386,0,0,0,0,9 +"9844",2013,1111,"AL","01","111",22558,0.786594556254987,1331,0.141280255341786,7.19368581839511,7.87625888230323,8.77493138749495,7.86923076923077,603.542875058787,77,12758,0,0,0,0,9 +"9845",2013,1113,"AL","01","113",59219,0.547645181445144,4320,0.11739475506172,8.37101068123816,8.9300972286214,9.80697665215529,7.35384615384615,399.944063767305,143,35755,0,0,0,0,9 +"9846",2013,1115,"AL","01","115",85831,0.893278652235206,4972,0.129020983094686,8.5115774526306,9.38965741974984,10.1510114725757,6.23076923076923,564.502097550602,292,51727,0,0,0,0,9 +"9847",2013,1117,"AL","01","117",204088,0.854655834737956,11733,0.124490415899024,9.37016066342362,10.310950663307,11.0610760463045,4.70769230769231,288.217101960848,356,123518,0,0,0,0,9 +"9848",2013,1119,"AL","01","119",13398,0.253694581280788,1888,0.140095536647261,7.54327334670545,7.18083119904456,8.37678103769949,9.15384615384615,605.296343001261,48,7930,0,0,0,0,9 +"9849",2013,1121,"AL","01","121",81604,0.660470074996324,5542,0.138706435959022,8.62011072542292,9.26709870579479,10.1157723605155,8.72307692307692,692.391955852262,335,48383,0,0,0,0,9 +"9850",2013,1123,"AL","01","123",41039,0.713565145349546,2582,0.149638149077707,7.85631957140659,8.46737249643228,9.40178683654714,8.21538461538461,719.089717017047,170,23641,0,0,0,0,9 +"9851",2013,1125,"AL","01","125",201192,0.669042506660305,27883,0.11359795618116,10.2357724631028,10.066328930042,11.0735674258389,6.44615384615385,389.935197244884,488,125149,0,0,0,0,9 +"9852",2013,1127,"AL","01","127",65790,0.925262197902417,4086,0.139884480924153,8.31532177537757,9.00785692335828,9.87075772791321,8.57692307692308,781.719783523752,299,38249,0,0,0,0,9 +"9853",2013,1129,"AL","01","129",16898,0.666232690259202,1052,0.141969463841875,6.95844839329766,7.61283103040736,8.52357279838028,11.0076923076923,571.661902817477,56,9796,0,0,0,0,9 +"9854",2013,1131,"AL","01","131",11148,0.276193039110154,712,0.14226767133118,6.56807791141198,7.13089883029635,8.081784206935,19.4923076923077,1256.64572257129,78,6207,0,0,0,0,9 +"9855",2013,1133,"AL","01","133",24190,0.976353865233568,1311,0.140347250930136,7.1785454837637,8.00302866638473,8.830689198761,9.53076923076923,672.743055555556,93,13824,0,0,0,0,9 +"9856",2013,5001,"AR","05","001",18797,0.735330105867958,1107,0.144597542160983,7.00940893270864,7.73280753042202,8.62011072542292,7.10769230769231,564.135762508092,61,10813,0,0,0,0,9 +"9857",2013,5003,"AR","05","003",21289,0.726478463056038,1311,0.133355253886984,7.1785454837637,7.87625888230323,8.73536440110389,10.3692307692308,542.163650012511,65,11989,0,0,0,0,9 +"9858",2013,5005,"AR","05","005",41000,0.982487804878049,1766,0.154024390243902,7.4764723811639,8.27512163021651,9.29458960442108,7.83076923076923,712.737779918131,148,20765,0,0,0,0,9 +"9859",2013,5007,"AR","05","007",239559,0.915582382628079,14077,0.102125154972262,9.55229753882796,10.4230548562389,11.1505342140354,5.49230769230769,281.912329647537,386,136922,0,0,0,0,9 +"9860",2013,5009,"AR","05","009",37353,0.979385859234867,2226,0.132867507295264,7.70796153183549,8.39976009452414,9.26473385580652,6.83846153846154,439.749533961092,92,20921,0,0,0,0,9 +"9861",2013,5011,"AR","05","011",11120,0.697482014388489,663,0.133273381294964,6.49677499018586,7.19818357710194,8.07121853996986,9.24615384615385,787.153652392947,50,6352,0,0,0,0,9 +"9862",2013,5013,"AR","05","013",5190,0.773025048169557,375,0.151830443159923,5.92692602597041,6.40522845803084,7.29233717617388,7.90769230769231,442.05873065993,14,3167,0,0,0,0,9 +"9863",2013,5015,"AR","05","015",27815,0.962861765234586,1448,0.155096171130685,7.27793857294566,8.00469951054955,8.95454448838672,5.85384615384615,468.0795735275,72,15382,0,0,0,0,9 +"9864",2013,5017,"AR","05","017",11370,0.437291116974494,693,0.144503078276165,6.5410299991899,7.13089883029635,8.04044688130311,11.3307692307692,693.787448754336,44,6342,0,0,0,0,9 +"9865",2013,5019,"AR","05","019",22600,0.737345132743363,3383,0.113628318584071,8.12651816878071,7.7367436824535,8.82805453681542,8.62307692307692,409.183905433053,54,13197,0,0,0,0,9 +"9866",2013,5021,"AR","05","021",15482,0.985402402790337,939,0.133703655858416,6.84481547920826,7.49831587076698,8.36520683441836,9.49230769230769,699.382212379065,60,8579,0,0,0,0,9 +"9867",2013,5023,"AR","05","023",25645,0.981399883018132,1231,0.145174497952817,7.11558212618445,7.9043348420851,8.84347078162738,8.30769230769231,660.137830975698,91,13785,0,0,0,0,9 +"9868",2013,5025,"AR","05","025",8517,0.872372901256311,463,0.133967359398849,6.13772705408623,6.95749737087695,7.79069603117474,7.38461538461539,438.77977434183,21,4786,0,0,0,0,9 +"9869",2013,5027,"AR","05","027",24282,0.616341322790544,2625,0.120336051396096,7.87283617502572,7.83636976054512,8.87108426397835,8.55384615384615,520.184628910543,71,13649,0,0,0,0,9 +"9870",2013,5029,"AR","05","029",21091,0.867336778720781,1287,0.136076999668105,7.16006920759613,7.78862606562503,8.70880479511728,8.96923076923077,557.311595408418,67,12022,0,0,0,0,9 +"9871",2013,5031,"AR","05","031",101682,0.835870655573258,8833,0.107747683955862,9.08624998674513,9.4539138048019,10.3358542138418,6.4,438.464872795172,263,59982,0,0,0,0,9 +"9872",2013,5033,"AR","05","033",61708,0.936750502365982,3774,0.126126272120309,8.2358907259285,8.96136606062745,9.79417479259543,7.45384615384615,478.751865724183,170,35509,0,0,0,0,9 +"9873",2013,5035,"AR","05","035",49677,0.4648630150774,3395,0.118062684944743,8.1300590399928,8.72583205652757,9.62859007444377,8.16153846153846,650.304174533249,186,28602,0,0,0,0,9 +"9874",2013,5037,"AR","05","037",17521,0.758575423777182,1052,0.126305576165744,6.95844839329766,7.67693714581808,8.52931937121408,7.37692307692308,578.738958269875,57,9849,0,0,0,0,9 +"9875",2013,5039,"AR","05","039",7896,0.568642350557244,459,0.147289766970618,6.12905021006055,6.73459165997295,7.70481192293259,10.1923076923077,725.788160580631,32,4409,0,0,0,0,9 +"9876",2013,5041,"AR","05","041",12497,0.50404096983276,741,0.142434184204209,6.60800062529609,7.18992217074581,8.20849175174038,9.39230769230769,694.745983499783,48,6909,0,0,0,0,9 +"9877",2013,5043,"AR","05","043",18684,0.705523442517662,1979,0.121333761507172,7.59034694560257,7.60738142563979,8.62245370207373,9.40769230769231,464.468183929401,50,10765,0,0,0,0,9 +"9878",2013,5045,"AR","05","045",119251,0.861695080125114,14765,0.100711943715357,9.60001479417802,9.61052489564042,10.5308420925461,6.33076923076923,353.496213511713,260,73551,0,0,0,0,9 +"9879",2013,5047,"AR","05","047",17917,0.962326282301725,1146,0.132444047552604,7.04403289727469,7.66622192566273,8.51218064959269,6.72307692307692,526.159039015189,53,10073,0,0,0,0,9 +"9880",2013,5049,"AR","05","049",12175,0.982094455852156,571,0.156386036960986,6.34738920965601,7.14440718032114,8.10802122137675,6.72307692307692,429.97542997543,28,6512,0,0,0,0,9 +"9881",2013,5051,"AR","05","051",97734,0.892381361655105,5561,0.143153866617554,8.62353322718756,9.28757915231698,10.2363819678095,7.38461538461538,609.148299922472,330,54174,0,0,0,0,9 +"9882",2013,5053,"AR","05","053",18047,0.96281930514767,1016,0.12755582645315,6.92362862813843,7.77022320415879,8.57073395834427,6.38461538461539,495.710200190658,52,10490,0,0,0,0,9 +"9883",2013,5055,"AR","05","055",43176,0.981123772466185,2833,0.119858254585881,7.94909149983052,8.66802408111882,9.44200749423127,7.69230769230769,519.937607487102,130,25003,0,0,0,0,9 +"9884",2013,5057,"AR","05","057",22434,0.677632165463136,1352,0.127618792903628,7.20934025660291,7.84345640437612,8.77415829120596,7.04615384615385,584.093454952793,73,12498,0,0,0,0,9 +"9885",2013,5059,"AR","05","059",33534,0.873173495556748,2184,0.138188107592294,7.6889133368648,8.31922993863233,9.13497006495141,7.1,646.56261049654,128,19797,0,0,0,0,9 +"9886",2013,5061,"AR","05","061",13541,0.768037811092238,792,0.123033749353814,6.67456139181443,7.33367639565768,8.25919936266628,6.23076923076923,534.75935828877,40,7480,0,0,0,0,9 +"9887",2013,5063,"AR","05","063",36899,0.957234613404157,2261,0.129569907043551,7.72356247227797,8.44009614103127,9.26511260782316,8.79230769230769,467.401154194687,98,20967,0,0,0,0,9 +"9888",2013,5065,"AR","05","065",13420,0.968628912071535,684,0.148435171385991,6.52795791762255,7.28000825288419,8.14728825870662,8.43076923076923,531.624863685932,39,7336,0,0,0,0,9 +"9889",2013,5067,"AR","05","067",17741,0.810551829096443,1098,0.132912462657122,7.00124562206948,7.76556908109732,8.58597270681106,10.6230769230769,574.925816023739,62,10784,0,0,0,0,9 +"9890",2013,5069,"AR","05","069",73233,0.421408381467371,5548,0.135567298895307,8.62119278143472,9.03360319347613,9.9889310343536,10.0769230769231,596.647629660584,257,43074,0,0,0,0,9 +"9891",2013,5071,"AR","05","071",25941,0.947303496395667,1866,0.119232103619753,7.53155238140729,8.01994168767737,8.90204734562028,7.43846153846154,393.00718254506,58,14758,0,0,0,0,9 +"9892",2013,5073,"AR","05","073",7279,0.612446764665476,463,0.143563676329166,6.13772705408623,6.63594655568665,7.64921631982063,9.26923076923077,785.661674441444,32,4073,0,0,0,0,9 +"9893",2013,5075,"AR","05","075",17051,0.982053838484546,1180,0.128203624420855,7.07326971745971,7.57916796739608,8.4707303170059,8.64615384615385,573.552841210834,54,9415,0,0,0,0,9 +"9894",2013,5077,"AR","05","077",9996,0.427671068427371,704,0.133053221288515,6.55677835615804,7.18387071506245,7.77317368048254,9.04615384615385,585.080448561677,36,6153,0,0,0,0,9 +"9895",2013,5079,"AR","05","079",14070,0.683724235963042,1216,0.114641080312722,7.10332206252611,7.62168499872461,8.02027047281924,8.1,429.046444277593,40,9323,0,0,0,0,9 +"9896",2013,5081,"AR","05","081",12743,0.772110178137016,701,0.141960291924978,6.55250788703459,7.35946763825562,8.20958048347558,7.41538461538462,558.815311539536,40,7158,0,0,0,0,9 +"9897",2013,5083,"AR","05","083",22034,0.950077153490061,1283,0.134383225923573,7.15695636461564,7.85243908535751,8.73456008995299,7.57692307692308,675.12607776151,83,12294,0,0,0,0,9 +"9898",2013,5085,"AR","05","085",70775,0.917725185446839,4350,0.11095725891911,8.37793112408273,9.20170317858052,9.95527322568536,5.94615384615385,481.301439091303,200,41554,0,0,0,0,9 +"9899",2013,5087,"AR","05","087",15690,0.966220522625876,858,0.145188017845762,6.75460409948796,7.54802896993501,8.39344238398006,5.64615384615385,546.813971654949,49,8961,0,0,0,0,9 +"9900",2013,5089,"AR","05","089",16449,0.980485135874521,749,0.178795063529698,6.61873898351722,7.29979736675816,8.41161042884117,7.5,645.664032060559,58,8983,0,0,0,0,9 +"9901",2013,5091,"AR","05","091",43439,0.731876884826999,2910,0.126591311954695,7.97590836016554,8.60300384782935,9.46552507883519,6.27692307692308,527.487984995897,135,25593,0,0,0,0,9 +"9902",2013,5093,"AR","05","093",44642,0.635500201603871,3118,0.122082343981004,8.04494704961772,8.57130251706327,9.47822781709978,11.0538461538462,624.073640689601,160,25638,0,0,0,0,9 +"9903",2013,5095,"AR","05","095",7693,0.572988431041206,486,0.156765891069804,6.18620862390049,6.69703424766648,7.69757534680234,8.51538461538462,671.296296296296,29,4320,0,0,0,0,9 +"9904",2013,5097,"AR","05","097",9254,0.9688783228874,424,0.153447157985736,6.04973345523196,6.87935580446044,7.80384330353877,8.16153846153846,445.705024311183,22,4936,0,0,0,0,9 +"9905",2013,5099,"AR","05","099",8767,0.677312649709137,523,0.142123873616973,6.25958146406492,6.90575327631146,7.81601383915903,7.48461538461538,688.119813802874,34,4941,0,0,0,0,9 +"9906",2013,5101,"AR","05","101",8045,0.977501553760099,404,0.160969546302051,6.00141487796115,6.68959926917897,7.68616230349291,6.74615384615385,473.399458972047,21,4436,0,0,0,0,9 +"9907",2013,5103,"AR","05","103",24957,0.583323316103698,1452,0.155066714749369,7.28069719538474,7.9168074909376,8.92052268739398,9.36923076923077,797.649034424853,114,14292,0,0,0,0,9 +"9908",2013,5105,"AR","05","105",10334,0.96477646603445,612,0.139152312754016,6.41673228251233,7.15305163493748,7.98582466641892,9.09230769230769,656.565656565657,39,5940,0,0,0,0,9 +"9909",2013,5107,"AR","05","107",20435,0.36011744555909,1385,0.133643259114265,7.23345541862144,7.64204440287326,8.69984802600031,11.1076923076923,801.44079243584,89,11105,0,0,0,0,9 +"9910",2013,5109,"AR","05","109",11117,0.946658271116308,604,0.134118916974004,6.40357419793482,7.25276241805319,8.04109100370863,8.5,673.724735322425,42,6234,0,0,0,0,9 +"9911",2013,5111,"AR","05","111",24184,0.911801190869997,1626,0.128597419781674,7.39387829010776,8.00603417874901,8.85765744930699,8.20769230769231,572.21497899464,79,13806,0,0,0,0,9 +"9912",2013,5113,"AR","05","113",20344,0.963134093590248,1133,0.1428922532442,7.03262426102801,7.70255611326858,8.61703852638595,6.96923076923077,467.461044912924,51,10910,0,0,0,0,9 +"9913",2013,5115,"AR","05","115",62612,0.941736408356226,6171,0.115057816393024,8.72761617832107,8.88016824790345,9.81230384711351,7.13076923076923,454.322868491213,167,36758,0,0,0,0,9 +"9914",2013,5117,"AR","05","117",8381,0.870659825796444,426,0.145686672234817,6.05443934626937,6.84481547920826,7.76768727718691,6.86923076923077,452.879016605564,21,4637,0,0,0,0,9 +"9915",2013,5119,"AR","05","119",391745,0.602736473981799,27634,0.127312409858454,10.2268021776166,10.8255814136372,11.7291330177633,6.36923076923077,453.15447495284,1081,238550,0,0,0,0,9 +"9916",2013,5121,"AR","05","121",17628,0.979294304515543,1072,0.134104833219877,6.97728134163075,7.60688453121963,8.50228257868048,9.26153846153846,576.048509348156,57,9895,0,0,0,0,9 +"9917",2013,5123,"AR","05","123",27442,0.450768894395452,1775,0.127760367320166,7.48155570190952,8.26513562993738,8.85737283282577,10.1461538461538,617.944147355912,104,16830,0,0,0,0,9 +"9918",2013,5125,"AR","05","125",113380,0.919174457576292,6166,0.121943905450697,8.7268056084461,9.63580416659104,10.4126217466411,5.63846153846154,433.151328432419,284,65566,0,0,0,0,9 +"9919",2013,5127,"AR","05","127",10908,0.929226255958929,655,0.126054272093876,6.48463523563525,7.10332206252611,7.98922140881528,6.09230769230769,498.00796812749,30,6024,0,0,0,0,9 +"9920",2013,5129,"AR","05","129",7992,0.974724724724725,382,0.159409409409409,5.94542060860658,6.73459165997295,7.66387725870347,7.77692307692308,544.21768707483,24,4410,0,0,0,0,9 +"9921",2013,5131,"AR","05","131",127266,0.850431379944368,9193,0.122962928040482,9.12619760386375,9.67073548694281,10.5423369296882,7.26923076923077,447.531894996994,335,74855,0,0,0,0,9 +"9922",2013,5133,"AR","05","133",17358,0.908341974881899,1190,0.107558474478627,7.08170858610557,7.69348164083518,8.45233461906774,8.04615384615385,387.029288702929,37,9560,0,0,0,0,9 +"9923",2013,5135,"AR","05","135",17041,0.973417052989848,850,0.14682236957925,6.74523634948436,7.47193207824512,8.41183267575841,9.5,646.478394011569,57,8817,0,0,0,0,9 +"9924",2013,5137,"AR","05","137",12434,0.981019784461959,575,0.161010133504906,6.35437004079735,7.10085190894405,8.10982627601848,8.20769230769231,617.098133654425,41,6644,0,0,0,0,9 +"9925",2013,5139,"AR","05","139",40619,0.655530662990226,2447,0.140697703045373,7.80261806344267,8.49556089128912,9.3910773406399,8.37692307692308,685.427221252501,161,23489,0,0,0,0,9 +"9926",2013,5141,"AR","05","141",16988,0.976395102425241,821,0.148928655521545,6.71052310945243,7.51152464839087,8.4292359126571,9.48461538461538,536.046384421836,49,9141,0,0,0,0,9 +"9927",2013,5143,"AR","05","143",216107,0.895195435594405,23586,0.0963874377044705,10.0684085946499,10.2208861817758,11.0679187922415,5.21538461538462,312.062843000108,406,130102,0,0,0,0,9 +"9928",2013,5145,"AR","05","145",78590,0.936544089578827,6865,0.113385926962718,8.83419131820207,9.15408743042538,10.0418572218009,7.6,454.214715674818,206,45353,0,0,0,0,9 +"9929",2013,5147,"AR","05","147",7029,0.711623275003557,386,0.152226490254659,5.95583736946483,6.69332366826995,7.59287028784482,9.26923076923077,739.418663946966,29,3922,0,0,0,0,9 +"9930",2013,5149,"AR","05","149",21823,0.953443614535123,1273,0.122989506483985,7.14913159855741,7.8991534833431,8.70334075304372,6.38461538461539,439.703607198111,54,12281,0,0,0,0,9 +"9931",2013,4001,"AZ","04","001",72333,0.233876653809465,5551,0.115659519168291,8.62173337069016,8.96673897875958,9.88455954265061,18.5153846153846,635.669246936997,248,39014,0,0,0,0,9 +"9932",2013,4003,"AZ","04","003",129664,0.898422075518263,8734,0.132696816386969,9.07497873404551,9.5361127111751,10.4605286000991,9.26153846153846,433.652549793598,312,71947,0,0,0,0,9 +"9933",2013,4005,"AZ","04","005",136788,0.674013802380326,19206,0.117188642278562,9.86297800919792,9.60978740775878,10.6551158828461,8.2,316.237487219726,266,84114,0,0,0,0,9 +"9934",2013,4007,"AZ","04","007",53026,0.809640553690642,2730,0.161524535133708,7.91205688817901,8.43533216493592,9.53206148665139,9.69230769230769,627.783049857654,172,27398,0,0,0,0,9 +"9935",2013,4009,"AZ","04","009",37456,0.822004485262708,3130,0.101852840666382,8.0487882835342,8.42748727833174,9.13421498158669,7.8,435.111615588347,92,21144,0,0,0,0,9 +"9936",2013,4011,"AZ","04","011",8918,0.927562233684683,532,0.120654855348733,6.27664348934164,7.01660968389422,7.77988511507052,5.97692307692308,289.073039121218,15,5189,0,0,0,0,9 +"9937",2013,4012,"AZ","04","012",20526,0.790168566695898,922,0.14035856961902,6.82654522355659,7.32909373624659,8.4448375292241,8.23076923076923,957.250081583814,88,9193,0,0,0,0,9 +"9938",2013,4013,"AZ","04","013",4018657,0.858951883676562,286582,0.109188965368281,12.5657799871003,13.1979493995609,13.9862840248342,6.62307692307692,300.869675476888,7071,2350187,0,0,0,0,9 +"9939",2013,4015,"AZ","04","015",203322,0.936794837745055,10209,0.156982520337199,9.23102496316902,9.87632188446336,10.883091054622,10.4307692307692,710.788185120834,765,107627,0,0,0,0,9 +"9940",2013,4017,"AZ","04","017",107164,0.515182337352096,7284,0.125312604979284,8.8934354408475,9.34844877409381,10.2617212809389,13.5538461538462,590.772855633132,341,57721,0,0,0,0,9 +"9941",2013,4019,"AZ","04","019",997374,0.869840200366161,89616,0.125965786154442,11.4032891544496,11.6459955011862,12.576873842475,6.80769230769231,382.107868772444,2192,573660,0,0,0,0,9 +"9942",2013,4021,"AZ","04","021",385574,0.844603111205631,22124,0.117170763588831,10.0044182711146,10.8424982208465,11.5071689278578,8.12307692307692,330.326866738945,716,216755,0,0,0,0,9 +"9943",2013,4023,"AZ","04","023",46902,0.969297684533709,3118,0.122361519764616,8.04494704961772,8.57281709516423,9.49341183187028,15.4538461538462,259.803523585289,64,24634,0,0,0,0,9 +"9944",2013,4025,"AZ","04","025",214539,0.950969287635348,10312,0.175427311584374,9.24106354461902,9.87914362914661,10.9759611835945,7.79230769230769,520.787515174974,592,113674,0,0,0,0,9 +"9945",2013,4027,"AZ","04","027",202447,0.925797863144428,17597,0.0951162526488414,9.77548371195176,10.006810994768,10.8612656575171,25.5769230769231,271.680779751846,291,107111,0,0,0,0,9 +"9946",2013,6001,"CA","06","001",1579508,0.541067851508191,110257,0.120073465914703,11.610569283357,12.36313622161,13.1416756884367,7.32307692307692,240.37623413223,2413,1003843,0,0,0,0,9 +"9947",2013,6005,"CA","06","005",36624,0.929172127566623,1705,0.17963630406291,7.44132038971762,8.29354951506035,9.15841529911126,10.4384615384615,393.53478566409,84,21345,0,0,0,0,9 +"9948",2013,6007,"CA","06","007",221649,0.892600462894035,26508,0.133318896092471,10.1852018532081,10.040201375852,11.0902785921033,10.4461538461538,381.809763095771,503,131741,0,0,0,0,9 +"9949",2013,6009,"CA","06","009",44658,0.94316807738815,2026,0.189036678758565,7.61381868480863,8.31605572036464,9.43084043234498,10.0769230769231,448.158914728682,111,24768,0,0,0,0,9 +"9950",2013,6011,"CA","06","011",21239,0.926361881444512,1473,0.117331324450304,7.29505641646263,7.83636976054512,8.65625923953924,19.1692307692308,367.524223187437,44,11972,0,0,0,0,9 +"9951",2013,6013,"CA","06","013",1093253,0.70070971678102,67553,0.128049957329182,11.1206677539492,11.9052040112742,12.721004825839,7.6,244.7877743377,1605,655670,0,0,0,0,9 +"9952",2013,6015,"CA","06","015",27821,0.810430969411596,1751,0.139822436289134,7.46794233228585,8.16961956172385,8.86347430617095,11.9846153846154,476.744186046512,82,17200,0,0,0,0,9 +"9953",2013,6017,"CA","06","017",181529,0.921847197968369,9973,0.167604074280143,9.20763672040187,9.92260366972836,10.8906467292427,8.60769230769231,302.249667525366,325,107527,0,0,0,0,9 +"9954",2013,6019,"CA","06","019",951143,0.788053951929415,79059,0.100662045559921,11.2779496881494,11.6550498320128,12.5063735150132,13.4230769230769,323.509323384473,1762,544652,0,0,0,0,9 +"9955",2013,6021,"CA","06","021",27784,0.915238986467031,1802,0.125035991937806,7.49665243816828,8.06369263426952,8.94154547524288,12.2461538461538,379.274877860633,59,15556,0,0,0,0,9 +"9956",2013,6023,"CA","06","023",134447,0.870082634792892,13250,0.146622832789129,9.49175283141437,9.66991480573138,10.6269214257009,8.21538461538461,513.48188483676,430,83742,0,0,0,0,9 +"9957",2013,6025,"CA","06","025",176301,0.907204156527757,14364,0.101213265948577,9.57248035534597,9.97710969240674,10.7742159053332,25.2846153846154,291.410889353989,291,99859,0,0,0,0,9 +"9958",2013,6027,"CA","06","027",18348,0.829899716590364,899,0.164813603662525,6.80128303447162,7.56320059235807,8.54188580400661,7.93076923076923,356.111645813282,37,10390,0,0,0,0,9 +"9959",2013,6029,"CA","06","029",862727,0.844376030888103,70891,0.0984054051861133,11.1688987651115,11.5875597271805,12.3756803899041,11.8846153846154,361.286750545641,1801,498496,0,0,0,0,9 +"9960",2013,6031,"CA","06","031",150237,0.833789279604891,13142,0.0902307687187577,9.48356848745781,9.93605154340939,10.5261049669055,13.5923076923077,285.73921388998,262,91692,0,0,0,0,9 +"9961",2013,6033,"CA","06","033",63811,0.901443324818605,3517,0.171647521587187,8.16536363247398,8.79860565085442,9.82271124250884,11.0538461538462,692.295162078514,255,36834,0,0,0,0,9 +"9962",2013,6035,"CA","06","035",32128,0.837026892430279,2586,0.122945717131474,7.8578675593318,8.48384321173468,8.81996090128606,10.7461538461538,388.55366611812,85,21876,0,0,0,0,9 +"9963",2013,6037,"CA","06","037",9987189,0.727911827842649,781946,0.110968461696279,13.5695409634347,14.1562159649208,14.953763343459,9.78461538461539,245.228830951071,15257,6221536,0,0,0,0,9 +"9964",2013,6039,"CA","06","039",151295,0.876770547605671,11326,0.109580620641793,9.33485624667375,9.83285047293669,10.7107220591338,12.7307692307692,329.810707234932,284,86110,0,0,0,0,9 +"9965",2013,6041,"CA","06","041",258441,0.881551301844522,10950,0.156376116792614,9.30109473524465,10.4453757017539,11.2429261273708,5.22307692307692,214.263040948048,324,151216,0,0,0,0,9 +"9966",2013,6043,"CA","06","043",17840,0.922757847533632,867,0.185482062780269,6.76503897678054,7.40913644392013,8.5173931714189,10.7692307692308,490.099980396001,50,10202,0,0,0,0,9 +"9967",2013,6045,"CA","06","045",87070,0.887090846445389,4777,0.161226599287929,8.47156801338996,9.22246655177402,10.1278703356853,8.46923076923077,433.886753576099,219,50474,0,0,0,0,9 +"9968",2013,6047,"CA","06","047",261888,0.83641862170088,21912,0.0947389723851417,9.99478971094291,10.371207325767,11.1833096691455,14.6769230769231,331.02004472509,487,147121,0,0,0,0,9 +"9969",2013,6049,"CA","06","049",9154,0.909220013109023,400,0.169980336464933,5.99146454710798,6.87109129461055,7.81802793853073,12.4461538461538,518.134715025907,26,5018,0,0,0,0,9 +"9970",2013,6051,"CA","06","051",14064,0.930176336746303,995,0.149530716723549,6.90274273715859,7.49108759353488,8.35655484545343,8.63076923076923,235.646958011997,22,9336,0,0,0,0,9 +"9971",2013,6053,"CA","06","053",426163,0.84531505550693,33055,0.108141720421529,10.4059281197677,10.9203654256217,11.687861482353,10.5230769230769,244.375792141952,617,252480,0,0,0,0,9 +"9972",2013,6055,"CA","06","055",139522,0.867497598944969,8953,0.134107882627829,9.09974395063416,9.78408445528835,10.6115479758284,7.02307692307692,262.585249030501,216,82259,0,0,0,0,9 +"9973",2013,6057,"CA","06","057",97969,0.957149710622748,4707,0.186395696597903,8.45680604140114,9.2240460190323,10.2561494549844,8.20769230769231,355.538260162026,201,56534,0,0,0,0,9 +"9974",2013,6059,"CA","06","059",3105262,0.757880333446904,229742,0.11484183943255,12.3447122191547,12.9667125729526,13.7676188400711,6.67692307692308,207.55395589019,3953,1904565,0,0,0,0,9 +"9975",2013,6061,"CA","06","061",365415,0.885185337219326,20306,0.130826594420043,9.91867168786117,10.7601344314828,11.5756561028713,7.81538461538462,263.130297165629,552,209782,0,0,0,0,9 +"9976",2013,6063,"CA","06","063",18901,0.933918840273001,932,0.199037087984763,6.83733281468559,7.43602781635185,8.58522560180806,14.0846153846154,564.652738565782,60,10626,0,0,0,0,9 +"9977",2013,6065,"CA","06","065",2286087,0.823698310694212,172070,0.104852964913409,12.0556566497472,12.5918009241774,13.391307485605,10.0153846153846,281.501401790084,3693,1311894,0,0,0,0,9 +"9978",2013,6067,"CA","06","067",1457283,0.67401390121205,106085,0.117363614342581,11.5719959385472,12.1560837631851,13.0162781547654,8.99230769230769,326.189522561725,2883,883842,0,0,0,0,9 +"9979",2013,6069,"CA","06","069",57320,0.905024424284717,3953,0.117480809490579,8.28223006329669,8.91126025457203,9.72621323696369,11.2384615384615,274.684703310984,93,33857,0,0,0,0,9 +"9980",2013,6071,"CA","06","071",2082101,0.790817064109762,174341,0.105089522554381,12.0687684304674,12.5056363509868,13.3358411653722,9.89230769230769,318.196160287372,3933,1236030,0,0,0,0,9 +"9981",2013,6073,"CA","06","073",3210788,0.786960085810711,274041,0.112635589767995,12.5210330092125,12.9594514295085,13.7947617832117,7.93846153846154,238.980536791678,4769,1995560,0,0,0,0,9 +"9982",2013,6075,"CA","06","075",839695,0.56213267912754,53190,0.121596532074146,10.8816256877364,11.8240359365971,12.5516922032669,5.53076923076923,234.633134455428,1389,591988,0,0,0,0,9 +"9983",2013,6077,"CA","06","077",701831,0.707460912954828,52226,0.107299335595036,10.8633357341591,11.4069091787863,12.2154881799399,12.4692307692308,352.658176472626,1425,404074,0,0,0,0,9 +"9984",2013,6079,"CA","06","079",275713,0.91226021261239,30423,0.142365430719625,10.3229541802801,10.2897358617172,11.2779623368507,6.90769230769231,274.999699125056,457,166182,0,0,0,0,9 +"9985",2013,6081,"CA","06","081",749131,0.650332184891561,41984,0.128128458173537,10.6450438723038,11.6069712093493,12.3560689937734,5.33076923076923,198.547299195008,919,462862,0,0,0,0,9 +"9986",2013,6083,"CA","06","083",434503,0.880398984586988,50161,0.110735714137762,10.8229931113122,10.8091621319471,11.7388252144782,7.3,231.130484016707,596,257863,0,0,0,0,9 +"9987",2013,6085,"CA","06","085",1866050,0.588442967766137,119602,0.110716218750837,11.6919248427669,12.5522653421733,13.2507477970593,6.54615384615385,175.148280413346,2029,1158447,0,0,0,0,9 +"9988",2013,6087,"CA","06","087",268836,0.899567022273803,28151,0.140922346709518,10.2453381569156,10.3817383303699,11.321462250259,10.4153846153846,266.864966327039,445,166751,0,0,0,0,9 +"9989",2013,6089,"CA","06","089",178447,0.91178893452958,11480,0.147164143975522,9.34836166987356,9.84256913756671,10.860785861709,11.9615384615385,528.857881641216,542,102485,0,0,0,0,9 +"9990",2013,6093,"CA","06","093",43550,0.899908151549943,2175,0.180229621125144,7.68478394352278,8.3513747067213,9.4026122596233,13.3230769230769,551.032157249774,134,24318,0,0,0,0,9 +"9991",2013,6095,"CA","06","095",423634,0.63117455161767,31436,0.131167470033095,10.3557090119861,10.8669862451748,11.7661247823976,9.18461538461538,314.230769230769,817,260000,0,0,0,0,9 +"9992",2013,6097,"CA","06","097",493870,0.897527689472938,32776,0.146686374956972,10.3974518192267,11.0008156836935,11.9206879321271,7.2,290.566604879515,870,299415,0,0,0,0,9 +"9993",2013,6099,"CA","06","099",523313,0.863936114715285,39139,0.108279366268371,10.5748746913135,11.0989996659442,11.9328653068327,13.1076923076923,373.461490286046,1133,303378,0,0,0,0,9 +"9994",2013,6101,"CA","06","101",94457,0.769090697354352,6726,0.112347417343341,8.81373589230022,9.34975442775886,10.1983562393023,14.7846153846154,342.825546032624,186,54255,0,0,0,0,9 +"9995",2013,6103,"CA","06","103",62878,0.929482489901078,3839,0.135246031998473,8.2529671950008,8.846209127361,9.77360663168161,11.7692307692308,484.021625293668,171,35329,0,0,0,0,9 +"9996",2013,6105,"CA","06","105",13427,0.910851269829448,577,0.201981082892679,6.3578422665081,7.18690102041163,8.24038511551633,12.1,656.032930280422,51,7774,0,0,0,0,9 +"9997",2013,6107,"CA","06","107",452259,0.898173391795409,35143,0.0946183492202477,10.4671807308916,10.9209982397672,11.7245226123841,14.5230769230769,350.354558813519,875,249747,0,0,0,0,9 +"9998",2013,6109,"CA","06","109",53975,0.931097730430755,3123,0.174951366373321,8.04654935728308,8.6202911494198,9.57421930476342,10.9,435.598232170678,137,31451,0,0,0,0,9 +"9999",2013,6111,"CA","06","111",837729,0.867556214479862,60598,0.122164805086132,11.0120171682125,11.5807429793289,12.4266809859112,7.96923076923077,245.14218246583,1225,499710,0,0,0,0,9 +"10000",2013,6113,"CA","06","113",206267,0.78338270300145,30297,0.102978178768295,10.3188039766947,10.0739052048273,11.0767433842,9.11538461538461,258.60981455784,328,126832,0,0,0,0,9 +"10001",2013,6115,"CA","06","115",73082,0.825866834514655,5742,0.111764866861881,8.65556286068101,9.06727798913434,9.95184905341401,13.2846153846154,443.589081606309,189,42607,0,0,0,0,9 +"10002",2013,8001,"CO","08","001",469995,0.885494526537516,31241,0.101628740731284,10.3494866136846,11.141238400911,11.8498904373201,7.98461538461538,306.580725280386,869,283449,0,0,0,0,9 +"10003",2013,8003,"CO","08","003",15794,0.899898695707231,1855,0.120235532480689,7.52563997504154,7.38398945797851,8.43879912398823,9.55384615384615,487.80487804878,46,9430,0,0,0,0,9 +"10004",2013,8005,"CO","08","005",609089,0.80125400393046,38094,0.122021576485538,10.5478120683985,11.3744102451135,12.1606672465745,6.48461538461538,248.105087358684,927,373632,0,0,0,0,9 +"10005",2013,8007,"CO","08","007",12225,0.94478527607362,506,0.201717791411043,6.22653666928747,7.08086789669078,8.18841130807903,8.64615384615385,424.868998725393,30,7061,0,0,0,0,9 +"10006",2013,8011,"CO","08","011",5759,0.873936447299878,409,0.132314637957979,6.0137151560428,6.76619171466035,6.98378996525813,7.61538461538461,377.358490566038,14,3710,0,0,0,0,9 +"10007",2013,8013,"CO","08","013",309538,0.924254857238853,33663,0.125848845699074,10.424154590333,10.6193253430158,11.4804642548148,5.4,202.356075512373,398,196683,0,0,0,0,9 +"10008",2013,8014,"CO","08","014",60158,0.905814687988297,3402,0.117889557498587,8.13211877295581,9.14931567013841,9.81629434083375,5.71538461538462,176.153253330397,64,36332,0,0,0,0,9 +"10009",2013,8015,"CO","08","015",18375,0.956843537414966,917,0.179210884353741,6.82110747225646,7.65207074611648,8.50309426703674,6.05384615384615,313.957660566918,35,11148,0,0,0,0,9 +"10010",2013,8019,"CO","08","019",9025,0.966980609418283,355,0.212742382271468,5.87211778947542,7.16239749735572,7.96866570046623,6.16923076923077,366.850091712523,22,5997,0,0,0,0,9 +"10011",2013,8021,"CO","08","021",8199,0.939626783754116,489,0.137089889010855,6.19236248947487,6.73459165997295,7.67275789664251,10.4923076923077,432.506259959026,19,4393,0,0,0,0,9 +"10012",2013,8029,"CO","08","029",30349,0.964282183926983,1417,0.162179972980988,7.25629723969068,8.03300949859667,8.99205997632796,8.77692307692308,376.350613087289,62,16474,0,0,0,0,9 +"10013",2013,8031,"CO","08","031",649270,0.820321283903461,43483,0.104880866203582,10.6801253360951,11.520258512337,12.2606081781782,6.50769230769231,301.386377335744,1295,429681,0,0,0,0,9 +"10014",2013,8035,"CO","08","035",306407,0.929410881605185,13171,0.114981054610371,9.48577272199905,10.8398161781468,11.4388913362439,5.23076923076923,170.457982107411,310,181863,0,0,0,0,9 +"10015",2013,8037,"CO","08","037",52814,0.959745522020676,2927,0.121331465141818,7.98173328669189,9.09425589295538,9.69953369561506,5.95384615384615,176.041341321446,62,35219,0,0,0,0,9 +"10016",2013,8039,"CO","08","039",23543,0.96767616701355,1069,0.182177292613516,6.97447891102505,7.93272102748195,8.90095787254506,5.79230769230769,281.864430083872,41,14546,0,0,0,0,9 +"10017",2013,8041,"CO","08","041",655178,0.86267548666164,54299,0.113337138914921,10.9022610895462,11.316813252707,12.186731811591,7.76923076923077,295.811847566344,1176,397550,0,0,0,0,9 +"10018",2013,8043,"CO","08","043",46360,0.926466781708369,2522,0.146462467644521,7.83280751652486,8.71226643213535,9.28163725385822,10.5,428.004732410049,123,28738,0,0,0,0,9 +"10019",2013,8045,"CO","08","045",56945,0.955219949073668,3274,0.127649486346475,8.09376775793108,9.0050367387903,9.73601519859238,7.32307692307692,228.577959370268,80,34999,0,0,0,0,9 +"10020",2013,8049,"CO","08","049",14320,0.971438547486034,735,0.191201117318436,6.59987049921284,7.54009032014532,8.39094946484199,5.76153846153846,231.50584026097,22,9503,0,0,0,0,9 +"10021",2013,8051,"CO","08","051",15597,0.957812399820478,2093,0.129447970763608,7.646353722446,7.62657020629066,8.44052810648075,5.37692307692308,146.57025600938,15,10234,0,0,0,0,9 +"10022",2013,8055,"CO","08","055",6465,0.908739365815932,305,0.193348801237432,5.72031177660741,6.25575004175337,7.46622755621548,13.4692307692308,655.084021646255,23,3511,0,0,0,0,9 +"10023",2013,8059,"CO","08","059",552242,0.937110904277473,33239,0.145693373557245,10.411479164281,11.1782775632377,12.0524843075591,6.18461538461538,284.162869579142,976,343465,0,0,0,0,9 +"10024",2013,8065,"CO","08","065",7276,0.955057724024189,488,0.141836173721825,6.19031540585315,6.94985645500077,7.64204440287326,7.06923076923077,215.796288303841,10,4634,0,0,0,0,9 +"10025",2013,8067,"CO","08","067",53432,0.906722563257973,3794,0.154476718071568,8.24117615049496,8.82482493917564,9.72112599494215,5.60769230769231,281.106672584702,95,33795,0,0,0,0,9 +"10026",2013,8069,"CO","08","069",316426,0.947656008039794,34809,0.129689090024208,10.4576312530157,10.5486779715502,11.4938445771574,5.71538461538462,236.387390639059,465,196711,0,0,0,0,9 +"10027",2013,8071,"CO","08","071",14404,0.926964732018884,869,0.161621771730075,6.76734312526539,7.29776828253138,8.25426877009018,10.9846153846154,537.963076170681,44,8179,0,0,0,0,9 +"10028",2013,8075,"CO","08","075",22182,0.927689117302317,1688,0.131683346857813,7.4312996751559,7.92660259918138,8.58447793822183,5.03076923076923,383.529922570374,53,13819,0,0,0,0,9 +"10029",2013,8077,"CO","08","077",147249,0.957582054886621,10135,0.137114683291567,9.2237500588861,9.71619365411562,10.6589050588222,8.60769230769231,367.849486299364,314,85361,0,0,0,0,9 +"10030",2013,8081,"CO","08","081",13129,0.966486404143499,785,0.147231319978673,6.66568371778241,7.32383056620232,8.24222989137223,6.8,344.651519019658,27,7834,0,0,0,0,9 +"10031",2013,8083,"CO","08","083",25575,0.846764418377322,1273,0.163479960899316,7.14913159855741,7.93880224815448,8.90652891759452,7.60769230769231,466.616345296096,68,14573,0,0,0,0,9 +"10032",2013,8085,"CO","08","085",40584,0.958505815099547,1836,0.148038635915632,7.51534457118044,8.40043463080604,9.32080782500215,9.28461538461539,330.436357052327,73,22092,0,0,0,0,9 +"10033",2013,8087,"CO","08","087",28217,0.936102349647376,1826,0.118262040613814,7.50988306115491,8.07682603129881,8.95918307420677,6.42307692307692,241.101452953493,38,15761,0,0,0,0,9 +"10034",2013,8089,"CO","08","089",18449,0.93143259797279,1114,0.139302943248957,7.01571242048723,7.59135704669855,8.52038808231276,9.68461538461538,519.42862850864,52,10011,0,0,0,0,9 +"10035",2013,8093,"CO","08","093",16190,0.965534280420012,609,0.229092032118592,6.4118182677099,7.5522372875608,8.53777982502463,5.95384615384615,327.592661924373,35,10684,0,0,0,0,9 +"10036",2013,8097,"CO","08","097",17474,0.964518713517226,856,0.168078287741788,6.75227037614174,7.82763954636642,8.60886037994206,6.39230769230769,145.860145860146,17,11655,0,0,0,0,9 +"10037",2013,8099,"CO","08","099",12319,0.964526341423817,746,0.133046513515707,6.61472560020376,7.22620901010067,8.11192806331074,6.19230769230769,343.488649940263,23,6696,0,0,0,0,9 +"10038",2013,8101,"CO","08","101",161096,0.922425137806029,10830,0.134342255549486,9.29007533999504,9.84596436629246,10.749377279111,9.69230769230769,425.337991797053,392,92162,0,0,0,0,9 +"10039",2013,8105,"CO","08","105",11674,0.949203357889327,686,0.14913482953572,6.53087762772588,7.1608459066643,8.09681747057232,11.4230769230769,349.119611414693,23,6588,0,0,0,0,9 +"10040",2013,8107,"CO","08","107",23610,0.975052943667937,1380,0.163151207115629,7.22983877815125,8.15651022607997,8.91637191488169,5.86153846153846,210.204471622396,33,15699,0,0,0,0,9 +"10041",2013,8117,"CO","08","117",28741,0.967294109460353,1949,0.141957482342298,7.57507169950756,8.4525479979227,9.13615547378681,4.98461538461538,204.778156996587,42,20510,0,0,0,0,9 +"10042",2013,8119,"CO","08","119",23372,0.966198870443265,975,0.212989902447373,6.88243747099785,7.82644313545601,8.88903257187474,7.69230769230769,385.356454720617,56,14532,0,0,0,0,9 +"10043",2013,8123,"CO","08","123",270105,0.946217211825031,19239,0.113711334481035,9.86469474781697,10.5086774543369,11.277886442243,6.46153846153846,271.539749531233,433,159461,0,0,0,0,9 +"10044",2013,8125,"CO","08","125",10139,0.976723542755696,539,0.124765755991715,6.289715570909,7.05272104923232,7.88795933659994,4.68461538461538,328.407224958949,18,5481,0,0,0,0,9 +"10045",2013,9001,"CT","09","001",940189,0.81191441295314,54676,0.12553433405411,10.9091801352725,11.728625381043,12.5532975784349,7.41538461538462,223.691503682002,1243,555676,0,0,0,0,9 +"10046",2013,9003,"CT","09","003",897837,0.784294922129518,57379,0.131487118485872,10.9574336617083,11.6209903206021,12.5184095249797,8.13076923076923,297.684818074278,1603,538489,0,0,0,0,9 +"10047",2013,9005,"CT","09","005",186866,0.956198559395503,9530,0.162057303094196,9.16219999664825,9.98617291915474,10.9354435235623,7.25384615384615,337.846896366805,378,111885,0,0,0,0,9 +"10048",2013,9007,"CT","09","007",165390,0.90848902593869,9478,0.150432311506137,9.15672860252753,9.89912806375868,10.8299464133259,6.82307692307692,302.447622481272,302,99852,0,0,0,0,9 +"10049",2013,9009,"CT","09","009",863035,0.802673124496689,59912,0.130528889326621,11.0006320979292,11.5711566365331,12.4922360654127,8.68461538461538,298.498839706123,1550,519265,0,0,0,0,9 +"10050",2013,9011,"CT","09","011",273093,0.859560662484941,20637,0.137568520613857,9.93484086019412,10.3804667955183,11.3082233207946,8.28461538461539,334.087724970363,558,167022,0,0,0,0,9 +"10051",2013,9013,"CT","09","013",151831,0.91496466466005,18184,0.131178744788614,9.80829736553238,9.72746610829065,10.7327814527694,7,236.528619963016,220,93012,0,0,0,0,9 +"10052",2013,9015,"CT","09","015",117551,0.942093219113406,8340,0.136902280712202,9.02881849535279,9.60008251961911,10.4925789214972,8.98461538461538,365.858728640918,264,72159,0,0,0,0,9 +"10053",2013,11001,"DC","11","001",651559,0.440770521165389,57027,0.105289006828238,10.9512801188743,11.3981653556645,12.3466082016325,8.42307692307692,342.307525986012,1504,439371,1,0,0,0,9 +"10054",2013,10001,"DE","10","001",169144,0.699752873291397,13414,0.1175861987419,9.50405421665968,9.90133523796798,10.840070987678,7.25384615384615,408.77337482078,402,98343,1,0,0,0,9 +"10055",2013,10003,"DE","10","003",548614,0.684370067114583,41438,0.124933013010969,10.6319536132204,11.1486358888806,12.0569575989265,6.41538461538462,363.271766554006,1221,336112,1,0,0,0,9 +"10056",2013,10005,"DE","10","005",206304,0.834908678455095,10821,0.155052737707461,9.28924396957165,9.95759687818316,10.9718124402658,6.75384615384615,463.776263087626,528,113848,1,0,0,0,9 +"10057",2013,12001,"FL","12","001",252585,0.721281944691886,43918,0.113553853158343,10.6900795378059,10.1670049979886,11.3398094072557,5.96923076923077,298.08348775968,489,164048,0,0,0,0,9 +"10058",2013,12003,"FL","12","003",27008,0.85311759478673,1836,0.121001184834123,7.51534457118044,8.18952211074809,8.92465630218707,7.73076923076923,435.182347532945,71,16315,0,0,0,0,9 +"10059",2013,12005,"FL","12","005",174704,0.845567359648319,12408,0.129069740818756,9.42609670485638,9.96288789581758,10.8754400232352,7.62307692307692,528.110799346239,559,105849,0,0,0,0,9 +"10060",2013,12007,"FL","12","007",26804,0.790031338606178,1772,0.133636770631249,7.47986413116503,8.09712193091871,8.82394232658524,6.58461538461538,599.131870147338,98,16357,0,0,0,0,9 +"10061",2013,12009,"FL","12","009",550478,0.855231271731114,31895,0.148378318479576,10.3702045366761,10.9613646484722,11.9769361724796,8.65384615384615,459.823739558902,1439,312946,0,0,0,0,9 +"10062",2013,12011,"FL","12","011",1836869,0.66035139141659,115149,0.124610410432099,11.6539822208863,12.4292561960444,13.2565445588703,7.07692307692308,302.330051088594,3382,1118645,0,0,0,0,9 +"10063",2013,12013,"FL","12","013",14582,0.836647922095734,872,0.124537100534906,6.77078942390898,7.57865685059476,8.20849175174038,8.22307692307692,351.195196556021,31,8827,0,0,0,0,9 +"10064",2013,12015,"FL","12","015",164801,0.916371866675566,6695,0.165502636513128,8.80911625812527,9.49889706183862,10.6215956023853,8.37692307692308,475.529767911201,377,79280,0,0,0,0,9 +"10065",2013,12017,"FL","12","017",138888,0.945589251771211,5734,0.161921836299752,8.65416864644332,9.35383447161491,10.4696532713353,10.0846153846154,647.038837102802,438,67693,0,0,0,0,9 +"10066",2013,12019,"FL","12","019",195732,0.845589888214497,12328,0.126514826395275,9.41962837699995,10.1654286505582,10.9882882318677,6.61538461538461,362.312604347751,421,116198,0,0,0,0,9 +"10067",2013,12021,"FL","12","021",339133,0.904771874161465,16853,0.12958927618368,9.73228396147602,10.4712982417848,11.3758334551509,7.37692307692308,263.073840703853,453,172195,0,0,0,0,9 +"10068",2013,12023,"FL","12","023",67444,0.792716920704585,4901,0.137758733171224,8.49719454490955,8.97613587330255,9.83370865792821,7.90769230769231,517.538815411156,207,39997,0,0,0,0,9 +"10069",2013,12027,"FL","12","027",34903,0.843652408102455,2623,0.114546027562101,7.87207397986687,8.32579052588609,8.96610085736724,8.58461538461538,346.144057011962,68,19645,0,0,0,0,9 +"10070",2013,12029,"FL","12","029",16084,0.900335737378761,870,0.151143994031335,6.76849321164863,7.46106551435428,8.31678912707152,8.87692307692308,726.838793664569,67,9218,0,0,0,0,9 +"10071",2013,12031,"FL","12","031",886277,0.632731076175959,67035,0.122137886913459,11.1129701500357,11.6446552356481,12.5544840401995,7.82307692307692,451.598633782696,2491,551596,0,0,0,0,9 +"10072",2013,12033,"FL","12","033",306879,0.714939764532601,28600,0.127688763323655,10.2611619968079,10.4149329841815,11.4186587405769,7.55384615384615,505.1640823401,921,182317,0,0,0,0,9 +"10073",2013,12035,"FL","12","035",99845,0.850087635835545,4744,0.152846912714708,8.46463594067756,9.25855894424666,10.225643512848,8.71538461538461,464.393314271459,242,52111,0,0,0,0,9 +"10074",2013,12037,"FL","12","037",11520,0.840190972222222,728,0.142795138888889,6.59030104819669,7.25841215059531,7.94129557090653,5.76923076923077,567.31700567317,41,7227,0,0,0,0,9 +"10075",2013,12039,"FL","12","039",46084,0.420102421664786,3081,0.141480774238347,8.03300949859667,8.68440111040014,9.58328228837879,9.55384615384615,552.05047318612,154,27896,0,0,0,0,9 +"10076",2013,12041,"FL","12","041",16972,0.929295309922225,1469,0.140407730379449,7.29233717617388,7.50218648660292,8.4084937744929,8.2,517.544767622399,50,9661,0,0,0,0,9 +"10077",2013,12043,"FL","12","043",12680,0.798107255520505,702,0.13186119873817,6.55393340402581,7.37838371299671,7.95050243480885,7.76153846153846,471.063257065949,35,7430,0,0,0,0,9 +"10078",2013,12045,"FL","12","045",15887,0.796689116888022,1016,0.137093220872411,6.92362862813843,7.72001794043224,8.17385745477362,7.04615384615385,385.542168674699,40,10375,0,0,0,0,9 +"10079",2013,12047,"FL","12","047",14344,0.63218070273285,1459,0.138106525376464,7.28550654852279,7.48211892355212,8.13651825211529,8.97692307692308,506.050605060506,46,9090,0,0,0,0,9 +"10080",2013,12049,"FL","12","049",27307,0.897352327242099,2148,0.101329329475959,7.67229245562876,8.09498875930377,8.82629423124132,8.73846153846154,344.827586206897,53,15370,0,0,0,0,9 +"10081",2013,12051,"FL","12","051",37802,0.831305221945929,2815,0.101529019628591,7.94271754057379,8.46400336290212,9.21243817005833,12.5384615384615,402.214545970757,85,21133,0,0,0,0,9 +"10082",2013,12053,"FL","12","053",173721,0.921218505534737,8870,0.142487091370646,9.09043007530363,9.79801591959389,10.7637580461321,9.37692307692308,516.273105156098,467,90456,0,0,0,0,9 +"10083",2013,12055,"FL","12","055",98118,0.868046637721927,4767,0.131688375221672,8.46947245520483,9.05742226555147,10.0620712491519,9.93846153846154,523.881545779356,239,45621,0,0,0,0,9 +"10084",2013,12057,"FL","12","057",1304474,0.76943120368823,95165,0.116419338369335,11.4633675061219,12.0955544072147,12.9260637814189,6.86923076923077,336.81067368461,2662,790355,0,0,0,0,9 +"10085",2013,12059,"FL","12","059",19604,0.912313813507447,1421,0.133289124668435,7.2591161280971,7.78572089653462,8.54286093816481,8.2,558.227413260048,65,11644,0,0,0,0,9 +"10086",2013,12061,"FL","12","061",141961,0.882453631631223,6608,0.146300744570692,8.79603631520081,9.50256212447,10.5285967626888,10.0384615384615,445.112112613365,320,71892,0,0,0,0,9 +"10087",2013,12063,"FL","12","063",48885,0.704653779277897,3405,0.134478879001739,8.13300021858361,8.83083536553755,9.4136076932856,7.84615384615385,429.227390696746,129,30054,0,0,0,0,9 +"10088",2013,12065,"FL","12","065",14212,0.62496481846327,807,0.163312693498452,6.69332366826995,7.47816969415979,8.28500889544988,8.07692307692308,412.938747419133,36,8718,0,0,0,0,9 +"10089",2013,12067,"FL","12","067",8819,0.832974260120195,793,0.107495180859508,6.67582322163485,7.21007962817079,7.53849499941346,5.43076923076923,321.888412017167,18,5592,0,0,0,0,9 +"10090",2013,12069,"FL","12","069",308088,0.858608579366934,15728,0.130660720313677,9.66319784238695,10.4482217279533,11.3297955815683,7.71538461538462,413.369332464389,666,161115,0,0,0,0,9 +"10091",2013,12071,"FL","12","071",660197,0.881857990872421,35303,0.13941293280642,10.471723225146,11.1767811745688,12.1045713401981,7.59230769230769,367.882549669813,1298,352830,0,0,0,0,9 +"10092",2013,12073,"FL","12","073",282006,0.638582157826429,49559,0.109107607639554,10.810919157977,10.3091193134236,11.4608950568758,6.36923076923077,269.107460256815,486,180597,0,0,0,0,9 +"10093",2013,12075,"FL","12","075",39449,0.884762604882253,2115,0.155694694415575,7.65681009148038,8.33110454805304,9.35045007996083,8.52307692307692,627.397878582713,139,22155,0,0,0,0,9 +"10094",2013,12077,"FL","12","077",8360,0.785645933014354,601,0.114832535885167,6.39859493453521,7.18765716411496,7.53155238140729,7.03846153846154,358.873138345595,20,5573,0,0,0,0,9 +"10095",2013,12079,"FL","12","079",18757,0.589593218531748,1352,0.143733006344298,7.20934025660291,7.73017479524622,8.54266598738927,8.12307692307692,478.850758180367,54,11277,0,0,0,0,9 +"10096",2013,12081,"FL","12","081",342024,0.875499964914743,17862,0.139665637499123,9.79043083024383,10.5096869904454,11.455878809591,7,418.789467609767,762,181953,0,0,0,0,9 +"10097",2013,12083,"FL","12","083",335196,0.83993544075705,18311,0.137045191470065,9.81525725114171,10.4288076224526,11.4215993382762,8.91538461538462,523.52130948911,916,174969,0,0,0,0,9 +"10098",2013,12085,"FL","12","085",151197,0.913113355423719,7360,0.147159004477602,8.90381521172292,9.58966682247465,10.5625607527623,7.51538461538462,363.013263946183,286,78785,0,0,0,0,9 +"10099",2013,12086,"FL","12","086",2609570,0.783368524316267,186083,0.113761654218894,12.1339480897206,12.833723513083,13.6148535290754,7.6,255.544005544006,4130,1616160,0,0,0,0,9 +"10100",2013,12087,"FL","12","087",75878,0.908537388966499,4080,0.17144626901078,8.31385226739821,9.17024727840974,10.0374063701019,5.05384615384615,461.009693552039,224,48589,0,0,0,0,9 +"10101",2013,12089,"FL","12","089",75428,0.916927400965159,4216,0.152463276236941,8.3466420902212,9.1140497116579,10.017619486581,7.03076923076923,449.540242933364,198,44045,0,0,0,0,9 +"10102",2013,12091,"FL","12","091",192969,0.844275505392058,15681,0.120656685788909,9.66020506738103,9.9954740331485,10.9455471262446,5.97692307692308,338.428132792753,399,117898,0,0,0,0,9 +"10103",2013,12093,"FL","12","093",39464,0.885617271437259,2563,0.119628015406446,7.84893372636407,8.47093980689877,9.20833836930551,9.1,577.752099906671,130,22501,0,0,0,0,9 +"10104",2013,12095,"FL","12","095",1227761,0.702723901475939,109201,0.1060825356075,11.6009454997602,12.0583032287334,12.8845324933382,7.08461538461538,267.81866316416,2088,779632,0,0,0,0,9 +"10105",2013,12097,"FL","12","097",299322,0.816334916912222,21498,0.10695839263402,9.97571518653301,10.6590459932175,11.4195044994762,8.26153846153846,311.020123508172,553,177802,0,0,0,0,9 +"10106",2013,12099,"FL","12","099",1376782,0.77099206700843,80644,0.124517171200669,11.2977996852496,12.0024865934315,12.8687760824034,7.46153846153846,320.605357508438,2443,761996,0,0,0,0,9 +"10107",2013,12101,"FL","12","101",474501,0.912014937797813,24881,0.130954413162459,10.1218597389714,10.9785241046755,11.8112729590715,8.01538461538462,484.006814206172,1270,262393,0,0,0,0,9 +"10108",2013,12103,"FL","12","103",928755,0.845427480874935,51209,0.151746154798628,10.8436705768299,11.5638752003481,12.5366166304541,6.92307692307692,456.387486268682,2472,541645,0,0,0,0,9 +"10109",2013,12105,"FL","12","105",622808,0.809515934284723,40228,0.123053974900772,10.6023185495644,11.2099808434525,12.0769031545373,8.58461538461538,422.714761697813,1459,345150,0,0,0,0,9 +"10110",2013,12107,"FL","12","107",72380,0.815612047526941,4395,0.150373031224095,8.38822281011928,8.91179955618953,9.91724251776846,10.8307692307692,603.112357598471,243,40291,0,0,0,0,9 +"10111",2013,12109,"FL","12","109",209579,0.908960344309306,11079,0.142676508619661,9.31280670352067,10.192306478525,11.0441530774352,5.67692307692308,269.263490018254,326,121071,0,0,0,0,9 +"10112",2013,12111,"FL","12","111",285437,0.763289272238708,16213,0.131051685660934,9.69356866855007,10.406139865613,11.2926403245045,10.3846153846154,405.736449933653,636,156752,0,0,0,0,9 +"10113",2013,12113,"FL","12","113",160519,0.894355185367464,10384,0.125823111282776,9.24802143894387,9.95460833204384,10.7575836808172,6.67692307692308,367.572190770985,361,98212,0,0,0,0,9 +"10114",2013,12115,"FL","12","115",390153,0.927105520142098,16981,0.151640510261359,9.7398503509463,10.4900790590765,11.5212606307601,7.27692307692308,400.166864947546,777,194169,0,0,0,0,9 +"10115",2013,12117,"FL","12","117",435640,0.823468919291158,31163,0.127003948214122,10.3469867726289,10.9750369216545,11.8478178829062,6.96153846153846,269.609472525687,730,270762,0,0,0,0,9 +"10116",2013,12119,"FL","12","119",106980,0.897130304729856,2929,0.172181716208637,7.98241634682773,8.91018077801329,9.93105408025393,9.66153846153846,450.123080529832,192,42655,0,0,0,0,9 +"10117",2013,12121,"FL","12","121",43578,0.846459222543485,2747,0.133691312129974,7.91826468609527,8.50895938648913,9.32936707839782,7.22307692307692,470.963879465177,118,25055,0,0,0,0,9 +"10118",2013,12123,"FL","12","123",22880,0.767001748251748,1586,0.134571678321678,7.36897040219479,7.9912539298402,8.61377528926248,8.16153846153846,472.463154925605,67,14181,0,0,0,0,9 +"10119",2013,12125,"FL","12","125",15165,0.760105506099571,1011,0.149620837454665,6.91869521902047,7.62900388965296,7.99193051985248,6.59230769230769,1191.65839126117,120,10070,0,0,0,0,9 +"10120",2013,12127,"FL","12","127",500702,0.859357462123179,32321,0.148439590814496,10.3834724527504,10.8881096037865,11.8786235774066,8.55384615384615,522.738415629949,1482,283507,0,0,0,0,9 +"10121",2013,12129,"FL","12","129",31009,0.830984552871747,1850,0.130703989164436,7.52294091807237,8.43901541035221,9.04038207416563,6.23076923076923,380.647100070119,76,19966,0,0,0,0,9 +"10122",2013,12131,"FL","12","131",59232,0.912158968125338,3227,0.146204754186926,8.07930819205196,8.90490157793514,9.74946186489702,6.36153846153846,450.034940600978,161,35775,0,0,0,0,9 +"10123",2013,12133,"FL","12","133",24506,0.817146821186648,1610,0.130580266057292,7.38398945797851,8.10470346837111,8.75573753930647,8.04615384615385,441.323971915747,66,14955,0,0,0,0,9 +"10124",2013,13001,"GA","13","001",18367,0.787499319431589,1113,0.132574726411499,7.01481435127554,7.72312009226633,8.55217416031148,10.6615384615385,624.645088018171,66,10566,0,0,0,0,9 +"10125",2013,13003,"GA","13","003",8263,0.783371656783251,598,0.116664649642987,6.39359075395063,7.00397413672268,7.76344638872736,9.28461538461539,687.070580886946,33,4803,0,0,0,0,9 +"10126",2013,13005,"GA","13","005",11174,0.824771791659209,681,0.131286916055128,6.52356230614951,7.32843735289516,8.07464907506665,8.37692307692308,738.916256157635,48,6496,0,0,0,0,9 +"10127",2013,13009,"GA","13","009",46191,0.555627719685653,6169,0.121322335519906,8.72729202920964,8.46926265765869,9.51517450324553,10.1,392.758953118863,110,28007,0,0,0,0,9 +"10128",2013,13011,"GA","13","011",18216,0.953667105841019,1106,0.130873956960913,7.00850518208228,7.83834331555712,8.57546209954021,7.81538461538462,367.57948906451,40,10882,0,0,0,0,9 +"10129",2013,13013,"GA","13","013",71233,0.836171437395589,4213,0.107057122401134,8.34593026197902,9.24917639576138,9.97538952182521,7.33076923076923,376.638968009228,160,42481,0,0,0,0,9 +"10130",2013,13015,"GA","13","015",100923,0.871882524300704,6496,0.119160151798896,8.77894188184151,9.55286568031047,10.3252852219319,8.61538461538461,439.320869392878,266,60548,0,0,0,0,9 +"10131",2013,13017,"GA","13","017",17461,0.631464406391387,1096,0.131836664566749,6.99942246750796,7.64204440287326,8.53856321715243,12.4,695.144066089059,69,9926,0,0,0,0,9 +"10132",2013,13019,"GA","13","019",19059,0.875124613043706,1187,0.124088357206569,7.07918439460967,7.79975331828725,8.62766064444221,9.48461538461538,479.031091829356,53,11064,0,0,0,0,9 +"10133",2013,13021,"GA","13","021",155138,0.431370779564001,11885,0.124173316660006,9.38303237979429,9.82184356349562,10.7759099879536,9.22307692307692,636.433307787145,573,90033,0,0,0,0,9 +"10134",2013,13023,"GA","13","023",12742,0.716292575733794,1078,0.11081462878669,6.98286275146894,7.26612877955645,8.21202580462344,13.9,577.383467117307,41,7101,0,0,0,0,9 +"10135",2013,13025,"GA","13","025",18253,0.958965649482277,1071,0.132033090450885,6.97634807044775,7.78696700261487,8.59341321732765,10.5769230769231,711.077844311377,76,10688,0,0,0,0,9 +"10136",2013,13027,"GA","13","027",15648,0.626469836400818,940,0.14155163599182,6.84587987526405,7.4899708988348,8.44354665124794,8.26923076923077,570.023471554711,51,8947,0,0,0,0,9 +"10137",2013,13029,"GA","13","029",33082,0.815488785442234,1950,0.106553412731999,7.57558465155779,8.52078672692637,9.20773698610607,7.37692307692308,405.252898327691,79,19494,0,0,0,0,9 +"10138",2013,13031,"GA","13","031",71830,0.682277599888626,13399,0.094918557705694,9.50293535628861,8.905037290767,10.0183329442052,8.63076923076923,360.862415494244,158,43784,0,0,0,0,9 +"10139",2013,13033,"GA","13","033",22832,0.495707778556412,1559,0.134241415557113,7.35179986905778,7.87169266432365,8.84419212624497,11.8923076923077,571.210967250571,75,13130,0,0,0,0,9 +"10140",2013,13035,"GA","13","035",23216,0.70684011026878,1681,0.124138525155065,7.42714413340862,8.06022424044096,8.74241458252541,9.23076923076923,614.513567631016,89,14483,0,0,0,0,9 +"10141",2013,13037,"GA","13","037",6598,0.364504395271294,487,0.126098817823583,6.18826412308259,6.93147180559945,7.29165620917446,8.08461538461538,458.190148911798,20,4365,0,0,0,0,9 +"10142",2013,13039,"GA","13","039",51478,0.767842573526555,5290,0.104161000815883,8.57357352485234,8.69751274553952,9.62066034281053,7.69230769230769,348.766518414232,109,31253,0,0,0,0,9 +"10143",2013,13043,"GA","13","043",10950,0.736529680365297,681,0.131780821917808,6.52356230614951,7.19743535409659,8.03333401588006,8.10769230769231,494.967827091239,30,6061,0,0,0,0,9 +"10144",2013,13045,"GA","13","045",112290,0.789723038560869,10829,0.110437260664351,9.28998299962838,9.57275879054198,10.4350271528992,9.55384615384615,475.73310922352,317,66634,0,0,0,0,9 +"10145",2013,13047,"GA","13","047",65258,0.951929265377425,3848,0.123846884673144,8.2553088117856,9.11745724449613,9.88440666472334,6.67692307692308,404.517993170475,154,38070,0,0,0,0,9 +"10146",2013,13049,"GA","13","049",13103,0.666106998397314,1047,0.11058536213081,6.95368421087054,7.57814547241947,8.01035958891978,8.4,431.867257642914,38,8799,0,0,0,0,9 +"10147",2013,13051,"GA","13","051",277790,0.551772921991432,24856,0.116364879945282,10.1208544510729,10.4082850435638,11.3809585621787,8.20769230769231,421.213187844656,718,170460,0,0,0,0,9 +"10148",2013,13053,"GA","13","053",12271,0.742645261184907,2866,0.027789096243175,7.96067260838812,7.04228617193974,7.7510451179718,10.9,205.985702168908,17,8253,0,0,0,0,9 +"10149",2013,13055,"GA","13","055",25062,0.879658447051313,1598,0.132870481206608,7.37650812632622,8.08856180527623,8.84664081310049,8.90769230769231,511.646694493066,76,14854,0,0,0,0,9 +"10150",2013,13057,"GA","13","057",224372,0.90717647478295,12577,0.115018808050915,9.43962502804716,10.4552439649041,11.1329234042986,6.1,284.978515291621,384,134747,0,0,0,0,9 +"10151",2013,13059,"GA","13","059",120927,0.665542021219413,25211,0.0835958884285561,10.1350356861941,9.46343099965834,10.6094769181094,7.77692307692308,264.613904257878,209,78983,0,0,0,0,9 +"10152",2013,13063,"GA","13","063",264133,0.229842541446923,20534,0.103474386010078,9.92983732785891,10.5401701961149,11.3668702615031,10.7076923076923,377.206315724168,608,161185,0,0,0,0,9 +"10153",2013,13065,"GA","13","065",6756,0.708111308466548,508,0.133066903493191,6.23048144757848,6.73815249459596,7.60190195987517,9.07692307692308,586.734693877551,23,3920,0,0,0,0,9 +"10154",2013,13067,"GA","13","067",716265,0.664473344362771,47632,0.114650304007595,10.7712600832556,11.5914408530386,12.3523956258419,6.63076923076923,253.931463115057,1135,446971,0,0,0,0,9 +"10155",2013,13069,"GA","13","069",43084,0.701931111317426,3380,0.113058211865194,8.12563098847706,8.6628507638386,9.40763263969996,9.86153846153846,393.807188911625,102,25901,0,0,0,0,9 +"10156",2013,13071,"GA","13","071",46139,0.73657859944949,3124,0.113006350376038,8.04686951095958,8.66888370465667,9.48432911729596,8.7,537.470458184036,141,26234,0,0,0,0,9 +"10157",2013,13073,"GA","13","073",136232,0.778348699277703,8423,0.120815961007693,9.03872133831536,9.84977027003014,10.6468286734153,6.42307692307692,250.286658364876,203,81107,0,0,0,0,9 +"10158",2013,13075,"GA","13","075",17055,0.708120785693345,1017,0.119847552037526,6.92461239604856,7.65775527113487,8.5131851700187,8.46923076923077,588.782150604276,57,9681,0,0,0,0,9 +"10159",2013,13077,"GA","13","077",132980,0.790321852910212,7656,0.116987516919838,8.94324493313279,9.86552604624901,10.611005970395,6.93846153846154,330.549317453509,262,79262,0,0,0,0,9 +"10160",2013,13079,"GA","13","079",12474,0.76984126984127,784,0.144941478274812,6.66440902035041,7.31521838975297,8.22657347497711,8.79230769230769,382.737231094101,29,7577,0,0,0,0,9 +"10161",2013,13081,"GA","13","081",23304,0.540808444902163,1561,0.138989014761414,7.35308192051543,7.89058253465654,8.86333283343959,11.0846153846154,636.465743167353,85,13355,0,0,0,0,9 +"10162",2013,13083,"GA","13","083",16466,0.969330742135309,1490,0.141685898214503,7.3065313989395,7.55903825544338,8.50248556254396,7.07692307692308,550.964187327824,54,9801,0,0,0,0,9 +"10163",2013,13085,"GA","13","085",22730,0.978706555213374,1217,0.14069511658601,7.10414409298753,7.97177612288063,8.80926561216931,7.32307692307692,481.81886621998,64,13283,0,0,0,0,9 +"10164",2013,13087,"GA","13","087",27401,0.560089047844969,1925,0.123024707127477,7.56268124672188,8.12740456269308,8.98732181285012,9.41538461538462,566.770680761638,89,15703,0,0,0,0,9 +"10165",2013,13089,"GA","13","089",718026,0.369103625773997,50080,0.112912345792492,10.821377005774,11.5888952742576,12.3917676724366,8.36923076923077,305.120634440492,1392,456213,0,0,0,0,9 +"10166",2013,13091,"GA","13","091",21424,0.685539581777446,1555,0.126773711725168,7.34923082461333,7.94873845481361,8.68963274835574,11.3153846153846,371.689639151309,48,12914,0,0,0,0,9 +"10167",2013,13093,"GA","13","093",14373,0.484380435538858,923,0.143672163083559,6.82762923450285,7.56631101477246,8.24301946898925,11.4307692307692,356.268091739034,32,8982,0,0,0,0,9 +"10168",2013,13095,"GA","13","095",93441,0.29163857407348,8232,0.122280369430978,9.01578427751389,9.27565983809682,10.2885798708364,10.2692307692308,568.087500230555,308,54217,0,0,0,0,9 +"10169",2013,13097,"GA","13","097",136081,0.541508366340635,8837,0.110206421175623,9.086702731518,9.9547033439204,10.6786063484612,8.54615384615385,368.474176405492,303,82231,0,0,0,0,9 +"10170",2013,13099,"GA","13","099",10543,0.486768471971925,677,0.127952195769705,6.51767127291227,7.12125245324454,8.01334318138667,9.07692307692308,817.960320222764,47,5746,0,0,0,0,9 +"10171",2013,13103,"GA","13","103",54456,0.844002497429117,3431,0.114165564859703,8.14060704285845,8.97221007835365,9.71063069382679,7.10769230769231,438.233581563544,143,32631,0,0,0,0,9 +"10172",2013,13105,"GA","13","105",19492,0.684691155345783,1264,0.138672275805459,7.1420365747068,7.68017564043659,8.65207367361006,10.7538461538462,626.903098692459,70,11166,0,0,0,0,9 +"10173",2013,13107,"GA","13","107",22626,0.637761866878812,1561,0.124016618050031,7.35308192051543,7.89394513823596,8.77909581088053,12.4461538461538,702.022128958413,92,13105,0,0,0,0,9 +"10174",2013,13109,"GA","13","109",10792,0.666975537435137,725,0.114714603409933,6.58617165485467,7.16317239084664,8.04654935728308,7.54615384615385,450.958286358512,28,6209,0,0,0,0,9 +"10175",2013,13111,"GA","13","111",23835,0.983469687434445,1081,0.180071323683658,6.98564181763921,7.7848892956551,8.82305893430165,8.93076923076923,628.835517842261,83,13199,0,0,0,0,9 +"10176",2013,13113,"GA","13","113",108103,0.727500624404503,6171,0.149450061515407,8.72761617832107,9.44525437888931,10.3826676984666,6.65384615384615,299.642362341721,186,62074,0,0,0,0,9 +"10177",2013,13115,"GA","13","115",95901,0.820398118893442,6943,0.123627490849939,8.84548923675327,9.39091039573133,10.2428840806746,9.44615384615385,492.878628637698,272,55186,0,0,0,0,9 +"10178",2013,13117,"GA","13","117",193875,0.875110251450677,8315,0.101209542230819,9.02581639162703,10.4099436437842,10.9482066788589,5.83846153846154,176.634535158261,199,112662,0,0,0,0,9 +"10179",2013,13119,"GA","13","119",22056,0.890097932535365,1519,0.133977149075082,7.32580750259577,7.85321638815607,8.74448811385292,9.70769230769231,693.77990430622,87,12540,0,0,0,0,9 +"10180",2013,13121,"GA","13","121",981844,0.472376467137346,74019,0.106390628246442,11.2120770959867,11.9003487945776,12.6731751957125,8.01538461538462,325.503086667201,2030,623650,0,0,0,0,9 +"10181",2013,13123,"GA","13","123",28721,0.971240555690958,1477,0.155043348072839,7.29776828253138,8.12976444579417,8.97626225560919,8.93076923076923,464.425041798254,75,16149,0,0,0,0,9 +"10182",2013,13127,"GA","13","127",81533,0.703187666343689,5078,0.135319441207854,8.53267276226462,9.17440226517055,10.1253102318829,8.44615384615385,507.495148943429,238,46897,0,0,0,0,9 +"10183",2013,13129,"GA","13","129",55767,0.933724245521545,3609,0.116000502089049,8.19118600464279,8.94728586934913,9.71147923015263,8.79230769230769,438.489646772229,144,32840,0,0,0,0,9 +"10184",2013,13131,"GA","13","131",25120,0.68093152866242,1537,0.129299363057325,7.3375877435386,7.99260665240021,8.89590356221558,7.66923076923077,592.83024131678,85,14338,0,0,0,0,9 +"10185",2013,13133,"GA","13","133",16241,0.610430392217228,797,0.163228865217659,6.68085467879022,7.38150189450671,8.41493895737748,9.84615384615385,609.756097560976,53,8692,0,0,0,0,9 +"10186",2013,13135,"GA","13","135",853496,0.601800125601057,54425,0.104545305426153,10.9045788861027,11.8012348406262,12.4966019108787,6.83846153846154,225.093757272627,1180,524226,0,0,0,0,9 +"10187",2013,13137,"GA","13","137",43146,0.921684513048718,2823,0.124692903165995,7.94555542825349,8.60557030203365,9.48774481001683,7.96153846153846,365.37836960052,90,24632,0,0,0,0,9 +"10188",2013,13139,"GA","13","139",186459,0.884516167093034,12461,0.108104194487796,9.43035904594287,10.1406523452126,10.8855847513647,6.80769230769231,327.411403590364,352,107510,0,0,0,0,9 +"10189",2013,13141,"GA","13","141",8952,0.251117068811439,621,0.158958891867739,6.43133108193348,6.95081476844258,7.73105314400713,14.6076923076923,413.000538696355,23,5569,0,0,0,0,9 +"10190",2013,13143,"GA","13","143",28357,0.939697429206192,1707,0.123426314490249,7.44249272279444,8.21500643276157,9.03670101556506,9.20769230769231,537.798692171362,88,16363,0,0,0,0,9 +"10191",2013,13145,"GA","13","145",32532,0.809602852575925,1849,0.151543096028526,7.52240023138712,8.37539918579835,9.18235233543601,6.48461538461538,371.574547143521,72,19377,0,0,0,0,9 +"10192",2013,13147,"GA","13","147",25458,0.796763296409773,1520,0.140898735171655,7.32646561384032,7.97349996402463,8.87780039388258,9.13076923076923,363.967242948135,52,14287,0,0,0,0,9 +"10193",2013,13149,"GA","13","149",11564,0.88031822898651,734,0.138014527845036,6.59850902861452,7.3065313989395,8.13358741766097,9.35384615384615,456.016475433951,31,6798,0,0,0,0,9 +"10194",2013,13151,"GA","13","151",210089,0.555583586004027,13596,0.10754489763862,9.51753091081601,10.3848946642195,11.1055134628933,8.4,348.562082162196,439,125946,0,0,0,0,9 +"10195",2013,13153,"GA","13","153",147352,0.654208968999403,10504,0.110198707856018,9.25951141598263,9.85129912079054,10.7298535768823,7.45384615384615,351.371135762149,312,88795,0,0,0,0,9 +"10196",2013,13155,"GA","13","155",9345,0.717602996254682,627,0.115034777956126,6.44094654063292,7.10332206252611,7.83122021460429,10.5461538461538,550.155877498625,30,5453,0,0,0,0,9 +"10197",2013,13157,"GA","13","157",61286,0.903746369480795,3550,0.118509937016611,8.17470288246946,9.08489052125877,9.79834923441282,6.86153846153846,448.031167385557,161,35935,0,0,0,0,9 +"10198",2013,13159,"GA","13","159",13594,0.767250257466529,770,0.143372075915845,6.64639051484773,7.45124168498768,8.31287139434261,8.22307692307692,486.648365360619,39,8014,0,0,0,0,9 +"10199",2013,13161,"GA","13","161",15041,0.82880127651087,918,0.120936107971544,6.82219739062049,7.56060116276856,8.36753241686183,9.86923076923077,577.013659915214,49,8492,0,0,0,0,9 +"10200",2013,13163,"GA","13","163",16245,0.443705755617113,1077,0.136657433056325,6.98193467715639,7.54908271081229,8.46041117731725,13.9,740.02574002574,69,9324,0,0,0,0,9 +"10201",2013,13165,"GA","13","165",9196,0.548064375815572,696,0.122770769899957,6.54534966033442,7.07665381544395,7.79770203551669,12.2461538461538,467.541809027153,26,5561,0,0,0,0,9 +"10202",2013,13167,"GA","13","167",9909,0.646886668685034,597,0.129377333737007,6.3919171133926,7.23417717974985,7.77611547709874,9.75384615384615,375.32637075718,23,6128,0,0,0,0,9 +"10203",2013,13169,"GA","13","169",28563,0.740468438189266,1658,0.132654132969226,7.41336733569524,8.24038511551633,9.05427118632629,7.22307692307692,374.622356495468,62,16550,0,0,0,0,9 +"10204",2013,13171,"GA","13","171",17926,0.672040611402432,1546,0.130927144929153,7.34342622914737,7.63336964967958,8.58335539366991,11.2230769230769,582.467721580429,60,10301,0,0,0,0,9 +"10205",2013,13173,"GA","13","173",10405,0.738395002402691,735,0.110331571359923,6.59987049921284,7.20785987143248,8.03365842788615,8.50769230769231,405.426477467644,26,6413,0,0,0,0,9 +"10206",2013,13175,"GA","13","175",47727,0.615542565005133,3065,0.127265489136128,8.02780284837031,8.68609172787805,9.56345899971214,10.7153846153846,575.724239090576,157,27270,0,0,0,0,9 +"10207",2013,13177,"GA","13","177",29055,0.763138874548271,1765,0.122182068490793,7.4759059693674,8.38867776918081,9.08057331391712,6.82307692307692,409.30021033483,72,17591,0,0,0,0,9 +"10208",2013,13179,"GA","13","179",62438,0.516752618597649,6817,0.0872705724078286,8.82717477136278,8.83302530728436,9.84712881886674,8.43076923076923,319.439830313562,125,39131,0,0,0,0,9 +"10209",2013,13181,"GA","13","181",7734,0.668606154641841,453,0.168606154641841,6.11589212548303,6.71174039505618,7.74066440191724,9.96153846153846,633.602796591654,29,4577,0,0,0,0,9 +"10210",2013,13183,"GA","13","183",16510,0.700363416111448,1157,0.0993943064809207,7.05358572719368,7.76089319585102,8.49923286603924,8.07692307692308,337.000693824958,34,10089,0,0,0,0,9 +"10211",2013,13185,"GA","13","185",112985,0.59934504580254,15997,0.096658848519715,9.6801564836416,9.46660917372222,10.4542355662995,7.96923076923077,407.656859269763,276,67704,0,0,0,0,9 +"10212",2013,13187,"GA","13","187",30872,0.962425498833895,3908,0.129340502720912,8.27078101316267,8.10046489102936,9.13064760306693,7.30769230769231,357.839947950553,66,18444,0,0,0,0,9 +"10213",2013,13189,"GA","13","189",21506,0.576211289872594,1388,0.132102669022598,7.23561914106675,7.81802793853073,8.77570388656774,11.2153846153846,508.697079094191,62,12188,0,0,0,0,9 +"10214",2013,13191,"GA","13","191",14030,0.633000712758375,807,0.16664290805417,6.69332366826995,7.35627987655075,8.33997857199043,8.91538461538462,480.709971650438,39,8113,0,0,0,0,9 +"10215",2013,13193,"GA","13","193",13973,0.37186001574465,1142,0.143777284763472,7.04053639021596,7.42714413340862,8.21878715560148,12.6769230769231,610.100553609762,54,8851,0,0,0,0,9 +"10216",2013,13195,"GA","13","195",28213,0.891043136142913,1711,0.137312586396342,7.44483327389219,8.19973896063079,9.04629085996968,7.53076923076923,524.127959515634,87,16599,0,0,0,0,9 +"10217",2013,13197,"GA","13","197",8581,0.647826593637105,505,0.147884861904207,6.22455842927536,6.89871453432999,7.83399634170946,8.78461538461539,474.589677674511,24,5057,0,0,0,0,9 +"10218",2013,13199,"GA","13","199",21214,0.588007919298576,1258,0.14443292165551,7.13727843726039,7.75619534394812,8.73841489716775,10.6923076923077,634.266886326194,77,12140,0,0,0,0,9 +"10219",2013,13201,"GA","13","201",5900,0.703220338983051,369,0.134067796610169,5.91079664404053,6.5206211275587,7.40853056689463,7.18461538461538,907.715582450832,30,3305,0,0,0,0,9 +"10220",2013,13205,"GA","13","205",22990,0.500782949108308,1555,0.124532405393649,7.34923082461333,8.01102337918644,8.73278832497312,8.51538461538462,490.483162518302,67,13660,0,0,0,0,9 +"10221",2013,13207,"GA","13","207",26585,0.751514011660711,1674,0.151476396464172,7.42297125104942,8.09162741160107,8.97714648480847,7.97692307692308,507.049220875587,82,16172,0,0,0,0,9 +"10222",2013,13209,"GA","13","209",8954,0.728389546571365,718,0.131672995309359,6.57646956904822,7.04053639021596,7.82404601085629,11.3384615384615,335.570469798658,18,5364,0,0,0,0,9 +"10223",2013,13211,"GA","13","211",17681,0.747921497652848,970,0.144109496069227,6.87729607149743,7.69848278788095,8.5569906612903,7.98461538461538,496.721637194516,50,10066,0,0,0,0,9 +"10224",2013,13213,"GA","13","213",39173,0.968371071911776,2620,0.116636458785388,7.87092959675514,8.59969441292798,9.37143829231851,11.1769230769231,597.155990892297,139,23277,0,0,0,0,9 +"10225",2013,13215,"GA","13","215",203370,0.4877808919703,17480,0.11002114372818,9.76881264920953,10.1439600859721,11.0335177556492,9.28461538461539,449.152679539679,555,123566,0,0,0,0,9 +"10226",2013,13217,"GA","13","217",102060,0.550695669214188,6647,0.107809131883206,8.80192090404158,9.59675856716411,10.357075935826,9.64615384615385,442.783305554153,263,59397,0,0,0,0,9 +"10227",2013,13219,"GA","13","219",34084,0.90370848491961,1885,0.134667292571294,7.54168309988211,8.48052920704465,9.2308290384035,5.57692307692308,183.411453026289,36,19628,0,0,0,0,9 +"10228",2013,13221,"GA","13","221",14415,0.804717308359348,849,0.137842525147416,6.74405918631135,7.50494206839617,8.36497397843873,7.52307692307692,363.380611886063,31,8531,0,0,0,0,9 +"10229",2013,13223,"GA","13","223",146775,0.801430761369443,8858,0.0990495656617271,9.08907628448314,10.0942318714037,10.7263463396177,7.15384615384615,288.67053070096,255,88336,0,0,0,0,9 +"10230",2013,13225,"GA","13","225",27411,0.528765823939294,2818,0.123855386523658,7.94378269245863,7.99631723179675,9.02111503886543,10.5923076923077,566.94286960314,91,16051,0,0,0,0,9 +"10231",2013,13227,"GA","13","227",29389,0.974344142366191,1597,0.151961618292558,7.37588214821501,8.1870210673435,9.06438931649188,7.92307692307692,442.582320311578,75,16946,0,0,0,0,9 +"10232",2013,13229,"GA","13","229",19015,0.893189587168025,1072,0.123113331580331,6.97728134163075,7.83991936001258,8.61304867705976,8.46153846153846,658.199684805785,71,10787,0,0,0,0,9 +"10233",2013,13231,"GA","13","231",17784,0.884615384615385,966,0.126124606387764,6.87316383421252,7.82644313545601,8.56216655705897,8.40769230769231,429.100838697094,44,10254,0,0,0,0,9 +"10234",2013,13233,"GA","13","233",40972,0.846651371668456,2679,0.119227765303134,7.89319886954461,8.51177855871474,9.37041631982282,8.83846153846154,652.146114828865,153,23461,0,0,0,0,9 +"10235",2013,13235,"GA","13","235",11578,0.664190706512351,693,0.140784245983762,6.5410299991899,7.29776828253138,8.33278946841796,8.80769230769231,492.753623188406,34,6900,0,0,0,0,9 +"10236",2013,13237,"GA","13","237",21280,0.712265037593985,1120,0.155075187969925,7.02108396428914,7.72797554210556,8.73149779406324,10.2538461538462,556.663343303423,67,12036,0,0,0,0,9 +"10237",2013,13241,"GA","13","241",16184,0.965336134453782,820,0.15428818586258,6.7093043402583,7.52402141520612,8.40110871239544,9.84615384615385,577.641862045532,51,8829,0,0,0,0,9 +"10238",2013,13243,"GA","13","243",7202,0.37239655651208,462,0.152318800333241,6.13556489108174,6.51323011091231,7.65207074611648,10.2615384615385,577.599196383727,23,3982,0,0,0,0,9 +"10239",2013,13245,"GA","13","245",201457,0.401986528142482,18110,0.120745369979698,9.80421955087746,10.0347350891458,11.0527454258731,9.76923076923077,518.029373973293,637,122966,0,0,0,0,9 +"10240",2013,13247,"GA","13","247",86522,0.464136289036314,5823,0.127562931971059,8.66957087183712,9.3410176956178,10.2181522963178,9.08461538461538,359.537459916432,185,51455,0,0,0,0,9 +"10241",2013,13251,"GA","13","251",14145,0.562177447861435,1008,0.147048427006009,6.91572344863131,7.35500192110526,8.35279013512463,12.4923076923077,470.219435736677,39,8294,0,0,0,0,9 +"10242",2013,13253,"GA","13","253",8844,0.646313885119855,524,0.143034825870647,6.26149168432104,6.86901445066571,7.83518375526675,10.1769230769231,778.528989961074,38,4881,0,0,0,0,9 +"10243",2013,13255,"GA","13","255",63521,0.642858267344658,4309,0.126320429464272,8.36846113761584,8.98155594077189,9.84771053706713,11.4076923076923,567.813108371188,210,36984,0,0,0,0,9 +"10244",2013,13257,"GA","13","257",25571,0.86727151851707,1845,0.139024676391224,7.52023455647463,7.97108575350561,8.93603509656604,9.1,580.482141637643,85,14643,0,0,0,0,9 +"10245",2013,13261,"GA","13","261",31265,0.445002398848553,3092,0.119078842155765,8.03657340970731,8.12177741916107,9.1641917159502,11.2,496.250551389502,90,18136,0,0,0,0,9 +"10246",2013,13263,"GA","13","263",6556,0.414887126296522,414,0.181360585723002,6.02586597382531,6.53524127101366,7.61579107203583,9.2,689.655172413793,27,3915,0,0,0,0,9 +"10247",2013,13267,"GA","13","267",25632,0.685120162297129,2053,0.111852372034956,7.62705741701893,8.23509549725836,8.71555212590782,7.9,447.562598282327,74,16534,0,0,0,0,9 +"10248",2013,13269,"GA","13","269",8456,0.600520340586566,557,0.14108325449385,6.32256523992728,6.94505106372583,7.83082299513532,11.6769230769231,634.595701125896,31,4885,0,0,0,0,9 +"10249",2013,13271,"GA","13","271",16624,0.61405197305101,1039,0.128248315688162,6.94601399109923,7.88004820097158,8.23217423638394,11.3846153846154,498.384863867097,54,10835,0,0,0,0,9 +"10250",2013,13273,"GA","13","273",9167,0.375695429257118,660,0.143122068288426,6.49223983502047,6.81014245011514,7.8995244720322,9.70769230769231,448.343079922027,23,5130,0,0,0,0,9 +"10251",2013,13275,"GA","13","275",44783,0.609851952749927,2675,0.132505638300248,7.89170465933011,8.58129411682276,9.51229510371468,8.96923076923077,490.310530002335,126,25698,0,0,0,0,9 +"10252",2013,13277,"GA","13","277",40180,0.667371826779492,3149,0.113738178198109,8.05484022110102,8.48776438072542,9.37279929967389,8.43076923076923,480.622187267881,110,22887,0,0,0,0,9 +"10253",2013,13279,"GA","13","279",27184,0.71501618599176,1669,0.118635962330783,7.41997992366183,8.08209327817838,8.97398492668974,10.9153846153846,551.641632327529,83,15046,0,0,0,0,9 +"10254",2013,13281,"GA","13","281",10784,0.980155786350148,665,0.142433234421365,6.49978704065585,6.85540879860993,7.89319886954461,10.5538461538462,598.68675164156,31,5178,0,0,0,0,9 +"10255",2013,13283,"GA","13","283",6686,0.663176787316781,454,0.134759198324858,6.11809719804135,6.67708346124714,7.53047999524554,12.2153846153846,507.743082000508,20,3939,0,0,0,0,9 +"10256",2013,13285,"GA","13","285",68859,0.619250933066121,5177,0.121117065307367,8.5519810169019,9.05017161982336,9.94261210722018,8.54615384615385,493.950355494574,198,40085,0,0,0,0,9 +"10257",2013,13287,"GA","13","287",8208,0.584186159844055,527,0.123781676413255,6.26720054854136,6.80461452006262,7.68340368105383,9.88461538461539,734.113328745125,32,4359,0,0,0,0,9 +"10258",2013,13289,"GA","13","289",8522,0.566416334193851,531,0.166862238911054,6.27476202124194,6.74523634948436,7.84971375760487,13.6538461538462,632.161201106282,32,5062,0,0,0,0,9 +"10259",2013,13291,"GA","13","291",21440,0.98027052238806,962,0.165858208955224,6.86901445066571,7.5923661285198,8.64576229221094,7.82307692307692,546.796682766791,60,10973,0,0,0,0,9 +"10260",2013,13293,"GA","13","293",26425,0.702781456953642,1743,0.135591296121097,7.46336304552002,8.0727793331695,8.97638862194537,9.75384615384615,664.148977731475,102,15358,0,0,0,0,9 +"10261",2013,13295,"GA","13","295",68643,0.944043820928572,3986,0.136226563524321,8.29054350077274,9.1109619279959,9.91229862081468,8.01538461538462,581.293815333184,233,40083,0,0,0,0,9 +"10262",2013,13297,"GA","13","297",86068,0.810161732583539,5206,0.119138355718734,8.55756708555451,9.37339415841248,10.1530393171266,7.71538461538462,457.108336689489,227,49660,0,0,0,0,9 +"10263",2013,13299,"GA","13","299",35745,0.681857602461883,2544,0.128381591831025,7.84149292446001,8.36427508499152,9.2237500588861,9.28461538461539,439.644461435535,92,20926,0,0,0,0,9 +"10264",2013,13301,"GA","13","301",5520,0.380615942028986,334,0.155072463768116,5.8111409929767,6.3456363608286,7.39939808333135,11.9153846153846,670.926517571885,21,3130,0,0,0,0,9 +"10265",2013,13303,"GA","13","303",20575,0.456719319562576,1408,0.133317132442284,7.24992553671799,7.78072088611792,8.67522205564115,9.56923076923077,454.545454545455,56,12320,0,0,0,0,9 +"10266",2013,13305,"GA","13","305",30009,0.77680029324536,1925,0.12173014762238,7.56268124672188,8.31483217928456,9.01724094201035,9.69230769230769,518.543568932477,92,17742,0,0,0,0,9 +"10267",2013,13309,"GA","13","309",7934,0.612049407612806,650,0.116586841441896,6.47697236288968,7.12367278520461,7.33367639565768,12.5538461538462,516.414607156031,28,5422,0,0,0,0,9 +"10268",2013,13311,"GA","13","311",27831,0.96410477525062,1719,0.14099385577234,7.44949800538285,8.07464907506665,8.97525074964357,7.33076923076923,401.138716356108,62,15456,0,0,0,0,9 +"10269",2013,13313,"GA","13","313",102691,0.922106124197836,7221,0.106503977953277,8.88474872645118,9.52879410309472,10.2935682586005,9.48461538461538,388.816885761896,231,59411,0,0,0,0,9 +"10270",2013,13315,"GA","13","315",9054,0.626463441572786,639,0.12580075104926,6.45990445437753,7.13249755166004,7.60140233458373,11.0307692307692,541.201117318436,31,5728,0,0,0,0,9 +"10271",2013,13317,"GA","13","317",9931,0.556238042493203,541,0.146007451414762,6.29341927884648,6.95749737087695,7.95155933115525,11.1076923076923,581.818181818182,32,5500,0,0,0,0,9 +"10272",2013,13319,"GA","13","319",9361,0.596731118470249,557,0.142826621087491,6.32256523992728,6.90173720665657,7.92804560087478,10.2615384615385,596.347372344391,32,5366,0,0,0,0,9 +"10273",2013,13321,"GA","13","321",21058,0.698879285782126,1404,0.138712128407256,7.24708058458576,7.80547462527086,8.74751094647845,9.14615384615385,499.154657434989,62,12421,0,0,0,0,9 +"10274",2013,15001,"HI","15","001",191521,0.346614731543799,11292,0.163459881683993,9.33184978937338,9.99007800761723,10.9414116757023,6.42307692307692,352.112676056338,395,112180,1,0,0,0,9 +"10275",2013,15003,"HI","15","003",986494,0.208724026704673,78485,0.11930736527541,11.2706628027093,11.7334656304143,12.5730290536102,4.33846153846154,266.1819453646,1583,594706,1,0,0,0,9 +"10276",2013,15007,"HI","15","007",69653,0.341263118602214,3723,0.153805291947224,8.22228507387272,9.0432226489245,9.92216209280094,5.38461538461539,291.545189504373,119,40817,1,0,0,0,9 +"10277",2013,15009,"HI","15","009",161065,0.348002359295936,8582,0.143581783751901,9.05742226555147,9.96453561410106,10.7881637706409,4.99230769230769,339.47473999321,330,97209,1,0,0,0,9 +"10278",2013,19005,"IA","19","005",14074,0.971152479749893,757,0.151769219837999,6.62936325343745,7.24351297466548,8.22174772834662,6.33076923076923,192.283040635816,15,7801,1,0,0,0,9 +"10279",2013,19007,"IA","19","007",12659,0.983884983016036,693,0.149300892645549,6.5410299991899,7.1693500166706,8.1519098729409,6.37692307692308,546.133946536361,38,6958,1,0,0,0,9 +"10280",2013,19011,"IA","19","011",25698,0.986691571328508,1329,0.1336290761927,7.19218205871325,8.04173471148754,8.88266929130804,5.10769230769231,347.814226283844,51,14663,1,0,0,0,9 +"10281",2013,19013,"IA","19","013",132966,0.874313734338101,16347,0.125701307101063,9.70179967325121,9.56899335829854,10.5996551669896,5.10769230769231,332.895313184406,266,79905,1,0,0,0,9 +"10282",2013,19015,"IA","19","015",26294,0.977789609796912,1442,0.147219898075607,7.2737863178449,8.03073492409854,8.93128762622246,4.06153846153846,319.989551361588,49,15313,1,0,0,0,9 +"10283",2013,19017,"IA","19","017",24585,0.974944071588367,1982,0.125523693308928,7.59186171488993,7.92334821193015,8.82453082152646,3.79230769230769,226.691042047532,31,13675,1,0,0,0,9 +"10284",2013,19019,"IA","19","019",21028,0.985590641050029,1126,0.13115845539281,7.02642680869964,7.75876054415766,8.65886634973238,4.73076923076923,378.885731507793,44,11613,1,0,0,0,9 +"10285",2013,19021,"IA","19","021",20649,0.871809772870357,1753,0.126301515811904,7.46908388492123,7.66902828858968,8.62927109482159,3.96923076923077,266.896254842876,31,11615,1,0,0,0,9 +"10286",2013,19023,"IA","19","023",14973,0.987043344687103,692,0.145728978828558,6.53958595561767,7.40671073017764,8.29504914043511,4.52307692307692,223.380491437081,18,8058,1,0,0,0,9 +"10287",2013,19025,"IA","19","025",9899,0.971108192746742,520,0.151934538842307,6.25382881157547,6.94505106372583,7.81318726752142,5.19230769230769,441.419900680522,24,5437,1,0,0,0,9 +"10288",2013,19027,"IA","19","027",20539,0.98174205170651,1058,0.141535615171138,6.96413561241824,7.72001794043224,8.6213730103259,3.36923076923077,284.116132469147,32,11263,1,0,0,0,9 +"10289",2013,19029,"IA","19","029",13569,0.981428255582578,673,0.14348883484413,6.51174532964473,7.25276241805319,8.20631072579402,5.06153846153846,436.205016357688,32,7336,1,0,0,0,9 +"10290",2013,19031,"IA","19","031",18229,0.982774699654397,856,0.146689341159691,6.75227037614174,7.67878899819915,8.5387589693308,4.31538461538462,211.254081044747,22,10414,1,0,0,0,9 +"10291",2013,19033,"IA","19","033",43537,0.967384064129361,2636,0.154190688379999,7.8770178956224,8.43901541035221,9.43484299932802,5.40769230769231,366.548468066457,92,25099,1,0,0,0,9 +"10292",2013,19035,"IA","19","035",11876,0.977854496463456,598,0.160828561805322,6.39359075395063,7.07157336421153,8.05706068196577,4.30769230769231,274.348422496571,18,6561,1,0,0,0,9 +"10293",2013,19039,"IA","19","039",9244,0.975551709216789,526,0.138576373864128,6.26530121273771,6.94697599213542,7.83794891602528,5.5,365.10376633359,19,5204,1,0,0,0,9 +"10294",2013,19041,"IA","19","041",16440,0.980839416058394,883,0.145924574209246,6.78332520060396,7.50494206839617,8.41980084540759,4.51538461538462,390.243902439024,36,9225,1,0,0,0,9 +"10295",2013,19043,"IA","19","043",17793,0.984656887540044,897,0.159950542348114,6.7990558620588,7.50218648660292,8.47303229563047,5.65384615384615,264.792748752419,26,9819,1,0,0,0,9 +"10296",2013,19045,"IA","19","045",48297,0.952605751910056,2853,0.139843054434023,7.9561263512135,8.60685106334677,9.52595370935665,5.76923076923077,407.58397321591,112,27479,1,0,0,0,9 +"10297",2013,19047,"IA","19","047",17351,0.945017578237566,1073,0.123739265748372,6.9782137426307,7.5923661285198,8.39705739017626,4.36153846153846,328.250741211351,31,9444,1,0,0,0,9 +"10298",2013,19049,"IA","19","049",74968,0.935372425568242,3327,0.100923060505816,8.10982627601848,9.35192673603805,10.016012343378,3.61538461538462,175.915560530945,77,43771,1,0,0,0,9 +"10299",2013,19053,"IA","19","053",8223,0.962544083667761,1009,0.126352912562325,6.91671502035361,6.65672652417839,7.67971363996637,4.52307692307692,405.588102748986,18,4438,1,0,0,0,9 +"10300",2013,19055,"IA","19","055",17475,0.988383404864092,858,0.144949928469242,6.75460409948796,7.55799495853081,8.47324130388705,4.3,265.062697522683,26,9809,1,0,0,0,9 +"10301",2013,19057,"IA","19","057",40421,0.919472551396551,2310,0.141213725538705,7.74500280351584,8.42354163533478,9.34460899278122,6.03076923076923,421.052631578947,96,22800,1,0,0,0,9 +"10302",2013,19059,"IA","19","059",16883,0.986317597583368,786,0.171059645797548,6.66695679242921,7.50384074669895,8.44074401925283,5.37692307692308,329.052117609596,31,9421,1,0,0,0,9 +"10303",2013,19061,"IA","19","061",95990,0.946692363787895,6889,0.132451297010105,8.8376812155932,9.26558584620216,10.2172758720724,4.53846153846154,311.908410709456,173,55465,1,0,0,0,9 +"10304",2013,19063,"IA","19","063",9886,0.962775642322476,685,0.148796277564232,6.52941883826223,6.92657703322272,7.87815533650332,4.11538461538461,373.200639772525,21,5627,1,0,0,0,9 +"10305",2013,19065,"IA","19","065",20516,0.971534412166114,1412,0.142230454279587,7.25276241805319,7.6251071482389,8.60703389541603,5.26153846153846,461.361014994233,52,11271,1,0,0,0,9 +"10306",2013,19067,"IA","19","067",16029,0.961569655000312,897,0.139996256784578,6.7990558620588,7.44541755670169,8.37286082052632,5.52307692307692,518.612423648726,45,8677,1,0,0,0,9 +"10307",2013,19069,"IA","19","069",10507,0.977253259731607,553,0.151327686304369,6.31535800152233,7.0184017990692,7.95647679803678,4.46153846153846,394.782011671816,23,5826,1,0,0,0,9 +"10308",2013,19071,"IA","19","071",7068,0.98471986417657,307,0.164827391058291,5.7268477475872,6.63463335786169,7.54802896993501,4.21538461538462,334.104343356464,13,3891,1,0,0,0,9 +"10309",2013,19073,"IA","19","073",9158,0.98351168377375,459,0.151233893863289,6.12905021006055,6.83840520084734,7.80139132029149,4.69230769230769,483.189047714919,24,4967,1,0,0,0,9 +"10310",2013,19075,"IA","19","075",12340,0.988816855753647,615,0.140194489465154,6.42162226780652,7.22402480828583,8.10952565975287,4.36153846153846,237.177586718055,16,6746,1,0,0,0,9 +"10311",2013,19077,"IA","19","077",10675,0.987166276346604,468,0.152786885245902,6.14846829591765,7.05789793741186,7.94449216393216,5.16153846153846,378.266850068776,22,5816,1,0,0,0,9 +"10312",2013,19079,"IA","19","079",15347,0.961556004430833,756,0.137290675702092,6.62804137617953,7.46049030582534,8.34806422840827,5.45384615384615,340.775558166863,29,8510,1,0,0,0,9 +"10313",2013,19081,"IA","19","081",11134,0.982665708640201,476,0.15205676306808,6.16541785423142,7.10249935577465,7.99395754757357,4.00769230769231,457.366873570729,28,6122,1,0,0,0,9 +"10314",2013,19083,"IA","19","083",17390,0.971132834962622,986,0.144220816561242,6.89365635460264,7.47420480649612,8.43010908450912,5.1,181.740431900791,17,9354,1,0,0,0,9 +"10315",2013,19085,"IA","19","085",14359,0.987046451702765,726,0.145762239710286,6.5875500148248,7.42416528104203,8.28928832300032,4.49230769230769,394.574599260173,32,8110,1,0,0,0,9 +"10316",2013,19087,"IA","19","087",20029,0.938589045883469,1342,0.132607718807729,7.20191631753163,7.77401507725073,8.59341321732765,5.3,396.996634158971,46,11587,1,0,0,0,9 +"10317",2013,19091,"IA","19","091",9682,0.982235075397645,519,0.143875232390002,6.25190388316589,6.89060912014717,7.87016594646984,4.09230769230769,265.705067375214,14,5269,1,0,0,0,9 +"10318",2013,19095,"IA","19","095",16286,0.985140611568218,805,0.143436080068771,6.69084227741856,7.53849499941346,8.40983067308774,4.13846153846154,337.396604266434,31,9188,1,0,0,0,9 +"10319",2013,19097,"IA","19","097",19516,0.976941996310719,990,0.14485550317688,6.89770494312864,7.66481578528574,8.58690580382754,5.38461538461539,440.488207763605,48,10897,1,0,0,0,9 +"10320",2013,19099,"IA","19","099",36739,0.969351370478238,1920,0.136830071586053,7.56008046502183,8.39976009452414,9.20502627715241,5.09230769230769,326.828344069723,69,21112,1,0,0,0,9 +"10321",2013,19101,"IA","19","101",17632,0.86325998185118,1977,0.184323956442831,7.58933582317062,7.4759059693674,8.47177732788576,4.96153846153846,323.53221048625,34,10509,1,0,0,0,9 +"10322",2013,19103,"IA","19","103",140266,0.868107738154649,22640,0.102212938274421,10.0274735323171,9.68340182132116,10.71847618888,3.40769230769231,191.227837467392,173,90468,1,0,0,0,9 +"10323",2013,19105,"IA","19","105",20522,0.966426274242277,1070,0.141993957703928,6.97541392745595,7.80954132465341,8.59674347017425,5.31538461538462,417.257781857632,50,11983,1,0,0,0,9 +"10324",2013,19107,"IA","19","107",10336,0.987906346749226,543,0.143382352941176,6.29710931993394,6.99025650049388,7.90948949267376,5.07692307692308,370.174510840825,21,5673,1,0,0,0,9 +"10325",2013,19109,"IA","19","109",15325,0.982055464926591,721,0.154975530179445,6.58063913728495,7.27100853828099,8.29029259122431,3.56153846153846,353.917500610203,29,8194,1,0,0,0,9 +"10326",2013,19111,"IA","19","111",35250,0.952709219858156,2119,0.150382978723404,7.6586995582683,8.28778002708843,9.19725513242753,7.12307692307692,427.47358309318,89,20820,1,0,0,0,9 +"10327",2013,19113,"IA","19","113",216567,0.918810345066423,15407,0.121948403958128,9.64257723058178,10.2239755767131,11.0739863000043,5.01538461538462,279.251388478352,359,128558,1,0,0,0,9 +"10328",2013,19115,"IA","19","115",11353,0.950409583370034,649,0.132387915088523,6.47543271670409,7.20785987143248,8.04012466444838,5.06153846153846,415.96056077646,27,6491,1,0,0,0,9 +"10329",2013,19117,"IA","19","117",8695,0.989649223691777,431,0.147441058079356,6.06610809010375,6.81234509417748,7.73455884435476,4.71538461538462,427.076660260517,20,4683,1,0,0,0,9 +"10330",2013,19119,"IA","19","119",11700,0.990598290598291,599,0.128461538461538,6.39526159811545,7.21007962817079,8.02059914989697,2.9,224.719101123596,14,6230,1,0,0,0,9 +"10331",2013,19121,"IA","19","121",15482,0.984498126856995,670,0.135835163415579,6.50727771238501,7.63482067774554,8.37701116081637,5.05384615384615,335.415220911404,29,8646,1,0,0,0,9 +"10332",2013,19123,"IA","19","123",22432,0.966075249643367,1518,0.134138730385164,7.32514895795557,7.84267147497946,8.73085190351923,4.80769230769231,394.042083694539,50,12689,1,0,0,0,9 +"10333",2013,19125,"IA","19","125",33019,0.972258396680699,2319,0.129198340349496,7.74889133725553,8.2393294279018,9.11493018717152,4.46153846153846,334.321919654893,62,18545,1,0,0,0,9 +"10334",2013,19127,"IA","19","127",40993,0.933964335374332,2558,0.135852462615569,7.84698098213879,8.39253658681668,9.31271643859305,6.00769230769231,384.224705206907,87,22643,1,0,0,0,9 +"10335",2013,19129,"IA","19","129",14907,0.982223116656604,682,0.156302408264574,6.52502965784346,7.52185925220163,8.352318548226,4.38461538461539,418.848167539267,36,8595,1,0,0,0,9 +"10336",2013,19133,"IA","19","133",9030,0.978294573643411,420,0.148062015503876,6.04025471127741,6.78671695060508,7.75405263903576,5.73846153846154,819.155639571519,39,4761,1,0,0,0,9 +"10337",2013,19135,"IA","19","135",7974,0.982819162277402,423,0.139578630549285,6.04737217904628,6.82110747225646,7.67275789664251,5.73076923076923,472.334682860999,21,4446,1,0,0,0,9 +"10338",2013,19137,"IA","19","137",10407,0.985010089362929,494,0.153070049005477,6.20253551718792,7.06561336359772,7.94697135769359,4.89230769230769,301.098122564648,17,5646,1,0,0,0,9 +"10339",2013,19139,"IA","19","139",43018,0.955623227486169,2647,0.131107908317449,7.8811822022271,8.56197533418813,9.41311793733752,5.22307692307692,325.892129705068,80,24548,1,0,0,0,9 +"10340",2013,19141,"IA","19","141",14046,0.977431297166453,734,0.145664246048697,6.59850902861452,7.26752542782817,8.20603776277881,3.64615384615385,302.273623340781,23,7609,1,0,0,0,9 +"10341",2013,19145,"IA","19","145",15521,0.953031376844276,872,0.150763481734424,6.77078942390898,7.53529670244409,8.29129585190541,5.29230769230769,424.107142857143,38,8960,1,0,0,0,9 +"10342",2013,19147,"IA","19","147",9163,0.977081741787624,575,0.141220124413402,6.35437004079735,6.82871207164168,7.79110951061003,3.73846153846154,403.79567938623,20,4953,1,0,0,0,9 +"10343",2013,19149,"IA","19","149",24937,0.979347956851265,1229,0.14055419657537,7.11395610956603,7.9592759601164,8.82246957226897,3.99230769230769,320.466132556446,44,13730,1,0,0,0,9 +"10344",2013,19151,"IA","19","151",7112,0.97736220472441,342,0.154949381327334,5.8348107370626,6.48616078894409,7.5207764150628,3.81538461538462,470.71129707113,18,3824,1,0,0,0,9 +"10345",2013,19153,"IA","19","153",452780,0.877704403904766,29803,0.1143999293255,10.3023643385674,11.0222782148924,11.8421572670788,4.80769230769231,315.077514162116,866,274853,1,0,0,0,9 +"10346",2013,19155,"IA","19","155",92923,0.963302949754097,5848,0.135563853943588,8.67385500142962,9.29862593684354,10.2048506120438,4.56923076923077,400.489487150962,216,53934,1,0,0,0,9 +"10347",2013,19157,"IA","19","157",18618,0.959071865936191,1732,0.135621441615641,7.45703208912238,7.5234813125735,8.55622157838371,4.64615384615385,319.550692359833,33,10327,1,0,0,0,9 +"10348",2013,19161,"IA","19","161",10028,0.988332668528121,447,0.154367770243319,6.10255859461357,6.92657703322272,7.86403565907245,4.22307692307692,542.867839760389,29,5342,1,0,0,0,9 +"10349",2013,19163,"IA","19","163",170321,0.882240005636416,10782,0.13101144309862,9.28563335601161,9.95892225942423,10.8408154434761,5.58461538461538,347.956742650402,352,101162,1,0,0,0,9 +"10350",2013,19165,"IA","19","165",11905,0.982108357832843,578,0.143385132297354,6.35957386867238,7.12447826249342,8.05642676752298,3.76923076923077,411.327321626325,26,6321,1,0,0,0,9 +"10351",2013,19167,"IA","19","167",34511,0.975573005708325,3148,0.112225087653212,8.05452260953729,8.17526610411206,9.10564630086152,3.46923076923077,138.570591056867,26,18763,1,0,0,0,9 +"10352",2013,19169,"IA","19","169",93938,0.891407098298878,21508,0.0948072132683259,9.97618023792957,9.04334083128001,10.2363461248732,3.33846153846154,179.651882107689,106,59003,1,0,0,0,9 +"10353",2013,19171,"IA","19","171",17432,0.897774208352455,917,0.141463974300138,6.82110747225646,7.56008046502183,8.46062283992784,5.56923076923077,346.67507091081,33,9519,1,0,0,0,9 +"10354",2013,19175,"IA","19","175",12615,0.977407847800238,771,0.135869996036465,6.64768837356333,7.20785987143248,8.17131687471973,4.86923076923077,418.048147614242,29,6937,1,0,0,0,9 +"10355",2013,19179,"IA","19","179",35506,0.95231791809835,2416,0.138033008505605,7.78986855905471,8.32044811395656,9.22896583609935,6.33846153846154,419.778396056036,86,20487,1,0,0,0,9 +"10356",2013,19181,"IA","19","181",47369,0.979374696531487,2995,0.125947349532395,8.00469951054955,8.70084719344397,9.53010233789137,4.49230769230769,304.222007865252,82,26954,1,0,0,0,9 +"10357",2013,19183,"IA","19","183",21954,0.977543955543409,1117,0.134554067595882,7.0184017990692,7.81843027207066,8.70450228972123,3.78461538461538,364.963503649635,44,12056,1,0,0,0,9 +"10358",2013,19187,"IA","19","187",37344,0.934286632390745,2969,0.138897814910026,7.99598047476376,8.26359043261732,9.21243817005833,5.33076923076923,394.773944919635,84,21278,1,0,0,0,9 +"10359",2013,19189,"IA","19","189",10440,0.9727969348659,629,0.157662835249042,6.44413125670044,7.01929665371504,7.96137020171951,4.80769230769231,287.940379403794,17,5904,1,0,0,0,9 +"10360",2013,19191,"IA","19","191",20849,0.97649767374934,2224,0.140342462468224,7.70706265537047,7.59085212368858,8.67590488257106,4.65384615384615,158.267388588088,19,12005,1,0,0,0,9 +"10361",2013,19193,"IA","19","193",102317,0.901805174115738,7403,0.122345260318422,8.9096406024431,9.41515700659751,10.2837374115032,4.78461538461538,398.025248125182,233,58539,1,0,0,0,9 +"10362",2013,19197,"IA","19","197",12982,0.980819596364197,668,0.148898474811277,6.50428817353665,7.21081845347222,8.10681603894705,4.48461538461538,418.108419838524,29,6936,1,0,0,0,9 +"10363",2013,16001,"ID","16","001",416180,0.942015474073718,26838,0.116915757604883,10.1975740726609,10.9706951697271,11.7277384129641,5.8,263.782643102084,660,250206,0,0,0,0,9 +"10364",2013,16005,"ID","16","005",83494,0.931432198720866,6779,0.116822765707716,8.82158487743096,9.17915925449261,10.0958419450305,6.51538461538462,369.13377988843,178,48221,0,0,0,0,9 +"10365",2013,16009,"ID","16","009",9033,0.886195062548433,443,0.165725672534042,6.09356977004514,6.83087423464618,7.81237820598861,11.1076923076923,542.386500602652,27,4978,0,0,0,0,9 +"10366",2013,16011,"ID","16","011",45435,0.902894244525146,2717,0.114295146913173,7.90728360942635,8.56197533418813,9.39582359210772,6.53076923076923,390.771149449179,94,24055,0,0,0,0,9 +"10367",2013,16013,"ID","16","013",21333,0.96653072704261,909,0.156143064735386,6.81234509417748,7.94697135769359,8.74145611599836,6.36923076923077,213.000946670874,27,12676,0,0,0,0,9 +"10368",2013,16015,"ID","16","015",6722,0.971288307051473,231,0.218387384706932,5.44241771052179,6.54821910276237,7.58680353516258,9.01538461538462,427.13567839196,17,3980,0,0,0,0,9 +"10369",2013,16017,"ID","16","017",40553,0.97620397997682,1791,0.185017138066234,7.49052940206071,8.39321601159653,9.36947859331448,9.73076923076923,455.50255683039,106,23271,0,0,0,0,9 +"10370",2013,16019,"ID","16","019",107407,0.964210898730995,6545,0.106966957460873,8.786456678344,9.4491997797304,10.2859228315296,6.06923076923077,389.111698950422,228,58595,0,0,0,0,9 +"10371",2013,16021,"ID","16","021",10856,0.96518054532056,447,0.164148857774503,6.10255859461357,7.10002716662926,7.98786409608569,8.84615384615385,425.74931880109,25,5872,0,0,0,0,9 +"10372",2013,16027,"ID","16","027",198661,0.954802402081939,13332,0.102521380643408,9.49792243942763,10.1528834749944,10.9173767531742,8.39230769230769,352.821191322804,384,108837,0,0,0,0,9 +"10373",2013,16031,"ID","16","031",23344,0.965644276901988,1519,0.107565113091158,7.32580750259577,7.88532923927319,8.67556352738768,5.82307692307692,349.592142500416,42,12014,0,0,0,0,9 +"10374",2013,16035,"ID","16","035",8570,0.960560093348891,397,0.173978996499417,5.98393628068719,6.81892406527552,7.67461749736436,12.4307692307692,508.646998982706,25,4915,0,0,0,0,9 +"10375",2013,16039,"ID","16","039",26296,0.905613020991786,2889,0.0991025250988744,7.96866570046623,7.98548435673382,8.89357271862931,7.47692307692308,263.53001671166,41,15558,0,0,0,0,9 +"10376",2013,16043,"ID","16","043",12881,0.974458504774474,685,0.122894185234066,6.52941883826223,7.31521838975297,8.08301991917133,5.86153846153846,395.19906323185,27,6832,0,0,0,0,9 +"10377",2013,16045,"ID","16","045",16582,0.972982752382101,864,0.144976480521047,6.76157276880406,7.44132038971762,8.41094339157353,8.71538461538461,380.824372759857,34,8928,0,0,0,0,9 +"10378",2013,16047,"ID","16","047",15162,0.962471969397177,935,0.111001187178473,6.84054652928869,7.4667994750186,8.2409125416889,5.48461538461538,404.448938321537,32,7912,0,0,0,0,9 +"10379",2013,16049,"ID","16","049",16256,0.951956200787402,749,0.17845718503937,6.61873898351722,7.3185395485679,8.35019365072007,10.9769230769231,466.917207607334,41,8781,0,0,0,0,9 +"10380",2013,16051,"ID","16","051",26809,0.97385206460517,1542,0.100861650938118,7.34083555412327,8.0702808933939,8.84318209802261,5.7,313.100405607344,44,14053,0,0,0,0,9 +"10381",2013,16053,"ID","16","053",22759,0.960850652489125,1471,0.109626960762775,7.29369772060144,7.85670679309584,8.70350676947973,5.95384615384615,349.62192048134,43,12299,0,0,0,0,9 +"10382",2013,16055,"ID","16","055",144019,0.965296245634257,8981,0.13717634478784,9.10286651367095,9.76738141953914,10.6511702657441,8.13076923076923,327.403163292328,272,83078,0,0,0,0,9 +"10383",2013,16057,"ID","16","057",38262,0.951962782917777,7237,0.107913857090586,8.88696203486613,8.2147358333823,9.35608438602889,5.48461538461538,236.760124610592,57,24075,0,0,0,0,9 +"10384",2013,16059,"ID","16","059",7718,0.976937030318735,290,0.189686447266131,5.66988092298052,6.47850964220857,7.63964228785801,10.4230769230769,506.268081002893,21,4148,0,0,0,0,9 +"10385",2013,16065,"ID","16","065",37607,0.97077671710054,8746,0.0594570159810674,9.07635173197287,7.9124231214737,9.25138634141218,4.56153846153846,72.32619112196,16,22122,0,0,0,0,9 +"10386",2013,16067,"ID","16","067",20399,0.960586303250159,1362,0.11956468454336,7.21670948670946,7.71110125184016,8.579980179515,6.16923076923077,405.978962908286,44,10838,0,0,0,0,9 +"10387",2013,16069,"ID","16","069",39819,0.916045104096035,2904,0.136542856425325,7.97384437594469,8.40110871239544,9.34757739028127,5.55384615384615,383.342045652553,88,22956,0,0,0,0,9 +"10388",2013,16073,"ID","16","073",11396,0.930589680589681,663,0.127676377676378,6.49677499018586,7.21450441415114,8.00168997809913,4.32307692307692,532.258064516129,33,6200,0,0,0,0,9 +"10389",2013,16075,"ID","16","075",22581,0.964439130242239,1298,0.121340950356494,7.16857989726403,7.87359778968554,8.72404474595347,7.23846153846154,337.921371466249,41,12133,0,0,0,0,9 +"10390",2013,16079,"ID","16","079",12675,0.966153846153846,664,0.167573964497041,6.49828214947643,7.23345541862144,8.17835816560584,13.3923076923077,634.132892197408,46,7254,0,0,0,0,9 +"10391",2013,16083,"ID","16","083",79919,0.960597605075139,5348,0.114578510742126,8.58447793822183,9.14729407025855,10.0122971133934,6.39230769230769,343.634842764452,152,44233,0,0,0,0,9 +"10392",2013,16085,"ID","16","085",9585,0.979551382368284,391,0.205529473135107,5.96870755998537,7.05272104923232,7.92407232492342,11.3384615384615,262.329485834208,15,5718,0,0,0,0,9 +"10393",2013,16087,"ID","16","087",9916,0.964400968132311,493,0.150968132311416,6.20050917404269,6.96318998587024,7.85670679309584,8.19230769230769,232.1083172147,12,5170,0,0,0,0,9 +"10394",2013,17001,"IL","17","001",67005,0.944332512499067,4248,0.132228938138945,8.35420356292178,8.9085593751449,9.85629111770515,6.75384615384615,362.909588176511,138,38026,1,0,0,0,9 +"10395",2013,17003,"IL","17","003",7242,0.630074565037283,447,0.148577740955537,6.10255859461357,6.53233429222235,7.63675211243578,12.6153846153846,480.989464040312,21,4366,1,0,0,0,9 +"10396",2013,17005,"IL","17","005",17332,0.91812831756289,1150,0.135356565889684,7.0475172213573,7.73455884435476,8.47407690034261,8.63076923076923,308.468872686483,33,10698,1,0,0,0,9 +"10397",2013,17007,"IL","17","007",53737,0.946089286711205,3253,0.11785175949532,8.08733292647335,8.9157008189569,9.63036563141568,10.1,241.17589544699,74,30683,1,0,0,0,9 +"10398",2013,17011,"IL","17","011",34112,0.974290572232645,1813,0.145110225140713,7.50273821075485,8.27537637483641,9.16722408090255,9.13846153846154,480.920020909566,92,19130,1,0,0,0,9 +"10399",2013,17015,"IL","17","015",14969,0.973344912819828,783,0.158126795377113,6.6631326959908,7.38025578842646,8.31532177537757,7.95384615384615,387.174833635814,32,8265,1,0,0,0,9 +"10400",2013,17017,"IL","17","017",13293,0.940419769803656,758,0.128488678251711,6.63068338564237,7.40913644392013,8.20767442435528,9.10769230769231,329.5978905735,25,7585,1,0,0,0,9 +"10401",2013,17019,"IL","17","019",206527,0.751068867508849,34831,0.103996087678609,10.4582630738293,9.9925967276079,11.0718746291371,7.17692307692308,248.13513346896,322,129768,1,0,0,0,9 +"10402",2013,17021,"IL","17","021",34155,0.972127067779242,2145,0.136026936026936,7.67089483136212,8.3150770072941,9.14099029384139,9.7,411.192458128573,82,19942,1,0,0,0,9 +"10403",2013,17023,"IL","17","023",16105,0.986836386215461,875,0.137224464452034,6.77422388635761,7.54168309988211,8.41161042884117,9.26153846153846,447.696003494213,41,9158,1,0,0,0,9 +"10404",2013,17025,"IL","17","025",13550,0.983763837638376,800,0.141476014760148,6.68461172766793,7.32909373624659,8.23323750070527,9.88461538461539,415.045395590143,32,7710,1,0,0,0,9 +"10405",2013,17027,"IL","17","027",37725,0.949476474486415,2357,0.129383697813121,7.76514490293613,8.46273700562018,9.26605886073253,6.75384615384615,322.805793055313,74,22924,1,0,0,0,9 +"10406",2013,17029,"IL","17","029",53075,0.941648610456901,7817,0.120847856806406,8.96405612822033,8.58690580382754,9.72076591572083,8.76923076923077,387.667332969895,128,33018,1,0,0,0,9 +"10407",2013,17031,"IL","17","031",5252513,0.665423198381422,370098,0.117104707784636,12.8215231144148,13.4735567248069,14.3206930893927,9.71538461538461,319.630394398928,10365,3242808,1,0,0,0,9 +"10408",2013,17033,"IL","17","033",19441,0.937760403271437,1229,0.137132863535826,7.11395610956603,7.80384330353877,8.56274000637221,8.28461538461539,393.903065593424,46,11678,1,0,0,0,9 +"10409",2013,17035,"IL","17","035",10911,0.983411236366969,578,0.145082943818165,6.35957386867238,7.14045304310116,8.03171037532204,7.78461538461538,175.46658159196,11,6269,1,0,0,0,9 +"10410",2013,17037,"IL","17","037",104226,0.890334465488458,15541,0.101855583059889,9.65123697191561,9.35504659297544,10.3780744127147,8.13846153846154,227.497833353968,147,64616,1,0,0,0,9 +"10411",2013,17039,"IL","17","039",16372,0.980820913755192,885,0.144515025653555,6.78558764500793,7.60240133566582,8.45829208349608,8.29230769230769,470.219435736677,45,9570,1,0,0,0,9 +"10412",2013,17041,"IL","17","041",19853,0.98221931194278,1141,0.130106281166574,7.03966034986208,7.75018416225784,8.61359368570255,6.86153846153846,376.715400484348,42,11149,1,0,0,0,9 +"10413",2013,17043,"IL","17","043",932301,0.824859138840353,56986,0.132784368996708,10.9505609026135,11.7099139348076,12.5638589716549,7.42307692307692,206.879816642135,1168,564579,1,0,0,0,9 +"10414",2013,17045,"IL","17","045",17959,0.98791692187761,969,0.146667409098502,6.87626461189077,7.65396918047877,8.53326337159373,9.41538461538462,509.504213207917,52,10206,1,0,0,0,9 +"10415",2013,17047,"IL","17","047",6691,0.983858914960395,378,0.145269765356449,5.93489419561959,6.68586094706836,7.52940645783701,8.51538461538462,451.767207015679,17,3763,1,0,0,0,9 +"10416",2013,17049,"IL","17","049",34213,0.985297986145617,2230,0.131675094262415,7.70975686445416,8.23297179059344,9.18029345062389,6.89230769230769,359.730455489689,71,19737,1,0,0,0,9 +"10417",2013,17051,"IL","17","051",22201,0.942660240529706,1529,0.125805143912436,7.33236920592906,7.94803199063728,8.65921345143667,9.16153846153846,414.969645738877,54,13013,1,0,0,0,9 +"10418",2013,17053,"IL","17","053",13670,0.981419166057059,702,0.140526700804682,6.55393340402581,7.36264527041782,8.23297179059344,7.33846153846154,392.978779145926,30,7634,1,0,0,0,9 +"10419",2013,17055,"IL","17","055",39561,0.984454386896186,2276,0.136801395313566,7.73017479524622,8.48260174664662,9.32741204356202,11.8384615384615,551.661768030748,122,22115,1,0,0,0,9 +"10420",2013,17057,"IL","17","057",36322,0.947222069269313,2190,0.136941798359121,7.69165682281055,8.43750042250699,9.17326136373476,10.8692307692308,385.157350868953,82,21290,1,0,0,0,9 +"10421",2013,17059,"IL","17","059",5387,0.985891962131056,308,0.138295897531093,5.73009978297357,6.49978704065585,7.3362856600213,9.4,559.21052631579,17,3040,1,0,0,0,9 +"10422",2013,17061,"IL","17","061",13635,0.983058305830583,795,0.141547488082142,6.67834211465433,7.41577697541539,8.23323750070527,8.62307692307692,456.794822992006,36,7881,1,0,0,0,9 +"10423",2013,17063,"IL","17","063",50183,0.969571368790228,2925,0.118287069326266,7.98104975966596,8.84433633274893,9.60062415808868,11.6846153846154,293.641150263264,87,29628,1,0,0,0,9 +"10424",2013,17065,"IL","17","065",8347,0.986222594944291,444,0.143165209057146,6.09582456243222,6.85856503479136,7.74109909003537,7.79230769230769,541.242693223641,25,4619,1,0,0,0,9 +"10425",2013,17067,"IL","17","067",18545,0.985494742518199,969,0.153248854138582,6.87626461189077,7.59588991771854,8.53954159508,8.44615384615385,416.30361119179,43,10329,1,0,0,0,9 +"10426",2013,17069,"IL","17","069",4174,0.978437949209391,180,0.164829899377096,5.19295685089021,6.12905021006055,7.04664727784876,11.3076923076923,694.1431670282,16,2305,1,0,0,0,9 +"10427",2013,17071,"IL","17","071",6969,0.982924379394461,312,0.167025398191993,5.74300318780948,6.52649485957079,7.55590509361135,7.87692307692308,462.130937098845,18,3895,1,0,0,0,9 +"10428",2013,17073,"IL","17","073",49932,0.968597292317552,2725,0.143074581430746,7.91022370709734,8.68490859582083,9.54416625294219,7.7,397.684905727373,112,28163,1,0,0,0,9 +"10429",2013,17075,"IL","17","075",28943,0.976851052067857,1506,0.143661679853505,7.31721240835984,8.07371464110986,8.99454475832451,8.45384615384615,513.848853239754,82,15958,1,0,0,0,9 +"10430",2013,17077,"IL","17","077",59779,0.797152846317269,10958,0.109469880727346,9.30182506209836,8.67829111175856,9.83016388811729,7.90769230769231,334.055380118485,128,38317,1,0,0,0,9 +"10431",2013,17079,"IL","17","079",9608,0.990736885928393,508,0.142693588676103,6.23048144757848,6.96318998587024,7.89133075766189,7.86923076923077,309.034720959826,17,5501,1,0,0,0,9 +"10432",2013,17081,"IL","17","081",38656,0.889279801324503,2497,0.137262003311258,7.82284529027977,8.47156801338996,9.26879794154775,9.47692307692308,466.077474387724,106,22743,1,0,0,0,9 +"10433",2013,17083,"IL","17","083",22610,0.980141530296329,1559,0.137549756744803,7.35179986905778,7.86057078553866,8.80582481290361,8.92307692307692,393.55180504049,52,13213,1,0,0,0,9 +"10434",2013,17085,"IL","17","085",22398,0.984105723725333,1021,0.163987856058577,6.92853781816467,7.75405263903576,8.70996000607173,7.62307692307692,286.228328426562,35,12228,1,0,0,0,9 +"10435",2013,17087,"IL","17","087",12861,0.897441878547547,901,0.135059482155353,6.80350525760834,7.39572160860205,8.04430540699064,12.1384615384615,313.684485688145,24,7651,1,0,0,0,9 +"10436",2013,17089,"IL","17","089",522523,0.881316229142066,32146,0.113807430486314,10.3780433051291,11.2128738711154,11.937120730059,8.64615384615385,216.502520964498,663,306232,1,0,0,0,9 +"10437",2013,17091,"IL","17","091",112764,0.82173388670143,8751,0.125483310276329,9.07692325853583,9.51583780429796,10.4058373578211,10.5076923076923,415.148300198349,270,65037,1,0,0,0,9 +"10438",2013,17093,"IL","17","093",119582,0.890945125520563,6199,0.0909585054606881,8.73214326770192,9.92461283415108,10.4851443570627,8.44615384615385,226.902988269544,159,70074,1,0,0,0,9 +"10439",2013,17095,"IL","17","095",52130,0.893381929790907,3784,0.142259735277192,8.23853693017177,8.69567404882425,9.5772032423024,8.83076923076923,474.751834268451,143,30121,1,0,0,0,9 +"10440",2013,17097,"IL","17","097",704259,0.836213665711052,46877,0.125391368800399,10.7552824290292,11.4367137430243,12.2432479991302,7.9,241.667868994373,1005,415860,1,0,0,0,9 +"10441",2013,17099,"IL","17","099",112419,0.957462706482,7012,0.138828845657762,8.85537824604113,9.48143564082356,10.3605642377079,10.2923076923077,380.19316265522,248,65230,1,0,0,0,9 +"10442",2013,17101,"IL","17","101",16728,0.886657101865136,1270,0.122549019607843,7.14677217945264,7.76514490293613,8.31630024903685,10.1769230769231,280.464216634429,29,10340,1,0,0,0,9 +"10443",2013,17103,"IL","17","103",35123,0.929305583236056,2072,0.143865842894969,7.63626960337937,8.35514473946184,9.14708103233699,7.97692307692308,464.159249688965,97,20898,1,0,0,0,9 +"10444",2013,17105,"IL","17","105",37404,0.941049085659288,2371,0.138113570741097,7.77106708606541,8.38890517111471,9.28117155273677,8.05384615384615,408.952992392595,93,22741,1,0,0,0,9 +"10445",2013,17107,"IL","17","107",29829,0.903583760769721,2244,0.129169600053639,7.71601526664259,8.23270600986098,9.04970202601337,8.06923076923077,359.056509970723,65,18103,1,0,0,0,9 +"10446",2013,17109,"IL","17","109",32264,0.915416563352343,5841,0.114306967517977,8.67265729404031,7.97831096986772,9.16983082863797,8.28461538461539,319.409093177621,64,20037,1,0,0,0,9 +"10447",2013,17111,"IL","17","111",307629,0.948541912498497,17936,0.12809260505349,9.79456514531194,10.6479930253712,11.434790935566,8.70769230769231,235.424979886283,436,185197,1,0,0,0,9 +"10448",2013,17113,"IL","17","113",175087,0.851251092314107,22349,0.108368982277382,10.0145368563114,9.96819793390488,10.9156882842866,6.55384615384615,229.266624141406,248,108171,1,0,0,0,9 +"10449",2013,17115,"IL","17","115",109596,0.798943392094602,7482,0.142879302164313,8.92025541490809,9.43572141823058,10.392680876175,11.2307692307692,430.965936197958,271,62882,1,0,0,0,9 +"10450",2013,17117,"IL","17","117",46685,0.980550498018636,2754,0.144885937667345,7.9208096792886,8.6152269316876,9.51111140896968,9.40769230769231,429.852516119469,116,26986,1,0,0,0,9 +"10451",2013,17119,"IL","17","119",267340,0.896794344280691,18552,0.133006658188075,9.82833287893537,10.3954972620445,11.3072411109893,8.86153846153846,386.927941680426,621,160495,1,0,0,0,9 +"10452",2013,17121,"IL","17","121",38685,0.941863771487657,2366,0.139382189479126,7.76895604453833,8.38685668968823,9.30946146284399,10.0230769230769,579.405994799033,127,21919,1,0,0,0,9 +"10453",2013,17123,"IL","17","123",12129,0.982851018220793,680,0.153351471679446,6.52209279817015,7.20117088328168,8.12266802334641,9.10769230769231,455.279776766045,31,6809,1,0,0,0,9 +"10454",2013,17125,"IL","17","125",14144,0.983809389140271,745,0.146422511312217,6.61338421837956,7.39203156751459,8.27715777243181,10.9153846153846,475.951903807615,38,7984,1,0,0,0,9 +"10455",2013,17127,"IL","17","127",14846,0.921662400646639,828,0.139162063855584,6.71901315438526,7.50604217851812,8.37286082052632,9.75384615384615,579.813039876938,49,8451,1,0,0,0,9 +"10456",2013,17129,"IL","17","129",12576,0.979802798982188,663,0.149968193384224,6.49677499018586,7.3004728142678,8.21824792668574,7.17692307692308,382.932166301969,28,7312,1,0,0,0,9 +"10457",2013,17131,"IL","17","131",16077,0.987373266156621,824,0.147415562604964,6.71417052990947,7.5234813125735,8.40648506943182,7.80769230769231,409.926877908265,37,9026,1,0,0,0,9 +"10458",2013,17133,"IL","17","133",33523,0.986128926408734,1715,0.14315544551502,7.44716835960004,8.35184673882824,9.20733586295588,6.64615384615385,247.512249330707,49,19797,1,0,0,0,9 +"10459",2013,17135,"IL","17","135",29367,0.96141928014438,1761,0.138590935403684,7.47363710849621,8.16763571524637,8.970050661827,10.8846153846154,382.289170375442,67,17526,1,0,0,0,9 +"10460",2013,17137,"IL","17","137",35009,0.917107029620955,2505,0.137593190322489,7.82604401351897,8.27868216297091,9.20250979286099,7.82307692307692,391.872278664732,81,20670,1,0,0,0,9 +"10461",2013,17139,"IL","17","139",14799,0.986958578282316,805,0.129468207311305,6.69084227741856,7.41336733569524,8.33110454805304,7.14615384615385,346.020761245675,28,8092,1,0,0,0,9 +"10462",2013,17141,"IL","17","141",52278,0.974635601974062,3043,0.133727380542484,8.02059914989697,8.75762641126741,9.61273410155986,9.8,353.086173012225,106,30021,1,0,0,0,9 +"10463",2013,17143,"IL","17","143",188688,0.759290468922242,13425,0.127013906554736,9.50487391937707,10.0322325084267,10.9421021061865,9.60769230769231,412.999078207747,457,110654,1,0,0,0,9 +"10464",2013,17145,"IL","17","145",21718,0.897366239985266,1652,0.130628971360162,7.40974195408092,7.97039490719143,8.62101252005523,11,323.259660201473,43,13302,1,0,0,0,9 +"10465",2013,17147,"IL","17","147",16437,0.983877836588185,835,0.145281985763826,6.72743172485086,7.56320059235807,8.45212119467252,6.92307692307692,361.087510620221,34,9416,1,0,0,0,9 +"10466",2013,17149,"IL","17","149",16069,0.974173875163358,891,0.140519011761777,6.79234442747081,7.53476265703754,8.38045666784277,7.51538461538462,419.982316534041,38,9048,1,0,0,0,9 +"10467",2013,17153,"IL","17","153",5897,0.655418009157199,346,0.154994064778701,5.84643877505772,6.45519856334012,7.45066079621154,12.4923076923077,540.216086434574,18,3332,1,0,0,0,9 +"10468",2013,17157,"IL","17","157",33123,0.885034568124868,2021,0.135132687256589,7.61134771740362,8.38091517312361,9.01201137703641,8.38461538461539,374.421125234013,76,20298,1,0,0,0,9 +"10469",2013,17159,"IL","17","159",16008,0.980072463768116,966,0.13811844077961,6.87316383421252,7.50823877467866,8.41383067842108,8.30769230769231,418.041804180418,38,9090,1,0,0,0,9 +"10470",2013,17161,"IL","17","161",147686,0.856811072139539,9573,0.137785572092141,9.16670191494635,9.75289719390363,10.6590694803524,8.26153846153846,371.074943047042,316,85158,1,0,0,0,9 +"10471",2013,17163,"IL","17","163",266934,0.665119467733597,17973,0.128676002307687,9.79662591075203,10.4210007644519,11.317506510499,9.76153846153846,425.253927474419,677,159199,1,0,0,0,9 +"10472",2013,17165,"IL","17","165",24801,0.940607233579291,1597,0.137212209185114,7.37588214821501,7.95331834656043,8.87136500513685,10.5153846153846,623.052959501558,88,14124,1,0,0,0,9 +"10473",2013,17167,"IL","17","167",199190,0.842918821225965,12394,0.138842311361012,9.42496776352205,10.0968726816861,11.0257675385044,7.50769230769231,400.411369996965,475,118628,1,0,0,0,9 +"10474",2013,17173,"IL","17","173",22139,0.989475586069832,1228,0.14571570531641,7.11314210870709,7.82003798945875,8.72258002114119,8.73846153846154,283.011239589229,35,12367,1,0,0,0,9 +"10475",2013,17177,"IL","17","177",46683,0.878692457639826,2738,0.145941777520725,7.91498300584839,8.5197898172635,9.4937884938959,9.38461538461539,436.965771014604,114,26089,1,0,0,0,9 +"10476",2013,17179,"IL","17","179",136297,0.97135666962589,7640,0.133840069847465,8.94115288216057,9.77280922889401,10.5851186771348,8.62307692307692,373.556712700928,297,79506,1,0,0,0,9 +"10477",2013,17181,"IL","17","181",17541,0.972521521007924,1058,0.146399863177698,6.96413561241824,7.64873978895624,8.52198170814803,11.1769230769231,549.288867091712,56,10195,1,0,0,0,9 +"10478",2013,17183,"IL","17","183",80608,0.841033148074633,4955,0.135371179039301,8.50815244676409,9.14612179964953,10.0225142589578,10.5769230769231,470.75386612112,214,45459,1,0,0,0,9 +"10479",2013,17185,"IL","17","185",11675,0.97593147751606,746,0.150406852248394,6.61472560020376,7.1608459066643,8.1146238864201,7.43846153846154,402.32454179705,27,6711,1,0,0,0,9 +"10480",2013,17187,"IL","17","187",17660,0.940996602491506,1307,0.138674971687429,7.17548971362422,7.5740450053722,8.49739856408806,7.3,423.557886244453,42,9916,1,0,0,0,9 +"10481",2013,17189,"IL","17","189",14411,0.982513357851641,809,0.143779057664284,6.69579891705849,7.44658509915773,8.31213510764841,6.19230769230769,259.648294582792,22,8473,1,0,0,0,9 +"10482",2013,17191,"IL","17","191",16679,0.985310869956232,911,0.138317644942742,6.81454289725996,7.54538974961182,8.42989086301344,7.74615384615385,607.111882046834,56,9224,1,0,0,0,9 +"10483",2013,17193,"IL","17","193",14435,0.9833044683062,733,0.139799099411153,6.59714570188665,7.31388683163346,8.28324144138542,7.65384615384615,489.089541008277,39,7974,1,0,0,0,9 +"10484",2013,17195,"IL","17","195",57477,0.96612558066705,3361,0.144527376167858,8.1199938277251,8.80582481290361,9.68464722904175,8.69230769230769,418.384298283394,136,32506,1,0,0,0,9 +"10485",2013,17197,"IL","17","197",683720,0.819003393201896,42367,0.112113145732171,10.6541250362991,11.524725569086,12.2237308182637,9.86923076923077,234.520185046064,949,404656,1,0,0,0,9 +"10486",2013,17199,"IL","17","199",67472,0.934224567227887,4103,0.12957967749585,8.31947369244219,9.06566136060674,9.87863117653726,8.97692307692308,416.645495655709,164,39362,1,0,0,0,9 +"10487",2013,17201,"IL","17","201",291006,0.82726472993684,18581,0.130877026590517,9.82989483223276,10.4939927411242,11.3631833862977,10.4615384615385,439.140135283493,744,169422,1,0,0,0,9 +"10488",2013,17203,"IL","17","203",39039,0.980429826583673,2448,0.136735059811983,7.80302664363222,8.43489794868941,9.30982365046113,7.06153846153846,288.09363042989,64,22215,1,0,0,0,9 +"10489",2013,20001,"KS","20","001",13065,0.952162265595101,813,0.138691159586682,6.70073110954781,7.25700270709207,8.20111164444276,6.08461538461538,692.3289947383,50,7222,0,0,0,0,9 +"10490",2013,20003,"KS","20","003",7859,0.978241506552997,410,0.129533019468126,6.01615715969835,6.70686233660275,7.61579107203583,5.83076923076923,511.945392491468,21,4102,0,0,0,0,9 +"10491",2013,20005,"KS","20","005",16697,0.924657124034258,1487,0.122477091693119,7.30451594646016,7.47363710849621,8.4448375292241,8.56153846153846,303.555941023417,28,9224,0,0,0,0,9 +"10492",2013,20009,"KS","20","009",27447,0.964440558166648,1708,0.138302911064962,7.44307837434852,7.91461770904068,8.92970011431345,4.05384615384615,424.919918938354,65,15297,0,0,0,0,9 +"10493",2013,20011,"KS","20","011",14835,0.943444556791372,1029,0.133535557802494,6.93634273583405,7.3356339819272,8.29379960884682,6.46923076923077,499.375780274657,40,8010,0,0,0,0,9 +"10494",2013,20013,"KS","20","013",9916,0.867789431222267,497,0.145623235175474,6.20859002609663,6.91373735065968,7.900636613018,5.01538461538462,392.083644510829,21,5356,0,0,0,0,9 +"10495",2013,20015,"KS","20","015",65706,0.952561409916903,4107,0.129820716525127,8.32044811395656,9.00183909739884,9.82433611423069,5.52307692307692,381.689506189201,144,37727,0,0,0,0,9 +"10496",2013,20021,"KS","20","021",20915,0.930289266076978,1085,0.136839588811858,6.98933526597456,7.8087293067444,8.67829111175856,6.39230769230769,570.892978868439,67,11736,0,0,0,0,9 +"10497",2013,20027,"KS","20","027",8384,0.978769083969466,404,0.138239503816794,6.00141487796115,6.86589107488344,7.69848278788095,5.03846153846154,357.78175313059,16,4472,0,0,0,0,9 +"10498",2013,20029,"KS","20","029",9355,0.973062533404596,657,0.13148049171566,6.48768401848461,6.78784498230958,7.80016307039296,4.34615384615385,423.045930701048,21,4964,0,0,0,0,9 +"10499",2013,20031,"KS","20","031",8381,0.97207970409259,403,0.152368452451975,5.99893656194668,6.83087423464618,7.76174498465891,5.91538461538462,612.848689771767,29,4732,0,0,0,0,9 +"10500",2013,20035,"KS","20","035",36186,0.912507599624164,2569,0.126595921074449,7.85127199710988,8.30325712085294,9.2051268049233,5.82307692307692,504.151838671412,102,20232,0,0,0,0,9 +"10501",2013,20037,"KS","20","037",39264,0.937856560717196,5494,0.112418500407498,8.61141186665522,8.3165447179294,9.34136863438259,5.9,370.625754180314,86,23204,0,0,0,0,9 +"10502",2013,20041,"KS","20","041",19436,0.968460588598477,1045,0.134441243054126,6.95177216439891,7.72134861261795,8.57583938684897,5.9,378.578024007387,41,10830,0,0,0,0,9 +"10503",2013,20045,"KS","20","045",114779,0.864382857491353,21415,0.0992951672344244,9.97184689004947,9.441610810502,10.5125463527138,4.83076923076923,187.134817846469,139,74278,0,0,0,0,9 +"10504",2013,20051,"KS","20","051",29044,0.963538080154249,3994,0.119818206858559,8.29254851397576,7.98002359231065,9.06647000155648,3.14615384615385,266.5003402132,47,17636,0,0,0,0,9 +"10505",2013,20055,"KS","20","055",37069,0.903450322371793,2793,0.101702230974669,7.93487156594518,8.37309184744198,9.23033905848287,4.28461538461538,269.256659294163,56,20798,0,0,0,0,9 +"10506",2013,20057,"KS","20","057",34872,0.927707042899748,2679,0.0966391374168387,7.89319886954461,8.37147353706683,9.13443077787583,4.01538461538462,328.07053516506,64,19508,0,0,0,0,9 +"10507",2013,20059,"KS","20","059",25747,0.962481065755234,1603,0.130228764516254,7.37963215260955,8.00302866638473,8.90571557879409,6.12307692307692,353.93411380343,52,14692,0,0,0,0,9 +"10508",2013,20061,"KS","20","061",36857,0.7247741270315,5003,0.0635428819491548,8.5177930114882,8.3091845276863,9.224341891612,8.67692307692308,278.977681785457,62,22224,0,0,0,0,9 +"10509",2013,20073,"KS","20","073",6361,0.971702562490175,286,0.159566105958183,5.65599181081985,6.45362499889269,7.43070708254597,5.33846153846154,580.720092915215,20,3444,0,0,0,0,9 +"10510",2013,20079,"KS","20","079",34736,0.955032243205896,2154,0.12874251497006,7.67508185771633,8.23429963569625,9.15090878820676,4.86153846153846,351.045157172491,66,18801,0,0,0,0,9 +"10511",2013,20085,"KS","20","085",13312,0.885141225961538,622,0.136343149038462,6.43294009273918,7.37274636640433,8.19836438996762,5.07692307692308,369.559266356419,27,7306,0,0,0,0,9 +"10512",2013,20087,"KS","20","087",18767,0.974742899770874,867,0.150103905792082,6.76503897678054,7.67275789664251,8.58185670474196,5.72307692307692,314.610900342371,34,10807,0,0,0,0,9 +"10513",2013,20091,"KS","20","091",566661,0.890687730406716,30172,0.122632402794616,10.3146696209735,11.2816363282696,12.0641403496408,4.30769230769231,213.707291657468,726,339717,0,0,0,0,9 +"10514",2013,20095,"KS","20","095",7803,0.977060105087787,397,0.144944252210688,5.98393628068719,6.6682282484174,7.63240112660145,5.43846153846154,471.253534401508,20,4244,0,0,0,0,9 +"10515",2013,20099,"KS","20","099",20875,0.908263473053892,1335,0.136718562874251,7.19668657083435,7.72577144158795,8.67539280608978,7.14615384615385,624.841678628726,74,11843,0,0,0,0,9 +"10516",2013,20103,"KS","20","103",78177,0.865292861071671,4804,0.124537907568722,8.47720418319987,9.35884658027541,9.9579757378202,5.98461538461538,303.239433674216,145,47817,0,0,0,0,9 +"10517",2013,20107,"KS","20","107",9538,0.978192493185154,401,0.143845669951772,5.99396142730657,6.99117688712121,7.84345640437612,8.66923076923077,604.17072695381,31,5131,0,0,0,0,9 +"10518",2013,20111,"KS","20","111",33478,0.921530557380967,4395,0.119571061592688,8.38822281011928,8.13270648969326,9.21662060993333,7.18461538461538,407.035175879397,81,19900,0,0,0,0,9 +"10519",2013,20113,"KS","20","113",29424,0.966252039151713,1857,0.137404839586732,7.52671756135271,8.0494270571107,9.00146947994869,3.88461538461538,342.759211653813,56,16338,0,0,0,0,9 +"10520",2013,20115,"KS","20","115",12206,0.974193019826315,805,0.141815500573488,6.69084227741856,7.0352685992811,8.05515773181968,4.67692307692308,446.841294298921,29,6490,0,0,0,0,9 +"10521",2013,20117,"KS","20","117",9975,0.981754385964912,484,0.14796992481203,6.18208490671663,6.88550967003482,7.8770178956224,3.86153846153846,240.118212042852,13,5414,0,0,0,0,9 +"10522",2013,20121,"KS","20","121",32850,0.969406392694064,1578,0.134581430745814,7.36391350140582,8.31922993863233,9.14686794902061,5.58461538461538,304.861742525539,57,18697,0,0,0,0,9 +"10523",2013,20125,"KS","20","125",34458,0.876081026176795,2217,0.133118579139822,7.70391020961631,8.19891444498699,9.16051967699223,6.76923076923077,491.387509246539,93,18926,0,0,0,0,9 +"10524",2013,20133,"KS","20","133",16390,0.959487492373398,961,0.134289200732154,6.86797440897029,7.47760424319759,8.37885024179449,8.50769230769231,392.420674963561,35,8919,0,0,0,0,9 +"10525",2013,20139,"KS","20","139",16084,0.97712011937329,782,0.146729669236508,6.66185474054531,7.50439155916124,8.40603814205008,6.62307692307692,448.933782267116,40,8910,0,0,0,0,9 +"10526",2013,20143,"KS","20","143",6040,0.978145695364238,226,0.147185430463576,5.42053499927229,6.5410299991899,7.39141523467536,4.50769230769231,480.192076830732,16,3332,0,0,0,0,9 +"10527",2013,20145,"KS","20","145",6863,0.927145563164797,372,0.15037155762786,5.91889385427315,6.66949808985788,7.43307534889858,4.36153846153846,540.275049115914,22,4072,0,0,0,0,9 +"10528",2013,20149,"KS","20","149",22586,0.958824050296644,1231,0.119321703710263,7.11558212618445,7.87663846097546,8.72842609170461,4.6,280.696126393456,35,12469,0,0,0,0,9 +"10529",2013,20155,"KS","20","155",64090,0.943392104852551,4244,0.136339522546419,8.35326149973387,8.85123390284603,9.76439788413417,5.26923076923077,355.90134083761,129,36246,0,0,0,0,9 +"10530",2013,20159,"KS","20","159",9974,0.95588530178464,811,0.134750350912372,6.69826805411541,6.87316383421252,7.87169266432365,4.3,584.902211661488,32,5471,0,0,0,0,9 +"10531",2013,20161,"KS","20","161",76996,0.859706997766118,20341,0.071029663878643,9.92039383260249,8.78706764521805,10.052984563682,4.23076923076923,129.482853331241,66,50972,0,0,0,0,9 +"10532",2013,20169,"KS","20","169",55765,0.91860485967901,3795,0.128987716309513,8.24143968982973,8.774622220697,9.67407438820832,4.97692307692308,380.18074166407,122,32090,0,0,0,0,9 +"10533",2013,20173,"KS","20","173",506542,0.829382361186239,35782,0.120840917436264,10.4852002526498,11.0200052450731,11.9094372783528,6.13846153846154,380.705506524446,1125,295504,0,0,0,0,9 +"10534",2013,20175,"KS","20","175",23318,0.897761386053692,1982,0.0879578008405524,7.59186171488993,7.97177612288063,8.73472100394481,4.09230769230769,297.256097560976,39,13120,0,0,0,0,9 +"10535",2013,20177,"KS","20","177",178714,0.863032554808241,10968,0.136855534541222,9.30273722124215,9.92735055280066,10.8777075122079,5.76923076923077,384.607913599192,396,102962,0,0,0,0,9 +"10536",2013,20181,"KS","20","181",6094,0.971775516901871,395,0.136855923859534,5.97888576490112,6.41017488196617,7.39449310721904,4,617.828773168579,21,3399,0,0,0,0,9 +"10537",2013,20191,"KS","20","191",23534,0.962904733576952,1308,0.146256479986403,7.17625453201714,7.84815308619953,8.7662383802531,5.63846153846154,533.170843171605,70,13129,0,0,0,0,9 +"10538",2013,20205,"KS","20","205",9093,0.967227537666337,446,0.148135928736391,6.10031895202006,6.88550967003482,7.81197342962202,8.86923076923077,691.478543827537,34,4917,0,0,0,0,9 +"10539",2013,20209,"KS","20","209",161004,0.677983155697995,10894,0.112282924647835,9.29596745794362,9.91452639965134,10.762445737763,7.92307692307692,481.140162880411,449,93320,0,0,0,0,9 +"10540",2013,21001,"KY","21","001",19128,0.95922208281054,1695,0.130855290673358,7.43543801981455,7.65822752616135,8.64047220757641,10.0384615384615,491.937687892867,54,10977,1,0,0,0,9 +"10541",2013,21003,"KY","21","003",20304,0.980644208037825,1288,0.130565405831363,7.1608459066643,7.86557175768479,8.68946441235669,7.38461538461539,525.423728813559,62,11800,1,0,0,0,9 +"10542",2013,21005,"KY","21","005",21758,0.967276404081257,1203,0.129561540582774,7.09257371597468,8.05579245097777,8.80402490241318,6.38461538461539,521.832553142506,68,13031,1,0,0,0,9 +"10543",2013,21007,"KY","21","007",8244,0.955604075691412,433,0.145075206210577,6.07073772800249,6.95939851213398,7.75876054415766,9.08461538461538,592.341865876878,28,4727,1,0,0,0,9 +"10544",2013,21009,"KY","21","009",42944,0.944252980625931,2463,0.130262667660209,7.80913539812054,8.58969988220299,9.43843166301433,7.61538461538461,468.346253229974,116,24768,1,0,0,0,9 +"10545",2013,21011,"KY","21","011",11979,0.976124885215794,668,0.137156690875699,6.50428817353665,7.33432935030054,8.15421269491423,10.2153846153846,585.737296822375,40,6829,1,0,0,0,9 +"10546",2013,21013,"KY","21","013",28034,0.966718984090747,1837,0.138046657630021,7.51588908521513,8.1763915966338,9.03228968203287,13.1846153846154,667.468430547204,111,16630,1,0,0,0,9 +"10547",2013,21015,"KY","21","015",125083,0.936170382865777,7049,0.11703428923195,8.86064104177388,9.80884714838201,10.5263463799779,6.55384615384615,310.642895732037,230,74040,1,0,0,0,9 +"10548",2013,21017,"KY","21","017",20023,0.923138390850522,1181,0.134844928332418,7.07411681619736,7.87054784450771,8.68524677641249,6.93846153846154,435.123139848577,50,11491,1,0,0,0,9 +"10549",2013,21019,"KY","21","019",48905,0.958470504038442,2697,0.144218382578468,7.89989532313973,8.75605259917045,9.55994034724295,9.34615384615385,541.211348202282,157,29009,1,0,0,0,9 +"10550",2013,21021,"KY","21","021",29636,0.902078553111081,2474,0.130989337292482,7.81359155295243,8.2190566610606,9.0395520509959,8.73846153846154,326.525765851342,55,16844,1,0,0,0,9 +"10551",2013,21023,"KY","21","023",8425,0.988486646884273,510,0.136617210682493,6.23441072571837,6.97073007814353,7.80751004221619,9.71538461538462,525.464834276475,26,4948,1,0,0,0,9 +"10552",2013,21025,"KY","21","025",13525,0.986321626617375,890,0.144473197781885,6.79122146272619,7.50218648660292,8.32893404195553,14.7615384615385,865.28061531066,72,8321,1,0,0,0,9 +"10553",2013,21027,"KY","21","027",20049,0.966781385605267,1099,0.148984986782383,7.00215595440362,7.75491027202143,8.64347335732657,9.08461538461538,523.149359142035,60,11469,1,0,0,0,9 +"10554",2013,21029,"KY","21","029",76886,0.97786333012512,4745,0.130530915901465,8.46484671104403,9.2850767180902,10.0701030795085,7.32307692307692,319.597732986747,150,46934,1,0,0,0,9 +"10555",2013,21031,"KY","21","031",12714,0.986392952650621,662,0.139452571967909,6.49526555593701,7.38336814699238,8.20603776277881,9.05384615384615,433.60433604336,32,7380,1,0,0,0,9 +"10556",2013,21033,"KY","21","033",12882,0.934559850954821,716,0.144387517466232,6.57368016696065,7.39572160860205,8.21743853773019,8.10769230769231,522.33676975945,38,7275,1,0,0,0,9 +"10557",2013,21035,"KY","21","035",38449,0.932273921298343,6123,0.113448984368904,8.71980745147795,8.25582842728183,9.38042064234778,7.17692307692308,349.833828931258,80,22868,1,0,0,0,9 +"10558",2013,21037,"KY","21","037",91862,0.95369140667523,7027,0.129890487905772,8.8575151511922,9.30801139914963,10.2484238675695,6.5,377.351709762628,210,55651,1,0,0,0,9 +"10559",2013,21039,"KY","21","039",4959,0.976608187134503,267,0.136922766686832,5.58724865840025,6.40357419793482,7.23201033166476,7.09230769230769,468.975468975469,13,2772,1,0,0,0,9 +"10560",2013,21041,"KY","21","041",10844,0.965234230911103,689,0.126429361859093,6.53524127101366,7.19142933003638,8.02845516411425,9.06923076923077,599.842146803473,38,6335,1,0,0,0,9 +"10561",2013,21043,"KY","21","043",27599,0.98706474872278,2055,0.133483097213667,7.62803112693033,8.14467918344776,9.0050367387903,12.5230769230769,529.892151362135,85,16041,1,0,0,0,9 +"10562",2013,21045,"KY","21","045",16017,0.983642379971281,893,0.137603795966785,6.7945865808765,7.60887062919126,8.43468076984177,8.53846153846154,560.43956043956,51,9100,1,0,0,0,9 +"10563",2013,21047,"KY","21","047",73726,0.743455497382199,8876,0.0887882158261672,9.09110628405248,8.97208318285193,9.89019965820919,9.33076923076923,465.759741756975,202,43370,1,0,0,0,9 +"10564",2013,21049,"KY","21","049",35566,0.940251925996738,2002,0.135325873024799,7.60190195987517,8.50045386741194,9.28228887128877,7.45384615384615,590.560556269943,124,20997,1,0,0,0,9 +"10565",2013,21051,"KY","21","051",21199,0.951743006745601,1403,0.124062455776216,7.24636808010246,8.05832730658096,8.69851424787661,14.1615384615385,692.65345221428,94,13571,1,0,0,0,9 +"10566",2013,21053,"KY","21","053",10188,0.984000785237534,586,0.138888888888889,6.37331978957701,7.10002716662926,7.96970358327866,10.3538461538462,599.931436407268,35,5834,1,0,0,0,9 +"10567",2013,21055,"KY","21","055",9180,0.981045751633987,490,0.144989106753813,6.19440539110467,6.98749024700099,7.84854348245668,7.32307692307692,554.175425186318,29,5233,1,0,0,0,9 +"10568",2013,21057,"KY","21","057",6785,0.963890935887988,401,0.143699336772292,5.99396142730657,6.64509096950564,7.56992765524265,10.5692307692308,716.56050955414,27,3768,1,0,0,0,9 +"10569",2013,21059,"KY","21","059",98334,0.930939451257958,6137,0.129772001545752,8.7220913023891,9.38530157436385,10.2692758434914,6.81538461538462,420.665641515103,238,56577,1,0,0,0,9 +"10570",2013,21061,"KY","21","061",12075,0.973747412008282,728,0.145258799171843,6.59030104819669,7.32448997934853,8.16905314992734,9.91538461538462,412.987752776987,29,7022,1,0,0,0,9 +"10571",2013,21063,"KY","21","063",7550,0.958675496688742,473,0.138543046357616,6.15909538849193,7.00488198971286,7.539027055824,14.3461538461538,315.78947368421,15,4750,1,0,0,0,9 +"10572",2013,21065,"KY","21","065",14492,0.992685619652222,798,0.138145183549545,6.68210859744981,7.52833176670725,8.36613771649628,9.63076923076923,778.617083091226,67,8605,1,0,0,0,9 +"10573",2013,21067,"KY","21","067",310025,0.797742117571164,33745,0.112900572534473,10.4265875371775,10.6230332069506,11.5090680346429,5.73076923076923,329.962853875039,652,197598,1,0,0,0,9 +"10574",2013,21069,"KY","21","069",14540,0.978679504814305,855,0.134938101788171,6.75110146893676,7.55013534248843,8.352318548226,9.4,843.731431966726,71,8415,1,0,0,0,9 +"10575",2013,21071,"KY","21","071",38487,0.985735443136644,2415,0.14675085093668,7.78945456608667,8.51599247083972,9.38848655735966,13.1307692307692,750.859033640182,177,23573,1,0,0,0,9 +"10576",2013,21073,"KY","21","073",49482,0.863324037023564,3389,0.141384745968231,8.12829017160705,8.7551071216339,9.64017283653264,6.50769230769231,498.194463019928,149,29908,1,0,0,0,9 +"10577",2013,21075,"KY","21","075",6381,0.739225826672935,416,0.147625763986836,6.03068526026126,6.52941883826223,7.49443021503157,10.6538461538462,909.090909090909,34,3740,1,0,0,0,9 +"10578",2013,21077,"KY","21","077",8577,0.9734172787688,532,0.125102017022269,6.27664348934164,7.02731451403978,7.82444593087762,9.23846153846154,697.489039457951,35,5018,1,0,0,0,9 +"10579",2013,21079,"KY","21","079",16995,0.970050014710209,875,0.14327743453957,6.77422388635761,7.68202151082687,8.53227882883428,8.09230769230769,377.208655946,38,10074,1,0,0,0,9 +"10580",2013,21081,"KY","21","081",24567,0.980990759962551,1564,0.117637481173933,7.35500192110526,8.10076824307173,8.87234697898303,8.20769230769231,543.288987950129,78,14357,1,0,0,0,9 +"10581",2013,21083,"KY","21","083",37408,0.937205945252352,2225,0.129330624465355,7.70751219460034,8.4156033356546,9.27350294693382,8.39230769230769,431.873190641166,91,21071,1,0,0,0,9 +"10582",2013,21085,"KY","21","085",25954,0.981120443862218,1561,0.138167527163443,7.35308192051543,8.09864284375942,8.91435727448502,10.1769230769231,606.580075163183,92,15167,1,0,0,0,9 +"10583",2013,21087,"KY","21","087",11181,0.967802522135766,594,0.144441463196494,6.38687931936265,7.21229446850034,8.08240225392624,8.16923076923077,525.339925834363,34,6472,1,0,0,0,9 +"10584",2013,21089,"KY","21","089",36505,0.981481988768662,1982,0.144199424736337,7.59186171488993,8.45212119467252,9.28107838648152,10.1076923076923,561.958281741118,118,20998,1,0,0,0,9 +"10585",2013,21091,"KY","21","091",8631,0.978797358359402,501,0.131502722743599,6.21660610108486,7.0335064842877,7.79152281915073,7.16923076923077,485.338725985844,24,4945,1,0,0,0,9 +"10586",2013,21093,"KY","21","093",109072,0.826600777468094,8816,0.115602537773214,9.0843235313927,9.55470991405776,10.3852344588015,7.6,359.618251394673,234,65069,1,0,0,0,9 +"10587",2013,21095,"KY","21","095",28494,0.968905734540605,1805,0.15006668070471,7.49831587076698,8.15478757276852,9.06670092177457,17.9,944.447703408224,161,17047,1,0,0,0,9 +"10588",2013,21097,"KY","21","097",18564,0.96574014221073,1073,0.143126481361775,6.9782137426307,7.76768727718691,8.60831278478372,7.48461538461538,570.954968229119,62,10859,1,0,0,0,9 +"10589",2013,21099,"KY","21","099",18462,0.943884736214928,1133,0.12918427039324,7.03262426102801,7.68708015578313,8.56826646160024,7.83076923076923,499.058380414313,53,10620,1,0,0,0,9 +"10590",2013,21101,"KY","21","101",46362,0.907963418316725,2769,0.141257926750356,7.92624152317096,8.64558640618464,9.55258164991731,7.40769230769231,469.346916499909,129,27485,1,0,0,0,9 +"10591",2013,21103,"KY","21","103",15433,0.959891142357286,825,0.146245059288538,6.71538338633468,7.57660976697304,8.42617379302907,7.13076923076923,490.633363068689,44,8968,1,0,0,0,9 +"10592",2013,21105,"KY","21","105",4720,0.896822033898305,229,0.140254237288136,5.43372200355424,6.26530121273771,7.18916773842032,7.09230769230769,806.451612903226,21,2604,1,0,0,0,9 +"10593",2013,21107,"KY","21","107",46436,0.917047118614868,2736,0.142454130416057,7.91425227874244,8.66492330344057,9.53235140475156,7.82307692307692,595.303715136148,162,27213,1,0,0,0,9 +"10594",2013,21109,"KY","21","109",13385,0.992753081807994,818,0.139932760552858,6.70686233660275,7.51261754467451,8.31752199628717,11.4692307692308,593.765462642256,48,8084,1,0,0,0,9 +"10595",2013,21111,"KY","21","111",759427,0.746475961481485,51197,0.131384583376677,10.8434362155609,11.4763755819726,12.374907835391,7.39230769230769,455.650192825249,2096,460002,1,0,0,0,9 +"10596",2013,21113,"KY","21","113",50124,0.943240762907988,3689,0.121418881174687,8.21311069759668,8.80086724247048,9.63971730013066,6.44615384615385,404.28542551041,120,29682,1,0,0,0,9 +"10597",2013,21115,"KY","21","115",23474,0.988157109994036,1446,0.141603476186419,7.27655640271871,8.05484022110102,8.87961160998204,10.9230769230769,512.49199231262,72,14049,1,0,0,0,9 +"10598",2013,21117,"KY","21","117",163228,0.928749969368001,10355,0.125995539980886,9.24522477382969,9.96251089298559,10.8182170663433,6.93076923076923,420.231428887392,418,99469,1,0,0,0,9 +"10599",2013,21119,"KY","21","119",16090,0.987383467992542,1180,0.147793660658794,7.07326971745971,7.61035761831284,8.50126704086598,15.2461538461538,652.46202467122,64,9809,1,0,0,0,9 +"10600",2013,21121,"KY","21","121",31637,0.979833738976515,2253,0.123873945064323,7.72001794043224,8.28702502516506,9.14633504200027,12.8538461538462,612.289525475618,112,18292,1,0,0,0,9 +"10601",2013,21123,"KY","21","123",14029,0.956803763632476,824,0.138213700192458,6.71417052990947,7.41577697541539,8.31483217928456,8.09230769230769,412.271128895356,34,8247,1,0,0,0,9 +"10602",2013,21125,"KY","21","125",59714,0.980758281140101,3706,0.131912114412031,8.21770840684531,8.99924890168611,9.81307038241166,9.63846153846154,445.340727669944,159,35703,1,0,0,0,9 +"10603",2013,21127,"KY","21","127",15893,0.98986975397974,1009,0.142893097590134,6.91671502035361,7.62900388965296,8.47969898698866,11.1230769230769,750.13206550449,71,9465,1,0,0,0,9 +"10604",2013,21129,"KY","21","129",7147,0.977612984469008,394,0.144536169021967,5.97635090929793,6.81234509417748,7.6182510978767,12.3538461538462,612.557427258806,28,4571,1,0,0,0,9 +"10605",2013,21131,"KY","21","131",10995,0.991723510686676,693,0.142155525238745,6.5410299991899,7.25770767716004,8.12207437536222,17.4384615384615,870.078159563486,59,6781,1,0,0,0,9 +"10606",2013,21133,"KY","21","133",23536,0.990482664853841,1309,0.153467029231815,7.1770187659099,8.01367414283268,8.88377886146348,16.5461538461538,789.271495425019,113,14317,1,0,0,0,9 +"10607",2013,21135,"KY","21","135",13755,0.990985096328608,811,0.140530716103235,6.69826805411541,7.48380668766583,8.31287139434261,12.0461538461538,554.187192118227,45,8120,1,0,0,0,9 +"10608",2013,21137,"KY","21","137",24447,0.968544197652064,1377,0.132736123041682,7.22766249872865,8.06022424044096,8.8688354928269,10.5846153846154,517.253595975342,73,14113,1,0,0,0,9 +"10609",2013,21139,"KY","21","139",9333,0.981035036965606,519,0.160827172399014,6.25190388316589,6.97166860472579,7.92044650514261,9.78461538461538,511.042160978281,28,5479,1,0,0,0,9 +"10610",2013,21141,"KY","21","141",26989,0.919337507873578,1586,0.131238652784468,7.36897040219479,8.06274790108635,8.95557714628151,7.03076923076923,482.273201251303,74,15344,1,0,0,0,9 +"10611",2013,21143,"KY","21","143",8454,0.934350603264727,447,0.165010645848119,6.10255859461357,6.95749737087695,7.61134771740362,8.13846153846154,413.71158392435,21,5076,1,0,0,0,9 +"10612",2013,21145,"KY","21","145",65368,0.868177089707502,3721,0.144428466527965,8.22174772834662,8.98456836930828,9.87822102528824,7.80769230769231,556.182280872052,212,38117,1,0,0,0,9 +"10613",2013,21147,"KY","21","147",17938,0.92808562827517,1179,0.121808451332367,7.07242190053737,7.87739718635329,8.46674164792014,12.9615384615385,628.987330398059,70,11129,1,0,0,0,9 +"10614",2013,21149,"KY","21","149",9442,0.984854903622114,503,0.132387206100402,6.22059017009974,7.06902342657826,7.88908440703551,7.57692307692308,488.354620586026,26,5324,1,0,0,0,9 +"10615",2013,21151,"KY","21","151",85969,0.934325163721807,10825,0.111679791552769,9.28961355287069,9.29697667863573,10.195821289203,6.51538461538462,405.837969666946,213,52484,1,0,0,0,9 +"10616",2013,21153,"KY","21","153",12945,0.992584009269988,814,0.136809578988026,6.70196036600254,7.47363710849621,8.26796230533871,17.4,559.227249618709,44,7868,1,0,0,0,9 +"10617",2013,21155,"KY","21","155",19934,0.902277515802147,1194,0.123306912812281,7.08506429395255,7.85748078694253,8.60538720215215,8.05384615384615,512.088650100739,61,11912,1,0,0,0,9 +"10618",2013,21157,"KY","21","157",31218,0.989012749055032,1696,0.146934460887949,7.43602781635185,8.21878715560148,9.10308918122921,8.05384615384615,460.648278186619,82,17801,1,0,0,0,9 +"10619",2013,21159,"KY","21","159",12661,0.921096279914699,841,0.126530289866519,6.73459165997295,7.5234813125735,8.12946976478423,9.66923076923077,677.089745168041,55,8123,1,0,0,0,9 +"10620",2013,21161,"KY","21","161",17326,0.919427450075032,1014,0.140828812189773,6.92165818415113,7.67461749736436,8.54422453046727,9.92307692307692,637.323242381996,64,10042,1,0,0,0,9 +"10621",2013,21163,"KY","21","163",29245,0.938348435630022,2051,0.119268250983074,7.62608275807238,8.27384693278451,9.07669468710627,8.88461538461539,327.055373858126,58,17734,1,0,0,0,9 +"10622",2013,21165,"KY","21","165",6341,0.968143825894969,417,0.147610786942123,6.0330862217988,6.63594655568665,7.50108212425987,11.9384615384615,467.289719626168,17,3638,1,0,0,0,9 +"10623",2013,21167,"KY","21","167",21300,0.945962441314554,1170,0.144131455399061,7.0647590277918,7.83794891602528,8.74129628222515,7.78461538461538,418.032786885246,51,12200,1,0,0,0,9 +"10624",2013,21169,"KY","21","169",9952,0.974477491961415,608,0.138665594855305,6.41017488196617,7.03702761468628,7.95717732345947,7.73076923076923,635.593220338983,36,5664,1,0,0,0,9 +"10625",2013,21171,"KY","21","171",10712,0.971900672143391,609,0.140403286034354,6.4118182677099,7.13727843726039,8.02191277898571,7.06923076923077,670.482420278005,41,6115,1,0,0,0,9 +"10626",2013,21173,"KY","21","173",27243,0.961054215761847,1711,0.127225342289763,7.44483327389219,8.26975694753298,9.02665788954289,8.38461538461539,417.562173779552,68,16285,1,0,0,0,9 +"10627",2013,21175,"KY","21","175",13372,0.94802572539635,906,0.141414896799282,6.80903930604298,7.58933582317062,8.16848641712668,10.5,540.478380864765,47,8696,1,0,0,0,9 +"10628",2013,21177,"KY","21","177",31332,0.943380569385931,2065,0.135229158687604,7.63288550539513,8.30276158070405,9.08364271893022,9.29230769230769,554.52865064695,102,18394,1,0,0,0,9 +"10629",2013,21179,"KY","21","179",44541,0.936036460788936,2675,0.131227408455131,7.89170465933011,8.65312170864048,9.50755189464409,7.47692307692308,418.630963605506,111,26515,1,0,0,0,9 +"10630",2013,21181,"KY","21","181",7021,0.986184304230167,386,0.134881071072497,5.95583736946483,6.79234442747081,7.61972421378267,8.56153846153846,712.530712530712,29,4070,1,0,0,0,9 +"10631",2013,21183,"KY","21","183",23987,0.980364364030517,1388,0.131904781756785,7.23561914106675,7.99226864327075,8.8303968010981,9.2,547.845142439737,75,13690,1,0,0,0,9 +"10632",2013,21185,"KY","21","185",63078,0.928691461365294,3241,0.123371064396462,8.08363720314155,9.15767771939288,9.74290791786058,5.63076923076923,271.790317806302,101,37161,1,0,0,0,9 +"10633",2013,21187,"KY","21","187",10646,0.98093180537291,563,0.147755025361638,6.33327962813969,7.21817683840341,8.03138533062553,6.26153846153846,531.315408146836,33,6211,1,0,0,0,9 +"10634",2013,21189,"KY","21","189",4603,0.990006517488594,261,0.154898978926787,5.56452040732269,6.31173480915291,7.21964204013074,12.4923076923077,1011.56069364162,28,2768,1,0,0,0,9 +"10635",2013,21191,"KY","21","191",14569,0.987439082984419,972,0.141396115038781,6.87935580446044,7.53583046279837,8.37262974022488,8.29230769230769,562.809545249887,50,8884,1,0,0,0,9 +"10636",2013,21193,"KY","21","193",27989,0.973275215263139,1748,0.146378934581443,7.46622755621548,8.22469956196723,9.07555104562754,13.7692307692308,872.529758465272,151,17306,1,0,0,0,9 +"10637",2013,21195,"KY","21","195",63880,0.984329993738259,4213,0.145679398872887,8.34593026197902,9.06079573469617,9.88073056541351,11.7769230769231,698.97603879188,271,38771,1,0,0,0,9 +"10638",2013,21197,"KY","21","197",12470,0.987249398556536,757,0.134883720930233,6.62936325343745,7.4301141385618,8.22389538017882,10.6615384615385,735.884399250736,55,7474,1,0,0,0,9 +"10639",2013,21199,"KY","21","199",63815,0.975460314972969,3759,0.136817362689023,8.23190824356418,9.00307016981826,9.84527564278771,9.10769230769231,556.606322615509,206,37010,1,0,0,0,9 +"10640",2013,21203,"KY","21","203",16748,0.991043706711249,982,0.138882254597564,6.88959130835447,7.69938940625674,8.51959031601596,9.19230769230769,686.521958606764,68,9905,1,0,0,0,9 +"10641",2013,21205,"KY","21","205",24225,0.966357069143447,3965,0.107368421052632,8.28526113406895,7.85243908535751,8.91958692099992,8.23076923076923,397.683667062025,57,14333,1,0,0,0,9 +"10642",2013,21207,"KY","21","207",17759,0.983332394842052,1003,0.140604763781744,6.91075078796194,7.68616230349291,8.53856321715243,11.4538461538462,601.99348662785,61,10133,1,0,0,0,9 +"10643",2013,21209,"KY","21","209",50007,0.922950786889835,3282,0.116043753874458,8.09620827165004,8.94193791425636,9.64173310209426,6.02307692307692,346.077785102175,105,30340,1,0,0,0,9 +"10644",2013,21211,"KY","21","211",44507,0.898128384299099,2712,0.125912777765295,7.90544164906029,8.71489585024849,9.54473903165049,6.02307692307692,307.668933034527,81,26327,1,0,0,0,9 +"10645",2013,21213,"KY","21","213",17692,0.887802396563419,1069,0.127854397467782,6.97447891102505,7.7151236036321,8.5539107743514,7.43076923076923,427.516517683638,44,10292,1,0,0,0,9 +"10646",2013,21215,"KY","21","215",17645,0.971606687446869,904,0.13629923491074,6.80682936039218,7.8898337513943,8.59692815943509,6.36153846153846,295.393704421674,32,10833,1,0,0,0,9 +"10647",2013,21217,"KY","21","217",25125,0.931502487562189,2065,0.128517412935323,7.63288550539513,7.88608140177575,8.89658807179122,9.37692307692308,454.255092625452,64,14089,1,0,0,0,9 +"10648",2013,21219,"KY","21","219",12476,0.909345944212889,777,0.11678422571337,6.65544035036765,7.33171496972647,8.15737044118677,7.36153846153846,459.836183359678,32,6959,1,0,0,0,9 +"10649",2013,21221,"KY","21","221",14306,0.908290227876415,702,0.149657486369356,6.55393340402581,7.434847875212,8.30523682949259,8.95384615384615,591.41814521203,47,7947,1,0,0,0,9 +"10650",2013,21223,"KY","21","223",8808,0.979336966394187,503,0.133401453224342,6.22059017009974,7.07242190053737,7.83873755959928,8.22307692307692,464.936071290198,24,5162,1,0,0,0,9 +"10651",2013,21225,"KY","21","225",15078,0.855086881549277,1675,0.135097493036212,7.42356844425917,7.42177579364465,8.358666283188,7.63076923076923,428.603654410106,38,8866,1,0,0,0,9 +"10652",2013,21227,"KY","21","227",119640,0.86199431628218,14777,0.108801404212638,9.60082719690363,9.56864398890674,10.5152348548831,6.79230769230769,363.505687550967,263,72351,1,0,0,0,9 +"10653",2013,21229,"KY","21","229",11843,0.926792197922824,794,0.134256522840496,6.67708346124714,7.25488481007734,8.14060704285845,6.82307692307692,265.173836181497,18,6788,1,0,0,0,9 +"10654",2013,21231,"KY","21","231",20778,0.970642025218982,1265,0.145105399942247,7.14282740116162,7.86249719723055,8.70632484013874,11.8076923076923,487.563011321378,59,12101,1,0,0,0,9 +"10655",2013,21233,"KY","21","233",13359,0.940938693015944,848,0.143423908975223,6.7428806357919,7.454719949364,8.26898820950666,7.06153846153846,538.038038038038,43,7992,1,0,0,0,9 +"10656",2013,21235,"KY","21","235",35892,0.981806530703221,2899,0.125626880641926,7.97212112892166,8.36450810375059,9.26226846483654,10.4923076923077,666.859959408524,138,20694,1,0,0,0,9 +"10657",2013,21237,"KY","21","237",7282,0.991623180444933,385,0.138560834935457,5.95324333428778,6.74875954749168,7.6685611080159,14.0538461538462,672.268907563025,28,4165,1,0,0,0,9 +"10658",2013,21239,"KY","21","239",25344,0.934027777777778,1384,0.149897411616162,7.23273313617761,8.08886878916199,8.95982562386584,5.24615384615385,364.769863377106,55,15078,1,0,0,0,9 +"10659",2013,25001,"MA","25","001",214609,0.946800926335801,11015,0.169084241574212,9.30701325923644,9.90273727114542,11.0110430644347,8.25384615384615,359.032823427317,422,117538,1,0,0,0,9 +"10660",2013,25003,"MA","25","003",129542,0.942620926031712,8603,0.156181006932115,9.05986625862135,9.5353904808967,10.5577379674661,7.35384615384615,382.153813604147,289,75624,1,0,0,0,9 +"10661",2013,25005,"MA","25","005",552495,0.91808070661273,38233,0.130185793536593,10.5514542960155,11.1722644677276,12.0456456440714,8.61538461538461,352.611839862185,1179,334362,1,0,0,0,9 +"10662",2013,25007,"MA","25","007",17173,0.925464391777791,772,0.174168753275491,6.64898455002478,7.62364194651157,8.56044423341055,9.37692307692308,258.175559380379,27,10458,1,0,0,0,9 +"10663",2013,25009,"MA","25","009",764684,0.882542331211324,50286,0.135346103750046,10.825481987327,11.4545545516439,12.3719937809563,6.96153846153846,283.468709921405,1293,456135,1,0,0,0,9 +"10664",2013,25011,"MA","25","011",71399,0.958808946904018,4181,0.175030462611521,8.33830573135656,9.02557583353109,10.0195357508988,6.08461538461538,355.356374912293,157,44181,1,0,0,0,9 +"10665",2013,25013,"MA","25","013",467828,0.849502381217028,36001,0.130030695041767,10.4913019948302,10.9058642333234,11.8646662559727,8.56153846153846,352.097338579705,970,275492,1,0,0,0,9 +"10666",2013,25015,"MA","25","015",160969,0.903211177307432,24527,0.13247271213712,10.1075298305479,9.68862214266614,10.8702242198907,5.97692307692308,260.188182615799,258,99159,1,0,0,0,9 +"10667",2013,25017,"MA","25","017",1560625,0.826399038846616,104113,0.123736964357229,11.5532321267294,12.2488686903304,13.1102948447449,5.42307692307692,217.159854182363,2107,970253,1,0,0,0,9 +"10668",2013,25021,"MA","25","021",688518,0.825070659009641,40168,0.132378528956396,10.6008259377145,11.3971778564259,12.2743899555435,5.73076923076923,237.273459476063,981,413447,1,0,0,0,9 +"10669",2013,25023,"MA","25","023",502895,0.875632090197755,30255,0.140180355740264,10.3174167390564,11.0420414482972,11.9279778017143,6.91538461538462,327.034145614831,966,295382,1,0,0,0,9 +"10670",2013,25025,"MA","25","025",762863,0.636760466820386,83847,0.0989561690631214,11.336748988436,11.489380443645,12.4811442897047,6.11538461538461,237.429730195268,1213,510888,1,0,0,0,9 +"10671",2013,25027,"MA","25","027",810994,0.889704486099774,55798,0.131126740765036,10.9294933054331,11.5536834574424,12.4180986250305,7.11538461538461,293.299774697059,1445,492670,1,0,0,0,9 +"10672",2013,24001,"MD","24","001",73602,0.902176571288824,6710,0.129480177169099,8.81135422996573,9.06958293425992,9.89912806375868,8.40769230769231,438.51676815414,193,44012,1,0,0,0,9 +"10673",2013,24003,"MD","24","003",555638,0.782018148506762,37341,0.125889517995529,10.5278471976691,11.2004451076783,12.0569169698727,5.63846153846154,318.663537369349,1093,342995,1,0,0,0,9 +"10674",2013,24005,"MD","24","005",822426,0.651951664952227,56440,0.132140764032266,10.9409334059668,11.5200996687182,12.4672669951449,6.81538461538462,321.938099715877,1592,494505,1,0,0,0,9 +"10675",2013,24009,"MD","24","009",90486,0.835819905841788,5449,0.131976217315386,8.6031873845831,9.29890054895566,10.2249911734634,5.88461538461539,324.478908870923,177,54549,1,0,0,0,9 +"10676",2013,24011,"MD","24","011",32651,0.827846007779241,2064,0.133502802364399,7.63240112660145,8.28979058318164,9.19258365038692,6.86153846153846,447.310933111412,86,19226,1,0,0,0,9 +"10677",2013,24013,"MD","24","013",167264,0.941254543715324,10511,0.135163573751674,9.26017760682335,9.91422964906803,10.817114740324,5.42307692307692,320.930699027179,320,99710,1,0,0,0,9 +"10678",2013,24015,"MD","24","015",101940,0.910682754561507,6476,0.136266431234059,8.77585831479753,9.47047137534067,10.3454452970033,7.63846153846154,437.28237104219,270,61745,1,0,0,0,9 +"10679",2013,24017,"MD","24","017",152710,0.505382751620719,10192,0.115977997511623,9.22935837781194,9.96960295474299,10.7997592336962,6.40769230769231,301.217643051771,283,93952,1,0,0,0,9 +"10680",2013,24019,"MD","24","019",32563,0.692902988053926,1950,0.149894051530879,7.57558465155779,8.16507925880507,9.19593714166544,9.69230769230769,419.810819428207,79,18818,1,0,0,0,9 +"10681",2013,24021,"MD","24","021",241215,0.847741641274382,14644,0.125265841676513,9.59178597424013,10.3901331823004,11.2087616449921,5.7,284.038536382196,416,146459,1,0,0,0,9 +"10682",2013,24023,"MD","24","023",29981,0.982388846269304,1922,0.14962809779527,7.56112158953024,8.17075142375753,9.07988994259212,7.97692307692308,369.0036900369,64,17344,1,0,0,0,9 +"10683",2013,24025,"MD","24","025",248961,0.825269821377645,15243,0.13352292126076,9.63187566026184,10.3542127920492,11.2441567356297,6.46153846153846,311.881485035686,468,150057,1,0,0,0,9 +"10684",2013,24027,"MD","24","027",303590,0.630919990777035,16776,0.124836127672189,9.72770457258176,10.6592573575752,11.460073061066,4.77692307692308,174.065810888005,323,185562,1,0,0,0,9 +"10685",2013,24029,"MD","24","029",19833,0.826350022689457,1597,0.147229365199415,7.37588214821501,7.46794233228585,8.63905677917308,7.12307692307692,376.181301036792,41,10899,1,0,0,0,9 +"10686",2013,24031,"MD","24","031",1015534,0.64018043709024,55779,0.12766780826639,10.9291527334482,11.8652640203518,12.6767354324837,4.91538461538462,173.617004767193,1074,618603,1,0,0,0,9 +"10687",2013,24033,"MD","24","033",891020,0.26654620547238,69372,0.120281250701443,11.1472386068705,11.7159805881511,12.5884021782362,6.85384615384615,316.388872622869,1783,563547,1,0,0,0,9 +"10688",2013,24035,"MD","24","035",48535,0.910312145874111,2645,0.142495106624086,7.8804263442924,8.65747673686329,9.56373995778099,5.79230769230769,289.54802259887,82,28320,1,0,0,0,9 +"10689",2013,24037,"MD","24","037",109284,0.811491160645657,7540,0.115286775740273,8.927977461002,9.5450252980233,10.406139865613,5.90769230769231,347.017909141659,230,66279,1,0,0,0,9 +"10690",2013,24039,"MD","24","039",25968,0.550562230437461,3470,0.125231053604436,8.1519098729409,7.9707403900071,8.85637603673042,10.6461538461538,355.743141392825,59,16585,1,0,0,0,9 +"10691",2013,24041,"MD","24","041",37909,0.84547205149173,1850,0.15054472552692,7.52294091807237,8.25192471380136,9.27565983809682,6.36923076923077,300.581452646102,61,20294,1,0,0,0,9 +"10692",2013,24043,"MD","24","043",149055,0.863191439401563,9489,0.127013518499883,9.15788851197376,9.88154864501737,10.6579649882477,7.25384615384615,429.746926809768,387,90053,1,0,0,0,9 +"10693",2013,24045,"MD","24","045",100890,0.698602438299138,10814,0.123461195361285,9.28859686994195,9.31587087318565,10.3406451073768,8.66153846153846,403.05651188177,240,59545,1,0,0,0,9 +"10694",2013,24047,"MD","24","047",51551,0.836666602005781,2643,0.155554693410409,7.87966991460429,8.56293108309009,9.57637141083894,12.5230769230769,395.713685390111,113,28556,1,0,0,0,9 +"10695",2013,24510,"MD","24","510",622591,0.316652505416879,51986,0.120343853348346,10.8587297305452,11.219292387025,12.2526747032541,9.59230769230769,635.433738913267,2524,397209,1,0,0,0,9 +"10696",2013,23001,"ME","23","001",107267,0.942703720622372,6845,0.13656576579936,8.83127373772255,9.49016666846238,10.3869933656472,6.70769230769231,364.20233463035,234,64250,0,0,0,0,9 +"10697",2013,23003,"ME","23","003",70100,0.964265335235378,3929,0.162310984308131,8.27614021955846,8.9632882756103,9.91442749257446,8.66923076923077,423.79145518159,172,40586,0,0,0,0,9 +"10698",2013,23005,"ME","23","005",285681,0.940374053577242,17938,0.143576226630402,9.79467664667795,10.5025438096965,11.4040365094613,5.34615384615385,280.187019140418,492,175597,0,0,0,0,9 +"10699",2013,23007,"ME","23","007",30476,0.982937393358708,2220,0.160191626197664,7.70526247486633,8.06274790108635,9.12793654572137,7.76923076923077,383.653044203503,69,17985,0,0,0,0,9 +"10700",2013,23009,"ME","23","009",54589,0.975544523621975,2950,0.17318507391599,7.98956044933387,8.71735466633852,9.71008482573136,8.03076923076923,399.177081094359,130,32567,0,0,0,0,9 +"10701",2013,23011,"ME","23","011",121167,0.975050962720873,7417,0.154654320070646,8.91152994173656,9.57768815797122,10.5261854444054,6.28461538461538,400.081928039872,293,73235,0,0,0,0,9 +"10702",2013,23013,"ME","23","013",39693,0.980575920187439,1892,0.167460257476129,7.54538974961182,8.42814337458273,9.34136863438259,6,274.761219416459,63,22929,0,0,0,0,9 +"10703",2013,23015,"ME","23","015",34091,0.981138716963421,1592,0.169106215716758,7.37274636640433,8.20028826028755,9.18809476302886,6.92307692307692,372.527414869615,71,19059,0,0,0,0,9 +"10704",2013,23017,"ME","23","017",57420,0.980703587600139,2858,0.164524555903866,7.95787735848981,8.79467340138342,9.74572201363806,8.33846153846154,422.028095856451,143,33884,0,0,0,0,9 +"10705",2013,23019,"ME","23","019",153289,0.963650359777936,12903,0.143454520546158,9.46521512145185,9.77383434430926,10.7691163696081,6.9,368.261762153696,348,94498,0,0,0,0,9 +"10706",2013,23021,"ME","23","021",17176,0.976769911504425,721,0.179087098276665,6.58063913728495,7.52671756135271,8.50025047068593,8.87692307692308,348.217943465793,34,9764,0,0,0,0,9 +"10707",2013,23023,"ME","23","023",35031,0.974965030972567,1704,0.158859296052068,7.44073370738926,8.35537989525363,9.27911988737101,5.66923076923077,278.832748425556,58,20801,0,0,0,0,9 +"10708",2013,23025,"ME","23","025",51715,0.980353862515711,2612,0.157942569854008,7.86787149039632,8.75746914147075,9.6422526500992,9.24615384615385,387.458079640543,119,30713,0,0,0,0,9 +"10709",2013,23027,"ME","23","027",39041,0.980097845854358,2084,0.168591993032965,7.64204440287326,8.44376191333035,9.37475250822657,7.25384615384615,404.136972014601,93,23012,0,0,0,0,9 +"10710",2013,23029,"ME","23","029",32268,0.929124829552498,1675,0.167565389859923,7.42356844425917,8.16536363247398,9.1266326229027,9.33846153846154,510.453434699973,94,18415,0,0,0,0,9 +"10711",2013,23031,"ME","23","031",199539,0.972942632768531,11047,0.154270593718521,9.30991417687228,10.0904649208663,11.0206435064055,6.38461538461539,331.445702864757,398,120080,0,0,0,0,9 +"10712",2013,26001,"MI","26","001",10550,0.985308056872038,362,0.196113744075829,5.89164421182577,6.71052310945243,7.89058253465654,13.2538461538462,766.498410917929,41,5349,1,0,0,0,9 +"10713",2013,26003,"MI","26","003",9445,0.873160402329275,475,0.178401270513499,6.16331480403464,6.97634807044775,7.76811037852599,11.6538461538462,403.792134831461,23,5696,1,0,0,0,9 +"10714",2013,26005,"MI","26","005",112020,0.963881449741118,6446,0.1387877164792,8.77121506237538,9.52558897214577,10.3886876286631,6.60769230769231,328.714939633191,214,65102,1,0,0,0,9 +"10715",2013,26007,"MI","26","007",28964,0.981149012567325,1598,0.16137273857202,7.37650812632622,8.02518932189084,9.02509454366498,9.55384615384615,474.246608236283,79,16658,1,0,0,0,9 +"10716",2013,26009,"MI","26","009",23128,0.978381182981667,1035,0.168886198547215,6.94215670569947,7.70706265537047,8.74017672992908,11.3692307692308,438.351797242369,55,12547,1,0,0,0,9 +"10717",2013,26011,"MI","26","011",15411,0.975472065407826,832,0.172474206735449,6.72383244082121,7.35115822643069,8.37655086161377,12.8923076923077,542.556798914886,48,8847,1,0,0,0,9 +"10718",2013,26013,"MI","26","013",8716,0.762620468104635,519,0.150871959614502,6.25190388316589,6.99759598298193,7.67693714581808,14.3153846153846,438.847548177829,23,5241,1,0,0,0,9 +"10719",2013,26015,"MI","26","015",59094,0.98060716824043,3211,0.1489322096998,8.07433769408951,8.85366542803745,9.73127472989046,6.30769230769231,339.4890105066,116,34169,1,0,0,0,9 +"10720",2013,26017,"MI","26","017",106817,0.961410636883642,6877,0.147401630826554,8.83593778931984,9.4265801469736,10.3601209472187,8.62307692307692,402.411286602726,253,62871,1,0,0,0,9 +"10721",2013,26019,"MI","26","019",17340,0.969723183391003,810,0.161014994232987,6.69703424766648,7.52185925220163,8.48384321173468,10.2153846153846,434.782608695652,42,9660,1,0,0,0,9 +"10722",2013,26021,"MI","26","021",156205,0.80772702538331,9825,0.141704810985564,9.19268543673746,9.80620542972957,10.724456104534,8.6,397.266269400397,354,89109,1,0,0,0,9 +"10723",2013,26023,"MI","26","023",43582,0.963471157817448,2493,0.137350282226607,7.82124208352356,8.56445838388335,9.36734412078585,8.32307692307692,424.687437983727,107,25195,1,0,0,0,9 +"10724",2013,26025,"MI","26","025",134782,0.843287679363713,9018,0.13662803638468,9.10697785898103,9.6832148763136,10.5904154332822,7.8,504.618214801283,395,78277,1,0,0,0,9 +"10725",2013,26027,"MI","26","027",51601,0.911590860642236,2891,0.155617139202729,7.96935774201635,8.69383196507469,9.5979808951718,8.13076923076923,455.511691466748,135,29637,1,0,0,0,9 +"10726",2013,26029,"MI","26","029",26258,0.96679107319674,1307,0.167986899230711,7.17548971362422,7.87929148508227,8.91623773172148,10.6384615384615,298.305084745763,44,14750,1,0,0,0,9 +"10727",2013,26031,"MI","26","031",25573,0.948265749032182,1212,0.171469909670355,7.10002716662926,7.9298464297425,8.87486763568805,11.6461538461538,306.876830799275,44,14338,1,0,0,0,9 +"10728",2013,26033,"MI","26","033",38587,0.741104517065333,3422,0.130769430118952,8.13798045445214,8.51398806046729,9.21014035197352,10.3538461538462,333.91768928959,80,23958,1,0,0,0,9 +"10729",2013,26035,"MI","26","035",30598,0.978299235244134,1670,0.164389829400614,7.4205789054108,8.07121853996986,9.07004328643746,11.6076923076923,491.642084562439,85,17289,1,0,0,0,9 +"10730",2013,26037,"MI","26","037",76821,0.952552036552505,5572,0.137019825308184,8.6255093348997,9.14569517848265,10.0503546283457,5.98461538461538,295.366035093861,135,45706,1,0,0,0,9 +"10731",2013,26039,"MI","26","039",13878,0.976797809482634,654,0.169476869865975,6.4831073514572,7.18916773842032,8.25035895147729,11.3461538461538,551.564905079528,43,7796,1,0,0,0,9 +"10732",2013,26041,"MI","26","041",36806,0.957887300983535,2021,0.167173830353747,7.61134771740362,8.28500889544988,9.25311246382005,10.1615384615385,409.543311586266,86,20999,1,0,0,0,9 +"10733",2013,26043,"MI","26","043",26024,0.978020288964033,1359,0.159698739624962,7.21450441415114,7.89692465626886,8.90923527919226,8.21538461538461,278.662420382166,42,15072,1,0,0,0,9 +"10734",2013,26045,"MI","26","045",108288,0.894679004137116,6974,0.145048389479905,8.8499442272356,9.45022303929467,10.3976958704787,6.59230769230769,370.94521185783,239,64430,1,0,0,0,9 +"10735",2013,26047,"MI","26","047",32955,0.939553937187073,1843,0.162039144287665,7.51914995766982,8.21797820315073,9.17699039229463,11.7692307692308,314.597315436242,60,19072,1,0,0,0,9 +"10736",2013,26049,"MI","26","049",415713,0.762439471462283,28055,0.135605574037858,10.2419221481851,10.8415006364826,11.7435052984748,9.76153846153846,524.63738298529,1275,243025,1,0,0,0,9 +"10737",2013,26051,"MI","26","051",25562,0.984312651592207,1248,0.16458023628824,7.12929754892937,7.88004820097158,8.8378263640077,11.5769230769231,441.581004777762,61,13814,1,0,0,0,9 +"10738",2013,26053,"MI","26","053",15905,0.92052813580635,989,0.163659226658284,6.89669433162271,7.47477218239787,8.29554851622576,10.7230769230769,413.442171101452,39,9433,1,0,0,0,9 +"10739",2013,26055,"MI","26","055",90149,0.960676213823781,5454,0.149374923737368,8.60410456340553,9.29164382304022,10.200253243721,7.56923076923077,282.616325248906,153,54137,1,0,0,0,9 +"10740",2013,26057,"MI","26","057",41937,0.925388082123185,3445,0.122731716622553,8.14467918344776,8.58541243039338,9.29789326898404,8.8,337.381916329285,85,25194,1,0,0,0,9 +"10741",2013,26059,"MI","26","059",46138,0.980558325024925,3126,0.146365252069877,8.04750951098142,8.56159277871292,9.4801384753294,8.80769230769231,360.380865672774,95,26361,1,0,0,0,9 +"10742",2013,26061,"MI","26","061",36691,0.947970892044371,5572,0.119266305088441,8.6255093348997,8.11790894238315,9.13335133044805,8.76923076923077,278.471288649894,58,20828,1,0,0,0,9 +"10743",2013,26063,"MI","26","063",32251,0.983163312765496,1585,0.163684846981489,7.36833968631138,8.09407314806935,9.07360384840271,8.27692307692308,443.297233600808,79,17821,1,0,0,0,9 +"10744",2013,26065,"MI","26","065",284226,0.789428131135083,41113,0.117262319421869,10.6240796521747,10.3376696847418,11.4111252705072,7.57692307692308,332.877000244261,586,176041,1,0,0,0,9 +"10745",2013,26067,"MI","26","067",64001,0.934282276839424,4451,0.126935516632553,8.40088406901585,9.07589427542326,9.75115189123243,7.88461538461538,343.887714292992,135,39257,1,0,0,0,9 +"10746",2013,26069,"MI","26","069",25433,0.973223764400582,1117,0.176660244564149,7.0184017990692,7.73193072194849,8.82482493917564,11.3307692307692,607.791446983011,83,13656,1,0,0,0,9 +"10747",2013,26071,"MI","26","071",11506,0.974882669911351,456,0.192508256561794,6.12249280951439,6.90475076996184,8.01466637046494,10.0615384615385,584.415584415584,36,6160,1,0,0,0,9 +"10748",2013,26073,"MI","26","073",70240,0.902391799544419,15472,0.101067767653759,9.64678721769308,8.75904072752422,10.0236677127922,7.13846153846154,249.410178631614,111,44505,1,0,0,0,9 +"10749",2013,26075,"MI","26","075",159672,0.891834510747031,10934,0.138371160879804,9.29963247945494,9.89065557372075,10.7156170493279,8.15384615384615,402.760588198276,384,95342,1,0,0,0,9 +"10750",2013,26077,"MI","26","077",257399,0.83783542282604,32325,0.11934778301392,10.3835962036401,10.2914334244254,11.28370096209,6.79230769230769,304.656528445232,478,156898,1,0,0,0,9 +"10751",2013,26079,"MI","26","079",17296,0.974849676225717,877,0.154717853839038,6.77650699237218,7.58882987830781,8.4898219946201,11.1076923076923,503.930659141302,50,9922,1,0,0,0,9 +"10752",2013,26081,"MI","26","081",624409,0.846107279043063,46637,0.118918849664243,10.7501494964856,11.2517554870586,12.1527457057395,6.18461538461538,290.270704904851,1083,373100,1,0,0,0,9 +"10753",2013,26085,"MI","26","085",11395,0.887318999561211,429,0.189469065379552,6.06145691892802,7.00033446027523,8.03398273468322,13.1384615384615,477.251034043907,30,6286,1,0,0,0,9 +"10754",2013,26087,"MI","26","087",88299,0.974031415984326,5199,0.152040226956138,8.55622157838371,9.2679486845965,10.1571215108483,11.3307692307692,357.265022234047,188,52622,1,0,0,0,9 +"10755",2013,26089,"MI","26","089",21475,0.943701979045402,1007,0.189802095459837,6.91473089271856,7.51316354523408,8.67914195840225,7.63846153846154,336.526016049702,39,11589,1,0,0,0,9 +"10756",2013,26091,"MI","26","091",98850,0.953687405159332,6661,0.142427921092564,8.80402490241318,9.4093551517118,10.2395311258658,7.76153846153846,376.068963148676,219,58234,1,0,0,0,9 +"10757",2013,26093,"MI","26","093",184238,0.976731184663316,10071,0.146457299797002,9.21741528564814,10.0500092051989,10.914742949986,7.36153846153846,286.787795182691,316,110186,1,0,0,0,9 +"10758",2013,26097,"MI","26","097",11002,0.780676240683512,491,0.182057807671332,6.19644412779452,7.0647590277918,8.02289686960146,13.1153846153846,500.565154206362,31,6193,1,0,0,0,9 +"10759",2013,26099,"MI","26","099",857146,0.848077223716846,55433,0.134350507381473,10.9229303632657,11.6276817022684,12.4809467956004,9.39230769230769,387.234067295001,1998,515967,1,0,0,0,9 +"10760",2013,26101,"MI","26","101",24484,0.932486521810162,1378,0.173827805914066,7.2283884515736,7.83676478326407,8.77709288285557,10.5,418.825867821396,59,14087,1,0,0,0,9 +"10761",2013,26103,"MI","26","103",67792,0.949743332546613,8003,0.146683974510267,8.98757175036705,8.86686366120209,9.91936090169242,8.1,331.555427418192,138,41622,1,0,0,0,9 +"10762",2013,26105,"MI","26","105",28680,0.967433751743375,1629,0.163912133891213,7.39572160860205,7.99967857949945,9.00196227286245,9.1,513.010692873478,83,16179,1,0,0,0,9 +"10763",2013,26107,"MI","26","107",43266,0.944529191512966,5889,0.126935700087829,8.68084148294457,8.29129585190541,9.41303628802129,9.93846153846154,408.228608020491,102,24986,1,0,0,0,9 +"10764",2013,26109,"MI","26","109",23734,0.957529282885312,1150,0.171863149911519,7.0475172213573,7.81601383915903,8.79754848848156,7.66923076923077,425.594364543587,58,13628,1,0,0,0,9 +"10765",2013,26111,"MI","26","111",83683,0.951877920246645,5605,0.136981226772463,8.63141433550626,9.19471899107323,10.1199689609768,7.63076923076923,260.206551557205,129,49576,1,0,0,0,9 +"10766",2013,26113,"MI","26","113",15059,0.978152599774221,811,0.147951391194634,6.69826805411541,7.3664451483276,8.32093496888341,9.13846153846154,442.424967117063,37,8363,1,0,0,0,9 +"10767",2013,26115,"MI","26","115",150193,0.960351015027331,9237,0.147377041539885,9.13097243659261,9.82401135103433,10.7103651234231,7.31538461538462,413.716197379426,371,89675,1,0,0,0,9 +"10768",2013,26117,"MI","26","117",62801,0.960398719765609,3738,0.135682552825592,8.22630598801551,8.97487117097134,9.76376560936099,9.47692307692308,413.544939445205,154,37239,1,0,0,0,9 +"10769",2013,26119,"MI","26","119",9381,0.985076217887219,326,0.20243044451551,5.78689738136671,6.69084227741856,7.81802793853073,15.9153846153846,733.544805709754,37,5044,1,0,0,0,9 +"10770",2013,26121,"MI","26","121",172312,0.824086540693626,11606,0.136566228701425,9.35927748475055,9.93663215112843,10.8205579803684,9.8,411.970074812968,413,100250,1,0,0,0,9 +"10771",2013,26123,"MI","26","123",47880,0.969340016708438,2841,0.145572263993317,7.95191138185419,8.57922858233569,9.5162797606988,8.76153846153846,398.741586186714,109,27336,1,0,0,0,9 +"10772",2013,26125,"MI","26","125",1235656,0.778359834776022,72318,0.138971526055795,11.1888283398164,12.0027684855422,12.8582207325554,7.73076923076923,305.143619858323,2277,746206,1,0,0,0,9 +"10773",2013,26127,"MI","26","127",26296,0.968588378460602,1459,0.14435655613021,7.28550654852279,7.92334821193015,8.86587628542542,12.3153846153846,374.583795782464,54,14416,1,0,0,0,9 +"10774",2013,26129,"MI","26","129",21160,0.979347826086956,1091,0.171502835538752,6.99484998583307,7.64826303090192,8.68202943386917,11.6769230769231,606.060606060606,71,11715,1,0,0,0,9 +"10775",2013,26131,"MI","26","131",6322,0.974058842138564,172,0.20752926289149,5.14749447681345,6.29710931993394,7.4121603349452,13.7153846153846,587.371512481645,20,3405,1,0,0,0,9 +"10776",2013,26133,"MI","26","133",23324,0.977062253472818,1269,0.145558223289316,7.14598446771439,7.85088266480985,8.75746914147075,9.87692307692308,387.837418554142,50,12892,1,0,0,0,9 +"10777",2013,26135,"MI","26","135",8369,0.983749551917792,370,0.180905723503405,5.91350300563827,6.5694814204143,7.69575799055476,15.4692307692308,539.811066126856,24,4446,1,0,0,0,9 +"10778",2013,26137,"MI","26","137",24082,0.974171580433519,1374,0.151731583755502,7.2254814727823,7.87929148508227,8.84793475332846,10.3384615384615,465.556121335564,64,13747,1,0,0,0,9 +"10779",2013,26139,"MI","26","139",274394,0.940352194289963,26160,0.115221178305648,10.1719868055711,10.3838127308537,11.2846939921071,6.02307692307692,192.860360217475,304,157627,1,0,0,0,9 +"10780",2013,26141,"MI","26","141",13011,0.97778802551687,524,0.193374836676658,6.26149168432104,7.06133436691044,8.146419323098,14.6230769230769,343.347639484979,24,6990,1,0,0,0,9 +"10781",2013,26143,"MI","26","143",24021,0.977519670288498,987,0.196369843053994,6.89467003943348,7.62119516280984,8.77400360020093,13.7615384615385,640.024976584452,82,12812,1,0,0,0,9 +"10782",2013,26145,"MI","26","145",196859,0.775646528733764,14795,0.139648174581807,9.60204456483431,10.0116242111407,10.9749512986185,8.96153846153846,400.305496299808,456,113913,1,0,0,0,9 +"10783",2013,26147,"MI","26","147",160312,0.95558036828185,9672,0.146495583611957,9.17699039229463,9.88292763857077,10.7694108770465,11.4230769230769,437.2010703525,415,94922,1,0,0,0,9 +"10784",2013,26149,"MI","26","149",60987,0.949972945053864,3693,0.134274517520127,8.21419441485256,8.85865296954849,9.74396413201815,7.67692307692308,401.793513072847,138,34346,1,0,0,0,9 +"10785",2013,26151,"MI","26","151",41902,0.98205336260799,2220,0.152975991599446,7.70526247486633,8.44095988541665,9.36134324551271,10.3923076923077,468.743341713896,110,23467,1,0,0,0,9 +"10786",2013,26153,"MI","26","153",8259,0.887516648504662,357,0.179319530209468,5.87773578177964,6.76503897678054,7.75190533307861,12.6923076923077,282.179292381159,13,4607,1,0,0,0,9 +"10787",2013,26155,"MI","26","155",68927,0.978484483584082,4310,0.142368012535001,8.36869318309779,9.02183976410551,9.91965613369771,9.30769230769231,461.341096363547,187,40534,1,0,0,0,9 +"10788",2013,26157,"MI","26","157",54214,0.975541373077065,3246,0.150422400118051,8.08517874807454,8.74001669151952,9.65643545617024,10.4384615384615,375.773651635721,119,31668,1,0,0,0,9 +"10789",2013,26159,"MI","26","159",75335,0.929063516293887,4335,0.148111767438773,8.37447688921464,9.09324460009994,9.99597557197128,9.99230769230769,408.238154213109,178,43602,1,0,0,0,9 +"10790",2013,26161,"MI","26","161",356474,0.762521249796619,46964,0.116771489645809,10.7571366297501,10.6511939385854,11.6399721271054,5.76923076923077,232.51048969738,522,224506,1,0,0,0,9 +"10791",2013,26163,"MI","26","163",1780131,0.554796809897699,133314,0.130167386557506,11.8004625269085,12.3242111735472,13.2139374959058,11.3923076923077,521.70033283328,5519,1057887,1,0,0,0,9 +"10792",2013,26165,"MI","26","165",32477,0.975613511100163,1821,0.14379406964929,7.50714107972761,8.21446516075919,9.13345932764022,10.9692307692308,499.248443203779,93,18628,1,0,0,0,9 +"10793",2013,27001,"MN","27","001",15874,0.961824366889253,570,0.177397001385914,6.3456363608286,7.18916773842032,8.28778002708843,7.56153846153846,382.244143033292,31,8110,1,0,0,0,9 +"10794",2013,27003,"MN","27","003",339120,0.887644491625383,19853,0.126055673507903,9.89611040819708,10.7381559965232,11.5486014414227,5.10769230769231,245.800117639745,514,209113,1,0,0,0,9 +"10795",2013,27005,"MN","27","005",33189,0.893880502576155,1672,0.151857543161891,7.42177579364465,8.15392513200786,9.09829086816756,5.57692307692308,462.733432490497,84,18153,1,0,0,0,9 +"10796",2013,27007,"MN","27","007",45505,0.751917371717394,4686,0.124272058015603,8.45233461906774,8.41383067842108,9.46676394852519,6.33846153846154,408.241864047757,106,25965,1,0,0,0,9 +"10797",2013,27009,"MN","27","009",38985,0.953956649993587,2696,0.110837501603181,7.8995244720322,8.48363640788739,9.3472286240383,6.00769230769231,296.246138219984,70,23629,1,0,0,0,9 +"10798",2013,27013,"MN","27","013",64749,0.93321904585399,10677,0.10858854963011,9.2758471741783,8.76795190976342,9.87215167222628,4.21538461538462,185.038981545446,75,40532,1,0,0,0,9 +"10799",2013,27015,"MN","27","015",25267,0.985316816400839,1695,0.139984960620572,7.43543801981455,7.80791662892641,8.8405801884888,5.27692307692308,298.380221653879,42,14076,1,0,0,0,9 +"10800",2013,27017,"MN","27","017",35265,0.907103360272225,1930,0.140791152700978,7.56527528189893,8.39434736141739,9.16261963576477,6.06153846153846,388.396068089187,81,20855,1,0,0,0,9 +"10801",2013,27019,"MN","27","019",95562,0.94803373725958,4770,0.115589878822126,8.47010158388239,9.53416149104384,10.254778026198,4.36923076923077,172.684181776533,98,56751,1,0,0,0,9 +"10802",2013,27021,"MN","27","021",28488,0.857905082841898,1358,0.162033136759337,7.21376830811864,7.9287663216267,8.92119055624937,8.39230769230769,464.842215529658,71,15274,1,0,0,0,9 +"10803",2013,27023,"MN","27","023",12060,0.962189054726368,669,0.146600331674959,6.50578406012823,7.08170858610557,8.09498875930377,5.2,391.625244765778,26,6639,1,0,0,0,9 +"10804",2013,27025,"MN","27","025",53665,0.966421317432218,3003,0.128072300381999,8.00736706798333,8.8688354928269,9.63521587360417,5.66153846153846,243.654196095364,79,32423,1,0,0,0,9 +"10805",2013,27027,"MN","27","027",60567,0.943484075486651,7149,0.107566826819885,8.87472776576685,8.82408948279182,9.78863771085719,4.35384615384615,250.689395838556,90,35901,1,0,0,0,9 +"10806",2013,27029,"MN","27","029",8784,0.885587431693989,461,0.141621129326047,6.13339804299665,6.89669433162271,7.74889133725553,10.7307692307692,354.90605427975,17,4790,1,0,0,0,9 +"10807",2013,27033,"MN","27","033",11558,0.948433985118533,563,0.141200899809656,6.33327962813969,7.10249935577465,7.99328232810159,5.91538461538462,429.468120251074,26,6054,1,0,0,0,9 +"10808",2013,27035,"MN","27","035",63008,0.974098527171153,3413,0.145473590655155,8.13534694890671,8.79875658285984,9.76634966431749,7.04615384615385,384.571558796718,135,35104,1,0,0,0,9 +"10809",2013,27037,"MN","27","037",407974,0.880200699064156,22866,0.125885473093874,10.0374063701019,10.9127402547822,11.7432193913133,4.61538461538461,201.67214790901,501,248423,1,0,0,0,9 +"10810",2013,27039,"MN","27","039",20341,0.979991150877538,1022,0.120938006980974,6.92951677076365,7.91169052070834,8.64523454129712,4.8,217.070417643484,25,11517,1,0,0,0,9 +"10811",2013,27041,"MN","27","041",36350,0.98302613480055,2160,0.14544704264099,7.67786350067821,8.2602342916073,9.20593066348748,4.50769230769231,260.916654359277,53,20313,1,0,0,0,9 +"10812",2013,27043,"MN","27","043",14098,0.982763512554972,694,0.15633423180593,6.5424719605068,7.26122509197192,8.22147894726719,5.47692307692308,390.015600624025,30,7692,1,0,0,0,9 +"10813",2013,27045,"MN","27","045",20753,0.987712619862189,1046,0.1436900689057,6.95272864462487,7.72046169459972,8.61577075477723,5.08461538461538,212.445782066035,24,11297,1,0,0,0,9 +"10814",2013,27047,"MN","27","047",30924,0.96779200620877,1639,0.140861466821886,7.40184157874383,8.08794755464267,9.02376980089281,5.06923076923077,282.369551150068,48,16999,1,0,0,0,9 +"10815",2013,27049,"MN","27","049",46135,0.960854015389617,2362,0.145486073480004,7.76726399675731,8.55275336681479,9.4777687154007,4.75384615384615,235.983709511666,62,26273,1,0,0,0,9 +"10816",2013,27053,"MN","27","053",1198531,0.776689964631703,79518,0.123878314369841,11.2837386901087,11.9642940350468,12.8463094354332,4.65384615384615,242.516024325734,1832,755414,1,0,0,0,9 +"10817",2013,27055,"MN","27","055",18780,0.980990415335463,920,0.156389776357827,6.82437367004309,7.60638738977265,8.57659353469768,5.09230769230769,195.932076880015,21,10718,1,0,0,0,9 +"10818",2013,27057,"MN","27","057",20694,0.957523919976805,898,0.163863921909732,6.8001700683022,7.61628356158038,8.62640627638955,7.33846153846154,385.373722889407,43,11158,1,0,0,0,9 +"10819",2013,27059,"MN","27","059",38066,0.971260442389534,2133,0.127646718856723,7.66528471847135,8.44612674298238,9.30082072510456,6.1,356.20463956543,80,22459,1,0,0,0,9 +"10820",2013,27061,"MN","27","061",45334,0.944655225658446,2285,0.166519610005735,7.7341213033283,8.48549610467298,9.43827244002219,7.8,418.491864831039,107,25568,1,0,0,0,9 +"10821",2013,27063,"MN","27","063",10284,0.970342279268767,553,0.143329443796188,6.31535800152233,7.0352685992811,7.90544164906029,4.20769230769231,211.267605633803,12,5680,1,0,0,0,9 +"10822",2013,27065,"MN","27","065",16015,0.978832344676865,815,0.155229472369653,6.70318811324086,7.53208814354172,8.40200678160712,8.25384615384615,337.874659400545,31,9175,1,0,0,0,9 +"10823",2013,27067,"MN","27","067",42463,0.945811647787486,2905,0.141841132279867,7.97418866928601,8.41316512099219,9.38479775371334,4.82307692307692,210.752510434315,51,24199,1,0,0,0,9 +"10824",2013,27071,"MN","27","071",13091,0.956687800779161,638,0.177984875105034,6.45833828334479,7.21744343169653,8.20385137218388,8.42307692307692,521.390374331551,39,7480,1,0,0,0,9 +"10825",2013,27075,"MN","27","075",10706,0.980291425368952,485,0.172426676629927,6.18414889093748,6.97354301952014,7.97590836016554,6.30769230769231,534.31290699616,32,5989,1,0,0,0,9 +"10826",2013,27079,"MN","27","079",27710,0.981089859256586,1331,0.137784193431974,7.19368581839511,8.12029131396856,8.95544812234739,6.17692307692308,294.966737793398,47,15934,1,0,0,0,9 +"10827",2013,27083,"MN","27","083",25727,0.928946243246395,2009,0.120340498309169,7.60539236481493,7.96901178110648,8.89137400948464,4.19230769230769,292.159260769126,43,14718,1,0,0,0,9 +"10828",2013,27085,"MN","27","085",35896,0.978047693336305,1943,0.126755070202808,7.57198844937744,8.39026849784257,9.21423278669153,5.69230769230769,344.081793157688,70,20344,1,0,0,0,9 +"10829",2013,27087,"MN","27","087",5468,0.525603511338698,307,0.128017556693489,5.7268477475872,6.3026189757449,7.23777819192344,5.84615384615385,464.451589853519,13,2799,1,0,0,0,9 +"10830",2013,27091,"MN","27","091",20424,0.981100665883275,1019,0.156580493537015,6.92657703322272,7.60887062919126,8.60849534982302,5.35384615384615,312.304809494066,35,11207,1,0,0,0,9 +"10831",2013,27093,"MN","27","093",23091,0.984669351695466,1141,0.146290762634793,7.03966034986208,7.84971375760487,8.73327184500832,5.63076923076923,249.415432579891,32,12830,1,0,0,0,9 +"10832",2013,27095,"MN","27","095",25651,0.919379361428404,1346,0.130092394058711,7.20489251020467,8.01433573729942,8.8627667422838,7.59230769230769,401.662049861496,58,14440,1,0,0,0,9 +"10833",2013,27097,"MN","27","097",32862,0.983689367658694,1722,0.142596311849553,7.45124168498768,8.20001364817543,9.11250701162742,6.82307692307692,331.834724898309,62,18684,1,0,0,0,9 +"10834",2013,27099,"MN","27","099",39328,0.9302532546786,2311,0.12644934906428,7.74543561027438,8.42024166533979,9.25941620962278,4.53076923076923,275.16624627379,60,21805,1,0,0,0,9 +"10835",2013,27103,"MN","27","103",32996,0.951478967147533,3045,0.12531822039035,8.021256180144,8.22737550683403,9.17419492533983,3.8,191.715856919429,38,19821,1,0,0,0,9 +"10836",2013,27105,"MN","27","105",21799,0.867012248268269,1489,0.120510115142896,7.30586003268401,7.79234892411304,8.62909228391365,4.1,258.807814326265,31,11978,1,0,0,0,9 +"10837",2013,27109,"MN","27","109",148911,0.873421036726635,8539,0.122341532861911,9.05239918390761,9.83070178281048,10.7175905080657,4.06923076923077,214.446952595937,190,88600,1,0,0,0,9 +"10838",2013,27111,"MN","27","111",57503,0.970923256177939,2879,0.158443907274403,7.96519829061218,8.60373779281642,9.63626148865173,5.34615384615385,391.370752195494,123,31428,1,0,0,0,9 +"10839",2013,27113,"MN","27","113",14155,0.952949487813493,965,0.130625220770046,6.87212810133899,7.42117752859539,8.30498958014036,6.39230769230769,316.455696202532,26,8216,1,0,0,0,9 +"10840",2013,27115,"MN","27","115",29077,0.930047804106338,1442,0.145888502940468,7.2737863178449,8.16308637558322,8.94023623179847,7.01538461538462,336.915480685449,58,17215,1,0,0,0,9 +"10841",2013,27117,"MN","27","117",9306,0.958091553836235,456,0.133892112615517,6.12249280951439,6.86589107488344,7.7873820264847,4.67692307692308,346.091205211726,17,4912,1,0,0,0,9 +"10842",2013,27119,"MN","27","119",31652,0.952988752685454,2245,0.134778213067105,7.71646080017636,8.10319175228579,9.06346317611542,5.46153846153846,335.758254057079,60,17870,1,0,0,0,9 +"10843",2013,27121,"MN","27","121",10876,0.982714233173961,509,0.158146377344612,6.23244801655052,7.03966034986208,7.96032362914884,4.33076923076923,300.751879699248,18,5985,1,0,0,0,9 +"10844",2013,27123,"MN","27","123",527261,0.72040033304189,42379,0.122087542981559,10.654408235508,11.0309949928577,12.0075851207712,4.96923076923077,284.949082868799,915,321110,1,0,0,0,9 +"10845",2013,27127,"MN","27","127",15687,0.907566775036655,800,0.136099955377064,6.68461172766793,7.37274636640433,8.30474226964077,5.56923076923077,396.539293439077,33,8322,1,0,0,0,9 +"10846",2013,27129,"MN","27","129",15070,0.973125414731254,722,0.151360318513603,6.58202513889283,7.33953769540767,8.27690348126706,6.6,286.978357048906,24,8363,1,0,0,0,9 +"10847",2013,27131,"MN","27","131",64645,0.923505298166912,6370,0.119266764637636,8.75935474856621,8.94819608331224,9.79840477608298,5.03076923076923,254.651283650348,98,38484,1,0,0,0,9 +"10848",2013,27135,"MN","27","135",15497,0.9490223914306,761,0.138801058269342,6.63463335786169,7.53476265703754,8.34498036877057,4.46923076923077,325.989208633094,29,8896,1,0,0,0,9 +"10849",2013,27137,"MN","27","137",200503,0.941512097075854,18397,0.152172286698952,9.81994288682578,9.96646235169752,10.9785241046755,6.13846153846154,379.932290933773,459,120811,1,0,0,0,9 +"10850",2013,27139,"MN","27","139",137280,0.88548951048951,6592,0.101376748251748,8.79361207158931,9.98349949050551,10.6210102222374,4.45384615384615,167.303723423742,137,81887,1,0,0,0,9 +"10851",2013,27141,"MN","27","141",90086,0.955875496747552,5301,0.106209621916835,8.57565076098781,9.49777241317275,10.1692307174692,5.41538461538462,223.025030412504,121,54254,1,0,0,0,9 +"10852",2013,27143,"MN","27","143",15057,0.98047419804742,778,0.132762170419074,6.65672652417839,7.47760424319759,8.31581113188354,5.58461538461538,308.532099204937,26,8427,1,0,0,0,9 +"10853",2013,27145,"MN","27","145",152612,0.928020077058161,17238,0.1151285613189,9.75487152820734,9.72172583900069,10.6960727453021,4.97692307692308,216.240070609003,196,90640,1,0,0,0,9 +"10854",2013,27147,"MN","27","147",36379,0.954699139613513,1902,0.128123367877072,7.55066124310534,8.37793112408273,9.22217012372976,4.63846153846154,242.259799408886,50,20639,1,0,0,0,9 +"10855",2013,27153,"MN","27","153",24476,0.978386991338454,1295,0.150187939205753,7.16626597413364,7.82244472948932,8.76295892076673,5.4,261.369576581286,35,13391,1,0,0,0,9 +"10856",2013,27157,"MN","27","157",21567,0.982148653034729,1067,0.147262020679742,6.97260625130175,7.79523492900217,8.70417055974639,4.66923076923077,327.922610263978,40,12198,1,0,0,0,9 +"10857",2013,27159,"MN","27","159",13637,0.973014592652343,765,0.134633717093202,6.63987583382654,7.23705902612474,8.15737044118677,7.07692307692308,446.864962993995,32,7161,1,0,0,0,9 +"10858",2013,27161,"MN","27","161",19040,0.955987394957983,1031,0.136029411764706,6.93828448401696,7.80057265467065,8.70847448958166,5.58461538461538,274.360562881671,31,11299,1,0,0,0,9 +"10859",2013,27163,"MN","27","163",246002,0.89082609084479,13123,0.131864781587142,9.48212169489629,10.3894875548665,11.213670011899,4.49230769230769,209.458864041539,309,147523,1,0,0,0,9 +"10860",2013,27165,"MN","27","165",11046,0.959351801557125,602,0.138240086909288,6.40025744530882,7.0825485693553,7.97418866928601,5.34615384615385,400.4004004004,24,5994,1,0,0,0,9 +"10861",2013,27169,"MN","27","169",51349,0.951858848273579,7989,0.125065726693801,8.98582087448204,8.49105453380654,9.6423824949348,4.43076923076923,225.348485336252,70,31063,1,0,0,0,9 +"10862",2013,27171,"MN","27","171",128235,0.966241665691894,6231,0.106546574648107,8.73729211254422,9.84267541313937,10.5111585407436,5.11538461538461,204.611843256559,152,74287,1,0,0,0,9 +"10863",2013,29001,"MO","29","001",25728,0.948616293532338,5160,0.101873445273632,8.54869185847561,7.72929567431048,8.97739897818186,6.92307692307692,313.766505425546,48,15298,0,0,0,0,9 +"10864",2013,29003,"MO","29","003",17306,0.979833583728187,1007,0.143129550444932,6.91473089271856,7.68386398025643,8.51719319141624,5.39230769230769,438.421681944998,44,10036,0,0,0,0,9 +"10865",2013,29007,"MO","29","007",25565,0.914453354195189,1568,0.130295325640524,7.35755620091035,8.06871619271478,9.0400264343065,6.39230769230769,513.617625194296,76,14797,0,0,0,0,9 +"10866",2013,29009,"MO","29","009",35335,0.961879156643555,1964,0.143144191311731,7.58273848891441,8.26565016558033,9.19044374026173,6.89230769230769,515.25144270404,100,19408,0,0,0,0,9 +"10867",2013,29011,"MO","29","011",12183,0.969629812033161,691,0.13592711154888,6.53813982376767,7.18311170174328,8.10319175228579,7.25384615384615,483.164728974785,32,6623,0,0,0,0,9 +"10868",2013,29013,"MO","29","013",16425,0.975159817351598,808,0.135890410958904,6.6945620585211,7.48549160803075,8.41913925094085,7.69230769230769,396.563119629874,36,9078,0,0,0,0,9 +"10869",2013,29015,"MO","29","015",18960,0.98285864978903,782,0.183122362869198,6.66185474054531,7.45818615734049,8.52018870039604,8.59230769230769,651.172109797636,65,9982,0,0,0,0,9 +"10870",2013,29017,"MO","29","017",12487,0.982942259950348,734,0.145271081925202,6.59850902861452,7.2841348061952,8.18507147753228,7.15384615384615,388.780894196057,28,7202,0,0,0,0,9 +"10871",2013,29019,"MO","29","019",171060,0.842119724073425,27078,0.104764410148486,10.2064768690551,9.87266745519624,10.9414825110279,4.54615384615385,267.101808634772,293,109696,0,0,0,0,9 +"10872",2013,29021,"MO","29","021",89871,0.910482803128929,6976,0.124055590791245,8.85023096558882,9.28023949935585,10.1638498143329,6.26923076923077,439.159641973241,236,53739,0,0,0,0,9 +"10873",2013,29023,"MO","29","023",42979,0.923590590753624,2624,0.135205565508737,7.87245515006398,8.53719187792293,9.43978403583887,7.96153846153846,663.626740493445,163,24562,0,0,0,0,9 +"10874",2013,29025,"MO","29","025",9036,0.9800796812749,473,0.139774236387782,6.15909538849193,6.93731408122368,7.81197342962202,6.75384615384615,358.565737051793,18,5020,0,0,0,0,9 +"10875",2013,29027,"MO","29","027",44546,0.934270192609886,3622,0.129978000269384,8.19478163844336,8.61359368570255,9.46203250669481,6.06923076923077,446.824224519941,121,27080,0,0,0,0,9 +"10876",2013,29029,"MO","29","029",44334,0.979519104975865,2068,0.176568773401904,7.63433723562832,8.35255436947459,9.42875274891449,9.38461538461539,427.965927328094,104,24301,0,0,0,0,9 +"10877",2013,29031,"MO","29","031",77495,0.896367507581134,8199,0.124472546615911,9.01176747459618,9.06623902800193,10.0629668670814,5.80769230769231,333.929896547209,153,45818,0,0,0,0,9 +"10878",2013,29033,"MO","29","033",9054,0.968743096973713,499,0.136845593108019,6.21260609575152,6.99301512293296,7.81197342962202,7.39230769230769,541.516245487365,27,4986,0,0,0,0,9 +"10879",2013,29035,"MO","29","035",6342,0.97682119205298,387,0.142226426994639,5.95842469302978,6.55250788703459,7.50273821075485,9.66153846153846,417.130144605117,15,3596,0,0,0,0,9 +"10880",2013,29037,"MO","29","037",100712,0.938289379617126,5614,0.125734768448646,8.63301875692183,9.4774625304626,10.2886138896488,6.36153846153846,371.295717954056,214,57636,0,0,0,0,9 +"10881",2013,29039,"MO","29","039",13776,0.982215447154472,638,0.142276422764228,6.45833828334479,7.27239839257005,8.18339736999843,7.1,521.200169037893,37,7099,0,0,0,0,9 +"10882",2013,29041,"MO","29","041",7640,0.968586387434555,370,0.148429319371728,5.91350300563827,6.64118216974059,7.5999019592085,6.32307692307692,441.609421000981,18,4076,0,0,0,0,9 +"10883",2013,29043,"MO","29","043",80675,0.973734118376201,4377,0.119181902696002,8.3841188371909,9.31280670352067,10.0843497115937,5.50769230769231,295.934122490993,138,46632,0,0,0,0,9 +"10884",2013,29045,"MO","29","045",6901,0.986813505289089,342,0.147369946384582,5.8348107370626,6.62804137617953,7.52886925664225,7.99230769230769,626.141403600313,24,3833,0,0,0,0,9 +"10885",2013,29047,"MO","29","047",230401,0.899740018489503,13703,0.118515110611499,9.5253700659462,10.3857902373689,11.1639777319472,6.13076923076923,286.439919767962,397,138598,0,0,0,0,9 +"10886",2013,29049,"MO","29","049",20569,0.968496280810929,1101,0.135786863726968,7.00397413672268,7.81923445385907,8.67334187390617,6.68461538461538,461.854259322614,54,11692,0,0,0,0,9 +"10887",2013,29051,"MO","29","051",76732,0.857530104780274,4972,0.1313793462962,8.5115774526306,9.19380440333608,10.0113998097305,5.29230769230769,366.992166541474,171,46595,0,0,0,0,9 +"10888",2013,29053,"MO","29","053",17612,0.90955030660913,1325,0.132012264365206,7.18916773842032,7.59287028784482,8.46273700562018,6.99230769230769,420.489296636086,44,10464,0,0,0,0,9 +"10889",2013,29055,"MO","29","055",24530,0.984386465552385,1392,0.13611903791276,7.23849684089437,7.9536697786498,8.84534519642173,8.63076923076923,552.922590837283,77,13926,0,0,0,0,9 +"10890",2013,29057,"MO","29","057",7531,0.976231576151905,355,0.162262647722746,5.87211778947542,6.69208374250663,7.61134771740362,6.89230769230769,558.387958242292,23,4119,0,0,0,0,9 +"10891",2013,29059,"MO","29","059",16468,0.97935389846976,816,0.147194559145009,6.70441435496411,7.49331724886215,8.42617379302907,8.7,471.284524331434,43,9124,0,0,0,0,9 +"10892",2013,29061,"MO","29","061",8295,0.985533453887884,483,0.138155515370705,6.18001665365257,6.84161547647759,7.68662133494462,6.28461538461538,542.618132489261,24,4423,0,0,0,0,9 +"10893",2013,29063,"MO","29","063",12638,0.870390884633645,886,0.119401804082925,6.78671695060508,7.58273848891441,7.84384863815247,6.06153846153846,424.728645587541,36,8476,0,0,0,0,9 +"10894",2013,29065,"MO","29","065",15745,0.976691013020006,810,0.138647189583995,6.69703424766648,7.42237370098682,8.37401542173991,7.61538461538461,576.169624337405,50,8678,0,0,0,0,9 +"10895",2013,29067,"MO","29","067",13449,0.981411257342553,643,0.161722061119786,6.46614472423762,7.2034055210831,8.21012440516427,9.46923076923077,459.95670995671,34,7392,0,0,0,0,9 +"10896",2013,29069,"MO","29","069",31738,0.879545024891297,1948,0.126063394038692,7.57455848420248,8.21635833238616,9.10642325855641,10,699.862322166131,122,17432,0,0,0,0,9 +"10897",2013,29071,"MO","29","071",101717,0.977978115752529,6259,0.134539949074393,8.7417757069247,9.38488174145117,10.3051119612584,7.26923076923077,400.69453719781,240,59896,0,0,0,0,9 +"10898",2013,29073,"MO","29","073",14816,0.985758639308855,770,0.151390388768898,6.64639051484773,7.36137542897735,8.30992298925832,6.39230769230769,567.221819937244,47,8286,0,0,0,0,9 +"10899",2013,29075,"MO","29","075",6733,0.985444824001188,386,0.126540917867221,5.95583736946483,6.56526497003536,7.50163445788341,5.29230769230769,413.678985107557,15,3626,0,0,0,0,9 +"10900",2013,29077,"MO","29","077",283750,0.930442290748899,30773,0.117332158590308,10.3343929611261,10.3997374648497,11.3733989948693,5.56923076923077,385.961450286424,665,172297,0,0,0,0,9 +"10901",2013,29079,"MO","29","079",10346,0.976705973323023,672,0.127198917456022,6.51025834052315,6.91174730025167,7.91899248816525,5.90769230769231,385.674931129477,21,5445,0,0,0,0,9 +"10902",2013,29081,"MO","29","081",8717,0.982448089939199,445,0.136859011127682,6.09807428216624,6.79122146272619,7.72929567431048,7.38461538461539,546.448087431694,25,4575,0,0,0,0,9 +"10903",2013,29083,"MO","29","083",22118,0.972285016728456,1172,0.139660005425445,7.06646697013696,7.80343505695217,8.72955886955857,7.2,472.697636511817,58,12270,0,0,0,0,9 +"10904",2013,29085,"MO","29","085",9349,0.981923200342283,363,0.171355225157771,5.89440283426485,6.68210859744981,7.78821155784708,10.0538461538462,410.278557546966,19,4631,0,0,0,0,9 +"10905",2013,29089,"MO","29","089",10240,0.92890625,862,0.13916015625,6.75925527066369,6.92461239604856,7.97590836016554,6.50769230769231,358.484124274496,21,5858,0,0,0,0,9 +"10906",2013,29091,"MO","29","091",40234,0.977158622060944,2404,0.129020231644877,7.7848892956551,8.46989191829822,9.33617975681533,7.90769230769231,551.520043045467,123,22302,0,0,0,0,9 +"10907",2013,29093,"MO","29","093",10459,0.972941963858878,577,0.148484558753227,6.3578422665081,7.10578612948127,7.99564360428727,10.7307692307692,723.905723905724,43,5940,0,0,0,0,9 +"10908",2013,29095,"MO","29","095",680063,0.71718502550499,45742,0.123939987912885,10.7307721920253,11.3509358071482,12.2587694545301,7.72307692307692,435.999124108902,1792,411010,0,0,0,0,9 +"10909",2013,29097,"MO","29","097",116814,0.932850514493126,8524,0.117682811991713,9.05064099321851,9.58850279755634,10.448366716427,5.88461538461539,476.751030017657,324,67960,0,0,0,0,9 +"10910",2013,29099,"MO","29","099",220923,0.97483738678182,13369,0.132113903939382,9.50069387298312,10.2804503001716,11.1192604609778,6.86923076923077,395.482741222212,533,134772,0,0,0,0,9 +"10911",2013,29101,"MO","29","101",54331,0.915260164546944,8699,0.0982680237801623,9.07096335550754,8.62998601889136,9.67834199855124,7.31538461538462,301.645611205686,101,33483,0,0,0,0,9 +"10912",2013,29105,"MO","29","105",35672,0.972415339762279,2053,0.126345593182328,7.62705741701893,8.36427508499152,9.22029070282935,9.7,402.985074626866,81,20100,0,0,0,0,9 +"10913",2013,29107,"MO","29","107",32828,0.959424881198977,1979,0.134427927379067,7.59034694560257,8.25400859056484,9.14388000527591,6.5,449.582530507386,84,18684,0,0,0,0,9 +"10914",2013,29109,"MO","29","109",38109,0.974467973444593,2033,0.126794195596841,7.61726781362835,8.43032725839458,9.25827302573149,6.65384615384615,525.460972580491,110,20934,0,0,0,0,9 +"10915",2013,29111,"MO","29","111",10110,0.953412462908012,836,0.123837784371909,6.7286286130847,6.96413561241824,7.93128476152589,5.60769230769231,478.468899521531,27,5643,0,0,0,0,9 +"10916",2013,29113,"MO","29","113",53784,0.964970995091477,3226,0.123531161683772,8.07899825868515,8.83185793519791,9.67627322685144,7.64615384615385,359.179558272157,114,31739,0,0,0,0,9 +"10917",2013,29115,"MO","29","115",12330,0.98110300081103,633,0.141930251419303,6.45047042214418,7.22983877815125,8.12474302038557,8.9,374.981250937453,25,6667,0,0,0,0,9 +"10918",2013,29117,"MO","29","117",14878,0.956244118833177,897,0.127772550073935,6.7990558620588,7.54062152865715,8.48322267184508,5.7,304.307116104869,26,8544,0,0,0,0,9 +"10919",2013,29119,"MO","29","119",22651,0.912410048121496,1361,0.125115888923226,7.21597500265147,7.9355873855892,8.75479176370003,6.48461538461538,643.11173097784,83,12906,0,0,0,0,9 +"10920",2013,29121,"MO","29","121",15463,0.961133027226282,799,0.137166138524219,6.68336094576627,7.43602781635185,8.3291754420774,6.59230769230769,409.78666988068,34,8297,0,0,0,0,9 +"10921",2013,29123,"MO","29","123",12272,0.977591264667536,732,0.133719035202086,6.59578051396131,7.26752542782817,8.16280135349207,7.73846153846154,836.940836940837,58,6930,0,0,0,0,9 +"10922",2013,29125,"MO","29","125",9031,0.983169084265308,472,0.145941756173181,6.15697898558556,6.89669433162271,7.83161727635261,6.63846153846154,491.159135559921,25,5090,0,0,0,0,9 +"10923",2013,29127,"MO","29","127",28781,0.927521628852368,2000,0.132240019457281,7.60090245954208,8.1199938277251,9.03872133831536,6.06153846153846,537.60193295077,89,16555,0,0,0,0,9 +"10924",2013,29131,"MO","29","131",24805,0.978754283410603,1369,0.140455553315864,7.22183582528845,7.96554557312999,8.86092472971904,8.83076923076923,533.632916725179,76,14242,0,0,0,0,9 +"10925",2013,29133,"MO","29","133",14189,0.742687997744732,924,0.12086827824371,6.82871207164168,7.54908271081229,8.20111164444276,7.87692307692308,516.613831161207,44,8517,0,0,0,0,9 +"10926",2013,29135,"MO","29","135",15748,0.948501397002794,953,0.114363728727457,6.8596149036542,7.65491704784832,8.31115254800169,6.40769230769231,391.644908616188,36,9192,0,0,0,0,9 +"10927",2013,29137,"MO","29","137",8768,0.959055656934307,426,0.150319343065693,6.05443934626937,6.83087423464618,7.76387128782022,7.42307692307692,311.655931851236,15,4813,0,0,0,0,9 +"10928",2013,29139,"MO","29","139",11852,0.970553493081337,634,0.145545055686804,6.45204895443723,7.16703787691222,8.08764028777898,7.28461538461538,498.790810157195,33,6616,0,0,0,0,9 +"10929",2013,29141,"MO","29","141",20123,0.975301893355861,1026,0.152213884609651,6.93342302573071,7.56992765524265,8.57262789830434,9.54615384615385,598.802395209581,64,10688,0,0,0,0,9 +"10930",2013,29143,"MO","29","143",18315,0.825825825825826,1061,0.138301938301938,6.96696713861398,7.70300768247924,8.59600437184053,7.93846153846154,742.5035697287,78,10505,0,0,0,0,9 +"10931",2013,29145,"MO","29","145",58396,0.92990958284814,3690,0.12937529967806,8.21338173703457,8.82614739914356,9.71147923015263,6.09230769230769,502.895458701615,165,32810,0,0,0,0,9 +"10932",2013,29147,"MO","29","147",23165,0.950787826462335,4719,0.101661990071228,8.45935219172639,7.5973963202128,8.80522520263231,6.62307692307692,247.822700559371,35,14123,0,0,0,0,9 +"10933",2013,29149,"MO","29","149",10937,0.972570174636555,587,0.15278412727439,6.3750248198281,7.01301578963963,8.00636756765025,8.01538461538462,854.84411666108,51,5966,0,0,0,0,9 +"10934",2013,29151,"MO","29","151",13679,0.990057752759705,879,0.128298852255282,6.77878489768518,7.44249272279444,8.21500643276157,5.03076923076923,254.679740226665,20,7853,0,0,0,0,9 +"10935",2013,29153,"MO","29","153",9512,0.983284272497897,459,0.170206055508831,6.12905021006055,6.78445706263764,7.83241092718792,10.4461538461538,650.630914826498,33,5072,0,0,0,0,9 +"10936",2013,29155,"MO","29","155",17782,0.71802946800135,1145,0.125239005736138,7.04315991598834,7.6251071482389,8.55140136274597,10.4307692307692,983.673055471048,97,9861,0,0,0,0,9 +"10937",2013,29157,"MO","29","157",19047,0.981256890848953,1113,0.134929385205019,7.01481435127554,7.75705114203201,8.58988587680968,5.48461538461538,367.140890316659,40,10895,0,0,0,0,9 +"10938",2013,29159,"MO","29","159",42197,0.940611891840652,2863,0.124440126075313,7.95962530509811,8.46989191829822,9.39781529401093,6.63076923076923,359.489277302591,87,24201,0,0,0,0,9 +"10939",2013,29161,"MO","29","161",45030,0.926404619142794,5609,0.116633355540751,8.63212772950834,8.45680604140114,9.44264186107516,7.07692307692308,422.211331850567,112,26527,0,0,0,0,9 +"10940",2013,29163,"MO","29","163",18607,0.913419680765303,1260,0.1265115279196,7.13886699994552,7.73499619402278,8.42989086301344,6.57692307692308,458.097547830773,51,11133,0,0,0,0,9 +"10941",2013,29165,"MO","29","165",93435,0.890704768020549,5548,0.130561352812115,8.62119278143472,9.46358626710684,10.2680612192682,5.70769230769231,242.769685454929,138,56844,0,0,0,0,9 +"10942",2013,29167,"MO","29","167",31126,0.970571226627257,2683,0.117618711045428,7.89469085042562,8.14844566624324,9.0687768076544,7.18461538461538,537.760112228197,92,17108,0,0,0,0,9 +"10943",2013,29169,"MO","29","169",54151,0.807058041402744,8116,0.0708758841018633,9.0015927009457,8.74321260347591,9.54973690011464,8.00769230769231,301.941483740451,100,33119,0,0,0,0,9 +"10944",2013,29171,"MO","29","171",4887,0.986699406588909,264,0.14487415592388,5.57594910314632,6.19847871649231,7.13409372119287,5.99230769230769,465.296626599457,12,2579,0,0,0,0,9 +"10945",2013,29173,"MO","29","173",10168,0.977871754523997,470,0.154897718332022,6.1527326947041,7.09174211509515,7.96102146588337,5.86923076923077,325.398184620654,19,5839,0,0,0,0,9 +"10946",2013,29175,"MO","29","175",24953,0.922694665972027,1782,0.123832805674668,7.48549160803075,8.07837810362652,8.82202732268558,8.27692307692308,521.251002405774,78,14964,0,0,0,0,9 +"10947",2013,29177,"MO","29","177",23065,0.971255148493388,1261,0.138564925211359,7.13966033596492,7.92804560087478,8.79133399330135,7.78461538461538,515.424846509513,68,13193,0,0,0,0,9 +"10948",2013,29179,"MO","29","179",6456,0.974907063197026,275,0.147304832713755,5.61677109766657,6.56807791141198,7.4770384723197,9.53076923076923,817.131586362356,29,3549,0,0,0,0,9 +"10949",2013,29181,"MO","29","181",13996,0.978708202343527,831,0.133538153758217,6.72262979485545,7.38709023565676,8.27868216297091,9.34615384615385,706.486833654464,55,7785,0,0,0,0,9 +"10950",2013,29183,"MO","29","183",374378,0.919399644209863,23405,0.12318565727687,10.0607049537342,10.8159710460673,11.6410987786932,5.36153846153846,247.133871615292,554,224170,0,0,0,0,9 +"10951",2013,29185,"MO","29","185",9499,0.978524055163701,444,0.157279713654069,6.09582456243222,6.86589107488344,7.79358680337158,7.85384615384615,632.536074322989,32,5059,0,0,0,0,9 +"10952",2013,29186,"MO","29","186",17951,0.977327168402874,1020,0.151802128015152,6.92755790627832,7.6226639513236,8.52694548285892,7.3,364.718303100106,38,10419,0,0,0,0,9 +"10953",2013,29187,"MO","29","187",66118,0.941816146888896,4702,0.12300735049457,8.45574322910002,9.08862461329209,9.77599503202085,8.64615384615385,481.525157232704,196,40704,0,0,0,0,9 +"10954",2013,29189,"MO","29","189",1000746,0.710634866389673,62920,0.137526405301645,11.0496193571722,11.6755798852887,12.642270623674,6.29230769230769,357.134968814404,2102,588573,0,0,0,0,9 +"10955",2013,29195,"MO","29","195",23362,0.909468367434295,1892,0.12751476757127,7.54538974961182,7.84227877911735,8.78676220844109,6.03076923076923,430.578637256383,57,13238,0,0,0,0,9 +"10956",2013,29201,"MO","29","201",39228,0.870016314877129,2541,0.131028856938921,7.84031298332016,8.45212119467252,9.35953593833804,7.2,522.100792000354,118,22601,0,0,0,0,9 +"10957",2013,29203,"MO","29","203",8289,0.975509711666063,466,0.150440342622753,6.14418563412565,6.72142570079064,7.72973533138505,9.66153846153846,685.959271168274,32,4665,0,0,0,0,9 +"10958",2013,29205,"MO","29","205",6150,0.983414634146341,298,0.143739837398374,5.6970934865054,6.48920493132532,7.40427911803727,5.62307692307692,388.291517323775,13,3348,0,0,0,0,9 +"10959",2013,29207,"MO","29","207",29802,0.978793369572512,1791,0.133917186765989,7.49052940206071,8.20412493257404,9.05415428878685,8.92307692307692,530.848177421258,90,16954,0,0,0,0,9 +"10960",2013,29209,"MO","29","209",31672,0.980645364991159,1358,0.175959838343016,7.21376830811864,8.01895468315572,9.07096335550754,10.7,500.35739814153,84,16788,0,0,0,0,9 +"10961",2013,29213,"MO","29","213",53298,0.961011670231528,3840,0.134601673608766,8.25322764558177,8.69550672681265,9.65252306301951,10.8153846153846,465.730800990917,141,30275,0,0,0,0,9 +"10962",2013,29215,"MO","29","215",25699,0.945367524028172,1558,0.13988871162302,7.35115822643069,7.95787735848981,8.80926561216931,8.27692307692308,470.861198307629,69,14654,0,0,0,0,9 +"10963",2013,29217,"MO","29","217",20988,0.972984562607204,1238,0.136030112445207,7.12125245324454,7.74673290775362,8.68202943386917,5.97692307692308,476.479251494412,55,11543,0,0,0,0,9 +"10964",2013,29219,"MO","29","219",32987,0.960590535665565,1800,0.132173280383181,7.49554194388426,8.24905227417129,9.15472194821317,6.89230769230769,439.362659467471,83,18891,0,0,0,0,9 +"10965",2013,29221,"MO","29","221",25145,0.964247365281368,1474,0.135653211374031,7.29573507274928,8.10681603894705,8.86967937473351,9.81538461538462,725.264488655266,109,15029,0,0,0,0,9 +"10966",2013,29223,"MO","29","223",13476,0.982635796972395,709,0.150118729593351,6.56385552653213,7.24850407237061,8.2380082492184,8.32307692307692,697.518443997317,52,7455,0,0,0,0,9 +"10967",2013,29225,"MO","29","225",36630,0.974447174447174,2031,0.121676221676222,7.61628356158038,8.43988008831357,9.21233837463886,6.81538461538462,336.04441630546,69,20533,0,0,0,0,9 +"10968",2013,29229,"MO","29","229",18335,0.981292609762749,1008,0.133569675484047,6.91572344863131,7.56682847920833,8.5173931714189,8.49230769230769,543.478260869565,54,9936,0,0,0,0,9 +"10969",2013,29510,"MO","29","510",318624,0.463825700512202,26539,0.124221653108366,10.1863706282012,10.606659318618,11.5793871356696,8.40769230769231,510.089552238806,1068,209375,0,0,0,0,9 +"10970",2013,28001,"MS","28","001",32127,0.45114701030286,2015,0.148815637936938,7.60837447438078,8.26950076718061,9.11866358340428,9.26923076923077,618.053391503064,119,19254,0,0,0,0,9 +"10971",2013,28003,"MS","28","003",37299,0.867744443550765,2306,0.125874688329446,7.743269700829,8.49678638163858,9.28451977015043,7.70769230769231,635.603121932981,136,21397,0,0,0,0,9 +"10972",2013,28005,"MS","28","005",12856,0.580584940883634,720,0.158602986932172,6.5792512120101,7.18462915271731,8.20028826028755,9.08461538461538,583.090379008746,42,7203,0,0,0,0,9 +"10973",2013,28007,"MS","28","007",19116,0.565651810002093,1139,0.13125130780498,7.03790596344718,7.68799716639302,8.59803557926034,9.29230769230769,483.231854643858,50,10347,0,0,0,0,9 +"10974",2013,28009,"MS","28","009",8503,0.619428437022227,505,0.130542161590027,6.22455842927536,6.95749737087695,7.80669637252118,10.4076923076923,608.272506082725,30,4932,0,0,0,0,9 +"10975",2013,28011,"MS","28","011",33986,0.337227093509092,2992,0.122403342552816,8.00369733909437,8.24012129807647,9.2620785673806,10.6153846153846,719.716168271668,142,19730,0,0,0,0,9 +"10976",2013,28013,"MS","28","013",14707,0.709050112191473,858,0.136261644115047,6.75460409948796,7.4899708988348,8.35561499576018,8.37692307692308,567.290283645142,47,8285,0,0,0,0,9 +"10977",2013,28015,"MS","28","015",10326,0.65746658919233,627,0.155432887855898,6.44094654063292,7.05531284333975,7.96276393016811,10.4923076923077,433.98430979803,26,5991,0,0,0,0,9 +"10978",2013,28017,"MS","28","017",17381,0.552960128876359,1205,0.12766814337495,7.09423484592476,7.60589000105312,8.52158353971753,10.6307692307692,505.816894284269,50,9885,0,0,0,0,9 +"10979",2013,28019,"MS","28","019",8460,0.694208037825059,478,0.138297872340426,6.16961073249146,6.85856503479136,7.77611547709874,8.48461538461538,536.365586783952,25,4661,0,0,0,0,9 +"10980",2013,28021,"MS","28","021",9144,0.137685914260717,1189,0.132108486439195,7.08086789669078,6.79346613258001,7.9098566672694,16.8769230769231,602.409638554217,32,5312,0,0,0,0,9 +"10981",2013,28023,"MS","28","023",16414,0.645972949920799,1001,0.139027659315219,6.90875477931522,7.54380286750151,8.49310539588715,9.89230769230769,518.078791149487,48,9265,0,0,0,0,9 +"10982",2013,28025,"MS","28","025",20365,0.404419346918733,1449,0.136803339062116,7.27862894232068,7.77275271646874,8.72939712269206,15.3538461538462,608.606206068918,71,11666,0,0,0,0,9 +"10983",2013,28027,"MS","28","027",25196,0.232775043657723,1982,0.120614383235434,7.59186171488993,7.88306935130575,8.9440283252606,12.8230769230769,793.197084464771,111,13994,0,0,0,0,9 +"10984",2013,28029,"MS","28","029",28941,0.476659410524861,2181,0.134445941743547,7.68753876620163,8.06557942728209,9.05742226555147,10.4307692307692,643.492903536204,107,16628,0,0,0,0,9 +"10985",2013,28031,"MS","28","031",19214,0.632039138128448,1315,0.125273238263766,7.18159194461187,7.71690613529839,8.61758136544751,7.82307692307692,642.437591776799,70,10896,0,0,0,0,9 +"10986",2013,28033,"MS","28","033",168502,0.737860678211535,10360,0.108799895550201,9.24570751581347,10.1452958290795,10.8496671292691,5.86153846153846,382.658212511611,379,99044,0,0,0,0,9 +"10987",2013,28035,"MS","28","035",76614,0.605959746260475,9308,0.102083170177774,9.13862952442218,9.07429152751291,10.0875991728766,8.36153846153846,523.425433327613,244,46616,0,0,0,0,9 +"10988",2013,28037,"MS","28","037",7874,0.643002286004572,426,0.144272288544577,6.05443934626937,6.82762923450285,7.71423114484909,9.18461538461538,497.512437810945,22,4422,0,0,0,0,9 +"10989",2013,28039,"MS","28","039",23223,0.906773457348318,1654,0.112431641045515,7.41095187558364,8.01035958891978,8.77152528418647,9.38461538461539,630.01575039376,84,13333,0,0,0,0,9 +"10990",2013,28041,"MS","28","041",14286,0.722455550888982,1068,0.113537729245415,6.97354301952014,7.69757534680234,8.09132127353041,10.1230769230769,449.197860962567,42,9350,0,0,0,0,9 +"10991",2013,28043,"MS","28","043",21542,0.567217528548881,1503,0.132671061182806,7.31521838975297,7.86748856869913,8.79270146293631,8.77692307692308,875.431692233556,109,12451,0,0,0,0,9 +"10992",2013,28045,"MS","28","045",45561,0.898356050130594,2726,0.141831829854481,7.91059061225648,8.61486421858968,9.5124429670892,7.79230769230769,494.190433076807,131,26508,0,0,0,0,9 +"10993",2013,28047,"MS","28","047",196255,0.71438179918983,15425,0.119227535604188,9.64374484877359,10.0949753044463,10.9963164831152,7.46153846153846,513.720403855446,606,117963,0,0,0,0,9 +"10994",2013,28049,"MS","28","049",246313,0.275559958264485,21237,0.118824422584273,9.9635002224423,10.2765672005001,11.2739700626087,8.41538461538462,503.542684185183,732,145370,0,0,0,0,9 +"10995",2013,28051,"MS","28","051",18801,0.164991223871071,1646,0.114727940003191,7.40610338123702,7.58528107863913,8.62640627638955,16.6461538461538,618.921308576481,63,10179,0,0,0,0,9 +"10996",2013,28053,"MS","28","053",8965,0.238148354712772,631,0.127272727272727,6.44730586254121,6.84800527457636,7.8935720735049,17.0538461538462,833.664152441445,42,5038,0,0,0,0,9 +"10997",2013,28057,"MS","28","057",23378,0.92950637351356,1742,0.123492172127641,7.46278915741245,7.96831950001272,8.80026465131034,7.97692307692308,601.911067639756,80,13291,0,0,0,0,9 +"10998",2013,28059,"MS","28","059",140393,0.745286445905423,9289,0.126808316653964,9.13658618338752,9.81482025981996,10.6541958436206,8.83076923076923,464.268147846012,387,83357,0,0,0,0,9 +"10999",2013,28061,"MS","28","061",16490,0.466585809581565,1069,0.143480897513645,6.97447891102505,7.5251007461258,8.47365918939251,9.88461538461539,570.997629821159,53,9282,0,0,0,0,9 +"11000",2013,28063,"MS","28","063",7658,0.133716375032646,603,0.137764429354923,6.40191719672719,6.79234442747081,7.72797554210556,19.1461538461538,536.480686695279,25,4660,0,0,0,0,9 +"11001",2013,28065,"MS","28","065",11945,0.389451653411469,805,0.144244453746337,6.69084227741856,7.25841215059531,8.18896686364888,12.5461538461538,756.803958666861,52,6871,0,0,0,0,9 +"11002",2013,28067,"MS","28","067",68982,0.69312284364037,4706,0.125873416253515,8.45659356928731,8.99454475832451,9.89827398548324,7.00769230769231,560.468942821884,218,38896,0,0,0,0,9 +"11003",2013,28069,"MS","28","069",10295,0.351918406993686,795,0.13035454103934,6.67834211465433,7.11558212618445,7.96831950001272,12.8153846153846,512.908189434091,30,5849,0,0,0,0,9 +"11004",2013,28071,"MS","28","071",51624,0.730532310553231,9127,0.0965248721524872,9.11899233251688,8.62568878756954,9.70143256605178,7.11538461538461,354.70923177448,114,32139,0,0,0,0,9 +"11005",2013,28073,"MS","28","073",59209,0.779205863973382,4364,0.107500548903038,8.38114434695296,9.01845321031253,9.83177670498213,5.87692307692308,330.698951852475,118,35682,0,0,0,0,9 +"11006",2013,28075,"MS","28","075",80276,0.554773531316957,6079,0.126065075489561,8.71259548774872,9.16209505934819,10.0803777193329,8.29230769230769,560.655667544029,262,46731,0,0,0,0,9 +"11007",2013,28077,"MS","28","077",12599,0.681085800460354,743,0.13953488372093,6.61069604471776,7.26262860097424,8.20166019080868,9.20769230769231,705.882352941176,51,7225,0,0,0,0,9 +"11008",2013,28079,"MS","28","079",23261,0.506942951721766,1572,0.118954473152487,7.36010397298915,7.91022370709734,8.76748487464946,8.5,695.203874394626,89,12802,0,0,0,0,9 +"11009",2013,28081,"MS","28","081",84981,0.69968581212271,5506,0.116496628658171,8.61359368570255,9.30882731869084,10.1573542764932,7.93076923076923,518.018933084143,255,49226,0,0,0,0,9 +"11010",2013,28083,"MS","28","083",30759,0.255209857277545,2564,0.118404369452843,7.84932381804056,8.14670905220332,9.14718755697091,14.1692307692308,671.473388739061,122,18169,0,0,0,0,9 +"11011",2013,28085,"MS","28","085",34728,0.684231743837825,2280,0.130586270444598,7.73193072194849,8.38845031552351,9.24619002486988,7.63846153846154,573.394495412844,115,20056,0,0,0,0,9 +"11012",2013,28087,"MS","28","087",59826,0.546284224250326,4872,0.124745094106241,8.49125980938973,8.861350110796,9.82319898130729,9.23846153846154,491.081508241138,174,35432,0,0,0,0,9 +"11013",2013,28089,"MS","28","089",99531,0.584471169786298,6239,0.125227316112568,8.73857519211079,9.51672152186045,10.3589484469655,5.82307692307692,386.447679648199,232,60034,0,0,0,0,9 +"11014",2013,28091,"MS","28","091",26064,0.665745856353591,1691,0.128913443830571,7.43307534889858,8.05769419481559,8.93445510940391,9.37692307692308,810.557341907824,121,14928,0,0,0,0,9 +"11015",2013,28093,"MS","28","093",36478,0.512034651022534,2659,0.142798399035035,7.88570539124302,8.39818440483404,9.28961355287069,10.0923076923077,679.224778119906,150,22084,0,0,0,0,9 +"11016",2013,28095,"MS","28","095",36154,0.684018365879294,2369,0.133844111301654,7.77022320415879,8.38685668968823,9.27734460075666,11.7,472.471314241635,98,20742,0,0,0,0,9 +"11017",2013,28097,"MS","28","097",10575,0.535981087470449,701,0.13645390070922,6.55250788703459,7.01660968389422,8.04205641005875,11.2230769230769,806.180718844474,48,5954,0,0,0,0,9 +"11018",2013,28099,"MS","28","099",29539,0.611293544128102,1859,0.125122719117099,7.52779398772144,8.17018565287964,9.0413298292419,7.76153846153846,794.579611949492,129,16235,0,0,0,0,9 +"11019",2013,28101,"MS","28","101",21525,0.63711962833914,1551,0.120882694541231,7.34665516317654,7.92153563213355,8.73456008995299,7.40769230769231,767.178118745831,92,11992,0,0,0,0,9 +"11020",2013,28103,"MS","28","103",11059,0.273442445067366,817,0.132561714440727,6.70563909486,7.10987946307227,8.08917567883756,13.3307692307692,632.011376204772,40,6329,0,0,0,0,9 +"11021",2013,28105,"MS","28","105",49152,0.59112548828125,12317,0.0866902669270833,9.41873570094148,8.33423142973486,9.6484662623239,7.93846153846154,237.725442961742,75,31549,0,0,0,0,9 +"11022",2013,28107,"MS","28","107",34398,0.490551776266062,2447,0.126955055526484,7.80261806344267,8.31752199628717,9.24096656551794,11.8461538461538,718.042071197411,142,19776,0,0,0,0,9 +"11023",2013,28109,"MS","28","109",54848,0.85720536756126,3644,0.136249270711785,8.20083725837985,8.80282315974189,9.67010425349173,7.37692307692308,570.517928286853,179,31375,0,0,0,0,9 +"11024",2013,28111,"MS","28","111",12020,0.794093178036606,757,0.133277870216306,6.62936325343745,7.2902928824466,8.16905314992734,10.3461538461538,622.286541244573,43,6910,0,0,0,0,9 +"11025",2013,28113,"MS","28","113",39944,0.458642098938514,2715,0.128755257360304,7.90654723236804,8.44827174594982,9.37509180757667,9.76923076923077,648.999459167117,144,22188,0,0,0,0,9 +"11026",2013,28115,"MS","28","115",30680,0.835821382007823,1911,0.116395045632334,7.55538194424027,8.25842246245888,9.08023168662916,7.34615384615385,444.544482583985,79,17771,0,0,0,0,9 +"11027",2013,28117,"MS","28","117",25480,0.850588697017268,2084,0.120211930926217,7.64204440287326,8.00168997809913,8.89302349439471,8.4,509.221029452243,74,14532,0,0,0,0,9 +"11028",2013,28119,"MS","28","119",7814,0.290760174046583,565,0.131814691579217,6.33682573114644,6.85329909318608,7.76599307940768,14.7538461538462,625.55853440572,28,4476,0,0,0,0,9 +"11029",2013,28121,"MS","28","121",147361,0.783409450261602,8559,0.119102069068478,9.05473863988161,9.96908800962008,10.7355920039839,5.18461538461538,358.803087060523,318,88628,0,0,0,0,9 +"11030",2013,28123,"MS","28","123",28336,0.594649915302089,1922,0.121153303218521,7.56112158953024,8.16820293023605,9.01699831189876,6.55384615384615,606.13481907794,99,16333,0,0,0,0,9 +"11031",2013,28125,"MS","28","125",4681,0.277932065797906,290,0.152531510361034,5.66988092298052,6.19031540585315,7.26822302115957,12.9538461538462,858.52930197835,23,2679,0,0,0,0,9 +"11032",2013,28127,"MS","28","127",27534,0.633834531851529,1810,0.132527057456236,7.50108212425987,8.09985791073758,8.99628043939502,7.36153846153846,613.418530351438,96,15650,0,0,0,0,9 +"11033",2013,28129,"MS","28","129",16226,0.761925305065944,1041,0.134598792062123,6.94793706861497,7.57967882309046,8.45616848957846,6.67692307692308,501.581070766547,46,9171,0,0,0,0,9 +"11034",2013,28131,"MS","28","131",17967,0.794011242834085,1412,0.126064451494406,7.25276241805319,7.69893619981345,8.55506684384432,9.46923076923077,540.079590676521,57,10554,0,0,0,0,9 +"11035",2013,28133,"MS","28","133",27910,0.254424937298459,2456,0.117771408097456,7.80628928926703,8.17329343896623,8.94180711836316,13.8384615384615,646.305193319606,113,17484,0,0,0,0,9 +"11036",2013,28135,"MS","28","135",14977,0.410829939240168,1415,0.115109835080457,7.25488481007734,7.64683139143048,8.25114213909075,11.1076923076923,601.285506945884,58,9646,0,0,0,0,9 +"11037",2013,28137,"MS","28","137",28341,0.679404396457429,2068,0.126671606506475,7.63433723562832,8.1056094022999,9.0395520509959,8.84615384615385,559.666687395062,90,16081,0,0,0,0,9 +"11038",2013,28139,"MS","28","139",22000,0.824318181818182,1510,0.120909090909091,7.31986492980897,7.90100705199242,8.7514744871409,9.74615384615385,618.556701030928,78,12610,0,0,0,0,9 +"11039",2013,28141,"MS","28","141",19505,0.964060497308383,1165,0.134785952319918,7.0604763659998,7.77904864492556,8.62658556818743,9.17692307692308,672.482733551436,74,11004,0,0,0,0,9 +"11040",2013,28143,"MS","28","143",10454,0.224220394107519,781,0.113258083030419,6.66057514983969,7.17165682276851,8.09285102753838,12.3461538461538,653.061224489796,40,6125,0,0,0,0,9 +"11041",2013,28145,"MS","28","145",27763,0.837841731801318,1712,0.11778266037532,7.44541755670169,8.20985248130127,8.98431767991113,7.04615384615385,404.755881608905,64,15812,0,0,0,0,9 +"11042",2013,28147,"MS","28","147",14853,0.547498821786844,895,0.134854911465697,6.79682371827486,7.454719949364,8.33997857199043,10.6230769230769,765.399100959786,63,8231,0,0,0,0,9 +"11043",2013,28149,"MS","28","149",48301,0.501956481232273,3088,0.138092379039771,8.03527891114467,8.68828526625864,9.60278778300304,8.92307692307692,541.842263696568,153,28237,0,0,0,0,9 +"11044",2013,28151,"MS","28","151",49679,0.269751806598361,3560,0.133919764890598,8.17751582384608,8.62694405537536,9.6327936931132,14.4384615384615,715.915072819793,204,28495,0,0,0,0,9 +"11045",2013,28153,"MS","28","153",20476,0.601777690955265,1380,0.128150029302598,7.22983877815125,7.79729127354747,8.70930004894499,10.6384615384615,588.185150456057,69,11731,0,0,0,0,9 +"11046",2013,28155,"MS","28","155",9951,0.796502864033765,563,0.132951462164607,6.33327962813969,7.04577657687951,7.96346006663897,9.43846153846154,537.820957668286,31,5764,0,0,0,0,9 +"11047",2013,28157,"MS","28","157",9340,0.284689507494647,679,0.138222698072805,6.5206211275587,6.97728134163075,7.81480342948936,12.3615384615385,590.996002085868,34,5753,0,0,0,0,9 +"11048",2013,28159,"MS","28","159",18764,0.518759326369644,1138,0.137017693455553,7.03702761468628,7.70526247486633,8.59044365315583,10.9538461538462,564.652738565782,60,10626,0,0,0,0,9 +"11049",2013,28161,"MS","28","161",12377,0.602973256847378,787,0.14583501656298,6.6682282484174,7.2902928824466,8.20576472523446,9.91538461538462,711.136395960745,50,7031,0,0,0,0,9 +"11050",2013,28163,"MS","28","163",28002,0.41207770873509,1857,0.110777801585601,7.52671756135271,8.29479935899257,8.83956650365795,10.9230769230769,593.349782634238,101,17022,0,0,0,0,9 +"11051",2013,37001,"NC","37","001",154209,0.767419541012522,10655,0.124266417653963,9.27378454453272,9.8934877204578,10.7531041511423,7.04615384615385,443.785332783248,398,89683,0,0,0,0,9 +"11052",2013,37003,"NC","37","003",37016,0.922628052733953,2014,0.136238383401772,7.60787807327851,8.51117511909067,9.24821402440426,7.54615384615385,451.862781261527,98,21688,0,0,0,0,9 +"11053",2013,37005,"NC","37","005",10903,0.968724204347427,560,0.161973768687517,6.3279367837292,7.11720550316434,8.00369733909437,8.52307692307692,571.61522129675,35,6123,0,0,0,0,9 +"11054",2013,37007,"NC","37","007",25966,0.485211430331973,1829,0.137179388431025,7.51152464839087,8.12829017160705,8.87444796721998,9.19230769230769,535.725409580764,86,16053,0,0,0,0,9 +"11055",2013,37009,"NC","37","009",26837,0.979543168014309,1326,0.156798449901256,7.18992217074581,8.06211758275474,8.93590352627442,8.93846153846154,461.998958875586,71,15368,0,0,0,0,9 +"11056",2013,37011,"NC","37","011",17663,0.943950631263092,1244,0.137632338787295,7.12608727329912,7.80425138352811,8.41049845274527,8.71538461538461,321.513871027007,35,10886,0,0,0,0,9 +"11057",2013,37013,"NC","37","013",47394,0.722939612609191,2519,0.156222306621091,7.83161727635261,8.61213966872519,9.53126377820777,9.23076923076923,565.22722134298,150,26538,0,0,0,0,9 +"11058",2013,37015,"NC","37","015",20325,0.360836408364084,1332,0.154686346863469,7.19443685110033,7.73017479524622,8.66681936537205,9.78461538461539,448.542237727386,54,12039,0,0,0,0,9 +"11059",2013,37017,"NC","37","017",34621,0.60937003552757,2044,0.155050402934635,7.6226639513236,8.33830573135656,9.25090633372284,11.2076923076923,537.019541544428,108,20111,0,0,0,0,9 +"11060",2013,37019,"NC","37","019",114977,0.864564217191264,5088,0.176087391391322,8.53464010501996,9.43396380812724,10.4133427055477,9.52307692307692,488.119794044939,310,63509,0,0,0,0,9 +"11061",2013,37021,"NC","37","021",246952,0.908650264018919,14952,0.141254170851016,9.6126003491354,10.3926502196659,11.2558760516262,5.82307692307692,377.265425556733,566,150027,0,0,0,0,9 +"11062",2013,37023,"NC","37","023",89348,0.875587590097148,5708,0.140663473161123,8.64962397859673,9.30710404040849,10.1742014767578,8.05384615384615,497.493615813866,263,52865,0,0,0,0,9 +"11063",2013,37025,"NC","37","025",187265,0.792806984754225,10679,0.112167249619523,9.27603447517155,10.2585361747303,10.9490330452675,7.38461538461539,341.659775922072,376,110051,0,0,0,0,9 +"11064",2013,37027,"NC","37","027",82067,0.933481180011454,4899,0.14079959057843,8.49678638163858,9.30346634996567,10.0926192012586,9.3,529.95154139602,257,48495,0,0,0,0,9 +"11065",2013,37031,"NC","37","031",68417,0.912711752926904,3644,0.161918821345572,8.20083725837985,8.97106743873209,9.91798199868658,7.60769230769231,487.098144031174,195,40033,0,0,0,0,9 +"11066",2013,37033,"NC","37","033",23096,0.64855386214063,1356,0.160893661240042,7.21229446850034,7.95085485771999,8.79754848848156,8.73846153846154,553.678003882937,77,13907,0,0,0,0,9 +"11067",2013,37035,"NC","37","035",155024,0.85931210651254,9271,0.132631076478481,9.13464652760698,9.93692232862237,10.7381993974173,8.26153846153846,426.349739330211,386,90536,0,0,0,0,9 +"11068",2013,37037,"NC","37","037",65276,0.831546050615847,2921,0.153471413689564,7.97968130238774,9.00220857828241,9.83772161176051,6.1,373.673731009465,137,36663,0,0,0,0,9 +"11069",2013,37039,"NC","37","039",27139,0.957220236559932,1237,0.169903091491949,7.12044437239249,7.96762673933382,8.92956770782534,8.94615384615385,717.86536638223,106,14766,0,0,0,0,9 +"11070",2013,37041,"NC","37","041",14669,0.634944440657168,754,0.155838843820301,6.62539236800796,7.32383056620232,8.35490952835879,9.56153846153846,568.181818181818,46,8096,0,0,0,0,9 +"11071",2013,37043,"NC","37","043",10606,0.979068451819725,456,0.171600980577032,6.12249280951439,7.00306545878646,7.96171881598136,8.49230769230769,502.51256281407,28,5572,0,0,0,0,9 +"11072",2013,37045,"NC","37","045",96893,0.773182789262382,6550,0.137677644411877,8.7872203286293,9.38362118411799,10.2794551898553,9.22307692307692,536.593166432722,302,56281,0,0,0,0,9 +"11073",2013,37047,"NC","37","047",57099,0.644231948020105,3710,0.138548836231808,8.21878715560148,8.83593778931984,9.6956020036109,9.98461538461538,779.181708784597,259,33240,0,0,0,0,9 +"11074",2013,37049,"NC","37","049",104369,0.735477009456831,11172,0.120735084172503,9.32116592706507,9.31118068690225,10.2800386504796,8.41538461538462,423.993426458505,258,60850,0,0,0,0,9 +"11075",2013,37051,"NC","37","051",333253,0.55330934755276,36464,0.099212910311385,10.5040807514855,10.573698701813,11.5318355371949,9.36923076923077,405.958091391063,804,198050,0,0,0,0,9 +"11076",2013,37053,"NC","37","053",24260,0.921516900247321,1255,0.146290189612531,7.13489085156588,8.07059353994952,8.91476052739726,7.64615384615385,404.1492657955,60,14846,0,0,0,0,9 +"11077",2013,37055,"NC","37","055",34823,0.954053355540878,1597,0.167044769261695,7.37588214821501,8.38799525294456,9.2729395137327,11.1230769230769,408.738548273432,87,21285,0,0,0,0,9 +"11078",2013,37057,"NC","37","057",163337,0.880314931705615,9305,0.133839852574738,9.13830716907635,9.99277966001489,10.7926126163375,7.96153846153846,509.277618918411,488,95822,0,0,0,0,9 +"11079",2013,37059,"NC","37","059",41443,0.918225031971624,2079,0.146080158289699,7.63964228785801,8.58279364850019,9.40269476447051,7.26923076923077,393.434300702259,93,23638,0,0,0,0,9 +"11080",2013,37061,"NC","37","061",59323,0.70645449488394,3615,0.130404733408627,8.19284713459287,8.9182485910357,9.74759368757745,7.76923076923077,386.774071596824,133,34387,0,0,0,0,9 +"11081",2013,37063,"NC","37","063",288856,0.53593832220899,21285,0.112547428476473,9.96575787826225,10.642109884869,11.4755869793149,6.09230769230769,275.549335806768,508,184359,0,0,0,0,9 +"11082",2013,37065,"NC","37","065",55419,0.403255201284758,3689,0.145852505458417,8.21311069759668,8.73697108525415,9.76065590342859,12.6,545.579249282953,175,32076,0,0,0,0,9 +"11083",2013,37067,"NC","37","067",360677,0.68512547237556,24765,0.125325429678078,10.1171866450223,10.7441707269018,11.6286530563142,7.33846153846154,375.735542146096,802,213448,0,0,0,0,9 +"11084",2013,37069,"NC","37","069",62078,0.704033635104224,3631,0.137246689648507,8.19726337141434,9.02665788954289,9.82471487137073,8.02307692307692,490.714382540328,181,36885,0,0,0,0,9 +"11085",2013,37071,"NC","37","071",209242,0.815084925588553,13159,0.129247474216457,9.48486121415014,10.2733254830011,11.0722476011063,8.7,493.344652496356,616,124862,0,0,0,0,9 +"11086",2013,37073,"NC","37","073",11700,0.647264957264957,652,0.146495726495727,6.48004456192665,7.19067603433221,8.15994665557855,6.76153846153846,322.486074464966,22,6822,0,0,0,0,9 +"11087",2013,37075,"NC","37","075",8713,0.912888786870194,485,0.145529668311718,6.18414889093748,6.8596149036542,7.80220931624712,14.8538461538462,436.590436590437,21,4810,0,0,0,0,9 +"11088",2013,37077,"NC","37","077",57792,0.654467746400886,3759,0.137579595791805,8.23190824356418,8.99118884193151,9.73955586085376,6.63846153846154,387.292321508756,138,35632,0,0,0,0,9 +"11089",2013,37079,"NC","37","079",21017,0.593329209687396,1340,0.136365799115002,7.20042489294496,7.97004930497614,8.62532985002082,7.64615384615385,372.822034543103,49,13143,0,0,0,0,9 +"11090",2013,37081,"NC","37","081",506537,0.595380001855738,39310,0.120498601286777,10.5792342184159,11.1073453502491,11.9891347989375,7.96923076923077,317.697137453908,971,305637,0,0,0,0,9 +"11091",2013,37083,"NC","37","083",53193,0.40858759611227,3514,0.145827458500179,8.16451026874704,8.69818052519705,9.67218581352046,11.4615384615385,591.486473383109,183,30939,0,0,0,0,9 +"11092",2013,37085,"NC","37","085",125093,0.735324918260814,8448,0.101900186261421,9.04168500594604,9.76812591460545,10.51661702511,8.96923076923077,368.238727803388,270,73322,0,0,0,0,9 +"11093",2013,37087,"NC","37","087",59006,0.975019489543436,3125,0.150882961054808,8.0471895621705,8.84000106584339,9.74811946530243,7.61538461538461,484.739676840215,162,33420,0,0,0,0,9 +"11094",2013,37089,"NC","37","089",108942,0.942519872959924,5092,0.144407115712948,8.5354259596773,9.45954145760968,10.3207824123979,6.03846153846154,450.533748003698,268,59485,0,0,0,0,9 +"11095",2013,37091,"NC","37","091",24603,0.36767873836524,1771,0.149128155103036,7.47929963778283,7.9483852851119,8.86474666090541,9.13076923076923,415.138725524113,60,14453,0,0,0,0,9 +"11096",2013,37093,"NC","37","093",51190,0.516761086149639,3488,0.096503223285798,8.15708378502887,8.86587628542542,9.66484958026327,9.56153846153846,345.765967664479,108,31235,0,0,0,0,9 +"11097",2013,37097,"NC","37","097",164661,0.841334620827032,9850,0.124401042141126,9.19522673416613,10.0364875539974,10.8032219820946,8.12307692307692,395.029806794513,385,97461,0,0,0,0,9 +"11098",2013,37099,"NC","37","099",41034,0.862577374859872,5124,0.130988936004289,8.54169066301663,8.35678966992321,9.41979059615839,8.56923076923077,428.618529508737,104,24264,0,0,0,0,9 +"11099",2013,37101,"NC","37","101",177240,0.816435341909276,9930,0.115436696005416,9.20331575703922,10.2212865238917,10.8847229730507,6.9,348.495091551374,366,105023,0,0,0,0,9 +"11100",2013,37103,"NC","37","103",9996,0.662064825930372,641,0.163265306122449,6.46302945692067,6.93537044601511,8.00202481821611,8.2,477.326968973747,28,5866,0,0,0,0,9 +"11101",2013,37105,"NC","37","105",59783,0.763143368516133,3707,0.122409380593145,8.21797820315073,8.94689552388845,9.76336304444196,9.85384615384615,440.733008582695,152,34488,0,0,0,0,9 +"11102",2013,37107,"NC","37","107",58754,0.566225278278926,3574,0.145130544303367,8.18144069571937,8.80762148953604,9.76422548520262,8.43846153846154,554.479057981815,186,33545,0,0,0,0,9 +"11103",2013,37109,"NC","37","109",79140,0.926914329037149,4440,0.137958049027041,8.39840965542627,9.31865651545964,10.0793298307323,8.03076923076923,387.540368788415,186,47995,0,0,0,0,9 +"11104",2013,37111,"NC","37","111",45027,0.938370311146645,2563,0.144446665334133,7.84893372636407,8.68777949199177,9.47531660689233,8.73076923076923,418.031860806688,111,26553,0,0,0,0,9 +"11105",2013,37113,"NC","37","113",33756,0.965161749022396,1669,0.156920251214599,7.41997992366183,8.10892415597534,9.1235835080499,8.91538461538462,520.516086162025,94,18059,0,0,0,0,9 +"11106",2013,37115,"NC","37","115",21178,0.972376994994806,1492,0.151336292378884,7.30787278076371,7.83320394864106,8.72648119644001,7.96153846153846,346.306068601583,42,12128,0,0,0,0,9 +"11107",2013,37117,"NC","37","117",23643,0.551072198959523,1408,0.165207460982109,7.24992553671799,7.85864065562079,8.87416809036397,10.1615384615385,568.601388273519,77,13542,0,0,0,0,9 +"11108",2013,37119,"NC","37","119",991182,0.602398953976162,67344,0.104116095732166,11.1175690910104,11.9431092015905,12.6900777944117,7.29230769230769,252.329597315329,1573,623391,0,0,0,0,9 +"11109",2013,37121,"NC","37","121",15278,0.975651263254353,823,0.156761356198455,6.71295620067707,7.49443021503157,8.38845031552351,10.7307692307692,457.66590389016,40,8740,0,0,0,0,9 +"11110",2013,37123,"NC","37","123",27439,0.776522468019972,1644,0.142825904734138,7.40488757561612,8.11162807830774,8.97385825622279,8.03846153846154,488.463268847612,76,15559,0,0,0,0,9 +"11111",2013,37125,"NC","37","125",91391,0.835826284863936,4308,0.133153155124684,8.36822903827628,9.26378634768181,10.13721489739,7.56153846153846,415.877460265173,202,48572,0,0,0,0,9 +"11112",2013,37127,"NC","37","127",94463,0.57897801255518,5992,0.140626488678107,8.69818052519705,9.37763288975038,10.261895993101,10.0461538461538,488.669315862958,273,55866,0,0,0,0,9 +"11113",2013,37129,"NC","37","129",213033,0.822722301239714,20436,0.125999258330869,9.92505333045069,10.2215775811593,11.1233140207852,7.32307692307692,320.325487130051,422,131741,0,0,0,0,9 +"11114",2013,37131,"NC","37","131",20860,0.399328859060403,1270,0.163422818791946,7.14677217945264,7.6231530684769,8.68744216697592,9.68461538461538,487.262779962387,57,11698,0,0,0,0,9 +"11115",2013,37133,"NC","37","133",192522,0.791083616417864,38030,0.070869822669617,10.5461306009223,9.81918160348287,10.8399533913469,6.82307692307692,240.023484312134,278,115822,0,0,0,0,9 +"11116",2013,37135,"NC","37","135",139471,0.78377583870482,17331,0.120390618838325,9.76025208444937,9.73269923155585,10.7323668273993,5.15384615384615,209.848115337061,185,88159,0,0,0,0,9 +"11117",2013,37137,"NC","37","137",12878,0.77908060257804,618,0.174561267277528,6.42648845745769,7.18690102041163,8.1341742721379,8.14615384615385,383.877159309021,28,7294,0,0,0,0,9 +"11118",2013,37139,"NC","37","139",39587,0.592088311819537,3168,0.126177785636699,8.06085575293432,8.43663368355782,9.3894902376045,9.34615384615385,356.394129979036,85,23850,0,0,0,0,9 +"11119",2013,37141,"NC","37","141",54804,0.804393839865703,3109,0.141084592365521,8.04205641005875,8.88530251298063,9.67790352568256,8.78461538461539,384.982598786535,125,32469,0,0,0,0,9 +"11120",2013,37143,"NC","37","143",13638,0.741384367209268,653,0.152954978735885,6.48157712927643,7.22983877815125,8.25192471380136,9.31538461538462,474.833808167141,35,7371,0,0,0,0,9 +"11121",2013,37145,"NC","37","145",39253,0.706748528774871,2265,0.149695564670216,7.72533003791713,8.51559191004926,9.37492217229213,9.79230769230769,459.730233768487,106,23057,0,0,0,0,9 +"11122",2013,37147,"NC","37","147",174443,0.616447779503907,24858,0.108665867933938,10.1209349113055,9.94251593950361,10.9637747268826,7.82307692307692,300.577181950617,326,108458,0,0,0,0,9 +"11123",2013,37149,"NC","37","149",20390,0.939774399215302,947,0.167287886218735,6.85329909318608,7.64539769942863,8.63141433550626,6.44615384615385,560.198365322803,61,10889,0,0,0,0,9 +"11124",2013,37151,"NC","37","151",142313,0.909382839234645,8448,0.13107727333413,9.04168500594604,9.84908416365674,10.6404602126361,8.40769230769231,400.717199552352,333,83101,0,0,0,0,9 +"11125",2013,37153,"NC","37","153",46134,0.634456149477609,3289,0.132288550743486,8.09833884618906,8.67214355141406,9.51487956149439,11.4076923076923,557.392887666753,150,26911,0,0,0,0,9 +"11126",2013,37155,"NC","37","155",135135,0.326029526029526,10542,0.121707921707922,9.26312255741515,9.74829466313043,10.6125572936399,11.5,549.934288594286,431,78373,0,0,0,0,9 +"11127",2013,37157,"NC","37","157",91930,0.790623300337213,5215,0.147775481344501,8.55929436743487,9.3604830304059,10.2285737853616,9.39230769230769,526.218269408931,284,53970,0,0,0,0,9 +"11128",2013,37159,"NC","37","159",137689,0.812243534341886,9170,0.132348989389131,9.12369256525051,9.7615206810905,10.6093781892434,9.00769230769231,545.315468699879,442,81054,0,0,0,0,9 +"11129",2013,37161,"NC","37","161",66866,0.882361738402177,3920,0.145694373822271,8.27384693278451,9.01262087300213,9.88241712191684,10.8615384615385,608.598403079404,234,38449,0,0,0,0,9 +"11130",2013,37163,"NC","37","163",63903,0.67724519975588,3887,0.12947748931975,8.26539293085222,9.01529825077285,9.81421908477795,7.85384615384615,461.723403092727,169,36602,0,0,0,0,9 +"11131",2013,37165,"NC","37","165",35916,0.469762779819579,2563,0.137988640160374,7.84893372636407,8.39683183474505,9.25109836444835,14.6153846153846,580.474934036939,121,20845,0,0,0,0,9 +"11132",2013,37167,"NC","37","167",60635,0.856617465160386,4016,0.134377834583986,8.29804166137157,8.93524541502987,9.76543165404016,7.93076923076923,461.78971673143,164,35514,0,0,0,0,9 +"11133",2013,37169,"NC","37","169",46500,0.947010752688172,2572,0.147182795698925,7.85243908535751,8.6960086088809,9.53408915046436,7.60769230769231,423.558622704203,116,27387,0,0,0,0,9 +"11134",2013,37171,"NC","37","171",72637,0.943830279334224,4261,0.136748489062048,8.35725915349991,9.14452103093889,9.94769580720045,8.1,411.810037568635,171,41524,0,0,0,0,9 +"11135",2013,37173,"NC","37","173",13976,0.675157412707499,947,0.135374928448769,6.85329909318608,7.40549566319947,8.31752199628717,12.1307692307692,589.489527154145,47,7973,0,0,0,0,9 +"11136",2013,37175,"NC","37","175",32847,0.94571802599933,1911,0.153651779462356,7.55538194424027,8.09346227450118,9.08975340898706,7.21538461538462,440.426518312471,76,17256,0,0,0,0,9 +"11137",2013,37179,"NC","37","179",212261,0.844352000603031,11463,0.1066093158894,9.34687973611501,10.3902868416993,11.0313997102491,6.36923076923077,275.180226570546,334,121375,0,0,0,0,9 +"11138",2013,37181,"NC","37","181",44507,0.470757408946907,3024,0.139820702361426,8.01433573729942,8.58410389669886,9.52464003233223,11.1461538461538,650.260883108792,167,25682,0,0,0,0,9 +"11139",2013,37183,"NC","37","183",974508,0.703386734639428,63218,0.10555275072139,11.0543443497108,11.9406020614436,12.6512615453546,5.82307692307692,213.05692088156,1290,605472,0,0,0,0,9 +"11140",2013,37185,"NC","37","185",20584,0.411678973960358,1216,0.161776136805286,7.10332206252611,7.67368812926773,8.63034328934889,10.6076923076923,455.31197301855,54,11860,0,0,0,0,9 +"11141",2013,37187,"NC","37","187",12669,0.484410766437761,777,0.164022416923198,6.65544035036765,7.18387071506245,8.22550309756692,12.1230769230769,409.373235460192,29,7084,0,0,0,0,9 +"11142",2013,37189,"NC","37","189",52320,0.963455657492355,11381,0.116590214067278,9.33970057728189,8.48011418317482,9.70026917002919,6.21538461538462,260.807002817915,87,33358,0,0,0,0,9 +"11143",2013,37191,"NC","37","191",124625,0.644485456369107,9693,0.125512537612839,9.17915925449261,9.62509552699144,10.5207251389957,7.52307692307692,412.477442639856,304,73701,0,0,0,0,9 +"11144",2013,37193,"NC","37","193",68610,0.942938347179711,3693,0.144381285526891,8.21419441485256,9.05777177333158,9.88404985864365,8.67692307692308,543.02316729681,214,39409,0,0,0,0,9 +"11145",2013,37195,"NC","37","195",81186,0.574495602690119,5167,0.136587588993176,8.55004752828718,9.21313645927818,10.118235963062,11.4,501.530091805508,236,47056,0,0,0,0,9 +"11146",2013,37197,"NC","37","197",38070,0.951090097189388,2104,0.136459154189651,7.6515955738576,8.49043845410742,9.30900854377288,7.50769230769231,527.944656835973,116,21972,0,0,0,0,9 +"11147",2013,37199,"NC","37","199",17550,0.974700854700855,892,0.151794871794872,6.79346613258001,7.66669020008009,8.50289140670538,9.26923076923077,377.975278373685,37,9789,0,0,0,0,9 +"11148",2013,38003,"ND","38","003",11116,0.962756387189637,758,0.147984886649874,6.63068338564237,7.02464903045364,7.9885429827377,3.16153846153846,381.315538608198,24,6294,1,0,0,0,9 +"11149",2013,38005,"ND","38","005",6900,0.430144927536232,449,0.118840579710145,6.10702288774225,6.45990445437753,7.44190672805162,7.53076923076923,713.877784123358,25,3502,1,0,0,0,9 +"11150",2013,38015,"ND","38","015",88472,0.933300931368116,6480,0.129249932181933,8.77647578934632,9.27275163209758,10.183162654586,2.47692307692308,262.015271747268,140,53432,1,0,0,0,9 +"11151",2013,38017,"ND","38","017",163027,0.918952075423089,20280,0.106810528317395,9.91739045770512,9.89963012220882,10.8310742441521,2.73846153846154,238.477589837778,248,103993,1,0,0,0,9 +"11152",2013,38035,"ND","38","035",69198,0.908422208734357,11881,0.108052255845545,9.38269576445829,8.81907398326783,9.94169814029988,3.02307692307692,270.69447919747,119,43961,1,0,0,0,9 +"11153",2013,38053,"ND","38","053",9295,0.82442173211404,643,0.122538999462076,6.46614472423762,6.99301512293296,7.82444593087762,1.49230769230769,664.869721473495,37,5565,1,0,0,0,9 +"11154",2013,38055,"ND","38","055",9466,0.918022395943376,380,0.175364462286076,5.94017125272043,6.88243747099785,7.82244472948932,4.19230769230769,360.462910263707,19,5271,1,0,0,0,9 +"11155",2013,38057,"ND","38","057",8589,0.962393759459774,361,0.17021772033997,5.88887795833288,6.73815249459596,7.76726399675731,4.63846153846154,217.305412880284,11,5062,1,0,0,0,9 +"11156",2013,38059,"ND","38","059",28939,0.944814955596254,1657,0.135802895746225,7.41276401742656,8.14902386805177,9.04085606398372,3.29230769230769,375.158720997345,65,17326,1,0,0,0,9 +"11157",2013,38061,"ND","38","061",9342,0.684649967886962,748,0.127381716977093,6.61740297797448,7.01301578963963,7.79564653633459,1.53846153846154,381.216426962398,22,5771,1,0,0,0,9 +"11158",2013,38067,"ND","38","067",7099,0.967882800394422,281,0.177067192562333,5.63835466933375,6.57368016696065,7.55171221535131,6,323.463548146305,13,4019,1,0,0,0,9 +"11159",2013,38071,"ND","38","071",11584,0.886567679558011,731,0.14269682320442,6.59441345974978,7.07665381544395,8.06934236681164,3.73846153846154,320.51282051282,21,6552,1,0,0,0,9 +"11160",2013,38077,"ND","38","077",16301,0.952518250414085,1518,0.143794859211091,7.32514895795557,7.36201055125973,8.40447232135212,3.33076923076923,380.952380952381,36,9450,1,0,0,0,9 +"11161",2013,38079,"ND","38","079",14683,0.205271402301982,1003,0.10617721174147,6.91075078796194,7.36454701425564,8.29629711264251,12.2153846153846,614.439324116743,48,7812,1,0,0,0,9 +"11162",2013,38085,"ND","38","085",4442,0.135749662314273,353,0.0794687077892841,5.8664680569333,6.19440539110467,7.05875815251866,4.59230769230769,1297.57785467128,30,2312,1,0,0,0,9 +"11163",2013,38089,"ND","38","089",28342,0.951838261237739,2548,0.116928939383247,7.84306401669205,8.00903068506973,8.97221007835365,1.7,261.917234154007,45,17181,1,0,0,0,9 +"11164",2013,38093,"ND","38","093",21105,0.96285240464345,1513,0.152001895285477,7.32184971378836,7.74370325817375,8.6741969402259,3.10769230769231,310.484834010031,39,12561,1,0,0,0,9 +"11165",2013,38099,"ND","38","099",11079,0.966152179799621,559,0.1488401480278,6.3261494731551,7.0057890192535,7.97693875695943,4.92307692307692,528.576148001321,32,6054,1,0,0,0,9 +"11166",2013,38101,"ND","38","101",68028,0.913609102134415,8302,0.100723231610513,9.02425172861298,8.93958096672031,9.86131047363694,2.7,336.174242424242,142,42240,1,0,0,0,9 +"11167",2013,38105,"ND","38","105",29623,0.928028896465584,2396,0.118050163724133,7.78155595923534,8.158802490694,8.98243550356026,1.23076923076923,404.007756948933,75,18564,1,0,0,0,9 +"11168",2013,31001,"NE","31","001",31536,0.962170218163369,2537,0.131785895484526,7.83873755959928,8.12976444579417,9.07635173197287,3.56153846153846,322.59858724067,58,17979,0,0,0,0,9 +"11169",2013,31013,"NE","31","013",11302,0.936029021412139,570,0.164572642010264,6.3456363608286,7.13886699994552,8.0643219609108,3.76923076923077,403.476101800124,26,6444,0,0,0,0,9 +"11170",2013,31019,"NE","31","019",48013,0.965655135067586,5512,0.114239893362214,8.6146828126935,8.5814816812986,9.56149007987208,3.16923076923077,252.826743451085,72,28478,0,0,0,0,9 +"11171",2013,31023,"NE","31","023",8228,0.985537190082645,376,0.143777345649003,5.9295891433899,6.77422388635761,7.66669020008009,3.29230769230769,269.662921348315,12,4450,0,0,0,0,9 +"11172",2013,31025,"NE","31","025",25292,0.981179819705836,1205,0.146172702830935,7.09423484592476,8.04141290939305,8.88571765171212,4.23846153846154,301.866081229418,44,14576,0,0,0,0,9 +"11173",2013,31033,"NE","31","033",10075,0.966352357320099,513,0.13409429280397,6.24027584517077,7.12044437239249,7.944846711002,2.76153846153846,292.850990525409,17,5805,0,0,0,0,9 +"11174",2013,31037,"NE","31","037",10451,0.923739355085638,642,0.110133001626639,6.46458830368996,7.10578612948127,7.87815533650332,3.41538461538462,280.06301417819,16,5713,0,0,0,0,9 +"11175",2013,31041,"NE","31","041",10830,0.984487534626039,492,0.146260387811634,6.19847871649231,7.07496319796604,7.94944442025063,2.70769230769231,359.58904109589,21,5840,0,0,0,0,9 +"11176",2013,31043,"NE","31","043",20761,0.871971484995906,1446,0.110254804681855,7.27655640271871,7.81116338502528,8.64822145382264,4.58461538461538,340.599455040872,40,11744,0,0,0,0,9 +"11177",2013,31045,"NE","31","045",9072,0.909722222222222,1381,0.120811287477954,7.23056315340929,6.66695679242921,7.8458075026378,3.50769230769231,310.981535471331,16,5145,0,0,0,0,9 +"11178",2013,31047,"NE","31","047",24003,0.92246802483023,1479,0.120818231054452,7.2991214627108,7.9665866976384,8.74369111054302,3.73076923076923,294.829150287269,39,13228,0,0,0,0,9 +"11179",2013,31053,"NE","31","053",36491,0.963388232714916,2311,0.127867145323504,7.74543561027438,8.31360713931756,9.20843856468659,4.10769230769231,348.258706467662,70,20100,0,0,0,0,9 +"11180",2013,31055,"NE","31","055",536923,0.82636616423584,36317,0.114390704067436,10.5000412301848,11.1447705923684,12.0010820772833,4.05384615384615,296.346602046644,960,323945,0,0,0,0,9 +"11181",2013,31067,"NE","31","067",21767,0.979188680112096,1156,0.145679239215326,7.05272104923232,7.78862606562503,8.70483390968779,4.5,411.997363216875,50,12136,0,0,0,0,9 +"11182",2013,31079,"NE","31","079",60498,0.933435816060035,3776,0.117458428377798,8.23642052726539,8.9273141110606,9.73536471514199,3.62307692307692,308.041033390486,106,34411,0,0,0,0,9 +"11183",2013,31081,"NE","31","081",9123,0.98838101501699,455,0.146662282144032,6.12029741895095,6.96508034560141,7.81561053203519,3.11538461538462,397.535281256211,20,5031,0,0,0,0,9 +"11184",2013,31089,"NE","31","089",10382,0.984685031785783,470,0.155076093238297,6.1527326947041,6.89972310728487,7.90100705199242,3.06923076923077,342.034203420342,19,5555,0,0,0,0,9 +"11185",2013,31095,"NE","31","095",7511,0.981626947144189,335,0.157102915723605,5.81413053182507,6.64378973314767,7.59085212368858,3.63076923076923,541.072306935563,22,4066,0,0,0,0,9 +"11186",2013,31101,"NE","31","101",8173,0.977731555120519,386,0.158326196011257,5.95583736946483,6.68959926917897,7.69074316354187,3.52307692307692,541.27198917456,24,4434,0,0,0,0,9 +"11187",2013,31107,"NE","31","107",8555,0.888720046756283,361,0.15020455873758,5.88887795833288,6.66568371778241,7.63482067774554,3.43846153846154,303.030303030303,13,4290,0,0,0,0,9 +"11188",2013,31109,"NE","31","109",297232,0.898937530279378,33524,0.115091914733272,10.4200168792188,10.4850325565148,11.3978736960069,3.39230769230769,232.102586050799,423,182247,0,0,0,0,9 +"11189",2013,31111,"NE","31","111",35946,0.968063205919991,1911,0.142324598008123,7.55538194424027,8.38366179879172,9.2231578756868,3.7,364.98150431566,74,20275,0,0,0,0,9 +"11190",2013,31119,"NE","31","119",35155,0.950476461385294,2515,0.129938842269947,7.83002808253384,8.23031079913502,9.20492573927468,3.41538461538462,317.917639461527,64,20131,0,0,0,0,9 +"11191",2013,31121,"NE","31","121",7834,0.97549144753638,378,0.137732958897115,5.93489419561959,6.7428806357919,7.64204440287326,3.61538461538462,489.054494643689,21,4294,0,0,0,0,9 +"11192",2013,31131,"NE","31","131",15686,0.97730460283055,798,0.138594925411195,6.68210859744981,7.48717369421374,8.36660283278374,4.15384615384615,416.811392844738,36,8637,0,0,0,0,9 +"11193",2013,31137,"NE","31","137",9179,0.983113628935614,468,0.129316919054363,6.14846829591765,6.89972310728487,7.78322401633604,2.9,242.914979757085,12,4940,0,0,0,0,9 +"11194",2013,31141,"NE","31","141",32598,0.964936499171728,1953,0.130345419964415,7.57712193087668,8.21500643276157,9.086702731518,3.39230769230769,307.6246978686,56,18204,0,0,0,0,9 +"11195",2013,31145,"NE","31","145",11057,0.976123722528715,731,0.139730487473998,6.59441345974978,7.01660968389422,8.00235954625271,2.87692307692308,245.418848167539,15,6112,0,0,0,0,9 +"11196",2013,31147,"NE","31","147",8134,0.952053110400787,378,0.154905335628227,5.93489419561959,6.69208374250663,7.69530313496357,4.36923076923077,294.317410006792,13,4417,0,0,0,0,9 +"11197",2013,31151,"NE","31","151",14294,0.942773191548902,1197,0.117182034420036,7.08757370555797,7.43425738213314,8.25035895147729,4.16153846153846,269.971775677997,22,8149,0,0,0,0,9 +"11198",2013,31153,"NE","31","153",169064,0.914002981119576,10710,0.103706288742725,9.27893316344179,10.0792459521884,10.8299464133259,3.49230769230769,187.513021737621,189,100793,0,0,0,0,9 +"11199",2013,31155,"NE","31","155",20878,0.984002299070792,1011,0.137129993294377,6.91869521902047,7.74283595543075,8.64909826229618,3.94615384615385,257.025359835504,30,11672,0,0,0,0,9 +"11200",2013,31157,"NE","31","157",36878,0.945306144584847,2265,0.136287217311134,7.72533003791713,8.33471162182092,9.25598272985488,4.1,490.457922595057,101,20593,0,0,0,0,9 +"11201",2013,31159,"NE","31","159",16997,0.981349649938224,1447,0.12631640877802,7.27724772663148,7.47929963778283,8.42310226801664,3.6,338.91124761703,32,9442,0,0,0,0,9 +"11202",2013,31173,"NE","31","173",6878,0.402151788310555,489,0.103227682465833,6.19236248947487,6.45204895443723,7.44483327389219,7.46153846153846,765.155974102413,26,3398,0,0,0,0,9 +"11203",2013,31177,"NE","31","177",19855,0.982674389322589,968,0.146058927222362,6.87523208727658,7.74716496652033,8.65049955872446,3.59230769230769,344.708721130645,40,11604,0,0,0,0,9 +"11204",2013,31185,"NE","31","185",13856,0.967017898383372,938,0.137990762124711,6.84374994900622,7.25276241805319,8.26410576372896,3.52307692307692,436.400975484533,34,7791,0,0,0,0,9 +"11205",2013,34001,"NJ","34","001",274360,0.725277008310249,19006,0.135205569324974,9.85250999777126,10.4127719892833,11.3377026523656,11.9076923076923,417.088430064515,684,163994,1,0,0,0,9 +"11206",2013,34003,"NJ","34","003",920021,0.762163037582838,50921,0.133052397717009,10.8380306911274,11.7354768409832,12.5483529824344,6.83076923076923,218.344548057437,1211,554628,1,0,0,0,9 +"11207",2013,34005,"NJ","34","005",448992,0.759369877414297,28885,0.132398795524196,10.2710777082154,10.9536271266423,11.8148284393619,7.86923076923077,308.923140216577,841,272236,1,0,0,0,9 +"11208",2013,34007,"NJ","34","007",509983,0.714200277264144,33606,0.127474837396541,10.4224599014379,11.0886902962853,11.9716153343157,9.59230769230769,396.078723480052,1223,308777,1,0,0,0,9 +"11209",2013,34009,"NJ","34","009",95540,0.9286162863722,5923,0.162633451957295,8.68659835627697,9.11855397634547,10.2110457789927,14.9384615384615,459.664020675651,249,54170,1,0,0,0,9 +"11210",2013,34011,"NJ","34","011",155912,0.734850428446816,10885,0.116315613936067,9.29514097366865,9.96048206405594,10.6877771489163,11.9615384615385,413.843810724227,394,95205,1,0,0,0,9 +"11211",2013,34013,"NJ","34","013",786685,0.503261152812117,54155,0.115918061231624,10.8996055842698,11.6259683951674,12.4181431159432,9.86153846153846,351.60646706238,1690,480651,1,0,0,0,9 +"11212",2013,34015,"NJ","34","015",289935,0.852684222325694,19912,0.130812078569334,9.89907784404743,10.5466563632898,11.4082202900853,9.20769230769231,361.821300163532,635,175501,1,0,0,0,9 +"11213",2013,34017,"NJ","34","017",657101,0.672085417614644,45610,0.101897577389168,10.7278822697057,11.5362122117454,12.2829457198344,8.01538461538462,233.151464617169,1029,441344,1,0,0,0,9 +"11214",2013,34019,"NJ","34","019",126443,0.928457882207793,6996,0.159929770726731,8.85309383613849,9.60190937489224,10.5594259945637,5.96153846153846,238.054973787936,183,76873,1,0,0,0,9 +"11215",2013,34021,"NJ","34","021",369534,0.667648984937786,28913,0.12445674822885,10.2720465999483,10.8054562114027,11.6360276621042,7.40769230769231,325.373847910967,735,225894,1,0,0,0,9 +"11216",2013,34023,"NJ","34","023",821811,0.638071284030026,56785,0.121310130918179,10.9470274853257,11.6587559131818,12.443675160402,7.69230769230769,226.444488806949,1157,510942,1,0,0,0,9 +"11217",2013,34025,"NJ","34","025",626964,0.859570884452696,36273,0.141620571516068,10.4988289418424,11.2581106316996,12.1554002110008,7.69230769230769,277.631375805876,1043,375678,1,0,0,0,9 +"11218",2013,34027,"NJ","34","027",496050,0.857336961999798,26583,0.13423445217216,10.1880271927154,11.0806491265853,11.9146703282076,6.27692307692308,228.504320107374,681,298025,1,0,0,0,9 +"11219",2013,34029,"NJ","34","029",582166,0.93927676985602,32366,0.12648454220961,10.3848637680768,11.0388495552343,11.9606004041079,9.46923076923077,380.314579591625,1171,307903,1,0,0,0,9 +"11220",2013,34031,"NJ","34","031",503815,0.767851294622034,37341,0.117878586385876,10.5278471976691,11.097455474521,11.9394734262872,10.1384615384615,288.375265282068,871,302037,1,0,0,0,9 +"11221",2013,34033,"NJ","34","033",64801,0.829524235737103,4023,0.142405209796145,8.29978317194979,8.94676537486763,9.8729767973311,10.6230769230769,463.557080376084,177,38183,1,0,0,0,9 +"11222",2013,34035,"NJ","34","035",329052,0.73131298396606,16911,0.132450190243487,9.73571957674968,10.7280357330448,11.5215382680685,6.46923076923077,220.402548435845,439,199181,1,0,0,0,9 +"11223",2013,34037,"NJ","34","037",145672,0.952832390576089,8626,0.153907408424406,9.06253617720779,9.80956141450396,10.7096285409093,8.08461538461538,284.490260392262,255,89634,1,0,0,0,9 +"11224",2013,34039,"NJ","34","039",546051,0.695546752958973,34280,0.120713999241829,10.4423173727117,11.2453335601703,12.0302717827263,8.53076923076923,245.613718248557,816,332229,1,0,0,0,9 +"11225",2013,34041,"NJ","34","041",106933,0.921782798574808,6593,0.140620762533549,8.7937637591133,9.49942146534167,10.3924049337532,7.79230769230769,307.019584128018,198,64491,1,0,0,0,9 +"11226",2013,35001,"NM","35","001",676467,0.864189975268564,49452,0.1253364909153,10.8087577811268,11.3449800741208,12.2444612818343,6.42307692307692,352.260932573488,1439,408504,1,0,0,0,9 +"11227",2013,35005,"NM","35","005",66033,0.934835612496782,4709,0.117577574848939,8.45723085024355,8.87668416661445,9.81170115690542,6.23846153846154,482.234909373095,174,36082,1,0,0,0,9 +"11228",2013,35006,"NM","35","006",27414,0.542241190632524,1963,0.128219158094404,7.58222919427646,8.13035354743124,8.95776800997116,8.6,623.341356538913,101,16203,1,0,0,0,9 +"11229",2013,35007,"NM","35","007",13067,0.952705288130405,692,0.16981709650264,6.53958595561767,7.15461535691366,8.15536212032814,7.06923076923077,659.79381443299,48,7275,1,0,0,0,9 +"11230",2013,35009,"NM","35","009",50810,0.8804566030309,5043,0.096772288919504,8.52575642207673,8.66215896166642,9.54387974051276,5.10769230769231,335.172834072519,99,29537,1,0,0,0,9 +"11231",2013,35013,"NM","35","013",214285,0.932692442308141,23307,0.108141027136757,10.0565090236185,10.0412474922406,11.0341313120349,7.44615384615385,338.601385864841,409,120791,1,0,0,0,9 +"11232",2013,35015,"NM","35","015",55694,0.94202247997989,3750,0.128721226703056,8.22951111896446,8.75226531359572,9.65611534348785,4.57692307692308,471.490538756522,150,31814,1,0,0,0,9 +"11233",2013,35017,"NM","35","017",29109,0.950427702772338,1629,0.160775018035659,7.39572160860205,7.9355873855892,8.98168163997386,6.73846153846154,445.650067816315,69,15483,1,0,0,0,9 +"11234",2013,35025,"NM","35","025",68631,0.925398143695997,5016,0.10336436887121,8.52038808231276,9.02304647355567,9.82102943009561,4.46923076923077,430.609597924773,166,38550,1,0,0,0,9 +"11235",2013,35027,"NM","35","027",19987,0.94041126732376,879,0.179166458197829,6.77878489768518,7.4759059693674,8.62425226370964,6.40769230769231,506.959166743479,55,10849,1,0,0,0,9 +"11236",2013,35028,"NM","35","028",17970,0.904173622704508,653,0.155703951029494,6.48157712927643,7.69302574841789,8.53326337159373,4.20769230769231,184.860867873127,19,10278,1,0,0,0,9 +"11237",2013,35029,"NM","35","029",24599,0.947843408268629,1592,0.118378795886012,7.37274636640433,7.81802793853073,8.74193546409414,19.0384615384615,589.125069660059,74,12561,1,0,0,0,9 +"11238",2013,35031,"NM","35","031",72682,0.187611788338241,6171,0.107179219063867,8.72761617832107,9.03264808356589,9.95991514383477,10.0692307692308,537.059538274605,221,41150,1,0,0,0,9 +"11239",2013,35035,"NM","35","035",66347,0.85363317105521,5948,0.116840248993926,8.69081030758005,8.9001399880938,9.81629434083375,6.36153846153846,420.985318803123,158,37531,1,0,0,0,9 +"11240",2013,35037,"NM","35","037",8675,0.938674351585014,440,0.155043227665706,6.08677472691231,6.74993119378857,7.7848892956551,7.26153846153846,642.123287671233,30,4672,1,0,0,0,9 +"11241",2013,35039,"NM","35","039",40059,0.786689632791632,2525,0.141441373973389,7.83399634170946,8.44612674298238,9.34844877409381,9.50769230769231,656.264939806163,151,23009,1,0,0,0,9 +"11242",2013,35041,"NM","35","041",20033,0.931113662456946,2561,0.102131483052963,7.84815308619953,7.67600993202889,8.64628976475065,5.56153846153846,296.943231441048,34,11450,1,0,0,0,9 +"11243",2013,35043,"NM","35","043",136356,0.80463639297134,7757,0.135380914664555,8.95635094049087,9.77451717123917,10.6123358233222,7.4,328.83961194406,261,79370,1,0,0,0,9 +"11244",2013,35045,"NM","35","045",129509,0.574786308287455,9059,0.121690384452046,9.11151401766929,9.63626148865173,10.5257293195803,6.76153846153846,393.662853918046,286,72651,1,0,0,0,9 +"11245",2013,35047,"NM","35","047",28825,0.929540329575022,2154,0.14959236773634,7.67508185771633,8.02682357621763,9.03408040656082,8.3,543.024227234754,91,16758,1,0,0,0,9 +"11246",2013,35049,"NM","35","049",147545,0.923745298044664,8086,0.165840929885798,8.99788945020072,9.78211056636953,10.7102758695851,5.56923076923077,374.625659010943,329,87821,1,0,0,0,9 +"11247",2013,35051,"NM","35","051",11531,0.952736102679733,463,0.177608186627352,6.13772705408623,6.78105762593618,7.98036576511125,9.74615384615385,1058.843950703,61,5761,1,0,0,0,9 +"11248",2013,35053,"NM","35","053",17507,0.828525732564117,1424,0.134688981550237,7.26122509197192,7.52617891334615,8.48735234940522,7.36153846153846,613.74383740819,61,9939,1,0,0,0,9 +"11249",2013,35055,"NM","35","055",32961,0.892236279239101,1604,0.174660962956221,7.38025578842646,8.22871079879369,9.18111751329928,10.2923076923077,498.00796812749,95,19076,1,0,0,0,9 +"11250",2013,35057,"NM","35","057",15821,0.920359016497061,942,0.158397067189179,6.84800527457636,7.49665243816828,8.36264243156764,10.1846153846154,630.600730169267,57,9039,1,0,0,0,9 +"11251",2013,35061,"NM","35","061",76499,0.909985751447731,5024,0.13215859030837,8.52198170814803,9.11591979635669,9.99424191580459,8.26923076923077,445.646983924877,196,43981,1,0,0,0,9 +"11252",2013,32001,"NV","32","001",23956,0.876106194690266,1477,0.133995658707631,7.29776828253138,7.86710550031674,8.80747188971528,9.83076923076923,353.226874678048,48,13589,1,0,0,0,9 +"11253",2013,32003,"NV","32","003",2017798,0.746247642231779,135302,0.114390538597025,11.8152645960156,12.5710768050443,13.317285216174,10.0307692307692,355.2448393596,4371,1230419,1,0,0,0,9 +"11254",2013,32005,"NV","32","005",46956,0.940689155805435,2235,0.174865831842576,7.71199650704767,8.43641688138895,9.49484239342133,10.0923076923077,345.298626394475,91,26354,1,0,0,0,9 +"11255",2013,32007,"NV","32","007",52378,0.90242086372141,3730,0.118637595937226,8.22416351263786,8.799963219507,9.60588981529697,6.44615384615385,336.081166772353,106,31540,1,0,0,0,9 +"11256",2013,32013,"NV","32","013",17365,0.917132162395623,1117,0.129110279297437,7.0184017990692,7.69028602067677,8.47386806667786,6.62307692307692,327.017408867943,34,10397,1,0,0,0,9 +"11257",2013,32015,"NV","32","015",6064,0.915402374670185,411,0.121372031662269,6.01859321449623,6.52356230614951,7.42297125104942,7.66153846153846,432.276657060519,15,3470,1,0,0,0,9 +"11258",2013,32019,"NV","32","019",51114,0.921723989513636,2405,0.150017607700434,7.78530518253986,8.65747673686329,9.56584463093058,13.2230769230769,451.938119242135,130,28765,1,0,0,0,9 +"11259",2013,32021,"NV","32","021",4561,0.739092304319228,264,0.162245121683841,5.57594910314632,5.98645200528444,7.14440718032114,12.9538461538462,748.326112642773,19,2539,1,0,0,0,9 +"11260",2013,32023,"NV","32","023",42905,0.915231325020394,2044,0.167952453094045,7.6226639513236,8.2845042272585,9.32295451634532,12.5923076923077,798.988850268587,177,22153,1,0,0,0,9 +"11261",2013,32031,"NV","32","031",431255,0.874733046573373,31964,0.13204484585686,10.3723655484944,10.8890617803285,11.774373925602,9.8,392.267060579249,1033,263341,1,0,0,0,9 +"11262",2013,32033,"NV","32","033",10052,0.885395941106248,596,0.132908873855949,6.39024066706535,7.10906213568717,7.75147531802146,7.64615384615385,357.78175313059,22,6149,1,0,0,0,9 +"11263",2013,32510,"NV","32","510",53746,0.914616901722919,3356,0.142596658355971,8.1185050675871,8.73873546136347,9.59960834518178,10.7692307692308,570.161545771302,180,31570,1,0,0,0,9 +"11264",2013,36001,"NY","36","001",306661,0.793710318560234,31233,0.13211657171926,10.3492305071429,10.4525622637338,11.4762303597824,6.22307692307692,283.269681176545,537,189572,1,0,0,0,9 +"11265",2013,36003,"NY","36","003",47918,0.968842606118786,4412,0.137234442172044,8.39208338037339,8.50491816054062,9.50293535628861,7.68461538461538,323.066191857263,88,27239,1,0,0,0,9 +"11266",2013,36005,"NY","36","005",1421498,0.459568708503283,123331,0.101559763010571,11.7226270768544,12.1107724656758,13.0272501781981,11.7307692307692,332.39976674524,2833,852287,1,0,0,0,9 +"11267",2013,36007,"NY","36","007",197953,0.892636130798725,19380,0.134365228109703,9.87199688544476,9.9154161234014,10.9696799499481,7.96923076923077,397.532202689796,462,116217,1,0,0,0,9 +"11268",2013,36009,"NY","36","009",79003,0.935698644355278,5133,0.146741262990013,8.5434455625603,9.07817946837384,10.0333748133705,8.73076923076923,439.618411219062,200,45494,1,0,0,0,9 +"11269",2013,36011,"NY","36","011",79112,0.939781575487916,5093,0.143442208514511,8.5356223268846,9.14452103093889,10.0245540805156,7.55384615384615,315.115090047789,151,47919,1,0,0,0,9 +"11270",2013,36013,"NY","36","013",132884,0.951551729327835,9773,0.143787062400289,9.18737876033884,9.57748036576268,10.5483369476883,8.22307692307692,380.514538772224,293,77001,1,0,0,0,9 +"11271",2013,36015,"NY","36","015",88230,0.903332199931996,5845,0.13940836450187,8.67334187390617,9.24551444698384,10.1445888932241,8.10769230769231,338.730049374211,177,52254,1,0,0,0,9 +"11272",2013,36017,"NY","36","017",49489,0.977166643092404,2937,0.149649417042171,7.98514393119862,8.63675242647388,9.56008133131199,7.50769230769231,411.968020109625,118,28643,1,0,0,0,9 +"11273",2013,36019,"NY","36","019",81544,0.933434710095163,7933,0.132823996860591,8.978786553302,9.19370273082316,10.0877239415349,8.51538461538462,322.259330872444,165,51201,1,0,0,0,9 +"11274",2013,36021,"NY","36","021",62153,0.919006323105884,3508,0.161746013869001,8.16280135349207,8.83579236650274,9.80316985602126,6.16153846153846,377.813064666265,138,36526,1,0,0,0,9 +"11275",2013,36023,"NY","36","023",48913,0.962463966634637,6096,0.123913887923456,8.71538809736648,8.54714026778419,9.59906615608005,7.93846153846154,298.384607469904,87,29157,1,0,0,0,9 +"11276",2013,36025,"NY","36","025",46806,0.963701234884417,3082,0.158462590266205,8.03333401588006,8.45276133125685,9.47093383873723,8.06923076923077,440.094089081114,116,26358,1,0,0,0,9 +"11277",2013,36027,"NY","36","027",296292,0.836782633348184,22735,0.135980721720465,10.0316608662591,10.4844733662077,11.394310833634,6.84615384615385,312.5225110408,564,180467,1,0,0,0,9 +"11278",2013,36029,"NY","36","029",921015,0.815653382409624,68837,0.13696845328252,11.1394966700615,11.5523096263036,12.5463056587007,7.6,363.05983790808,2006,552526,1,0,0,0,9 +"11279",2013,36031,"NY","36","031",38610,0.953017353017353,2107,0.156746956746957,7.65302041380419,8.41227702146668,9.28098521154551,8.48461538461538,379.653997152595,88,23179,1,0,0,0,9 +"11280",2013,36033,"NY","36","033",51222,0.851001522783179,3869,0.132169770801609,8.26075135470051,8.75084137537553,9.51428941689184,9.04615384615385,329.778709239968,107,32446,1,0,0,0,9 +"11281",2013,36035,"NY","36","035",54353,0.965779257814656,3307,0.142531231026806,8.10379671298179,8.79558221695643,9.68663666084494,9.69230769230769,379.278445883441,123,32430,1,0,0,0,9 +"11282",2013,36037,"NY","36","037",59127,0.944627665871767,3875,0.141830297495222,8.26230094178745,8.82922635473185,9.75765220431258,7.03076923076923,364.447960221494,129,35396,1,0,0,0,9 +"11283",2013,36039,"NY","36","039",48308,0.916866771549226,3376,0.152997433137369,8.12444685571585,8.62962862074603,9.51273862826364,8.97692307692308,409.117475160725,119,29087,1,0,0,0,9 +"11284",2013,36043,"NY","36","043",63888,0.975159654395192,4097,0.145598547458052,8.31801027754687,8.8685540405312,9.82406548555864,8.03076923076923,397.58742866416,147,36973,1,0,0,0,9 +"11285",2013,36045,"NY","36","045",118617,0.897915138639487,12655,0.10056737229908,9.44580767297922,9.52748415457758,10.4103051549046,9.47692307692308,311.856024179145,227,72790,1,0,0,0,9 +"11286",2013,36047,"NY","36","047",2587759,0.502178139463528,192280,0.109042225338604,12.1667079220079,12.7805179309116,13.6518910230225,9.32307692307692,267.525879885205,4330,1618535,1,0,0,0,9 +"11287",2013,36049,"NY","36","049",27092,0.980658496973276,1607,0.141074856046065,7.38212436573751,8.05420489706441,8.94219945473124,9.69230769230769,332.523340580637,52,15638,1,0,0,0,9 +"11288",2013,36051,"NY","36","051",64612,0.948693741100724,6590,0.137807218473349,8.79330862749655,8.86488793377419,9.85077219486413,7.2,265.123511866826,104,39227,1,0,0,0,9 +"11289",2013,36053,"NY","36","053",72490,0.96058766726445,5961,0.141729893778452,8.69299353121993,8.96839619119826,9.97254708846762,7.78461538461538,302.065283566712,129,42706,1,0,0,0,9 +"11290",2013,36055,"NY","36","055",748456,0.788763801746529,57738,0.130234776660218,10.9636708145845,11.3678072030938,12.3488300968851,7.15384615384615,280.846408368022,1263,449712,1,0,0,0,9 +"11291",2013,36057,"NY","36","057",49754,0.952968605539253,3065,0.139928447963983,8.02780284837031,8.65625923953924,9.57498348556409,9.41538461538462,424.687576147875,122,28727,1,0,0,0,9 +"11292",2013,36059,"NY","36","059",1352355,0.776330179575629,83943,0.135750598030842,11.3378932760631,12.0215907568989,12.9144679798525,6.06923076923077,225.338101356927,1794,796137,1,0,0,0,9 +"11293",2013,36061,"NY","36","061",1628379,0.665190351877542,121408,0.1128729859572,11.7069120532947,12.3793828887895,13.2730876222737,7.47692307692308,198.139152796628,2219,1119920,1,0,0,0,9 +"11294",2013,36063,"NY","36","063",214125,0.897896088733217,14435,0.147908931698774,9.57741109209704,10.0981904762185,11.0825886032269,8.68461538461538,427.570093457944,549,128400,1,0,0,0,9 +"11295",2013,36065,"NY","36","065",233370,0.885130908000171,16571,0.134164631272229,9.71540945862979,10.1921941000341,11.1091439388422,7.61538461538461,355.674357120425,487,136923,1,0,0,0,9 +"11296",2013,36067,"NY","36","067",468302,0.825422483781833,34612,0.132156172726147,10.4519557217266,10.8888564855899,11.8714526923723,7.00769230769231,313.879493206444,876,279088,1,0,0,0,9 +"11297",2013,36069,"NY","36","069",109081,0.951943968243782,7250,0.147404222550215,8.88875674784872,9.42786818450476,10.3868391993014,6.44615384615385,342.833990431815,220,64171,1,0,0,0,9 +"11298",2013,36071,"NY","36","071",374417,0.836436379758398,27994,0.120021259718442,10.2397454804806,10.7638215012641,11.5947911254398,7.00769230769231,288.645690834473,633,219300,1,0,0,0,9 +"11299",2013,36073,"NY","36","073",42233,0.915658371415718,2958,0.14180853834679,7.99226864327075,8.52277756971014,9.46412951340478,9.32307692307692,380.228136882129,98,25774,1,0,0,0,9 +"11300",2013,36075,"NY","36","075",121187,0.974345433091008,9834,0.134742175315834,9.19360104797189,9.54237420199846,10.4931058722672,10.1,363.566781477229,266,73164,1,0,0,0,9 +"11301",2013,36077,"NY","36","077",61637,0.95669808718789,7057,0.14356636435907,8.86177531100083,8.69801362208393,9.82021463334231,6.98461538461538,297.144114895724,108,36346,1,0,0,0,9 +"11302",2013,36079,"NY","36","079",99546,0.938932754706367,5786,0.145942579310068,8.66319648553608,9.44572864970683,10.3157296449233,6.23846153846154,235.779546124374,144,61074,1,0,0,0,9 +"11303",2013,36081,"NY","36","081",2286788,0.504210272224622,159020,0.121574015606169,11.9767852594555,12.6958176256849,13.5182009558867,7.72307692307692,223.535177521237,3284,1469120,1,0,0,0,9 +"11304",2013,36083,"NY","36","083",159590,0.890989410364058,12182,0.138373331662385,9.40771473139643,9.86297800919792,10.8028762463349,6.83846153846154,330.84268175988,325,98234,1,0,0,0,9 +"11305",2013,36085,"NY","36","085",471783,0.787143665625934,32540,0.13127009663341,10.390225380773,11.0402623022986,11.9026947015054,8.94615384615385,297.719220933339,858,288191,1,0,0,0,9 +"11306",2013,36087,"NY","36","087",319290,0.790356728992452,20975,0.118738450938019,9.95108653133541,10.5008119219187,11.3921805472687,6.43846153846154,232.518573129927,410,176330,1,0,0,0,9 +"11307",2013,36089,"NY","36","089",111967,0.94916359284432,10753,0.128930845695607,9.28294006439053,9.43683829110297,10.3631567146578,9.36923076923077,349.866537980124,232,66311,1,0,0,0,9 +"11308",2013,36091,"NY","36","091",224151,0.950983934936717,13190,0.137871345655384,9.48721424571136,10.301457978882,11.1303611211482,5.96923076923077,253.357910274581,345,136171,1,0,0,0,9 +"11309",2013,36093,"NY","36","093",154978,0.820884254539354,10454,0.133193098375253,9.25473995927287,9.84516964321161,10.7577539334299,6.87692307692308,379.637618636756,352,92720,1,0,0,0,9 +"11310",2013,36095,"NY","36","095",31902,0.97128706664159,2221,0.155005955739452,7.70571282389443,8.16479480424477,9.13302726887351,8.33076923076923,348.544157863692,65,18649,1,0,0,0,9 +"11311",2013,36097,"NY","36","097",18391,0.975422761133163,1095,0.159643303789897,6.9985096422506,7.6685611080159,8.59359852261864,9.02307692307692,464.354001638896,51,10983,1,0,0,0,9 +"11312",2013,36099,"NY","36","099",35244,0.930172511633186,2512,0.142804448984224,7.82883452758809,8.31041499418829,9.17936556767675,7.11538461538461,327.653997378768,70,21364,1,0,0,0,9 +"11313",2013,36101,"NY","36","101",98826,0.961528342743812,5884,0.144324368081274,8.67999208172133,9.34914533485336,10.2557276771847,8.66153846153846,381.732612863866,219,57370,1,0,0,0,9 +"11314",2013,36103,"NY","36","103",1497389,0.864431353509342,97764,0.127982775350961,11.4903116900986,12.1702433749288,13.0149296029188,6.76153846153846,284.053206165527,2547,896663,1,0,0,0,9 +"11315",2013,36105,"NY","36","105",76957,0.867198565432644,4858,0.144223397481711,8.48838210956212,9.09593911166621,9.99747868095637,8.35384615384615,491.771031407776,225,45753,1,0,0,0,9 +"11316",2013,36107,"NY","36","107",50128,0.977557452920523,2756,0.14570699010533,7.92153563213355,8.64241515616962,9.58410839334109,7.29230769230769,312.489268912469,91,29121,1,0,0,0,9 +"11317",2013,36109,"NY","36","109",103668,0.84046185901146,18890,0.113140023922522,9.84638796049556,9.23630047364571,10.4128621240348,5.34615384615385,249.890199760711,165,66029,1,0,0,0,9 +"11318",2013,36111,"NY","36","111",180722,0.897051825455672,12731,0.148028463607087,9.45179524306165,9.99570203652394,10.907129603613,7.32307692307692,312.350913198851,347,111093,1,0,0,0,9 +"11319",2013,36113,"NY","36","113",65111,0.973860023651917,3824,0.154059989863464,8.24905227417129,8.92558733903028,9.88338688082912,8.40769230769231,348.072708521336,135,38785,1,0,0,0,9 +"11320",2013,36115,"NY","36","115",62785,0.955626343871944,3964,0.143314485944095,8.28500889544988,8.96992349199152,9.79484387541939,7.66923076923077,303.879705551044,116,38173,1,0,0,0,9 +"11321",2013,36117,"NY","36","117",92360,0.95155911650065,5411,0.145831528800346,8.59618919764273,9.30036387462377,10.2124417602634,7.75384615384615,339.82533708481,186,54734,1,0,0,0,9 +"11322",2013,36119,"NY","36","119",964713,0.758892022808856,56656,0.127663875162872,10.9447531743517,11.7535159298882,12.576773761202,6.42307692307692,224.294984876814,1274,568002,1,0,0,0,9 +"11323",2013,36121,"NY","36","121",41369,0.92849718388165,2571,0.142691387270662,7.85205020726589,8.60006266923853,9.31874624581997,8.13076923076923,322.189371541202,85,26382,1,0,0,0,9 +"11324",2013,36123,"NY","36","123",25219,0.978746183433126,1936,0.14758713668266,7.56837926783652,7.79028238070348,8.8814195515078,7,237.256452656553,33,13909,1,0,0,0,9 +"11325",2013,39001,"OH","39","001",28085,0.984724942139932,1571,0.138365675627559,7.35946763825562,8.19284713459287,9.00245482305095,12.6615384615385,515.112021349221,83,16113,1,0,0,0,9 +"11326",2013,39003,"OH","39","003",105071,0.84990149517945,8223,0.134699393743278,9.0146903849709,9.39789819556538,10.2872181684983,7.81538461538462,375.440609886056,229,60995,1,0,0,0,9 +"11327",2013,39005,"OH","39","005",53163,0.979459398453812,3787,0.136542332073058,8.2393294279018,8.70167907103957,9.62852425249212,8.07692307692308,350.467289719626,105,29960,1,0,0,0,9 +"11328",2013,39007,"OH","39","007",99779,0.945860351376542,5920,0.143787770973852,8.68609172787805,9.39490940131062,10.247998817974,9.47692307692308,497.392561485638,289,58103,1,0,0,0,9 +"11329",2013,39009,"OH","39","009",64628,0.928096181221762,12466,0.108838274432135,9.4307602173688,8.74878098951311,9.90318750752713,9.02307692307692,282.183516590445,116,41108,1,0,0,0,9 +"11330",2013,39011,"OH","39","011",45820,0.983435181143605,2591,0.139415102575295,7.85979918056211,8.59322787769223,9.4596973301063,5.88461538461539,341.755625527993,89,26042,1,0,0,0,9 +"11331",2013,39013,"OH","39","013",69593,0.947092379980745,4446,0.155547253315707,8.39976009452414,9.03169206054852,9.89101003102502,8.20769230769231,423.748988239775,178,42006,1,0,0,0,9 +"11332",2013,39015,"OH","39","015",44125,0.98270821529745,2565,0.137971671388102,7.84971375760487,8.6195692580331,9.46024269259108,10.1384615384615,572.608289186663,147,25672,1,0,0,0,9 +"11333",2013,39017,"OH","39","017",371497,0.878682734988439,31578,0.125026581641305,10.3602159545818,10.7387851252008,11.6225239875769,7.48461538461538,391.36719424722,861,219998,1,0,0,0,9 +"11334",2013,39019,"OH","39","019",28272,0.983658743633277,1496,0.15375636672326,7.31055015853442,8.10440130792161,8.99342737041261,7.87692307692308,394.501633483326,64,16223,1,0,0,0,9 +"11335",2013,39021,"OH","39","021",39468,0.959942231681362,2399,0.134590047633526,7.7828072628397,8.49699048409872,9.33829373628664,6.9,396.179072940969,90,22717,1,0,0,0,9 +"11336",2013,39023,"OH","39","023",136682,0.885134838530311,8859,0.140018436955854,9.08918917041203,9.66307067255146,10.5933794403754,7.50769230769231,531.278541749746,413,77737,1,0,0,0,9 +"11337",2013,39025,"OH","39","025",200504,0.967686430195906,11850,0.136600766069505,9.38008314656328,10.1658133547255,11.0112908079058,7.33076923076923,407.941937098523,489,119870,1,0,0,0,9 +"11338",2013,39027,"OH","39","027",41879,0.960170968743284,2795,0.136942142840087,7.9355873855892,8.51358669582213,9.41881688624699,10.4153846153846,504.139683580621,123,24398,1,0,0,0,9 +"11339",2013,39029,"OH","39","029",106007,0.964304244059355,5995,0.151046628996198,8.69868106746161,9.48918349576076,10.3119149354394,8.21538461538461,436.227669297881,273,62582,1,0,0,0,9 +"11340",2013,39031,"OH","39","031",36721,0.977288200212412,2102,0.143623539663952,7.6506445514369,8.35396813031327,9.25855894424666,9.74615384615385,549.949787193343,115,20911,1,0,0,0,9 +"11341",2013,39033,"OH","39","033",42715,0.979585625658434,2440,0.141917359241484,7.79975331828725,8.54305585094196,9.40615383561844,9.13076923076923,417.25192101132,101,24206,1,0,0,0,9 +"11342",2013,39035,"OH","39","035",1265698,0.65322533495352,84808,0.139003933007716,11.3481451569529,11.9098004500563,12.8748400395646,7.04615384615385,427.545987133713,3214,751732,1,0,0,0,9 +"11343",2013,39037,"OH","39","037",52321,0.984862674643069,2856,0.134439326465473,7.95717732345947,8.72225423517968,9.57955634740923,6.98461538461538,429.036052868314,124,28902,1,0,0,0,9 +"11344",2013,39039,"OH","39","039",38587,0.965195532174048,2461,0.141031953766813,7.80832305039106,8.43054538469057,9.30264604276021,7.47692307692308,300.491713713349,66,21964,1,0,0,0,9 +"11345",2013,39041,"OH","39","041",185545,0.904039451346035,9021,0.117960602549247,9.10731047165664,10.3037726006028,10.9151611888428,5.33076923076923,196.801286137983,213,108231,1,0,0,0,9 +"11346",2013,39043,"OH","39","043",76071,0.886224711125133,4417,0.153159548316704,8.39321601159653,9.04522985191258,10.011220252339,8.11538461538461,489.388949871936,214,43728,1,0,0,0,9 +"11347",2013,39045,"OH","39","045",148820,0.907042064238678,9009,0.126904985888993,9.10597935665144,9.90683195378652,10.6804242588258,6.63846153846154,347.67492394611,304,87438,1,0,0,0,9 +"11348",2013,39047,"OH","39","047",28690,0.958626699198327,1737,0.136842105263158,7.4599147662411,8.20303024171486,9.03978927078114,7.64615384615385,612.870275791624,102,16643,1,0,0,0,9 +"11349",2013,39049,"OH","39","049",1219186,0.712375306146888,97922,0.111196322792421,11.4919265223742,12.0047028168424,12.8769435418257,6.43076923076923,358.305376942242,2731,762199,1,0,0,0,9 +"11350",2013,39051,"OH","39","051",42199,0.981208085499656,2388,0.145335197516529,7.77821147451249,8.5213843960347,9.4159714715391,7.91538461538462,405.820864931338,99,24395,1,0,0,0,9 +"11351",2013,39053,"OH","39","053",30684,0.957502281319254,1916,0.138834571763786,7.55799495853081,8.19478163844336,9.08523056093334,9.64615384615385,596.116725332122,105,17614,1,0,0,0,9 +"11352",2013,39055,"OH","39","055",93847,0.975598580668535,5016,0.154453525419033,8.52038808231276,9.2305350792617,10.1746971964194,5.76153846153846,243.986782448321,127,52052,1,0,0,0,9 +"11353",2013,39057,"OH","39","057",164004,0.881405331577279,15045,0.132996756176679,9.61880098906415,9.79768249363915,10.8141625456246,6.94615384615385,280.884530922833,275,97905,1,0,0,0,9 +"11354",2013,39059,"OH","39","059",39716,0.969684761808843,2344,0.14447577802397,7.7596141506969,8.45574322910002,9.35001535404867,8.66153846153846,508.125629681545,116,22829,1,0,0,0,9 +"11355",2013,39061,"OH","39","061",805408,0.699491437879932,58501,0.129772736302594,10.9767991270909,11.4515074034638,12.4247060413665,7.26923076923077,422.649890504673,2040,482669,1,0,0,0,9 +"11356",2013,39063,"OH","39","063",75612,0.954517801407184,5316,0.131936729619637,8.57847641983314,9.09795524138139,10.0174856565895,6.2,303.111949346625,135,44538,1,0,0,0,9 +"11357",2013,39065,"OH","39","065",31743,0.975931701477491,3501,0.12027848659547,8.16080392095467,8.20930841164694,9.12118123565636,7.69230769230769,487.778143154664,89,18246,1,0,0,0,9 +"11358",2013,39067,"OH","39","067",15598,0.967624054365944,861,0.164187716373894,6.75809450442773,7.45414107814668,8.41582469702795,7.90769230769231,409.972299168975,37,9025,1,0,0,0,9 +"11359",2013,39069,"OH","39","069",27831,0.980776831590672,1635,0.140598613057382,7.39939808333135,8.10349427838097,8.9751242394277,8.8,301.356102461075,48,15928,1,0,0,0,9 +"11360",2013,39071,"OH","39","071",43200,0.972615740740741,2479,0.133472222222222,7.81561053203519,8.595449689382,9.42762680380599,10.4538461538462,476.772616136919,117,24540,1,0,0,0,9 +"11361",2013,39073,"OH","39","073",28660,0.983391486392184,1633,0.143161200279135,7.39817409297047,8.18479265416508,9.0306154410295,8.08461538461538,577.96508127634,96,16610,1,0,0,0,9 +"11362",2013,39075,"OH","39","075",43607,0.991492191620611,3171,0.102254225239067,8.06180227453835,8.47303229563047,9.3213449300191,5.21538461538462,235.817575083426,53,22475,1,0,0,0,9 +"11363",2013,39077,"OH","39","077",58840,0.973300475866757,3501,0.134823249490143,8.16080392095467,8.89576660405609,9.74138030299241,10.1923076923077,458.403572590424,155,33813,1,0,0,0,9 +"11364",2013,39079,"OH","39","079",32807,0.980522449477246,1962,0.140122534824885,7.58171964012531,8.34283980427146,9.17481681590714,10.4923076923077,588.664305063555,113,19196,1,0,0,0,9 +"11365",2013,39081,"OH","39","081",68200,0.928870967741935,4767,0.15766862170088,8.46947245520483,8.94350613203724,9.91100919393497,10.8461538461538,605.281077400318,240,39651,1,0,0,0,9 +"11366",2013,39083,"OH","39","083",60882,0.976544791564009,4900,0.133323478203738,8.49699048409872,8.83593778931984,9.77263827411114,6.87692307692308,389.453034848835,135,34664,1,0,0,0,9 +"11367",2013,39085,"OH","39","085",230085,0.940474172588391,13006,0.147262968033553,9.4731660684291,10.2264402390698,11.1334789192606,6.30769230769231,397.100210706234,539,135734,1,0,0,0,9 +"11368",2013,39087,"OH","39","087",61908,0.96594947341216,3699,0.135975964334173,8.21581779183245,8.98782162543081,9.82070359105721,8.76153846153846,550.042842532961,199,36179,1,0,0,0,9 +"11369",2013,39089,"OH","39","089",168532,0.942117817387796,10833,0.133232857854888,9.29035230994557,9.96904118327557,10.8250443940828,6.90769230769231,389.243104619221,384,98653,1,0,0,0,9 +"11370",2013,39091,"OH","39","091",45399,0.961408841604441,2522,0.141897398621115,7.83280751652486,8.61068353450358,9.48463320730895,6.83846153846154,460.599547077112,120,26053,1,0,0,0,9 +"11371",2013,39093,"OH","39","093",303159,0.881906854159039,18868,0.139425186123453,9.84522264440415,10.5523954479503,11.3953686537232,7.41538461538462,404.027846842367,715,176968,1,0,0,0,9 +"11372",2013,39095,"OH","39","095",436269,0.765885268034172,33837,0.133011971971421,10.429310157308,10.8637568915825,11.8001924512857,8.65384615384615,457.805292918767,1195,261028,1,0,0,0,9 +"11373",2013,39097,"OH","39","097",43263,0.918775859279292,2665,0.128192681968426,7.88795933659994,8.75951172211649,9.35097150171593,6.23846153846154,399.437828241734,108,27038,1,0,0,0,9 +"11374",2013,39099,"OH","39","099",234431,0.817656367971813,15278,0.152855211128221,9.6341691641013,10.2018127850864,11.1340195190473,8.50769230769231,502.734168283648,684,136056,1,0,0,0,9 +"11375",2013,39101,"OH","39","101",65996,0.91987393175344,4528,0.138735680950361,8.41803561988302,9.0451118926084,9.7858295090679,7.87692307692308,423.592360474622,171,40369,1,0,0,0,9 +"11376",2013,39103,"OH","39","103",174672,0.968907437940826,9211,0.138196161949253,9.12815370098824,10.0504409654923,10.8588066713778,5.83846153846154,268.346750670867,276,102852,1,0,0,0,9 +"11377",2013,39105,"OH","39","105",23448,0.981363016035483,1293,0.148541453428864,7.16472037877186,7.96935774201635,8.83651926920248,11.8230769230769,565.668286315179,78,13789,1,0,0,0,9 +"11378",2013,39107,"OH","39","107",40623,0.98210373433769,2427,0.140240750313862,7.7944112057266,8.40290404501411,9.31045716331096,5.10769230769231,366.737363025804,83,22632,1,0,0,0,9 +"11379",2013,39109,"OH","39","109",103228,0.953927229046383,5879,0.138760801332972,8.67914195840225,9.45759099863363,10.3091193134236,7.19230769230769,431.649842960077,257,59539,1,0,0,0,9 +"11380",2013,39111,"OH","39","111",14514,0.987529282072482,728,0.154333746727298,6.59030104819669,7.40000951716269,8.30573114487587,10,379.344101811062,31,8172,1,0,0,0,9 +"11381",2013,39113,"OH","39","113",534448,0.75156048857887,38018,0.132213049726073,10.5458150107661,11.0354862602219,11.9895819150461,8.26923076923077,504.674443617109,1586,314262,1,0,0,0,9 +"11382",2013,39115,"OH","39","115",14893,0.947089236554086,830,0.146243201504062,6.72142570079064,7.43366654016617,8.35467426191846,10.0615384615385,648.814439070426,55,8477,1,0,0,0,9 +"11383",2013,39117,"OH","39","117",34851,0.983587271527359,1899,0.142291469398296,7.54908271081229,8.42046200245647,9.2179116374725,8.01538461538462,400.138319419058,81,20243,1,0,0,0,9 +"11384",2013,39119,"OH","39","119",85660,0.939306560821854,5905,0.136306327340649,8.68355472863146,9.23503298456655,10.1395868150106,9.11538461538461,443.359772218833,218,49170,1,0,0,0,9 +"11385",2013,39121,"OH","39","121",14678,0.963823409183812,662,0.19798337648181,6.49526555593701,7.1708884785125,8.12058871174027,9.73076923076923,471.47001934236,39,8272,1,0,0,0,9 +"11386",2013,39123,"OH","39","123",41041,0.978606759094564,2003,0.169172291123511,7.60240133566582,8.39840965542627,9.36563325638222,9.72307692307692,469.744202929496,110,23417,1,0,0,0,9 +"11387",2013,39125,"OH","39","125",19138,0.976225310899781,1063,0.143379663496708,6.96885037834195,7.72312009226633,8.58634605010455,7.62307692307692,291.757840991977,32,10968,1,0,0,0,9 +"11388",2013,39127,"OH","39","127",36000,0.987,2170,0.137027777777778,7.68248244653451,8.41582469702795,9.25320827220336,9.56153846153846,351.326971466553,74,21063,1,0,0,0,9 +"11389",2013,39129,"OH","39","129",56352,0.95132382169222,3735,0.125088727995457,8.22550309756692,8.97752520096524,9.64153820197995,7.30769230769231,453.256133578969,155,34197,1,0,0,0,9 +"11390",2013,39131,"OH","39","131",28266,0.973324842567042,1704,0.133658812707847,7.44073370738926,8.18507147753228,9.00834657938471,12.1923076923077,602.446297085134,99,16433,1,0,0,0,9 +"11391",2013,39133,"OH","39","133",161746,0.928016767029787,18979,0.132293843433532,9.85108838373692,9.80006959333764,10.8226541451557,7.67692307692308,334.407977732834,334,99878,1,0,0,0,9 +"11392",2013,39135,"OH","39","135",41685,0.982703610411419,2291,0.144704330094758,7.7367436824535,8.53129331579502,9.39582359210772,7.53076923076923,460.982598945139,111,24079,1,0,0,0,9 +"11393",2013,39137,"OH","39","137",34122,0.985756989625462,2059,0.136979075083524,7.62997570702779,8.25945819533241,9.16083495207234,5.99230769230769,232.294032624406,45,19372,1,0,0,0,9 +"11394",2013,39139,"OH","39","139",122339,0.886225978633142,7796,0.138672050613459,8.96136606062745,9.59777727756496,10.424006048273,8.57692307692308,467.164031200895,330,70639,1,0,0,0,9 +"11395",2013,39141,"OH","39","141",77299,0.921124464740812,4682,0.136081967425193,8.45148064805086,9.27021176901357,9.97743479748821,8.66923076923077,435.465298858997,208,47765,1,0,0,0,9 +"11396",2013,39143,"OH","39","143",60052,0.950343036035436,3427,0.144208352760941,8.13944052187461,8.87696334026227,9.76192398821434,7.54615384615385,380.72164056416,132,34671,1,0,0,0,9 +"11397",2013,39145,"OH","39","145",78333,0.957080668428376,5536,0.134758020246895,8.6190274972975,9.19471899107323,10.0378873180158,11.8923076923077,553.854173454095,255,46041,1,0,0,0,9 +"11398",2013,39147,"OH","39","147",55860,0.954923021840315,4159,0.141335481561045,8.33302993974291,8.75966867102994,9.66643522103567,7.74615384615385,426.123205187587,138,32385,1,0,0,0,9 +"11399",2013,39149,"OH","39","149",49202,0.955306694849803,2874,0.133307589122393,7.96346006663897,8.70300863746445,9.53394445360403,6.69230769230769,353.142612541913,99,28034,1,0,0,0,9 +"11400",2013,39151,"OH","39","151",375152,0.898286561180535,24549,0.143101995990958,10.1084263991955,10.6873662650537,11.6177178192549,7.54615384615385,383.844591093155,837,218057,1,0,0,0,9 +"11401",2013,39153,"OH","39","153",542032,0.8111255424034,36425,0.141375416949553,10.5030106310634,11.0882469559379,12.0165633184962,7.60769230769231,402.949404375938,1305,323862,1,0,0,0,9 +"11402",2013,39155,"OH","39","155",206405,0.899018919115331,12487,0.151047697487948,9.43244338211515,10.0784487549238,11.0069381178445,9.32307692307692,441.702776776659,527,119311,1,0,0,0,9 +"11403",2013,39157,"OH","39","157",92625,0.976572199730094,5271,0.14268286099865,8.56997537685521,9.30855541947314,10.1865966850178,7.26923076923077,412.779191405146,219,53055,1,0,0,0,9 +"11404",2013,39159,"OH","39","159",53440,0.937107035928144,3022,0.11248128742515,8.01367414283268,9.04180337015285,9.76100190423937,5.81538461538462,247.501778919036,80,32323,1,0,0,0,9 +"11405",2013,39161,"OH","39","161",28357,0.97855908593998,1609,0.139753852664245,7.38336814699238,8.11222795834972,8.98607118737446,6.93076923076923,468.01872074883,75,16025,1,0,0,0,9 +"11406",2013,39163,"OH","39","163",13305,0.985118376550169,818,0.144156332205938,6.70686233660275,7.43602781635185,8.27129265297941,10.6076923076923,530.705079605762,42,7914,1,0,0,0,9 +"11407",2013,39165,"OH","39","165",219298,0.911130060465668,11485,0.121245975795493,9.3487971151232,10.3659314287193,11.0627872061503,6.42307692307692,291.818252186702,377,129190,1,0,0,0,9 +"11408",2013,39167,"OH","39","167",61401,0.973583492125535,3985,0.150421002915262,8.29029259122431,8.86389860431748,9.79923753116233,8.58461538461538,458.728427176862,164,35751,1,0,0,0,9 +"11409",2013,39169,"OH","39","169",115438,0.966423534711274,8232,0.132244148374019,9.01578427751389,9.4895617535101,10.3904712018165,6.23076923076923,355.702011025222,231,64942,1,0,0,0,9 +"11410",2013,39171,"OH","39","171",37446,0.976419377236554,2145,0.139320621695241,7.67089483136212,8.40178233990491,9.26065318584977,7.43846153846154,348.189415041783,75,21540,1,0,0,0,9 +"11411",2013,39173,"OH","39","173",129073,0.945573435187839,16132,0.124170043308825,9.68856015599326,9.58781744354418,10.5765085534625,6.99230769230769,284.029119381789,222,78161,1,0,0,0,9 +"11412",2013,39175,"OH","39","175",22463,0.983617504340471,1250,0.137604060009794,7.13089883029635,7.91169052070834,8.75179089277556,6.30769230769231,353.218210361068,45,12740,1,0,0,0,9 +"11413",2013,40001,"OK","40","001",22463,0.485687575123536,1426,0.118773093531585,7.26262860097424,7.92479591395644,8.73889570493404,9.52307692307692,614.819546470776,77,12524,0,0,0,0,9 +"11414",2013,40003,"OK","40","003",5852,0.90892002734108,257,0.134825700615174,5.54907608489522,6.75460409948796,7.13009851012558,3.16923076923077,422.178440754292,15,3553,0,0,0,0,9 +"11415",2013,40005,"OK","40","005",13903,0.781414083291376,831,0.134215636912897,6.72262979485545,7.4079243225596,8.20767442435528,6.67692307692308,514.300050175615,41,7972,0,0,0,0,9 +"11416",2013,40007,"OK","40","007",5566,0.96101329500539,289,0.135106000718649,5.66642668811243,6.42324696353352,7.3178761986265,3.28461538461538,420.984455958549,13,3088,0,0,0,0,9 +"11417",2013,40009,"OK","40","009",23482,0.902691423217784,1786,0.114981688101525,7.48773376143644,7.97522083865341,8.72323127482751,3.18461538461538,434.569285764351,62,14267,0,0,0,0,9 +"11418",2013,40011,"OK","40","011",9792,0.837111928104575,575,0.140522875816993,6.35437004079735,6.92951677076365,7.87891291229713,3.9,776.368112099981,41,5281,0,0,0,0,9 +"11419",2013,40013,"OK","40","013",44149,0.804548234388095,3510,0.121112595981789,8.16337131645991,8.54519738782584,9.45860571206417,5.3,444.373908903349,112,25204,0,0,0,0,9 +"11420",2013,40015,"OK","40","015",29590,0.669922271037513,1885,0.121189591078067,7.54168309988211,8.15162164696975,8.94036723330517,6.08461538461538,814.60340111785,137,16818,0,0,0,0,9 +"11421",2013,40017,"OK","40","017",125992,0.874611086418185,7011,0.11542002666836,8.85523562320697,9.79545680832242,10.5255146005929,3.99230769230769,331.4621758888,248,74820,0,0,0,0,9 +"11422",2013,40019,"OK","40","019",48474,0.790918843091142,2901,0.127202211494822,7.9728107841214,8.71177264560569,9.54258941775309,5.16153846153846,693.316000433322,192,27693,0,0,0,0,9 +"11423",2013,40021,"OK","40","021",47880,0.575041771094403,5313,0.118964076858814,8.57791192645094,8.56788630573176,9.54609806765953,6.76923076923077,541.320822807651,150,27710,0,0,0,0,9 +"11424",2013,40023,"OK","40","023",15053,0.674284195841361,878,0.137779844549259,6.77764659363512,7.40731771046942,8.34212526333359,8.26923076923077,719.599951213563,59,8199,0,0,0,0,9 +"11425",2013,40027,"OK","40","027",269966,0.835342228280598,30818,0.110058303638236,10.3358542138418,10.4285414723127,11.3321706801478,4.14615384615385,316.058259477284,531,168007,0,0,0,0,9 +"11426",2013,40029,"OK","40","029",5756,0.772411396803336,360,0.137769284225156,5.88610403145016,6.45990445437753,7.35627987655075,7.37692307692308,580.27079303675,18,3102,0,0,0,0,9 +"11427",2013,40031,"OK","40","031",124648,0.693777677941082,12207,0.102384314228868,9.4097648366698,9.62983986904815,10.4856193699948,5.6,409.246620119767,313,76482,0,0,0,0,9 +"11428",2013,40033,"OK","40","033",6164,0.84344581440623,387,0.13659961064244,5.95842469302978,6.55677835615804,7.4489161025442,5.46923076923077,687.482096820395,24,3491,0,0,0,0,9 +"11429",2013,40035,"OK","40","035",14696,0.718903102885139,887,0.130511703864997,6.78784498230958,7.4899708988348,8.27969713387763,6.30769230769231,676.638176638177,57,8424,0,0,0,0,9 +"11430",2013,40037,"OK","40","037",70576,0.840101450918159,4192,0.136306959873045,8.34093322600088,9.04887970584956,9.91793271696762,5.83076923076923,549.819629307128,221,40195,0,0,0,0,9 +"11431",2013,40039,"OK","40","039",29318,0.864690633740364,3964,0.10300839074971,8.28500889544988,7.98344006300654,9.03741453682259,3.57692307692308,376.222723852521,65,17277,0,0,0,0,9 +"11432",2013,40041,"OK","40","041",41717,0.710549656015533,2149,0.149938873840401,7.67275789664251,8.40581460343285,9.3441717196097,6.69230769230769,523.724261414503,117,22340,0,0,0,0,9 +"11433",2013,40047,"OK","40","047",62368,0.887682786044125,4382,0.12304386865059,8.38526052015541,8.83171191782158,9.76249985923515,3.99230769230769,532.964863797868,189,35462,0,0,0,0,9 +"11434",2013,40049,"OK","40","049",27426,0.858491941952891,1600,0.132720775906075,7.37775890822787,8.08978917578932,8.95712413640568,4.83846153846154,736.924481544281,113,15334,0,0,0,0,9 +"11435",2013,40051,"OK","40","051",53638,0.891942279727059,3333,0.129609605130691,8.11162807830774,8.81075792702617,9.66364280949851,4.60769230769231,473.236554326277,148,31274,0,0,0,0,9 +"11436",2013,40055,"OK","40","055",6139,0.873106369115491,394,0.110767225932562,5.97635090929793,6.66185474054531,7.19743535409659,5.20769230769231,483.221476510067,18,3725,0,0,0,0,9 +"11437",2013,40061,"OK","40","061",12916,0.782672654072468,764,0.128677609166925,6.63856778916652,7.28069719538474,8.1610895128458,8.90769230769231,706.214689265537,50,7080,0,0,0,0,9 +"11438",2013,40063,"OK","40","063",13638,0.710954685437747,864,0.129784425868896,6.76157276880406,7.44073370738926,8.12355783506165,7.77692307692308,791.059768960322,63,7964,0,0,0,0,9 +"11439",2013,40065,"OK","40","065",26141,0.863279905129873,2208,0.11319383344172,7.69984240739699,7.99665387546261,8.92399074475818,5.22307692307692,442.244224422442,67,15150,0,0,0,0,9 +"11440",2013,40067,"OK","40","067",6354,0.89817437834435,346,0.143846395971042,5.84643877505772,6.53813982376767,7.4489161025442,5.13076923076923,590.551181102362,21,3556,0,0,0,0,9 +"11441",2013,40069,"OK","40","069",10997,0.778666909157043,693,0.133854687642084,6.5410299991899,7.12205988162914,8.03365842788615,7.89230769230769,752.864157119476,46,6110,0,0,0,0,9 +"11442",2013,40071,"OK","40","071",45554,0.843065372963955,2910,0.130482504280634,7.97590836016554,8.50835424274903,9.42116839756774,6.7,606.864399967848,151,24882,0,0,0,0,9 +"11443",2013,40073,"OK","40","073",15309,0.93363381017702,862,0.125220458553792,6.75925527066369,7.48493028328966,8.35585004100747,3.34615384615385,432.142022891848,37,8562,0,0,0,0,9 +"11444",2013,40075,"OK","40","075",9347,0.854391783459934,489,0.142719589172997,6.19236248947487,6.89162589705225,7.84424071814181,4.73076923076923,734.015839289164,38,5177,0,0,0,0,9 +"11445",2013,40077,"OK","40","077",10796,0.728417932567618,802,0.128288254909226,6.68710860786651,7.02108396428914,7.99023818572036,8.57692307692308,554.808338937458,33,5948,0,0,0,0,9 +"11446",2013,40079,"OK","40","079",50309,0.809397920849152,3117,0.130255023951977,8.04462627976734,8.70084719344397,9.54816883136854,8.60769230769231,549.315116729462,156,28399,0,0,0,0,9 +"11447",2013,40081,"OK","40","081",34247,0.887435395801092,1886,0.139165474348118,7.5422134631934,8.29079434738136,9.17378011666438,4.98461538461538,647.366513025014,125,19309,0,0,0,0,9 +"11448",2013,40083,"OK","40","083",43828,0.850392443187004,3004,0.131947613397828,8.00770001288403,8.606485298895,9.46792399660393,4.40769230769231,353.634577603143,90,25450,0,0,0,0,9 +"11449",2013,40085,"OK","40","085",9701,0.872796618905267,547,0.132460571075147,6.30444880242198,6.97914527506881,7.86978390253015,4.23076923076923,564.865373752589,30,5311,0,0,0,0,9 +"11450",2013,40087,"OK","40","087",36459,0.900244109821992,2011,0.12693710743575,7.60638738977265,8.46146904264388,9.26407069439715,4.23076923076923,403.51635682375,84,20817,0,0,0,0,9 +"11451",2013,40089,"OK","40","089",33232,0.703809581126625,2016,0.129603996148291,7.60887062919126,8.2602342916073,9.14302466469132,9.10769230769231,639.658848614072,117,18291,0,0,0,0,9 +"11452",2013,40091,"OK","40","091",20107,0.740935992440444,990,0.152782613020341,6.89770494312864,7.62803112693033,8.61341204915678,9.53846153846154,850.513081260978,92,10817,0,0,0,0,9 +"11453",2013,40093,"OK","40","093",7715,0.946856772521063,395,0.137783538561244,5.97888576490112,6.66568371778241,7.63094658089046,3.26923076923077,453.568870852232,19,4189,0,0,0,0,9 +"11454",2013,40095,"OK","40","095",16064,0.847173804780876,837,0.137636952191235,6.72982407048948,7.46622755621548,8.37355374121463,5.6,606.83860427121,52,8569,0,0,0,0,9 +"11455",2013,40097,"OK","40","097",40975,0.731446003660769,2438,0.136058572300183,7.79893331004122,8.47824444127766,9.35340121481683,5.61538461538461,535.620971956105,123,22964,0,0,0,0,9 +"11456",2013,40099,"OK","40","099",13682,0.815889489840667,740,0.138356965355942,6.60665018619822,7.36010397298915,8.24275634571448,4.86153846153846,699.116211581586,53,7581,0,0,0,0,9 +"11457",2013,40101,"OK","40","101",70193,0.645933355177867,4618,0.126964227202143,8.43771698991444,9.03765226415047,9.92529796679998,6.27692307692308,662.317613664658,266,40162,0,0,0,0,9 +"11458",2013,40103,"OK","40","103",11427,0.866719173886409,593,0.136081211166535,6.38519439899773,7.18311170174328,8.07090608878782,4.28461538461538,603.341584158416,39,6464,0,0,0,0,9 +"11459",2013,40105,"OK","40","105",10555,0.742207484604453,603,0.136049265750829,6.40191719672719,7.06219163228656,7.9820748750812,6.56153846153846,594.227504244482,35,5890,0,0,0,0,9 +"11460",2013,40107,"OK","40","107",12298,0.673605464303139,712,0.122540250447227,6.56807791141198,7.3356339819272,8.03008409426756,6.86923076923077,723.506880408569,51,7049,0,0,0,0,9 +"11461",2013,40109,"OK","40","109",756286,0.740182946663035,55859,0.116117447632245,10.9305859374413,11.4508372726568,12.3436757375247,4.70769230769231,492.434992372911,2221,451024,0,0,0,0,9 +"11462",2013,40111,"OK","40","111",39404,0.696299868033702,2863,0.132702263729571,7.95962530509811,8.3707791729607,9.32125543254734,7.34615384615385,612.198964663516,136,22215,0,0,0,0,9 +"11463",2013,40113,"OK","40","113",47387,0.704349294110199,2673,0.148205203958892,7.89095671613892,8.59987855803485,9.49769739160402,5.65384615384615,462.826917425801,126,27224,0,0,0,0,9 +"11464",2013,40115,"OK","40","115",32188,0.738846775195725,2286,0.122871877718404,7.73455884435476,8.21229713822977,9.09358181136599,7.8,621.047233775853,109,17551,0,0,0,0,9 +"11465",2013,40117,"OK","40","117",16453,0.830365282927126,923,0.145079924633805,6.82762923450285,7.56734567601324,8.44677072711969,5.89230769230769,668.31949983831,62,9277,0,0,0,0,9 +"11466",2013,40119,"OK","40","119",79744,0.84333617576244,17064,0.0914175361155698,9.74472626015119,8.92159106356398,10.0825120132108,4.31538461538462,315.552518390481,157,49754,0,0,0,0,9 +"11467",2013,40121,"OK","40","121",45267,0.775443479797645,2733,0.131950427463715,7.91315518592807,8.58110651715989,9.41507552360704,7.08461538461538,602.246843994904,156,25903,0,0,0,0,9 +"11468",2013,40123,"OK","40","123",38162,0.741234736124941,3411,0.113096797861747,8.13476078241865,8.35113860708615,9.3213449300191,5.30769230769231,477.590007347539,104,21776,0,0,0,0,9 +"11469",2013,40125,"OK","40","125",70921,0.798155694364152,5026,0.121459088281327,8.52237971810354,9.06912237006065,9.97501720367505,5.30769230769231,571.989689456242,233,40735,0,0,0,0,9 +"11470",2013,40127,"OK","40","127",11203,0.780326698205838,604,0.139069891993216,6.40357419793482,7.028201432058,8.04076899436758,8.66153846153846,787.272429063474,48,6097,0,0,0,0,9 +"11471",2013,40131,"OK","40","131",88752,0.81379574544799,5788,0.126059131061835,8.66354208775137,9.31542084842669,10.1592144537464,4.93846153846154,390.541094686688,200,51211,0,0,0,0,9 +"11472",2013,40133,"OK","40","133",25445,0.717665553153861,1578,0.126468854391826,7.36391350140582,7.96380795323145,8.86911686592948,7.92307692307692,766.420743499749,107,13961,0,0,0,0,9 +"11473",2013,40135,"OK","40","135",41838,0.72534537979827,2455,0.125962044074765,7.80588204022862,8.54985397365579,9.38823547981722,8.10769230769231,715.234057133068,167,23349,0,0,0,0,9 +"11474",2013,40137,"OK","40","137",45000,0.899088888888889,2635,0.136844444444444,7.87663846097546,8.53306654057253,9.45360022687522,5.23846153846154,491.517361661646,124,25228,0,0,0,0,9 +"11475",2013,40139,"OK","40","139",22052,0.900870669327045,1862,0.101260656629784,7.52940645783701,7.98104975966596,8.66853994391076,4.26923076923077,316.480123504438,41,12955,0,0,0,0,9 +"11476",2013,40141,"OK","40","141",7726,0.853093450685995,465,0.131245146259384,6.14203740558736,6.73340189183736,7.61628356158038,5.22307692307692,328.253223915592,14,4265,0,0,0,0,9 +"11477",2013,40143,"OK","40","143",623978,0.770136126594207,43896,0.118839125738407,10.6895784787388,11.2945704303878,12.1470919841699,4.93846153846154,443.149067111622,1636,369176,0,0,0,0,9 +"11478",2013,40145,"OK","40","145",75660,0.813005551149881,4111,0.128310864393339,8.32142158689788,9.21542741102474,10.0159229818659,4.91538461538462,416.437854658613,182,43704,0,0,0,0,9 +"11479",2013,40147,"OK","40","147",51684,0.821414751180249,3179,0.134877331475892,8.0643219609108,8.66630261400408,9.60326045258205,4.67692307692308,477.734770024759,137,28677,0,0,0,0,9 +"11480",2013,40149,"OK","40","149",11706,0.935503160772254,658,0.127285152913036,6.48920493132532,7.14282740116162,8.06589354696427,4.05384615384615,369.06043364601,24,6503,0,0,0,0,9 +"11481",2013,40151,"OK","40","151",9003,0.91491724980562,1212,0.112184827279796,7.10002716662926,6.76734312526539,7.76472054477148,3.15384615384615,298.730395817774,16,5356,0,0,0,0,9 +"11482",2013,40153,"OK","40","153",21248,0.928934487951807,1437,0.11281061746988,7.27031288607902,7.88231491898027,8.61866616034687,3.44615384615385,385.449289327873,48,12453,0,0,0,0,9 +"11483",2013,41001,"OR","41","001",16027,0.965994883633868,765,0.165283583952081,6.63987583382654,7.35500192110526,8.35960327084147,9.52307692307692,494.935543278085,43,8688,1,0,0,0,9 +"11484",2013,41003,"OR","41","003",86228,0.904300227304356,14781,0.128716890105302,9.60109785121207,9.06404211435888,10.1976485910856,5.64615384615385,197.253068381064,108,54752,1,0,0,0,9 +"11485",2013,41005,"OR","41","005",387571,0.924016502782716,22420,0.148406356512742,10.0177086966262,10.8147255407736,11.667781610184,6.99230769230769,286.791605298734,664,231527,1,0,0,0,9 +"11486",2013,41007,"OR","41","007",37143,0.952507874969712,2316,0.170691651185957,7.74759683869289,8.30622521603216,9.30428598481871,7.7,488.621454101253,108,22103,1,0,0,0,9 +"11487",2013,41009,"OR","41","009",49271,0.954557447585801,2550,0.155811735097725,7.84384863815247,8.73149779406324,9.58162802828276,9.51538461538462,425.428887659104,123,28912,1,0,0,0,9 +"11488",2013,41011,"OR","41","011",62409,0.936435450015222,3481,0.170087647614927,8.15507488781144,8.73278832497312,9.78729075813362,10.0923076923077,521.977238369606,183,35059,1,0,0,0,9 +"11489",2013,41013,"OR","41","013",20702,0.96865037194474,922,0.169355617814704,6.82654522355659,7.74022952476318,8.67334187390617,11.9615384615385,412.099956159579,47,11405,1,0,0,0,9 +"11490",2013,41015,"OR","41","015",22252,0.952139133561028,888,0.189600934747438,6.78897174299217,7.56008046502183,8.6891276553237,10.4769230769231,633.073830096672,74,11689,1,0,0,0,9 +"11491",2013,41017,"OR","41","017",165385,0.9646521752275,8433,0.148175469359374,9.03990785957464,9.98796655911407,10.8134583556655,9.40769230769231,279.217779602731,272,97415,1,0,0,0,9 +"11492",2013,41019,"OR","41","019",106645,0.9542594589526,5778,0.162220451029115,8.66181288102618,9.2985343827121,10.3075516797287,10.4230769230769,492.169265636099,291,59126,1,0,0,0,9 +"11493",2013,41023,"OR","41","023",7271,0.966304497318113,296,0.185118965754367,5.69035945432406,6.49223983502047,7.57455848420248,12.2384615384615,488.934637159032,19,3886,1,0,0,0,9 +"11494",2013,41025,"OR","41","025",7167,0.936514580717176,361,0.168689828380075,5.88887795833288,6.65801104587075,7.59890045687141,11.4153846153846,353.803386403841,14,3957,1,0,0,0,9 +"11495",2013,41027,"OR","41","027",22574,0.956675821741827,1287,0.13302914857801,7.16006920759613,7.9844627322622,8.78446845409036,6.28461538461538,329.588014981273,44,13350,1,0,0,0,9 +"11496",2013,41029,"OR","41","029",207313,0.949134883002995,12591,0.15110485111884,9.4407375520017,10.0610039904111,11.0096711067006,9.62307692307692,414.826033909714,493,118845,1,0,0,0,9 +"11497",2013,41031,"OR","41","031",21869,0.770359870135809,1306,0.140152727605286,7.17472430983638,7.82843635915759,8.66613030419061,10.3461538461538,492.738589211618,57,11568,1,0,0,0,9 +"11498",2013,41033,"OR","41","033",83175,0.957655545536519,4228,0.162128043282236,8.34948434699013,9.04192172035122,10.0432060157052,10.9461538461538,544.650201187115,245,44983,1,0,0,0,9 +"11499",2013,41035,"OR","41","035",65719,0.915792997458878,4354,0.15159999391348,8.37885024179449,8.88100262425557,9.84166533889278,10.6230769230769,414.871549385671,156,37602,1,0,0,0,9 +"11500",2013,41037,"OR","41","037",7800,0.947564102564103,329,0.172179487179487,5.79605775076537,6.82001636467413,7.61035761831284,11.2461538461538,290.502793296089,13,4475,1,0,0,0,9 +"11501",2013,41039,"OR","41","039",355654,0.928824081832343,35848,0.143656475113453,10.487043056466,10.6201315090075,11.6009363422929,7.91538461538462,370.735044631507,802,216327,1,0,0,0,9 +"11502",2013,41041,"OR","41","041",46351,0.923734115768808,2184,0.19481780328364,7.6889133368648,8.45404037641097,9.52178779797823,8.70769230769231,509.299430339156,135,26507,1,0,0,0,9 +"11503",2013,41043,"OR","41","043",118439,0.955175237886169,7340,0.139261560803452,8.90109412160856,9.55683365830778,10.4465092745184,9.54615384615385,398.901195242409,273,68438,1,0,0,0,9 +"11504",2013,41045,"OR","41","045",30642,0.938711572351674,2227,0.116898374779714,7.70841066725737,8.22282213081366,8.88806685475478,8.36923076923077,372.591255748967,64,17177,1,0,0,0,9 +"11505",2013,41047,"OR","41","047",321491,0.915882559698405,22464,0.121023605637483,10.0196693068255,10.6010001906057,11.4267682685191,8.71538461538461,303.21765543937,564,186005,1,0,0,0,9 +"11506",2013,41049,"OR","41","049",11197,0.954630704653032,652,0.137090292042511,6.48004456192665,7.19668657083435,8.00936307663004,7.60769230769231,431.309904153355,27,6260,1,0,0,0,9 +"11507",2013,41051,"OR","41","051",766977,0.828512458652606,51368,0.122568212606115,10.8467706894739,11.715931612957,12.4482538257215,6.68461538461538,317.779747387701,1617,508843,1,0,0,0,9 +"11508",2013,41053,"OR","41","053",76568,0.929213248354404,6938,0.128552397868561,8.8447688275297,9.07703752466176,10.0056379211811,7.99230769230769,259.571706683971,112,43148,1,0,0,0,9 +"11509",2013,41057,"OR","41","057",25332,0.960405810832149,1183,0.178667298278857,7.07580886397839,7.86288203464149,8.86163359768663,8.26153846153846,387.351221917036,55,14199,1,0,0,0,9 +"11510",2013,41059,"OR","41","059",76892,0.924543515580294,5463,0.122431462310774,8.60575336839572,9.16774597434376,9.92515119217216,8.72307692307692,355.839827034818,158,44402,1,0,0,0,9 +"11511",2013,41061,"OR","41","061",25531,0.951862441737496,2176,0.146723590928675,7.68524360797583,7.85864065562079,8.89151157052756,8.30769230769231,339.852961575808,49,14418,1,0,0,0,9 +"11512",2013,41063,"OR","41","063",6769,0.975624169005762,227,0.19382478948146,5.4249500174814,6.40687998606931,7.56216163122565,11.0538461538462,350.59331175836,13,3708,1,0,0,0,9 +"11513",2013,41065,"OR","41","065",25329,0.92242094042402,1558,0.149038651348257,7.35115822643069,7.94129557090653,8.87752145385287,7.66923076923077,383.248554107728,55,14351,1,0,0,0,9 +"11514",2013,41067,"OR","41","067",555443,0.847262455373459,33685,0.116029907659292,10.4248079133948,11.339369378944,12.0617460509637,6.20769230769231,210.390976564783,720,342220,1,0,0,0,9 +"11515",2013,41071,"OR","41","071",99926,0.938124211916818,7050,0.129215619558473,8.86078289580631,9.44856956070843,10.253017028314,7.44615384615385,256.600134327587,149,58067,1,0,0,0,9 +"11516",2013,44001,"RI","44","001",49266,0.965249868063167,3495,0.145942434944992,8.15908865466791,8.59748202264504,9.59199081531831,8.10769230769231,256.16731585781,73,28497,1,0,0,0,9 +"11517",2013,44003,"RI","44","003",164387,0.947727010043373,9356,0.148101735538698,9.14377312770407,9.94078333727983,10.8517225885928,8.95384615384615,372.562777322094,377,101191,1,0,0,0,9 +"11518",2013,44005,"RI","44","005",83576,0.92311189815258,5491,0.1485713601991,8.61086566727887,9.18461222340345,10.1148823568158,8.68461538461538,307.062436028659,150,48850,1,0,0,0,9 +"11519",2013,44007,"RI","44","007",631836,0.812826429643135,53325,0.121548946245545,10.8841605433396,11.269821523916,12.1929266138602,9.98461538461538,314.472746127422,1213,385725,1,0,0,0,9 +"11520",2013,44009,"RI","44","009",126495,0.95032214712044,11807,0.152227360765248,9.37644785490711,9.46614470552994,10.546971688077,8.82307692307692,322.779384978035,241,74664,1,0,0,0,9 +"11521",2013,45001,"SC","45","001",24912,0.704800899165061,1794,0.148482658959538,7.49220304261874,7.94626364358054,8.88999735728484,9.26923076923077,529.99788000848,75,14151,0,0,0,0,9 +"11522",2013,45003,"SC","45","003",163789,0.72620261433918,10636,0.139380544481009,9.27199975236291,9.8510356925337,10.8070779758321,7.35384615384615,468.916074443032,450,95966,0,0,0,0,9 +"11523",2013,45005,"SC","45","005",9828,0.255698005698006,706,0.143365893365893,6.55961523749324,7.11639414409346,7.89282552625112,13.6923076923077,635.075720566683,39,6141,0,0,0,0,9 +"11524",2013,45007,"SC","45","007",190070,0.815873099384437,11762,0.131167464618299,9.3726292750199,10.0858507751287,10.9426682574348,6.92307692307692,511.60457799462,561,109655,0,0,0,0,9 +"11525",2013,45009,"SC","45","009",15389,0.368639937617779,1421,0.144843719539931,7.2591161280971,7.37274636640433,8.41116578677071,13.1384615384615,572.934570872006,50,8727,0,0,0,0,9 +"11526",2013,45011,"SC","45","011",22217,0.534320565332853,1442,0.138722599810956,7.2737863178449,7.83478810738819,8.80432511256254,11.8076923076923,738.740169989674,93,12589,0,0,0,0,9 +"11527",2013,45013,"SC","45","013",171095,0.778719424880914,12257,0.132236476811128,9.41385248134116,9.80062391707689,10.7569023803586,6.22307692307692,308.552070859091,286,92691,0,0,0,0,9 +"11528",2013,45015,"SC","45","015",194171,0.705197995581215,15339,0.116917562354832,9.63815388374811,10.1565005374526,10.9942188677534,6.79230769230769,354.112437037287,419,118324,0,0,0,0,9 +"11529",2013,45017,"SC","45","017",14990,0.565110073382255,904,0.160173448965977,6.80682936039218,7.41457288135059,8.40648506943182,9.33846153846154,571.232720210214,50,8753,0,0,0,0,9 +"11530",2013,45019,"SC","45","019",372065,0.680069342722374,28929,0.127303025009071,10.2725998311785,10.728364503774,11.6968707028803,5.73076923076923,333.803699551092,783,234569,0,0,0,0,9 +"11531",2013,45021,"SC","45","021",56065,0.776848301079105,4050,0.127958619459556,8.30647216010058,8.88211404420882,9.72681003812726,10.2076923076923,589.997554414282,193,32712,0,0,0,0,9 +"11532",2013,45023,"SC","45","023",32744,0.609699486928903,2118,0.143201807964818,7.65822752616135,8.26898820950666,9.20230820027892,11.9076923076923,745.054829739231,142,19059,0,0,0,0,9 +"11533",2013,45025,"SC","45","025",46133,0.653588537489433,3008,0.138274120477749,8.00903068506973,8.67897184697886,9.52690140397834,8.91538461538462,551.085638708255,150,27219,0,0,0,0,9 +"11534",2013,45027,"SC","45","027",34267,0.495987393118744,2623,0.150640557971226,7.87207397986687,8.1797604936999,9.20532783015264,10.0461538461538,581.77771032529,115,19767,0,0,0,0,9 +"11535",2013,45029,"SC","45","029",37666,0.590452928370414,2279,0.145622046407901,7.73149202924568,8.34759040703006,9.32989960703382,9.66923076923077,713.552840220129,153,21442,0,0,0,0,9 +"11536",2013,45031,"SC","45","031",67809,0.569835862496129,4607,0.144715303278326,8.43533216493592,9.03384182848502,9.9444855315702,9.09230769230769,673.24727916983,266,39510,0,0,0,0,9 +"11537",2013,45033,"SC","45","033",31407,0.491196230139778,2141,0.132486388384755,7.66902828858968,8.21635833238616,9.15334665045606,11.5230769230769,625.383885197387,112,17909,0,0,0,0,9 +"11538",2013,45035,"SC","45","035",145614,0.70447896493469,9289,0.117543642781601,9.13658618338752,9.89927870776207,10.7154394688613,6.43076923076923,304.580065916581,268,87990,0,0,0,0,9 +"11539",2013,45037,"SC","45","037",26573,0.614232491626839,1750,0.146727881684417,7.46737106691756,8.17695386822578,8.87696334026227,7.83846153846154,324.59725895648,54,16636,0,0,0,0,9 +"11540",2013,45039,"SC","45","039",23216,0.394426257753274,1485,0.165575465196416,7.3031700512368,7.87511928104029,8.88848084772282,10.4769230769231,625.090856229103,86,13758,0,0,0,0,9 +"11541",2013,45041,"SC","45","041",138230,0.553765463358171,9967,0.130492657165594,9.20703491496746,9.76995615991161,10.6815731296123,8.00769230769231,533.176083244266,434,81399,0,0,0,0,9 +"11542",2013,45043,"SC","45","043",60503,0.657140968216452,3173,0.163033238021255,8.0624327915832,8.77276520994979,9.77406200509567,9.90769230769231,532.189885351093,175,32883,0,0,0,0,9 +"11543",2013,45045,"SC","45","045",473196,0.780323586843507,32183,0.121989619523411,10.3791936418071,11.0584644215232,11.8837922269737,5.93076923076923,362.954001135774,1029,283507,0,0,0,0,9 +"11544",2013,45047,"SC","45","047",69835,0.656919882580368,5127,0.12409250375886,8.5422759717837,9.03729565196244,9.96608669429265,8.38461538461539,493.264560068106,197,39938,0,0,0,0,9 +"11545",2013,45049,"SC","45","049",20387,0.441801147790258,1385,0.134497473880414,7.23345541862144,7.88306935130575,8.6429443967218,9.06153846153846,607.10476659283,74,12189,0,0,0,0,9 +"11546",2013,45051,"SC","45","051",289005,0.834670680438055,18754,0.146883271915711,9.83916234197957,10.4523890035543,11.3825092152459,8.44615384615385,477.505431550686,811,169841,0,0,0,0,9 +"11547",2013,45053,"SC","45","053",26348,0.522658266282071,2043,0.130180658873539,7.62217459481762,8.09193345597989,8.94845599234554,6.73846153846154,518.454511788668,84,16202,0,0,0,0,9 +"11548",2013,45055,"SC","45","055",62601,0.733342917844763,3541,0.143336368428619,8.1721644521119,8.93564033374757,9.84219708409302,7.6,520.919464197123,189,36282,0,0,0,0,9 +"11549",2013,45057,"SC","45","057",80698,0.749597263872711,4608,0.132481598056953,8.43554920237573,9.30100340687343,10.0633504579226,9.05384615384615,488.798370672098,228,46645,0,0,0,0,9 +"11550",2013,45059,"SC","45","059",66177,0.72472309110416,4653,0.138054006679058,8.44526745184465,8.99491694367711,9.89343721668263,8.33846153846154,594.450068790073,229,38523,0,0,0,0,9 +"11551",2013,45061,"SC","45","061",18381,0.349382514553071,1447,0.144551438985909,7.27724772663148,7.6177595766085,8.53777982502463,10.7615384615385,454.464444840492,51,11222,0,0,0,0,9 +"11552",2013,45063,"SC","45","063",273363,0.820425587954478,17345,0.13017489565157,9.76105955940385,10.5094687987085,11.3430264281748,5.63076923076923,361.939462901205,598,165221,0,0,0,0,9 +"11553",2013,45065,"SC","45","065",9881,0.492257868636778,444,0.16465944742435,6.09582456243222,6.96413561241824,7.74716496652033,9.57692307692308,426.439232409382,24,5628,0,0,0,0,9 +"11554",2013,45067,"SC","45","067",32075,0.411691348402182,2096,0.153078721745908,7.64778604544093,8.21527695893663,9.21820933035488,12.7384615384615,757.206987938774,140,18489,0,0,0,0,9 +"11555",2013,45069,"SC","45","069",28069,0.424418397520396,1849,0.130820478107521,7.52240023138712,8.23244015847034,8.94219945473124,13.4307692307692,737.648673376029,129,17488,0,0,0,0,9 +"11556",2013,45071,"SC","45","071",37474,0.660324491647542,2701,0.140977744569568,7.90137735379262,8.37101068123816,9.29118275982028,7.05384615384615,496.013350639718,107,21572,0,0,0,0,9 +"11557",2013,45073,"SC","45","073",74962,0.905698887436301,4828,0.149502414556709,8.48218758221742,9.03717675296699,9.96833852485574,7.46923076923077,495.002828587592,210,42424,0,0,0,0,9 +"11558",2013,45075,"SC","45","075",90682,0.350852429368563,7684,0.136190203127412,8.94689552388845,9.15746688236911,10.2323955379221,12.0461538461538,630.12334329273,329,52212,0,0,0,0,9 +"11559",2013,45077,"SC","45","077",119333,0.907921530507068,15429,0.118106475157752,9.64400413444303,9.49408972140025,10.4738737027581,7.19230769230769,414.630741309507,297,71630,0,0,0,0,9 +"11560",2013,45079,"SC","45","079",397015,0.484195811241389,46456,0.110789264889236,10.7462609070519,10.8086768913391,11.7560363359004,6.66153846153846,348.770084346237,870,249448,0,0,0,0,9 +"11561",2013,45081,"SC","45","081",20053,0.698698449109859,1303,0.135092006183613,7.17242457712485,7.79276172081653,8.64223868039046,6.72307692307692,456.54233784133,53,11609,0,0,0,0,9 +"11562",2013,45083,"SC","45","083",290545,0.756822523189179,20901,0.126562150441412,9.94755228369823,10.5172397322818,11.3817569927349,7.53846153846154,490.158804433656,838,170965,0,0,0,0,9 +"11563",2013,45085,"SC","45","085",107840,0.497959940652819,9182,0.120382047477745,9.12500032480917,9.42068233145318,10.3860371509504,8.52307692307692,451.695437244342,286,63317,0,0,0,0,9 +"11564",2013,45087,"SC","45","087",27991,0.669893894466078,1690,0.146690007502411,7.43248380791712,8.14177220465645,9.0441677169216,11,678.133284014549,110,16221,0,0,0,0,9 +"11565",2013,45089,"SC","45","089",33069,0.32946263872509,2151,0.152408600199583,7.67368812926773,8.28878581042693,9.18235233543601,12.1769230769231,696.091574713829,135,19394,0,0,0,0,9 +"11566",2013,45091,"SC","45","091",238736,0.77181070303599,15099,0.123584210173581,9.62238379544447,10.430432558182,11.2138453475661,7.49230769230769,396.558488873942,566,142728,0,0,0,0,9 +"11567",2013,46005,"SD","46","005",18217,0.894274578690234,1090,0.135477850359554,6.99393297522319,7.49387388678356,8.4848765899397,3.50769230769231,347.084490281634,35,10084,0,0,0,0,9 +"11568",2013,46011,"SD","46","011",33059,0.941891769261018,6611,0.0983393327081884,8.79649020733358,8.04558828080353,9.18060255371223,3.33846153846154,127.176677753864,26,20444,0,0,0,0,9 +"11569",2013,46013,"SD","46","013",38149,0.926629793703636,2745,0.13051456132533,7.91753635394363,8.33950090300594,9.29999824390672,3.19230769230769,373.951112732579,82,21928,0,0,0,0,9 +"11570",2013,46019,"SD","46","019",10288,0.962286158631415,571,0.153868584758942,6.34738920965601,6.94601399109923,7.96519829061218,3.8,415.009510634619,24,5783,0,0,0,0,9 +"11571",2013,46023,"SD","46","023",9184,0.651132404181185,496,0.121080139372822,6.20657592672493,6.78897174299217,7.71378461659875,4.26153846153846,477.637863656101,22,4606,0,0,0,0,9 +"11572",2013,46027,"SD","46","027",13914,0.918355613051603,3235,0.0956590484404197,8.081784206935,7.05703698169789,8.372398606513,3.61538461538462,183.739090491502,16,8708,0,0,0,0,9 +"11573",2013,46029,"SD","46","029",27864,0.957400229687051,1953,0.130383290267011,7.57712193087668,8.10137467122858,8.97119446318447,3.50769230769231,253.258385323368,41,16189,0,0,0,0,9 +"11574",2013,46031,"SD","46","031",4206,0.310984308131241,263,0.100095102234903,5.57215403217776,6.07993319509559,6.95844839329766,6.77692307692308,1138.4335154827,25,2196,0,0,0,0,9 +"11575",2013,46033,"SD","46","033",8408,0.945052331113226,283,0.214081826831589,5.64544689764324,6.62007320653036,7.79811262882979,5.01538461538462,413.650465356774,20,4835,0,0,0,0,9 +"11576",2013,46035,"SD","46","035",19950,0.951428571428571,1584,0.129624060150376,7.36770857237437,7.67600993202889,8.60849534982302,3.06923076923077,266.571885551804,30,11254,0,0,0,0,9 +"11577",2013,46041,"SD","46","041",5584,0.221883954154728,423,0.0931232091690544,6.04737217904628,6.34738920965601,7.31721240835984,15.1692307692308,920.87312414734,27,2932,0,0,0,0,9 +"11578",2013,46047,"SD","46","047",6811,0.901336073997944,289,0.190720892673616,5.66642668811243,6.46925031679577,7.51534457118044,4.93076923076923,614.316239316239,23,3744,0,0,0,0,9 +"11579",2013,46065,"SD","46","065",17444,0.866659023159826,949,0.141022701215318,6.85540879860993,7.63191651307125,8.58298093195424,2.85384615384615,305.781175346393,32,10465,0,0,0,0,9 +"11580",2013,46071,"SD","46","071",3236,0.432941903584672,211,0.102904820766378,5.35185813347607,5.76205138278018,6.68959926917897,6.17692307692308,679.431747992588,11,1619,0,0,0,0,9 +"11581",2013,46079,"SD","46","079",11921,0.967871822833655,862,0.167183961077091,6.75925527066369,7.02375895473844,8.09681747057232,3.80769230769231,321.121004232959,22,6851,0,0,0,0,9 +"11582",2013,46081,"SD","46","081",24962,0.950685041262719,2271,0.157078759714766,7.72797554210556,7.83715965000168,8.9126079636709,3.88461538461538,248.7227749395,37,14876,0,0,0,0,9 +"11583",2013,46083,"SD","46","083",49918,0.965964181257262,2374,0.10737609679875,7.77233157516961,8.91004576147356,9.61039084738285,2.66153846153846,122.80402524305,36,29315,0,0,0,0,9 +"11584",2013,46093,"SD","46","093",26417,0.931218533520082,2349,0.133626074118939,7.76174498465891,7.98036576511125,8.92132407651127,3.73076923076923,418.20716407055,69,16499,0,0,0,0,9 +"11585",2013,46099,"SD","46","099",178062,0.897221192618301,12583,0.118627219732453,9.44010197559197,10.0078475678604,10.8826216195316,3.25384615384615,280.28451175357,305,108818,0,0,0,0,9 +"11586",2013,46103,"SD","46","103",106003,0.854673924322897,7107,0.136401799949058,8.8688354928269,9.40475517645752,10.3440623710911,3.81538461538462,292.081524633284,181,61969,0,0,0,0,9 +"11587",2013,46109,"SD","46","109",10238,0.609298691150615,560,0.134596600898613,6.3279367837292,6.91671502035361,7.86211221166275,5.11538461538461,517.142309902318,27,5221,0,0,0,0,9 +"11588",2013,46113,"SD","46","113",14130,0.0426751592356688,1279,0.0734607218683652,7.15383380157884,7.31920245876785,8.2393294279018,NA,1001.09709270433,73,7292,0,0,0,0,9 +"11589",2013,46115,"SD","46","115",6663,0.961128620741408,346,0.147080894491971,5.84643877505772,6.40522845803084,7.45298232946546,3.50769230769231,507.61421319797,18,3546,0,0,0,0,9 +"11590",2013,46121,"SD","46","121",9999,0.096009600960096,784,0.0838083808380838,6.66440902035041,6.94889722231331,7.87016594646984,9.62307692307692,1127.21417069243,56,4968,0,0,0,0,9 +"11591",2013,46125,"SD","46","125",8308,0.979176697159365,355,0.147568608570053,5.87211778947542,6.85224256905188,7.69074316354187,2.99230769230769,351.416648363716,16,4553,0,0,0,0,9 +"11592",2013,46127,"SD","46","127",14761,0.966397940518935,745,0.144163674547795,6.61338421837956,7.49942329059223,8.33110454805304,4.07692307692308,166.073546856465,14,8430,0,0,0,0,9 +"11593",2013,46135,"SD","46","135",22654,0.938112474618169,1385,0.137635737618081,7.23345541862144,7.89729647259588,8.70300863746445,3.28461538461538,321.135175504108,43,13390,0,0,0,0,9 +"11594",2013,47001,"TN","47","001",75323,0.935836331532201,4519,0.146143940097978,8.41604600941128,9.12847934549586,10.0158782981152,7.9,564.882032667877,249,44080,0,0,0,0,9 +"11595",2013,47003,"TN","47","003",45567,0.889744771435469,2902,0.118419031316523,7.97315543344413,8.69701161799207,9.48265496729684,9.15384615384615,508.720930232558,133,26144,0,0,0,0,9 +"11596",2013,47005,"TN","47","005",16363,0.962231864572511,854,0.151622563099676,6.74993119378857,7.52563997504154,8.43923164994653,9.73846153846154,853.952266257937,78,9134,0,0,0,0,9 +"11597",2013,47007,"TN","47","007",13917,0.929510670403104,808,0.141553495724653,6.6945620585211,7.62608275807238,8.1318247850072,10.5,563.452426687156,44,7809,0,0,0,0,9 +"11598",2013,47009,"TN","47","009",124937,0.953376501756885,7523,0.139598357572216,8.92572027356022,9.66725876167326,10.5316961319372,6.92307692307692,482.14163764256,353,73215,0,0,0,0,9 +"11599",2013,47011,"TN","47","011",101819,0.930847877115273,7562,0.123257938105855,8.93089098445088,9.4925826756776,10.3346853825399,7.1,432.212231109345,261,60387,0,0,0,0,9 +"11600",2013,47013,"TN","47","013",40262,0.987059758581293,2407,0.140355670359148,7.78613643778307,8.56655462095396,9.38370527072725,11.0307692307692,762.57390112244,178,23342,0,0,0,0,9 +"11601",2013,47015,"TN","47","015",13704,0.973949211908932,820,0.138718622300058,6.7093043402583,7.4593388952203,8.31287139434261,7.85384615384615,501.958863858962,41,8168,0,0,0,0,9 +"11602",2013,47017,"TN","47","017",28614,0.87869574334242,2057,0.133151604109876,7.62900388965296,8.10319175228579,9.01042494678118,11.8076923076923,558.51898336994,89,15935,0,0,0,0,9 +"11603",2013,47019,"TN","47","019",56985,0.976888654909187,3586,0.144353777309818,8.18479265416508,8.8722067560283,9.74607321944827,9.16923076923077,556.324139758043,189,33973,0,0,0,0,9 +"11604",2013,47021,"TN","47","021",39335,0.97150120757595,2268,0.138400915215457,7.72665366484764,8.60355435706428,9.40294223817769,6.56923076923077,511.50895140665,124,24242,0,0,0,0,9 +"11605",2013,47023,"TN","47","023",17120,0.891822429906542,1569,0.121144859813084,7.35819375273303,7.6251071482389,8.52436739516424,8.06923076923077,344.478216818642,34,9870,0,0,0,0,9 +"11606",2013,47025,"TN","47","025",31645,0.977689998419972,2197,0.145457418233528,7.69484807238461,8.28803156777646,9.16219999664825,10.6923076923077,788.359788359788,149,18900,0,0,0,0,9 +"11607",2013,47027,"TN","47","027",7693,0.975302222799948,413,0.147796698297153,6.02344759296103,6.7945865808765,7.67042852219069,10.7230769230769,673.791821561338,29,4304,0,0,0,0,9 +"11608",2013,47029,"TN","47","029",35409,0.966392725013415,2033,0.150074839730012,7.61726781362835,8.39140318535794,9.27874640464024,10.8692307692308,763.063846228146,158,20706,0,0,0,0,9 +"11609",2013,47031,"TN","47","031",53325,0.942878574777309,3315,0.127744960150023,8.10621290261996,8.77369414638444,9.65412835440351,7.77692307692308,586.673658680476,179,30511,0,0,0,0,9 +"11610",2013,47033,"TN","47","033",14613,0.850065010606994,905,0.124341339902826,6.80793494369993,7.45876269238096,8.34355383500512,9.1,604.741170778907,50,8268,0,0,0,0,9 +"11611",2013,47035,"TN","47","035",57462,0.982423166614458,2901,0.144547701089416,7.9728107841214,8.68490859582083,9.63737125799891,9.25384615384615,569.60737777175,168,29494,0,0,0,0,9 +"11612",2013,47037,"TN","47","037",660560,0.667227806709459,51790,0.11380798110694,10.8549523594179,11.4147722475618,12.2996085249213,5.89230769230769,375.045415655802,1600,426615,0,0,0,0,9 +"11613",2013,47039,"TN","47","039",11693,0.956640725220217,640,0.147524159753699,6.46146817635372,7.20563517641036,8.07496035911586,10.5769230769231,496.200961389363,32,6449,0,0,0,0,9 +"11614",2013,47041,"TN","47","041",19147,0.967880085653105,1127,0.13814174544315,7.02731451403978,7.77821147451249,8.6312359074569,10.0846153846154,616.897630755476,69,11185,0,0,0,0,9 +"11615",2013,47043,"TN","47","043",50182,0.941811805029692,2992,0.130764018970946,8.00369733909437,8.80131894766524,9.63075977186616,7.66153846153846,539.815590947192,161,29825,0,0,0,0,9 +"11616",2013,47045,"TN","47","045",38112,0.839027078085642,2340,0.128778337531486,7.75790620835175,8.48425669116997,9.32812340763257,10.4076923076923,644.453585630056,141,21879,0,0,0,0,9 +"11617",2013,47047,"TN","47","047",38819,0.709085756974677,1950,0.162703830598418,7.57558465155779,8.46294817656384,9.36306145899385,8.59230769230769,464.789967552399,106,22806,0,0,0,0,9 +"11618",2013,47049,"TN","47","049",17909,0.988329889999442,959,0.147188564408956,6.86589107488344,7.67786350067821,8.54888563814873,9.73076923076923,754.642041505312,76,10071,0,0,0,0,9 +"11619",2013,47051,"TN","47","051",41241,0.930869765524599,3174,0.140321524696297,8.06274790108635,8.49125980938973,9.39357817555449,7.21538461538462,593.966327664302,139,23402,0,0,0,0,9 +"11620",2013,47053,"TN","47","053",49381,0.801624106437699,2814,0.124460825013669,7.94236223767433,8.71997075677757,9.5760246100725,10.9769230769231,535.184783394807,148,27654,0,0,0,0,9 +"11621",2013,47055,"TN","47","055",28810,0.880735855605692,1822,0.142936480388754,7.5076900778199,8.1056094022999,9.04345899967011,8.13076923076923,636.521947997358,106,16653,0,0,0,0,9 +"11622",2013,47057,"TN","47","057",22733,0.985703602692122,1242,0.146747019751023,7.12447826249342,7.99530662029082,8.81001204797317,9.96153846153846,690.898167617903,92,13316,0,0,0,0,9 +"11623",2013,47059,"TN","47","059",68352,0.967374765917603,4126,0.144443469101124,8.3250636936312,9.05695606507683,9.90777833395328,9.60769230769231,513.391163602337,203,39541,0,0,0,0,9 +"11624",2013,47061,"TN","47","061",13449,0.984459811138375,791,0.136441371105658,6.67329796776765,7.39633529380081,8.2443340478561,10.0307692307692,901.020272956142,68,7547,0,0,0,0,9 +"11625",2013,47063,"TN","47","063",63068,0.929837635567958,3792,0.124230988774022,8.24064886337491,9.02014792080166,9.81087872080347,9.06923076923077,560.90856079749,202,36013,0,0,0,0,9 +"11626",2013,47065,"TN","47","065",349234,0.767496864566451,25178,0.134886637612604,10.1337258763262,10.6990784991725,11.5906639815717,7.20769230769231,423.092994985565,891,210592,0,0,0,0,9 +"11627",2013,47067,"TN","47","067",6621,0.987162060111766,355,0.160851835070231,5.87211778947542,6.68336094576627,7.57814547241947,11.7846153846154,657.229524772497,26,3956,0,0,0,0,9 +"11628",2013,47069,"TN","47","069",26362,0.565055762081784,1880,0.130414991275321,7.539027055824,8.12710918534638,8.81729778386658,11.0692307692308,503.376304481277,82,16290,0,0,0,0,9 +"11629",2013,47071,"TN","47","071",25931,0.951409509853072,1466,0.14862519763989,7.2902928824466,8.04012466444838,8.92185797935363,10.3,723.951285520974,107,14780,0,0,0,0,9 +"11630",2013,47073,"TN","47","073",56719,0.975845836492181,3115,0.143179534194891,8.04398443122155,8.90815361332152,9.72615353725321,8.73076923076923,555.639896766358,183,32935,0,0,0,0,9 +"11631",2013,47075,"TN","47","075",18241,0.48489666136725,1127,0.14708623430733,7.02731451403978,7.6377164326648,8.64435433703292,11.7538461538462,527.058823529412,56,10625,0,0,0,0,9 +"11632",2013,47077,"TN","47","077",28057,0.906939444701857,1681,0.130947713583063,7.42714413340862,8.18535022317869,9.02833876399315,10.4615384615385,510.141364474493,83,16270,0,0,0,0,9 +"11633",2013,47079,"TN","47","079",32247,0.905541600769064,1682,0.146463236890253,7.42773884053289,8.21716859576607,9.13140538388804,9.42307692307692,622.08398133748,112,18004,0,0,0,0,9 +"11634",2013,47081,"TN","47","081",24219,0.939758041207317,1519,0.133283785457699,7.32580750259577,8.07682603129881,8.81477608854528,8.26923076923077,516.093983430667,76,14726,0,0,0,0,9 +"11635",2013,47083,"TN","47","083",8276,0.957225712904785,480,0.14318511358144,6.17378610390194,6.90575327631146,7.77022320415879,10.9076923076923,682.885189927443,32,4686,0,0,0,0,9 +"11636",2013,47085,"TN","47","085",18243,0.959052787370498,1048,0.14158855451406,6.95463886488099,7.71824095195932,8.56522116042682,8.76923076923077,671.205292933167,70,10429,0,0,0,0,9 +"11637",2013,47087,"TN","47","087",11569,0.9856513095341,660,0.159910104589852,6.49223983502047,7.24779258176785,8.11162807830774,10.2769230769231,834.575260804769,56,6710,0,0,0,0,9 +"11638",2013,47089,"TN","47","089",52157,0.965431293977798,3458,0.135053779933662,8.14844566624324,8.76045304631527,9.6339727840398,9.01538461538462,452.835214597276,136,30033,0,0,0,0,9 +"11639",2013,47091,"TN","47","091",18020,0.968257491675916,1046,0.140621531631521,6.95272864462487,7.81197342962202,8.45765547870004,8.98461538461538,488.524287952807,53,10849,0,0,0,0,9 +"11640",2013,47093,"TN","47","093",444453,0.877082616159639,40393,0.124082861404918,10.60641178161,10.9465518945714,11.841826253238,6.3,402.649551611517,1096,272197,0,0,0,0,9 +"11641",2013,47095,"TN","47","095",7712,0.701633817427386,650,0.122017634854772,6.47697236288968,7.06133436691044,7.37023064180708,10.0615384615385,578.480524489009,30,5186,0,0,0,0,9 +"11642",2013,47097,"TN","47","097",27578,0.628508231198782,2006,0.119624338240627,7.60389796852188,8.20821938349683,8.93905644533404,11.6230769230769,648.431973591134,110,16964,0,0,0,0,9 +"11643",2013,47099,"TN","47","099",42037,0.96993125104075,2619,0.126864428955444,7.87054784450771,8.5336569174469,9.385049695768,9.81538461538462,542.341034291327,127,23417,0,0,0,0,9 +"11644",2013,47101,"TN","47","101",12001,0.966002833097242,670,0.153737188567619,6.50727771238501,7.30249642372733,8.15765701519647,10.5769230769231,625.545533895839,43,6874,0,0,0,0,9 +"11645",2013,47103,"TN","47","103",33515,0.91460540056691,1918,0.142384007160973,7.55903825544338,8.28903709827848,9.178746500385,6.22307692307692,420.168067226891,81,19278,0,0,0,0,9 +"11646",2013,47105,"TN","47","105",50408,0.967505157911443,2544,0.147377400412633,7.84149292446001,8.63976474380442,9.54423786822493,7.73846153846154,539.172535211268,147,27264,0,0,0,0,9 +"11647",2013,47107,"TN","47","107",52437,0.942864771058604,3333,0.138604420542747,8.11162807830774,8.78247626892454,9.64244741103077,9.01538461538462,581.202258385918,175,30110,0,0,0,0,9 +"11648",2013,47109,"TN","47","109",26040,0.929953917050691,1523,0.137096774193548,7.32843735289516,8.07153089355666,8.9099107267019,11.6692307692308,614.334470989761,90,14650,0,0,0,0,9 +"11649",2013,47111,"TN","47","111",22634,0.976583900326942,1466,0.126800388795617,7.2902928824466,7.97693875695943,8.80687326653069,8.16153846153846,678.353658536585,89,13120,0,0,0,0,9 +"11650",2013,47113,"TN","47","113",98760,0.605153908464966,7760,0.129323612798704,8.95673761317726,9.37687124286381,10.3313988494741,8.02307692307692,429.959583799123,250,58145,0,0,0,0,9 +"11651",2013,47115,"TN","47","115",28337,0.947983202173836,1653,0.149168931079507,7.41034709782102,8.16735198705607,9.04014499498007,9.07692307692308,690.027601104044,115,16666,0,0,0,0,9 +"11652",2013,47117,"TN","47","117",31147,0.915593797155424,1906,0.134427071628086,7.55276208421415,8.33854487998858,9.14227564106205,8.13076923076923,455.70444311832,84,18433,0,0,0,0,9 +"11653",2013,47119,"TN","47","119",83722,0.856680442416569,5020,0.139748214328372,8.52118521268578,9.27612811251419,10.1672354746923,7.06923076923077,473.554858433073,237,50047,0,0,0,0,9 +"11654",2013,47121,"TN","47","121",11668,0.970431950634213,619,0.150325677065478,6.4281052726846,7.3185395485679,8.12710918534638,10.2076923076923,746.487119437939,51,6832,0,0,0,0,9 +"11655",2013,47123,"TN","47","123",45242,0.962954776535078,2628,0.143782326157111,7.8739783796045,8.62281367327992,9.47807480661827,9.74615384615385,521.577869644168,135,25883,0,0,0,0,9 +"11656",2013,47125,"TN","47","125",184480,0.749398308759757,17189,0.0883401994796184,9.75202492332816,10.1111519170019,10.9476788536623,7.53846153846154,318.42371465013,362,113685,0,0,0,0,9 +"11657",2013,47127,"TN","47","127",6276,0.961440407903123,305,0.147705544933078,5.72031177660741,6.70563909486,7.48773376143644,6,308.382394168769,11,3567,0,0,0,0,9 +"11658",2013,47129,"TN","47","129",21691,0.95518878797658,1373,0.13835231201881,7.22475340576797,8.03689677268507,8.65207367361006,10.1615384615385,508.056321672231,70,13778,0,0,0,0,9 +"11659",2013,47131,"TN","47","131",31032,0.879608146429492,1802,0.140822376901263,7.49665243816828,8.26230094178745,9.10886120302633,11.5230769230769,611.740936132001,109,17818,0,0,0,0,9 +"11660",2013,47133,"TN","47","133",21965,0.984020031868882,1261,0.141816526291828,7.13966033596492,7.9355873855892,8.74209519574531,8.97692307692308,786.769428387925,98,12456,0,0,0,0,9 +"11661",2013,47135,"TN","47","135",7883,0.961309146264113,438,0.150577191424585,6.08221891037645,6.78332520060396,7.66996199547358,9.33846153846154,755.840586349061,33,4366,0,0,0,0,9 +"11662",2013,47139,"TN","47","139",16636,0.983529694638134,920,0.141800913681173,6.82437367004309,7.71289096149013,8.4898219946201,9.19230769230769,672.043010752688,65,9672,0,0,0,0,9 +"11663",2013,47141,"TN","47","141",74106,0.951191536447791,8513,0.116481796345775,9.04934968588406,9.04369529456724,9.99177311740349,7.97692307692308,477.872428838562,207,43317,0,0,0,0,9 +"11664",2013,47143,"TN","47","143",32545,0.964449224151175,2213,0.134797972038716,7.70210434005105,8.28020423327997,9.14612179964953,10.6461538461538,519.424304728925,96,18482,0,0,0,0,9 +"11665",2013,47145,"TN","47","145",53175,0.959774330042313,2839,0.159003291020216,7.95120715647297,8.73937628163532,9.65149432249285,9,643.192334197486,196,30473,0,0,0,0,9 +"11666",2013,47147,"TN","47","147",67423,0.907791109858654,3914,0.126663008172285,8.27231514795602,9.1001906284752,9.92363325822908,6.73846153846154,445.033377503313,178,39997,0,0,0,0,9 +"11667",2013,47149,"TN","47","149",281277,0.816696708227121,27952,0.100861428413983,10.2382440323738,10.6144500929661,11.3926543365766,6.20769230769231,291.188265513355,509,174801,0,0,0,0,9 +"11668",2013,47151,"TN","47","151",22068,0.990030813848106,1385,0.12710712343665,7.23345541862144,7.99967857949945,8.77570388656774,14.4153846153846,725.146198830409,93,12825,0,0,0,0,9 +"11669",2013,47153,"TN","47","153",14537,0.981495494256036,835,0.144390176790259,6.72743172485086,7.54327334670545,8.35655484545343,8.58461538461538,498.634690727769,42,8423,0,0,0,0,9 +"11670",2013,47155,"TN","47","155",93515,0.969577073196813,5872,0.142340800941025,8.67795057029435,9.38739809909504,10.2532989964535,8.43076923076923,506.35192359672,281,55495,0,0,0,0,9 +"11671",2013,47157,"TN","47","157",938713,0.428147900369975,71192,0.122087368556737,11.1731357315367,11.7061787191045,12.6022783507062,8.76153846153846,488.372503041309,2770,567190,0,0,0,0,9 +"11672",2013,47159,"TN","47","159",19123,0.965643465983371,1108,0.135909637609162,7.01031186730723,7.76726399675731,8.64100247714252,7.76153846153846,568.383658969805,64,11260,0,0,0,0,9 +"11673",2013,47161,"TN","47","161",13277,0.958725615726444,739,0.144309708518491,6.6052979209482,7.37086016653672,8.25062008217469,10.8769230769231,505.902192242833,39,7709,0,0,0,0,9 +"11674",2013,47163,"TN","47","163",156258,0.963061091272127,9079,0.14490138104929,9.11371933337176,9.87781070574614,10.74131932195,7.56153846153846,535.396911256582,485,90587,0,0,0,0,9 +"11675",2013,47165,"TN","47","165",168839,0.909689112112723,9759,0.126179377987313,9.18594521514146,10.0586948168385,10.8404041022039,6.16923076923077,367.101303911735,366,99700,0,0,0,0,9 +"11676",2013,47167,"TN","47","167",61594,0.794525440789687,4008,0.121765106990941,8.2960476427647,9.00920290092459,9.82384892987591,9.43846153846154,458.006842511864,166,36244,0,0,0,0,9 +"11677",2013,47169,"TN","47","169",7814,0.888533401586895,472,0.140772971589455,6.15697898558556,6.87935580446044,7.76556908109732,8.44615384615385,475.264635990495,22,4629,0,0,0,0,9 +"11678",2013,47171,"TN","47","171",18102,0.989227709645343,931,0.152027400287261,6.83625927727707,7.69712131728263,8.55256033525353,10.4846153846154,616.689150125265,64,10378,0,0,0,0,9 +"11679",2013,47173,"TN","47","173",19064,0.989718841796055,1100,0.140684011749895,7.00306545878646,7.75747876658418,8.64153246567185,9.59230769230769,577.829140368033,65,11249,0,0,0,0,9 +"11680",2013,47175,"TN","47","175",5573,0.985465637897003,295,0.170285304144985,5.68697535633982,6.54534966033442,7.40000951716269,11.4615384615385,798.525798525799,26,3256,0,0,0,0,9 +"11681",2013,47177,"TN","47","177",39883,0.949326780833939,2314,0.12867637840684,7.74673290775362,8.57640505104808,9.35149265173207,8.52307692307692,581.571980382796,134,23041,0,0,0,0,9 +"11682",2013,47179,"TN","47","179",125454,0.933935944649035,11608,0.129186793565769,9.35944979456402,9.67771554986823,10.5568538630842,7.19230769230769,460.53843522198,350,75998,0,0,0,0,9 +"11683",2013,47181,"TN","47","181",16918,0.928774086771486,1135,0.130866532687079,7.0343879299155,7.74630066223144,8.37701116081637,9.62307692307692,504.377617053673,53,10508,0,0,0,0,9 +"11684",2013,47183,"TN","47","183",34154,0.900450898869825,4430,0.122943139895766,8.39615486303918,8.20876404581967,9.224341891612,10.3384615384615,451.955197484771,92,20356,0,0,0,0,9 +"11685",2013,47185,"TN","47","185",26207,0.969168542755752,1493,0.14125996871065,7.30854279753919,8.05642676752298,8.93128762622246,9.41538461538462,568.219800788823,85,14959,0,0,0,0,9 +"11686",2013,47187,"TN","47","187",199177,0.911766920879419,9180,0.126611004282623,9.12478248361454,10.3134093813612,10.9937483981152,5.13076923076923,185.551278049457,214,115332,0,0,0,0,9 +"11687",2013,47189,"TN","47","189",122033,0.909385166307474,6669,0.130669572984357,8.80522520263231,9.75411709588186,10.520671194289,6.27692307692308,364.751720135953,264,72378,0,0,0,0,9 +"11688",2013,48001,"TX","48","001",57982,0.761684660756787,3549,0.11996826601359,8.1744211526465,9.13615547378681,9.43954551466899,5.83846153846154,641.838351822504,243,37860,0,0,0,0,9 +"11689",2013,48003,"TX","48","003",16774,0.954572552760224,1215,0.102301180398235,7.10249935577465,7.60787807327851,8.43620003220671,3.85384615384615,344.791557830948,33,9571,0,0,0,0,9 +"11690",2013,48005,"TX","48","005",87317,0.821661303068131,5995,0.119186412726044,8.69868106746161,9.28256800597306,10.1287089436453,6.51538461538462,462.411404801809,229,49523,0,0,0,0,9 +"11691",2013,48007,"TX","48","007",23893,0.945925584899343,1271,0.157619386431172,7.14755927118945,7.7393592026891,8.78078746833893,6.62307692307692,759.336742600341,98,12906,0,0,0,0,9 +"11692",2013,48009,"TX","48","009",8799,0.972383225366519,489,0.148539606773497,6.19236248947487,6.91968384984741,7.81802793853073,5.27692307692308,442.834138486312,22,4968,0,0,0,0,9 +"11693",2013,48013,"TX","48","013",47029,0.968104786408386,2957,0.116375002657934,7.99193051985248,8.65730289940088,9.47960385890395,6.29230769230769,494.783675974225,129,26072,0,0,0,0,9 +"11694",2013,48015,"TX","48","015",28690,0.886580690135936,1624,0.145451376786337,7.39264752072162,8.11192806331074,8.99093980694081,5.93076923076923,409.454680811465,66,16119,0,0,0,0,9 +"11695",2013,48019,"TX","48","019",20543,0.971912573626053,842,0.186340846030278,6.73578001424233,7.57095858316901,8.68996933536666,6.06923076923077,361.476891298735,42,11619,0,0,0,0,9 +"11696",2013,48021,"TX","48","021",75809,0.885528103523328,4292,0.138242161220963,8.36450810375059,9.17926241640532,9.97180019271821,6.19230769230769,431.800292364781,192,44465,0,0,0,0,9 +"11697",2013,48023,"TX","48","023",3581,0.960067020385367,193,0.145210834962301,5.26269018890489,5.89989735358249,6.85540879860993,5.34615384615385,687.466948704389,13,1891,0,0,0,0,9 +"11698",2013,48025,"TX","48","025",32811,0.896437170461126,2875,0.102435158940599,7.96380795323145,8.46568934854912,8.88405606174246,6.61538461538462,364.738761782957,77,21111,0,0,0,0,9 +"11699",2013,48027,"TX","48","027",327254,0.700138119014588,32266,0.0902571091568018,10.3817693232261,10.6069810251502,11.4857495214645,6.96923076923077,282.583857014609,554,196048,0,0,0,0,9 +"11700",2013,48029,"TX","48","029",1821354,0.866124322893847,143675,0.104104968062222,11.8753090833759,12.3972052706027,13.2174862669437,5.86923076923077,328.43980480026,3559,1083608,0,0,0,0,9 +"11701",2013,48031,"TX","48","031",10639,0.962120500046997,465,0.179246169752796,6.14203740558736,7.04315991598834,8.00436556497957,4.73076923076923,380.353894493137,23,6047,0,0,0,0,9 +"11702",2013,48035,"TX","48","035",17864,0.963781907747425,842,0.14795118674429,6.73578001424233,7.52940645783701,8.4595640785796,6.53076923076923,520.390824129142,49,9416,0,0,0,0,9 +"11703",2013,48037,"TX","48","037",93425,0.723767728124164,6130,0.120792079207921,8.72095002893026,9.40096073158483,10.1746971964194,7.66153846153846,541.549270006221,296,54658,0,0,0,0,9 +"11704",2013,48039,"TX","48","039",329961,0.790699506911423,20103,0.112789087195153,9.90862433664128,10.790740746287,11.4776919921986,6.16923076923077,342.097694624828,678,198189,0,0,0,0,9 +"11705",2013,48041,"TX","48","041",204164,0.816363315765757,46439,0.0763699770772516,10.7458949024189,9.9311027195691,11.0694624957204,4.94615384615385,180.876988511662,239,132134,0,0,0,0,9 +"11706",2013,48043,"TX","48","043",9288,0.95219638242894,605,0.152562446167097,6.40522845803084,6.94889722231331,7.91498300584839,5.58461538461538,323.741007194245,18,5560,0,0,0,0,9 +"11707",2013,48047,"TX","48","047",7266,0.970823011285439,534,0.112166253784751,6.2803958389602,6.50727771238501,7.53155238140729,9.08461538461538,811.249323958897,30,3698,0,0,0,0,9 +"11708",2013,48049,"TX","48","049",37663,0.943658232217296,2328,0.130685287948384,7.75276480885133,8.36660283278374,9.26141364216018,6.5,507.444109339844,106,20889,0,0,0,0,9 +"11709",2013,48051,"TX","48","051",17272,0.858151922186197,926,0.151285317276517,6.83087423464618,7.51914995766982,8.49576524400262,6.23846153846154,519.588485919152,50,9623,0,0,0,0,9 +"11710",2013,48053,"TX","48","053",43580,0.958581918311152,2406,0.147498852684718,7.78572089653462,8.46484671104403,9.41466800903275,5.52307692307692,423.306772908366,102,24096,0,0,0,0,9 +"11711",2013,48055,"TX","48","055",39167,0.90029872086195,3227,0.120509612684147,8.07930819205196,8.49474306257865,9.33635609255904,6.61538461538462,381.580088457202,88,23062,0,0,0,0,9 +"11712",2013,48057,"TX","48","057",21719,0.908513283300336,1479,0.125328053777798,7.2991214627108,7.81237820598861,8.68828526625864,6.24615384615385,472.543588072348,58,12274,0,0,0,0,9 +"11713",2013,48059,"TX","48","059",13502,0.96681973041031,677,0.149014960746556,6.51767127291227,7.3185395485679,8.25582842728183,5.76923076923077,503.911948017504,38,7541,0,0,0,0,9 +"11714",2013,48061,"TX","48","061",417129,0.977381097933733,31077,0.0941267569504877,10.3442232747262,10.8768389156919,11.659619844121,10.0384615384615,292.259442752602,643,220010,0,0,0,0,9 +"11715",2013,48063,"TX","48","063",12462,0.796982827796501,795,0.13248274755256,6.67834211465433,7.25276241805319,8.16791936295782,7.4,547.013601419279,37,6764,0,0,0,0,9 +"11716",2013,48065,"TX","48","065",5988,0.97060788243153,281,0.14812959251837,5.63835466933375,6.48616078894409,7.41034709782102,4.47692307692308,359.712230215827,12,3336,0,0,0,0,9 +"11717",2013,48067,"TX","48","067",30235,0.810054572515297,1571,0.141293203241277,7.35946763825562,8.15421269491423,9.05216493701031,9.27692307692308,606.244316459533,100,16495,0,0,0,0,9 +"11718",2013,48069,"TX","48","069",8108,0.950542673902319,529,0.119141588554514,6.2709884318583,6.82219739062049,7.64444076155657,4.72307692307692,427.655024946543,18,4209,0,0,0,0,9 +"11719",2013,48071,"TX","48","071",37359,0.887523755989186,2236,0.117642335180278,7.71244383427499,8.57130251706327,9.29963247945494,7.39230769230769,427.664857904902,93,21746,0,0,0,0,9 +"11720",2013,48073,"TX","48","073",51089,0.823386639002525,3373,0.123646969014856,8.12355783506165,8.73391617492752,9.51782507172414,6.98461538461538,460.731499858236,130,28216,0,0,0,0,9 +"11721",2013,48077,"TX","48","077",10458,0.969401415184548,494,0.160642570281124,6.20253551718792,7.07072410726028,7.9976631270201,5.56923076923077,424.448217317487,25,5890,0,0,0,0,9 +"11722",2013,48083,"TX","48","083",8533,0.945740067971405,396,0.150591819992968,5.98141421125448,6.86066367144829,7.7336835707759,7.55384615384615,330.396475770925,15,4540,0,0,0,0,9 +"11723",2013,48085,"TX","48","085",856063,0.762349266350724,46689,0.102842898244639,10.7512638698731,11.8709844506811,12.4918303676069,5.58461538461538,186.29974415092,967,519056,0,0,0,0,9 +"11724",2013,48089,"TX","48","089",20717,0.846068446203601,1173,0.149780373606217,7.06731984865348,7.66622192566273,8.62748154531036,5.8,487.761617594892,55,11276,0,0,0,0,9 +"11725",2013,48091,"TX","48","091",118663,0.955900322762782,6273,0.150105761694884,8.74400998809674,9.57108701528497,10.457171496104,6,345.595126522962,236,68288,0,0,0,0,9 +"11726",2013,48093,"TX","48","093",13552,0.97387839433294,734,0.138429752066116,6.59850902861452,7.24422751560335,8.16137502319749,5.88461538461538,493.931696302568,35,7086,0,0,0,0,9 +"11727",2013,48097,"TX","48","097",38465,0.939009489145977,2485,0.13869751722345,7.81802793853073,8.32845106681936,9.29348595306285,5.02307692307692,489.236790606654,105,21462,0,0,0,0,9 +"11728",2013,48099,"TX","48","099",76827,0.765486092129069,8118,0.0782797714345217,9.00183909739884,9.3142498353667,10.1003281954293,7.23076923076923,285.336200479696,138,48364,0,0,0,0,9 +"11729",2013,48111,"TX","48","111",7111,0.945858529039516,496,0.103642244410069,6.20657592672493,6.78219205600679,7.55276208421415,3.51538461538462,397.713149391002,16,4023,0,0,0,0,9 +"11730",2013,48113,"TX","48","113",2484675,0.690014589433226,179351,0.101934860696067,12.0971000586349,12.7750247144426,13.5441387470827,6.64615384615385,319.171069597448,4817,1509222,0,0,0,0,9 +"11731",2013,48115,"TX","48","115",13224,0.912280701754386,1058,0.101028433151845,6.96413561241824,7.32778053842163,8.02158453345511,6.43846153846154,564.971751412429,46,8142,0,0,0,0,9 +"11732",2013,48117,"TX","48","117",19174,0.956816522374048,1368,0.106081151559403,7.2211050981825,7.72001794043224,8.53464010501996,4.49230769230769,418.532217247421,43,10274,0,0,0,0,9 +"11733",2013,48119,"TX","48","119",5117,0.889388313464921,256,0.147742818057456,5.54517744447956,6.29341927884648,7.25205395185281,6.36923076923077,638.524299396949,18,2819,0,0,0,0,9 +"11734",2013,48121,"TX","48","121",727776,0.813408246493427,51160,0.099698258804907,10.8427132556928,11.6619228895567,12.3539968380985,5.40769230769231,199.159883446454,907,455413,0,0,0,0,9 +"11735",2013,48123,"TX","48","123",20381,0.887247926990825,1072,0.137726313723566,6.97728134163075,7.81722278550817,8.54985397365579,4.74615384615385,385.835548315185,45,11663,0,0,0,0,9 +"11736",2013,48127,"TX","48","127",10898,0.96889337493118,732,0.113507065516609,6.59578051396131,7.09257371597468,7.96171881598136,5.07692307692308,505.226480836237,29,5740,0,0,0,0,9 +"11737",2013,48131,"TX","48","131",11563,0.974747037965926,864,0.10499005448413,6.76157276880406,7.19218205871325,7.94873845481361,6.43846153846154,640.614990390775,40,6244,0,0,0,0,9 +"11738",2013,48133,"TX","48","133",18279,0.959406969746704,1131,0.13611247880081,7.03085747611612,7.50549227473742,8.48198043566049,6.1,567.712634186623,55,9688,0,0,0,0,9 +"11739",2013,48135,"TX","48","135",149629,0.921011301285179,12859,0.0995729437475356,9.46179923427044,9.7928911311941,10.6599850485968,4.36923076923077,459.070094697625,398,86697,0,0,0,0,9 +"11740",2013,48139,"TX","48","139",155972,0.884972943861719,10242,0.119553509604288,9.2342521920225,9.95060965960486,10.7437823773824,6.22307692307692,321.278070571149,292,90887,0,0,0,0,9 +"11741",2013,48141,"TX","48","141",830585,0.93216227117032,71254,0.0972194296790816,11.174006236906,11.5689276550855,12.3981960072964,7.98461538461538,271.35231316726,1281,472080,0,0,0,0,9 +"11742",2013,48143,"TX","48","143",39893,0.958263354473216,5898,0.104003208582959,8.68236858937522,8.30795254527102,9.37126803608247,5.43846153846154,296.50638133299,69,23271,0,0,0,0,9 +"11743",2013,48145,"TX","48","145",17244,0.727847367200186,1195,0.129726281605196,7.08590146436561,7.60539236481493,8.61268517287546,7.12307692307692,484.790874524715,51,10520,0,0,0,0,9 +"11744",2013,48147,"TX","48","147",33509,0.907338327016622,2175,0.133964009669044,7.68478394352278,8.3197173868506,9.08284785146091,7.03076923076923,483.460559796438,95,19650,0,0,0,0,9 +"11745",2013,48149,"TX","48","149",24705,0.914996964177292,1181,0.155636510827768,7.07411681619736,7.80547462527086,8.79769958011892,4.48461538461538,438.928409262903,58,13214,0,0,0,0,9 +"11746",2013,48157,"TX","48","157",651770,0.585907605443638,37859,0.119126378937355,10.5416240113136,11.5147637742439,12.216339757886,5.53846153846154,213.676848189994,838,392181,0,0,0,0,9 +"11747",2013,48159,"TX","48","159",10612,0.936675461741425,553,0.13795702977761,6.31535800152233,7.00306545878646,7.95647679803678,6.58461538461538,298.717272887015,17,5691,0,0,0,0,9 +"11748",2013,48161,"TX","48","161",19599,0.80830654625236,963,0.135415072197561,6.87005341179813,7.86787149039632,8.52595469708481,6.94615384615385,445.5533772946,50,11222,0,0,0,0,9 +"11749",2013,48163,"TX","48","163",18397,0.927977387617546,1875,0.0946893515247051,7.53636393840451,7.72841577984104,8.30498958014036,4.72307692307692,379.369523981573,42,11071,0,0,0,0,9 +"11750",2013,48165,"TX","48","165",18798,0.960580912863071,1325,0.0866049579742526,7.18916773842032,7.67089483136212,8.4848765899397,4.20769230769231,382.255306307213,38,9941,0,0,0,0,9 +"11751",2013,48167,"TX","48","167",306652,0.81490093004448,19420,0.130816039027954,9.87405874184532,10.5899373556483,11.4433288398321,6.92307692307692,422.231003664749,780,184733,0,0,0,0,9 +"11752",2013,48171,"TX","48","171",25364,0.976462703043684,1116,0.155219996845923,7.01750614294126,7.76259604854007,8.79875658285984,4.43846153846154,462.70880715238,59,12751,0,0,0,0,9 +"11753",2013,48177,"TX","48","177",20135,0.899428855227216,1268,0.125850509063819,7.14519613499717,7.72533003791713,8.59378379357795,5.16153846153846,476.661570285098,53,11119,0,0,0,0,9 +"11754",2013,48179,"TX","48","179",22994,0.923197355831956,1351,0.114899539010177,7.2086003379602,7.98002359231065,8.67180090964268,5.19230769230769,471.734002891273,62,13143,0,0,0,0,9 +"11755",2013,48181,"TX","48","181",122385,0.899816153940434,7957,0.133145401805777,8.98180732337753,9.55746990307138,10.4790610505238,6.31538461538462,532.441625166837,371,69679,0,0,0,0,9 +"11756",2013,48183,"TX","48","183",123313,0.763909725657473,9302,0.116994964034611,9.13798470978404,9.60326045258205,10.4893557116156,6.00769230769231,488.534959900599,346,70824,0,0,0,0,9 +"11757",2013,48185,"TX","48","185",26796,0.81777130915062,1710,0.143491565905359,7.4442486494967,8.11312710422178,8.83579236650274,6.05384615384615,512.788829852959,83,16186,0,0,0,0,9 +"11758",2013,48187,"TX","48","187",142895,0.886763007802932,8734,0.111403478078309,9.07497873404551,9.89363921648131,10.6488950597572,5.52307692307692,308.011933952578,255,82789,0,0,0,0,9 +"11759",2013,48189,"TX","48","189",35660,0.91491867638811,3016,0.100729108244532,8.01168672912785,8.33327035325531,9.12891337328045,13.4,379.525593008739,76,20025,0,0,0,0,9 +"11760",2013,48193,"TX","48","193",8244,0.968340611353712,383,0.141921397379913,5.94803498918065,6.74758652682932,7.65775527113487,6.01538461538462,540.794733129556,23,4253,0,0,0,0,9 +"11761",2013,48199,"TX","48","199",55311,0.92809748512954,3229,0.131095080544557,8.07992777075827,8.84491295089955,9.6975083473915,8.10769230769231,488.655109091475,157,32129,0,0,0,0,9 +"11762",2013,48201,"TX","48","201",4352419,0.715556107994198,317219,0.104019167272269,12.6673476660662,13.3411582870675,14.1000103222404,6.10769230769231,305.649105759124,8090,2646826,0,0,0,0,9 +"11763",2013,48203,"TX","48","203",66287,0.7561663674627,4411,0.131428485223347,8.39185670010494,8.98369068133269,9.87044769845793,6.90769230769231,437.921956051404,168,38363,0,0,0,0,9 +"11764",2013,48207,"TX","48","207",5899,0.932869977962366,367,0.134090523817596,5.90536184805457,6.51767127291227,7.28619171470238,4.97692307692308,486.61800486618,16,3288,0,0,0,0,9 +"11765",2013,48209,"TX","48","209",175933,0.92582403528616,23587,0.103687199104204,10.0684509917839,10.0059990134892,10.9073311814181,5.38461538461539,231.283900988463,252,108957,0,0,0,0,9 +"11766",2013,48213,"TX","48","213",78679,0.916038587170655,4445,0.143062316501226,8.399535147948,9.0636947916347,10.000841097792,7.16153846153846,595.776247768737,257,43137,0,0,0,0,9 +"11767",2013,48215,"TX","48","215",818047,0.974789957056257,64000,0.0793964160983415,11.0666383623418,11.5860272167683,12.3187582669731,10.4307692307692,267.215995717096,1148,429615,0,0,0,0,9 +"11768",2013,48217,"TX","48","217",34859,0.912906279583465,1951,0.136033735907513,7.57609734062311,8.21770840684531,9.16125516428569,6.47692307692308,517.637013714713,97,18739,0,0,0,0,9 +"11769",2013,48219,"TX","48","219",23387,0.936674220720913,2010,0.112241843759353,7.60589000105312,7.8164169836918,8.77940359789435,5.07692307692308,419.655119792462,55,13106,0,0,0,0,9 +"11770",2013,48221,"TX","48","221",52872,0.972234831290664,2577,0.15142230292026,7.85438121065236,8.57395152523485,9.58307565546143,6.09230769230769,432.352631023938,123,28449,0,0,0,0,9 +"11771",2013,48223,"TX","48","223",35297,0.903674533246452,2054,0.127999546703686,7.6275443904885,8.33038156934942,9.20029003612268,5.80769230769231,461.249936641492,91,19729,0,0,0,0,9 +"11772",2013,48225,"TX","48","225",22806,0.723625361746909,1269,0.13943699026572,7.14598446771439,7.93272102748195,8.65625923953924,6.26923076923077,622.515562889072,83,13333,0,0,0,0,9 +"11773",2013,48227,"TX","48","227",36170,0.897401161183301,2871,0.115565385678739,7.96241568012106,8.37999795223839,9.09616332691378,5.43076923076923,531.467292617034,120,22579,0,0,0,0,9 +"11774",2013,48231,"TX","48","231",87447,0.882443079808341,6123,0.128214804395805,8.71980745147795,9.24300115421573,10.1481968817649,7.50769230769231,512.148642210577,258,50376,0,0,0,0,9 +"11775",2013,48233,"TX","48","233",21924,0.94047619047619,1258,0.136288998357964,7.13727843726039,7.88795933659994,8.7071521753394,6.23076923076923,617.183693357154,76,12314,0,0,0,0,9 +"11776",2013,48237,"TX","48","237",8950,0.941787709497207,651,0.118212290502793,6.47850964220857,7.0335064842877,7.66669020008009,5.36153846153846,524.050159086655,28,5343,0,0,0,0,9 +"11777",2013,48239,"TX","48","239",14609,0.908549524265864,845,0.131425833390376,6.73933662735717,7.3864708488299,8.28928832300032,5.01538461538462,487.012987012987,39,8008,0,0,0,0,9 +"11778",2013,48241,"TX","48","241",35615,0.81490944826618,1961,0.138705601572371,7.58120982619635,8.2872767558146,9.19958271532322,10.5461538461538,511.936742865832,101,19729,0,0,0,0,9 +"11779",2013,48245,"TX","48","245",253091,0.598918965905544,19209,0.122347298007436,9.86313419818691,10.3508620637215,11.1796042586345,10.9461538461538,447.365659109992,682,152448,0,0,0,0,9 +"11780",2013,48249,"TX","48","249",41706,0.973313192346425,2974,0.113988394955162,7.9976631270201,8.47803647621504,9.36056908522287,6.18461538461538,545.923046687339,125,22897,0,0,0,0,9 +"11781",2013,48251,"TX","48","251",154531,0.943195863613126,9632,0.119742964194886,9.1728461675486,9.91140611778042,10.7066767732973,6.17692307692308,427.550270559156,384,89814,0,0,0,0,9 +"11782",2013,48253,"TX","48","253",20041,0.843670475525173,1561,0.114465346040617,7.35308192051543,8.00936307663004,8.30893825259578,6.79230769230769,468.978242484816,61,13007,0,0,0,0,9 +"11783",2013,48255,"TX","48","255",14729,0.89605540090977,1174,0.113381763867201,7.06817200038804,7.55066124310534,8.10952565975287,5.39230769230769,569.920844327177,54,9475,0,0,0,0,9 +"11784",2013,48257,"TX","48","257",108269,0.868069345796119,5961,0.117263482621988,8.69299353121993,9.63534663529118,10.3766424612808,6.4,406.046282931781,256,63047,0,0,0,0,9 +"11785",2013,48259,"TX","48","259",37151,0.969475922586202,1890,0.147425372129956,7.54433210805369,8.36474106822456,9.26860928010016,5.11538461538461,253.81926152962,53,20881,0,0,0,0,9 +"11786",2013,48265,"TX","48","265",49781,0.954098953415962,2882,0.145617805990237,7.96623977655947,8.41803561988302,9.4938638092791,5.55384615384615,485.587755419159,125,25742,0,0,0,0,9 +"11787",2013,48273,"TX","48","273",32012,0.919748844183431,4792,0.0921217043608647,8.47470313979528,8.04012466444838,9.08828572596888,6.52307692307692,326.069235367643,60,18401,0,0,0,0,9 +"11788",2013,48277,"TX","48","277",49113,0.831755339726753,3222,0.129069696414391,8.07775756373692,8.65556286068101,9.5642314445383,8.16923076923077,548.253576356111,151,27542,0,0,0,0,9 +"11789",2013,48279,"TX","48","279",13671,0.924072854948431,806,0.114768488040377,6.69208374250663,7.27862894232068,8.18060094759445,6.89230769230769,500.834724540902,36,7188,0,0,0,0,9 +"11790",2013,48281,"TX","48","281",20138,0.923478001787665,1089,0.134919058496375,6.99301512293296,7.80343505695217,8.65608519028286,7.22307692307692,437.675070028011,50,11424,0,0,0,0,9 +"11791",2013,48283,"TX","48","283",7442,0.976484815909702,1166,0.0870733673743617,7.06133436691044,6.70441435496411,7.44716835960004,3.8,320.924261874198,15,4674,0,0,0,0,9 +"11792",2013,48285,"TX","48","285",19630,0.916403464085583,979,0.14381049414162,6.88653164253051,7.60240133566582,8.55140136274597,4.72307692307692,378.714313458924,39,10298,0,0,0,0,9 +"11793",2013,48287,"TX","48","287",16542,0.864163946318462,928,0.141155845726031,6.8330317327862,7.53529670244409,8.44290058683438,5.13846153846154,414.540816326531,39,9408,0,0,0,0,9 +"11794",2013,48289,"TX","48","289",16619,0.907876526866839,805,0.148324207232685,6.69084227741856,7.38274644973891,8.38958706681109,6.96153846153846,724.966017217943,64,8828,0,0,0,0,9 +"11795",2013,48291,"TX","48","291",76847,0.869689122542194,5325,0.123583223808346,8.58016799057763,9.22660734444005,10.0690019910137,8.96153846153846,441.864494888234,204,46168,0,0,0,0,9 +"11796",2013,48293,"TX","48","293",23433,0.797081039559595,1509,0.133102889088038,7.31920245876785,7.90691548867859,8.74719318352693,6.78461538461538,608.97676866401,81,13301,0,0,0,0,9 +"11797",2013,48297,"TX","48","297",11831,0.930521511283915,747,0.135491505367256,6.61606518513282,7.2211050981825,7.99699040583765,4.41538461538462,473.593570608496,33,6968,0,0,0,0,9 +"11798",2013,48299,"TX","48","299",19509,0.972166692295863,716,0.181352196422164,6.57368016696065,7.34858753092759,8.5213843960347,6.47692307692308,540.596735627404,52,9619,0,0,0,0,9 +"11799",2013,48303,"TX","48","303",289646,0.879304392258136,37828,0.102311096994262,10.5408048481354,10.3632830051893,11.3707050029107,4.99230769230769,373.611927906735,648,173442,0,0,0,0,9 +"11800",2013,48307,"TX","48","307",8244,0.95536147501213,393,0.146530810286269,5.97380961186926,6.76272950693188,7.68109900153636,5.31538461538462,480.659189745937,21,4369,0,0,0,0,9 +"11801",2013,48309,"TX","48","309",241447,0.813250941200346,25389,0.111113412053163,10.1420712883382,10.1926435382439,11.1688141245517,6.23076923076923,408.274751656819,568,139122,0,0,0,0,9 +"11802",2013,48313,"TX","48","313",13812,0.769041413263829,1266,0.105415580654503,7.14361760270412,7.49443021503157,8.04205641005875,6.52307692307692,415.134622227494,35,8431,0,0,0,0,9 +"11803",2013,48315,"TX","48","315",10293,0.752744583697659,446,0.168366851258137,6.10031895202006,6.91274282049318,8.00336305862995,8.13846153846154,914.739385571281,53,5794,0,0,0,0,9 +"11804",2013,48321,"TX","48","321",36483,0.845955650576981,2401,0.137104952991804,7.78364059622125,8.27001306227379,9.23970498060609,9.8,535.3525610109,111,20734,0,0,0,0,9 +"11805",2013,48323,"TX","48","323",56475,0.97402390438247,4571,0.0928375387339531,8.42748727833174,8.8376812155932,9.62463306868703,12.5846153846154,304.136253041363,90,29592,0,0,0,0,9 +"11806",2013,48325,"TX","48","325",47257,0.950695135112258,3333,0.129335336563895,8.11162807830774,8.6195692580331,9.46242117318499,6.11538461538462,389.005101104628,106,27249,0,0,0,0,9 +"11807",2013,48329,"TX","48","329",152387,0.898810265967569,11620,0.112122425141252,9.3604830304059,9.80399865403539,10.714506653691,3.68461538461538,330.563844302211,298,90149,0,0,0,0,9 +"11808",2013,48331,"TX","48","331",24096,0.87566401062417,1316,0.137367197875166,7.18235211188526,7.86557175768479,8.791486026749,7.89230769230769,559.919122793374,72,12859,0,0,0,0,9 +"11809",2013,48335,"TX","48","335",9002,0.855143301488558,893,0.105087758275939,6.7945865808765,7.12286665859908,7.55118686729615,5.56153846153846,412.065271138948,25,6067,0,0,0,0,9 +"11810",2013,48337,"TX","48","337",19386,0.971422676158052,1036,0.137573506654287,6.94312242281943,7.650168700845,8.56388591940822,4.95384615384615,652.852682372978,69,10569,0,0,0,0,9 +"11811",2013,48339,"TX","48","339",498488,0.912005905859319,29430,0.121455280769046,10.2897698412275,11.1501318400233,11.9056497524276,5.46923076923077,314.763961057743,925,293871,0,0,0,0,9 +"11812",2013,48341,"TX","48","341",22139,0.870229007633588,1617,0.100591715976331,7.38832785957711,7.88758403166028,8.66475075577385,4.29230769230769,277.188977661829,34,12266,0,0,0,0,9 +"11813",2013,48343,"TX","48","343",12674,0.747120088369891,737,0.14407448319394,6.60258789218934,7.21670948670946,8.19808924895612,9.66153846153846,660.729675380638,46,6962,0,0,0,0,9 +"11814",2013,48347,"TX","48","347",65188,0.783518438976499,8954,0.11060317849911,9.09985563880091,8.77770959579525,9.87939975700704,6.56153846153846,442.677269715043,167,37725,0,0,0,0,9 +"11815",2013,48349,"TX","48","349",48036,0.824506620034974,3044,0.12374052793738,8.02092771898158,8.65747673686329,9.50992631143079,6.59230769230769,530.214718158914,141,26593,0,0,0,0,9 +"11816",2013,48351,"TX","48","351",14343,0.776476329917033,957,0.139650003486021,6.86380339145295,7.41637847919293,8.27512163021651,10.8230769230769,548.112058465286,45,8210,0,0,0,0,9 +"11817",2013,48353,"TX","48","353",15076,0.925577076147519,944,0.131400902096047,6.8501261661455,7.43248380791712,8.3187422526924,5.73076923076923,617.508172902288,51,8259,0,0,0,0,9 +"11818",2013,48355,"TX","48","355",352987,0.922538223787278,26849,0.120078076529731,10.1979838552956,10.6697922537138,11.5615441858727,6.16923076923077,406.451333938686,846,208143,0,0,0,0,9 +"11819",2013,48357,"TX","48","357",10701,0.96551724137931,707,0.0989627137650687,6.56103066589657,7.23921497377981,7.96137020171951,3.77692307692308,451.278622764499,27,5983,0,0,0,0,9 +"11820",2013,48361,"TX","48","361",82853,0.891844592229611,5365,0.130170301618529,8.5876516550648,9.22513045744882,10.0946862572677,10.4846153846154,539.691073385579,261,48361,0,0,0,0,9 +"11821",2013,48363,"TX","48","363",27878,0.953404117942464,1678,0.13666690580386,7.42535788702715,8.05102220819068,8.97474461272273,6.58461538461538,596.821277975997,92,15415,0,0,0,0,9 +"11822",2013,48365,"TX","48","365",23791,0.822117607498634,1445,0.140221092009583,7.27586460054653,7.91498300584839,8.81447900001071,6.23076923076923,518.441712338913,70,13502,0,0,0,0,9 +"11823",2013,48367,"TX","48","367",119807,0.964818416286194,7119,0.134449573063344,8.87052254510387,9.62019582838564,10.4671522753178,5.57692307692308,365.448970162002,261,71419,0,0,0,0,9 +"11824",2013,48371,"TX","48","371",15656,0.934977005620848,1086,0.10947879407256,6.99025650049388,7.67878899819915,8.22817689595132,5.45384615384615,240.233966993942,23,9574,0,0,0,0,9 +"11825",2013,48373,"TX","48","373",45527,0.851977947152239,2651,0.149713356909087,7.88269220628903,8.58690580382754,9.36469103180611,7.78461538461538,723.506340200297,190,26261,0,0,0,0,9 +"11826",2013,48375,"TX","48","375",122091,0.818422324331851,8845,0.108222555307107,9.08760760659389,9.63782786411884,10.4212987204758,5.05384615384615,488.699694737726,349,71414,0,0,0,0,9 +"11827",2013,48379,"TX","48","379",11020,0.948638838475499,503,0.152722323049002,6.22059017009974,7.08673793451058,7.99867136101578,6.19230769230769,535.654502845665,32,5974,0,0,0,0,9 +"11828",2013,48381,"TX","48","381",126833,0.938659497134027,9426,0.122483896146902,9.15122710748368,9.66237094923167,10.5476282955412,4.33846153846154,294.981313400961,221,74920,0,0,0,0,9 +"11829",2013,48387,"TX","48","387",12484,0.801105414931112,636,0.148349887856456,6.45519856334012,7.2211050981825,8.16137502319749,10.1307692307692,600.117096018735,41,6832,0,0,0,0,9 +"11830",2013,48389,"TX","48","389",14478,0.923331951927062,1485,0.0924160795690012,7.3031700512368,7.69938940625674,7.98344006300654,5.81538461538462,386.759185530656,34,8791,0,0,0,0,9 +"11831",2013,48391,"TX","48","391",7283,0.909927227790746,471,0.131264588768365,6.15485809401642,6.64898455002478,7.56992765524265,5.41538461538462,538.876058506543,21,3897,0,0,0,0,9 +"11832",2013,48395,"TX","48","395",16420,0.763032886723508,991,0.138733252131547,6.89871453432999,7.4759059693674,8.43489794868941,7.06153846153846,428.100987925357,39,9110,0,0,0,0,9 +"11833",2013,48397,"TX","48","397",84732,0.898751357220413,4266,0.112731907661804,8.3584318990313,9.46915989974286,10.1307426398901,5.79230769230769,257.847078409875,127,49254,0,0,0,0,9 +"11834",2013,48399,"TX","48","399",10197,0.952633127390409,518,0.139550848288712,6.24997524225948,6.97260625130175,7.89580837708318,5.31538461538462,496.506068407503,27,5438,0,0,0,0,9 +"11835",2013,48401,"TX","48","401",53269,0.804238863128649,3571,0.129137021532223,8.18060094759445,8.81477608854528,9.56458235867321,6.27692307692308,391.44458710425,125,31933,0,0,0,0,9 +"11836",2013,48403,"TX","48","403",10428,0.911008822401227,453,0.162159570387418,6.11589212548303,6.81563999007433,7.90174751852014,13.0076923076923,1156.17892342684,61,5276,0,0,0,0,9 +"11837",2013,48405,"TX","48","405",8661,0.754878189585498,454,0.15183004272024,6.11809719804135,6.72743172485086,7.7596141506969,11.7,753.82295929356,35,4643,0,0,0,0,9 +"11838",2013,48407,"TX","48","407",26745,0.87369601794728,1468,0.158010843148252,7.29165620917446,7.97246601597457,8.92757950384347,7.60769230769231,480.35225832277,72,14989,0,0,0,0,9 +"11839",2013,48409,"TX","48","409",66132,0.954016210004234,4388,0.114800701627049,8.38662882139512,8.98193299098687,9.82064927422712,7.22307692307692,465.078549603872,172,36983,0,0,0,0,9 +"11840",2013,48415,"TX","48","415",17258,0.925020280449647,1240,0.117916328659173,7.12286665859908,7.62413058566129,8.35443894011481,4.17692307692308,467.011128775835,47,10064,0,0,0,0,9 +"11841",2013,48419,"TX","48","419",25977,0.799322477576317,1696,0.121530584748046,7.43602781635185,8.03560269291858,8.87598589132597,7.48461538461538,582.906102956668,83,14239,0,0,0,0,9 +"11842",2013,48423,"TX","48","423",216498,0.789309831961496,16276,0.118204325213166,9.69744690912158,10.1538960149984,11.0669664335206,6.6,367.647058823529,452,122944,0,0,0,0,9 +"11843",2013,48425,"TX","48","425",8567,0.960779736197035,491,0.136920742383565,6.19644412779452,6.96129604591017,7.80751004221619,6.08461538461538,618.93955023726,30,4847,0,0,0,0,9 +"11844",2013,48427,"TX","48","427",62347,0.991370875904213,5166,0.0818323255329046,8.54985397365579,8.95892593869494,9.73258060055743,15.0615384615385,315.135786449161,102,32367,0,0,0,0,9 +"11845",2013,48429,"TX","48","429",9366,0.95483664317745,667,0.129083920563741,6.50279004591562,6.91473089271856,7.77821147451249,5.19230769230769,325.857772666283,17,5217,0,0,0,0,9 +"11846",2013,48439,"TX","48","439",1913541,0.768760115409077,131234,0.10677116403568,11.784737268261,12.5015331374869,13.2839923109732,6.1,303.480759824613,3487,1149002,0,0,0,0,9 +"11847",2013,48441,"TX","48","441",133972,0.881109485564148,14985,0.106320723733317,9.61480497975076,9.55236857416808,10.575947214399,5.32307692307692,404.566186512743,314,77614,0,0,0,0,9 +"11848",2013,48445,"TX","48","445",12716,0.932132746146587,949,0.108917898710286,6.85540879860993,7.21670948670946,8.05642676752298,5.97692307692308,503.214984623987,36,7154,0,0,0,0,9 +"11849",2013,48449,"TX","48","449",32575,0.858480429777437,2324,0.104681504221028,7.7510451179718,8.31115254800169,9.10063710688422,7.48461538461538,348.138581616037,62,17809,0,0,0,0,9 +"11850",2013,48451,"TX","48","451",114708,0.922394253234299,10803,0.115929141820972,9.28757915231698,9.40219963325063,10.4266171707583,5.18461538461538,398.578206100626,268,67239,0,0,0,0,9 +"11851",2013,48453,"TX","48","453",1122346,0.823012689491476,87423,0.101013412976034,11.3785136849184,12.0768860861471,12.8025602362414,5.07692307692308,209.457848301576,1546,738096,0,0,0,0,9 +"11852",2013,48455,"TX","48","455",14450,0.889134948096886,676,0.16,6.51619307604296,7.25770767716004,8.29679586577005,7.51538461538462,647.416806940308,50,7723,0,0,0,0,9 +"11853",2013,48457,"TX","48","457",21509,0.871821098144963,1412,0.13580361709052,7.25276241805319,7.79811262882979,8.5657928612523,10.3153846153846,665.54406222436,83,12471,0,0,0,0,9 +"11854",2013,48459,"TX","48","459",39769,0.892303050114411,2238,0.141190374412231,7.71333788887187,8.41869794466714,9.34303391370165,6.42307692307692,557.472790018582,126,22602,0,0,0,0,9 +"11855",2013,48463,"TX","48","463",26905,0.968518862664932,2075,0.107637985504553,7.6377164326648,8.03300949859667,8.88072457615146,7.04615384615385,420.934474533464,60,14254,0,0,0,0,9 +"11856",2013,48465,"TX","48","465",49027,0.961612988761295,4053,0.0937850572133722,8.30721262662831,8.67265729404031,9.46800128531595,7.43846153846154,342.904514281408,91,26538,0,0,0,0,9 +"11857",2013,48467,"TX","48","467",52328,0.952415532793151,2732,0.140077969729399,7.91278922069068,8.71078434046842,9.58740600556265,6.56923076923077,553.486267274689,159,28727,0,0,0,0,9 +"11858",2013,48469,"TX","48","469",90075,0.905956147654732,6143,0.122608936996947,8.72306850116393,9.25205796532805,10.1636956479872,5.37692307692308,404.283853913584,208,51449,0,0,0,0,9 +"11859",2013,48471,"TX","48","471",69402,0.744531857871531,10662,0.109089075242788,9.27444129738271,9.13345932764022,9.77377742101338,6.64615384615385,331.231288617109,156,47097,0,0,0,0,9 +"11860",2013,48473,"TX","48","473",45436,0.699797517387094,6779,0.108372215864073,8.82158487743096,8.42046200245647,9.47608353690921,6.51538461538462,369.1881705957,96,26003,0,0,0,0,9 +"11861",2013,48475,"TX","48","475",11206,0.923433874709977,754,0.112618240228449,6.62539236800796,7.13886699994552,8.02715010683277,4.73076923076923,516.045799064667,32,6201,0,0,0,0,9 +"11862",2013,48477,"TX","48","477",34187,0.793547254804458,2292,0.13876619767748,7.73718007783463,8.19395302356374,9.13884437027111,5.5,497.219846022241,93,18704,0,0,0,0,9 +"11863",2013,48479,"TX","48","479",264280,0.980202815196004,21099,0.0786741334947783,9.95698092497613,10.4757939021451,11.2045507692934,6.18461538461538,275.032961424501,388,141074,0,0,0,0,9 +"11864",2013,48481,"TX","48","481",41115,0.841128541894686,2666,0.129320199440593,7.88833450073865,8.4213428657594,9.35279433977112,6.00769230769231,412.953705716149,95,23005,0,0,0,0,9 +"11865",2013,48483,"TX","48","483",5720,0.943006993006993,331,0.130769230769231,5.80211837537706,6.48920493132532,7.34471905414967,4.34615384615385,573.065902578797,18,3141,0,0,0,0,9 +"11866",2013,48485,"TX","48","485",132255,0.846750595440626,12896,0.115080715284866,9.46467246474641,9.59560277276683,10.5179161483847,5.89230769230769,492.711184671208,387,78545,0,0,0,0,9 +"11867",2013,48487,"TX","48","487",13208,0.886583888552392,907,0.13007268322229,6.81014245011514,7.23777819192344,8.2190566610606,5.82307692307692,498.048189527527,37,7429,0,0,0,0,9 +"11868",2013,48489,"TX","48","489",22016,0.959665697674419,2131,0.0972928779069767,7.66434663209862,7.94909149983052,8.59322787769223,15.8769230769231,357.004268529298,46,12885,0,0,0,0,9 +"11869",2013,48491,"TX","48","491",470494,0.856476384395975,25648,0.100028905788384,10.1522208748493,11.2626933079653,11.8722209722315,5.32307692307692,211.517370062814,594,280828,0,0,0,0,9 +"11870",2013,48493,"TX","48","493",45224,0.964664779762958,2546,0.138333628162038,7.84227877911735,8.65172408437384,9.49318576653644,5.30769230769231,333.75052148519,88,26367,0,0,0,0,9 +"11871",2013,48495,"TX","48","495",7631,0.942864631109946,500,0.106277027912462,6.21460809842219,6.81234509417748,7.61529833982581,5.31538461538462,495.63370309181,21,4237,0,0,0,0,9 +"11872",2013,48497,"TX","48","497",60991,0.966355691823384,3602,0.127608991490548,8.1892445257359,8.92439013236916,9.78267493231938,6.02307692307692,405.61095149569,144,35502,0,0,0,0,9 +"11873",2013,48499,"TX","48","499",42366,0.932280602369825,2326,0.150899306047302,7.75190533307861,8.31016902198191,9.30810208975868,7.33076923076923,578.326524991968,126,21787,0,0,0,0,9 +"11874",2013,48501,"TX","48","501",8218,0.96142613774641,554,0.101971282550499,6.31716468674728,6.80903930604298,7.68478394352278,3.89230769230769,274.914089347079,12,4365,0,0,0,0,9 +"11875",2013,48503,"TX","48","503",18353,0.962458453658802,1036,0.13943224540947,6.94312242281943,7.60787807327851,8.52158353971753,5.20769230769231,586.772749875684,59,10055,0,0,0,0,9 +"11876",2013,48505,"TX","48","505",14375,0.988313043478261,1106,0.0853565217391304,7.00850518208228,7.43838353004431,8.24249315318763,6.27692307692308,374.882849109653,28,7469,0,0,0,0,9 +"11877",2013,48507,"TX","48","507",12203,0.974760304843071,1120,0.102106039498484,7.02108396428914,7.23128700432762,8.06369263426952,14.5846153846154,398.650720637841,26,6522,0,0,0,0,9 +"11878",2013,49001,"UT","49","001",6454,0.958940192128912,354,0.119925627517818,5.86929691313377,6.64639051484773,7.36707705988101,4.29230769230769,331.425128050618,11,3319,0,0,0,0,9 +"11879",2013,49003,"UT","49","003",50730,0.965799329785137,3118,0.10240488862606,8.04494704961772,8.7224171414275,9.49122438992696,4.34615384615385,274.31234029761,73,26612,0,0,0,0,9 +"11880",2013,49005,"UT","49","005",117070,0.948167762876911,17293,0.0756726744682669,9.75805707432592,9.45360022687522,10.3918221384666,3.63076923076923,147.838809973785,97,65612,0,0,0,0,9 +"11881",2013,49007,"UT","49","007",20908,0.965037306294241,1399,0.133106944710159,7.24351297466548,7.75662333453886,8.66181288102618,5.80769230769231,644.219206321938,75,11642,0,0,0,0,9 +"11882",2013,49011,"UT","49","011",322368,0.942714537423069,21803,0.0905704040103236,9.98980285398805,10.6753765950366,11.3876229789751,3.90769230769231,212.785274124176,375,176234,0,0,0,0,9 +"11883",2013,49013,"UT","49","013",19959,0.930156821484042,1342,0.0963976151109775,7.20191631753163,7.74153358928183,8.5358186555394,3.92307692307692,411.792232101076,44,10685,0,0,0,0,9 +"11884",2013,49015,"UT","49","015",10761,0.977232599200818,533,0.127125731809311,6.27852142416584,7.08673793451058,7.93487156594518,5.56923076923077,659.418998396008,37,5611,0,0,0,0,9 +"11885",2013,49019,"UT","49","019",9361,0.927892319196667,467,0.156607200085461,6.1463292576689,7.0825485693553,7.93701748951545,7.31538461538462,301.953818827709,17,5630,0,0,0,0,9 +"11886",2013,49021,"UT","49","021",46560,0.949355670103093,5642,0.0978951890034364,8.63799389156194,8.52852870107998,9.46892828422359,5.10769230769231,300.55487053021,78,25952,0,0,0,0,9 +"11887",2013,49023,"UT","49","023",10269,0.973902035251728,597,0.0984516505988899,6.3919171133926,7.1800698743028,7.86249719723055,4.63076923076923,343.708229902616,18,5237,0,0,0,0,9 +"11888",2013,49025,"UT","49","025",7128,0.96871492704826,324,0.161195286195286,5.78074351579233,6.5206211275587,7.53743003658651,4.99230769230769,391.644908616188,15,3830,0,0,0,0,9 +"11889",2013,49027,"UT","49","027",12556,0.959143039184454,644,0.123446957629818,6.46769872610435,7.20191631753163,8.02780284837031,3.76153846153846,348.156353853458,22,6319,0,0,0,0,9 +"11890",2013,49035,"UT","49","035",1079661,0.902892667235364,80805,0.0991181491227339,11.2997941237827,11.9171564785636,12.6691051579044,4.03076923076923,274.312819189775,1765,643426,0,0,0,0,9 +"11891",2013,49037,"UT","49","037",15003,0.486835966140105,1084,0.103112710791175,6.98841318199959,7.44307837434852,8.26565016558033,7.35384615384615,357.827476038339,28,7825,0,0,0,0,9 +"11892",2013,49039,"UT","49","039",28130,0.95410593672236,3033,0.0982225382154284,8.01730750768858,8.08733292647335,8.84043543926657,5.16923076923077,320.15681149951,49,15305,0,0,0,0,9 +"11893",2013,49041,"UT","49","041",20758,0.971721745832932,1141,0.108680990461509,7.03966034986208,7.81762544305337,8.56978564153541,4.96923076923077,299.513290902284,32,10684,0,0,0,0,9 +"11894",2013,49043,"UT","49","043",38447,0.967799828335111,2029,0.139334668504695,7.61529833982581,8.60079877527103,9.3581567466704,3.84615384615385,219.039595619208,52,23740,0,0,0,0,9 +"11895",2013,49045,"UT","49","045",60655,0.958272195202374,3392,0.0906273184403594,8.12917499691179,9.09985563880091,9.69652488182572,5,339.981179613271,112,32943,0,0,0,0,9 +"11896",2013,49047,"UT","49","047",35696,0.89783168982519,2472,0.0935398924249216,7.81278281857758,8.38548870041881,9.16597042424024,4,342.991706767687,67,19534,0,0,0,0,9 +"11897",2013,49049,"UT","49","049",551689,0.952096199126682,70014,0.0642590299969729,11.1564505010342,11.0890570500601,11.9006542095881,3.88461538461538,172.432917544797,513,297507,0,0,0,0,9 +"11898",2013,49051,"UT","49","051",26578,0.969862292121303,1429,0.102377906539243,7.26473017792987,8.24407127029579,8.88114161932147,4.28461538461538,172.998408414643,25,14451,0,0,0,0,9 +"11899",2013,49053,"UT","49","053",147099,0.951039775933215,9509,0.10668325413497,9.15999399753944,9.66383344909493,10.5376805902524,5.09230769230769,318.163895196269,234,73547,0,0,0,0,9 +"11900",2013,49057,"UT","49","057",238083,0.943708706627521,17838,0.101615823053305,9.78908629222615,10.3119149354394,11.1196161746321,4.96153846153846,297.819405824674,407,136660,0,0,0,0,9 +"11901",2013,51001,"VA","51","001",32982,0.692044145291371,1798,0.159875083378813,7.49443021503157,8.14989054440242,9.16157020760675,7.05384615384615,552.990443466123,103,18626,0,0,0,0,9 +"11902",2013,51003,"VA","51","003",102329,0.84067077758993,6733,0.132865561082391,8.81477608854528,9.38075802426731,10.3345879182361,4.73846153846154,231.516432633751,138,59607,0,0,0,0,9 +"11903",2013,51005,"VA","51","005",15926,0.940223533844029,826,0.150508602285571,6.71659477352098,7.48885295573346,8.39457347786833,6.43076923076923,511.421752471872,45,8799,0,0,0,0,9 +"11904",2013,51007,"VA","51","007",12655,0.760173844330304,683,0.153220071118135,6.52649485957079,7.28550654852279,8.24485939591126,5.8,462.65697290152,35,7565,0,0,0,0,9 +"11905",2013,51009,"VA","51","009",32331,0.783798830843463,2327,0.146917818811667,7.75233516330229,8.2117543973752,9.19786285046507,5.97692307692308,466.027643912514,88,18883,0,0,0,0,9 +"11906",2013,51011,"VA","51","011",15315,0.786549134835129,838,0.143258243552073,6.73101810048208,7.48099216286952,8.42178300661158,6.29230769230769,410.630774495266,36,8767,0,0,0,0,9 +"11907",2013,51013,"VA","51","013",225120,0.788859275053305,14303,0.0978766879886283,9.5682245844549,10.5180784201903,11.309523264565,3.36153846153846,129.377158828771,212,163862,0,0,0,0,9 +"11908",2013,51015,"VA","51","015",73862,0.946711434837941,4197,0.147734965205383,8.34212526333359,9.10764297373784,9.96439448743965,5.08461538461538,405.591200733272,177,43640,0,0,0,0,9 +"11909",2013,51021,"VA","51","021",6674,0.955498951153731,338,0.151932873838777,5.82304589548302,6.91075078796194,7.46106551435428,6.61538461538462,506.024096385542,21,4150,0,0,0,0,9 +"11910",2013,51023,"VA","51","023",32995,0.954083952113957,1547,0.165570540991059,7.34407285057307,8.25816336153762,9.17139162183761,5.11538461538461,453.881469115192,87,19168,0,0,0,0,9 +"11911",2013,51025,"VA","51","025",16976,0.420888312912347,1170,0.147207822808671,7.0647590277918,7.63288550539513,8.43076346341785,9.17692307692308,507.61421319797,53,10441,0,0,0,0,9 +"11912",2013,51027,"VA","51","027",23638,0.963406379558338,1353,0.155300786868601,7.21007962817079,8.00770001288403,8.83971137870348,10.7538461538462,591.02467184386,86,14551,0,0,0,0,9 +"11913",2013,51029,"VA","51","029",17154,0.634837355718783,1106,0.141308149702693,7.00850518208228,7.7445698093545,8.41538192526955,7.73846153846154,333.117423891922,36,10807,0,0,0,0,9 +"11914",2013,51031,"VA","51","031",55093,0.835587098179442,3699,0.13905577841105,8.21581779183245,8.81150325015824,9.71757957220675,5.82307692307692,355.42864086518,117,32918,0,0,0,0,9 +"11915",2013,51033,"VA","51","033",29253,0.683143609202475,1635,0.130482343691245,7.39939808333135,8.2445967563825,9.08125621856465,6.90769230769231,466.147461770223,82,17591,0,0,0,0,9 +"11916",2013,51035,"VA","51","035",29915,0.984589670733746,1526,0.15249874644827,7.3304052118444,8.21716859576607,9.04805670891874,8.07692307692308,573.065902578797,98,17101,0,0,0,0,9 +"11917",2013,51036,"VA","51","036",7068,0.434917940011319,386,0.17911714770798,5.95583736946483,6.61204103483309,7.70526247486633,6.6,565.995019243831,25,4417,0,0,0,0,9 +"11918",2013,51037,"VA","51","037",12281,0.692858887712727,710,0.146812148847814,6.56526497003536,7.19218205871325,8.14699869738999,7.58461538461538,612.334159498469,42,6859,0,0,0,0,9 +"11919",2013,51041,"VA","51","041",327721,0.714678034059459,20169,0.131450227480082,9.91190205113715,10.7243460971634,11.5409880027351,5.52307692307692,297.160186641021,584,196527,0,0,0,0,9 +"11920",2013,51043,"VA","51","043",14264,0.926528323051038,727,0.157809871003926,6.58892647753352,7.31920245876785,8.33206770728955,4.62307692307692,297.548202808855,25,8402,0,0,0,0,9 +"11921",2013,51045,"VA","51","045",5138,0.991241728298949,290,0.159789801479175,5.66988092298052,6.4377516497364,7.3132203870903,6.89230769230769,460.374876685301,14,3041,0,0,0,0,9 +"11922",2013,51047,"VA","51","047",48609,0.80561212944105,2727,0.124647698985785,7.91095738284559,8.76966250811227,9.54509685181389,5.23076923076923,337.149680410199,96,28474,0,0,0,0,9 +"11923",2013,51049,"VA","51","049",9852,0.657226958993098,652,0.141189606171336,6.48004456192665,7.00215595440362,7.97968130238774,6.49230769230769,541.201117318436,31,5728,0,0,0,0,9 +"11924",2013,51051,"VA","51","051",15527,0.991176660011593,853,0.150962838925742,6.74875954749168,7.57814547241947,8.39321601159653,10.9076923076923,792.961112318053,73,9206,0,0,0,0,9 +"11925",2013,51053,"VA","51","053",28087,0.655427777975576,1736,0.142663865845409,7.4593388952203,8.15794350710504,9.07096335550754,7.18461538461538,512.971698113207,87,16960,0,0,0,0,9 +"11926",2013,51057,"VA","51","057",11158,0.577343609965944,674,0.145725040329808,6.51323011091231,7.10906213568717,8.13094230223188,6.5,465.116279069767,30,6450,0,0,0,0,9 +"11927",2013,51059,"VA","51","059",1132186,0.69105606322636,63368,0.123838309253073,11.0567142811441,12.0275259549552,12.785894340778,4.31538461538462,149.743992918622,1059,707207,0,0,0,0,9 +"11928",2013,51061,"VA","51","061",67150,0.890290394638868,3685,0.139091586001489,8.21202580462344,9.0231670644512,9.90777833395328,4.80769230769231,340.084643288996,135,39696,0,0,0,0,9 +"11929",2013,51063,"VA","51","063",15493,0.971535532175821,721,0.156845026786291,6.58063913728495,7.55171221535131,8.37976851550457,5.27692307692308,470.219435736677,42,8932,0,0,0,0,9 +"11930",2013,51065,"VA","51","065",25833,0.827391321178338,1270,0.135292068284752,7.14677217945264,8.1758290087146,9.05275045140141,4.66923076923077,341.386554621849,52,15232,0,0,0,0,9 +"11931",2013,51067,"VA","51","067",56272,0.903593261302246,3470,0.155814614728462,8.1519098729409,8.73085190351923,9.69603278610318,5.76153846153846,422.255340288127,136,32208,0,0,0,0,9 +"11932",2013,51069,"VA","51","069",81494,0.92938130414509,4876,0.125788401600118,8.49208049060116,9.26964647787359,10.0921638749681,5.16153846153846,315.955766192733,152,48108,0,0,0,0,9 +"11933",2013,51071,"VA","51","071",16992,0.974164312617702,921,0.143067325800377,6.82546003625531,7.68799716639302,8.4898219946201,6.83076923076923,596.8306235851,58,9718,0,0,0,0,9 +"11934",2013,51073,"VA","51","073",36780,0.892767808591626,2116,0.151549755301794,7.65728279297819,8.3790798892866,9.32518576364522,5.08461538461538,417.470934147327,93,22277,0,0,0,0,9 +"11935",2013,51075,"VA","51","075",21732,0.799420209828824,965,0.171452236333517,6.87212810133899,7.93164402145431,8.80477525886769,5.03076923076923,360.236069594543,47,13047,0,0,0,0,9 +"11936",2013,51077,"VA","51","077",15131,0.970458000132179,760,0.162976670411737,6.63331843328038,7.48885295573346,8.36287583103188,9.43846153846154,429.78278545708,37,8609,0,0,0,0,9 +"11937",2013,51079,"VA","51","079",18874,0.905796333580587,984,0.12975521881954,6.89162589705225,7.81520706218909,8.6459381473068,4.70769230769231,246.103363412633,27,10971,0,0,0,0,9 +"11938",2013,51081,"VA","51","081",11690,0.39153122326775,821,0.134131736526946,6.71052310945243,7.49886973397693,7.84384863815247,7.54615384615385,456.50519908699,36,7886,0,0,0,0,9 +"11939",2013,51083,"VA","51","083",35389,0.618271214219108,1890,0.154709090395321,7.54433210805369,8.27308133366583,9.20883924584992,8.94615384615385,587.724229570195,115,19567,0,0,0,0,9 +"11940",2013,51085,"VA","51","085",101075,0.880623299530052,6073,0.141182290378432,8.71160799589757,9.4664543749603,10.3201563311516,4.93846153846154,315.240538591814,188,59637,0,0,0,0,9 +"11941",2013,51087,"VA","51","087",318646,0.607357380918009,18858,0.123943184599838,9.84469250602562,10.6853550656556,11.536700583621,5.43846153846154,290.621144624025,563,193723,0,0,0,0,9 +"11942",2013,51089,"VA","51","089",52738,0.762163904584929,2715,0.147407941143009,7.90654723236804,8.69148257651293,9.62951112714046,8.88461538461539,589.575237840011,176,29852,0,0,0,0,9 +"11943",2013,51093,"VA","51","093",35542,0.735805525856733,1905,0.154859040009003,7.5522372875608,8.34188696951619,9.29394595583098,5.60769230769231,445.423855963991,95,21328,0,0,0,0,9 +"11944",2013,51095,"VA","51","095",70674,0.82263633019215,3754,0.13866485553386,8.23057721714645,8.97347814852104,9.90443710157172,5.20769230769231,289.605510331872,111,38328,0,0,0,0,9 +"11945",2013,51097,"VA","51","097",7029,0.696685161473894,391,0.169440887750747,5.96870755998537,6.68461172766793,7.6192334162268,5.96153846153846,334.688022950036,14,4183,0,0,0,0,9 +"11946",2013,51099,"VA","51","099",24909,0.79248464410454,1525,0.116102613513188,7.32974968904151,8.11492297420459,8.90761234131913,5.66153846153846,335.72819445377,50,14893,0,0,0,0,9 +"11947",2013,51101,"VA","51","101",16096,0.793861829025845,830,0.134940357852883,6.72142570079064,7.65775527113487,8.51899157335762,5.5,402.020410266983,39,9701,0,0,0,0,9 +"11948",2013,51103,"VA","51","103",10960,0.700729927007299,501,0.171259124087591,6.21660610108486,6.75460409948796,7.95752740223077,7.35384615384615,607.175712971481,33,5435,0,0,0,0,9 +"11949",2013,51105,"VA","51","105",25094,0.950147445604527,1412,0.146728301586037,7.25276241805319,8.14235427684983,8.84937050375457,8.55384615384615,583.568290603895,89,15251,0,0,0,0,9 +"11950",2013,51107,"VA","51","107",350001,0.736215039385602,15787,0.0916140239599315,9.66694209553173,11.0403745942578,11.5796771602302,4.26923076923077,138.69297257382,293,211258,0,0,0,0,9 +"11951",2013,51109,"VA","51","109",33850,0.809394387001477,1748,0.155509601181684,7.46622755621548,8.31409733540581,9.24590054737473,5.53076923076923,322.817314746882,66,20445,0,0,0,0,9 +"11952",2013,51111,"VA","51","111",12534,0.639221318014999,703,0.159486197542684,6.55535689181067,7.34342622914737,8.09132127353041,6.87692307692308,436.854646544877,33,7554,0,0,0,0,9 +"11953",2013,51113,"VA","51","113",13093,0.88551134193844,722,0.155044680363553,6.58202513889283,7.26052259808985,8.24905227417129,4.35384615384615,306.789382419635,23,7497,0,0,0,0,9 +"11954",2013,51115,"VA","51","115",8899,0.895156759186425,391,0.172266546803012,5.96870755998537,6.76849321164863,7.80302664363222,4.94615384615385,337.766518893815,16,4737,0,0,0,0,9 +"11955",2013,51117,"VA","51","117",31249,0.62626004032129,1642,0.159685109923518,7.40367029001237,8.11102783819368,9.07738024471995,9.09230769230769,554.761223906205,97,17485,0,0,0,0,9 +"11956",2013,51119,"VA","51","119",10781,0.802615712828123,525,0.173546053241814,6.26339826259162,6.83733281468559,7.9820748750812,5.4,632.694938440492,37,5848,0,0,0,0,9 +"11957",2013,51121,"VA","51","121",96658,0.889300420037659,20232,0.0954188996254837,9.9150207883498,9.2098402469345,10.2908565763749,5.52307692307692,243.126089668741,152,62519,0,0,0,0,9 +"11958",2013,51125,"VA","51","125",14799,0.856206500439219,676,0.182579904047571,6.51619307604296,7.30518821539304,8.36869318309779,5.39230769230769,572.450805008944,48,8385,0,0,0,0,9 +"11959",2013,51127,"VA","51","127",19516,0.837671654027465,1039,0.158280385324862,6.94601399109923,7.86365126544865,8.68676717538769,4.93076923076923,338.983050847458,41,12095,0,0,0,0,9 +"11960",2013,51131,"VA","51","131",12029,0.618339014049381,668,0.167013051791504,6.50428817353665,7.01929665371504,8.14844566624324,8.92307692307692,571.600481347774,38,6648,0,0,0,0,9 +"11961",2013,51133,"VA","51","133",12298,0.737436981623028,521,0.169621076597821,6.25575004175337,6.80239476332431,8.04846874366888,7.23846153846154,498.25610363727,30,6021,0,0,0,0,9 +"11962",2013,51135,"VA","51","135",15642,0.583812811660913,1027,0.132208157524613,6.93439720992856,7.52456122628536,8.29154650988391,5.87692307692308,495.676017717781,47,9482,0,0,0,0,9 +"11963",2013,51137,"VA","51","137",34607,0.846562834108706,1753,0.134857109833271,7.46908388492123,8.34069464792507,9.19755903761145,5.77692307692308,378.458548560323,74,19553,0,0,0,0,9 +"11964",2013,51139,"VA","51","139",23724,0.968470746922947,1332,0.142008093070309,7.19443685110033,7.9728107841214,8.84231554684186,9.01538461538462,410.929276908658,57,13871,0,0,0,0,9 +"11965",2013,51141,"VA","51","141",18256,0.92862620508326,808,0.154360210341805,6.6945620585211,7.71957398925958,8.526351129201,8.10769230769231,611.531741409435,63,10302,0,0,0,0,9 +"11966",2013,51143,"VA","51","143",62566,0.770594252469392,3326,0.155531758463063,8.10952565975287,8.92078988846438,9.81049468568696,6.87692307692308,497.934393039862,182,36551,0,0,0,0,9 +"11967",2013,51145,"VA","51","145",28315,0.856118665018541,1581,0.148507858025781,7.36581283720947,8.29379960884682,8.99218436217301,4.95384615384615,350.322070290428,62,17698,0,0,0,0,9 +"11968",2013,51147,"VA","51","147",22733,0.645141424361061,4121,0.11300752210443,8.32385113133882,7.5847730776122,8.77909581088053,8.2,319.702602230483,43,13450,0,0,0,0,9 +"11969",2013,51149,"VA","51","149",37376,0.629173801369863,2651,0.120745933219178,7.88269220628903,8.64927353177345,9.22305914438396,6.83846153846154,266.311584553928,64,24032,0,0,0,0,9 +"11970",2013,51153,"VA","51","153",437900,0.668485955697648,27602,0.10082210550354,10.225643512848,11.13080083622,11.8150650225109,5.09230769230769,194.836824159766,524,268943,0,0,0,0,9 +"11971",2013,51155,"VA","51","155",34551,0.934328962982258,1960,0.15267286040925,7.58069975222456,8.426611813185,9.21979553074694,7.39230769230769,538.338425723847,111,20619,0,0,0,0,9 +"11972",2013,51159,"VA","51","159",8948,0.675011175681717,528,0.132320071524363,6.26909628370626,7.08422642209792,7.64300363556072,6.03846153846154,430.416068866571,24,5576,0,0,0,0,9 +"11973",2013,51161,"VA","51","161",93354,0.90526383443666,5317,0.144739379137477,8.57866451350434,9.38756563134539,10.233150947228,4.89230769230769,302.754508813314,163,53839,0,0,0,0,9 +"11974",2013,51163,"VA","51","163",22337,0.955365537001388,1187,0.163047857814389,7.07918439460967,7.79358680337158,8.75966867102994,5.66923076923077,369.729389553178,47,12712,0,0,0,0,9 +"11975",2013,51165,"VA","51","165",77437,0.963015096142671,4979,0.135529527228586,8.51298434664218,9.12739345115526,10.0143578613676,4.96923076923077,318.370664739884,141,44288,0,0,0,0,9 +"11976",2013,51167,"VA","51","167",28337,0.984260860359248,1650,0.156191551681547,7.40853056689463,8.19284713459287,9.05146186690869,8.26923076923077,545.038973216902,93,17063,0,0,0,0,9 +"11977",2013,51169,"VA","51","169",22769,0.987043787605955,1220,0.147788660020203,7.1066061377273,7.93630269320196,8.7621765093349,6.82307692307692,447.478194918468,59,13185,0,0,0,0,9 +"11978",2013,51171,"VA","51","171",42514,0.960342475419862,2232,0.140400809145223,7.7106533235012,8.50329708622413,9.39872683333239,5.47692307692308,422.640258556393,102,24134,0,0,0,0,9 +"11979",2013,51173,"VA","51","173",31789,0.969266098335902,1909,0.14542766365724,7.55433482372575,8.30647216010058,9.14248970506801,8.86153846153846,638.251839030723,118,18488,0,0,0,0,9 +"11980",2013,51175,"VA","51","175",18330,0.61974904528096,1000,0.155919258046918,6.90775527898214,7.66434663209862,8.5422759717837,5.44615384615385,434.428455063807,48,11049,0,0,0,0,9 +"11981",2013,51177,"VA","51","177",127449,0.795879135968113,8011,0.11746659448093,8.98857087621512,9.75661035667537,10.5669226691105,5.66923076923077,299.842188321936,228,76040,0,0,0,0,9 +"11982",2013,51179,"VA","51","179",136034,0.765433641589603,9617,0.106091124277754,9.17128764471248,9.85786237450985,10.6255865550458,5.54615384615385,247.872822175084,208,83914,0,0,0,0,9 +"11983",2013,51181,"VA","51","181",6792,0.534157832744405,384,0.166077738515901,5.95064255258773,6.51025834052315,7.6226639513236,7.13076923076923,440.313111545988,18,4088,0,0,0,0,9 +"11984",2013,51183,"VA","51","183",11765,0.399320016999575,987,0.134466638334042,6.89467003943348,7.31721240835984,7.90581031265893,9.06923076923077,522.959183673469,41,7840,0,0,0,0,9 +"11985",2013,51185,"VA","51","185",44031,0.954168653902932,2584,0.157003020599123,7.85709386490249,8.62461158818351,9.45946351224934,8.43076923076923,650.363214543795,171,26293,0,0,0,0,9 +"11986",2013,51187,"VA","51","187",38514,0.928467570234201,2465,0.135119696733655,7.80994708647679,8.48052920704465,9.34966743719728,5.99230769230769,350.727117194183,82,23380,0,0,0,0,9 +"11987",2013,51191,"VA","51","191",54800,0.97720802919708,3204,0.151277372262774,8.07215530818825,8.81789020094551,9.68725754749099,6.21538461538462,452.544789535677,146,32262,0,0,0,0,9 +"11988",2013,51193,"VA","51","193",17553,0.699196718509656,1007,0.164017546858087,6.91473089271856,7.43720636687129,8.52615293278771,6.71538461538462,555.163016049258,55,9907,0,0,0,0,9 +"11989",2013,51195,"VA","51","195",40685,0.937790340420302,3169,0.14005161607472,8.06117135969092,8.57810012631976,9.3615151997733,10.1076923076923,642.073778664008,161,25075,0,0,0,0,9 +"11990",2013,51197,"VA","51","197",29285,0.9577257981902,1558,0.148574355472085,7.35115822643069,8.2445967563825,9.07852179735533,7.60769230769231,465.7119571545,80,17178,0,0,0,0,9 +"11991",2013,51199,"VA","51","199",66046,0.791402961572238,4412,0.125639705659692,8.39208338037339,9.00589589809446,9.88877992366385,5.23846153846154,194.836824159766,76,39007,0,0,0,0,9 +"11992",2013,51510,"VA","51","510",149767,0.683775464554942,7247,0.107440223814325,8.88834286910928,10.21042062958,10.9110621878129,3.95384615384615,174.383530653797,185,106088,0,0,0,0,9 +"11993",2013,51520,"VA","51","520",17411,0.921773591407731,1101,0.132100396301189,7.00397413672268,7.66949525100769,8.55602921520144,6.81538461538462,818.0563768973,83,10146,0,0,0,0,9 +"11994",2013,51530,"VA","51","530",6661,0.92178351598859,651,0.120852724816094,6.47850964220857,6.49677499018586,7.58120982619635,6.63076923076923,421.718502899315,16,3794,0,0,0,0,9 +"11995",2013,51540,"VA","51","540",45052,0.715772884666607,8609,0.101527124212022,9.06056344665796,8.52516136106541,9.72208557280156,4.57692307692308,225.570976534353,72,31919,0,0,0,0,9 +"11996",2013,51550,"VA","51","550",230415,0.646611548727296,15606,0.121936505869844,9.65541073467671,10.3210129751367,11.1854625225066,5.77692307692308,310.699675853186,439,141294,0,0,0,0,9 +"11997",2013,51570,"VA","51","570",17492,0.823119140178367,1154,0.120912417104962,7.05098944706805,7.59689443814454,8.5336569174469,6.33076923076923,372.786579683131,36,9657,0,0,0,0,9 +"11998",2013,51580,"VA","51","580",5832,0.854766803840878,361,0.131515775034294,5.88887795833288,6.52209279817015,7.39878627541995,8.18461538461538,598.802395209581,20,3340,0,0,0,0,9 +"11999",2013,51590,"VA","51","590",42648,0.480444569499156,3107,0.143523729131495,8.04141290939305,8.37470754311948,9.46451736587056,9.57692307692308,680.046442196052,164,24116,0,0,0,0,9 +"12000",2013,51600,"VA","51","600",23241,0.763994664601351,1672,0.129125252786025,7.42177579364465,8.04044688130311,8.88599431515281,4.06923076923077,261.780104712042,38,14516,0,0,0,0,9 +"12001",2013,51620,"VA","51","620",8545,0.403627852545348,545,0.136805149210064,6.30078579466324,6.77878489768518,7.89207842124812,9.08461538461538,546.907867059319,26,4754,0,0,0,0,9 +"12002",2013,51630,"VA","51","630",27835,0.702532782468116,4247,0.090677204957787,8.35396813031327,8.08579470128157,9.16450583563238,6.32307692307692,263.526773198766,47,17835,0,0,0,0,9 +"12003",2013,51640,"VA","51","640",6927,0.910639526490544,400,0.13526779269525,5.99146454710798,6.65929391968364,7.56579328242851,8.40769230769231,602.409638554217,23,3818,0,0,0,0,9 +"12004",2013,51650,"VA","51","650",137406,0.447091102280832,12548,0.124303159978458,9.43731656931057,9.62964263687237,10.6828353648539,7.32307692307692,428.471389742799,361,84253,0,0,0,0,9 +"12005",2013,51660,"VA","51","660",51572,0.859206546187854,12497,0.0714728922671217,9.43324389448578,8.49002752334347,9.7238823032364,6.6,138.998005680788,46,33094,0,0,0,0,9 +"12006",2013,51670,"VA","51","670",22161,0.571364108117865,1475,0.116195117548847,7.29641326877392,7.83873755959928,8.82600054548297,9.53846153846154,557.650015708451,71,12732,0,0,0,0,9 +"12007",2013,51680,"VA","51","680",78015,0.664795231686214,13694,0.10053194898417,9.52471305968101,8.84692850009902,10.0953880841104,6.92307692307692,359.782396670929,166,46139,0,0,0,0,9 +"12008",2013,51683,"VA","51","683",41079,0.75904963606709,2854,0.104822415346041,7.95647679803678,8.68761084370737,9.45203086057697,5.24615384615385,222.469410456062,58,26071,0,0,0,0,9 +"12009",2013,51690,"VA","51","690",13443,0.515807483448635,735,0.135312058320315,6.59987049921284,7.33171496972647,8.3170334764924,10.9846153846154,660.851176315094,50,7566,0,0,0,0,9 +"12010",2013,51700,"VA","51","700",181388,0.520795201446623,17276,0.108055659690829,9.75707353408059,9.95513078568797,10.9540643921657,6.62307692307692,349.940635070836,392,112019,0,0,0,0,9 +"12011",2013,51710,"VA","51","710",245598,0.502267933777962,36794,0.100819224912255,10.5130900673857,10.2211045700711,11.2220783891753,6.79230769230769,401.729583857217,655,163045,0,0,0,0,9 +"12012",2013,51730,"VA","51","730",32311,0.187583176008171,2820,0.139519049240197,7.94449216393216,8.10288913464087,9.27096499379262,11.4230769230769,646.811070998797,129,19944,0,0,0,0,9 +"12013",2013,51735,"VA","51","735",12093,0.956834532374101,711,0.138840651616638,6.56667242980324,7.29233717617388,8.16791936295782,4.85384615384615,158.34173024327,11,6947,0,0,0,0,9 +"12014",2013,51740,"VA","51","740",96123,0.424435358863123,7777,0.120377016947037,8.95892593869494,9.3101857069459,10.3089526606443,7.94615384615385,501.755287267746,293,58395,0,0,0,0,9 +"12015",2013,51750,"VA","51","750",17124,0.875204391497314,4969,0.0783111422564821,8.51097389160232,7.28138566357028,8.64082575186151,7.36923076923077,241.957164620486,27,11159,0,0,0,0,9 +"12016",2013,51760,"VA","51","760",214020,0.445682646481637,22266,0.120502756751705,10.0108161302887,10.1127349986582,11.2086938681405,6.63076923076923,420.526186031768,597,141965,0,0,0,0,9 +"12017",2013,51770,"VA","51","770",98884,0.665405930180818,6554,0.133095344039481,8.78783082925876,9.43108103867408,10.3519482911054,6.50769230769231,498.695465504145,302,60558,0,0,0,0,9 +"12018",2013,51775,"VA","51","775",25330,0.898105013817608,2280,0.139202526648243,7.73193072194849,7.92948652331429,8.95014375645926,5.68461538461538,485.993925075937,72,14815,0,0,0,0,9 +"12019",2013,51790,"VA","51","790",24100,0.853112033195021,1817,0.13701244813278,7.50494206839617,7.90581031265893,8.94741595065013,5.67692307692308,432.103138060494,61,14117,0,0,0,0,9 +"12020",2013,51800,"VA","51","800",85832,0.534742287258831,5150,0.121772765402181,8.54675199365778,9.35478697634121,10.1920442423986,6.18461538461538,369.88008098427,190,51368,0,0,0,0,9 +"12021",2013,51810,"VA","51","810",447922,0.7079781747715,35686,0.113825621425159,10.4825137339914,10.9712797438644,11.8620812104571,5.28461538461538,274.574605232231,771,280798,0,0,0,0,9 +"12022",2013,51820,"VA","51","820",21164,0.855131355131355,1300,0.123417123417123,7.17011954344963,7.81480342948936,8.75762641126741,5.91538461538462,387.628865979381,47,12125,0,0,0,0,9 +"12023",2013,51840,"VA","51","840",27328,0.836102166276347,2138,0.120169789227166,7.66762609158499,8.08978917578932,9.00736702745136,5.66923076923077,397.145516599441,64,16115,0,0,0,0,9 +"12024",2013,50001,"VT","50","001",36949,0.96627784243146,3274,0.156567160139652,8.09376775793108,8.34711636103872,9.31262616551693,4.14615384615385,279.140966187925,62,22211,1,0,0,0,9 +"12025",2013,50003,"VT","50","003",36570,0.975553732567678,2300,0.157560842220399,7.74066440191724,8.24170315972982,9.28135785921146,5.20769230769231,359.488088961319,75,20863,1,0,0,0,9 +"12026",2013,50005,"VT","50","005",31055,0.975591692159073,2013,0.159974239252938,7.60738142563979,8.18423477409482,9.12063445889169,5.30769230769231,338.11419534275,62,18337,1,0,0,0,9 +"12027",2013,50007,"VT","50","007",159578,0.932741355324669,17302,0.127686773866072,9.75857738074032,9.85114107216392,10.8391886779301,3.43076923076923,233.850910135852,236,100919,1,0,0,0,9 +"12028",2013,50011,"VT","50","011",48416,0.971104593522802,2698,0.140697290152016,7.9002660367677,8.77338459677665,9.60763889075129,4.18461538461538,305.768838757899,90,29434,1,0,0,0,9 +"12029",2013,50013,"VT","50","013",6990,0.972246065808298,346,0.190271816881259,5.84643877505772,6.67456139181443,7.68386398025643,4.49230769230769,276.752767527675,12,4336,1,0,0,0,9 +"12030",2013,50015,"VT","50","015",25127,0.976638675528316,1641,0.140167946830103,7.40306109109009,8.10046489102936,8.93379604393486,5.68461538461538,269.63040904906,41,15206,1,0,0,0,9 +"12031",2013,50017,"VT","50","017",28858,0.981668861320951,1601,0.170593942754176,7.37838371299671,8.0861025356691,9.07348918922699,4.11538461538461,303.759743237047,53,17448,1,0,0,0,9 +"12032",2013,50019,"VT","50","019",27141,0.978224825909141,1452,0.159205629858885,7.28069719538474,8.07090608878782,8.9455932708069,6.81538461538462,389.229198570699,61,15672,1,0,0,0,9 +"12033",2013,50021,"VT","50","021",60512,0.979987440507668,3882,0.163455182443152,8.26410576372896,8.78569244445124,9.80139945445234,5.31538461538462,356.127322419457,129,36223,1,0,0,0,9 +"12034",2013,50023,"VT","50","023",59253,0.973216545997671,3619,0.157966685231128,8.19395302356374,8.90652891759452,9.80239569097485,4.30769230769231,347.106520048873,125,36012,1,0,0,0,9 +"12035",2013,50025,"VT","50","025",43928,0.968858131487889,2536,0.172828264432708,7.83834331555712,8.45148064805086,9.50554408582681,4.69230769230769,435.622561460661,115,26399,1,0,0,0,9 +"12036",2013,50027,"VT","50","027",56034,0.97654995181497,2628,0.169450690652104,7.8739783796045,8.71243097347674,9.73317361486645,4.19230769230769,313.924356304144,104,33129,1,0,0,0,9 +"12037",2013,53001,"WA","53","001",19080,0.915251572327044,1329,0.0959643605870021,7.19218205871325,7.7376162828579,8.4767877767812,8.30769230769231,335.297703718756,33,9842,1,0,0,0,9 +"12038",2013,53003,"WA","53","003",22167,0.958812649433843,1266,0.150719538052059,7.14361760270412,7.77863014732581,8.76748487464946,6.46923076923077,327.084164339848,41,12535,1,0,0,0,9 +"12039",2013,53005,"WA","53","005",184362,0.927653204022521,11975,0.126267886006878,9.39057642227912,10.0152972275881,10.8801205134164,8.70769230769231,296.482553502904,316,106583,1,0,0,0,9 +"12040",2013,53007,"WA","53","007",73723,0.952647070792019,4657,0.139495137202773,8.44612674298238,9.00134624376639,9.93730910101164,7.2,307.788491595931,128,41587,1,0,0,0,9 +"12041",2013,53009,"WA","53","009",72091,0.900583984131168,3894,0.169716053321496,8.26719218593215,8.8309815109525,9.87945097470789,9.40769230769231,422.585408074945,166,39282,1,0,0,0,9 +"12042",2013,53011,"WA","53","011",441591,0.898188595329162,26582,0.127898892866929,10.1879895739813,11.0073858456335,11.7907087052428,8.29230769230769,314.325750208657,821,261194,1,0,0,0,9 +"12043",2013,53015,"WA","53","015",101497,0.939791323881494,6061,0.144772751903997,8.70963008195129,9.39905809627538,10.2770491116313,9.60769230769231,468.747307287987,272,58027,1,0,0,0,9 +"12044",2013,53017,"WA","53","017",39379,0.951496990781889,2338,0.128850402498794,7.75705114203201,8.46019946989612,9.28757915231698,8.18461538461538,278.66605756053,61,21890,1,0,0,0,9 +"12045",2013,53019,"WA","53","019",7598,0.788496972887602,433,0.195841010792314,6.07073772800249,6.58340922215876,7.67368812926773,13.2153846153846,643.67816091954,28,4350,1,0,0,0,9 +"12046",2013,53021,"WA","53","021",86441,0.920292453812427,6033,0.08787496674032,8.70499967844076,9.34783888516182,10.0276943559903,9.26923076923077,221.138345802505,107,48386,1,0,0,0,9 +"12047",2013,53025,"WA","53","025",91698,0.940478527339746,6587,0.107177910096185,8.79285328864069,9.28591155882326,10.0967902618393,8.53846153846154,345.035105315948,172,49850,1,0,0,0,9 +"12048",2013,53027,"WA","53","027",71059,0.900322267411588,4236,0.156363022277263,8.3513747067213,9.00393101965314,9.88557813199256,11.6461538461538,477.447216890595,199,41680,1,0,0,0,9 +"12049",2013,53029,"WA","53","029",78266,0.890194976107122,5390,0.156172539800169,8.59230066390304,8.97802993283716,10.0217149339008,7.27692307692308,295.35864978903,133,45030,1,0,0,0,9 +"12050",2013,53031,"WA","53","031",30021,0.934479197894807,1164,0.210885713334,7.05961762829138,7.86480400332846,9.02437217426203,9.17692307692308,355.566454144188,58,16312,1,0,0,0,9 +"12051",2013,53033,"WA","53","033",2047967,0.7298769950883,134323,0.122651390378849,11.8080026262251,12.6371502681924,13.3950236859981,4.41538461538462,222.169828430484,2940,1323312,1,0,0,0,9 +"12052",2013,53035,"WA","53","035",252538,0.865838012497129,20208,0.144227799380687,9.91383384459027,10.2682348273657,11.2181784947963,7.05384615384615,271.362549389918,421,155143,1,0,0,0,9 +"12053",2013,53037,"WA","53","037",41845,0.940399091886725,7481,0.121782769745489,8.9201217518724,8.3059782109673,9.45837163879817,7.60769230769231,264.135053401217,69,26123,1,0,0,0,9 +"12054",2013,53039,"WA","53","039",20873,0.946581708427155,945,0.172567431610214,6.85118492749374,7.79893331004122,8.6769282495374,9.23846153846154,321.65227695954,38,11814,1,0,0,0,9 +"12055",2013,53041,"WA","53","041",74994,0.949222604475025,4503,0.146211696935755,8.41249912030157,9.045347797304,9.96345313370356,10.3615384615385,416.941486855743,177,42452,1,0,0,0,9 +"12056",2013,53043,"WA","53","043",10295,0.963088878096163,422,0.173870811073337,6.04500531403601,6.94697599213542,7.90211754627645,6.71538461538462,382.235165635238,21,5494,1,0,0,0,9 +"12057",2013,53045,"WA","53","045",60480,0.908300264550265,3381,0.163806216931217,8.12592680270789,8.82291162635412,9.71202433782489,9.79230769230769,431.564205893281,151,34989,1,0,0,0,9 +"12058",2013,53047,"WA","53","047",41044,0.838490400545756,2117,0.159292466621187,7.65775527113487,8.41205487329293,9.33344256911017,8.56923076923077,396.70295764094,90,22687,1,0,0,0,9 +"12059",2013,53049,"WA","53","049",20460,0.923704789833822,897,0.184848484848485,6.7990558620588,7.52671756135271,8.61050136854989,11.0538461538462,455.954769286887,50,10966,1,0,0,0,9 +"12060",2013,53051,"WA","53","051",12890,0.931730023273856,588,0.188207913110939,6.37672694789863,7.1420365747068,8.16194579946869,11.6692307692308,465.050732807215,33,7096,1,0,0,0,9 +"12061",2013,53053,"WA","53","053",821307,0.795702459616197,63267,0.121264034033559,11.0551191451799,11.5726367286256,12.431437727417,8.15384615384615,334.9555455304,1678,500962,1,0,0,0,9 +"12062",2013,53055,"WA","53","055",15867,0.962500787798576,548,0.215541690300624,6.30627528694802,7.29776828253138,8.44526745184465,5.90769230769231,359.227660529861,32,8908,1,0,0,0,9 +"12063",2013,53057,"WA","53","057",118270,0.927707787266424,7147,0.144482962712438,8.87444796721998,9.513108081846,10.4306982055514,8.4,337.417865388031,228,67572,1,0,0,0,9 +"12064",2013,53059,"WA","53","059",11316,0.952014846235419,517,0.178331565924355,6.24804287450843,7.22766249872865,8.11701408773731,9.75384615384615,294.290759270159,20,6796,1,0,0,0,9 +"12065",2013,53061,"WA","53","061",744322,0.82873138238558,48233,0.12915915423701,10.7837987130776,11.5555346614931,12.3462475461046,5.03846153846154,262.435754572307,1227,467543,1,0,0,0,9 +"12066",2013,53063,"WA","53","063",478553,0.920882326513469,37730,0.132142103382488,10.5382108129584,10.9577995823077,11.8829084626327,7.99230769230769,365.012749497459,1055,289031,1,0,0,0,9 +"12067",2013,53065,"WA","53","065",43287,0.915309446254072,2005,0.176727423937903,7.60339933974067,8.43185314424922,9.39996850395258,10.5615384615385,417.205557178022,100,23969,1,0,0,0,9 +"12068",2013,53067,"WA","53","067",261976,0.861674351849024,17647,0.137676733746603,9.77832107624323,10.4319369610557,11.3105032364693,7.43076923076923,307.219662058372,490,159495,1,0,0,0,9 +"12069",2013,53071,"WA","53","071",59387,0.937360028289019,5543,0.126778587906444,8.6202911494198,8.80086724247048,9.69504786758711,6.96923076923077,334.331482396721,115,34397,1,0,0,0,9 +"12070",2013,53073,"WA","53","073",206139,0.896351490984239,22998,0.130775835722498,10.0431625346086,10.0874743886491,11.052254153865,7.27692307692308,287.244594326522,362,126025,1,0,0,0,9 +"12071",2013,53075,"WA","53","075",46831,0.87437808289381,12343,0.0842817791633747,9.42084437974393,8.24748200428569,9.58079987088553,5.93076923076923,169.305846031272,51,30123,1,0,0,0,9 +"12072",2013,53077,"WA","53","077",246395,0.894003530915806,17881,0.107526532600093,9.7914939755752,10.2918065018093,11.1146395248551,9.83076923076923,356.661881576416,482,135142,1,0,0,0,9 +"12073",2013,55001,"WI","55","001",20407,0.947174988974372,837,0.179007203410594,6.72982407048948,7.6434829070772,8.53149049611706,10.8307692307692,575.403641360357,67,11644,0,0,0,0,9 +"12074",2013,55003,"WI","55","003",15968,0.862788076152305,1089,0.14936122244489,6.99301512293296,7.41457288135059,8.42551640284433,9.09230769230769,403.006208474022,37,9181,0,0,0,0,9 +"12075",2013,55005,"WI","55","005",45585,0.970516617308325,2372,0.147153668970056,7.77148876011762,8.52218073292728,9.44762348684411,7.44615384615385,313.152400835073,81,25866,0,0,0,0,9 +"12076",2013,55007,"WI","55","007",15115,0.876083360899768,609,0.196692027786967,6.4118182677099,7.29709100516042,8.34283980427146,10.9307692307692,349.772647778944,30,8577,0,0,0,0,9 +"12077",2013,55009,"WI","55","009",254249,0.902036979496478,17484,0.123662236626299,9.7690414559832,10.3658054722371,11.2398429648862,6.15384615384615,290.289963795297,445,153295,0,0,0,0,9 +"12078",2013,55011,"WI","55","011",13367,0.986159946136007,664,0.154559736664921,6.49828214947643,7.27862894232068,8.21093973337902,6.50769230769231,314.34184675835,24,7635,0,0,0,0,9 +"12079",2013,55013,"WI","55","013",15266,0.930433643390541,638,0.178042709288615,6.45833828334479,7.26612877955645,8.31262602567496,8.41538461538462,567.358763882183,47,8284,0,0,0,0,9 +"12080",2013,55015,"WI","55","015",49649,0.961590364357792,2518,0.128562508811859,7.83122021460429,8.83083536553755,9.58555243691333,5.22307692307692,249.044759825328,73,29312,0,0,0,0,9 +"12081",2013,55017,"WI","55","017",63102,0.960254825520586,3379,0.137570916928148,8.12533508671429,8.96380024285558,9.76634966431749,6.69230769230769,315.053131841726,118,37454,0,0,0,0,9 +"12082",2013,55019,"WI","55","019",34529,0.980219525616149,1779,0.126473399171711,7.48380668766583,8.21635833238616,9.06658546833104,7.01538461538462,387.768668291602,70,18052,0,0,0,0,9 +"12083",2013,55021,"WI","55","021",56577,0.967760750835145,2849,0.14272584265691,7.95472333449791,8.89096121278115,9.68620181070608,6.48461538461538,345.063509533867,116,33617,0,0,0,0,9 +"12084",2013,55023,"WI","55","023",16384,0.96978759765625,818,0.15655517578125,6.70686233660275,7.42833319419081,8.37839078853578,8.12307692307692,334.737069430947,31,9261,0,0,0,0,9 +"12085",2013,55025,"WI","55","025",510026,0.873698595757863,52801,0.119303721771047,10.8742854089089,11.0896069286425,12.0029829154505,4.65384615384615,235.372617196587,769,326716,0,0,0,0,9 +"12086",2013,55027,"WI","55","027",87953,0.954873625686446,4998,0.135924868964106,8.5167931113949,9.33255800470043,10.0848920222676,6.82307692307692,293.505721503938,158,53832,0,0,0,0,9 +"12087",2013,55029,"WI","55","029",27614,0.977728688346491,1202,0.185014847541102,7.09174211509515,7.90838715929004,8.94988428577799,9.94615384615385,335.635448266959,52,15493,0,0,0,0,9 +"12088",2013,55031,"WI","55","031",43792,0.948803434417245,2937,0.149319510412861,7.98514393119862,8.55371796609861,9.49145089904492,6.56153846153846,408.882886938255,109,26658,0,0,0,0,9 +"12089",2013,55033,"WI","55","033",44064,0.95547385620915,5892,0.120620007262164,8.68135077758252,8.47407690034261,9.46141032593123,6.32307692307692,301.88679245283,80,26500,0,0,0,0,9 +"12090",2013,55035,"WI","55","035",101775,0.938757062146893,13047,0.118300171947924,9.47631350126575,9.29990681533523,10.3519163600764,5.60769230769231,261.87683755603,163,62243,0,0,0,0,9 +"12091",2013,55039,"WI","55","039",101808,0.95953166745246,6357,0.140136335062078,8.75731184693641,9.40467284143627,10.3149015972467,6.11538461538462,268.309649209977,162,60378,0,0,0,0,9 +"12092",2013,55041,"WI","55","041",9097,0.827085852478839,536,0.149499835110476,6.2841341610708,6.83947643822884,7.80506704425849,10.8846153846154,360.721442885772,18,4990,0,0,0,0,9 +"12093",2013,55043,"WI","55","043",51011,0.974182039168023,6060,0.126933406520162,8.70946507906336,8.52931937121408,9.52347086888155,5.84615384615385,278.513687928809,82,29442,0,0,0,0,9 +"12094",2013,55045,"WI","55","045",36933,0.981696585709257,1862,0.145831641079793,7.52940645783701,8.45361420977337,9.2758471741783,5.69230769230769,329.14561216448,71,21571,0,0,0,0,9 +"12095",2013,55047,"WI","55","047",18885,0.98051363516018,828,0.155043685464654,6.71901315438526,7.57044325205737,8.52892411429194,7.9,337.5446041084,35,10369,0,0,0,0,9 +"12096",2013,55049,"WI","55","049",23565,0.982643751326119,1126,0.1517080415871,7.02642680869964,7.92696354486298,8.82981174915805,6.43076923076923,318.748188930745,44,13804,0,0,0,0,9 +"12097",2013,55053,"WI","55","053",20561,0.899372598609017,1148,0.139438743251787,7.04577657687951,7.79975331828725,8.58016799057763,7.02307692307692,291.060291060291,35,12025,0,0,0,0,9 +"12098",2013,55055,"WI","55","055",84613,0.973396522992921,5307,0.133348303452188,8.57678198282789,9.28368376620039,10.1189617695454,6.20769230769231,262.010480419217,131,49998,0,0,0,0,9 +"12099",2013,55057,"WI","55","057",26571,0.950058334274209,1314,0.144593730006398,7.18083119904456,8.05261481881557,8.84822206837138,8.07692307692308,408.815075055893,64,15655,0,0,0,0,9 +"12100",2013,55059,"WI","55","059",167380,0.892227267295973,11653,0.122153184370893,9.36331893657326,9.99232226623662,10.8307577884533,7.60769230769231,360.66480899587,365,101202,0,0,0,0,9 +"12101",2013,55061,"WI","55","061",20374,0.982673996269756,980,0.145774025719054,6.88755257166462,7.81116338502528,8.64523454129712,6.33076923076923,315.484311050478,37,11728,0,0,0,0,9 +"12102",2013,55063,"WI","55","063",116938,0.930082607877679,13799,0.124587388188613,9.53235140475156,9.45712232185579,10.483242045741,5.27692307692308,265.266960153516,188,70872,0,0,0,0,9 +"12103",2013,55065,"WI","55","065",16662,0.983795462729564,949,0.145660785019806,6.85540879860993,7.48211892355212,8.426611813185,5.34615384615385,316.222198798356,30,9487,0,0,0,0,9 +"12104",2013,55067,"WI","55","067",19415,0.971980427504507,937,0.160803502446562,6.84268328223842,7.61332497954064,8.58260632996447,8.99230769230769,457.749702462693,50,10923,0,0,0,0,9 +"12105",2013,55069,"WI","55","069",28301,0.978304653545811,1349,0.154941521501007,7.20711885620776,8.08641027532378,8.98544528762317,8.25384615384615,401.606425702811,67,16683,0,0,0,0,9 +"12106",2013,55071,"WI","55","071",80487,0.954539242362121,4330,0.152099096748543,8.37332282099653,9.12706745278236,10.0410296415546,7.3,348.765497735151,164,47023,0,0,0,0,9 +"12107",2013,55073,"WI","55","073",134912,0.924409985768501,7725,0.13562915085389,8.95221710176595,9.71135805475109,10.5672316687268,6.66153846153846,321.385359951603,255,79344,0,0,0,0,9 +"12108",2013,55075,"WI","55","075",41306,0.980051324262819,2205,0.160412530867186,7.69848278788095,8.34924780056679,9.35426754078282,7.87692307692308,371.057513914657,88,23716,0,0,0,0,9 +"12109",2013,55077,"WI","55","077",15174,0.977725056016871,623,0.167062079873468,6.43454651878745,7.33693691370762,8.32360844234357,8.36153846153846,528.789659224442,45,8510,0,0,0,0,9 +"12110",2013,55079,"WI","55","079",957557,0.662285378311683,73873,0.115951321957857,11.2101026815839,11.6909963337099,12.6061298237765,8.33076923076923,396.579758224288,2300,579959,0,0,0,0,9 +"12111",2013,55081,"WI","55","081",45123,0.957671254127607,2275,0.136072512909159,7.72973533138505,8.55910259449345,9.43604065207208,6.82307692307692,418.005186360646,108,25837,0,0,0,0,9 +"12112",2013,55083,"WI","55","083",37364,0.975109731292153,1774,0.158146879349106,7.48099216286952,8.39683183474505,9.27387839278017,7.65384615384615,353.629233349957,78,22057,0,0,0,0,9 +"12113",2013,55085,"WI","55","085",35562,0.975142005511501,1699,0.175158877453462,7.43779512167193,8.15908865466791,9.21483027724904,8.54615384615385,347.970986081161,71,20404,0,0,0,0,9 +"12114",2013,55087,"WI","55","087",180301,0.930582747738504,11496,0.123654333586613,9.34975442775886,10.0461149507859,10.8969244935869,6.06153846153846,251.270106193716,274,109046,0,0,0,0,9 +"12115",2013,55089,"WI","55","089",87250,0.955954154727794,4777,0.15280229226361,8.47156801338996,9.2127374965759,10.1484317338092,5.2,208.036138849263,105,50472,0,0,0,0,9 +"12116",2013,55093,"WI","55","093",40845,0.974195127922634,4485,0.129905741216795,8.4084937744929,8.4497705150988,9.4343635363174,5.23846153846154,235.604184969252,59,25042,0,0,0,0,9 +"12117",2013,55095,"WI","55","095",43320,0.976338873499538,2012,0.153578024007387,7.60688453121963,8.5440298453698,9.41678527366734,7.07692307692308,359.166733179025,90,25058,0,0,0,0,9 +"12118",2013,55097,"WI","55","097",70535,0.953271425533423,8495,0.129708655277522,9.04723303410603,8.92078988846438,9.95967883218587,6.86923076923077,248.756218905473,107,43014,0,0,0,0,9 +"12119",2013,55099,"WI","55","099",13740,0.973508005822416,559,0.184352256186317,6.3261494731551,7.25981961036319,8.23190824356418,6.85384615384615,368.956743002545,29,7860,0,0,0,0,9 +"12120",2013,55101,"WI","55","101",194694,0.852281015336888,11686,0.135607671525573,9.36614682311438,10.0786166387486,10.961017396103,8.27692307692308,338.214813981852,391,115607,0,0,0,0,9 +"12121",2013,55103,"WI","55","103",17822,0.980754124116261,967,0.159802491302884,6.87419849545329,7.57763383260273,8.48425669116997,6.02307692307692,333.400687007476,33,9898,0,0,0,0,9 +"12122",2013,55105,"WI","55","105",160402,0.920630665453049,10065,0.129861223675515,9.21681933807389,9.91393281039767,10.7685060424327,7.66153846153846,353.304561225353,334,94536,0,0,0,0,9 +"12123",2013,55107,"WI","55","107",14366,0.979186969232911,659,0.164207155784491,6.49072353450251,7.29097477814298,8.2534880283459,8.47692307692308,355.781448538755,28,7870,0,0,0,0,9 +"12124",2013,55109,"WI","55","109",85700,0.971703617269545,4149,0.125647607934656,8.33062262033287,9.41784222730043,10.1475311679581,5.33076923076923,231.801624559285,119,51337,0,0,0,0,9 +"12125",2013,55111,"WI","55","111",62788,0.966203733197426,3321,0.13763776517806,8.10802122137675,8.94845599234554,9.80444039893489,6.19230769230769,307.42443616182,113,36757,0,0,0,0,9 +"12126",2013,55113,"WI","55","113",16479,0.799805813459555,747,0.17355422052309,6.61606518513282,7.41095187558364,8.3959291039232,10.9,472.839234660216,43,9094,0,0,0,0,9 +"12127",2013,55115,"WI","55","115",41408,0.899149922720247,2130,0.141446097372488,7.66387725870347,8.47198659857816,9.349058291288,7.40769230769231,391.056703221967,92,23526,0,0,0,0,9 +"12128",2013,55117,"WI","55","117",114702,0.922032745723701,6570,0.141200676535719,8.79026911147866,9.53726719575386,10.3986105325748,6.03846153846154,332.618818833617,225,67645,0,0,0,0,9 +"12129",2013,55119,"WI","55","119",20422,0.986925864264029,987,0.146410733522672,6.89467003943348,7.76768727718691,8.62227366786674,6.36153846153846,249.720141221045,29,11613,0,0,0,0,9 +"12130",2013,55121,"WI","55","121",29468,0.979435319668793,1541,0.136656712365956,7.34018683532012,8.16251625014018,9.00072983494456,5.53846153846154,249.673047200095,42,16822,0,0,0,0,9 +"12131",2013,55123,"WI","55","123",30101,0.985216437992093,1408,0.147270854788877,7.24992553671799,8.05801080080209,8.98744678941718,5.91538461538462,295.821521015654,48,16226,0,0,0,0,9 +"12132",2013,55125,"WI","55","125",21401,0.875519835521705,864,0.176580533619924,6.76157276880406,7.55013534248843,8.62335338724463,10.1384615384615,476.652837849766,54,11329,0,0,0,0,9 +"12133",2013,55127,"WI","55","127",102805,0.968785564904431,9526,0.133796994309615,9.16178018136081,9.38622458680613,10.3181105984291,6.78461538461538,358.258764252646,219,61129,0,0,0,0,9 +"12134",2013,55129,"WI","55","129",15655,0.972660491855637,655,0.170935803257745,6.48463523563525,7.36454701425564,8.37008432637803,7.37692307692308,461.573967228248,40,8666,0,0,0,0,9 +"12135",2013,55131,"WI","55","131",132938,0.969399268832087,6523,0.139929892130166,8.7830896717961,9.7326399178158,10.5721883401911,5.66923076923077,289.101629366639,228,78865,0,0,0,0,9 +"12136",2013,55133,"WI","55","133",394257,0.945720684731026,20041,0.147013242631076,9.90553545415343,10.7787896093329,11.6674732088143,5.47692307692308,231.242800626426,536,231791,0,0,0,0,9 +"12137",2013,55135,"WI","55","135",52068,0.982676499961589,2578,0.146980871168472,7.85476918349913,8.69399956752208,9.58788600008621,7.25384615384615,330.948719663034,99,29914,0,0,0,0,9 +"12138",2013,55137,"WI","55","137",24260,0.961665292662819,1093,0.16199505358615,6.99668148817654,7.89766815072691,8.74687531957003,8.5,344.629523262493,48,13928,0,0,0,0,9 +"12139",2013,55139,"WI","55","139",169388,0.939582496989161,15313,0.126650057855338,9.63645741981521,9.92309408217505,10.8226342023915,6.32307692307692,256.116465592775,266,103859,0,0,0,0,9 +"12140",2013,55141,"WI","55","141",73930,0.960137968348438,3978,0.145096713106993,8.28853445941392,9.01651287499603,9.96801044855163,7.21538461538462,290.438937555628,124,42694,0,0,0,0,9 +"12141",2013,54001,"WV","54","001",16875,0.977185185185185,1353,0.139377777777778,7.21007962817079,7.60140233458373,8.51338595307328,7.05384615384615,546.617161716172,53,9696,1,0,0,0,9 +"12142",2013,54003,"WV","54","003",108587,0.903330969637249,6311,0.128496044646228,8.75004942158424,9.61900037098087,10.4149629651436,5.59230769230769,465.031734250269,307,66017,1,0,0,0,9 +"12143",2013,54005,"WV","54","005",24091,0.989124569341248,1320,0.159188078535553,7.18538701558042,8.1318247850072,8.87961160998204,9.47692307692308,639.821962584324,92,14379,1,0,0,0,9 +"12144",2013,54007,"WV","54","007",14387,0.985333982067144,816,0.159240981441579,6.70441435496411,7.45529848568329,8.32360844234357,10.1615384615385,341.658812441093,29,8488,1,0,0,0,9 +"12145",2013,54009,"WV","54","009",23596,0.976606204441431,1640,0.161679945753518,7.40245152081824,7.91315518592807,8.83622857152601,7.62307692307692,609.579100145138,84,13780,1,0,0,0,9 +"12146",2013,54011,"WV","54","011",97030,0.927939812429146,9542,0.130093785427187,9.16345838607605,9.34495867370094,10.2847282717534,5.70769230769231,588.778968267552,344,58426,1,0,0,0,9 +"12147",2013,54013,"WV","54","013",7557,0.990604737329628,338,0.163556967050417,5.82304589548302,6.7696419768525,7.67508185771633,10.0153846153846,549.199084668192,24,4370,1,0,0,0,9 +"12148",2013,54015,"WV","54","015",9150,0.991693989071038,486,0.149180327868852,6.18620862390049,7.01750614294126,7.85902697975154,11.8692307692308,515.956430345882,27,5233,1,0,0,0,9 +"12149",2013,54017,"WV","54","017",8551,0.97298561571746,567,0.152029002455853,6.34035930372775,6.99025650049388,7.75276480885133,5.3,406.111003674338,21,5171,1,0,0,0,9 +"12150",2013,54019,"WV","54","019",45570,0.944437129690586,2553,0.157274522712311,7.84502441724148,8.65799806800726,9.47262771040802,8.52307692307692,729.058175866686,196,26884,1,0,0,0,9 +"12151",2013,54021,"WV","54","021",8635,0.853850607990735,925,0.121366531557614,6.82979373751242,7.14834574390007,7.58273848891441,6.57692307692308,410.25641025641,24,5850,1,0,0,0,9 +"12152",2013,54023,"WV","54","023",11737,0.984919485388089,627,0.151742353241885,6.44094654063292,7.24422751560335,8.11671562481911,8.06923076923077,387.828162291169,26,6704,1,0,0,0,9 +"12153",2013,54025,"WV","54","025",35823,0.958518270384948,1981,0.157747815649164,7.59135704669855,8.30474226964077,9.25550492393056,7.38461538461539,484.496124031008,100,20640,1,0,0,0,9 +"12154",2013,54027,"WV","54","027",23479,0.979172877890881,1206,0.152987776310746,7.09506437728713,7.99361999482774,8.80612448326845,6.93076923076923,584.453535943892,80,13688,1,0,0,0,9 +"12155",2013,54029,"WV","54","029",30408,0.965699815837937,1512,0.161372007366482,7.32118855673948,8.2337687092171,9.10364563330522,8.01538461538462,508.302270416808,90,17706,1,0,0,0,9 +"12156",2013,54031,"WV","54","031",13977,0.953924304214066,756,0.14824354296344,6.62804137617953,7.4730690880322,8.29829063435928,9.4,369.049083528109,30,8129,1,0,0,0,9 +"12157",2013,54033,"WV","54","033",68935,0.970682527018206,3806,0.143163850003627,8.2443340478561,9.06658546833104,9.92338821424246,5.5,501.58589658479,204,40671,1,0,0,0,9 +"12158",2013,54035,"WV","54","035",29200,0.987397260273973,1625,0.143390410958904,7.39326309476384,8.18952211074809,9.04404963225476,6.79230769230769,435.171385991058,73,16775,1,0,0,0,9 +"12159",2013,54037,"WV","54","037",55054,0.903258618810622,3549,0.133396301812766,8.1744211526465,8.90842413949658,9.73884873059448,4.72307692307692,330.241075985469,110,33309,1,0,0,0,9 +"12160",2013,54039,"WV","54","039",191625,0.903394651011089,11323,0.153649054142205,9.33459133431404,10.0717101849506,10.9765255900848,5.84615384615385,583.424447846053,667,114325,1,0,0,0,9 +"12161",2013,54041,"WV","54","041",16477,0.984827335073132,890,0.145050676700856,6.79122146272619,7.64396194900253,8.47595444339964,6.35384615384615,572.022880915237,55,9615,1,0,0,0,9 +"12162",2013,54043,"WV","54","043",21454,0.992821851403002,1167,0.149482613964762,7.06219163228656,7.96450336355155,8.76467807411661,9.5,566.393958464443,72,12712,1,0,0,0,9 +"12163",2013,54045,"WV","54","045",35937,0.97331441133094,2067,0.165734479784067,7.63385355968177,8.52397017569526,9.29173601018018,9.71538461538461,852.635418566478,187,21932,1,0,0,0,9 +"12164",2013,54047,"WV","54","047",20963,0.903448933835806,1152,0.168678147211754,7.04925484125584,7.87016594646984,8.74846362994206,12.6,1063.40766605825,134,12601,1,0,0,0,9 +"12165",2013,54049,"WV","54","049",56762,0.952239174095346,4677,0.143458651915014,8.45041215772589,8.84793475332846,9.72883650204639,5.89230769230769,408.87677402151,138,33751,1,0,0,0,9 +"12166",2013,54051,"WV","54","051",32647,0.985419793549178,1896,0.161668759763531,7.54750168281497,8.27893600229198,9.16261963576477,7.22307692307692,496.861924686192,95,19120,1,0,0,0,9 +"12167",2013,54053,"WV","54","053",27164,0.982771314975703,1474,0.152113090855544,7.29573507274928,8.11522197256233,9.02268461359153,9.26923076923077,581.285145637202,92,15827,1,0,0,0,9 +"12168",2013,54055,"WV","54","055",61947,0.923757405524077,4062,0.152517474615397,8.30943074214033,8.91031577632602,9.82833287893537,7.55384615384615,746.518105849582,268,35900,1,0,0,0,9 +"12169",2013,54057,"WV","54","057",27700,0.960758122743682,1815,0.142310469314079,7.50384074669895,8.10167774745457,8.98532006064911,7.77692307692308,440.972659695099,70,15874,1,0,0,0,9 +"12170",2013,54059,"WV","54","059",26015,0.97405343071305,1456,0.15667883913127,7.28344822875663,8.13681086367554,8.99850761180784,11.0769230769231,812.393727564708,129,15879,1,0,0,0,9 +"12171",2013,54061,"WV","54","061",102392,0.91927103679975,18603,0.106473161965779,9.83107813701799,9.32883426602397,10.3963528509251,4.47692307692308,235.147257341094,162,68893,1,0,0,0,9 +"12172",2013,54063,"WV","54","063",13523,0.984323005250314,673,0.151371737040598,6.51174532964473,7.36137542897735,8.23403420769204,6.23076923076923,558.733537315418,42,7517,1,0,0,0,9 +"12173",2013,54065,"WV","54","065",17453,0.981149372600699,895,0.16300922477511,6.79682371827486,7.66715825531915,8.55101473989175,6.13846153846154,521.191857606451,53,10169,1,0,0,0,9 +"12174",2013,54067,"WV","54","067",25943,0.987665266160429,1483,0.156304205373318,7.30182234213793,8.0727793331695,8.95828281049733,9.47692307692308,636.232454414273,97,15246,1,0,0,0,9 +"12175",2013,54069,"WV","54","069",43762,0.947580092317536,3238,0.154471916274393,8.08271113423758,8.47324130388705,9.46660917372222,5.60769230769231,447.690857681433,114,25464,1,0,0,0,9 +"12176",2013,54071,"WV","54","071",7381,0.967484080747866,462,0.164476358217044,6.13556489108174,6.58617165485467,7.60389796852188,5.40769230769231,503.114518447532,21,4174,1,0,0,0,9 +"12177",2013,54073,"WV","54","073",7517,0.979380071837169,454,0.141279765864042,6.11809719804135,6.92853781816467,7.61529833982581,7.18461538461538,262.46719160105,12,4572,1,0,0,0,9 +"12178",2013,54075,"WV","54","075",8683,0.982149026834043,431,0.170678336980306,6.06610809010375,6.87523208727658,7.78821155784708,8.53076923076923,506.230529595016,26,5136,1,0,0,0,9 +"12179",2013,54077,"WV","54","077",33693,0.981479832606179,1868,0.149378209123557,7.53262361878879,8.3999849905107,9.18707174503683,6.46923076923077,397.395384468065,83,20886,1,0,0,0,9 +"12180",2013,54079,"WV","54","079",56496,0.975555791560464,2765,0.144930614556783,7.92479591395644,8.9680140012452,9.73566044189263,5.60769230769231,416.192586382418,139,33398,1,0,0,0,9 +"12181",2013,54081,"WV","54","081",78843,0.89996575472775,4737,0.149778674073792,8.46315930292375,9.26549121644103,10.0311329063718,7.2,626.598465473146,294,46920,1,0,0,0,9 +"12182",2013,54083,"WV","54","083",29519,0.975778312273451,1887,0.144550967173685,7.54274354536855,8.16678428905615,9.0095696715137,7.12307692307692,557.05507379544,97,17413,1,0,0,0,9 +"12183",2013,54085,"WV","54","085",10153,0.991726583275879,528,0.156505466364621,6.26909628370626,7.0833878476253,7.97796809312855,6.07692307692308,393.835616438356,23,5840,1,0,0,0,9 +"12184",2013,54087,"WV","54","087",14609,0.988431788623451,761,0.158053254842905,6.63463335786169,7.50273821075485,8.35184673882824,10.2461538461538,649.964547388324,55,8462,1,0,0,0,9 +"12185",2013,54089,"WV","54","089",13597,0.939471942340222,649,0.16584540707509,6.47543271670409,7.47816969415979,8.43879912398823,7.55384615384615,572.542331587282,47,8209,1,0,0,0,9 +"12186",2013,54091,"WV","54","091",16978,0.978619389798563,971,0.148898574625987,6.87832646829133,7.69984240739699,8.501470230951,5.58461538461538,459.477954834295,47,10229,1,0,0,0,9 +"12187",2013,54093,"WV","54","093",7079,0.988981494561379,376,0.155954230823563,5.9295891433899,6.68210859744981,7.61529833982581,6.75384615384615,542.138984721538,22,4058,1,0,0,0,9 +"12188",2013,54095,"WV","54","095",9005,0.991671293725708,489,0.165796779566907,6.19236248947487,6.99484998583307,7.86403565907245,8.60769230769231,555.236454145127,29,5223,1,0,0,0,9 +"12189",2013,54097,"WV","54","097",24619,0.98131524432349,1954,0.141557333766603,7.57763383260273,7.96241568012106,8.87668416661445,7.05384615384615,445.993031358885,64,14350,1,0,0,0,9 +"12190",2013,54099,"WV","54","099",41890,0.988302697541179,2508,0.142587729768441,7.82724090175281,8.58895555764313,9.42802907260743,6.86153846153846,584.963954685891,142,24275,1,0,0,0,9 +"12191",2013,54101,"WV","54","101",8832,0.990375905797101,481,0.164288949275362,6.17586727010576,6.9782137426307,7.84971375760487,10.1923076923077,700.525394045534,36,5139,1,0,0,0,9 +"12192",2013,54103,"WV","54","103",16114,0.989760456745687,912,0.149559389350875,6.81563999007433,7.54855597916987,8.42178300661158,9,513.942044833242,47,9145,1,0,0,0,9 +"12193",2013,54107,"WV","54","107",86577,0.974727699042471,4971,0.144195340563891,8.51137630609467,9.27594082906013,10.1593306000134,6.11538461538461,516.432853835652,261,50539,1,0,0,0,9 +"12194",2013,54109,"WV","54","109",22943,0.988144532101294,1296,0.171119731508521,7.16703787691222,8.03657340970731,8.84043543926657,9.15384615384615,818.781247735671,113,13801,1,0,0,0,9 +"12195",2013,56001,"WY","56","001",37619,0.930088519099391,8867,0.103591270368697,9.09009179938001,8.15334975799889,9.39141114686849,3.79230769230769,184.530820573223,47,25470,0,0,0,0,9 +"12196",2013,56003,"WY","56","003",11941,0.966836948329286,608,0.141780420400301,6.41017488196617,7.15461535691366,8.04269949689764,5.23846153846154,407.013149655604,26,6388,0,0,0,0,9 +"12197",2013,56005,"WY","56","005",48080,0.964267886855241,3307,0.123980865224626,8.10379671298179,8.75068303478459,9.5674552191433,4.29230769230769,310.026385224274,94,30320,0,0,0,0,9 +"12198",2013,56007,"WY","56","007",15849,0.954886743643132,968,0.147895766294403,6.87523208727658,7.55013534248843,8.35090245169481,4.36923076923077,436.908353271611,42,9613,0,0,0,0,9 +"12199",2013,56009,"WY","56","009",14369,0.97000487159858,828,0.140858793235437,6.71901315438526,7.49886973397693,8.3165447179294,3.71538461538462,412.833215380986,35,8478,0,0,0,0,9 +"12200",2013,56011,"WY","56","011",7149,0.978598405371381,309,0.17023359910477,5.73334127689775,6.58479139238572,7.59085212368858,4.49230769230769,368.007850834151,15,4076,0,0,0,0,9 +"12201",2013,56013,"WY","56","013",40937,0.75677260180277,2470,0.14285365317439,7.81197342962202,8.38867776918081,9.35201353029233,5.74615384615385,638.23364526284,148,23189,0,0,0,0,9 +"12202",2013,56015,"WY","56","015",13560,0.970722713864307,1017,0.146902654867257,6.92461239604856,7.27239839257005,8.1610895128458,4.25384615384615,333.718393017584,26,7791,0,0,0,0,9 +"12203",2013,56017,"WY","56","017",4838,0.968995452666391,192,0.173212071103762,5.25749537202778,6.09582456243222,7.17930796950403,4.76153846153846,603.318250377074,16,2652,0,0,0,0,9 +"12204",2013,56019,"WY","56","019",8648,0.964153561517114,355,0.164893617021277,5.87211778947542,6.85329909318608,7.75448154747038,5.13846153846154,292.948315547186,14,4779,0,0,0,0,9 +"12205",2013,56021,"WY","56","021",95786,0.932255235629424,7217,0.130655836969912,8.88419463307227,9.3536611914204,10.2472545461741,4.83076923076923,320.729529654479,185,57681,0,0,0,0,9 +"12206",2013,56023,"WY","56","023",18342,0.976174899138589,751,0.150038163777124,6.62140565176413,7.75190533307861,8.52872642722991,5.8,329.011031546352,34,10334,0,0,0,0,9 +"12207",2013,56025,"WY","56","025",81175,0.952756390514321,5880,0.133390822297505,8.67931204089267,9.20220738874599,10.0891784267997,4.58461538461538,449.714642950773,223,49587,0,0,0,0,9 +"12208",2013,56029,"WY","56","029",29079,0.96770865573094,1721,0.161422332267272,7.45066079621154,8.00469951054955,9.0273786102948,5.16923076923077,323.527649631538,54,16691,0,0,0,0,9 +"12209",2013,56031,"WY","56","031",8712,0.975895316804408,405,0.16540404040404,6.00388706710654,6.76849321164863,7.76768727718691,4.45384615384615,370.522848909016,18,4858,0,0,0,0,9 +"12210",2013,56033,"WY","56","033",29754,0.96286213618337,1725,0.162566377629899,7.45298232946546,8.14757773620177,9.07280095795412,5.54615384615385,336.719552562493,59,17522,0,0,0,0,9 +"12211",2013,56035,"WY","56","035",10190,0.968400392541708,503,0.142198233562316,6.22059017009974,7.24351297466548,7.94520113241276,4.76923076923077,161.290322580645,10,6200,0,0,0,0,9 +"12212",2013,56037,"WY","56","037",45189,0.955652924384253,2990,0.128394078204873,8.00302866638473,8.67077227934454,9.47922181496425,4.39230769230769,321.334440553129,89,27697,0,0,0,0,9 +"12213",2013,56039,"WY","56","039",22335,0.96051040967092,1106,0.13821356615178,7.00850518208228,8.16933639592839,8.86939815988352,5.79230769230769,146.823278163374,22,14984,0,0,0,0,9 +"12214",2013,56041,"WY","56","041",20969,0.969431064905336,1130,0.135199580332872,7.02997291170639,7.85902697975154,8.69801362208393,5.31538461538462,405.193086909783,49,12093,0,0,0,0,9 +"12215",2013,56043,"WY","56","043",8417,0.96293216110253,373,0.145063561839135,5.92157841964382,6.83195356556585,7.71244383427499,5.01538461538462,458.515283842795,21,4580,0,0,0,0,9 +"12216",2014,2020,"AK","02","020",300647,0.697675346835325,26227,0.118544339374748,10.1745446934643,10.5495169197681,11.4382450212936,5.10769230769231,342.966319350191,657,191564,0,1,0,0,9 +"12217",2014,2050,"AK","02","050",17960,0.120211581291759,1454,0.0959354120267261,7.28207365809346,7.51860721681525,8.43750042250699,15.8230769230769,493.979623340537,48,9717,0,1,0,0,9 +"12218",2014,2070,"AK","02","070",4981,0.202569765107408,439,0.128086729572375,6.08449941307517,6.15485809401642,7.2291138777933,10.0384615384615,456.460674157303,13,2848,0,1,0,0,9 +"12219",2014,2090,"AK","02","090",99404,0.808498651965716,11231,0.11459297412579,9.32643309096304,9.38597294061934,10.2762572778062,5.68461538461538,310.803915201559,201,64671,0,1,0,0,9 +"12220",2014,2110,"AK","02","110",32501,0.74403864496477,2218,0.144426325343836,7.70436116791031,8.35655484545343,9.23151460720759,4.96923076923077,305.21245648338,64,20969,0,1,0,0,9 +"12221",2014,2122,"AK","02","122",57594,0.874761259853457,3635,0.165329721846026,8.19836438996762,8.80747188971528,9.70941724870763,7.76153846153846,452.345280626945,157,34708,0,1,0,0,9 +"12222",2014,2130,"AK","02","130",13826,0.725951106610733,894,0.155938087660929,6.79570577517351,7.41457288135059,8.33134542484572,7.83076923076923,509.613157285152,44,8634,0,1,0,0,9 +"12223",2014,2150,"AK","02","150",13899,0.601841859126556,1063,0.123534067199079,6.96885037834195,7.48268182815465,8.29004161870449,5.59230769230769,273.410799726589,24,8778,0,1,0,0,9 +"12224",2014,2170,"AK","02","170",98185,0.876539186230076,6456,0.132148495187656,8.77276520994979,9.45477563742468,10.2465806797515,7.91538461538462,359.852004527715,213,59191,0,1,0,0,9 +"12225",2014,2180,"AK","02","180",9812,0.177028128821851,794,0.101916021198532,6.67708346124714,6.99209642741589,7.83597458172157,12.1153846153846,481.570661233562,26,5399,0,1,0,0,9 +"12226",2014,2185,"AK","02","185",9370,0.324546424759872,708,0.142582710779082,6.56244409369372,7.08086789669078,7.6434829070772,5.85384615384615,229.287679608682,15,6542,0,1,0,0,9 +"12227",2014,2188,"AK","02","188",7785,0.136544637122672,682,0.0856775850995504,6.52502965784346,6.64898455002478,7.51152464839087,16.7615384615385,382.500597657184,16,4183,0,1,0,0,9 +"12228",2014,2220,"AK","02","220",8845,0.711927642736009,524,0.151384963256077,6.26149168432104,7.09174211509515,7.89692465626886,5.07692307692308,306.251125923257,17,5551,0,1,0,0,9 +"12229",2014,2261,"AK","02","261",9559,0.795271471911288,535,0.167486138717439,6.28226674689601,6.97073007814353,7.9135210172839,9.73076923076923,568.656966047834,34,5979,0,1,0,0,9 +"12230",2014,2270,"AK","02","270",8107,0.0468730726532626,728,0.0770938694954977,6.59030104819669,6.52649485957079,7.53636393840451,NA,378.979282465892,15,3958,0,1,0,0,9 +"12231",2014,2290,"AK","02","290",5456,0.236803519061584,363,0.152492668621701,5.89440283426485,6.30444880242198,7.25347038268453,18.6538461538462,766.528265729799,24,3131,0,1,0,0,9 +"12232",2014,1001,"AL","01","001",54922,0.79270601944576,3554,0.115964458686865,8.1758290087146,8.93958096672031,9.71347650725779,5.80769230769231,480.769230769231,156,32448,0,1,0,0,9 +"12233",2014,1003,"AL","01","003",199306,0.882943815038183,11242,0.137833281486759,9.32741204356202,10.1216587622238,10.973563183062,6.10769230769231,443.381264074726,506,114123,0,1,0,0,9 +"12234",2014,1005,"AL","01","005",26768,0.502764494919307,1827,0.127913927077107,7.51043055637801,8.11581970121133,8.84043543926657,10.4692307692308,480.94709581946,78,16218,0,1,0,0,9 +"12235",2014,1007,"AL","01","007",22541,0.772281620158822,1490,0.123907546249057,7.3065313989395,8.0643219609108,8.71964411950536,7.16923076923077,571.673574389024,80,13994,0,1,0,0,9 +"12236",2014,1009,"AL","01","009",57536,0.970766129032258,3461,0.128389182424917,8.14931284363534,8.91274263473703,9.70655984335281,6.09230769230769,587.611691655308,194,33015,0,1,0,0,9 +"12237",2014,1011,"AL","01","011",10668,0.264154480689914,746,0.137045369328834,6.61472560020376,7.22766249872865,7.92479591395644,8.74615384615385,635.208711433757,42,6612,0,1,0,0,9 +"12238",2014,1013,"AL","01","013",20332,0.537330316742081,1216,0.14400944324218,7.10332206252611,7.77233157516961,8.73921611506174,8.48461538461538,770.038501925096,88,11428,0,1,0,0,9 +"12239",2014,1015,"AL","01","015",115991,0.768292367511272,8459,0.135484649671095,9.04298624230401,9.54838280376691,10.4763579656736,7.93076923076923,619.483182340367,426,68767,0,1,0,0,9 +"12240",2014,1017,"AL","01","017",33964,0.584206807207632,2194,0.140943351784242,7.69348164083518,8.30003171177957,9.22896583609935,6.66923076923077,571.13975233763,113,19785,0,1,0,0,9 +"12241",2014,1019,"AL","01","019",25900,0.942857142857143,1441,0.151467181467181,7.27309259599952,8.02845516411425,8.89288614119073,5.77692307692308,737.682728749323,109,14776,0,1,0,0,9 +"12242",2014,1021,"AL","01","021",43751,0.879637036867729,2814,0.131425567415602,7.94236223767433,8.65434302956347,9.46475000516439,6.22307692307692,518.639837778818,133,25644,0,1,0,0,9 +"12243",2014,1023,"AL","01","023",13322,0.570184656958415,785,0.14704999249362,6.66568371778241,7.31588350450979,8.2725706084249,8.95384615384615,504.380143350146,38,7534,0,1,0,0,9 +"12244",2014,1025,"AL","01","025",24873,0.544284967635589,1650,0.135367667752181,7.40853056689463,8.00235954625271,8.91126025457203,12.1,450.418748680414,64,14209,0,1,0,0,9 +"12245",2014,1027,"AL","01","027",13443,0.839916685263706,763,0.138957078033177,6.63725803128446,7.38894609761844,8.26770566476243,7.11538461538462,700.752660264729,54,7706,0,1,0,0,9 +"12246",2014,1029,"AL","01","029",15029,0.954754141992148,881,0.130347993878502,6.78105762593618,7.55171221535131,8.35302584520232,6.57692307692308,705.384434516812,60,8506,0,1,0,0,9 +"12247",2014,1031,"AL","01","031",50693,0.779732901978577,3103,0.124533959323773,8.04012466444838,8.81075792702617,9.60028566842631,6.59230769230769,401.403224718343,119,29646,0,1,0,0,9 +"12248",2014,1033,"AL","01","033",54484,0.821085089200499,3300,0.140059466999486,8.10167774745457,8.7879833961978,9.68961340722907,8.25384615384615,601.719197707736,189,31410,0,1,0,0,9 +"12249",2014,1035,"AL","01","035",12674,0.524222818368313,794,0.148492977749724,6.67708346124714,7.23273313617761,8.19836438996762,10.2769230769231,819.440519920882,58,7078,0,1,0,0,9 +"12250",2014,1037,"AL","01","037",11037,0.666032436350458,614,0.168977077104286,6.41999492814714,7.18538701558042,8.06274790108635,8.75384615384615,465.885181845506,31,6654,0,1,0,0,9 +"12251",2014,1039,"AL","01","039",37766,0.857941005136896,2214,0.140893925753323,7.70255611326858,8.372398606513,9.28665305482535,7.74615384615385,657.987498237533,140,21277,0,1,0,0,9 +"12252",2014,1041,"AL","01","041",13851,0.737997256515775,885,0.139917695473251,6.78558764500793,7.43425738213314,8.29529885950246,6.87692307692308,725.453408380238,58,7995,0,1,0,0,9 +"12253",2014,1043,"AL","01","043",81081,0.973088639755306,5096,0.132077798744465,8.536211197252,9.22670572606245,10.052855384187,6.03846153846154,575.717514606167,270,46898,0,1,0,0,9 +"12254",2014,1045,"AL","01","045",49465,0.770039421813403,3384,0.124936824016982,8.12681372072611,8.70084719344397,9.5767180913763,7.03076923076923,443.49709492213,129,29087,0,1,0,0,9 +"12255",2014,1047,"AL","01","047",41560,0.287921077959576,2896,0.13895572666025,7.97108575350561,8.43446354381724,9.45868372431213,11.1769230769231,740.866178400576,175,23621,0,1,0,0,9 +"12256",2014,1049,"AL","01","049",70963,0.944619026816792,4538,0.125952961402421,8.42024166533979,9.14099029384139,9.91803127797697,6.83846153846154,532.65912270797,217,40739,0,1,0,0,9 +"12257",2014,1051,"AL","01","051",80563,0.771979692911138,5778,0.124163697975497,8.66181288102618,9.32678918461943,10.1507772256784,5.67692307692308,502.318392581144,247,49172,0,1,0,0,9 +"12258",2014,1053,"AL","01","053",37749,0.629182229992847,2457,0.128294789265941,7.80669637252118,8.51959031601596,9.23024103368252,7.96153846153846,585.527197961829,131,22373,0,1,0,0,9 +"12259",2014,1055,"AL","01","055",103417,0.824641983426323,6647,0.137772319831362,8.80192090404158,9.48615227185748,10.3374105334608,7.00769230769231,687.029219435477,415,60405,0,1,0,0,9 +"12260",2014,1057,"AL","01","057",16784,0.87065061963775,1090,0.143648713060057,6.99393297522319,7.6004023345004,8.46884293047519,7.80769230769231,650.577124868835,62,9530,0,1,0,0,9 +"12261",2014,1059,"AL","01","059",31572,0.929367794248068,2168,0.121436716077537,7.68156036255954,8.32724260745779,9.09773142759353,7.68461538461538,633.853276745852,115,18143,0,1,0,0,9 +"12262",2014,1061,"AL","01","061",26605,0.88351813568878,1527,0.139823341477166,7.33106030521863,8.05864371221562,8.93695560422523,6.65384615384615,555.408622057657,84,15124,0,1,0,0,9 +"12263",2014,1063,"AL","01","063",8585,0.177052999417589,570,0.164239953407105,6.3456363608286,6.71780469502369,7.83478810738819,12.3923076923077,846.407927332783,41,4844,0,1,0,0,9 +"12264",2014,1065,"AL","01","065",15047,0.409583305642321,997,0.143616667774307,6.90475076996184,7.38150189450671,8.42200300441249,9.83076923076923,625.36189924725,54,8635,0,1,0,0,9 +"12265",2014,1067,"AL","01","067",17074,0.712779664987701,918,0.148529928546328,6.82219739062049,7.65254569269392,8.51238163441901,7.46153846153846,435.594275046671,42,9642,0,1,0,0,9 +"12266",2014,1069,"AL","01","069",104216,0.710015736547171,6450,0.128636677669456,8.77183540978982,9.49363784611014,10.362019381581,6.73846153846154,428.120402664595,259,60497,0,1,0,0,9 +"12267",2014,1071,"AL","01","071",52592,0.935541527228476,3162,0.143748098570125,8.05896001776942,8.80851861878282,9.63743650021064,7.22307692307692,714.567966280295,217,30368,0,1,0,0,9 +"12268",2014,1073,"AL","01","073",660185,0.54383998424684,44849,0.132194763588994,10.7110565706943,11.3349464656104,12.2489692864825,6.25384615384615,545.364402578086,2167,397349,0,1,0,0,9 +"12269",2014,1075,"AL","01","075",14071,0.881671522990548,701,0.145263307511904,6.55250788703459,7.44366368311559,8.28576542051433,6.92307692307692,494.798274549607,39,7882,0,1,0,0,9 +"12270",2014,1077,"AL","01","077",93049,0.879568829326484,8149,0.135777923459683,9.00565049932022,9.26169866425133,10.2351267000036,7.16923076923077,474.432342625069,257,54170,0,1,0,0,9 +"12271",2014,1079,"AL","01","079",33423,0.812135355892649,2070,0.138258085749334,7.63530388625941,8.31630024903685,9.21592475027008,8.17692307692308,574.65470309507,114,19838,0,1,0,0,9 +"12272",2014,1081,"AL","01","081",154682,0.718648582252622,23152,0.0992293867418316,10.0498364488713,9.84155895591396,10.8045428117675,5.56923076923077,372.974188142486,365,97862,0,1,0,0,9 +"12273",2014,1083,"AL","01","083",90622,0.834631767120567,5282,0.123833064818697,8.57206009285708,9.44034036408688,10.1963810220384,6.07692307692308,393.415279741833,217,55158,0,1,0,0,9 +"12274",2014,1085,"AL","01","085",10497,0.249785653043727,738,0.138992092978946,6.60394382460047,7.00940893270864,8.05388708361822,12.7538461538462,809.515942507847,49,6053,0,1,0,0,9 +"12275",2014,1087,"AL","01","087",19670,0.166497203863752,2588,0.141637010676157,7.85864065562079,7.52779398772144,8.74369111054302,9.06923076923077,613.067087055526,70,11418,0,1,0,0,9 +"12276",2014,1089,"AL","01","089",349973,0.707717452489192,25072,0.126541190320396,10.1295069645958,10.668676285961,11.5954911411266,6.13846153846154,361.410340818356,774,214161,0,1,0,0,9 +"12277",2014,1091,"AL","01","091",19990,0.476288144072036,1329,0.138969484742371,7.19218205871325,7.77611547709874,8.6941671418836,7.91538461538462,568.181818181818,64,11264,0,1,0,0,9 +"12278",2014,1093,"AL","01","093",30215,0.950554360417011,1710,0.135561807049479,7.4442486494967,8.21148291644507,9.04970202601337,7.86153846153846,518.376143048518,89,17169,0,1,0,0,9 +"12279",2014,1095,"AL","01","095",94262,0.948430969001294,6017,0.124588911756593,8.70234407522035,9.3652050825371,10.201849887396,6.63846153846154,578.93564907593,312,53892,0,1,0,0,9 +"12280",2014,1097,"AL","01","097",414298,0.608231273141555,29884,0.129626500731358,10.3050784990957,10.8183773034947,11.7551890577307,7.69230769230769,503.757738324024,1232,244562,0,1,0,0,9 +"12281",2014,1099,"AL","01","099",21927,0.561818762256579,1415,0.143932138459434,7.25488481007734,7.84932381804056,8.77832592863448,10.9846153846154,615.036011977017,76,12357,0,1,0,0,9 +"12282",2014,1101,"AL","01","101",227647,0.387973485264466,18262,0.122334140138021,9.81257767717629,10.2629087221429,11.1883165796962,6.82307692307692,465.899274201289,631,135437,0,1,0,0,9 +"12283",2014,1103,"AL","01","103",119496,0.850304612706701,7459,0.131535783624556,8.91717663595516,9.62152244041358,10.4699938321287,6.56153846153846,478.659186137348,337,70405,0,1,0,0,9 +"12284",2014,1105,"AL","01","105",9809,0.307370781934958,859,0.130798246508309,6.75576892198425,6.92264389147589,7.95577578153419,12.0307692307692,625.829698463873,33,5273,0,1,0,0,9 +"12285",2014,1107,"AL","01","107",20283,0.579746585810778,1390,0.137208499728837,7.23705902612474,7.75147531802146,8.69684451965431,8.11538461538461,561.287659925712,68,12115,0,1,0,0,9 +"12286",2014,1109,"AL","01","109",33217,0.590992564048529,5873,0.110876960592468,8.67812085552252,8.12533508671429,9.24474179869351,7.32307692307692,422.916154413573,86,20335,0,1,0,0,9 +"12287",2014,1111,"AL","01","111",22362,0.787720239692335,1293,0.142876308022538,7.16472037877186,7.84776253747361,8.75699718362355,6.71538461538462,733.47683967153,92,12543,0,1,0,0,9 +"12288",2014,1113,"AL","01","113",59310,0.539200809307031,4253,0.117872196931378,8.35537989525363,8.92252495730139,9.81115294133333,6.51538461538462,422.214090691587,150,35527,0,1,0,0,9 +"12289",2014,1115,"AL","01","115",86014,0.892203594763643,4967,0.129897458553259,8.51057131510735,9.36340474770302,10.1462768560972,5.73846153846154,558.540450697692,289,51742,0,1,0,0,9 +"12290",2014,1117,"AL","01","117",206346,0.852049470307154,11969,0.125958341814234,9.39007525287337,10.3073847654721,11.0654032248735,4.46153846153846,297.28187946425,370,124461,0,1,0,0,9 +"12291",2014,1119,"AL","01","119",13276,0.25248568846038,1917,0.139575173244953,7.55851674304564,7.14282740116162,8.36520683441836,8.42307692307692,526.72147995889,41,7784,0,1,0,0,9 +"12292",2014,1121,"AL","01","121",81550,0.658516247700797,5538,0.139509503372164,8.61938870373091,9.2568422056276,10.1134648073186,7.7,579.986328893676,280,48277,0,1,0,0,9 +"12293",2014,1123,"AL","01","123",40898,0.711159469900729,2611,0.151229888992127,7.86748856869913,8.43294163896865,9.39557435021717,7.46923076923077,522.670292780351,123,23533,0,1,0,0,9 +"12294",2014,1125,"AL","01","125",203228,0.665641545456335,26998,0.114167339146181,10.2035180681688,10.0797071971386,11.0801713766244,5.86153846153846,370.945273631841,466,125625,0,1,0,0,9 +"12295",2014,1127,"AL","01","127",65354,0.923738409278698,4079,0.141077822321511,8.31360713931756,8.98669669562029,9.85587169859446,7.85384615384615,796.157214511292,300,37681,0,1,0,0,9 +"12296",2014,1129,"AL","01","129",16868,0.665342660659236,1114,0.141806971780887,7.01571242048723,7.57353126274595,8.51499076786104,9.54615384615385,593.41109064866,58,9774,0,1,0,0,9 +"12297",2014,1131,"AL","01","131",10950,0.27662100456621,706,0.142374429223744,6.55961523749324,7.11963563801764,8.05959232888755,16.8153846153846,988.142292490119,60,6072,0,1,0,0,9 +"12298",2014,1133,"AL","01","133",24141,0.975353133673004,1322,0.141709125554037,7.18690102041163,7.98104975966596,8.82482493917564,8.55384615384615,544.978927481471,75,13762,0,1,0,0,9 +"12299",2014,5001,"AR","05","001",18524,0.736881882962643,1144,0.14667458432304,7.04228617193974,7.72134861261795,8.60465446718623,5.24615384615385,657.21528494977,70,10651,0,1,0,0,9 +"12300",2014,5003,"AR","05","003",20974,0.72861638218747,1271,0.134261466577668,7.14755927118945,7.83320394864106,8.71275997496021,8.84615384615385,605.698686231019,71,11722,0,1,0,0,9 +"12301",2014,5005,"AR","05","005",40903,0.981835073222013,1763,0.153093905092536,7.47477218239787,8.2398574110186,9.28461261635077,6.54615384615385,519.03953431967,107,20615,0,1,0,0,9 +"12302",2014,5007,"AR","05","007",244962,0.913782545864256,14471,0.102448543039329,9.57990192573799,10.4487725723537,11.1692936596939,4.51538461538462,306.057507347525,428,139843,0,1,0,0,9 +"12303",2014,5009,"AR","05","009",37150,0.9785733512786,2206,0.13300134589502,7.69893619981345,8.39094946484199,9.25263328416643,5.83846153846154,488.701795132337,101,20667,0,1,0,0,9 +"12304",2014,5011,"AR","05","011",11006,0.691350172633109,658,0.133926948936943,6.48920493132532,7.17930796950403,8.05547514175727,7.84615384615385,588.51598536663,37,6287,0,1,0,0,9 +"12305",2014,5013,"AR","05","013",5165,0.769796708615683,380,0.149273959341723,5.94017125272043,6.35437004079735,7.27793857294566,6.36153846153846,610.932475884244,19,3110,0,1,0,0,9 +"12306",2014,5015,"AR","05","015",27763,0.959046212585095,1467,0.15466628246227,7.29097477814298,7.99699040583765,8.9446806835589,5.08461538461538,480.579328505596,73,15190,0,1,0,0,9 +"12307",2014,5017,"AR","05","017",11223,0.434821349015415,692,0.147019513499064,6.53958595561767,7.11314210870709,8.00803284696931,10.2307692307692,610.932475884244,38,6220,0,1,0,0,9 +"12308",2014,5019,"AR","05","019",22578,0.73974665603685,3419,0.114004783417486,8.1371033896393,7.722677516468,8.82805453681542,6.66153846153846,481.872418540615,63,13074,0,1,0,0,9 +"12309",2014,5021,"AR","05","021",15298,0.983788730553013,939,0.135050333376912,6.84481547920826,7.47250074473756,8.34806422840827,7.66923076923077,660.377358490566,56,8480,0,1,0,0,9 +"12310",2014,5023,"AR","05","023",25616,0.980910368519675,1231,0.143386945658963,7.11558212618445,7.8811822022271,8.83025057019925,8.08461538461538,529.68439638049,72,13593,0,1,0,0,9 +"12311",2014,5025,"AR","05","025",8404,0.874107567824845,462,0.133983817229891,6.13556489108174,6.92461239604856,7.76768727718691,6.67692307692308,489.882854100106,23,4695,0,1,0,0,9 +"12312",2014,5027,"AR","05","027",24051,0.616149016672903,2701,0.121741299738057,7.90137735379262,7.81520706218909,8.85765744930699,7,467.255061929838,63,13483,0,1,0,0,9 +"12313",2014,5029,"AR","05","029",20999,0.866565074527358,1296,0.13791132911091,7.16703787691222,7.77359446736019,8.69567404882425,6.99230769230769,502.092050209205,60,11950,0,1,0,0,9 +"12314",2014,5031,"AR","05","031",102707,0.831462315129446,8466,0.107977060959818,9.04381342108087,9.46846489218564,10.3422262374072,5.33076923076923,416.217560732941,251,60305,0,1,0,0,9 +"12315",2014,5033,"AR","05","033",61856,0.934784014485256,3633,0.127408820486291,8.1978140322212,8.95402775927046,9.79255599182885,5.86153846153846,441.25134355377,156,35354,0,1,0,0,9 +"12316",2014,5035,"AR","05","035",49479,0.461791871298935,3489,0.119889245942723,8.15737044118677,8.71440336070394,9.62681135926088,7.20769230769231,668.120120964906,190,28438,0,1,0,0,9 +"12317",2014,5037,"AR","05","037",17180,0.756402793946449,1045,0.129394644935972,6.95177216439891,7.65302041380419,8.50714285556274,6.21538461538462,528.333160675438,51,9653,0,1,0,0,9 +"12318",2014,5039,"AR","05","039",7698,0.571966744608989,423,0.151857625357236,6.04737217904628,6.70563909486,7.6685611080159,8.80769230769231,744.359153291463,32,4299,0,1,0,0,9 +"12319",2014,5041,"AR","05","041",12265,0.507297187117815,763,0.144720750101916,6.63725803128446,7.16549347506085,8.18172045512811,7.87692307692308,695.163437361337,47,6761,0,1,0,0,9 +"12320",2014,5043,"AR","05","043",18643,0.702622968406372,2017,0.122780668347369,7.60936653795421,7.61972421378267,8.61703852638595,8.09230769230769,606.796116504854,65,10712,0,1,0,0,9 +"12321",2014,5045,"AR","05","045",120646,0.85971354209837,14848,0.101404107885881,9.60562045502598,9.61500515991358,10.5406991007658,5.43076923076923,348.840341567222,259,74246,0,1,0,0,9 +"12322",2014,5047,"AR","05","047",17828,0.962643033430559,1114,0.131534664572582,7.01571242048723,7.65491704784832,8.50187648730434,5.55384615384615,723.909109189624,72,9946,0,1,0,0,9 +"12323",2014,5049,"AR","05","049",12090,0.979735318444996,538,0.156079404466501,6.28785856016178,7.09920174355309,8.07930819205196,5.66923076923077,554.148195060165,35,6316,0,1,0,0,9 +"12324",2014,5051,"AR","05","051",97851,0.891273466801566,5592,0.142645450736324,8.62909228391365,9.29311779843375,10.2325034884809,6.18461538461538,594.276375656954,320,53847,0,1,0,0,9 +"12325",2014,5053,"AR","05","053",18084,0.962618889626189,1009,0.13011501880115,6.91671502035361,7.74413662762799,8.56864647300515,5.33846153846154,539.721617271092,57,10561,0,1,0,0,9 +"12326",2014,5055,"AR","05","055",43809,0.979410623387888,2818,0.119016640416353,7.94378269245863,8.67299964255444,9.45305122878292,6.18461538461538,600.007894840722,152,25333,0,1,0,0,9 +"12327",2014,5057,"AR","05","057",22339,0.672545771968307,1329,0.129504454093737,7.19218205871325,7.84188592898462,8.75746914147075,5.79230769230769,577.423552374756,71,12296,0,1,0,0,9 +"12328",2014,5059,"AR","05","059",33418,0.870997665928542,2118,0.139565503620803,7.65822752616135,8.32845106681936,9.13172997139427,5.63076923076923,590.120567736684,116,19657,0,1,0,0,9 +"12329",2014,5061,"AR","05","061",13489,0.77188820520424,786,0.122247757431982,6.66695679242921,7.32778053842163,8.2537483433285,5.7,527.52603814419,39,7393,0,1,0,0,9 +"12330",2014,5063,"AR","05","063",37095,0.956301388327268,2255,0.130206227254347,7.72090525193678,8.44354665124794,9.26728765241793,7.60769230769231,528.89700932782,110,20798,0,1,0,0,9 +"12331",2014,5065,"AR","05","065",13566,0.966239127229839,679,0.146469113961374,6.5206211275587,7.31654817718298,8.13211877295581,7.37692307692308,674.217907227616,50,7416,0,1,0,0,9 +"12332",2014,5067,"AR","05","067",17608,0.808098591549296,1072,0.133973194002726,6.97728134163075,7.75705114203201,8.57338447106598,9.01538461538462,495.188264972438,53,10703,0,1,0,0,9 +"12333",2014,5069,"AR","05","069",72504,0.419728566699768,5405,0.137675162749641,8.59507973007331,9.02425172861298,9.97492410247398,8.55384615384615,704.32488457552,299,42452,0,1,0,0,9 +"12334",2014,5071,"AR","05","071",25976,0.946181090237142,1844,0.121034801355097,7.51969240411654,8.00936307663004,8.90150275745161,6.4,401.497107859816,59,14695,0,1,0,0,9 +"12335",2014,5073,"AR","05","073",7157,0.617018303758558,449,0.149643705463183,6.10702288774225,6.59850902861452,7.63578686139558,7.52307692307692,672.981056829511,27,4012,0,1,0,0,9 +"12336",2014,5075,"AR","05","075",16970,0.980848556275781,1188,0.128108426635239,7.08002649992259,7.56268124672188,8.45680604140114,7.09230769230769,653.664809258466,61,9332,0,1,0,0,9 +"12337",2014,5077,"AR","05","077",9827,0.428411519283606,713,0.132186832197008,6.5694814204143,7.15929190479756,7.7445698093545,7.35384615384615,557.55985569039,34,6098,0,1,0,0,9 +"12338",2014,5079,"AR","05","079",14034,0.683625480974775,1210,0.112654980761009,7.09837563859079,7.62070508683826,8.00969535774292,6.94615384615385,399.654352992007,37,9258,0,1,0,0,9 +"12339",2014,5081,"AR","05","081",12515,0.771314422692769,686,0.14151018777467,6.53087762772588,7.3356339819272,8.1892445257359,6.40769230769231,625.622067396559,44,7033,0,1,0,0,9 +"12340",2014,5083,"AR","05","083",21866,0.947544132443062,1314,0.135873044909906,7.18083119904456,7.84737183615979,8.72939712269206,5.81538461538462,666.775085379737,82,12298,0,1,0,0,9 +"12341",2014,5085,"AR","05","085",71408,0.916956083352005,4403,0.112060273358727,8.39004140575575,9.1958356857733,9.95996239946411,4.96923076923077,409.943513597254,172,41957,0,1,0,0,9 +"12342",2014,5087,"AR","05","087",15741,0.960866526904263,869,0.143828219299917,6.76734312526539,7.52456122628536,8.39072252736229,4.72307692307692,536.612632755729,48,8945,0,1,0,0,9 +"12343",2014,5089,"AR","05","089",16428,0.97936449963477,728,0.180849768687607,6.59030104819669,7.3132203870903,8.40357646462927,6.15384615384615,564.14306668171,50,8863,0,1,0,0,9 +"12344",2014,5091,"AR","05","091",43509,0.728469971729987,2804,0.127835620216507,7.93880224815448,8.59766657556611,9.45868372431213,5.69230769230769,521.855136153182,133,25486,0,1,0,0,9 +"12345",2014,5093,"AR","05","093",44203,0.631269370857182,3052,0.124652172929439,8.02355239240435,8.56674497024549,9.46815584482167,9.00769230769231,693.62339402538,176,25374,0,1,0,0,9 +"12346",2014,5095,"AR","05","095",7636,0.572420115243583,505,0.158459926663174,6.22455842927536,6.65672652417839,7.69984240739699,6.6,773.558368495077,33,4266,0,1,0,0,9 +"12347",2014,5097,"AR","05","097",9163,0.966168285496017,423,0.15573502128124,6.04737217904628,6.82328612235569,7.7944112057266,7.73846153846154,596.8306235851,29,4859,0,1,0,0,9 +"12348",2014,5099,"AR","05","099",8642,0.676000925711641,529,0.145105299699144,6.2709884318583,6.880384082186,7.80016307039296,5.87692307692308,593.41109064866,29,4887,0,1,0,0,9 +"12349",2014,5101,"AR","05","101",7869,0.976998347947643,372,0.164569830982336,5.91889385427315,6.68586094706836,7.65633716643018,5.70769230769231,395.073204740878,17,4303,0,1,0,0,9 +"12350",2014,5103,"AR","05","103",24767,0.578471353010054,1450,0.152703193765898,7.27931883541462,7.91169052070834,8.9082888855571,7.74615384615385,661.07477964174,93,14068,0,1,0,0,9 +"12351",2014,5105,"AR","05","105",10358,0.965244255647808,596,0.141436570766557,6.39024066706535,7.14440718032114,7.98718474823347,7.51538461538462,541.27198917456,32,5912,0,1,0,0,9 +"12352",2014,5107,"AR","05","107",19952,0.360866078588613,1337,0.136627906976744,7.19818357710194,7.63530388625941,8.67829111175856,9.38461538461539,801.790042886444,86,10726,0,1,0,0,9 +"12353",2014,5109,"AR","05","109",10988,0.943756825627958,604,0.135420458682199,6.40357419793482,7.21670948670946,8.02715010683277,7.10769230769231,533.635187580854,33,6184,0,1,0,0,9 +"12354",2014,5111,"AR","05","111",24151,0.910024429630243,1606,0.130346569500228,7.38150189450671,7.98786409608569,8.85023096558882,6.76923076923077,916.768930917491,127,13853,0,1,0,0,9 +"12355",2014,5113,"AR","05","113",20257,0.961593523226539,1120,0.140050352964407,7.02108396428914,7.68202151082687,8.6031873845831,6.10769230769231,552.124274752012,59,10686,0,1,0,0,9 +"12356",2014,5115,"AR","05","115",63145,0.941056298994378,6203,0.114941800617626,8.73278832497312,8.87276752991094,9.81689426995103,6.1,433.240367171211,160,36931,0,1,0,0,9 +"12357",2014,5117,"AR","05","117",8355,0.873488928785159,422,0.146977857570317,6.04500531403601,6.82110747225646,7.77064523412918,5.64615384615385,714.904679376083,33,4616,0,1,0,0,9 +"12358",2014,5119,"AR","05","119",393210,0.599788916863762,27621,0.128193586124463,10.226331631956,10.8256410646787,11.7279400657107,5.38461538461539,480.641976346029,1144,238015,0,1,0,0,9 +"12359",2014,5121,"AR","05","121",17579,0.978610842482508,1036,0.132828943625917,6.94312242281943,7.5923661285198,8.48879371689454,7.70769230769231,572.480065426293,56,9782,0,1,0,0,9 +"12360",2014,5123,"AR","05","123",27029,0.446890377002479,1804,0.129786525583632,7.49776170062257,8.25945819533241,8.84101431048389,8.51538461538462,555.622659741515,92,16558,0,1,0,0,9 +"12361",2014,5125,"AR","05","125",114906,0.914225540876891,6154,0.122273858632273,8.72485755588199,9.6566274746046,10.4245406964576,4.71538461538462,418.644016564399,277,66166,0,1,0,0,9 +"12362",2014,5127,"AR","05","127",10663,0.929288192816281,650,0.131201350464222,6.47697236288968,7.04925484125584,7.96797317966293,4.89230769230769,524.623455745473,31,5909,0,1,0,0,9 +"12363",2014,5129,"AR","05","129",7926,0.972874085288922,367,0.157708806459753,5.90536184805457,6.70563909486,7.6434829070772,6.20769230769231,720.595072059507,31,4302,0,1,0,0,9 +"12364",2014,5131,"AR","05","131",126852,0.848760760571375,8959,0.125232554472929,9.10041389259758,9.65963095962438,10.5336150579278,5.53846153846154,456.043586466671,339,74335,0,1,0,0,9 +"12365",2014,5133,"AR","05","133",17411,0.905232324392625,1179,0.106599276319568,7.07242190053737,7.6889133368648,8.45190772471761,6.75384615384615,449.27384808275,43,9571,0,1,0,0,9 +"12366",2014,5135,"AR","05","135",16821,0.973485524047322,877,0.146721360204506,6.77650699237218,7.43070708254597,8.40065937516029,8.26923076923077,762.663631189528,67,8785,0,1,0,0,9 +"12367",2014,5137,"AR","05","137",12392,0.980067785668173,582,0.162120723047127,6.36647044773144,7.11232744471091,8.09985791073758,7.46923076923077,686.184812442818,45,6558,0,1,0,0,9 +"12368",2014,5139,"AR","05","139",40156,0.65489590596673,2395,0.140078693096922,7.78113850984502,8.48218758221742,9.37118289709301,7.22307692307692,676.202860858258,156,23070,0,1,0,0,9 +"12369",2014,5141,"AR","05","141",16911,0.97782508426468,815,0.15120335876057,6.70318811324086,7.47760424319759,8.41847721847708,7.93076923076923,474.142683868122,43,9069,0,1,0,0,9 +"12370",2014,5143,"AR","05","143",220075,0.892931955015336,24022,0.0973486311484721,10.0867253561144,10.2410306441588,11.0847698636924,4.27692307692308,316.403123253742,419,132426,0,1,0,0,9 +"12371",2014,5145,"AR","05","145",78500,0.935910828025478,6846,0.114624203821656,8.83141981909013,9.14291769565875,10.0387175017962,6.87692307692308,471.907125132932,213,45136,0,1,0,0,9 +"12372",2014,5147,"AR","05","147",6869,0.710583782209929,384,0.153879749599651,5.95064255258773,6.64248680136726,7.56112158953024,7.43846153846154,712.025316455696,27,3792,0,1,0,0,9 +"12373",2014,5149,"AR","05","149",21771,0.952459694088466,1244,0.124339717973451,7.12608727329912,7.88833450073865,8.6978466911095,5.49230769230769,615.056585205839,75,12194,0,1,0,0,9 +"12374",2014,4001,"AZ","04","001",71808,0.231032754010695,5526,0.117591354723708,8.61721950548336,8.95144010094985,9.8779133014167,15.6846153846154,641.107834337736,250,38995,0,1,0,0,9 +"12375",2014,4003,"AZ","04","003",127437,0.897541530324788,8108,0.133571882577273,9.00060650757189,9.51118543095424,10.4360844527716,8.43076923076923,412.981871519916,290,70221,0,1,0,0,9 +"12376",2014,4005,"AZ","04","005",137675,0.67323769747594,19456,0.117922643907754,9.87591078476589,9.60562045502598,10.6602431343062,7.13076923076923,319.412945129843,269,84217,0,1,0,0,9 +"12377",2014,4007,"AZ","04","007",53074,0.805535667181671,2806,0.15979575686777,7.93951526066241,8.41980084540759,9.52449396163376,8.32307692307692,701.391708811695,190,27089,0,1,0,0,9 +"12378",2014,4009,"AZ","04","009",38123,0.821210292998977,3140,0.101880754400231,8.0519780789023,8.46083445774685,9.14002519806116,7.43846153846154,340.914397795732,73,21413,0,1,0,0,9 +"12379",2014,4011,"AZ","04","011",9356,0.925395468148781,597,0.11842667806755,6.3919171133926,7.05531284333975,7.84424071814181,6.65384615384615,204.347018391232,11,5383,0,1,0,0,9 +"12380",2014,4012,"AZ","04","012",20521,0.783928658447444,940,0.136640514594805,6.84587987526405,7.34729970074316,8.43315919580623,7.61538461538461,730.00774250636,66,9041,0,1,0,0,9 +"12381",2014,4013,"AZ","04","013",4094842,0.855813972797974,289773,0.110236731966703,12.5768531368265,13.205295445315,14.0026687327748,5.80769230769231,301.326808630281,7202,2390096,0,1,0,0,9 +"12382",2014,4015,"AZ","04","015",203670,0.935768645357686,10105,0.157362399960721,9.22078562983772,9.85911760480019,10.8741717682406,8.73076923076923,639.976047680087,684,106879,0,1,0,0,9 +"12383",2014,4017,"AZ","04","017",107741,0.511987080127342,7318,0.125495401007973,8.89809234557915,9.34696696950801,10.2625596210746,11.0846153846154,529.940791631424,307,57931,0,1,0,0,9 +"12384",2014,4019,"AZ","04","019",1004521,0.868145115930877,92217,0.125635004146255,11.4318997743272,11.6476486471314,12.5776741322778,6.04615384615385,372.668000438024,2144,575311,0,1,0,0,9 +"12385",2014,4021,"AZ","04","021",395563,0.843415587403271,22847,0.116904260509704,10.0365750966745,10.8659364163914,11.5247650990744,7.01538461538462,331.61236401871,738,222549,0,1,0,0,9 +"12386",2014,4023,"AZ","04","023",46596,0.967186024551464,3127,0.122306635762726,8.04782935745784,8.55275336681479,9.48516514242541,12.9538461538462,194.686676130602,48,24655,0,1,0,0,9 +"12387",2014,4025,"AZ","04","025",217882,0.950376809465674,10361,0.175489485134155,9.24580403625175,9.8882216188657,10.9836303249206,6.36923076923077,522.496118351041,599,114642,0,1,0,0,9 +"12388",2014,4027,"AZ","04","027",204064,0.924636388583974,17964,0.0953965422612514,9.79612503420763,10.006630611453,10.8630676325087,22.8923076923077,328.386019610918,356,108409,0,1,0,0,9 +"12389",2014,6001,"CA","06","001",1607638,0.537808884836014,108809,0.120514692984366,11.5973493305711,12.3781334066151,13.1582149598668,5.9,231.935058183709,2378,1025287,0,1,0,0,9 +"12390",2014,6005,"CA","06","005",36734,0.926553057113301,1748,0.1773833505744,7.46622755621548,8.28248300373056,9.14772000999452,8.39230769230769,418.843239681867,89,21249,0,1,0,0,9 +"12391",2014,6007,"CA","06","007",223525,0.890844424561011,26444,0.132973940275137,10.1827845684535,10.0494476379797,11.0949068907904,8.74615384615385,405.651983773921,538,132626,0,1,0,0,9 +"12392",2014,6009,"CA","06","009",44677,0.942140251135931,2019,0.189314412337444,7.61035761831284,8.30992298925832,9.42512911890764,8.10769230769231,418.886493960714,103,24589,0,1,0,0,9 +"12393",2014,6011,"CA","06","011",21156,0.925789374172811,1464,0.118075250519947,7.28892769452126,7.80547462527086,8.65172408437384,17.6692307692308,266.822313015926,32,11993,0,1,0,0,9 +"12394",2014,6013,"CA","06","013",1108665,0.696724438852133,68927,0.128738618067676,11.1408032525185,11.9071948003177,12.7322143766079,6.25384615384615,250.97492952588,1672,666202,0,1,0,0,9 +"12395",2014,6015,"CA","06","015",27182,0.811456110661467,1620,0.142042528143624,7.39018142822643,8.14322675036744,8.84606519069288,10.1846153846154,511.801541425819,85,16608,0,1,0,0,9 +"12396",2014,6017,"CA","06","017",183157,0.919336962278264,10169,0.168931572366877,9.22709915579114,9.9134378833893,10.8922291700685,7.06923076923077,315.357931251971,340,107814,0,1,0,0,9 +"12397",2014,6019,"CA","06","019",960072,0.786223324917298,78460,0.101707996900232,11.2703442197635,11.6632144121829,12.5138293671004,11.7153846153846,324.728334814869,1790,551230,0,1,0,0,9 +"12398",2014,6021,"CA","06","021",27802,0.91349543198331,1767,0.125350694194662,7.4770384723197,8.06211758275474,8.93708703617652,10.7846153846154,423.97379071112,66,15567,0,1,0,0,9 +"12399",2014,6023,"CA","06","023",134556,0.868367073932043,13409,0.144356253158536,9.50368140227964,9.68719547617102,10.6199605583996,6.76153846153846,463.563433732046,386,83268,0,1,0,0,9 +"12400",2014,6025,"CA","06","025",177786,0.908018629138402,14435,0.101537803876571,9.57741109209704,9.97278037903208,10.7783102479165,24.2615384615385,314.303787459477,318,101176,0,1,0,0,9 +"12401",2014,6027,"CA","06","027",18280,0.826750547045952,875,0.165590809628009,6.77422388635761,7.57198844937744,8.52753948347038,6.9,573.260785075787,59,10292,0,1,0,0,9 +"12402",2014,6029,"CA","06","029",869837,0.843255690433955,71289,0.100325693204589,11.1744973168005,11.5921709318548,12.3834905322958,10.5384615384615,371.473670468437,1878,505554,0,1,0,0,9 +"12403",2014,6031,"CA","06","031",149373,0.833678107824038,13132,0.091616289423122,9.48280727862148,9.91457584952155,10.5275257834437,12.0538461538462,283.084080360768,258,91139,0,1,0,0,9 +"12404",2014,6033,"CA","06","033",64056,0.900368427625827,3450,0.169148869738978,8.1461295100254,8.78737298873188,9.81290617430489,9.05384615384615,623.717685679114,228,36555,0,1,0,0,9 +"12405",2014,6035,"CA","06","035",31664,0.833880747852451,2586,0.123705154118242,7.8578675593318,8.45935219172639,8.78676220844109,9.20769230769231,277.366863905325,60,21632,0,1,0,0,9 +"12406",2014,6037,"CA","06","037",10033449,0.726258836816732,775487,0.112938232904757,13.5612464980798,14.1485605166956,14.9585530437533,8.22307692307692,244.44280392423,15397,6298815,0,1,0,0,9 +"12407",2014,6039,"CA","06","039",153357,0.873856426508082,11496,0.109567871045991,9.34975442775886,9.85864707806297,10.7420545524995,11.3076923076923,321.693266039194,283,87972,0,1,0,0,9 +"12408",2014,6041,"CA","06","041",260403,0.880892309228388,11522,0.155075018336962,9.35201353029233,10.4231143322552,11.2381201303321,4.32307692307692,199.690249448051,303,151735,0,1,0,0,9 +"12409",2014,6043,"CA","06","043",17745,0.921048182586644,886,0.189912651451113,6.78671695060508,7.35244110024358,8.50289140670538,9.00769230769231,476.758045292014,48,10068,0,1,0,0,9 +"12410",2014,6045,"CA","06","045",87247,0.88498171856912,4839,0.157071303311289,8.48446336679332,9.2223677521889,10.1162170655015,7.09230769230769,475.353519213869,238,50068,0,1,0,0,9 +"12411",2014,6047,"CA","06","047",264241,0.835453241548435,21926,0.095473450372955,9.99542842623448,10.3787274485771,11.1883719177425,12.9846153846154,323.374906912306,482,149053,0,1,0,0,9 +"12412",2014,6049,"CA","06","049",9078,0.90680766688698,415,0.165675258867592,6.0282785202307,6.84906628263346,7.80220931624712,10.4153846153846,569.105691056911,28,4920,0,1,0,0,9 +"12413",2014,6051,"CA","06","051",14130,0.926751592356688,1051,0.150530785562633,6.95749737087695,7.47420480649612,8.3485378253861,7.13846153846154,161.585694279866,15,9283,0,1,0,0,9 +"12414",2014,6053,"CA","06","053",427985,0.845950208535346,33014,0.109382338166057,10.4046869929075,10.9171771903974,11.6916237991467,9.23846153846154,229.447469956598,581,253217,0,1,0,0,9 +"12415",2014,6055,"CA","06","055",140331,0.865767364302969,9059,0.133805075143767,9.11151401766929,9.7852669211487,10.6163638282771,5.76153846153846,232.71436111511,194,83364,0,1,0,0,9 +"12416",2014,6057,"CA","06","057",98605,0.956756756756757,4774,0.184219867146696,8.47093980689877,9.23180827859142,10.2538979148951,6.62307692307692,377.11683506475,212,56216,0,1,0,0,9 +"12417",2014,6059,"CA","06","059",3126523,0.75306818468951,228695,0.117445481770005,12.3401445170696,12.9533409932737,13.7739278575139,5.56153846153846,211.770911533857,4079,1926138,0,1,0,0,9 +"12418",2014,6061,"CA","06","061",369241,0.882697208598178,20529,0.132498828678289,9.92959379962061,10.761258944931,11.5827126875435,6.33076923076923,257.828105152312,546,211769,0,1,0,0,9 +"12419",2014,6063,"CA","06","063",18631,0.932102409961891,918,0.199076807471419,6.82219739062049,7.42892719480227,8.56197533418813,11.7615384615385,537.944284341979,56,10410,0,1,0,0,9 +"12420",2014,6065,"CA","06","065",2315238,0.821875332039298,172789,0.106919461411743,12.0598264759185,12.5948289355751,13.4056035994286,8.3,282.804289123688,3786,1338735,0,1,0,0,9 +"12421",2014,6067,"CA","06","067",1474828,0.670822631520421,104944,0.118523651571573,11.5611821535335,12.1646358787428,13.0256718439702,7.38461538461539,327.280157844842,2931,895563,0,1,0,0,9 +"12422",2014,6069,"CA","06","069",57891,0.904112901832755,4012,0.118584926845278,8.29704514908183,8.90923527919226,9.73293645134109,9.43846153846154,235.828456633767,81,34347,0,1,0,0,9 +"12423",2014,6071,"CA","06","071",2098346,0.789082448747728,175192,0.107149154619877,12.0736377943414,12.5037372265352,13.3442821790187,8.09230769230769,324.522772340307,4075,1255690,0,1,0,0,9 +"12424",2014,6073,"CA","06","073",3249307,0.784817501085616,272612,0.11392090682721,12.5158048178186,12.9654405253224,13.8035240054181,6.51538461538462,229.751712286538,4658,2027406,0,1,0,0,9 +"12425",2014,6075,"CA","06","075",850918,0.560484088948641,51572,0.120159639354203,10.8507341685307,11.8222760698927,12.5602058620147,4.43076923076923,224.957081652261,1351,600559,0,1,0,0,9 +"12426",2014,6077,"CA","06","077",711296,0.704536508007918,52678,0.108569428198668,10.8719531900644,11.4168549962195,12.2265662105445,10.6461538461538,372.285268140104,1533,411781,0,1,0,0,9 +"12427",2014,6079,"CA","06","079",278271,0.911532283277812,30806,0.141613750624391,10.3354647551844,10.2892260304603,11.2818757420849,5.63846153846154,274.598167342647,457,166425,0,1,0,0,9 +"12428",2014,6081,"CA","06","081",757653,0.645074988154208,42888,0.128384629903135,10.6663473455074,11.6106146309235,12.3651255753848,4.27692307692308,179.525566953666,843,469571,0,1,0,0,9 +"12429",2014,6083,"CA","06","083",438921,0.879176434939317,51005,0.111357169057758,10.8396789461166,10.8113024659292,11.7455915328659,6.19230769230769,250.638110042797,653,260535,0,1,0,0,9 +"12430",2014,6085,"CA","06","085",1891286,0.581563549880875,122231,0.11220936442188,11.7136679760354,12.5504351009167,13.262417451018,5.2,185.257658078911,2187,1180518,0,1,0,0,9 +"12431",2014,6087,"CA","06","087",270863,0.898797547099456,28382,0.14055075813234,10.2535104203945,10.375520371583,11.3248835782414,8.86153846153846,254.870594976602,427,167536,0,1,0,0,9 +"12432",2014,6089,"CA","06","089",178904,0.910147341591021,11208,0.147168313732505,9.32438308801684,9.84686428959504,10.8567464625103,9.73076923076923,552.221592352953,565,102314,0,1,0,0,9 +"12433",2014,6093,"CA","06","093",43357,0.898793735728948,2179,0.177664506308093,7.68662133494462,8.3351915834332,9.39024233725137,11.2538461538462,604.720994244724,145,23978,0,1,0,0,9 +"12434",2014,6095,"CA","06","095",428971,0.630149823647752,31367,0.132652323816762,10.3535116638415,10.8716684006642,11.776381440996,7.63076923076923,335.828966291879,885,263527,0,1,0,0,9 +"12435",2014,6097,"CA","06","097",498317,0.89601598982174,32168,0.146852304858153,10.3787274485771,11.0073526874857,11.925074850107,5.67692307692308,269.028806010303,810,301083,0,1,0,0,9 +"12436",2014,6099,"CA","06","099",527814,0.861972209907278,39132,0.109688261395113,10.5746958255773,11.0979856128995,11.9392514637457,11.3,358.880501260315,1102,307066,0,1,0,0,9 +"12437",2014,6101,"CA","06","101",94721,0.764782888694165,6610,0.114504703286494,8.79633893284573,9.34215779659637,10.1995097492629,12.7923076923077,383.233532934132,208,54275,0,1,0,0,9 +"12438",2014,6103,"CA","06","103",62797,0.927369141837986,3867,0.135723044094463,8.2602342916073,8.83637393092739,9.7696132439798,9.72307692307692,434.696138875472,153,35197,0,1,0,0,9 +"12439",2014,6105,"CA","06","105",13126,0.909340240743562,578,0.202727411244858,6.35957386867238,7.13807303404435,8.20985248130127,9.63076923076923,610.727562400425,46,7532,0,1,0,0,9 +"12440",2014,6107,"CA","06","107",454858,0.89777908709971,35200,0.0955924706172036,10.4688013615862,10.9241923523277,11.7304532774988,13.2769230769231,329.354623662741,830,252008,0,1,0,0,9 +"12441",2014,6109,"CA","06","109",53830,0.929128738621587,3002,0.174085082667657,8.00703401219341,8.62640627638955,9.56388040721943,8.76923076923077,475.272960822094,148,31140,0,1,0,0,9 +"12442",2014,6111,"CA","06","111",842113,0.866001356112541,61226,0.124479731342468,11.0223272148842,11.5720336434498,12.43125411887,6.72307692307692,226.227717364318,1139,503475,0,1,0,0,9 +"12443",2014,6113,"CA","06","113",208368,0.781593142901021,30223,0.104061084235583,10.3163585029049,10.0876823537118,11.0881857901174,7.61538461538461,245.179811459828,316,128885,0,1,0,0,9 +"12444",2014,6115,"CA","06","115",73527,0.825927890434806,5818,0.113033307492486,8.66871183905515,9.06531459992592,9.9513725452567,11.3307692307692,413.434291819575,178,43054,0,1,0,0,9 +"12445",2014,8001,"CO","08","001",479954,0.883693020581139,31719,0.103126549627673,10.3646711494006,11.1559076050997,11.868941191673,5.69230769230769,305.613584661502,888,290563,0,1,0,0,9 +"12446",2014,8003,"CO","08","003",15807,0.895489340165749,1848,0.11830201809325,7.52185925220163,7.38523092306657,8.42200300441249,7.19230769230769,365.63071297989,34,9299,0,1,0,0,9 +"12447",2014,8005,"CO","08","005",619681,0.798249421879967,39299,0.122513034932489,10.578954352241,11.3913903992441,12.171258608701,4.88461538461539,261.390767351688,993,379891,0,1,0,0,9 +"12448",2014,8007,"CO","08","007",12240,0.942320261437908,520,0.195915032679739,6.25382881157547,7.09174211509515,8.16280135349207,6.02307692307692,345.522602936942,24,6946,0,1,0,0,9 +"12449",2014,8011,"CO","08","011",5821,0.866689572238447,406,0.12970280020615,6.00635315960173,6.7945865808765,6.92951677076365,5.3,409.83606557377,15,3660,0,1,0,0,9 +"12450",2014,8013,"CO","08","013",312525,0.922652587792977,33595,0.126738660907127,10.4221325253543,10.6165108871009,11.4851122383247,4.06153846153846,194.157085216758,384,197778,0,1,0,0,9 +"12451",2014,8014,"CO","08","014",61791,0.903222152093347,3539,0.119548154261948,8.17159948034546,9.1649245084457,9.84272854669056,4.22307692307692,226.333657920362,86,37997,0,1,0,0,9 +"12452",2014,8015,"CO","08","015",18471,0.953602945157274,937,0.17546424124303,6.84268328223842,7.65822752616135,8.49412925181769,4.36923076923077,420.667581161408,46,10935,0,1,0,0,9 +"12453",2014,8019,"CO","08","019",9124,0.963393248575186,402,0.210105217010083,5.99645208861902,7.12929754892937,7.9585769038139,4.61538461538461,233.683859122016,14,5991,0,1,0,0,9 +"12454",2014,8021,"CO","08","021",8230,0.937667071688943,478,0.139975698663426,6.16961073249146,6.70073110954781,7.66809370908241,7.78461538461538,458.505272810637,20,4362,0,1,0,0,9 +"12455",2014,8029,"CO","08","029",29973,0.963467120408368,1375,0.163146832148934,7.22620901010067,8.01994168767737,8.97017781549238,7.01538461538462,457.622868605817,73,15952,0,1,0,0,9 +"12456",2014,8031,"CO","08","031",664540,0.82022000180576,43512,0.104636289764348,10.6807920411028,11.5447147874596,12.2823528994277,4.78461538461538,308.327573034525,1356,439792,0,1,0,0,9 +"12457",2014,8035,"CO","08","035",314783,0.9269115549442,14367,0.116591429651538,9.57268918901072,10.8375199658864,11.461010925018,4,149.8953409316,280,186797,0,1,0,0,9 +"12458",2014,8037,"CO","08","037",53276,0.957335385539455,2932,0.122888354981605,7.98344006300654,9.0808010006212,9.69941106393914,4.16923076923077,169.784091230652,60,35339,0,1,0,0,9 +"12459",2014,8039,"CO","08","039",24035,0.965799875182026,1118,0.183940087372582,7.01929665371504,7.94307271727793,8.91314653915181,4.26153846153846,311.800989629228,46,14753,0,1,0,0,9 +"12460",2014,8041,"CO","08","041",662968,0.860990274040376,55582,0.114568123951684,10.925614686816,11.3230837021764,12.1922982121083,5.99230769230769,300.766107045844,1208,401641,0,1,0,0,9 +"12461",2014,8043,"CO","08","043",46185,0.926361372740067,2449,0.146476128613186,7.80343505695217,8.70317470904168,9.27021176901357,8.17692307692308,412.342314009155,118,28617,0,1,0,0,9 +"12462",2014,8045,"CO","08","045",57174,0.954174974638822,3218,0.131703221744149,8.07651532755233,8.98931956604295,9.73613342286396,5.21538461538462,271.14967462039,95,35036,0,1,0,0,9 +"12463",2014,8049,"CO","08","049",14569,0.971858054773835,763,0.186491866291441,6.63725803128446,7.56060116276856,8.39344238398006,3.98461538461538,292.73392577104,28,9565,0,1,0,0,9 +"12464",2014,8051,"CO","08","051",15786,0.957747371088306,2125,0.131192195616369,7.66152708135852,7.62608275807238,8.45276133125685,4.02307692307692,154.64913976416,16,10346,0,1,0,0,9 +"12465",2014,8055,"CO","08","055",6399,0.91217377715268,296,0.193467729332708,5.69035945432406,6.23441072571837,7.44541755670169,9.97692307692308,581.73356602676,20,3438,0,1,0,0,9 +"12466",2014,8059,"CO","08","059",559099,0.936220597783219,33338,0.146453490347863,10.414453166503,11.1851988734636,12.0624101057062,4.53846153846154,280.174958175321,973,347283,0,1,0,0,9 +"12467",2014,8065,"CO","08","065",7333,0.952952406927588,517,0.145233874267012,6.24804287450843,6.92951677076365,7.6657534318617,4.60769230769231,362.55065045852,17,4689,0,1,0,0,9 +"12468",2014,8067,"CO","08","067",53941,0.903876457611094,3688,0.157264418531358,8.21283958467648,8.8321499060029,9.72830048464277,4.20769230769231,311.81973289404,106,33994,0,1,0,0,9 +"12469",2014,8069,"CO","08","069",324272,0.946686732126116,36388,0.129286524892683,10.501994328942,10.5752323268356,11.5109234622996,4.23846153846154,243.925508136658,490,200881,0,1,0,0,9 +"12470",2014,8071,"CO","08","071",14054,0.923793937668991,842,0.161875622598548,6.73578001424233,7.27100853828099,8.21256839823415,7.48461538461538,597.812261511066,47,7862,0,1,0,0,9 +"12471",2014,8075,"CO","08","075",22446,0.926623897353649,1762,0.129599928717812,7.47420480649612,7.94236223767433,8.5850387383113,3.77692307692308,347.146886526361,48,13827,0,1,0,0,9 +"12472",2014,8077,"CO","08","077",147215,0.957572258261726,10012,0.138695105797643,9.21153965255166,9.72304423075395,10.6566003142635,6.20769230769231,351.469141009419,300,85356,0,1,0,0,9 +"12473",2014,8081,"CO","08","081",12941,0.965767715014296,740,0.148752028436751,6.60665018619822,7.31986492980897,8.22121009392507,5.7,392.105607110182,30,7651,0,1,0,0,9 +"12474",2014,8083,"CO","08","083",25551,0.843215529724864,1270,0.162341982701264,7.14677217945264,7.92407232492342,8.89863879368018,6.08461538461538,393.401891089792,57,14489,0,1,0,0,9 +"12475",2014,8085,"CO","08","085",40622,0.958470779380631,1922,0.150140318054256,7.56112158953024,8.39298958795693,9.31820774284519,6.76923076923077,426.11060743427,94,22060,0,1,0,0,9 +"12476",2014,8087,"CO","08","087",28098,0.931738913801694,1780,0.121823617339312,7.48436864328613,8.06557942728209,8.95053283629038,4.58461538461538,285.823170731707,45,15744,0,1,0,0,9 +"12477",2014,8089,"CO","08","089",18334,0.92729355296171,1145,0.138704047125559,7.04315991598834,7.58731050602262,8.51959031601596,7.60769230769231,755.058894593778,75,9933,0,1,0,0,9 +"12478",2014,8093,"CO","08","093",16392,0.963884821864324,622,0.23590775988287,6.43294009273918,7.52671756135271,8.53993267838573,4.6,336.448598130841,36,10700,0,1,0,0,9 +"12479",2014,8097,"CO","08","097",17730,0.965313028764805,890,0.167061477721376,6.79122146272619,7.82084087990734,8.63852547658376,4.86153846153846,238.643143271116,28,11733,0,1,0,0,9 +"12480",2014,8099,"CO","08","099",12064,0.964190981432361,738,0.136024535809019,6.60394382460047,7.23345541862144,8.090708716084,4.67692307692308,291.948371235403,19,6508,0,1,0,0,9 +"12481",2014,8101,"CO","08","101",161434,0.922079611482092,10801,0.135628182415105,9.28739400141847,9.84394983981993,10.7489480116493,7.27692307692308,502.610753481909,463,92119,0,1,0,0,9 +"12482",2014,8105,"CO","08","105",11505,0.946892655367232,686,0.151064754454585,6.53087762772588,7.10496544826984,8.07215530818825,9.21538461538461,514.258999532492,33,6417,0,1,0,0,9 +"12483",2014,8107,"CO","08","107",24085,0.97268009134316,1453,0.162092588748184,7.28138566357028,8.17018565287964,8.9278448262117,4.14615384615385,202.26281524556,32,15821,0,1,0,0,9 +"12484",2014,8117,"CO","08","117",29333,0.966795077216787,2026,0.143592540824328,7.61381868480863,8.45744318701046,9.15101490589137,3.36923076923077,119.007949731042,25,21007,0,1,0,0,9 +"12485",2014,8119,"CO","08","119",23458,0.963253474294484,1043,0.210248102992582,6.94985645500077,7.79729127354747,8.88044645071509,5.83076923076923,445.34131236518,64,14371,0,1,0,0,9 +"12486",2014,8123,"CO","08","123",277480,0.94402479457979,19250,0.115237134207871,9.86526633971593,10.5269898633902,11.2983451443165,4.45384615384615,273.49425539968,448,163806,0,1,0,0,9 +"12487",2014,8125,"CO","08","125",10191,0.977921695613777,554,0.124816014130115,6.31716468674728,7.0475172213573,7.88795933659994,3.32307692307692,310.21897810219,17,5480,0,1,0,0,9 +"12488",2014,9001,"CT","09","001",944524,0.808737522815725,57539,0.128750566422875,10.9602182577401,11.7127430693809,12.5574933098864,6.18461538461538,224.306870357053,1257,560393,0,1,0,0,9 +"12489",2014,9003,"CT","09","003",897618,0.780295181246365,58374,0.133538988745769,10.9746258642035,11.6092714717569,12.5166738075903,6.75384615384615,294.903131095484,1589,538821,0,1,0,0,9 +"12490",2014,9005,"CT","09","005",185380,0.954331643111447,9902,0.165972596828137,9.20049203592137,9.93885469637342,10.9258125730321,6.03846153846154,332.225913621262,368,110768,0,1,0,0,9 +"12491",2014,9007,"CT","09","007",164857,0.906409797582147,9772,0.153975869996421,9.18727643237763,9.85240476230681,10.8242482790817,5.70769230769231,275.800980402025,274,99347,0,1,0,0,9 +"12492",2014,9009,"CT","09","009",863149,0.799507385167567,60774,0.132641061971919,11.0149173449149,11.5522038687671,12.4906047620758,7.21538461538462,299.68007127526,1554,518553,0,1,0,0,9 +"12493",2014,9011,"CT","09","011",271593,0.858681924791876,20820,0.140287120802083,9.94366934216896,10.3521079309582,11.299806499178,6.79230769230769,312.871572524952,521,166522,0,1,0,0,9 +"12494",2014,9013,"CT","09","013",151766,0.911508506516611,18862,0.133350025697455,9.84490459510383,9.68961340722907,10.7291312153856,5.80769230769231,255.159717063402,237,92883,0,1,0,0,9 +"12495",2014,9015,"CT","09","015",116810,0.940458864823217,8177,0.141246468624262,9.00908061416198,9.5760246100725,10.4848089179138,7.38461538461539,324.6436583021,233,71771,0,1,0,0,9 +"12496",2014,11001,"DC","11","001",663603,0.444571528459033,56302,0.104374151412818,10.9384853374755,11.4346287321951,12.3606418092094,7.70769230769231,355.862328279641,1590,446802,1,1,1,0,9 +"12497",2014,10001,"DE","10","001",171600,0.69738344988345,13590,0.118700466200466,9.51708950714519,9.90128512898093,10.8495312425596,6.29230769230769,446.863420463332,445,99583,1,1,1,0,9 +"12498",2014,10003,"DE","10","003",551124,0.679883293052017,39790,0.127443188828648,10.591370903421,11.1445249009989,12.0587957867711,5.4,339.455389039593,1145,337305,1,1,1,0,9 +"12499",2014,10005,"DE","10","005",210407,0.834696564277804,11081,0.156710565713118,9.31298720893633,9.95835445397697,10.9848858604696,5.65384615384615,398.826162299607,458,114837,1,1,1,0,9 +"12500",2014,12001,"FL","12","001",255606,0.718590330430428,43725,0.112876849526224,10.6856752998868,10.1859183612052,11.3436070003509,5.36923076923077,290.720563028824,480,165107,0,1,0,0,9 +"12501",2014,12003,"FL","12","003",27123,0.853814106109206,1777,0.122368469564576,7.48268182815465,8.1786387885907,8.92691588977704,6.59230769230769,422.612849880566,69,16327,0,1,0,0,9 +"12502",2014,12005,"FL","12","005",178435,0.843601311401911,12405,0.13102250119091,9.4258548961259,9.97548257970728,10.8919500977032,6.53076923076923,542.188774375324,585,107896,0,1,0,0,9 +"12503",2014,12007,"FL","12","007",26562,0.791280777049921,1789,0.134251938860026,7.48941208350872,8.10198073185319,8.80986280537906,5.79230769230769,569.025235032162,92,16168,0,1,0,0,9 +"12504",2014,12009,"FL","12","009",555838,0.85394665352135,31854,0.152119862262026,10.3689182418117,10.9544315475027,11.9834664498146,7.18461538461538,468.984512087933,1478,315149,0,1,0,0,9 +"12505",2014,12011,"FL","12","011",1861259,0.656128459284817,116372,0.126636325197084,11.6645472355145,12.4308069309557,13.2665745377485,6.09230769230769,296.284967954465,3371,1137756,0,1,0,0,9 +"12506",2014,12013,"FL","12","013",14456,0.834739900387382,850,0.126521859435528,6.74523634948436,7.57353126274595,8.19505769089508,7.14615384615385,434.832360682,38,8739,0,1,0,0,9 +"12507",2014,12015,"FL","12","015",168208,0.915521259393132,6864,0.166127651479121,8.8340456411678,9.490544554572,10.629126124296,7.06923076923077,511.820316285079,412,80497,0,1,0,0,9 +"12508",2014,12017,"FL","12","017",138907,0.944452043453534,5728,0.16053186664459,8.65312170864048,9.33184978937338,10.4583204922951,8.78461538461539,709.632213724526,476,67077,0,1,0,0,9 +"12509",2014,12019,"FL","12","019",198687,0.842435589646026,12441,0.128619386270868,9.42875274891449,10.1666976130634,11.000515253074,5.90769230769231,346.181842804665,409,118146,0,1,0,0,9 +"12510",2014,12021,"FL","12","021",347401,0.903670398185382,17482,0.130250056850729,9.76892705914043,10.4762169796169,11.390757830996,6.13846153846154,264.048516785536,465,176104,0,1,0,0,9 +"12511",2014,12023,"FL","12","023",67821,0.792306217838133,4806,0.138187287123457,8.47762041629641,8.98544528762317,9.82973336394747,6.85384615384615,569.53609152721,227,39857,0,1,0,0,9 +"12512",2014,12027,"FL","12","027",35333,0.844281549825942,2655,0.115218068094982,7.88419993367604,8.33758794211651,8.98143022576764,7.36153846153846,311.073202548793,62,19931,0,1,0,0,9 +"12513",2014,12029,"FL","12","029",16041,0.896889221370239,846,0.149865968455832,6.74051935960622,7.47477218239787,8.28652137368124,7.60769230769231,745.695799978068,68,9119,0,1,0,0,9 +"12514",2014,12031,"FL","12","031",897094,0.630557109957262,66698,0.123580137644439,11.1079302464467,11.6450583801809,12.5630195524836,6.91538461538462,426.597855150801,2374,556496,0,1,0,0,9 +"12515",2014,12033,"FL","12","033",308200,0.712916937053861,27912,0.129390006489293,10.2368119828666,10.4131925486334,11.4227053089876,6.61538461538461,488.584351217398,902,184615,0,1,0,0,9 +"12516",2014,12035,"FL","12","035",101961,0.849442433871775,4849,0.153186022106492,8.48652777710535,9.26131861674081,10.23985264056,7.54615384615385,486.21753031765,257,52857,0,1,0,0,9 +"12517",2014,12037,"FL","12","037",11656,0.835706932052162,715,0.140957446808511,6.57228254269401,7.27724772663148,7.91205688817901,5.78461538461538,574.084199015856,42,7316,0,1,0,0,9 +"12518",2014,12039,"FL","12","039",46113,0.419903281070414,3068,0.143603755990718,8.02878116248715,8.68033192879342,9.5869257805337,8.47692307692308,471.934215230604,132,27970,0,1,0,0,9 +"12519",2014,12041,"FL","12","041",17007,0.92650085259011,1492,0.140295172575998,7.30787278076371,7.49831587076698,8.41316512099219,6.93076923076923,529.760049859769,51,9627,0,1,0,0,9 +"12520",2014,12043,"FL","12","043",12956,0.793377585674591,688,0.127276937326335,6.53378883793334,7.39203156751459,7.96554557312999,7.9,308.476394849785,23,7456,0,1,0,0,9 +"12521",2014,12045,"FL","12","045",16011,0.795015926550497,986,0.136968334270189,6.89365635460264,7.71912984090673,8.15851624480683,6.25384615384615,472.107139416129,49,10379,0,1,0,0,9 +"12522",2014,12047,"FL","12","047",14071,0.63748134460948,1375,0.141780967948262,7.22620901010067,7.4489161025442,8.13094230223188,7.85384615384615,616.227319411161,54,8763,0,1,0,0,9 +"12523",2014,12049,"FL","12","049",27259,0.896584614255842,2142,0.101434388642283,7.66949525100769,8.09529377684465,8.82202732268558,7.97692307692308,359.242325277596,55,15310,0,1,0,0,9 +"12524",2014,12051,"FL","12","051",38467,0.832661762029792,2782,0.103283333766605,7.93092537248339,8.48714627006394,9.24271075200663,11.6769230769231,389.908256880734,85,21800,0,1,0,0,9 +"12525",2014,12053,"FL","12","053",175411,0.919395020836778,8887,0.142459708912212,9.09234481373847,9.7960136942309,10.7715539601233,8.16153846153846,515.503493358779,470,91173,0,1,0,0,9 +"12526",2014,12055,"FL","12","055",98636,0.867421631047488,4691,0.132132284358652,8.45340105832846,9.04876217632013,10.0580095919723,8.7,528.315067895036,242,45806,0,1,0,0,9 +"12527",2014,12057,"FL","12","057",1332742,0.767172490999758,95372,0.117532125497658,11.4655403133083,12.1125858024367,12.9465327091407,5.95384615384615,336.663054526725,2706,803771,0,1,0,0,9 +"12528",2014,12059,"FL","12","059",19578,0.911482276024109,1346,0.133517213198488,7.20489251020467,7.77863014732581,8.53306654057253,7.16153846153846,579.88575385148,67,11554,0,1,0,0,9 +"12529",2014,12061,"FL","12","061",144532,0.881105914261202,6783,0.14832009520383,8.82217476094608,9.49762236440662,10.5417296609267,8.10769230769231,451.148440178265,329,72925,0,1,0,0,9 +"12530",2014,12063,"FL","12","063",48737,0.704741777294458,3342,0.134702587356628,8.11432470915534,8.82951909478078,9.40459049963541,6.88461538461539,465.443343155639,139,29864,0,1,0,0,9 +"12531",2014,12065,"FL","12","065",14061,0.628973757200768,743,0.162790697674419,6.61069604471776,7.4593388952203,8.25971696102152,6.78461538461538,467.453546803786,40,8557,0,1,0,0,9 +"12532",2014,12067,"FL","12","067",8860,0.835440180586907,801,0.107562076749436,6.68586094706836,7.20191631753163,7.54486106865846,5.28461538461538,214.247455811462,12,5601,0,1,0,0,9 +"12533",2014,12069,"FL","12","069",315493,0.857616492283505,16111,0.131090071729008,9.68725754749099,10.4562225793793,11.3520874748431,6.56923076923077,428.979114533788,708,165043,0,1,0,0,9 +"12534",2014,12071,"FL","12","071",677710,0.880915140694397,35874,0.139201133228077,10.487768078109,11.1851017220808,12.1221147836328,6.19230769230769,375.251718630651,1351,360025,0,1,0,0,9 +"12535",2014,12073,"FL","12","073",283923,0.635584295742155,49507,0.109156355772516,10.8098693527002,10.310717768591,11.4635041016365,5.70769230769231,261.650051336402,474,181158,0,1,0,0,9 +"12536",2014,12075,"FL","12","075",39317,0.887173487295572,2117,0.155657857924053,7.65775527113487,8.31115254800169,9.33485624667375,7.04615384615385,707.374954362906,155,21912,0,1,0,0,9 +"12537",2014,12077,"FL","12","077",8419,0.781327948687493,578,0.116522152274617,6.35957386867238,7.20563517641036,7.5251007461258,6.83846153846154,549.547952490693,31,5641,0,1,0,0,9 +"12538",2014,12079,"FL","12","079",18607,0.591014134465524,1293,0.143064438114688,7.16472037877186,7.70255611326858,8.53050420547591,7.32307692307692,590.868397493286,66,11170,0,1,0,0,9 +"12539",2014,12081,"FL","12","081",351080,0.875111085792412,18152,0.141691352398314,9.80653602645968,10.5217225915309,11.4788204443203,5.9,433.970644106614,811,186879,0,1,0,0,9 +"12540",2014,12083,"FL","12","083",338165,0.838697085742167,18114,0.136690668756376,9.80444039893489,10.4250750589461,11.4239849556736,7.49230769230769,537.492542792896,937,174328,0,1,0,0,9 +"12541",2014,12085,"FL","12","085",153218,0.914004881932932,7424,0.14972783876568,8.91247327446604,9.58266226149109,10.5736475404501,6.22307692307692,390.673912499061,312,79862,0,1,0,0,9 +"12542",2014,12086,"FL","12","086",2634056,0.784520906161448,183326,0.115546138730536,12.1190212677405,12.8333791241497,13.6229495565278,6.76923076923077,259.998493818583,4281,1646548,0,1,0,0,9 +"12543",2014,12087,"FL","12","087",76353,0.908202690136602,4033,0.169554568910193,8.30226579487337,9.15693959524907,10.0390231853288,4.23846153846154,477.470028937577,231,48380,0,1,0,0,9 +"12544",2014,12089,"FL","12","089",76309,0.918528613924963,4104,0.152603231597846,8.3197173868506,9.09346942024477,10.0186894822248,6.13076923076923,502.899601304821,222,44144,0,1,0,0,9 +"12545",2014,12091,"FL","12","091",195074,0.84183950705886,15185,0.123681269672022,9.62806337747985,10.0074871425546,10.9538370379556,5.3,366.183461273579,436,119066,0,1,0,0,9 +"12546",2014,12093,"FL","12","093",39550,0.885056890012642,2543,0.120657395701643,7.84109976542212,8.47574600150206,9.21024036697585,7.56923076923077,478.383332588188,107,22367,0,1,0,0,9 +"12547",2014,12095,"FL","12","095",1257031,0.700125136134272,107913,0.107606733644596,11.5890806259166,12.0819709390531,12.9078722853693,5.99230769230769,273.478946013649,2178,796405,0,1,0,0,9 +"12548",2014,12097,"FL","12","097",311150,0.814388558573035,21923,0.107301944399807,9.99529159301117,10.7030197238001,11.4577403969198,6.90769230769231,290.851974218708,537,184630,0,1,0,0,9 +"12549",2014,12099,"FL","12","099",1399064,0.768134266909877,81334,0.125990662328528,11.3063194122949,12.0068775275346,12.8839335845524,6.03076923076923,333.175414023235,2588,776768,0,1,0,0,9 +"12550",2014,12101,"FL","12","101",483590,0.90857958187721,25202,0.131417109534937,10.1346786354296,10.9882713332677,11.826143696566,6.87692307692308,493.088887140347,1316,266889,0,1,0,0,9 +"12551",2014,12103,"FL","12","103",936862,0.84388949493095,51025,0.153541289965865,10.840070987678,11.5568945023524,12.5433053072406,5.92307692307692,468.770910904194,2557,545469,0,1,0,0,9 +"12552",2014,12105,"FL","12","105",634624,0.808584295582896,40936,0.12292317970956,10.6197651504849,11.2210211580852,12.094084661082,7.4,431.930982215612,1516,350982,0,1,0,0,9 +"12553",2014,12107,"FL","12","107",71987,0.815161070748885,4261,0.150693875283037,8.35725915349991,8.90313563303554,9.9082263068833,8.98461538461538,656.690979271624,262,39897,0,1,0,0,9 +"12554",2014,12109,"FL","12","109",218009,0.907687297313414,11443,0.14178313739341,9.34513346831771,10.2293320860823,11.0764339782569,4.82307692307692,313.832590676058,393,125226,0,1,0,0,9 +"12555",2014,12111,"FL","12","111",290207,0.761342765681048,16376,0.132856891804815,9.70357212734113,10.4029589604634,11.3053230225873,8.21538461538461,446.36111810627,709,158840,0,1,0,0,9 +"12556",2014,12113,"FL","12","113",162840,0.894123065585851,10233,0.128113485630066,9.23337307108675,9.95327721703864,10.7665040819508,5.61538461538461,353.004064589658,350,99149,0,1,0,0,9 +"12557",2014,12115,"FL","12","115",396636,0.926204378825926,17335,0.15259330973487,9.76048285811912,10.4795108551475,11.5288283412496,6.01538461538462,416.08027901854,816,196116,0,1,0,0,9 +"12558",2014,12117,"FL","12","117",441583,0.820584125747594,30219,0.128453767468403,10.3162261446108,10.9868000608592,11.8582724896164,5.87692307692308,298.199125477228,817,273978,0,1,0,0,9 +"12559",2014,12119,"FL","12","119",112354,0.901534435801129,2968,0.165423571924453,7.99564360428727,8.90231952852887,9.94112046734298,8.58461538461538,471.952535059331,210,44496,0,1,0,0,9 +"12560",2014,12121,"FL","12","121",43777,0.845740914178678,2746,0.133768874066291,7.91790058632792,8.50228257868048,9.32215004702819,6.46923076923077,466.191178228474,117,25097,0,1,0,0,9 +"12561",2014,12123,"FL","12","123",22591,0.76711964941791,1526,0.135540702049489,7.3304052118444,7.95191138185419,8.5972974356579,7.06923076923077,504.868373602596,70,13865,0,1,0,0,9 +"12562",2014,12125,"FL","12","125",15260,0.755766710353866,1011,0.148492791612058,6.91869521902047,7.63240112660145,7.98104975966596,6.15384615384615,1115.64896902082,112,10039,0,1,0,0,9 +"12563",2014,12127,"FL","12","127",507050,0.85780495020215,31797,0.149127304999507,10.3671272246954,10.8915778800261,11.886218559372,7.03076923076923,522.783938119167,1495,285969,0,1,0,0,9 +"12564",2014,12129,"FL","12","129",31418,0.829588134190591,1806,0.132153542555223,7.49886973397693,8.44741429680832,9.04522985191258,5.33846153846154,441.358789982643,89,20165,0,1,0,0,9 +"12565",2014,12131,"FL","12","131",61244,0.912922082163151,3268,0.149239109137222,8.09193345597989,8.93931874041751,9.7771303636596,5.46153846153846,472.135800447574,173,36642,0,1,0,0,9 +"12566",2014,12133,"FL","12","133",24300,0.816666666666667,1638,0.130946502057613,7.40123126441302,8.08116577772543,8.73809423017767,6.93076923076923,519.217801753203,77,14830,0,1,0,0,9 +"12567",2014,13001,"GA","13","001",18469,0.786723699171585,1140,0.13189669175375,7.03878354138854,7.72356247227797,8.55043452519604,8.88461538461539,703.689615823507,74,10516,0,1,0,0,9 +"12568",2014,13003,"GA","13","003",8211,0.78163439288759,558,0.120448179271709,6.32435896238131,6.99668148817654,7.74500280351584,7.61538461538461,421.674045962471,20,4743,0,1,0,0,9 +"12569",2014,13005,"GA","13","005",11178,0.820450885668277,687,0.127482555018787,6.53233429222235,7.34536484041687,8.06526520889773,7.00769230769231,554.95606597811,36,6487,0,1,0,0,9 +"12570",2014,13009,"GA","13","009",45920,0.55418118466899,6010,0.121559233449477,8.70118002752925,8.45446636150793,9.49265808192881,8.74615384615385,460.679048171793,127,27568,0,1,0,0,9 +"12571",2014,13011,"GA","13","011",18220,0.952305159165752,1091,0.132875960482986,6.99484998583307,7.80791662892641,8.56598335558567,6.66923076923077,568.81760537113,61,10724,0,1,0,0,9 +"12572",2014,13013,"GA","13","013",72843,0.833367653721016,4319,0.107601279464053,8.3707791729607,9.27096499379262,9.99501787038172,6.30769230769231,410.421950657136,178,43370,0,1,0,0,9 +"12573",2014,13015,"GA","13","015",101251,0.870539550226664,6498,0.121638304806866,8.77924971622905,9.53227893310605,10.3256786645599,7.21538461538462,470.595978543456,286,60774,0,1,0,0,9 +"12574",2014,13017,"GA","13","017",17462,0.626961401901271,1079,0.134177070209598,6.98378996525813,7.63191651307125,8.54090971803355,10.0307692307692,652.15210193639,65,9967,0,1,0,0,9 +"12575",2014,13019,"GA","13","019",18813,0.874235900706958,1125,0.127305586562483,7.02553831463852,7.77275271646874,8.60758219114392,8.59230769230769,452.614077221504,49,10826,0,1,0,0,9 +"12576",2014,13021,"GA","13","021",154447,0.424987212441809,11665,0.125602957648902,9.36434818445553,9.81929039373537,10.7667150034677,8.05384615384615,562.649506418247,501,89043,0,1,0,0,9 +"12577",2014,13023,"GA","13","023",12706,0.71745631984889,1089,0.114119313710058,6.99301512293296,7.24992553671799,8.21662849313344,11.2769230769231,518.861309774225,37,7131,0,1,0,0,9 +"12578",2014,13025,"GA","13","025",18368,0.958787020905923,1085,0.132948606271777,6.98933526597456,7.7828072628397,8.60721669406383,9.3,522.485538346706,56,10718,0,1,0,0,9 +"12579",2014,13027,"GA","13","027",15524,0.621940221592373,882,0.141136305076011,6.78219205600679,7.47079377419506,8.42507790250843,7.22307692307692,597.924187725632,53,8864,0,1,0,0,9 +"12580",2014,13029,"GA","13","029",33726,0.812963292415347,1909,0.104074008183597,7.55433482372575,8.54130026675947,9.21959739323886,6.46923076923077,434.168012924071,86,19808,0,1,0,0,9 +"12581",2014,13031,"GA","13","031",72667,0.681272104256402,13004,0.0965637772303797,9.4730122814238,8.9182485910357,10.0254839218454,7.36153846153846,260.646857505496,115,44121,0,1,0,0,9 +"12582",2014,13033,"GA","13","033",22629,0.49661938220867,1541,0.135666622475584,7.34018683532012,7.85166117788927,8.8321499060029,10.0615384615385,615.905766417738,80,12989,0,1,0,0,9 +"12583",2014,13035,"GA","13","035",23337,0.708317264429875,1683,0.12628015597549,7.42833319419081,8.03560269291858,8.75194905805861,7.50769230769231,604.670558798999,87,14388,0,1,0,0,9 +"12584",2014,13037,"GA","13","037",6513,0.358974358974359,467,0.126055581145401,6.1463292576689,6.92461239604856,7.28069719538474,6.98461538461538,465.657741559953,20,4295,0,1,0,0,9 +"12585",2014,13039,"GA","13","039",52000,0.768038461538462,5451,0.106230769230769,8.60355435706428,8.67624612127084,9.62648162008158,6.63846153846154,411.822472835556,130,31567,0,1,0,0,9 +"12586",2014,13043,"GA","13","043",10853,0.733806320832949,650,0.131023680088455,6.47697236288968,7.19218205871325,8.01994168767737,6.94615384615385,664.893617021277,40,6016,0,1,0,0,9 +"12587",2014,13045,"GA","13","045",113970,0.785601474072124,10922,0.110941475826972,9.2985343827121,9.57581647186798,10.442200679789,8.22307692307692,478.802253187074,323,67460,0,1,0,0,9 +"12588",2014,13047,"GA","13","047",65516,0.951340130655107,3815,0.124916051040967,8.24669594371856,9.09851455679393,9.8857817254172,6.15384615384615,406.31225752333,155,38148,0,1,0,0,9 +"12589",2014,13049,"GA","13","049",13046,0.657902805457611,1021,0.112448260003066,6.92853781816467,7.56112158953024,8.00168997809913,7.40769230769231,437.455663277371,37,8458,0,1,0,0,9 +"12590",2014,13051,"GA","13","051",282396,0.551498604796102,24766,0.116503066615674,10.117227023775,10.4262022206945,11.3948623901065,7.35384615384615,389.080313576764,673,172972,0,1,0,0,9 +"12591",2014,13053,"GA","13","053",11738,0.738456295791447,2980,0.0297324927585619,7.99967857949945,6.99209642741589,7.71423114484909,9.74615384615385,139.029322548028,11,7912,0,1,0,0,9 +"12592",2014,13055,"GA","13","055",24871,0.878975513650436,1564,0.133810461983837,7.35500192110526,8.0684029585697,8.8305430106166,7.62307692307692,574.869969887764,84,14612,0,1,0,0,9 +"12593",2014,13057,"GA","13","057",230239,0.905580722640387,13143,0.117100056897398,9.48364457648201,10.4526200104567,11.1555359800936,5.49230769230769,254.950530905509,352,138066,0,1,0,0,9 +"12594",2014,13059,"GA","13","059",120437,0.660918156380514,24417,0.0860865016564677,10.1030348899952,9.48387280882352,10.6061394201103,6.96923076923077,270.287418311021,213,78805,0,1,0,0,9 +"12595",2014,13063,"GA","13","063",266757,0.223030698350934,20622,0.106040328838606,9.93411374607789,10.5298002449089,11.376578684286,9.35384615384615,380.812934105213,619,162547,0,1,0,0,9 +"12596",2014,13065,"GA","13","065",6780,0.702949852507375,488,0.131858407079646,6.19031540585315,6.72262979485545,7.60290046220476,8.41538461538462,515.463917525773,20,3880,0,1,0,0,9 +"12597",2014,13067,"GA","13","067",727847,0.657807203986552,48457,0.115987288537289,10.788432085727,11.5892752081907,12.3661400725498,5.94615384615385,254.03430672828,1155,454663,0,1,0,0,9 +"12598",2014,13069,"GA","13","069",42893,0.701676264192292,3338,0.113118690695451,8.11312710422178,8.63958779962984,9.40368429205187,8.18461538461538,489.624621123805,126,25734,0,1,0,0,9 +"12599",2014,13071,"GA","13","071",45880,0.73833914559721,3047,0.114167393199651,8.02191277898571,8.66198593631778,9.47876316948915,8.10769230769231,550.87987758225,144,26140,0,1,0,0,9 +"12600",2014,13073,"GA","13","073",139223,0.774922247042515,8584,0.120806188632625,9.05765528431053,9.86479869792102,10.6654375865307,5.81538461538462,267.585015239147,223,83338,0,1,0,0,9 +"12601",2014,13075,"GA","13","075",17307,0.706766048419715,983,0.119084763390536,6.89060912014717,7.68524360797583,8.53188474015923,8.14615384615385,526.370110434513,51,9689,0,1,0,0,9 +"12602",2014,13077,"GA","13","077",135191,0.78847704359018,8061,0.11955677522912,8.9947928972836,9.8636546520344,10.6294648776868,6.17692307692308,293.38945283486,237,80780,0,1,0,0,9 +"12603",2014,13079,"GA","13","079",12395,0.768455022186366,724,0.144009681323114,6.58479139238572,7.2591161280971,8.20658361432075,7.49230769230769,485.175202156334,36,7420,0,1,0,0,9 +"12604",2014,13081,"GA","13","081",23064,0.539195282691641,1489,0.137010058966354,7.30586003268401,7.87169266432365,8.83971137870348,8.86923076923077,575.992627294371,75,13021,0,1,0,0,9 +"12605",2014,13083,"GA","13","083",16299,0.968157555678262,1438,0.145469047180809,7.27100853828099,7.55171221535131,8.49433389727015,6.33076923076923,535.475234270415,52,9711,0,1,0,0,9 +"12606",2014,13085,"GA","13","085",23024,0.976763377345379,1251,0.140939888811675,7.13169851046691,7.96032362914884,8.81789020094551,6.10769230769231,403.587443946188,54,13380,0,1,0,0,9 +"12607",2014,13087,"GA","13","087",27183,0.555788544310783,1884,0.126770407975573,7.54115245513631,8.09712193091871,8.97575663051942,8.17692307692308,596.19206359382,93,15599,0,1,0,0,9 +"12608",2014,13089,"GA","13","089",725247,0.366068387735489,49626,0.114504437798433,10.81227016892,11.5879587232004,12.3994371703553,7.27692307692308,306.494060589174,1408,459389,0,1,0,0,9 +"12609",2014,13091,"GA","13","091",21167,0.684272688619077,1517,0.132045164643076,7.32448997934853,7.92117272158701,8.68118104152169,9.8,458.679934696416,59,12863,0,1,0,0,9 +"12610",2014,13093,"GA","13","093",14248,0.481471083660865,913,0.146266142616508,6.81673588059497,7.55328660560042,8.22977775008189,9.64615384615385,350.242910405604,31,8851,0,1,0,0,9 +"12611",2014,13095,"GA","13","095",92775,0.286294799245486,8009,0.121853947722986,8.98832118832368,9.26634256209147,10.2733254830011,9.26153846153846,557.815006902728,299,53602,0,1,0,0,9 +"12612",2014,13097,"GA","13","097",138082,0.529084167378804,9219,0.112853232137426,9.12902185079859,9.94496533198244,10.6948724416851,7.43076923076923,356.647039111494,298,83556,0,1,0,0,9 +"12613",2014,13099,"GA","13","099",10451,0.48196344847383,660,0.12735623385322,6.49223983502047,7.10496544826984,7.99900721324395,8.99230769230769,669.957686882934,38,5672,0,1,0,0,9 +"12614",2014,13103,"GA","13","103",55452,0.84198946836904,3545,0.116713554064777,8.17329343896623,8.98117874833641,9.72961024252484,6.23076923076923,392.156862745098,130,33150,0,1,0,0,9 +"12615",2014,13105,"GA","13","105",19391,0.685163220050539,1230,0.139239853540302,7.11476944836646,7.67275789664251,8.64082575186151,8.64615384615385,597.771940947378,66,11041,0,1,0,0,9 +"12616",2014,13107,"GA","13","107",22476,0.637302011033992,1531,0.125066737853711,7.33367639565768,7.87245515006398,8.77632145644996,10.4769230769231,611.076732673267,79,12928,0,1,0,0,9 +"12617",2014,13109,"GA","13","109",10808,0.663304959289415,700,0.116302738712065,6.5510803350434,7.16006920759613,8.0487882835342,6.47692307692308,601.821730644112,37,6148,0,1,0,0,9 +"12618",2014,13111,"GA","13","111",23869,0.982320164229754,1085,0.179186392391805,6.98933526597456,7.78821155784708,8.81209910895734,7.63076923076923,513.331290223721,67,13052,0,1,0,0,9 +"12619",2014,13113,"GA","13","113",109259,0.719666114461966,6558,0.149946457500069,8.78844095740459,9.43564159384419,10.3898872781403,6.12307692307692,252.60196006331,158,62549,0,1,0,0,9 +"12620",2014,13115,"GA","13","115",95894,0.82053100298246,6877,0.124126639831481,8.83593778931984,9.38496572213567,10.2430977178483,7.93076923076923,464.973223331886,257,55272,0,1,0,0,9 +"12621",2014,13117,"GA","13","117",202697,0.862671869835271,9098,0.101812064312743,9.11580988812995,10.4292214930352,10.9908535042312,5.26923076923077,211.859020533376,250,118003,0,1,0,0,9 +"12622",2014,13119,"GA","13","119",22187,0.88565376121152,1534,0.135169243250552,7.3356339819272,7.84698098213879,8.74544368009859,8.14615384615385,708.59872611465,89,12560,0,1,0,0,9 +"12623",2014,13121,"GA","13","121",992321,0.470436481743307,73978,0.107973125631726,11.2115230306874,11.9014275103999,12.6846549970872,7.07692307692308,340.981552186,2155,631999,0,1,0,0,9 +"12624",2014,13123,"GA","13","123",28999,0.968860995206731,1475,0.154488085796062,7.29641326877392,8.10107150311954,8.97765140781844,7.29230769230769,504.233067729084,81,16064,0,1,0,0,9 +"12625",2014,13127,"GA","13","127",82212,0.702087286527514,5043,0.135953388799689,8.52575642207673,9.1756454021793,10.1273108727551,7.47692307692308,428.790852461814,201,46876,0,1,0,0,9 +"12626",2014,13129,"GA","13","129",55848,0.932978799598911,3537,0.117658644893282,8.17103418920548,8.92105701815743,9.71214543252109,7.31538461538462,492.416182862701,162,32899,0,1,0,0,9 +"12627",2014,13131,"GA","13","131",25236,0.676929782849897,1454,0.126406720557933,7.28207365809346,7.97968130238774,8.89068592028113,7.36923076923077,562.86498276226,80,14213,0,1,0,0,9 +"12628",2014,13133,"GA","13","133",16418,0.614569375076136,796,0.16019003532708,6.67959918584438,7.40610338123702,8.4189186221479,8.23846153846154,492.836676217765,43,8725,0,1,0,0,9 +"12629",2014,13135,"GA","13","135",871052,0.593498436373489,56610,0.106896029169326,10.9439409270307,11.801122404855,12.5153388456988,6.09230769230769,232.596807912402,1245,535261,0,1,0,0,9 +"12630",2014,13137,"GA","13","137",43553,0.921452023970794,2891,0.12394094551466,7.96935774201635,8.61068353450358,9.49326112732625,6.98461538461538,370.728562217924,92,24816,0,1,0,0,9 +"12631",2014,13139,"GA","13","139",189156,0.883926494533612,12786,0.109206157880268,9.45610610132667,10.1324143486061,10.8997717601027,5.91538461538462,339.868803332907,372,109454,0,1,0,0,9 +"12632",2014,13141,"GA","13","141",8571,0.252245945630615,572,0.161124722902812,6.3491389913798,6.85224256905188,7.69938940625674,11.7153846153846,535.680122441171,28,5227,0,1,0,0,9 +"12633",2014,13143,"GA","13","143",28513,0.9369059727142,1735,0.123522603724617,7.45876269238096,8.19118600464279,9.03348385461329,7.96153846153846,613.236187006679,101,16470,0,1,0,0,9 +"12634",2014,13145,"GA","13","145",32730,0.810296364191873,1842,0.151512373968836,7.51860721681525,8.34830105493394,9.18049952996516,5.98461538461538,345.87785865469,67,19371,0,1,0,0,9 +"12635",2014,13147,"GA","13","147",25367,0.795364055662869,1523,0.140182126384673,7.32843735289516,7.952615111651,8.86432272251144,7.53846153846154,529.735838395254,75,14158,0,1,0,0,9 +"12636",2014,13149,"GA","13","149",11622,0.881345723627603,732,0.136809499225607,6.59578051396131,7.29233717617388,8.1285852003745,7.93846153846154,634.499040873543,43,6777,0,1,0,0,9 +"12637",2014,13151,"GA","13","151",213059,0.543563050610394,14130,0.110180748055703,9.55605547567857,10.366340677753,11.1203124142259,7.3,368.847644778574,471,127695,0,1,0,0,9 +"12638",2014,13153,"GA","13","153",148429,0.650277236928094,10509,0.112484757021876,9.2599873118656,9.85497984847108,10.7360487888788,6.83076923076923,342.561287227039,307,89619,0,1,0,0,9 +"12639",2014,13155,"GA","13","155",9077,0.72160405420293,617,0.118210862619808,6.42486902390539,7.05012252026906,7.80751004221619,9.53846153846154,496.372661321115,26,5238,0,1,0,0,9 +"12640",2014,13157,"GA","13","157",62125,0.901987927565392,3590,0.11835814889336,8.18590748148232,9.07406235368355,9.80829736553238,5.88461538461539,427.30330264101,155,36274,0,1,0,0,9 +"12641",2014,13159,"GA","13","159",13530,0.771692535107169,739,0.141980783444198,6.6052979209482,7.41095187558364,8.30077696085145,6.67692307692308,536.056158264199,42,7835,0,1,0,0,9 +"12642",2014,13161,"GA","13","161",14927,0.827493803175454,873,0.121725731895223,6.7719355558396,7.53315880745556,8.34759040703006,8.19230769230769,682.389560636897,57,8353,0,1,0,0,9 +"12643",2014,13163,"GA","13","163",16127,0.445712159732126,1055,0.13474297761518,6.96129604591017,7.53155238140729,8.44955654270043,11.2769230769231,596.270598438855,55,9224,0,1,0,0,9 +"12644",2014,13165,"GA","13","165",9040,0.547676991150442,686,0.122566371681416,6.53087762772588,7.07665381544395,7.76853330092603,10.0076923076923,439.802089059923,24,5457,0,1,0,0,9 +"12645",2014,13167,"GA","13","167",9813,0.646081728319576,584,0.134209721797615,6.36990098282823,7.22402480828583,7.76344638872736,8.63076923076923,328.030178776447,20,6097,0,1,0,0,9 +"12646",2014,13169,"GA","13","169",28641,0.736007820955972,1712,0.133759296113963,7.44541755670169,8.21635833238616,9.05181346374795,6.33846153846154,342.465753424658,57,16644,0,1,0,0,9 +"12647",2014,13171,"GA","13","171",18187,0.668444493319404,1587,0.129872986198933,7.36960072052641,7.63385355968177,8.59378379357795,9.58461538461538,606.352261790183,63,10390,0,1,0,0,9 +"12648",2014,13173,"GA","13","173",10362,0.739529048446246,670,0.111850994016599,6.50727771238501,7.20414929203594,8.02518932189084,8.09230769230769,638.365783593999,40,6266,0,1,0,0,9 +"12649",2014,13175,"GA","13","175",47553,0.616280781443863,3100,0.128256892309633,8.03915739047324,8.67556352738768,9.55810574328497,9.26923076923077,593.942524071273,161,27107,0,1,0,0,9 +"12650",2014,13177,"GA","13","177",29139,0.760973266069529,1704,0.12333985380418,7.44073370738926,8.3850322878139,9.07417694716331,6.26153846153846,291.112506421599,51,17519,0,1,0,0,9 +"12651",2014,13179,"GA","13","179",64217,0.515907002818568,7715,0.0848996371677282,8.95092176479726,8.84173742860058,9.86084097781466,7.66153846153846,343.358395989975,137,39900,0,1,0,0,9 +"12652",2014,13181,"GA","13","181",7644,0.66902145473574,435,0.17294610151753,6.07534603108868,6.66568371778241,7.71824095195932,8.32307692307692,740.907049842838,33,4454,0,1,0,0,9 +"12653",2014,13183,"GA","13","183",17058,0.699261343651073,1164,0.101887677336147,7.05961762829138,7.80384330353877,8.52872642722991,7.43076923076923,268.25062272466,28,10438,0,1,0,0,9 +"12654",2014,13185,"GA","13","185",113630,0.598908738889378,15767,0.0978790812285488,9.66567442723748,9.45907369428939,10.4577748837127,7.29230769230769,406.281856190997,275,67687,0,1,0,0,9 +"12655",2014,13187,"GA","13","187",31122,0.961731251204935,3936,0.130454340980657,8.27792025817214,8.10137467122858,9.12999761929365,6.37692307692308,379.465495744565,70,18447,0,1,0,0,9 +"12656",2014,13189,"GA","13","189",21529,0.57229783083283,1366,0.132890519764039,7.21964204013074,7.80832305039106,8.77090474429687,10.0153846153846,577.986954008752,70,12111,0,1,0,0,9 +"12657",2014,13191,"GA","13","191",14067,0.635387787019265,834,0.170469894078339,6.72623340235875,7.3356339819272,8.33615081612066,7.87692307692308,539.877300613497,44,8150,0,1,0,0,9 +"12658",2014,13193,"GA","13","193",13822,0.369700477499638,1104,0.146143828678918,7.00669522683704,7.42476176182321,8.2117543973752,11.8230769230769,437.233920147279,38,8691,0,1,0,0,9 +"12659",2014,13195,"GA","13","195",28376,0.886911474485481,1725,0.138215393290104,7.45298232946546,8.18757739559151,9.05040633405986,6.71538461538462,610.339875538535,102,16712,0,1,0,0,9 +"12660",2014,13197,"GA","13","197",8636,0.655627605372858,536,0.151690597498842,6.2841341610708,6.84800527457636,7.83715965000168,7.70769230769231,464.396284829721,24,5168,0,1,0,0,9 +"12661",2014,13199,"GA","13","199",21201,0.586764775246451,1271,0.142776284137541,7.14755927118945,7.74066440191724,8.7281022050621,9.8,617.180984153461,74,11990,0,1,0,0,9 +"12662",2014,13201,"GA","13","201",5943,0.703011946828201,338,0.129059397610634,5.82304589548302,6.5191472879404,7.41577697541539,6.31538461538462,580.684596577017,19,3272,0,1,0,0,9 +"12663",2014,13205,"GA","13","205",22712,0.502553716097217,1493,0.126629094751673,7.30854279753919,7.99091546309133,8.71702717329482,7.89230769230769,513.08744794765,69,13448,0,1,0,0,9 +"12664",2014,13207,"GA","13","207",26637,0.74681833539813,1709,0.15302023501145,7.44366368311559,8.07620452723903,8.97739897818186,6.72307692307692,395.08611642694,64,16199,0,1,0,0,9 +"12665",2014,13209,"GA","13","209",8978,0.72510581421252,771,0.131989307195366,6.64768837356333,7.01211529430638,7.80791662892641,10.3461538461538,456.187036685041,24,5261,0,1,0,0,9 +"12666",2014,13211,"GA","13","211",17894,0.746898401698893,998,0.143902984240528,6.90575327631146,7.67415292128168,8.56312212330464,6.58461538461538,571.879313744823,58,10142,0,1,0,0,9 +"12667",2014,13213,"GA","13","213",39212,0.968198510660002,2533,0.118560644700602,7.83715965000168,8.59359852261864,9.36640350760777,9.38461538461539,635.629616904312,148,23284,0,1,0,0,9 +"12668",2014,13215,"GA","13","215",200746,0.481847708048977,17214,0.11074691401074,9.75347828520942,10.1270710070787,11.0121821765457,8.45384615384615,450.155508266492,550,122180,0,1,0,0,9 +"12669",2014,13217,"GA","13","217",103470,0.544959891756065,6804,0.108823813665797,8.82526595351575,9.59641876628416,10.3682273521068,8.22307692307692,445.185493955815,267,59975,0,1,0,0,9 +"12670",2014,13219,"GA","13","219",35077,0.901188813182427,1938,0.132451463922228,7.56941179245071,8.50410795186758,9.2498495050709,5.09230769230769,289.060553202093,58,20065,0,1,0,0,9 +"12671",2014,13221,"GA","13","221",14532,0.802229562345169,857,0.138590696394165,6.75343791859778,7.50494206839617,8.37147353706683,6.63846153846154,516.068496364063,44,8526,0,1,0,0,9 +"12672",2014,13223,"GA","13","223",148562,0.798124688682166,9171,0.102051668663588,9.12380161055894,10.0728927173969,10.7375699000176,6.16923076923077,323.278264553096,290,89706,0,1,0,0,9 +"12673",2014,13225,"GA","13","225",27391,0.528932861158775,2754,0.126793472308422,7.9208096792886,7.99934295271328,9.02352874990936,9.5,573.673380308038,92,16037,0,1,0,0,9 +"12674",2014,13227,"GA","13","227",29807,0.972858724460697,1631,0.153051296675278,7.39694860262101,8.17188200612782,9.06992821825944,6.7,503.896408273276,86,17067,0,1,0,0,9 +"12675",2014,13229,"GA","13","229",19004,0.892338455062092,1102,0.122553146705957,7.00488198971286,7.83439230291044,8.60245303536706,7.5,546.144589465889,59,10803,0,1,0,0,9 +"12676",2014,13231,"GA","13","231",17774,0.885788229998875,1022,0.12777090131653,6.92951677076365,7.79646924308606,8.56845648535378,7.03076923076923,357.799052316024,37,10341,0,1,0,0,9 +"12677",2014,13233,"GA","13","233",40876,0.846462471866132,2547,0.120633134357569,7.84267147497946,8.50451313825886,9.36391945990448,7.80769230769231,555.531814879706,130,23401,0,1,0,0,9 +"12678",2014,13235,"GA","13","235",11520,0.664236111111111,735,0.13984375,6.59987049921284,7.28207365809346,8.32239411311117,7.83076923076923,336.109893321643,23,6843,0,1,0,0,9 +"12679",2014,13237,"GA","13","237",21142,0.711616687162993,1044,0.154479235644688,6.95081476844258,7.69348164083518,8.71045468824853,9.08461538461538,451.371146312383,53,11742,0,1,0,0,9 +"12680",2014,13241,"GA","13","241",16159,0.964973080017328,809,0.153660498793242,6.69579891705849,7.49609734517596,8.39162996844089,8.23076923076923,501.653175236575,44,8771,0,1,0,0,9 +"12681",2014,13243,"GA","13","243",7315,0.371565276828435,511,0.150512645249487,6.2363695902037,6.49677499018586,7.66011431917393,9.72307692307692,823.970037453184,33,4005,0,1,0,0,9 +"12682",2014,13245,"GA","13","245",201448,0.398693459354275,18184,0.12254279019896,9.80829736553238,10.0347350891458,11.0513184849917,8.70769230769231,529.20006543432,647,122260,0,1,0,0,9 +"12683",2014,13247,"GA","13","247",87222,0.448407511866272,5886,0.129256380271033,8.68033192879342,9.33662053788651,10.224374684169,7.89230769230769,365.408038976857,189,51723,0,1,0,0,9 +"12684",2014,13251,"GA","13","251",14001,0.565245339618599,978,0.146632383401186,6.88550967003482,7.37838371299671,8.35161075062656,10.0230769230769,754.441469944025,62,8218,0,1,0,0,9 +"12685",2014,13253,"GA","13","253",8596,0.648673801768264,516,0.143904141461145,6.24610676548156,6.83410873881384,7.80220931624712,9.48461538461538,659.574468085106,31,4700,0,1,0,0,9 +"12686",2014,13255,"GA","13","255",63703,0.644004207023217,4201,0.125990926643957,8.34307787116938,8.97487117097134,9.84569952876873,9.50769230769231,698.023176550784,256,36675,0,1,0,0,9 +"12687",2014,13257,"GA","13","257",25429,0.866648314916041,1848,0.139683039049904,7.52185925220163,7.94058382710424,8.92399074475818,7.68461538461538,568.891355626474,82,14414,0,1,0,0,9 +"12688",2014,13261,"GA","13","261",31089,0.442278619447393,3143,0.119978127311911,8.05293303679757,8.09985791073758,9.15271125913955,9.52307692307692,491.044026561018,88,17921,0,1,0,0,9 +"12689",2014,13263,"GA","13","263",6535,0.419280795715379,432,0.181637337413925,6.06842558824411,6.49223983502047,7.60638738977265,7.87692307692308,545.596258768511,21,3849,0,1,0,0,9 +"12690",2014,13267,"GA","13","267",25319,0.688968758639757,2002,0.113946048422134,7.60190195987517,8.20385137218388,8.71866356704895,6.96923076923077,332.860753251556,54,16223,0,1,0,0,9 +"12691",2014,13269,"GA","13","269",8453,0.599905359044126,606,0.143854252927955,6.40687998606931,6.93439720992856,7.84384863815247,10.2538461538462,710.371422772478,35,4927,0,1,0,0,9 +"12692",2014,13271,"GA","13","271",16448,0.610226167315175,1012,0.128830252918288,6.91968384984741,7.87435882472988,8.21229713822977,9.81538461538462,399.294270591513,43,10769,0,1,0,0,9 +"12693",2014,13273,"GA","13","273",9081,0.372976544433432,647,0.139962559189517,6.4723462945009,6.77422388635761,7.89020821310996,8.05384615384615,717.054263565891,37,5160,0,1,0,0,9 +"12694",2014,13275,"GA","13","275",44784,0.610284923186852,2680,0.13361914969632,7.8935720735049,8.58316818033977,9.50948153751686,8.79230769230769,538.620662737598,138,25621,0,1,0,0,9 +"12695",2014,13277,"GA","13","277",40456,0.669542218706743,3120,0.115681233933162,8.04558828080353,8.51659301134421,9.38185373005353,7.30769230769231,497.189796800692,115,23130,0,1,0,0,9 +"12696",2014,13279,"GA","13","279",27131,0.714275183369577,1677,0.119899745678375,7.42476176182321,8.07806788181544,8.97017781549238,9.91538461538462,550.690021231423,83,15072,0,1,0,0,9 +"12697",2014,13281,"GA","13","281",11081,0.976626658243841,705,0.14051078422525,6.55819780281227,6.85118492749374,7.91132401896335,9.25384615384615,400.916380297824,21,5238,0,1,0,0,9 +"12698",2014,13283,"GA","13","283",6813,0.66563921913988,479,0.133568178482313,6.17170059741091,6.69084227741856,7.53422832627409,10.6307692307692,558.233950773915,22,3941,0,1,0,0,9 +"12699",2014,13285,"GA","13","285",69341,0.613316796700365,5272,0.12227974791249,8.57016507618234,9.04911472347696,9.95008483791291,7.35384615384615,448.508276340569,181,40356,0,1,0,0,9 +"12700",2014,13287,"GA","13","287",8069,0.589788077828727,520,0.125170405254678,6.25382881157547,6.76619171466035,7.66105638236183,7.98461538461538,1046.51162790698,45,4300,0,1,0,0,9 +"12701",2014,13289,"GA","13","289",8399,0.573163471841886,488,0.167758066436481,6.19031540585315,6.7428806357919,7.82763954636642,11.1538461538462,545.344374873763,27,4951,0,1,0,0,9 +"12702",2014,13291,"GA","13","291",21782,0.979248921127536,962,0.164034523918832,6.86901445066571,7.57507169950756,8.64611397148308,6.60769230769231,462.040224678384,51,11038,0,1,0,0,9 +"12703",2014,13293,"GA","13","293",26166,0.700871359779867,1668,0.139761522586563,7.41938058291869,8.06306291132679,8.96788657212747,8.92307692307692,639.757287956734,97,15162,0,1,0,0,9 +"12704",2014,13295,"GA","13","295",68714,0.94210786739238,3935,0.135241726576826,8.2776661608515,9.11833472618016,9.90598443273472,7.22307692307692,626.236817714987,250,39921,0,1,0,0,9 +"12705",2014,13297,"GA","13","297",87557,0.807839464577361,5288,0.119099558002216,8.57319538153152,9.36177307573639,10.1658518170036,6.46153846153846,447.923892577544,226,50455,0,1,0,0,9 +"12706",2014,13299,"GA","13","299",35520,0.682376126126126,2430,0.129757882882883,7.79564653633459,8.34569287325387,9.21582530220675,7.91538461538462,583.913191572186,120,20551,0,1,0,0,9 +"12707",2014,13301,"GA","13","301",5459,0.382854002564572,342,0.160102582890639,5.8348107370626,6.27476202124194,7.38523092306657,9.72307692307692,675.675675675676,21,3108,0,1,0,0,9 +"12708",2014,13303,"GA","13","303",20549,0.455399289503139,1418,0.135383716969196,7.25700270709207,7.77443551030296,8.66836801921336,8.11538461538461,563.173359451518,69,12252,0,1,0,0,9 +"12709",2014,13305,"GA","13","305",29916,0.775337611980211,1881,0.121707447519722,7.53955882930103,8.2872767558146,9.00785692335828,8.75384615384615,528.349051244177,93,17602,0,1,0,0,9 +"12710",2014,13309,"GA","13","309",7984,0.609468937875752,667,0.11310120240481,6.50279004591562,7.14045304310116,7.34407285057307,12.4076923076923,420.014609203798,23,5476,0,1,0,0,9 +"12711",2014,13311,"GA","13","311",28025,0.963318465655665,1705,0.142408563782337,7.44132038971762,8.07930819205196,8.97461803845511,6.24615384615385,401.086815888213,62,15458,0,1,0,0,9 +"12712",2014,13313,"GA","13","313",103039,0.920670813963645,7311,0.108133813410456,8.89713534229332,9.51598514480214,10.2969138170325,7.86923076923077,360.811826609872,216,59865,0,1,0,0,9 +"12713",2014,13315,"GA","13","315",8929,0.628961809833128,632,0.126105946914548,6.44888939414686,7.10824413973154,7.58933582317062,9.17692307692308,534.75935828877,30,5610,0,1,0,0,9 +"12714",2014,13317,"GA","13","317",9960,0.554518072289157,552,0.143674698795181,6.3135480462771,6.95749737087695,7.94555542825349,9.33076923076923,551.470588235294,30,5440,0,1,0,0,9 +"12715",2014,13319,"GA","13","319",9283,0.596897554669827,542,0.147258429387052,6.29526600143965,6.90675477864855,7.9135210172839,8.70769230769231,674.031080322037,36,5341,0,1,0,0,9 +"12716",2014,13321,"GA","13","321",21010,0.699857210851975,1339,0.140409328891004,7.19967834569117,7.76811037852599,8.7417757069247,7.91538461538462,582.731451083388,71,12184,0,1,0,0,9 +"12717",2014,15001,"HI","15","001",193812,0.35024147111634,11118,0.162853693269767,9.31632069551342,10.0026086434039,10.944700221806,5.30769230769231,374.28991098448,423,113014,1,1,1,0,9 +"12718",2014,15003,"HI","15","003",988002,0.208653423778494,78316,0.119052390582205,11.2685072033772,11.7273269152276,12.5683866599824,3.98461538461538,281.239392910828,1682,598067,1,1,1,0,9 +"12719",2014,15007,"HI","15","007",70316,0.345156152227089,3797,0.152155981568917,8.2419665602318,9.04723303410603,9.92363325822908,4.6,272.831356118,112,41051,1,1,1,0,9 +"12720",2014,15009,"HI","15","009",163116,0.349481350695211,8751,0.144259300129969,9.07692325853583,9.97524991876302,10.7970622171666,4.33846153846154,351.080129473481,346,98553,1,1,1,0,9 +"12721",2014,19005,"IA","19","005",14067,0.968934385441103,768,0.153195421909433,6.64378973314767,7.24279792279376,8.20685642839965,5.63846153846154,367.647058823529,28,7616,1,1,1,0,9 +"12722",2014,19007,"IA","19","007",12678,0.982647105221644,681,0.147893989588263,6.52356230614951,7.18462915271731,8.14293601043227,5.7,465.92894583576,32,6868,1,1,1,0,9 +"12723",2014,19011,"IA","19","011",25620,0.984504293520687,1401,0.139149102263856,7.24494154633701,8.0245348716057,8.88474872645118,4.6,273.336066694,40,14634,1,1,1,0,9 +"12724",2014,19013,"IA","19","013",133433,0.870369398874341,16392,0.125268861526009,9.70454868991874,9.57706465176792,10.5999791343465,4.89230769230769,324.443497976926,259,79829,1,1,1,0,9 +"12725",2014,19015,"IA","19","015",26303,0.975249971486142,1463,0.150781279701935,7.28824440102012,8.0381891799732,8.9300972286214,3.39230769230769,279.80218636127,43,15368,1,1,1,0,9 +"12726",2014,19017,"IA","19","017",24678,0.973701272388362,1983,0.12561795931599,7.5923661285198,7.93092537248339,8.82010864450861,3.66923076923077,226.112326768782,31,13710,1,1,1,0,9 +"12727",2014,19019,"IA","19","019",21135,0.985001182872013,1107,0.132008516678495,7.00940893270864,7.76472054477148,8.65451738227946,4.64615384615385,345.333678667012,40,11583,1,1,1,0,9 +"12728",2014,19021,"IA","19","021",20608,0.857773680124224,1800,0.129270186335404,7.49554194388426,7.66949525100769,8.62891344102665,3.96923076923077,240.570495747057,28,11639,1,1,1,0,9 +"12729",2014,19023,"IA","19","023",14958,0.986562374649017,733,0.146944778713732,6.59714570188665,7.39572160860205,8.28803156777646,4.21538461538462,312.304809494066,25,8005,1,1,1,0,9 +"12730",2014,19025,"IA","19","025",9845,0.969730827831387,556,0.156627729812087,6.32076829425058,6.92362862813843,7.81722278550817,4.83076923076923,313.768918420081,17,5418,1,1,1,0,9 +"12731",2014,19027,"IA","19","027",20495,0.981654061966333,1149,0.144523054403513,7.04664727784876,7.69120009752286,8.62443194208584,3.16153846153846,374.198146828225,42,11224,1,1,1,0,9 +"12732",2014,19029,"IA","19","029",13394,0.981782887860236,687,0.148275347170375,6.53233429222235,7.24136628332232,8.19367666595524,4.33076923076923,496.551724137931,36,7250,1,1,1,0,9 +"12733",2014,19031,"IA","19","031",18278,0.981507823613087,861,0.147007331217858,6.75809450442773,7.69074316354187,8.5358186555394,3.86153846153846,269.308454361835,28,10397,1,1,1,0,9 +"12734",2014,19033,"IA","19","033",43224,0.965250786600037,2648,0.156255783823802,7.8815599170569,8.42704964156327,9.42416059582951,4.61538461538461,479.490692239504,119,24818,1,1,1,0,9 +"12735",2014,19035,"IA","19","035",11803,0.976361941879183,600,0.160467677709057,6.39692965521615,7.05875815251866,8.04044688130311,5.08461538461538,340.188650069584,22,6467,1,1,1,0,9 +"12736",2014,19039,"IA","19","039",9192,0.971605744125326,521,0.141209747606614,6.25575004175337,6.90875477931522,7.82684209815829,4.46923076923077,350.262697022767,18,5139,1,1,1,0,9 +"12737",2014,19041,"IA","19","041",16483,0.978341321361403,910,0.14602924224959,6.8134445995109,7.539027055824,8.41958036254924,4.16153846153846,359.359686377001,33,9183,1,1,1,0,9 +"12738",2014,19043,"IA","19","043",17771,0.983456192673457,919,0.1629621293118,6.82328612235569,7.49720722320332,8.45977592054629,5,308.959835221421,30,9710,1,1,1,0,9 +"12739",2014,19045,"IA","19","045",47921,0.951858266730661,2898,0.142547108783206,7.97177612288063,8.59618919764273,9.51745735706657,5.24615384615385,389.906569557861,106,27186,1,1,1,0,9 +"12740",2014,19047,"IA","19","047",17156,0.940312427139193,1054,0.128409885754255,6.96034772910131,7.57044325205737,8.38366179879172,4.06153846153846,308.41220886951,29,9403,1,1,1,0,9 +"12741",2014,19049,"IA","19","049",77758,0.930335142364773,3436,0.101700146608709,8.14206328310415,9.3968199389188,10.0445529928147,3.28461538461538,205.970942593905,93,45152,1,1,1,0,9 +"12742",2014,19053,"IA","19","053",8216,0.962512171372931,1026,0.126582278481013,6.93342302573071,6.63987583382654,7.67693714581808,3.78461538461538,535.833891493637,24,4479,1,1,1,0,9 +"12743",2014,19055,"IA","19","055",17397,0.988043915617635,956,0.148531355980916,6.8627579130514,7.54009032014532,8.4707303170059,3.77692307692308,340.136054421769,33,9702,1,1,1,0,9 +"12744",2014,19057,"IA","19","057",40127,0.917611583223266,2208,0.14172502305181,7.69984240739699,8.4156033356546,9.33176122718052,4.99230769230769,376.839865224331,85,22556,1,1,1,0,9 +"12745",2014,19059,"IA","19","059",16845,0.983496586524191,827,0.169664588898783,6.71780469502369,7.49387388678356,8.43294163896865,4.71538461538462,310.692093421898,29,9334,1,1,1,0,9 +"12746",2014,19061,"IA","19","061",96544,0.944553778588001,6957,0.133244945309911,8.84750362592364,9.25339986143663,10.2190279531163,4.11538461538461,313.666107836245,174,55473,1,1,1,0,9 +"12747",2014,19063,"IA","19","063",9830,0.960122075279756,649,0.153204476093591,6.47543271670409,6.96129604591017,7.86518795418747,3.93846153846154,355.492356914326,20,5626,1,1,1,0,9 +"12748",2014,19065,"IA","19","065",20288,0.970376577287066,1389,0.146589116719243,7.23633934275434,7.60787807327851,8.59433940059289,5.00769230769231,411.19156163404,46,11187,1,1,1,0,9 +"12749",2014,19067,"IA","19","067",16008,0.956896551724138,932,0.139617691154423,6.83733281468559,7.45587668749182,8.36846113761584,4.52307692307692,438.84975170343,38,8659,1,1,1,0,9 +"12750",2014,19069,"IA","19","069",10433,0.975174925716477,608,0.154509728745327,6.41017488196617,7.02642680869964,7.94626364358054,3.96153846153846,174.034110685694,10,5746,1,1,1,0,9 +"12751",2014,19071,"IA","19","071",7029,0.983354673495519,294,0.165884194053208,5.68357976733868,6.65415252018322,7.53155238140729,3.84615384615385,471.821756225426,18,3815,1,1,1,0,9 +"12752",2014,19073,"IA","19","073",9127,0.983784376027172,490,0.150104086775501,6.19440539110467,6.84906628263346,7.79852305362521,4.02307692307692,323.493732308937,16,4946,1,1,1,0,9 +"12753",2014,19075,"IA","19","075",12388,0.987730061349693,659,0.140297061672586,6.49072353450251,7.25488481007734,8.11252776347864,4.14615384615385,236.301875646138,16,6771,1,1,1,0,9 +"12754",2014,19077,"IA","19","077",10690,0.98578110383536,499,0.151262862488307,6.21260609575152,7.04925484125584,7.93951526066241,4.37692307692308,380.952380952381,22,5775,1,1,1,0,9 +"12755",2014,19079,"IA","19","079",15222,0.96045197740113,754,0.141965576139798,6.62539236800796,7.41577697541539,8.33734856449717,4.52307692307692,214.209210996073,18,8403,1,1,1,0,9 +"12756",2014,19081,"IA","19","081",11043,0.981345648827311,506,0.155935886987232,6.22653666928747,7.07749805356923,7.9885429827377,3.29230769230769,280.99173553719,17,6050,1,1,1,0,9 +"12757",2014,19083,"IA","19","083",17338,0.96896989272119,1040,0.148863767447226,6.94697599213542,7.49665243816828,8.42617379302907,4.32307692307692,244.316974718504,23,9414,1,1,1,0,9 +"12758",2014,19085,"IA","19","085",14268,0.986823661340062,753,0.150056069526213,6.62406522779989,7.39018142822643,8.28500889544988,4,374.111485222596,30,8019,1,1,1,0,9 +"12759",2014,19087,"IA","19","087",19846,0.937770835432833,1324,0.133326614935,7.18841273649695,7.75405263903576,8.579980179515,4.38461538461539,267.864857858809,31,11573,1,1,1,0,9 +"12760",2014,19091,"IA","19","091",9641,0.983715382221761,515,0.149569546727518,6.24416690066374,6.880384082186,7.86748856869913,3.8,304.298212248003,16,5258,1,1,1,0,9 +"12761",2014,19095,"IA","19","095",16325,0.985237366003063,854,0.147748851454824,6.74993119378857,7.52617891334615,8.4211227226655,4.18461538461538,259.93718184772,24,9233,1,1,1,0,9 +"12762",2014,19097,"IA","19","097",19430,0.976222336592898,1042,0.14879053010808,6.94889722231331,7.64156444126097,8.58578598288185,5.04615384615385,368.561688012531,40,10853,1,1,1,0,9 +"12763",2014,19099,"IA","19","099",36891,0.967254886015559,1999,0.137431893957876,7.6004023345004,8.38935981990635,9.19674841845672,4.4,372.764592082291,79,21193,1,1,1,0,9 +"12764",2014,19101,"IA","19","101",17795,0.853891542568137,2064,0.177915144703568,7.63240112660145,7.47079377419506,8.46273700562018,4.36153846153846,323.265909300822,35,10827,1,1,1,0,9 +"12765",2014,19103,"IA","19","103",142874,0.860611447849154,22615,0.10184498229209,10.0263686819119,9.7053414453952,10.7290217211394,3.06923076923077,190.779360943649,175,91729,1,1,1,0,9 +"12766",2014,19105,"IA","19","105",20553,0.963411667396487,1142,0.144407142509609,7.04053639021596,7.79482315217939,8.59822003005861,4.91538461538462,397.934129201592,47,11811,1,1,1,0,9 +"12767",2014,19107,"IA","19","107",10282,0.988620890877261,539,0.148220190624392,6.289715570909,6.99576615630485,7.8995244720322,4.43076923076923,482.228969458832,27,5599,1,1,1,0,9 +"12768",2014,19109,"IA","19","109",15221,0.981932855922738,774,0.156231522239012,6.65157187358973,7.26612877955645,8.28197705886776,3.22307692307692,283.146620706635,23,8123,1,1,1,0,9 +"12769",2014,19111,"IA","19","111",35077,0.952133876899393,2099,0.150811072782735,7.64921631982063,8.27512163021651,9.18891242456256,5.88461538461539,456.688273423689,93,20364,1,1,1,0,9 +"12770",2014,19113,"IA","19","113",218223,0.914633196317528,15420,0.123126343236048,9.64342064711732,10.2350908120458,11.0781190809599,4.39230769230769,290.128662390815,375,129253,1,1,1,0,9 +"12771",2014,19115,"IA","19","115",11254,0.941798471654523,654,0.135151945974765,6.4831073514572,7.19668657083435,8.04782935745784,4.5,310.41440322831,20,6443,1,1,1,0,9 +"12772",2014,19117,"IA","19","117",8633,0.98876404494382,464,0.152322483493571,6.13988455222626,6.78219205600679,7.72621265050753,3.89230769230769,429.553264604811,20,4656,1,1,1,0,9 +"12773",2014,19119,"IA","19","119",11709,0.98923904688701,613,0.12913143735588,6.41836493593621,7.22620901010067,8.00836557031292,2.53846153846154,371.807306821856,23,6186,1,1,1,0,9 +"12774",2014,19121,"IA","19","121",15620,0.982906530089629,676,0.136811779769526,6.51619307604296,7.63094658089046,8.3774712482411,4.52307692307692,287.918922031556,25,8683,1,1,1,0,9 +"12775",2014,19123,"IA","19","123",22466,0.96385649425799,1563,0.135671681652275,7.35436233042148,7.84619881549743,8.72923534965927,4.36923076923077,411.327321626325,52,12642,1,1,1,0,9 +"12776",2014,19125,"IA","19","125",33280,0.972295673076923,2435,0.131159855769231,7.79770203551669,8.25140306538056,9.11986846881211,3.80769230769231,283.741099630601,53,18679,1,1,1,0,9 +"12777",2014,19127,"IA","19","127",40712,0.931396148555708,2551,0.136249754372175,7.84424071814181,8.3959291039232,9.29935806829384,5.38461538461539,399.911130859809,90,22505,1,1,1,0,9 +"12778",2014,19129,"IA","19","129",14763,0.98035629614577,686,0.160197791776739,6.53087762772588,7.51425465281641,8.34045601291618,4.36153846153846,515.584719943754,44,8534,1,1,1,0,9 +"12779",2014,19133,"IA","19","133",8898,0.977298269273994,454,0.153967183636772,6.11809719804135,6.77536609093639,7.73499619402278,4.98461538461538,578.530104992501,27,4667,1,1,1,0,9 +"12780",2014,19135,"IA","19","135",7952,0.984280684104628,447,0.14021629778672,6.10255859461357,6.81454289725996,7.66293785046154,5.05384615384615,588.102239312373,26,4421,1,1,1,0,9 +"12781",2014,19137,"IA","19","137",10386,0.984979780473715,529,0.153475832851916,6.2709884318583,7.05444965813294,7.944846711002,4.10769230769231,442.164839051999,25,5654,1,1,1,0,9 +"12782",2014,19139,"IA","19","139",43032,0.952593418851088,2713,0.132529280535416,7.90581031265893,8.54616929965275,9.40607161568006,4.50769230769231,277.087323254961,68,24541,1,1,1,0,9 +"12783",2014,19141,"IA","19","141",14045,0.977714489142043,755,0.146671413314347,6.62671774924902,7.2737863178449,8.19863945529737,3.26153846153846,344.325254933121,26,7551,1,1,1,0,9 +"12784",2014,19145,"IA","19","145",15487,0.952540840705107,876,0.151417317750371,6.77536609093639,7.5422134631934,8.28324144138542,4.42307692307692,319.379491274096,28,8767,1,1,1,0,9 +"12785",2014,19147,"IA","19","147",9120,0.973245614035088,573,0.143530701754386,6.35088571671474,6.82871207164168,7.77569574991525,3.6,348.432055749129,17,4879,1,1,1,0,9 +"12786",2014,19149,"IA","19","149",24918,0.976723653583755,1290,0.142346897824866,7.16239749735572,7.97762509878459,8.81447900001071,3.42307692307692,285.275400482774,39,13671,1,1,1,0,9 +"12787",2014,19151,"IA","19","151",7099,0.975066910832512,370,0.157909564727426,5.91350300563827,6.50876913697168,7.52023455647463,3.50769230769231,290.314067036157,11,3789,1,1,1,0,9 +"12788",2014,19153,"IA","19","153",461069,0.873782449047756,30659,0.114607575005043,10.3306815361079,11.032952304687,11.8558411834175,4.21538461538462,314.528493845559,878,279148,1,1,1,0,9 +"12789",2014,19155,"IA","19","155",93332,0.961181588308404,5887,0.137348390691296,8.68050180902826,9.30228124567454,10.2055901476491,4.27692307692308,425.042225810643,229,53877,1,1,1,0,9 +"12790",2014,19157,"IA","19","157",18624,0.956561426116838,1795,0.137403350515464,7.49276030092238,7.51207124583547,8.55986946569667,4.27692307692308,482.765279521097,50,10357,1,1,1,0,9 +"12791",2014,19161,"IA","19","161",10046,0.987855863030062,503,0.15707744375871,6.22059017009974,6.90775527898214,7.87549929244521,3.92307692307692,353.949329359165,19,5368,1,1,1,0,9 +"12792",2014,19163,"IA","19","163",171457,0.878727611004508,10673,0.131041602267624,9.27547246691396,9.96946254145966,10.8410112608183,5.18461538461538,306.272661707026,310,101217,1,1,1,0,9 +"12793",2014,19165,"IA","19","165",11886,0.980733636210668,599,0.14605418138987,6.39526159811545,7.09589322109753,8.05610965954506,3.13846153846154,477.478911348082,30,6283,1,1,1,0,9 +"12794",2014,19167,"IA","19","167",34648,0.973620410990533,3239,0.115648810898176,8.08301991917133,8.19367666595524,9.10708874216571,2.93846153846154,218.666666666667,41,18750,1,1,1,0,9 +"12795",2014,19169,"IA","19","169",95894,0.886645671262018,21711,0.0944167518301458,9.98557432353424,9.07360384840271,10.245657810272,2.9,192.462176998259,115,59752,1,1,1,0,9 +"12796",2014,19171,"IA","19","171",17309,0.894967935755965,939,0.146397827719683,6.84481547920826,7.54960916515453,8.45744318701046,5.27692307692308,422.56496936404,40,9466,1,1,1,0,9 +"12797",2014,19175,"IA","19","175",12625,0.976158415841584,816,0.137029702970297,6.70441435496411,7.23417717974985,8.16451026874704,4.7,463.096960926194,32,6910,1,1,1,0,9 +"12798",2014,19179,"IA","19","179",35421,0.946585358967844,2420,0.140763953586855,7.79152281915073,8.30795254527102,9.22276289197474,5.48461538461538,431.203449627597,88,20408,1,1,1,0,9 +"12799",2014,19181,"IA","19","181",47848,0.979685671292426,3071,0.126692860725631,8.02975852044082,8.71292443512011,9.53474002736313,3.95384615384615,253.238888684993,69,27247,1,1,1,0,9 +"12800",2014,19183,"IA","19","183",22040,0.975725952813067,1190,0.135526315789474,7.08170858610557,7.80139132029149,8.70134640303916,3.6,282.532823666279,34,12034,1,1,1,0,9 +"12801",2014,19187,"IA","19","187",37085,0.933126601051638,2960,0.141593636241068,7.99294454731811,8.25270667656764,9.20482519128807,4.83076923076923,403.452805404391,86,21316,1,1,1,0,9 +"12802",2014,19189,"IA","19","189",10567,0.967351187659695,681,0.155862591085455,6.52356230614951,6.99942246750796,7.95787735848981,4.21538461538462,496.490326998802,29,5841,1,1,1,0,9 +"12803",2014,19191,"IA","19","191",20708,0.975951323160131,2194,0.143760865366042,7.69348164083518,7.58069975222456,8.66613030419061,4.23846153846154,211.041701840284,25,11846,1,1,1,0,9 +"12804",2014,19193,"IA","19","193",102333,0.898273284277799,7427,0.122668152013524,8.9128772876693,9.41548287218084,10.2793865250425,4.37692307692308,338.565712526931,198,58482,1,1,1,0,9 +"12805",2014,19197,"IA","19","197",12905,0.97659821774506,673,0.151181712514529,6.51174532964473,7.22329567956231,8.10167774745457,4.06923076923077,305.099520557896,21,6883,1,1,1,0,9 +"12806",2014,16001,"ID","16","001",425774,0.941274009216157,26934,0.11818946201506,10.20114470801,10.9923019987241,11.7455360620574,3.73846153846154,243.836570788927,623,255499,0,1,0,0,9 +"12807",2014,16005,"ID","16","005",83587,0.929438788328329,6490,0.116537260578798,8.77801780969814,9.19684978179368,10.0917497619922,4.12307692307692,424.938029870644,204,48007,0,1,0,0,9 +"12808",2014,16009,"ID","16","009",9035,0.886441615938019,455,0.169120088544549,6.12029741895095,6.82328612235569,7.80669637252118,7.36923076923077,562.927221552071,28,4974,0,1,0,0,9 +"12809",2014,16011,"ID","16","011",45226,0.901140936629372,2740,0.115619334011409,7.91571319938212,8.5709235138372,9.39241189751493,4.10769230769231,417.658605855574,100,23943,0,1,0,0,9 +"12810",2014,16013,"ID","16","013",21471,0.964882865260118,1019,0.156350426156211,6.92657703322272,7.94873845481361,8.74337213127397,4.06153846153846,291.315644437446,37,12701,0,1,0,0,9 +"12811",2014,16015,"ID","16","015",6780,0.967994100294985,239,0.221976401179941,5.47646355193151,6.52649485957079,7.58781721999343,5.94615384615385,402.212166918049,16,3978,0,1,0,0,9 +"12812",2014,16017,"ID","16","017",41330,0.975635131865473,1849,0.183595451246068,7.52240023138712,8.41847721847708,9.37670190919141,6.5,384.303343439088,90,23419,0,1,0,0,9 +"12813",2014,16019,"ID","16","019",108285,0.963633005494759,6575,0.107798864108602,8.79102985704596,9.47646678146225,10.2899397214624,3.77692307692308,326.098033221237,192,58878,0,1,0,0,9 +"12814",2014,16021,"ID","16","021",10963,0.961780534525221,501,0.165283225394509,6.21660610108486,7.09589322109753,8.00235954625271,5.53076923076923,539.174389216512,32,5935,0,1,0,0,9 +"12815",2014,16027,"ID","16","027",202542,0.954137907199494,13528,0.103632826771731,9.51251689057842,10.1656594908178,10.936778791749,5.39230769230769,298.862163329973,332,111088,0,1,0,0,9 +"12816",2014,16031,"ID","16","031",23503,0.965153384674297,1520,0.10841169212441,7.32646561384032,7.88870952418201,8.67607551647643,3.86923076923077,346.020761245675,42,12138,0,1,0,0,9 +"12817",2014,16035,"ID","16","035",8564,0.960532461466604,408,0.16837926202709,6.01126717440416,6.77308037565554,7.64921631982063,8.47692307692308,370.751802265705,18,4855,0,1,0,0,9 +"12818",2014,16039,"ID","16","039",26257,0.90444452907796,2845,0.10237270061317,7.95331834656043,7.9592759601164,8.88350158432321,4.74615384615385,291.073738680466,45,15460,0,1,0,0,9 +"12819",2014,16043,"ID","16","043",12815,0.973156457276629,684,0.123995317986734,6.52795791762255,7.33367639565768,8.07309119969315,3.73076923076923,221.336874723329,15,6777,0,1,0,0,9 +"12820",2014,16045,"ID","16","045",16665,0.971797179717972,868,0.147314731473147,6.76619171466035,7.42356844425917,8.41205487329293,5.36153846153846,470.37742188375,42,8929,0,1,0,0,9 +"12821",2014,16047,"ID","16","047",15080,0.961472148541114,933,0.114323607427056,6.83840520084734,7.47250074473756,8.2409125416889,3.63076923076923,453.57187854353,36,7937,0,1,0,0,9 +"12822",2014,16049,"ID","16","049",16285,0.951857537611299,782,0.178630641694811,6.66185474054531,7.31121838441963,8.33134542484572,6.87692307692308,481.320192528077,42,8726,0,1,0,0,9 +"12823",2014,16051,"ID","16","051",26948,0.973170550690218,1500,0.102901885112068,7.3132203870903,8.10952565975287,8.83840674707681,3.64615384615385,243.745071331278,34,13949,0,1,0,0,9 +"12824",2014,16053,"ID","16","053",22918,0.960380486953486,1546,0.110960816825203,7.34342622914737,7.85554467791566,8.70698676304889,3.61538461538462,352.818539010504,44,12471,0,1,0,0,9 +"12825",2014,16055,"ID","16","055",146687,0.964707165597497,8971,0.136801488884496,9.10175243155928,9.77622220149025,10.6623756560587,5.3,346.995282290169,292,84151,0,1,0,0,9 +"12826",2014,16057,"ID","16","057",38570,0.951775991703396,7154,0.106974332382681,8.87542691981896,8.23270600986098,9.35478697634121,3.66153846153846,244.823436657123,59,24099,0,1,0,0,9 +"12827",2014,16059,"ID","16","059",7728,0.974378881987578,310,0.18361801242236,5.73657229747919,6.51174532964473,7.62705741701893,7.20769230769231,636.319138521782,26,4086,0,1,0,0,9 +"12828",2014,16065,"ID","16","065",38005,0.969898697539797,8621,0.0608077884488883,9.06195636620992,7.95296679092313,9.25521813075427,2.88461538461538,102.880658436214,23,22356,0,1,0,0,9 +"12829",2014,16067,"ID","16","067",20340,0.959488692232055,1329,0.120796460176991,7.19218205871325,7.73718007783463,8.57073395834427,4.15384615384615,352.504638218924,38,10780,0,1,0,0,9 +"12830",2014,16069,"ID","16","069",39873,0.915180698718431,2828,0.136909688260226,7.94732502701646,8.38981426208641,9.34871004124095,3.67692307692308,336.773967809657,77,22864,0,1,0,0,9 +"12831",2014,16073,"ID","16","073",11292,0.92826780021254,696,0.131774707757705,6.54534966033442,7.2034055210831,7.99564360428727,3.30769230769231,454.914703493095,28,6155,0,1,0,0,9 +"12832",2014,16075,"ID","16","075",22790,0.962878455462922,1362,0.121720052654673,7.21670948670946,7.87245515006398,8.73375513136489,5.13846153846154,270.049099836334,33,12220,0,1,0,0,9 +"12833",2014,16079,"ID","16","079",12380,0.965670436187399,632,0.167770597738288,6.44888939414686,7.18841273649695,8.14496941708788,9.06923076923077,770.877944325482,54,7005,0,1,0,0,9 +"12834",2014,16083,"ID","16","083",81019,0.958330761920043,5384,0.11424480677372,8.59118687132456,9.17398754251038,10.0220258584597,3.88461538461538,349.595500078435,156,44623,0,1,0,0,9 +"12835",2014,16085,"ID","16","085",9805,0.980316165221826,386,0.200305966343702,5.95583736946483,7.05617528410041,7.93808872689695,6.98461538461538,329.803853497657,19,5761,0,1,0,0,9 +"12836",2014,16087,"ID","16","087",9956,0.962736038569707,511,0.145741261550824,6.2363695902037,6.97073007814353,7.85554467791566,6.03846153846154,485.248447204969,25,5152,0,1,0,0,9 +"12837",2014,17001,"IL","17","001",66983,0.94350805428243,4208,0.13419822940149,8.34474275441755,8.90204734562028,9.85082489995282,5.36923076923077,410.172272354389,155,37789,1,1,1,0,9 +"12838",2014,17003,"IL","17","003",7084,0.629587803500847,442,0.149915302089215,6.0913098820777,6.55250788703459,7.61283103040736,10.7538461538462,631.431244153414,27,4276,1,1,1,0,9 +"12839",2014,17005,"IL","17","005",17076,0.917369407355353,1061,0.138674162567346,6.96696713861398,7.7393592026891,8.45510499910282,6.6,359.542056959031,38,10569,1,1,1,0,9 +"12840",2014,17007,"IL","17","007",53702,0.94462031209266,3357,0.119511377602324,8.11880299698004,8.88461023188687,9.62957688416827,7.86923076923077,338.387453634411,104,30734,1,1,1,0,9 +"12841",2014,17011,"IL","17","011",33858,0.972916297477701,1867,0.146789532754445,7.53208814354172,8.25088114470065,9.15651756527868,7.36153846153846,395.715717828312,75,18953,1,1,1,0,9 +"12842",2014,17015,"IL","17","015",14783,0.972941892714605,798,0.159845768788473,6.68210859744981,7.35308192051543,8.29579811063615,6.46153846153846,331.491712707182,27,8145,1,1,1,0,9 +"12843",2014,17017,"IL","17","017",13079,0.93921553635599,773,0.129367688661213,6.65027904858742,7.37148929521428,8.19450550976564,6.97692307692308,455.764075067024,34,7460,1,1,1,0,9 +"12844",2014,17019,"IL","17","019",208068,0.747169194686353,34635,0.10542226579772,10.4526200104567,10.0036948129532,11.078906549444,5.84615384615385,251.004400229577,328,130675,1,1,1,0,9 +"12845",2014,17021,"IL","17","021",33824,0.97214995269631,2072,0.139368495742668,7.63626960337937,8.30573114487587,9.13183814382123,7.68461538461538,375.139409915847,74,19726,1,1,1,0,9 +"12846",2014,17023,"IL","17","023",16060,0.986550435865504,905,0.137920298879203,6.80793494369993,7.52456122628536,8.40603814205008,7.18461538461538,548.305735277991,50,9119,1,1,1,0,9 +"12847",2014,17025,"IL","17","025",13441,0.983557770999182,822,0.143292909753739,6.71174039505618,7.32712329225929,8.22790983759748,8.05384615384615,524.865503214801,40,7621,1,1,1,0,9 +"12848",2014,17027,"IL","17","027",37637,0.949836596965752,2371,0.133246539309722,7.77106708606541,8.45595588194505,9.26378634768181,5.46923076923077,301.718483536665,69,22869,1,1,1,0,9 +"12849",2014,17029,"IL","17","029",52552,0.939716851880043,7295,0.124733597198965,8.89494446095689,8.59785109443369,9.70947795594698,6.83076923076923,315.563725490196,103,32640,1,1,1,0,9 +"12850",2014,17031,"IL","17","031",5254108,0.664899160809028,367295,0.118974333987805,12.8139206188646,13.4717053003443,14.3197471214724,7.58461538461538,318.301457043608,10347,3250692,1,1,1,0,9 +"12851",2014,17033,"IL","17","033",19290,0.936651114567133,1228,0.140694660445827,7.11314210870709,7.79069603117474,8.55236726642389,6.53076923076923,404.09251139197,47,11631,1,1,1,0,9 +"12852",2014,17035,"IL","17","035",10931,0.982984173451651,594,0.14719604793706,6.38687931936265,7.14991683613211,8.03008409426756,5.96153846153846,321.491721588169,20,6221,1,1,1,0,9 +"12853",2014,17037,"IL","17","037",104593,0.886455116499192,15552,0.104385570736091,9.65194452670022,9.35694839161227,10.3812733222239,6.58461538461538,193.938647662731,126,64969,1,1,1,0,9 +"12854",2014,17039,"IL","17","039",16216,0.980204736063148,885,0.147570300937346,6.78558764500793,7.59488438721652,8.44376191333035,6.61538461538462,389.514685756395,37,9499,1,1,1,0,9 +"12855",2014,17041,"IL","17","041",19898,0.980651321740878,1123,0.132726907226857,7.02375895473844,7.74109909003537,8.61504559158374,5.85384615384615,349.932705248991,39,11145,1,1,1,0,9 +"12856",2014,17043,"IL","17","043",933480,0.821140249389382,58722,0.134941294939367,10.9805697226539,11.7020240060432,12.5628410850981,5.8,210.659849012344,1189,564417,1,1,1,0,9 +"12857",2014,17045,"IL","17","045",17827,0.987434789925394,950,0.149997195265608,6.85646198459459,7.64826303090192,8.52575642207673,7.23846153846154,435.945704944021,44,10093,1,1,1,0,9 +"12858",2014,17047,"IL","17","047",6631,0.984165284270849,373,0.145830191524657,5.92157841964382,6.67076632084587,7.51152464839087,6.78461538461538,433.60433604336,16,3690,1,1,1,0,9 +"12859",2014,17049,"IL","17","049",34115,0.983350432361132,2233,0.136069177781035,7.71110125184016,8.23057721714645,9.17512761622044,5.48461538461538,340.758824127759,67,19662,1,1,1,0,9 +"12860",2014,17051,"IL","17","051",22088,0.938926113726911,1465,0.127716407098877,7.28961052145117,7.92732436030979,8.65102453904976,7.63076923076923,348.810169754283,45,12901,1,1,1,0,9 +"12861",2014,17053,"IL","17","053",13539,0.978506536671837,763,0.14506241229042,6.63725803128446,7.36518012602101,8.2220164372022,5.93846153846154,409.83606557377,31,7564,1,1,1,0,9 +"12862",2014,17055,"IL","17","055",39456,0.98286699107867,2243,0.137520275750203,7.71556953452021,8.47365918939251,9.3215239009368,9.3,625.478108266211,139,22223,1,1,1,0,9 +"12863",2014,17057,"IL","17","057",35996,0.946938548727636,2136,0.13876541837982,7.66669020008009,8.44160720445964,9.16534300604545,8.63076923076923,406.292814286389,86,21167,1,1,1,0,9 +"12864",2014,17059,"IL","17","059",5279,0.983330176169729,285,0.137526046599735,5.65248918026865,6.46614472423762,7.30787278076371,7.19230769230769,682.360968952576,20,2931,1,1,1,0,9 +"12865",2014,17061,"IL","17","061",13416,0.981738223017293,758,0.144454382826476,6.63068338564237,7.39510754656249,8.22067217029725,6.79230769230769,478.654592496766,37,7730,1,1,1,0,9 +"12866",2014,17063,"IL","17","063",50281,0.96901414053022,2981,0.121616515184662,8.00001409367807,8.84764735571189,9.60305790726184,8.83076923076923,400.673400673401,119,29700,1,1,1,0,9 +"12867",2014,17065,"IL","17","065",8313,0.984602429929027,442,0.145916035125707,6.0913098820777,6.84800527457636,7.74370325817375,6,304.61270670148,14,4596,1,1,1,0,9 +"12868",2014,17067,"IL","17","067",18326,0.984884863036124,952,0.153061224489796,6.85856503479136,7.58222919427646,8.51759311143756,6.51538461538462,385.52787663108,39,10116,1,1,1,0,9 +"12869",2014,17069,"IL","17","069",4146,0.977086348287506,190,0.160395561987458,5.24702407216049,6.15060276844628,7.0343879299155,8.78461538461539,836.267605633803,19,2272,1,1,1,0,9 +"12870",2014,17071,"IL","17","071",7018,0.982758620689655,354,0.167141635793673,5.86929691313377,6.50279004591562,7.56423847517049,6.39230769230769,592.630765266684,23,3881,1,1,1,0,9 +"12871",2014,17073,"IL","17","073",49841,0.967917979173773,2779,0.144559699845509,7.9298464297425,8.68541582383069,9.54115377038857,6.7,338.59642869872,95,28057,1,1,1,0,9 +"12872",2014,17075,"IL","17","075",28725,0.975352480417755,1537,0.146179286335944,7.3375877435386,8.06054004653864,8.98857087621512,6.46923076923077,546.963410033949,87,15906,1,1,1,0,9 +"12873",2014,17077,"IL","17","077",59386,0.795187417909945,10513,0.11083420334759,9.26036786557583,8.67846133901236,9.81956231759837,6.47692307692308,343.252448974203,130,37873,1,1,1,0,9 +"12874",2014,17079,"IL","17","079",9633,0.989722827779508,483,0.142842312882799,6.18001665365257,6.96129604591017,7.89020821310996,6.43846153846154,365.764447695684,20,5468,1,1,1,0,9 +"12875",2014,17081,"IL","17","081",38390,0.888538681948424,2449,0.138187027871842,7.80343505695217,8.45744318701046,9.25941620962278,7.52307692307692,434.801898930742,98,22539,1,1,1,0,9 +"12876",2014,17083,"IL","17","083",22500,0.978888888888889,1516,0.141111111111111,7.32383056620232,7.84463264446468,8.79966169681513,7.23076923076923,397.310513447433,52,13088,1,1,1,0,9 +"12877",2014,17085,"IL","17","085",22341,0.983348999597153,1089,0.163197708249407,6.99301512293296,7.74153358928183,8.69934806765309,6.22307692307692,422.465208747515,51,12072,1,1,1,0,9 +"12878",2014,17087,"IL","17","087",12882,0.894503959012576,914,0.135149821456296,6.81783057145415,7.38398945797851,8.03398273468322,9.54615384615385,370.174510840825,28,7564,1,1,1,0,9 +"12879",2014,17089,"IL","17","089",525476,0.879878434029337,33265,0.116285044416872,10.412261072176,11.2013877628934,11.9407520153168,6.91538461538462,243.443692315661,752,308901,1,1,1,0,9 +"12880",2014,17091,"IL","17","091",111916,0.822062975803281,8759,0.127604632045463,9.07783702216309,9.50368140227964,10.3947327243232,8.15384615384615,435.328200281956,281,64549,1,1,1,0,9 +"12881",2014,17093,"IL","17","093",121385,0.887201878321045,6506,0.0927050294517445,8.7804801070333,9.92627591416656,10.4978911659572,6.50769230769231,192.415730337079,137,71200,1,1,1,0,9 +"12882",2014,17095,"IL","17","095",51945,0.891981903936856,3735,0.142939647704303,8.22550309756692,8.6919864817894,9.56906321753222,6.96923076923077,437.103770437104,131,29970,1,1,1,0,9 +"12883",2014,17097,"IL","17","097",704359,0.833161782556906,48979,0.12844728327458,10.7991469138012,11.4195374366486,12.243705560337,6.50769230769231,250.553325221091,1046,417476,1,1,1,0,9 +"12884",2014,17099,"IL","17","099",111650,0.956327810120914,6878,0.142239140170175,8.83608319099221,9.47031717333574,10.3518524949595,8.20769230769231,442.279440191758,286,64665,1,1,1,0,9 +"12885",2014,17101,"IL","17","101",16564,0.885051919826129,1230,0.126599855107462,7.11476944836646,7.75362354655975,8.30819906320645,7.81538461538462,458.357714062805,47,10254,1,1,1,0,9 +"12886",2014,17103,"IL","17","103",34912,0.929852199816682,2091,0.146482584784601,7.64539769942863,8.34545542816193,9.14088310696096,6.3,446.793177996637,93,20815,1,1,1,0,9 +"12887",2014,17105,"IL","17","105",37043,0.938854844370056,2363,0.14175417757741,7.76768727718691,8.38320455141292,9.26823185039196,6.44615384615385,374.481744014979,84,22431,1,1,1,0,9 +"12888",2014,17107,"IL","17","107",29660,0.902056641942009,2228,0.130883344571814,7.70885960104718,8.23509549725836,9.0441677169216,6.46153846153846,456.366874443455,82,17968,1,1,1,0,9 +"12889",2014,17109,"IL","17","109",31811,0.915783848354343,5429,0.117663701235422,8.59951023390545,7.99023818572036,9.15186344221721,6.9,326.247642351022,64,19617,1,1,1,0,9 +"12890",2014,17111,"IL","17","111",307425,0.947287956412133,18718,0.132116776449541,9.8372409067172,10.6180292299502,11.4320515786301,6.62307692307692,272.9675783568,506,185370,1,1,1,0,9 +"12891",2014,17113,"IL","17","113",174166,0.851641537383875,22311,0.109809032761848,10.0128351093714,9.95930061735534,10.907092948737,5.49230769230769,254.959094474952,273,107076,1,1,1,0,9 +"12892",2014,17115,"IL","17","115",108562,0.797194230025239,7318,0.143226911810763,8.89809234557915,9.42891349477563,10.3777944096017,8.53846153846154,457.063488218098,283,61917,1,1,1,0,9 +"12893",2014,17117,"IL","17","117",46216,0.980331486930933,2673,0.148043967457158,7.89095671613892,8.60024674655152,9.49762236440662,7.54615384615385,431.309305029442,115,26663,1,1,1,0,9 +"12894",2014,17119,"IL","17","119",266662,0.894390651836407,17563,0.136382386691767,9.77354969542174,10.38908767175,11.3002519114391,7.1,439.246002861374,700,159364,1,1,1,0,9 +"12895",2014,17121,"IL","17","121",38573,0.940969071630415,2415,0.139605423482747,7.78945456608667,8.39253658681668,9.30337523794337,7.68461538461538,449.788874609877,98,21788,1,1,1,0,9 +"12896",2014,17123,"IL","17","123",11966,0.983285976934648,674,0.155022563931138,6.51323011091231,7.17165682276851,8.11192806331074,7.11538461538461,340.740740740741,23,6750,1,1,1,0,9 +"12897",2014,17125,"IL","17","125",14102,0.984541199829811,753,0.145724010778613,6.62406522779989,7.38087903556412,8.26487826280175,8.66923076923077,380.372765310004,30,7887,1,1,1,0,9 +"12898",2014,17127,"IL","17","127",14756,0.921116833830306,788,0.140078612089997,6.66949808985788,7.47873482556787,8.36100710822691,8.03076923076923,623.800383877159,52,8336,1,1,1,0,9 +"12899",2014,17129,"IL","17","129",12513,0.979141692639655,678,0.150643330935827,6.5191472879404,7.27447955877387,8.20467182895081,5.80769230769231,305.895439377086,22,7192,1,1,1,0,9 +"12900",2014,17131,"IL","17","131",15902,0.985096214312665,817,0.148912086529996,6.70563909486,7.49776170062257,8.39389497507174,7.03846153846154,382.624352914697,34,8886,1,1,1,0,9 +"12901",2014,17133,"IL","17","133",33608,0.986015234467984,1749,0.147732682694597,7.4667994750186,8.3380665255188,9.20653313363323,5.42307692307692,301.462091142039,60,19903,1,1,1,0,9 +"12902",2014,17135,"IL","17","135",29450,0.9553480475382,1820,0.137928692699491,7.50659178007084,8.17272910486547,8.95557714628151,8.80769230769231,479.547030275017,83,17308,1,1,1,0,9 +"12903",2014,17137,"IL","17","137",34684,0.918521508476531,2529,0.139891592665206,7.83557924666997,8.27664912542186,9.19674841845672,6.02307692307692,405.471421592575,83,20470,1,1,1,0,9 +"12904",2014,17139,"IL","17","139",14754,0.987054358140165,817,0.131150874339162,6.70563909486,7.42237370098682,8.31727776622123,5.46153846153846,321.066930106199,26,8098,1,1,1,0,9 +"12905",2014,17141,"IL","17","141",51944,0.973856460803943,3099,0.1382642846142,8.03883475778775,8.73165920153676,9.6006918422743,7.46923076923077,375.13397642015,112,29856,1,1,1,0,9 +"12906",2014,17143,"IL","17","143",187572,0.757277205553068,12996,0.127652314844433,9.47239689678899,10.0228693095562,10.9333212324757,7.74615384615385,386.77468317393,423,109366,1,1,1,0,9 +"12907",2014,17145,"IL","17","145",21543,0.897646567330455,1682,0.131086663881539,7.42773884053289,7.96241568012106,8.61013693705898,8.50769230769231,408.874081926251,54,13207,1,1,1,0,9 +"12908",2014,17147,"IL","17","147",16414,0.984281710734739,849,0.149201900816376,6.74405918631135,7.57455848420248,8.45935219172639,5.53076923076923,445.056691745258,42,9437,1,1,1,0,9 +"12909",2014,17149,"IL","17","149",15953,0.973296558641008,896,0.14191688083746,6.79794041297493,7.5137092478397,8.36776467792431,5.81538461538462,455.910152340709,41,8993,1,1,1,0,9 +"12910",2014,17153,"IL","17","153",5802,0.65770423991727,324,0.157876594277835,5.78074351579233,6.43615036836943,7.4312996751559,10.4923076923077,584.076237319397,19,3253,1,1,1,0,9 +"12911",2014,17157,"IL","17","157",33088,0.883915618955513,1987,0.137753868471954,7.59438124255182,8.37216741936598,9.00380808646717,6.67692307692308,461.218012299147,93,20164,1,1,1,0,9 +"12912",2014,17159,"IL","17","159",16019,0.979274611398964,972,0.139334540233473,6.87935580446044,7.50878717063428,8.40827078419205,6.5,410.518140463775,37,9013,1,1,1,0,9 +"12913",2014,17161,"IL","17","161",147090,0.852892786729213,9454,0.138799374532599,9.15419321135318,9.75225760321985,10.649084858097,7.10769230769231,367.629619088279,310,84324,1,1,1,0,9 +"12914",2014,17163,"IL","17","163",266061,0.665238422767711,17818,0.131706638703155,9.78796446128059,10.4178070655564,11.3137791625859,7.90769230769231,435.358697709635,690,158490,1,1,1,0,9 +"12915",2014,17165,"IL","17","165",24496,0.940847485303723,1544,0.138920640104507,7.34213173058472,7.93951526066241,8.86205867739547,8.24615384615385,579.191991419378,81,13985,1,1,1,0,9 +"12916",2014,17167,"IL","17","167",199252,0.841306486258607,12561,0.139491698954088,9.43835205468725,10.096707835199,11.0202180441179,6.07692307692308,406.938297980569,480,117954,1,1,1,0,9 +"12917",2014,17173,"IL","17","173",22102,0.988688806442856,1226,0.146412089403674,7.11151211649616,7.80791662892641,8.7168633865448,6.83076923076923,349.196037031022,43,12314,1,1,1,0,9 +"12918",2014,17177,"IL","17","177",46280,0.877312013828868,2724,0.148552290406223,7.9098566672694,8.48156601377309,9.47883962501119,7.40769230769231,368.331265508685,95,25792,1,1,1,0,9 +"12919",2014,17179,"IL","17","179",135392,0.970456156936894,7506,0.134978432994564,8.92345797969497,9.76789689822978,10.5730589965674,6.79230769230769,362.835463665529,285,78548,1,1,1,0,9 +"12920",2014,17181,"IL","17","181",17404,0.972075384968973,1024,0.145483796828315,6.93147180559945,7.61480536471107,8.50431056558522,8.88461538461539,510.102020404081,51,9998,1,1,1,0,9 +"12921",2014,17183,"IL","17","183",79811,0.840122288907544,5001,0.136297001666437,8.5173931714189,9.1433455031519,10.0122971133934,8.55384615384615,562.334689160054,253,44991,1,1,1,0,9 +"12922",2014,17185,"IL","17","185",11604,0.973543605653223,747,0.150982419855222,6.61606518513282,7.1420365747068,8.09529377684465,6.01538461538462,410.2096627165,27,6582,1,1,1,0,9 +"12923",2014,17187,"IL","17","187",17705,0.932674385766733,1364,0.138774357526123,7.21817683840341,7.56786260546388,8.49535649680706,5.88461538461539,312.091009765428,31,9933,1,1,1,0,9 +"12924",2014,17189,"IL","17","189",14389,0.98158315379804,795,0.148307735075405,6.67834211465433,7.44073370738926,8.31262602567496,4.81538461538462,332.265337605316,28,8427,1,1,1,0,9 +"12925",2014,17191,"IL","17","191",16610,0.983865141481036,924,0.138711619506321,6.82871207164168,7.55799495853081,8.42748727833174,6.66153846153846,499.29447519809,46,9213,1,1,1,0,9 +"12926",2014,17193,"IL","17","193",14265,0.98310550297932,712,0.141605327725202,6.56807791141198,7.30518821539304,8.26719218593215,5.90769230769231,585.614258434118,46,7855,1,1,1,0,9 +"12927",2014,17195,"IL","17","195",57037,0.965478549012045,3323,0.145817627154303,8.1086232683546,8.78124833323686,9.6737598733449,6.98461538461538,389.820994199464,125,32066,1,1,1,0,9 +"12928",2014,17197,"IL","17","197",685123,0.815882695515988,44092,0.11552232226914,10.6940336390832,11.5048529698793,12.2266935653846,7.7,246.700230989968,1005,407377,1,1,1,0,9 +"12929",2014,17199,"IL","17","199",67439,0.933510283367191,3957,0.131392814246949,8.28324144138542,9.07015834137632,9.87467647068201,7.19230769230769,427.731242202816,168,39277,1,1,1,0,9 +"12930",2014,17201,"IL","17","201",288770,0.824406967482772,18382,0.132967413512484,9.81912720391805,10.4723745157154,11.3534020444523,8.36923076923077,451.933668760606,759,167945,1,1,1,0,9 +"12931",2014,17203,"IL","17","203",39068,0.979420497593939,2418,0.139807515101874,7.79069603117474,8.43163530305459,9.30864606076031,5.57692307692308,266.534152511746,59,22136,1,1,1,0,9 +"12932",2014,20001,"KS","20","001",12889,0.951121111024905,777,0.14004189619055,6.65544035036765,7.26262860097424,8.1763915966338,5.04615384615385,569.151963574274,40,7028,0,1,0,0,9 +"12933",2014,20003,"KS","20","003",7888,0.975659229208925,414,0.13159229208925,6.02586597382531,6.70686233660275,7.6177595766085,5.10769230769231,268.423621278673,11,4098,0,1,0,0,9 +"12934",2014,20005,"KS","20","005",16534,0.925305431232612,1465,0.124712713197049,7.28961052145117,7.44249272279444,8.43858279083433,6.44615384615385,416.301489921122,38,9128,0,1,0,0,9 +"12935",2014,20009,"KS","20","009",27339,0.962910128388017,1755,0.14067815209042,7.47022413589997,7.92117272158701,8.92943528380342,3.50769230769231,369.515011547344,56,15155,0,1,0,0,9 +"12936",2014,20011,"KS","20","011",14798,0.939383700500068,986,0.133058521421814,6.89365635460264,7.36391350140582,8.28121766128665,5.20769230769231,456.215942212647,36,7891,0,1,0,0,9 +"12937",2014,20013,"KS","20","013",9789,0.870160384104607,517,0.148431913372152,6.24804287450843,6.89365635460264,7.88269220628903,4.04615384615385,400.076204991427,21,5249,0,1,0,0,9 +"12938",2014,20015,"KS","20","015",65900,0.951062215477997,4120,0.131972685887709,8.32360844234357,9.00981411052738,9.82676848212272,4.81538461538462,385.855489190761,146,37838,0,1,0,0,9 +"12939",2014,20021,"KS","20","021",20785,0.928313687755593,1052,0.136925667548713,6.95844839329766,7.7873820264847,8.66388757056704,5,518.492913930176,60,11572,0,1,0,0,9 +"12940",2014,20027,"KS","20","027",8298,0.976620872499397,390,0.138708122439142,5.96614673912369,6.86171134048073,7.68017564043659,4.38461538461539,296.397628818969,13,4386,0,1,0,0,9 +"12941",2014,20029,"KS","20","029",9332,0.971174453493356,631,0.129768538362623,6.44730586254121,6.77308037565554,7.78155595923534,4.17692307692308,446.15696613263,22,4931,0,1,0,0,9 +"12942",2014,20031,"KS","20","031",8398,0.971302691116933,411,0.152774470111931,6.01859321449623,6.81563999007433,7.76599307940768,5.71538461538462,317.931326833404,15,4718,0,1,0,0,9 +"12943",2014,20035,"KS","20","035",35918,0.909850214377192,2545,0.128988251016204,7.84188592898462,8.29404964010203,9.18574025510795,4.59230769230769,493.987325981737,99,20041,0,1,0,0,9 +"12944",2014,20037,"KS","20","037",39291,0.934717874322364,5586,0.112392150874246,8.62801874650512,8.31483217928456,9.33732538373067,5.3,426.779324912704,99,23197,0,1,0,0,9 +"12945",2014,20041,"KS","20","041",19311,0.967479674796748,1032,0.137175702967221,6.93925394604151,7.70930833338587,8.56674497024549,5.01538461538462,346.441947565543,37,10680,0,1,0,0,9 +"12946",2014,20045,"KS","20","045",116540,0.861266517933757,21663,0.0993907671185859,9.98336101511929,9.46977727898766,10.526319559181,4.06153846153846,232.021637675011,175,75424,0,1,0,0,9 +"12947",2014,20051,"KS","20","051",28983,0.962633267777663,3926,0.121346996515199,8.27537637483641,7.98173328669189,9.06323150693797,2.73076923076923,245.335767672733,43,17527,0,1,0,0,9 +"12948",2014,20055,"KS","20","055",37105,0.899204958900418,2799,0.102762430939227,7.93701748951545,8.36053938137086,9.22522898446993,3.4,306.410686072677,64,20887,0,1,0,0,9 +"12949",2014,20057,"KS","20","057",34923,0.928013057297483,2705,0.099017839246342,7.90285719128058,8.3584318990313,9.13281116946695,3.76923076923077,250.255362614913,49,19580,0,1,0,0,9 +"12950",2014,20059,"KS","20","059",25551,0.961488787131619,1569,0.134828382450785,7.35819375273303,7.97487690055888,8.89508153175417,5.06923076923077,405.191951102259,59,14561,0,1,0,0,9 +"12951",2014,20061,"KS","20","061",36530,0.721105940323022,5190,0.0611552148918697,8.55448897615993,8.31016902198191,9.19248185367487,7.25384615384615,255.38124771981,56,21928,0,1,0,0,9 +"12952",2014,20073,"KS","20","073",6290,0.969634340222576,262,0.161526232114467,5.5683445037611,6.45362499889269,7.41397029019044,4.48461538461538,566.318926974665,19,3355,0,1,0,0,9 +"12953",2014,20079,"KS","20","079",34621,0.954767337742988,2231,0.131278703676959,7.71020519443253,8.25660734462616,9.14077590859027,4.21538461538462,438.455780130467,82,18702,0,1,0,0,9 +"12954",2014,20085,"KS","20","085",13441,0.882821218659326,674,0.135406591771446,6.51323011091231,7.34018683532012,8.20138595523861,4.10769230769231,325.20325203252,24,7380,0,1,0,0,9 +"12955",2014,20087,"KS","20","087",18798,0.973667411426748,870,0.152569422278966,6.76849321164863,7.64491934495886,8.57772369115627,4.79230769230769,456.450861667443,49,10735,0,1,0,0,9 +"12956",2014,20091,"KS","20","091",573322,0.888737916912311,31613,0.123733259843509,10.3613237073814,11.2883809327404,12.0704762651424,3.75384615384615,217.588870635115,747,343308,0,1,0,0,9 +"12957",2014,20095,"KS","20","095",7687,0.977104201899311,403,0.14947313646416,5.99893656194668,6.62539236800796,7.62559507213245,3.96923076923077,526.946107784431,22,4175,0,1,0,0,9 +"12958",2014,20099,"KS","20","099",20779,0.909620289715578,1288,0.137542711391309,7.1608459066643,7.72709448477984,8.66008067896479,5.78461538461538,537.496800614282,63,11721,0,1,0,0,9 +"12959",2014,20103,"KS","20","103",78678,0.865171966750553,4758,0.125536998906937,8.4675826908629,9.34154405759153,9.95792838821438,4.95384615384615,329.39999166076,158,47966,0,1,0,0,9 +"12960",2014,20107,"KS","20","107",9532,0.976185480486781,416,0.142467477968947,6.03068526026126,6.98564181763921,7.82484569102686,7.4,527.859237536657,27,5115,0,1,0,0,9 +"12961",2014,20111,"KS","20","111",33148,0.922348256305056,4478,0.121093278629178,8.4069317971587,8.11522197256233,9.20542832761516,5.08461538461538,298.431967627719,59,19770,0,1,0,0,9 +"12962",2014,20113,"KS","20","113",28908,0.966479867164799,1845,0.141379548913795,7.52023455647463,8.03786623470962,8.98369068133269,3.21538461538462,360.047178595816,58,16109,0,1,0,0,9 +"12963",2014,20115,"KS","20","115",12188,0.971939612733837,804,0.146209386281588,6.68959926917897,7.02464903045364,8.05134093329298,4.03076923076923,464.684014869888,30,6456,0,1,0,0,9 +"12964",2014,20117,"KS","20","117",9947,0.980496632150397,478,0.15240776113401,6.16961073249146,6.90675477864855,7.86787149039632,3.21538461538462,390.189520624303,21,5382,0,1,0,0,9 +"12965",2014,20121,"KS","20","121",32889,0.969351454893733,1600,0.136823862081547,7.37775890822787,8.31605572036464,9.13680146864131,4.68461538461538,338.364036736667,63,18619,0,1,0,0,9 +"12966",2014,20125,"KS","20","125",34109,0.877862147820223,2114,0.134539271160104,7.65633716643018,8.17723488551019,9.13841463240459,5.71538461538462,466.663090704286,87,18643,0,1,0,0,9 +"12967",2014,20133,"KS","20","133",16332,0.960568209649767,981,0.135623316189077,6.88857245956536,7.47477218239787,8.37447688921464,7.48461538461538,553.547220967013,49,8852,0,1,0,0,9 +"12968",2014,20139,"KS","20","139",15973,0.976272459775872,807,0.151317848869968,6.69332366826995,7.50163445788341,8.40020983593042,5.39230769230769,408.070732260258,36,8822,0,1,0,0,9 +"12969",2014,20143,"KS","20","143",6027,0.978430396548863,292,0.148664343786295,5.67675380226828,6.5510803350434,7.39079852173568,4.09230769230769,356.930398572278,12,3362,0,1,0,0,9 +"12970",2014,20145,"KS","20","145",6823,0.928184083247838,374,0.150666862084127,5.92425579741453,6.68461172766793,7.41878088275079,3.76923076923077,686.442755577347,28,4079,0,1,0,0,9 +"12971",2014,20149,"KS","20","149",22755,0.958734344100198,1286,0.120061524939574,7.15929190479756,7.900636613018,8.73889570493404,3.88461538461538,334.315052137228,42,12563,0,1,0,0,9 +"12972",2014,20155,"KS","20","155",63716,0.942369263607257,4205,0.137547868667211,8.34402957240705,8.85280791762332,9.754291246174,4.35384615384615,436.571937044658,157,35962,0,1,0,0,9 +"12973",2014,20159,"KS","20","159",9972,0.955375050140393,812,0.136582430806258,6.69950034016168,6.90173720665657,7.86978390253015,3.49230769230769,345.894775168396,19,5493,0,1,0,0,9 +"12974",2014,20161,"KS","20","161",76570,0.857241739584694,20072,0.0724043359017892,9.90708108804626,8.80911625812527,10.0417265967599,3.68461538461538,134.445806477124,68,50578,0,1,0,0,9 +"12975",2014,20169,"KS","20","169",55540,0.917842996038891,3731,0.130662585523947,8.22443157322116,8.75416074932352,9.66738540005753,4.16153846153846,402.584027712761,129,32043,0,1,0,0,9 +"12976",2014,20173,"KS","20","173",509084,0.8284880294804,35968,0.12268309355627,10.4903849332534,11.0217227137834,11.9117821185974,5.33846153846154,403.344113907615,1196,296521,0,1,0,0,9 +"12977",2014,20175,"KS","20","175",23308,0.887678050454779,1905,0.0888107087695212,7.5522372875608,7.95437227253187,8.72225423517968,3.47692307692308,301.864010263376,40,13251,0,1,0,0,9 +"12978",2014,20177,"KS","20","177",178651,0.862368528583663,11064,0.13799530929018,9.3114518733446,9.92382925019404,10.8713645358817,4.73076923076923,443.391701821527,453,102167,0,1,0,0,9 +"12979",2014,20181,"KS","20","181",6069,0.970670621189652,381,0.140715109573241,5.9427993751267,6.42162226780652,7.38770923908104,3.17692307692308,414.446417998816,14,3378,0,1,0,0,9 +"12980",2014,20191,"KS","20","191",23381,0.962490911423806,1305,0.149736965912493,7.17395831975679,7.84502441724148,8.7598255953143,4.73846153846154,481.725034408931,63,13078,0,1,0,0,9 +"12981",2014,20205,"KS","20","205",8971,0.964663917066102,453,0.155389588674618,6.11589212548303,6.85751406254539,7.79893331004122,6.86153846153846,658.707286949362,32,4858,0,1,0,0,9 +"12982",2014,20209,"KS","20","209",162325,0.678576929000462,10977,0.114055136300631,9.30355745368732,9.92564035717726,10.766757182433,6.79230769230769,439.782770737941,413,93910,0,1,0,0,9 +"12983",2014,21001,"KY","21","001",19268,0.959570271953498,1670,0.130267801536226,7.4205789054108,7.66199755890189,8.63905677917308,8.59230769230769,431.30559798724,48,11129,1,1,1,0,9 +"12984",2014,21003,"KY","21","003",20482,0.980617127233669,1262,0.131432477297139,7.14045304310116,7.84424071814181,8.69517199877606,5.88461538461539,508.517670989067,60,11799,1,1,1,0,9 +"12985",2014,21005,"KY","21","005",21881,0.966272108221745,1218,0.130661304327956,7.10496544826984,8.03333401588006,8.80417501875363,5.19230769230769,467.86316919773,61,13038,1,1,1,0,9 +"12986",2014,21007,"KY","21","007",8178,0.956224015651749,423,0.148202494497432,6.04737217904628,6.93439720992856,7.74413662762799,7.96153846153846,645.438898450947,30,4648,1,1,1,0,9 +"12987",2014,21009,"KY","21","009",43041,0.943309867335796,2487,0.132780372203248,7.8188324438034,8.57432938278705,9.43827244002219,6.23846153846154,525.868694632094,130,24721,1,1,1,0,9 +"12988",2014,21011,"KY","21","011",12135,0.975525339925834,691,0.135311083642357,6.53813982376767,7.36264527041782,8.16166045205628,8.85384615384615,594.547563805104,41,6896,1,1,1,0,9 +"12989",2014,21013,"KY","21","013",27830,0.966079770032339,1849,0.137333812432627,7.52240023138712,8.17244681834278,9.0212358628854,10.0153846153846,627.283800243605,103,16420,1,1,1,0,9 +"12990",2014,21015,"KY","21","015",126752,0.934194332239333,7179,0.118601678868972,8.87891537657648,9.8045508046761,10.5370439516824,5.15384615384615,304.389618711951,228,74904,1,1,1,0,9 +"12991",2014,21017,"KY","21","017",20049,0.922938799940147,1218,0.136465659135119,7.10496544826984,7.84619881549743,8.67965211911394,5.60769230769231,505.050505050505,58,11484,1,1,1,0,9 +"12992",2014,21019,"KY","21","019",48828,0.957094290161383,2705,0.143278446792824,7.90285719128058,8.74496601111411,9.54816883136854,7.5,569.899572575321,164,28777,1,1,1,0,9 +"12993",2014,21021,"KY","21","021",29820,0.902347417840376,2527,0.131153588195842,7.83478810738819,8.19533366716287,9.03670101556506,6.85384615384615,438.242417252912,76,17342,1,1,1,0,9 +"12994",2014,21023,"KY","21","023",8362,0.98660607510165,465,0.139081559435542,6.14203740558736,6.93925394604151,7.79770203551669,7.83076923076923,530.828909759085,26,4898,1,1,1,0,9 +"12995",2014,21025,"KY","21","025",13361,0.985105905246613,878,0.146994985405284,6.77764659363512,7.48885295573346,8.32069157104845,11.3307692307692,1167.31517509728,96,8224,1,1,1,0,9 +"12996",2014,21027,"KY","21","027",19893,0.966269542049967,1073,0.150203589202232,6.9782137426307,7.7341213033283,8.6383483129727,7.16923076923077,517.816394593646,59,11394,1,1,1,0,9 +"12997",2014,21029,"KY","21","029",78039,0.976691141608683,4879,0.131882776560438,8.49269555981584,9.28126471031288,10.0860590780853,5.76923076923077,453.486174970083,216,47631,1,1,1,0,9 +"12998",2014,21031,"KY","21","031",12745,0.98462142016477,665,0.139270302079247,6.49978704065585,7.38336814699238,8.20494516501921,7.44615384615385,510.615425960763,38,7442,1,1,1,0,9 +"12999",2014,21033,"KY","21","033",12844,0.933821239489256,742,0.144347555278729,6.60934924316738,7.36518012602101,8.20111164444276,6.47692307692308,626.391982182628,45,7184,1,1,1,0,9 +"13000",2014,21035,"KY","21","035",38482,0.931708331167819,5971,0.114365157736084,8.69466969654699,8.26616443661249,9.37271429096044,5.73076923076923,402.736878572666,93,23092,1,1,1,0,9 +"13001",2014,21037,"KY","21","037",92403,0.952793740462972,6996,0.132744607859052,8.85309383613849,9.30036387462377,10.2495210768749,5.14615384615385,406.395379926207,228,56103,1,1,1,0,9 +"13002",2014,21039,"KY","21","039",4959,0.973785037305908,265,0.136922766686832,5.57972982598622,6.36990098282823,7.23345541862144,5.96923076923077,395.68345323741,11,2780,1,1,1,0,9 +"13003",2014,21041,"KY","21","041",10747,0.965571787475575,694,0.127291337117335,6.5424719605068,7.17165682276851,8.01334318138667,7.1,645.057248830834,40,6201,1,1,1,0,9 +"13004",2014,21043,"KY","21","043",27517,0.987971072427954,1963,0.134571355889087,7.58222919427646,8.12385426310591,8.99317889233952,10.6461538461538,553.146017977246,88,15909,1,1,1,0,9 +"13005",2014,21045,"KY","21","045",15790,0.983217226092464,916,0.136732108929702,6.82001636467413,7.57660976697304,8.41715183723601,6.77692307692308,623.122287748971,56,8987,1,1,1,0,9 +"13006",2014,21047,"KY","21","047",73432,0.743340777862512,9190,0.088353851182046,9.12587121534973,8.9572529442889,9.87729756944589,7.58461538461538,410.781870211391,178,43332,1,1,1,0,9 +"13007",2014,21049,"KY","21","049",35643,0.939875992480992,2063,0.137193838902449,7.63191651307125,8.47491179915963,9.28303305736962,6.09230769230769,570.3693141309,120,21039,1,1,1,0,9 +"13008",2014,21051,"KY","21","051",21093,0.951405679609349,1389,0.124685914758451,7.23633934275434,8.03592636989179,8.6909784171879,11.1,635.324015247776,85,13379,1,1,1,0,9 +"13009",2014,21053,"KY","21","053",10218,0.982775494225876,584,0.139557643374437,6.36990098282823,7.09257371597468,7.97212112892166,8.96153846153846,808.671713695802,47,5812,1,1,1,0,9 +"13010",2014,21055,"KY","21","055",9180,0.979738562091503,491,0.14161220043573,6.19644412779452,6.98841318199959,7.84306401669205,6.13846153846154,521.537570021248,27,5177,1,1,1,0,9 +"13011",2014,21057,"KY","21","057",6717,0.963078755396754,392,0.15110912609796,5.97126183979046,6.59578051396131,7.55747290161475,7.51538461538462,531.490831783152,20,3763,1,1,1,0,9 +"13012",2014,21059,"KY","21","059",98488,0.928346600601088,6161,0.132564373324669,8.72599438101457,9.37602428761711,10.2702118323279,5.62307692307692,393.017738908756,222,56486,1,1,1,0,9 +"13013",2014,21061,"KY","21","061",12022,0.973798036932291,742,0.144901014806189,6.60934924316738,7.31188616407716,8.155649270366,8.29230769230769,570.6948209445,40,7009,1,1,1,0,9 +"13014",2014,21063,"KY","21","063",7531,0.956712256008498,456,0.140087637763909,6.12249280951439,6.99576615630485,7.51860721681525,11.2230769230769,468.9831592411,22,4691,1,1,1,0,9 +"13015",2014,21065,"KY","21","065",14451,0.992249671303024,837,0.136737942010934,6.72982407048948,7.52131798019924,8.35396813031327,7.47692307692308,772.652774525872,66,8542,1,1,1,0,9 +"13016",2014,21067,"KY","21","067",311992,0.796273622400574,33847,0.113938818944075,10.4296056481204,10.6267031142181,11.5097704932769,4.76923076923077,339.367656699107,673,198310,1,1,1,0,9 +"13017",2014,21069,"KY","21","069",14476,0.978170765404808,828,0.13677811550152,6.71901315438526,7.50549227473742,8.34093322600088,7.66153846153846,527.767782175843,44,8337,1,1,1,0,9 +"13018",2014,21071,"KY","21","071",38012,0.98503104282858,2403,0.147006208565716,7.78447323573647,8.51177855871474,9.37016066342362,10.2,698.195231194836,159,22773,1,1,1,0,9 +"13019",2014,21073,"KY","21","073",49738,0.859704853431984,3450,0.141622099802968,8.1461295100254,8.73761303680885,9.63971730013066,5.26923076923077,449.604079989263,134,29804,1,1,1,0,9 +"13020",2014,21075,"KY","21","075",6259,0.740054321776642,402,0.147148106726314,5.99645208861902,6.47543271670409,7.4764723811639,8.26923076923077,661.703887510339,24,3627,1,1,1,0,9 +"13021",2014,21077,"KY","21","077",8632,0.971385542168675,538,0.129981464318814,6.28785856016178,7.0057890192535,7.83280751652486,6.94615384615385,802.662490211433,41,5108,1,1,1,0,9 +"13022",2014,21079,"KY","21","079",16975,0.96960235640648,858,0.146332842415317,6.75460409948796,7.67508185771633,8.53050420547591,6.49230769230769,538.009365348212,54,10037,1,1,1,0,9 +"13023",2014,21081,"KY","21","081",24832,0.979019007731959,1557,0.118274806701031,7.350516171834,8.10440130792161,8.87821865809223,6.5,570.990878072558,82,14361,1,1,1,0,9 +"13024",2014,21083,"KY","21","083",37584,0.937659642401022,2220,0.130640698169434,7.70526247486633,8.42398080969406,9.27565983809682,7.43846153846154,487.389390999858,103,21133,1,1,1,0,9 +"13025",2014,21085,"KY","21","085",26071,0.980514748187641,1581,0.139618733458632,7.36581283720947,8.10651451625519,8.91206909797013,8.33846153846154,549.087060068801,83,15116,1,1,1,0,9 +"13026",2014,21087,"KY","21","087",11043,0.968486824232546,579,0.146246490989767,6.361302477573,7.21303165983487,8.06714903991011,6.50769230769231,426.270918850647,27,6334,1,1,1,0,9 +"13027",2014,21089,"KY","21","089",36326,0.980537356163629,1996,0.144084127071519,7.59890045687141,8.42485858021344,9.27040012840385,8.47692307692308,496.792552934935,103,20733,1,1,1,0,9 +"13028",2014,21091,"KY","21","091",8687,0.97686197766778,522,0.12996431449292,6.25766758788264,7.03614849375054,7.78862606562503,5.98461538461538,426.136363636364,21,4928,1,1,1,0,9 +"13029",2014,21093,"KY","21","093",108612,0.82710013626487,8405,0.118495193901226,9.03658204584272,9.54774074917022,10.3837199392173,6.19230769230769,425.839380150043,277,65048,1,1,1,0,9 +"13030",2014,21095,"KY","21","095",28018,0.967949175530016,1740,0.149439645941894,7.46164039220858,8.12710918534638,9.04310445260027,13.7846153846154,818.488204140587,136,16616,1,1,1,0,9 +"13031",2014,21097,"KY","21","097",18632,0.965865178188064,1083,0.14201373980249,6.98749024700099,7.7510451179718,8.60006266923853,5.96153846153846,500.55617352614,54,10788,1,1,1,0,9 +"13032",2014,21099,"KY","21","099",18508,0.944024205748865,1163,0.13464447806354,7.05875815251866,7.66762609158499,8.56655462095396,6.28461538461538,536.672629695885,57,10621,1,1,1,0,9 +"13033",2014,21101,"KY","21","101",46396,0.906759203379602,2714,0.143977929131822,7.90617884039481,8.64541048921699,9.5498081175772,6.04615384615385,504.570383912249,138,27350,1,1,1,0,9 +"13034",2014,21103,"KY","21","103",15550,0.959485530546624,867,0.142958199356913,6.76503897678054,7.56008046502183,8.42704964156327,5.70769230769231,510.82731815658,46,9005,1,1,1,0,9 +"13035",2014,21105,"KY","21","105",4690,0.895948827292111,234,0.142004264392324,5.4553211153577,6.2709884318583,7.18159194461187,6.2,465.657741559953,12,2577,1,1,1,0,9 +"13036",2014,21107,"KY","21","107",46168,0.91704210708716,2670,0.143324380523306,7.8898337513943,8.65834547117212,9.52361708908944,6.4,617.077432065722,166,26901,1,1,1,0,9 +"13037",2014,21109,"KY","21","109",13304,0.992107636800962,782,0.142889356584486,6.66185474054531,7.50549227473742,8.29903718161307,11.3615384615385,464.882522930016,37,7959,1,1,1,0,9 +"13038",2014,21111,"KY","21","111",762038,0.744158427794939,50524,0.13292119290639,10.8302037498939,11.4754312605426,12.3739825177488,5.97692307692308,465.543684638145,2143,460322,1,1,1,0,9 +"13039",2014,21113,"KY","21","113",50877,0.942095642431747,3700,0.122294946636004,8.21608809863232,8.79724623670353,9.64969147608348,5.22307692307692,420.687122299756,126,29951,1,1,1,0,9 +"13040",2014,21115,"KY","21","115",23266,0.98766440299149,1422,0.14308432906387,7.25981961036319,8.02027047281924,8.86389860431748,9.13846153846154,675.087108013937,93,13776,1,1,1,0,9 +"13041",2014,21117,"KY","21","117",163741,0.928521262237314,10237,0.127799390500852,9.23376388691977,9.96170928973625,10.814383760093,5.50769230769231,448.669584024948,446,99405,1,1,1,0,9 +"13042",2014,21119,"KY","21","119",15943,0.986828075017249,1209,0.14921909301888,7.09754885061479,7.57660976697304,8.48218758221742,11.0230769230769,747.19800747198,72,9636,1,1,1,0,9 +"13043",2014,21121,"KY","21","121",31542,0.979646186037664,2167,0.12529325978061,7.68109900153636,8.2666784433059,9.13626316857987,9.86923076923077,729.402663424877,132,18097,1,1,1,0,9 +"13044",2014,21123,"KY","21","123",14120,0.957152974504249,820,0.136685552407932,6.7093043402583,7.40306109109009,8.31922993863233,6.56153846153846,579.080709373869,48,8289,1,1,1,0,9 +"13045",2014,21125,"KY","21","125",59913,0.980855573915511,3674,0.132492113564669,8.20903626577507,8.98155594077189,9.81065929022493,7.58461538461538,507.429212223157,181,35670,1,1,1,0,9 +"13046",2014,21127,"KY","21","127",15873,0.98973098973099,997,0.143766143766144,6.90475076996184,7.6004023345004,8.46695197497949,9.50769230769231,706.411216953869,66,9343,1,1,1,0,9 +"13047",2014,21129,"KY","21","129",7069,0.97680011317018,378,0.144716367237233,5.93489419561959,6.75925527066369,7.6004023345004,9.62307692307692,658.300761160255,32,4861,1,1,1,0,9 +"13048",2014,21131,"KY","21","131",10841,0.991236970759155,662,0.145835255050272,6.49526555593701,7.23128700432762,8.09864284375942,12.7461538461538,895.975702353835,59,6585,1,1,1,0,9 +"13049",2014,21133,"KY","21","133",23352,0.990107913669065,1265,0.153605686879068,7.14282740116162,7.99530662029082,8.86644061952617,12.2538461538462,856.836843984291,120,14005,1,1,1,0,9 +"13050",2014,21135,"KY","21","135",13832,0.990673799884326,807,0.140977443609023,6.69332366826995,7.4730690880322,8.30844552038576,9.54615384615385,615.460364352536,50,8124,1,1,1,0,9 +"13051",2014,21137,"KY","21","137",24438,0.968532613143465,1386,0.132253048530976,7.23417717974985,8.03333401588006,8.86601739881026,8.76923076923077,713.01247771836,100,14025,1,1,1,0,9 +"13052",2014,21139,"KY","21","139",9330,0.981993569131833,514,0.160128617363344,6.24222326545517,6.96885037834195,7.90507284949867,8.17692307692308,590.841949778434,32,5416,1,1,1,0,9 +"13053",2014,21141,"KY","21","141",26828,0.921723572387058,1521,0.134299985090204,7.32712329225929,8.04750951098142,8.94546295217767,5.62307692307692,578.75698783295,88,15205,1,1,1,0,9 +"13054",2014,21143,"KY","21","143",8413,0.935219303458933,438,0.161179127540711,6.08221891037645,6.93731408122368,7.60439634879634,6.95384615384615,734.41842000794,37,5038,1,1,1,0,9 +"13055",2014,21145,"KY","21","145",65356,0.867862170267458,3789,0.144332578493176,8.2398574110186,8.97638862194537,9.87091270660395,6.97692307692308,512.739190189238,194,37836,1,1,1,0,9 +"13056",2014,21147,"KY","21","147",17933,0.926225394524062,1185,0.1221769921374,7.07749805356923,7.87054784450771,8.45786772533142,10.4769230769231,546.448087431694,60,10980,1,1,1,0,9 +"13057",2014,21149,"KY","21","149",9397,0.983718207938704,526,0.138235607108652,6.26530121273771,7.0352685992811,7.88344635413774,6.32307692307692,491.307634164777,26,5292,1,1,1,0,9 +"13058",2014,21151,"KY","21","151",87125,0.933601147776184,11099,0.111713055954089,9.31461029315198,9.29394595583098,10.2048876018161,5.4,402.081806737689,214,53223,1,1,1,0,9 +"13059",2014,21153,"KY","21","153",12986,0.992453411366087,811,0.141460033882643,6.69826805411541,7.46336304552002,8.25971696102152,13.8461538461538,655.105973025048,51,7785,1,1,1,0,9 +"13060",2014,21155,"KY","21","155",19084,0.91406413749738,1160,0.12906099350241,7.05617528410041,7.77443551030296,8.60116662519242,6.35384615384615,496.883948121947,59,11874,1,1,1,0,9 +"13061",2014,21157,"KY","21","157",30997,0.988998935380843,1667,0.146949704810143,7.41878088275079,8.21256839823415,9.09605122557405,6.69230769230769,584.861734143433,103,17611,1,1,1,0,9 +"13062",2014,21159,"KY","21","159",12505,0.920751699320272,802,0.127788884446222,6.68710860786651,7.52833176670725,8.10982627601848,9.03846153846154,447.649838348669,36,8042,1,1,1,0,9 +"13063",2014,21161,"KY","21","161",17139,0.920882198494661,1016,0.141665208005134,6.92362862813843,7.63288550539513,8.52098598965493,7.86153846153846,558.545749974612,55,9847,1,1,1,0,9 +"13064",2014,21163,"KY","21","163",29100,0.938041237113402,1974,0.122989690721649,7.58781721999343,8.27715777243181,9.0762373874527,7.01538461538462,416.596295670776,74,17763,1,1,1,0,9 +"13065",2014,21165,"KY","21","165",6303,0.967158495954307,399,0.152943042995399,5.98896141688986,6.60394382460047,7.5076900778199,9.74615384615385,462.207721587819,17,3678,1,1,1,0,9 +"13066",2014,21167,"KY","21","167",21365,0.943973788907091,1208,0.145331149075591,7.09672137849476,7.83518375526675,8.74337213127397,6.14615384615385,529.402182765923,65,12278,1,1,1,0,9 +"13067",2014,21169,"KY","21","169",9988,0.97236684020825,601,0.141169403283941,6.39859493453521,7.0352685992811,7.95647679803678,6.05384615384615,492.610837438424,28,5684,1,1,1,0,9 +"13068",2014,21171,"KY","21","171",10672,0.97085832083958,635,0.139992503748126,6.45362499889269,7.12125245324454,8.01400499477946,5.5,589.873832541373,36,6103,1,1,1,0,9 +"13069",2014,21173,"KY","21","173",27381,0.961360067199883,1724,0.125086738979584,7.45240245122364,8.26359043261732,9.02135667230868,7.43076923076923,573.012939001848,93,16230,1,1,1,0,9 +"13070",2014,21175,"KY","21","175",13356,0.946915244085055,908,0.144728960766697,6.81124437860129,7.57609734062311,8.16905314992734,9.33846153846154,439.713029391345,38,8642,1,1,1,0,9 +"13071",2014,21177,"KY","21","177",31312,0.943663771078181,2070,0.134485181400102,7.63530388625941,8.29679586577005,9.07291569606451,7.56153846153846,621.524370297677,114,18342,1,1,1,0,9 +"13072",2014,21179,"KY","21","179",44861,0.934486525044025,2784,0.132208376986692,7.93164402145431,8.66042735950215,9.51207326765062,6.07692307692308,379.756354338998,101,26596,1,1,1,0,9 +"13073",2014,21181,"KY","21","181",7063,0.984709047147105,404,0.135494832224267,6.00141487796115,6.78897174299217,7.62413058566129,7.7,733.137829912023,30,4092,1,1,1,0,9 +"13074",2014,21183,"KY","21","183",23964,0.979093640460691,1424,0.133491904523452,7.26122509197192,8.01466637046494,8.82114223633189,7.64615384615385,508.812034510729,69,13561,1,1,1,0,9 +"13075",2014,21185,"KY","21","185",63991,0.928802487849854,3555,0.12279851854167,8.17611034223734,9.16523839806376,9.75701564863587,4.72307692307692,299.385332768122,113,37744,1,1,1,0,9 +"13076",2014,21187,"KY","21","187",10659,0.981330331175532,568,0.149826437752134,6.34212141872115,7.21081845347222,8.02256894698825,4.97692307692308,565.519470027468,35,6189,1,1,1,0,9 +"13077",2014,21189,"KY","21","189",4506,0.989125610297381,248,0.151797603195739,5.51342874616498,6.24997524225948,7.19218205871325,10.3692307692308,822.737471952132,22,2674,1,1,1,0,9 +"13078",2014,21191,"KY","21","191",14484,0.986191659762497,967,0.142502071251036,6.87419849545329,7.50659178007084,8.36683530982767,6.60769230769231,488.636363636364,43,8800,1,1,1,0,9 +"13079",2014,21193,"KY","21","193",27561,0.972497369471354,1701,0.147345887304524,7.43897159239586,8.20330402679528,9.05707263557296,10.2461538461538,885.739592559788,150,16935,1,1,1,0,9 +"13080",2014,21195,"KY","21","195",62970,0.9840717802128,4119,0.147371764332222,8.32336569443608,9.03133331615006,9.8619882453581,10.4307692307692,771.362828156051,295,38244,1,1,1,0,9 +"13081",2014,21197,"KY","21","197",12347,0.986393455900219,775,0.138090224345995,6.65286302935335,7.42237370098682,8.21419441485256,8.43846153846154,970.350404312669,72,7420,1,1,1,0,9 +"13082",2014,21199,"KY","21","199",63894,0.974363790027233,3726,0.137868970482361,8.22309055116153,8.99615656203344,9.8420907576708,7.29230769230769,600.739371534196,221,36788,1,1,1,0,9 +"13083",2014,21203,"KY","21","203",16832,0.991088403041825,996,0.139555608365019,6.9037472575846,7.67229245562876,8.52377150677636,7.50769230769231,642.634802691033,64,9959,1,1,1,0,9 +"13084",2014,21205,"KY","21","205",24267,0.966497712943504,3908,0.108254007499897,8.27078101316267,7.82803803212583,8.91811465947453,6.93076923076923,466.151812426077,67,14373,1,1,1,0,9 +"13085",2014,21207,"KY","21","207",17795,0.981567856139365,1003,0.141781399269458,6.91075078796194,7.67925142595306,8.5354259596773,10.2076923076923,764.116304455691,77,10077,1,1,1,0,9 +"13086",2014,21209,"KY","21","209",51236,0.920973534233742,3435,0.115953626356468,8.14177220465645,8.95299349932047,9.65937569478572,4.85384615384615,341.395858159683,106,31049,1,1,1,0,9 +"13087",2014,21211,"KY","21","211",45135,0.899014068904398,2797,0.127262656475019,7.93630269320196,8.73036721169296,9.55485163741401,4.93076923076923,374.419649543208,100,26708,1,1,1,0,9 +"13088",2014,21213,"KY","21","213",17764,0.886117991443369,1096,0.132684080162126,6.99942246750796,7.71154897962915,8.55236726642389,5.87692307692308,532.27523468499,55,10333,1,1,1,0,9 +"13089",2014,21215,"KY","21","215",17782,0.970082105499944,934,0.139804296479586,6.83947643822884,7.87092959675514,8.60465446718623,5.23846153846154,312.241711819267,34,10889,1,1,1,0,9 +"13090",2014,21217,"KY","21","217",25330,0.929569680221082,2088,0.129293328069483,7.64396194900253,7.87321705486274,8.89261137817211,7.70769230769231,456.556858888811,65,14237,1,1,1,0,9 +"13091",2014,21219,"KY","21","219",12432,0.908462033462033,767,0.119047619047619,6.64248680136726,7.31920245876785,8.14786712992395,5.38461538461539,508.425334108077,35,6884,1,1,1,0,9 +"13092",2014,21221,"KY","21","221",14133,0.911837543338286,712,0.149862025047761,6.56807791141198,7.38461038317697,8.29779262638086,7.00769230769231,615.621392843401,48,7797,1,1,1,0,9 +"13093",2014,21223,"KY","21","223",8726,0.978340591336237,478,0.136603254641302,6.16961073249146,7.03085747611612,7.82444593087762,7.23076923076923,663.932825619996,34,5121,1,1,1,0,9 +"13094",2014,21225,"KY","21","225",15093,0.854435831180017,1697,0.138209766116743,7.43661726523423,7.44132038971762,8.35772841676521,6.38461538461539,610.365109310842,55,9011,1,1,1,0,9 +"13095",2014,21227,"KY","21","227",121480,0.857713203819559,15038,0.109787619361212,9.61833560993797,9.59253685314499,10.5292120567786,5.53846153846154,383.10519714239,281,73348,1,1,1,0,9 +"13096",2014,21229,"KY","21","229",11895,0.925430853299706,812,0.134342160571669,6.69950034016168,7.24708058458576,8.14002395246292,5.39230769230769,485.937269916065,33,6791,1,1,1,0,9 +"13097",2014,21231,"KY","21","231",20615,0.969924812030075,1233,0.145913170021829,7.11720550316434,7.83439230291044,8.6919864817894,9.63076923076923,619.765494137353,74,11940,1,1,1,0,9 +"13098",2014,21233,"KY","21","233",13184,0.94212682038835,799,0.144796723300971,6.68336094576627,7.41938058291869,8.24695803256818,5.41538461538462,462.546575870487,36,7783,1,1,1,0,9 +"13099",2014,21235,"KY","21","235",35864,0.981736560339059,2959,0.123884675440553,7.99260665240021,8.34806422840827,9.25013784185025,8.68461538461538,727.681187731979,149,20476,1,1,1,0,9 +"13100",2014,21237,"KY","21","237",7255,0.99131633356306,384,0.143487250172295,5.95064255258773,6.74758652682932,7.6515955738576,11.1846153846154,1025.89154860772,42,4094,1,1,1,0,9 +"13101",2014,21239,"KY","21","239",25584,0.934920262664165,1418,0.150758286429018,7.25700270709207,8.07589363029886,8.95892593869494,4.46153846153846,417.938171686347,63,15074,1,1,1,0,9 +"13102",2014,25001,"MA","25","001",214398,0.943982686405657,11214,0.171531450853086,9.32491827668362,9.87642463298644,11.0013328804984,7.23846153846154,399.516465050883,466,116641,1,1,1,0,9 +"13103",2014,25003,"MA","25","003",128928,0.941393646066021,8757,0.157297096053611,9.07760865952222,9.51222116382778,10.5506169722625,6.58461538461538,408.468377072376,306,74914,1,1,1,0,9 +"13104",2014,25005,"MA","25","005",555212,0.915061273891775,38096,0.132464716180486,10.5478645687266,11.159060854058,12.0499274780341,7.35384615384615,367.236530182066,1230,334934,1,1,1,0,9 +"13105",2014,25007,"MA","25","007",17312,0.922828096118299,845,0.169824399260628,6.73933662735717,7.61381868480863,8.55852705490921,8.23846153846154,211.193241816262,22,10417,1,1,1,0,9 +"13106",2014,25009,"MA","25","009",771803,0.879171239292928,51560,0.137049221109532,10.8505014570531,11.4487815326389,12.3786258132519,5.99230769230769,302.929405696901,1392,459513,1,1,1,0,9 +"13107",2014,25011,"MA","25","011",71344,0.95709520071765,4139,0.17593630858937,8.32820949174873,9.01371703047137,10.0140893088639,5.3,361.721611721612,158,43680,1,1,1,0,9 +"13108",2014,25013,"MA","25","013",469561,0.847546964079214,36283,0.132099982749845,10.4991045909979,10.8964615091812,11.8686399478138,7.56153846153846,350.408991299442,969,276534,1,1,1,0,9 +"13109",2014,25015,"MA","25","015",161060,0.900943747671675,24737,0.132739351794362,10.1160553774782,9.67193373386195,10.8651339861311,5.25384615384615,280.859146107373,278,98982,1,1,1,0,9 +"13110",2014,25017,"MA","25","017",1575520,0.821088275616939,107001,0.124964456179547,11.5805934591948,12.248461412022,13.1178451857314,4.65384615384615,212.558160398325,2085,980908,1,1,1,0,9 +"13111",2014,25021,"MA","25","021",692439,0.819020881261743,41689,0.134120117439948,10.6379925840196,11.3887784722273,12.2790349616706,4.99230769230769,254.414414414414,1059,416250,1,1,1,0,9 +"13112",2014,25023,"MA","25","023",506634,0.872529281493149,31159,0.14172361112756,10.3468584070435,11.0208070975588,11.9316818513996,6.00769230769231,345.677851086416,1029,297676,1,1,1,0,9 +"13113",2014,25025,"MA","25","025",774113,0.633760187466171,80527,0.100622260574361,11.2963478108981,11.4991104759365,12.4929568998097,5.26923076923077,231.889202490205,1202,518351,1,1,1,0,9 +"13114",2014,25027,"MA","25","027",815707,0.886546272129576,56821,0.134224666454989,10.9476612546901,11.5377448987867,12.4240951064161,6.1,314.729967740178,1560,495663,1,1,1,0,9 +"13115",2014,24001,"MD","24","001",73051,0.900015057973197,6655,0.129430124159834,8.80312373082921,9.04899722156742,9.88343789473042,7.48461538461538,388.729154686601,169,43475,1,1,1,0,9 +"13116",2014,24003,"MD","24","003",559421,0.778655073728015,37533,0.127242273707995,10.5329758249855,11.1988446586639,12.0592649399582,4.98461538461538,331.867705069605,1145,345017,1,1,1,0,9 +"13117",2014,24005,"MD","24","005",825201,0.646437655795376,54853,0.133767409394802,10.9124121588294,11.5169672857966,12.4654169699502,6.02307692307692,342.966162154078,1697,494801,1,1,1,0,9 +"13118",2014,24009,"MD","24","009",90595,0.835520724101772,5558,0.135371709255478,8.62299361030245,9.27462886185855,10.2224865894939,5.24615384615385,351.899708583054,192,54561,1,1,1,0,9 +"13119",2014,24011,"MD","24","011",32542,0.827576670149345,2010,0.134779669350378,7.60589000105312,8.26590733415575,9.18132342290569,6.17692307692308,557.015239096164,106,19030,1,1,1,0,9 +"13120",2014,24013,"MD","24","013",167383,0.940035726447728,10570,0.138705842289838,9.26577507886428,9.87261588886904,10.8169543007192,4.73076923076923,355.458541518559,355,99871,1,1,1,0,9 +"13121",2014,24015,"MD","24","015",102252,0.907806204279623,6415,0.138755232171498,8.76639427704974,9.44335504308566,10.3433862929622,6.5,446.891191709845,276,61760,1,1,1,0,9 +"13122",2014,24017,"MD","24","017",154448,0.495895058531027,10455,0.118713094374806,9.25483561186273,9.95508330117978,10.8120283309502,5.66153846153846,308.830017437341,294,95198,1,1,1,0,9 +"13123",2014,24019,"MD","24","019",32502,0.690819026521445,1888,0.150944557258015,7.54327334670545,8.14815643992162,9.1949221192478,8.28461538461539,515.851692638366,96,18610,1,1,1,0,9 +"13124",2014,24021,"MD","24","021",243487,0.844969135929228,14931,0.127522208577871,9.61119486752666,10.3711446809007,11.2149236601116,4.97692307692308,273.544883760394,403,147325,1,1,1,0,9 +"13125",2014,24023,"MD","24","023",29669,0.982271057332569,1856,0.151976810812633,7.52617891334615,8.1376881849776,9.06658546833104,7.03846153846154,342.68455596213,59,17217,1,1,1,0,9 +"13126",2014,24025,"MD","24","025",249415,0.822825411462823,15365,0.136639736984544,9.63984747456458,10.3336777930311,11.2433190392457,5.59230769230769,304.823262407571,458,150251,1,1,1,0,9 +"13127",2014,24027,"MD","24","027",306989,0.622331744785644,17536,0.126675548635293,9.77201118974774,10.6597973080537,11.4690362714005,4.26923076923077,163.165083735045,307,188153,1,1,1,0,9 +"13128",2014,24029,"MD","24","029",19801,0.826422907933943,1526,0.148224837129438,7.3304052118444,7.44483327389219,8.63319686717254,6.36153846153846,370.816723834245,40,10787,1,1,1,0,9 +"13129",2014,24031,"MD","24","031",1025063,0.635750192914972,57983,0.12881354609424,10.9679051431171,11.8649476013683,12.6795172229178,4.32307692307692,171.842769471243,1073,624408,1,1,1,0,9 +"13130",2014,24033,"MD","24","033",900372,0.267883719173853,68261,0.122101753497443,11.1310938722215,11.7219538645927,12.5925553898341,5.96923076923077,318.50822330322,1815,569844,1,1,1,0,9 +"13131",2014,24035,"MD","24","035",48803,0.909923570272319,2625,0.145359916398582,7.87283617502572,8.62568878756954,9.56289684665117,5.03076923076923,383.411305357206,109,28429,1,1,1,0,9 +"13132",2014,24037,"MD","24","037",109998,0.809078346879034,7620,0.118193058055601,8.93853164868069,9.52719282172774,10.4100942893005,5.27692307692308,307.747736928227,205,66613,1,1,1,0,9 +"13133",2014,24039,"MD","24","039",25581,0.548297564598726,3372,0.127790156756968,8.12326131912175,7.94413749111411,8.83710041116275,9.33846153846154,363.09926764724,59,16249,1,1,1,0,9 +"13134",2014,24041,"MD","24","041",37533,0.844243732182346,1861,0.151173633868862,7.52886925664225,8.20521842639541,9.25464429753271,5.38461538461538,336.058584541305,67,19937,1,1,1,0,9 +"13135",2014,24043,"MD","24","043",149128,0.859972640952739,9350,0.128842336784507,9.14313162228273,9.86303007490485,10.6540070129539,6.39230769230769,426.686921263976,382,89527,1,1,1,0,9 +"13136",2014,24045,"MD","24","045",101416,0.695412952591307,10804,0.124901396229392,9.28767171491251,9.31946379899454,10.3437726792889,7.65384615384615,415.835275574708,248,59639,1,1,1,0,9 +"13137",2014,24047,"MD","24","047",51581,0.83742075570462,2687,0.155619317190438,7.89618060861549,8.53227882883428,9.56682529786263,11.4,418.763416264912,119,28417,1,1,1,0,9 +"13138",2014,24510,"MD","24","510",623833,0.316754644271784,50309,0.122279520320342,10.8259392665238,11.2240560212054,12.2525315229325,8.43076923076923,623.042748145496,2471,396602,1,1,1,0,9 +"13139",2014,23001,"ME","23","001",107411,0.940406476059249,6797,0.137993315396002,8.82423661734664,9.48349239264364,10.3824818939324,5.39230769230769,379.423339238958,242,63781,0,1,0,0,9 +"13140",2014,23003,"ME","23","003",69565,0.962941134191044,3941,0.163789261841443,8.279189777195,8.93629818522844,9.89822372286103,7.53846153846154,435.108777194299,174,39990,0,1,0,0,9 +"13141",2014,23005,"ME","23","005",288274,0.938430104692064,18365,0.144223898096949,9.81820195825377,10.4904405366897,11.4102945538833,4.38461538461539,275.005670220005,485,176360,0,1,0,0,9 +"13142",2014,23007,"ME","23","007",30206,0.982056545057273,2111,0.163311924783156,7.65491704784832,8.0519780789023,9.11294802596753,6.46923076923077,382.796667417248,68,17764,0,1,0,0,9 +"13143",2014,23009,"ME","23","009",54512,0.972886703845025,2962,0.173117845611975,7.99361999482774,8.6978466911095,9.70302239150588,6.84615384615385,397.379777094781,128,32211,0,1,0,0,9 +"13144",2014,23011,"ME","23","011",121277,0.973556403934794,7536,0.155882813723954,8.9274468162562,9.56359948861374,10.5205902717723,5.33846153846154,411.267915600671,299,72702,0,1,0,0,9 +"13145",2014,23013,"ME","23","013",39897,0.979772915256786,1953,0.168709426773943,7.57712193087668,8.41759382619348,9.33767762043738,5.14615384615385,363.763860279616,83,22817,0,1,0,0,9 +"13146",2014,23015,"ME","23","015",34052,0.980970280747093,1599,0.171678609185951,7.37713371283395,8.18979961872823,9.17812704961153,5.89230769230769,460.31746031746,87,18900,0,1,0,0,9 +"13147",2014,23017,"ME","23","017",57348,0.979423868312757,2828,0.167224663458185,7.94732502701646,8.7684187268574,9.74043907108576,6.96923076923077,397.460995432165,134,33714,0,1,0,0,9 +"13148",2014,23019,"ME","23","019",153288,0.962834664161578,12087,0.14565393246699,9.39988577385946,9.76071357854467,10.7630174385885,6.06153846153846,347.126094086079,326,93914,0,1,0,0,9 +"13149",2014,23021,"ME","23","021",17042,0.978112897547236,721,0.180905996948715,6.58063913728495,7.49665243816828,8.48817624234574,7.23076923076923,487.097108508654,47,9649,0,1,0,0,9 +"13150",2014,23023,"ME","23","023",35090,0.974351667141636,1699,0.162097463664862,7.43779512167193,8.321664807135,9.27218777530226,4.50769230769231,284.694074502992,59,20724,0,1,0,0,9 +"13151",2014,23025,"ME","23","025",51254,0.979084559253912,2537,0.160221641237757,7.83873755959928,8.72469504674049,9.62733871589802,7.78461538461538,455.791524919906,138,30277,0,1,0,0,9 +"13152",2014,23027,"ME","23","027",39056,0.978850880786563,2027,0.168194387546088,7.614312146452,8.44376191333035,9.36383369293329,6.01538461538462,394.546490728157,90,22811,0,1,0,0,9 +"13153",2014,23029,"ME","23","029",31971,0.928341309311564,1710,0.167464264489694,7.4442486494967,8.13944052187461,9.11052003669397,8.1,476.6919793803,86,18041,0,1,0,0,9 +"13154",2014,23031,"ME","23","031",200974,0.971473921999861,11158,0.156099794003204,9.31991200840547,10.0753378094628,11.0242363441997,5.12307692307692,333.702264348781,401,120167,0,1,0,0,9 +"13155",2014,26001,"MI","26","001",10447,0.984014549631473,384,0.197377237484445,5.95064255258773,6.65801104587075,7.87587915949631,10.6615384615385,606.290261462675,32,5278,1,1,1,0,9 +"13156",2014,26003,"MI","26","003",9370,0.870864461045891,476,0.177588046958378,6.16541785423142,6.94601399109923,7.74500280351584,10.4538461538462,375.738056897477,21,5589,1,1,1,0,9 +"13157",2014,26005,"MI","26","005",113361,0.963276611885922,6668,0.140639196901933,8.80507524387068,9.51613246360028,10.3985191040033,5.43076923076923,351.250665247472,231,65765,1,1,1,0,9 +"13158",2014,26007,"MI","26","007",28888,0.980510938798117,1627,0.164358903350872,7.39449310721904,8.04205641005875,9.01881660441743,8,441.114266723065,73,16549,1,1,1,0,9 +"13159",2014,26009,"MI","26","009",23147,0.978528535015337,1087,0.170821272735128,6.99117688712121,7.68753876620163,8.74145611599836,9.56153846153846,407.185628742515,51,12525,1,1,1,0,9 +"13160",2014,26011,"MI","26","011",15317,0.975321538160214,782,0.177449892276555,6.66185474054531,7.34601020991329,8.36310917603352,11.0923076923077,514.226945491944,45,8751,1,1,1,0,9 +"13161",2014,26013,"MI","26","013",8649,0.759278529309747,524,0.151000115620303,6.26149168432104,6.97541392745595,7.66622192566273,11.2384615384615,482.625482625483,25,5180,1,1,1,0,9 +"13162",2014,26015,"MI","26","015",59305,0.97998482421381,3315,0.15074614282101,8.10621290261996,8.8394216076206,9.73210593578051,5.43076923076923,315.724851638554,108,34207,1,1,1,0,9 +"13163",2014,26017,"MI","26","017",106073,0.960263214955738,6765,0.150028753782772,8.81951754060489,9.41352608394945,10.3480131045449,7.19230769230769,398.009950248756,248,62310,1,1,1,0,9 +"13164",2014,26019,"MI","26","019",17466,0.969483568075117,831,0.163059658765602,6.72262979485545,7.50163445788341,8.48404997282298,8.69230769230769,424.650440186432,41,9655,1,1,1,0,9 +"13165",2014,26021,"MI","26","021",156074,0.807405461511847,9924,0.143111600907262,9.20271134481169,9.79629202093257,10.7186974865705,6.78461538461538,479.786062608148,427,88998,1,1,1,0,9 +"13166",2014,26023,"MI","26","023",43733,0.961905197448151,2523,0.139322708252349,7.83320394864106,8.56025268087669,9.36546200884348,6.65384615384615,390.453802940356,98,25099,1,1,1,0,9 +"13167",2014,26025,"MI","26","025",134845,0.84099521673032,9132,0.136816344692054,9.11954000764969,9.68227962668967,10.587013598052,6.33846153846154,498.023309544591,388,77908,1,1,1,0,9 +"13168",2014,26027,"MI","26","027",51585,0.909372879713095,2967,0.155762334011825,7.99530662029082,8.67488046725183,9.58850279755634,6.75384615384615,384.432197047016,113,29394,1,1,1,0,9 +"13169",2014,26029,"MI","26","029",26222,0.965334451986881,1322,0.170200594920296,7.18690102041163,7.8578675593318,8.9085593751449,8.2,354.247564547994,52,14679,1,1,1,0,9 +"13170",2014,26031,"MI","26","031",25635,0.947571679344646,1228,0.176321435537351,7.11314210870709,7.88683299895506,8.87136500513685,10.9230769230769,562.074053256517,80,14233,1,1,1,0,9 +"13171",2014,26033,"MI","26","033",38275,0.736355323318093,3414,0.132906596995428,8.13563990335439,8.50065722277614,9.19826779074191,9.50769230769231,397.060065895075,94,23674,1,1,1,0,9 +"13172",2014,26035,"MI","26","035",30727,0.977511634718651,1689,0.165131643180265,7.4318919168078,8.06463647577422,9.06750872286864,9.86153846153846,592.128178335075,102,17226,1,1,1,0,9 +"13173",2014,26037,"MI","26","037",76973,0.953217361932106,5279,0.140140049108129,8.57149196482362,9.14302466469132,10.0500955721722,5.03846153846154,248.468865107561,114,45881,1,1,1,0,9 +"13174",2014,26039,"MI","26","039",13740,0.97467248908297,662,0.175109170305677,6.49526555593701,7.15539630189673,8.24249315318763,9.50769230769231,519.547993245876,40,7699,1,1,1,0,9 +"13175",2014,26041,"MI","26","041",36592,0.957668342807171,1990,0.166976388281592,7.59588991771854,8.2630748358026,9.23600811872476,8.46153846153846,388.217595962537,80,20607,1,1,1,0,9 +"13176",2014,26043,"MI","26","043",25910,0.977383249710536,1411,0.163489000385951,7.25205395185281,7.86480400332846,8.90150275745161,6.82307692307692,268.420346262247,40,14902,1,1,1,0,9 +"13177",2014,26045,"MI","26","045",108668,0.892939963926823,7262,0.145995141163912,8.89041055197428,9.43675855582405,10.3986105325748,5.74615384615385,335.065539440006,216,64465,1,1,1,0,9 +"13178",2014,26047,"MI","26","047",32980,0.938750758035173,1830,0.163462704669497,7.51207124583547,8.21256839823415,9.17792048072007,9.60769230769231,331.52660106299,63,19003,1,1,1,0,9 +"13179",2014,26049,"MI","26","049",412950,0.763063324857731,28010,0.138307301126044,10.2403168682542,10.8244274602244,11.7358369893683,7.98461538461538,527.679330141557,1273,241245,1,1,1,0,9 +"13180",2014,26051,"MI","26","051",25498,0.98321436975449,1218,0.164993332810417,7.10496544826984,7.84267147497946,8.82644104178258,9.29230769230769,497.803806734993,68,13660,1,1,1,0,9 +"13181",2014,26053,"MI","26","053",15756,0.917428281289667,935,0.164635694338665,6.84054652928869,7.45876269238096,8.27129265297941,8.86923076923077,409.703504043127,38,9275,1,1,1,0,9 +"13182",2014,26055,"MI","26","055",90908,0.960476525718309,5430,0.151174814097769,8.59969441292798,9.29284159348793,10.2013303297505,6.06153846153846,276.049909823696,150,54338,1,1,1,0,9 +"13183",2014,26057,"MI","26","057",41468,0.9276068293624,3375,0.12474679270763,8.12415060330663,8.55891078476811,9.28989065073419,7.07692307692308,321.207741106561,80,24906,1,1,1,0,9 +"13184",2014,26059,"MI","26","059",45937,0.980081415852145,3124,0.149596186080937,8.04686951095958,8.54655780004614,9.4673054717659,7.00769230769231,455.136540962289,119,26146,1,1,1,0,9 +"13185",2014,26061,"MI","26","061",36487,0.946145202400855,5519,0.120207197083893,8.6159519634395,8.10621290261996,9.12467354521909,7.68461538461538,288.933834151979,60,20766,1,1,1,0,9 +"13186",2014,26063,"MI","26","063",32034,0.982175188861834,1596,0.166198414184929,7.37525577800975,8.05896001776942,9.06554578707295,6.87692307692308,557.039731711476,98,17593,1,1,1,0,9 +"13187",2014,26065,"MI","26","065",285760,0.785239361702128,40917,0.117287234042553,10.619300903595,10.3465695242156,11.4107930666638,6.20769230769231,329.070545916688,580,176254,1,1,1,0,9 +"13188",2014,26067,"MI","26","067",64246,0.9331787192977,4559,0.128817358279115,8.42485858021344,9.06102796878917,9.75458142928158,6.2,375.67265712255,148,39396,1,1,1,0,9 +"13189",2014,26069,"MI","26","069",25445,0.972686185891138,1146,0.178541953232462,7.04403289727469,7.71601526664259,8.81892608709068,9.76153846153846,560.761455028407,76,13553,1,1,1,0,9 +"13190",2014,26071,"MI","26","071",11352,0.974630021141649,475,0.193974630021142,6.16331480403464,6.87935580446044,7.9973268229981,8.72307692307692,410.509031198686,25,6090,1,1,1,0,9 +"13191",2014,26073,"MI","26","073",70116,0.900136915967825,14857,0.104384163386388,9.60622641363735,8.77338459677665,10.0212261427604,5.92307692307692,238.266498831145,106,44488,1,1,1,0,9 +"13192",2014,26075,"MI","26","075",159464,0.890545828525561,10955,0.140232278131741,9.30155125202957,9.87230643505255,10.7114132597322,6.66153846153846,413.803295647676,392,94731,1,1,1,0,9 +"13193",2014,26077,"MI","26","077",259063,0.834943623751751,32928,0.119689033169538,10.4020786386338,10.2935005560854,11.2867648669443,5.61538461538462,309.017995380593,487,157596,1,1,1,0,9 +"13194",2014,26079,"MI","26","079",17374,0.975135259583285,870,0.158282491078623,6.76849321164863,7.59186171488993,8.49412925181769,9.46153846153846,511.534603811434,51,9970,1,1,1,0,9 +"13195",2014,26081,"MI","26","081",631464,0.84357778115617,46333,0.120766979590285,10.7436097291742,11.2582654464382,12.1630294359372,4.94615384615385,285.522071015007,1078,377554,1,1,1,0,9 +"13196",2014,26085,"MI","26","085",11399,0.88621808930608,451,0.194139836827792,6.11146733950268,7.00124562206948,8.03657340970731,11.2076923076923,606.157281863136,38,6269,1,1,1,0,9 +"13197",2014,26087,"MI","26","087",88202,0.973265912337589,5299,0.155744767692343,8.57527340249276,9.24821402440426,10.1544019007957,9.5,342.857142857143,180,52500,1,1,1,0,9 +"13198",2014,26089,"MI","26","089",21596,0.942674569364697,1066,0.191748471939248,6.97166860472579,7.51207124583547,8.68084148294457,6.7,335.714900576741,39,11617,1,1,1,0,9 +"13199",2014,26091,"MI","26","091",98774,0.952973454552818,6687,0.14279061291433,8.80792062205398,9.39996850395258,10.2341572727873,6.42307692307692,407.697888954151,236,57886,1,1,1,0,9 +"13200",2014,26093,"MI","26","093",185567,0.976245776458099,10652,0.149935063885281,9.27350294693382,10.0242439411719,10.9203111657712,6.31538461538462,313.654799459216,348,110950,1,1,1,0,9 +"13201",2014,26097,"MI","26","097",10990,0.775341219290264,520,0.181983621474067,6.25382881157547,7.04228617193974,8.01730750768858,12.0846153846154,373.679935012185,23,6155,1,1,1,0,9 +"13202",2014,26099,"MI","26","099",862914,0.842372472807255,56350,0.136661359069386,10.9393375194679,11.6168890053123,12.486748985042,7.86153846153846,399.428122206123,2073,518992,1,1,1,0,9 +"13203",2014,26101,"MI","26","101",24415,0.932090927708376,1380,0.17329510546795,7.22983877815125,7.80994708647679,8.76467807411661,8.51538461538462,488.892084261989,68,13909,1,1,1,0,9 +"13204",2014,26103,"MI","26","103",67798,0.948833298917372,8036,0.146936487802,8.99168672593482,8.87262736591884,9.91165411520252,7.04615384615385,343.517913733459,142,41337,1,1,1,0,9 +"13205",2014,26105,"MI","26","105",28748,0.966328092389036,1679,0.164846250173925,7.42595365707754,7.99395754757357,8.99974278983049,7.53846153846154,364.377470355731,59,16192,1,1,1,0,9 +"13206",2014,26107,"MI","26","107",43206,0.94523908716382,5693,0.129611628014628,8.64699262895108,8.28828304520769,9.40689351101686,7.93846153846154,340.79063427151,85,24942,1,1,1,0,9 +"13207",2014,26109,"MI","26","109",23535,0.956447843637136,1161,0.173103887826641,7.05703698169789,7.81035268372429,8.7803263909466,6.87692307692308,394.697646708371,53,13428,1,1,1,0,9 +"13208",2014,26111,"MI","26","111",83534,0.950642852012354,5515,0.139476141451385,8.6152269316876,9.18778796750567,10.1155701564909,6.1,298.313614871035,147,49277,1,1,1,0,9 +"13209",2014,26113,"MI","26","113",14978,0.977900921351315,826,0.150420616904794,6.71659477352098,7.34148385236316,8.31556648356428,7.76153846153846,418.810577958598,35,8357,1,1,1,0,9 +"13210",2014,26115,"MI","26","115",149919,0.959017869649611,9283,0.149794222213329,9.13594004939993,9.80604009037016,10.7061839638254,6.11538461538461,403.519587513311,360,89215,1,1,1,0,9 +"13211",2014,26117,"MI","26","117",62814,0.959992995192155,3781,0.138535995160315,8.23774380389093,8.97284431443757,9.75967491717028,7.58461538461538,398.071923743501,147,36928,1,1,1,0,9 +"13212",2014,26119,"MI","26","119",9324,0.984341484341484,352,0.206563706563707,5.8636311755981,6.69084227741856,7.80832305039106,12.9615384615385,440.264158495097,22,4997,1,1,1,0,9 +"13213",2014,26121,"MI","26","121",172304,0.823910065929984,11540,0.138528414894605,9.35357454006209,9.93066488054092,10.818997980052,7.69230769230769,413.949812290061,419,101220,1,1,1,0,9 +"13214",2014,26123,"MI","26","123",47798,0.968868990334324,2824,0.148123352441525,7.94590959861313,8.55756708555451,9.50873980776916,7.20769230769231,438.531839622642,119,27136,1,1,1,0,9 +"13215",2014,26125,"MI","26","125",1243076,0.775135229060814,75148,0.140580302411116,11.2272147813872,11.9911514478275,12.860003312928,6.43846153846154,312.16607235049,2340,749601,1,1,1,0,9 +"13216",2014,26127,"MI","26","127",26346,0.967319517194261,1491,0.144462157443255,7.30720231476474,7.90948949267376,8.86092472971904,10.1076923076923,502.687984360818,72,14323,1,1,1,0,9 +"13217",2014,26129,"MI","26","129",20955,0.978477690288714,1093,0.175137198759246,6.99668148817654,7.63094658089046,8.66802408111882,9.83846153846154,640.803602355386,74,11548,1,1,1,0,9 +"13218",2014,26131,"MI","26","131",6192,0.975613695090439,184,0.209302325581395,5.21493575760899,6.19644412779452,7.37650812632622,11.4,642.594859241126,21,3268,1,1,1,0,9 +"13219",2014,26133,"MI","26","133",23219,0.975623411860976,1274,0.146905551488006,7.14991683613211,7.8336002236611,8.74751094647845,8.54615384615385,430.057080303386,55,12789,1,1,1,0,9 +"13220",2014,26135,"MI","26","135",8311,0.982914210083022,374,0.185055949945855,5.92425579741453,6.55961523749324,7.69211333959547,11.8076923076923,428.70036101083,19,4432,1,1,1,0,9 +"13221",2014,26137,"MI","26","137",24115,0.972879950238441,1439,0.153182666390214,7.27170370688737,7.86403565907245,8.83753604610757,8.14615384615385,458.982952061781,63,13726,1,1,1,0,9 +"13222",2014,26139,"MI","26","139",277888,0.939486411791801,26690,0.116698094196223,10.1920442423986,10.3882566339823,11.2938859804411,4.79230769230769,225.638839965653,360,159547,1,1,1,0,9 +"13223",2014,26141,"MI","26","141",12961,0.977625183242034,535,0.194660905794306,6.28226674689601,7.05617528410041,8.13593277200489,12.8230769230769,347.17199479242,24,6913,1,1,1,0,9 +"13224",2014,26143,"MI","26","143",24023,0.976897140240603,1018,0.196520001665071,6.92559519711047,7.60539236481493,8.76732914779405,11.5,634.796238244514,81,12760,1,1,1,0,9 +"13225",2014,26145,"MI","26","145",195317,0.774653511983084,14618,0.141042510380561,9.59000892504034,9.98998629815275,10.9624577059318,7.5,435.230583386627,490,112584,1,1,1,0,9 +"13226",2014,26147,"MI","26","147",160103,0.954710405176667,9783,0.149116506249102,9.18840146445743,9.86115399952005,10.7654488065315,9.52307692307692,439.825338591502,416,94583,1,1,1,0,9 +"13227",2014,26149,"MI","26","149",61014,0.948683908611138,3707,0.136067132133609,8.21797820315073,8.85409390765552,9.74185058693501,5.81538461538462,457.752638637821,157,34298,1,1,1,0,9 +"13228",2014,26151,"MI","26","151",41663,0.981926409524038,2254,0.155869716535055,7.72046169459972,8.42354163533478,9.35383447161491,8.52307692307692,485.228443833734,113,23288,1,1,1,0,9 +"13229",2014,26153,"MI","26","153",8132,0.887358583374324,360,0.183349729463847,5.88610403145016,6.71659477352098,7.73630709654828,10.9923076923077,331.052747737806,15,4531,1,1,1,0,9 +"13230",2014,26155,"MI","26","155",68841,0.977716767623945,4344,0.145087956305109,8.37655086161377,9.01188943325234,9.914081240747,7.55384615384615,416.037245239098,168,40381,1,1,1,0,9 +"13231",2014,26157,"MI","26","157",53921,0.97477791583984,3256,0.152945976521207,8.08825472712243,8.72371943690701,9.6469164751094,8.6,430.71818268832,135,31343,1,1,1,0,9 +"13232",2014,26159,"MI","26","159",75251,0.929515886832069,4342,0.149792029341803,8.37609035043824,9.08057331391712,9.98539006815576,8.06153846153846,391.929499072356,169,43120,1,1,1,0,9 +"13233",2014,26161,"MI","26","161",360523,0.761205249040977,48262,0.116347639401647,10.7843997805085,10.640412355442,11.6443308492397,4.86923076923077,244.272237196766,551,225568,1,1,1,0,9 +"13234",2014,26163,"MI","26","163",1771626,0.555657345286195,132554,0.131905944031077,11.7947453885534,12.3042151740815,13.2076287309818,9.57692307692308,528.855657092463,5565,1052272,1,1,1,0,9 +"13235",2014,26165,"MI","26","165",32848,0.973788358499756,1922,0.146066731612275,7.56112158953024,8.1978140322212,9.13701670755734,8.55384615384615,394.898340359678,74,18739,1,1,1,0,9 +"13236",2014,27001,"MN","27","001",15852,0.959121877365632,598,0.178652535957608,6.39359075395063,7.18841273649695,8.27715777243181,6.83846153846154,437.008365588713,35,8009,1,1,1,0,9 +"13237",2014,27003,"MN","27","003",341923,0.883473764561027,20049,0.129520389093451,9.90593455617918,10.7338281622723,11.5516749132495,4.25384615384615,246.284298780488,517,209920,1,1,1,0,9 +"13238",2014,27005,"MN","27","005",33267,0.894520094989028,1682,0.151471428142003,7.42773884053289,8.16961956172385,9.09200718501432,4.9,361.653591498359,65,17973,1,1,1,0,9 +"13239",2014,27007,"MN","27","007",45655,0.751045887635527,4636,0.124104698280583,8.44160720445964,8.43533216493592,9.46133252611013,5.45384615384615,396.578538102644,102,25720,1,1,1,0,9 +"13240",2014,27009,"MN","27","009",39147,0.948450711421054,2624,0.115283418908218,7.87245515006398,8.4937198352306,9.3461815948876,5.15384615384615,258.376043034436,61,23609,1,1,1,0,9 +"13241",2014,27013,"MN","27","013",65320,0.929883649724434,10791,0.110379669320269,9.28646773236373,8.7830896717961,9.88379491919039,3.51538461538462,197.589409207666,80,40488,1,1,1,0,9 +"13242",2014,27015,"MN","27","015",25274,0.984015193479465,1766,0.143032365276569,7.4764723811639,7.81480342948936,8.84043543926657,4.66923076923077,321.176218685319,45,14011,1,1,1,0,9 +"13243",2014,27017,"MN","27","017",35357,0.906666289560766,1966,0.141782391039964,7.58375630070711,8.40514368760761,9.16576132857822,5.37692307692308,420.750657422902,88,20915,1,1,1,0,9 +"13244",2014,27019,"MN","27","019",97321,0.946137010511606,5180,0.119347314556982,8.55256033525353,9.53198899399124,10.2744302266059,3.70769230769231,159.07322555546,92,57835,1,1,1,0,9 +"13245",2014,27021,"MN","27","021",28559,0.855877306628383,1391,0.166777548233482,7.23777819192344,7.9043348420851,8.92478936053336,7.32307692307692,551.434385872776,84,15233,1,1,1,0,9 +"13246",2014,27023,"MN","27","023",12041,0.959056556764388,697,0.145253716468732,6.54678541076052,7.08086789669078,8.08978917578932,4.64615384615385,317.796610169492,21,6608,1,1,1,0,9 +"13247",2014,27025,"MN","27","025",53808,0.964577757954208,3053,0.132879869164437,8.02387999273488,8.85152027169106,9.64004270444839,4.81538461538462,246.138699156975,80,32502,1,1,1,0,9 +"13248",2014,27027,"MN","27","027",61297,0.938985594727311,7044,0.10878183271612,8.8599314696161,8.85337967292763,9.79484387541939,3.48461538461538,267.778268551237,97,36224,1,1,1,0,9 +"13249",2014,27029,"MN","27","029",8787,0.879481051553431,444,0.142141800386935,6.09582456243222,6.88243747099785,7.74196789982069,10.6461538461538,678.10976901886,32,4719,1,1,1,0,9 +"13250",2014,27033,"MN","27","033",11513,0.943194649526622,604,0.140884217840702,6.40357419793482,7.08086789669078,7.98820359702258,5.40769230769231,382.440971067509,23,6014,1,1,1,0,9 +"13251",2014,27035,"MN","27","035",63121,0.972988387382963,3435,0.146528096829898,8.14177220465645,8.80146947073318,9.76221196517817,6.01538461538462,372.45014898006,130,34904,1,1,1,0,9 +"13252",2014,27037,"MN","27","037",411821,0.87644632012452,23720,0.128628700333397,10.0740738531117,10.9075876762347,11.7478394718834,3.87692307692308,206.749553109041,517,250061,1,1,1,0,9 +"13253",2014,27039,"MN","27","039",20390,0.979892103972536,1076,0.123835213339872,6.98100574072173,7.91935619066062,8.6476949994804,4.26923076923077,189.884343172795,22,11586,1,1,1,0,9 +"13254",2014,27041,"MN","27","041",36579,0.982530960387107,2130,0.14748899641871,7.66387725870347,8.2684753889826,9.2068342326469,3.82307692307692,304.728202103608,62,20346,1,1,1,0,9 +"13255",2014,27043,"MN","27","043",14102,0.979506452985392,675,0.157779038434265,6.51471269087253,7.27170370688737,8.21770840684531,5.35384615384615,302.035456336179,23,7615,1,1,1,0,9 +"13256",2014,27045,"MN","27","045",20769,0.986277625306948,1066,0.146083104627088,6.97166860472579,7.72753511047545,8.61159386683772,4.50769230769231,250,28,11200,1,1,1,0,9 +"13257",2014,27047,"MN","27","047",30742,0.963274998373561,1602,0.144883221651161,7.3790081276283,8.07992777075827,9.01493357563357,4.43846153846154,343.785193527355,58,16871,1,1,1,0,9 +"13258",2014,27049,"MN","27","049",46046,0.961104113278026,2416,0.148308213525605,7.78986855905471,8.5571828396324,9.47178113322274,4.03076923076923,308.83025773982,81,26228,1,1,1,0,9 +"13259",2014,27053,"MN","27","053",1211635,0.772444671869003,79355,0.12530176166915,11.2816867359417,11.9727524877644,12.8516406783442,3.9,240.098087091676,1829,761772,1,1,1,0,9 +"13260",2014,27055,"MN","27","055",18707,0.980542043085476,1004,0.160528144544823,6.91174730025167,7.61874237767041,8.57470709761684,4.53846153846154,243.195210925077,26,10691,1,1,1,0,9 +"13261",2014,27057,"MN","27","057",20631,0.95632785613882,825,0.163831127914304,6.71538338633468,7.61874237767041,8.60483770126828,6.57692307692308,336.577822250523,37,10993,1,1,1,0,9 +"13262",2014,27059,"MN","27","059",38273,0.970449141692577,2123,0.131058448514619,7.66058546170326,8.45829208349608,9.3031929889908,5.16923076923077,354.437109565371,80,22571,1,1,1,0,9 +"13263",2014,27061,"MN","27","061",45327,0.944315749994485,2293,0.168288216736162,7.7376162828579,8.49208049060116,9.42955621995241,6.79230769230769,445.601167238456,113,25359,1,1,1,0,9 +"13264",2014,27063,"MN","27","063",10274,0.968366751021997,573,0.147264940626825,6.35088571671474,7.0184017990692,7.90875473878325,4.28461538461538,280.357455756089,16,5707,1,1,1,0,9 +"13265",2014,27065,"MN","27","065",15978,0.97834522468394,814,0.160908749530605,6.70196036600254,7.53689712956617,8.38981426208641,7.60769230769231,262.209111766634,24,9153,1,1,1,0,9 +"13266",2014,27067,"MN","27","067",42502,0.940308691355701,2871,0.145122582466707,7.96241568012106,8.42551640284433,9.37754829096009,4.34615384615385,341.26852005993,82,24028,1,1,1,0,9 +"13267",2014,27071,"MN","27","071",12849,0.95587205229979,647,0.182582302124679,6.4723462945009,7.18690102041163,8.18618599422608,8.65384615384615,355.094236547391,26,7322,1,1,1,0,9 +"13268",2014,27075,"MN","27","075",10602,0.980192416525184,462,0.176759102056216,6.13556489108174,6.93147180559945,7.95296679092313,4.73076923076923,358.056265984655,21,5865,1,1,1,0,9 +"13269",2014,27079,"MN","27","079",27819,0.980229339659945,1433,0.138754088932025,7.26752542782817,8.12266802334641,8.95596411823087,5.50769230769231,207.442796077445,33,15908,1,1,1,0,9 +"13270",2014,27083,"MN","27","083",25779,0.921214942394973,1877,0.123472593971838,7.53743003658651,7.98002359231065,8.89288614119073,3.7,177.232447171097,26,14670,1,1,1,0,9 +"13271",2014,27085,"MN","27","085",35772,0.978418875097842,2043,0.131247903388125,7.62217459481762,8.36613771649628,9.21054035197885,4.74615384615385,280.802009951229,57,20299,1,1,1,0,9 +"13272",2014,27087,"MN","27","087",5496,0.517285298398836,309,0.128639010189229,5.73334127689775,6.32076829425058,7.24064969425547,5.77692307692308,722.02166064982,20,2770,1,1,1,0,9 +"13273",2014,27091,"MN","27","091",20247,0.979848866498741,1083,0.157504815528226,6.98749024700099,7.60688453121963,8.59766657556611,4.81538461538462,361.369590748938,40,11069,1,1,1,0,9 +"13274",2014,27093,"MN","27","093",23129,0.984218945912058,1160,0.148471615720524,7.05617528410041,7.85593219971861,8.73004395324502,4.70769230769231,329.153605015674,42,12760,1,1,1,0,9 +"13275",2014,27095,"MN","27","095",25553,0.919383242672093,1339,0.134465620475091,7.19967834569117,8.00803284696931,8.86644061952617,6.86153846153846,430.585457323425,62,14399,1,1,1,0,9 +"13276",2014,27097,"MN","27","097",32811,0.983054463442138,1719,0.146536222608272,7.44949800538285,8.21283958467648,9.11173476822206,6.37692307692308,262.875536480687,49,18640,1,1,1,0,9 +"13277",2014,27099,"MN","27","099",39415,0.922542179373335,2333,0.128580489661296,7.75491027202143,8.42967259388674,9.26549121644103,3.90769230769231,276.128675962999,60,21729,1,1,1,0,9 +"13278",2014,27103,"MN","27","103",33392,0.94876018207954,2982,0.126826784858649,8.00034949532468,8.24485939591126,9.17709377818255,3.13076923076923,136.329209795506,27,19805,1,1,1,0,9 +"13279",2014,27105,"MN","27","105",21701,0.865259665453205,1466,0.123773098013916,7.2902928824466,7.78072088611792,8.62604759632832,3.5,267.513793679987,32,11962,1,1,1,0,9 +"13280",2014,27109,"MN","27","109",150127,0.869763600151871,8528,0.126026630785935,9.05111014640562,9.84691720104773,10.7180777295839,3.53846153846154,224.451776535811,200,89106,1,1,1,0,9 +"13281",2014,27111,"MN","27","111",57496,0.969928342841241,2923,0.160550299151245,7.98036576511125,8.6095900406822,9.62931383010914,4.66923076923077,314.54615483374,98,31156,1,1,1,0,9 +"13282",2014,27113,"MN","27","113",14129,0.953216788166183,908,0.13468752211763,6.81124437860129,7.42177579364465,8.29729437026692,5.28461538461538,243.635034717992,20,8209,1,1,1,0,9 +"13283",2014,27115,"MN","27","115",29082,0.930231758476033,1461,0.150436696238223,7.2868764117507,8.1426451859428,8.94180711836316,6.27692307692308,365.98117811084,63,17214,1,1,1,0,9 +"13284",2014,27117,"MN","27","117",9327,0.954111718666238,495,0.13669990350595,6.20455776256869,6.86693328446188,7.7931743471892,3.86923076923077,365.853658536585,18,4920,1,1,1,0,9 +"13285",2014,27119,"MN","27","119",31511,0.949795309574434,2161,0.135889054615848,7.67832635650689,8.11492297420459,9.05998249038762,4.72307692307692,385.130609511052,69,17916,1,1,1,0,9 +"13286",2014,27121,"MN","27","121",10922,0.981230543856437,514,0.158304339864494,6.24222326545517,7.03085747611612,7.95962530509811,3.75384615384615,302.521008403361,18,5950,1,1,1,0,9 +"13287",2014,27123,"MN","27","123",532966,0.713349444429851,41702,0.123276156452757,10.6383043682675,11.0425377619776,12.0121116120792,4.10769230769231,284.082127246536,919,323498,1,1,1,0,9 +"13288",2014,27127,"MN","27","127",15532,0.906515580736544,808,0.138617048673706,6.6945620585211,7.36770857237437,8.28853445941392,4.52307692307692,279.839396520258,23,8219,1,1,1,0,9 +"13289",2014,27129,"MN","27","129",14933,0.971472577512891,740,0.152615013727985,6.60665018619822,7.34407285057307,8.26204284396694,5.67692307692308,449.138140325322,37,8238,1,1,1,0,9 +"13290",2014,27131,"MN","27","131",65002,0.919556321343959,6509,0.122950063074982,8.78094111357239,8.9380065764712,9.80162092613256,4.21538461538462,191.199580932425,73,38180,1,1,1,0,9 +"13291",2014,27135,"MN","27","135",15676,0.944947690737433,845,0.138938504720592,6.73933662735717,7.51534457118044,8.35184673882824,3.76923076923077,334.59736783404,30,8966,1,1,1,0,9 +"13292",2014,27137,"MN","27","137",200720,0.940379633320048,18506,0.152710243124751,9.82585028280898,9.97109947094615,10.9744374063875,5.2,350.422666201651,422,120426,1,1,1,0,9 +"13293",2014,27139,"MN","27","139",139198,0.881672150461932,7034,0.106129398410897,8.85851081303393,9.97752766524459,10.6334246095429,3.69230769230769,172.9854403921,144,83244,1,1,1,0,9 +"13294",2014,27141,"MN","27","141",90908,0.954261451137414,5398,0.109814317771813,8.59378379357795,9.47983301522775,10.1771340860234,4.64615384615385,200.869215879625,110,54762,1,1,1,0,9 +"13295",2014,27143,"MN","27","143",14933,0.979106676488315,776,0.134467287216232,6.65415252018322,7.46450983463653,8.3030093814735,4.73076923076923,288.392213410238,24,8322,1,1,1,0,9 +"13296",2014,27145,"MN","27","145",154025,0.921149164096738,17352,0.116468105826976,9.76146305250671,9.73026447872743,10.701625180287,4.17692307692308,216.867204614758,197,90839,1,1,1,0,9 +"13297",2014,27147,"MN","27","147",36505,0.95236269004246,2025,0.129845226681277,7.61332497954064,8.35796296584568,9.22305914438396,3.89230769230769,280.776492230237,58,20657,1,1,1,0,9 +"13298",2014,27153,"MN","27","153",24339,0.97748469534492,1305,0.153498500349234,7.17395831975679,7.80710329012598,8.75115798136203,4.75384615384615,347.615808962442,46,13233,1,1,1,0,9 +"13299",2014,27157,"MN","27","157",21464,0.981550503168095,1100,0.148714125978382,7.00306545878646,7.78239033558746,8.69466969654699,4.13076923076923,197.677291821102,24,12141,1,1,1,0,9 +"13300",2014,27159,"MN","27","159",13587,0.974460881725179,823,0.136306763818356,6.71295620067707,7.26052259808985,8.15507488781144,6.33076923076923,430.137366449285,31,7207,1,1,1,0,9 +"13301",2014,27161,"MN","27","161",18935,0.952574597306575,1037,0.137047795088461,6.94408720822953,7.79110951061003,8.69667739339003,4.94615384615385,197.521996767822,22,11138,1,1,1,0,9 +"13302",2014,27163,"MN","27","163",248580,0.888019953334942,13897,0.133868372354976,9.53942826848658,10.3809631966206,11.2195874276623,3.72307692307692,203.086648061598,302,148705,1,1,1,0,9 +"13303",2014,27165,"MN","27","165",10978,0.959646565858991,660,0.141920204044453,6.49223983502047,7.07580886397839,7.96311205897929,5.03076923076923,218.084214058044,13,5961,1,1,1,0,9 +"13304",2014,27169,"MN","27","169",51085,0.950572575119898,7815,0.128158950768327,8.96380024285558,8.49146504284351,9.62891911922973,3.81538461538462,262.918722409764,81,30808,1,1,1,0,9 +"13305",2014,27171,"MN","27","171",129845,0.96498902537641,6449,0.110031191035465,8.77168035901038,9.83761480838542,10.5199696481606,4.30769230769231,239.757046193191,180,75076,1,1,1,0,9 +"13306",2014,29001,"MO","29","001",25552,0.945092360676268,5222,0.103318722604884,8.56063574925907,7.6980291702728,8.96405612822033,6.46153846153846,451.186817498202,69,15293,0,1,0,0,9 +"13307",2014,29003,"MO","29","003",17284,0.979287202036566,992,0.145568155519556,6.89972310728487,7.68478394352278,8.50815244676409,5.18461538461538,320.416541503955,32,9987,0,1,0,0,9 +"13308",2014,29007,"MO","29","007",25841,0.912542084284664,1611,0.131070778994621,7.38461038317697,8.06934236681164,9.04570155003454,5.62307692307692,436.593229446534,65,14888,0,1,0,0,9 +"13309",2014,29009,"MO","29","009",35327,0.960313641124352,2046,0.144535341240411,7.62364194651157,8.23483028044206,9.191972714618,6.17692307692308,538.737814263725,105,19490,0,1,0,0,9 +"13310",2014,29011,"MO","29","011",11990,0.965387823185988,704,0.138782318598832,6.55677835615804,7.16780918431644,8.08733292647335,6.29230769230769,460.546515198035,30,6514,0,1,0,0,9 +"13311",2014,29013,"MO","29","013",16514,0.974143151265593,877,0.138125227080053,6.77650699237218,7.49498623395053,8.42683075133585,7.1,492.988606485539,45,9128,0,1,0,0,9 +"13312",2014,29015,"MO","29","015",18900,0.982486772486773,760,0.178783068783069,6.63331843328038,7.42356844425917,8.49658223751211,7.83076923076923,593.168337083248,58,9778,0,1,0,0,9 +"13313",2014,29017,"MO","29","017",12418,0.983813818650346,713,0.144145595103881,6.5694814204143,7.2848209125686,8.17272910486547,6.8,534.157998313185,38,7114,0,1,0,0,9 +"13314",2014,29019,"MO","29","019",172920,0.839393939393939,26831,0.106343974092066,10.1973132144359,9.89363921648131,10.946622366735,4.18461538461538,227.813084788052,252,110617,0,1,0,0,9 +"13315",2014,29021,"MO","29","021",89649,0.90733862062042,6803,0.125244007183571,8.82511897034506,9.27631536089972,10.154829758209,5.72307692307692,481.34328358209,258,53600,0,1,0,0,9 +"13316",2014,29023,"MO","29","023",42870,0.922719850711453,2563,0.135759272218335,7.84893372636407,8.52317526309379,9.43132158712571,7.09230769230769,715.931533903884,174,24304,0,1,0,0,9 +"13317",2014,29025,"MO","29","025",8992,0.977758007117438,480,0.140124555160142,6.17378610390194,6.93049476595163,7.79975331828725,5.51538461538462,462.590506838294,23,4972,0,1,0,0,9 +"13318",2014,29027,"MO","29","027",44651,0.933058610109516,3629,0.132158294327115,8.19671240721307,8.59711281459211,9.46156590741735,5.63846153846154,285.923753665689,78,27280,0,1,0,0,9 +"13319",2014,29029,"MO","29","029",44601,0.978789713235129,1994,0.176296495594269,7.59789795052178,8.32651683023953,9.42197798310419,8.25384615384615,478.74535699546,116,24230,0,1,0,0,9 +"13320",2014,29031,"MO","29","031",77950,0.895163566388711,8345,0.125529185375241,9.02941783609594,9.06508335931904,10.0663714154376,5.49230769230769,364.101341540062,168,46141,0,1,0,0,9 +"13321",2014,29033,"MO","29","033",8958,0.969970975664211,515,0.137977227059612,6.24416690066374,6.96696713861398,7.79523492900217,7.2,548.892051229925,27,4919,0,1,0,0,9 +"13322",2014,29035,"MO","29","035",6286,0.977569201399936,355,0.144766146993318,5.87211778947542,6.55250788703459,7.48549160803075,9,511.363636363636,18,3520,0,1,0,0,9 +"13323",2014,29037,"MO","29","037",100872,0.937187723054961,5647,0.129391704338171,8.63887970967284,9.47324295306374,10.2885798708364,5.73846153846154,369.010082810713,213,57722,0,1,0,0,9 +"13324",2014,29039,"MO","29","039",13788,0.98114302291848,679,0.138526254714244,6.5206211275587,7.26262860097424,8.18004072349016,6.36923076923077,661.785412559842,47,7102,0,1,0,0,9 +"13325",2014,29041,"MO","29","041",7676,0.968212610734758,396,0.152423137050547,5.98141421125448,6.64768837356333,7.60389796852188,5.81538461538462,463.753966316817,19,4097,0,1,0,0,9 +"13326",2014,29043,"MO","29","043",81887,0.973243616202816,4437,0.120593012321858,8.39773375137891,9.32232887392423,10.0962131326288,4.93846153846154,311.434079786445,147,47201,0,1,0,0,9 +"13327",2014,29045,"MO","29","045",6889,0.986355058789374,351,0.145884743794455,5.86078622346587,6.64248680136726,7.52185925220163,6.96153846153846,338.983050847458,13,3835,0,1,0,0,9 +"13328",2014,29047,"MO","29","047",233142,0.897315798955143,13908,0.119823969941066,9.54021949312775,10.3936613885712,11.1729671590642,5.45384615384615,298.814015019148,419,140221,0,1,0,0,9 +"13329",2014,29049,"MO","29","049",20270,0.966946225949679,1129,0.140601874691663,7.02908756414966,7.80057265467065,8.66060065471097,5.9,441.941074523397,51,11540,0,1,0,0,9 +"13330",2014,29051,"MO","29","051",76656,0.854779795449802,4954,0.132735858902108,8.5079506100493,9.18860587983018,10.0048701668247,5.03076923076923,350.209693458429,162,46258,0,1,0,0,9 +"13331",2014,29053,"MO","29","053",17564,0.90879070826691,1315,0.132828512867228,7.18159194461187,7.59387784460512,8.45318786144033,6,384.13521559589,40,10413,0,1,0,0,9 +"13332",2014,29055,"MO","29","055",24633,0.982746721877157,1346,0.139325295335526,7.20489251020467,7.94200680848986,8.84505705350085,8.03846153846154,567.324955116697,79,13925,0,1,0,0,9 +"13333",2014,29057,"MO","29","057",7597,0.975385020402791,351,0.164143740950375,5.86078622346587,6.7202201551353,7.62608275807238,6.05384615384615,649.506855905701,27,4157,0,1,0,0,9 +"13334",2014,29059,"MO","29","059",16349,0.979325952657655,826,0.150773747629824,6.71659477352098,7.48211892355212,8.41405243249672,7.64615384615385,378.197997775306,34,8990,0,1,0,0,9 +"13335",2014,29061,"MO","29","061",8317,0.98473007093904,466,0.136828183239149,6.14418563412565,6.84906628263346,7.68063742756094,5.85384615384615,410.303168452245,18,4387,0,1,0,0,9 +"13336",2014,29063,"MO","29","063",12556,0.868270149729213,841,0.122809812042052,6.73459165997295,7.56112158953024,7.83557924666997,5.44615384615385,418.710372054074,35,8359,0,1,0,0,9 +"13337",2014,29065,"MO","29","065",15641,0.975832747266799,817,0.143852694840483,6.70563909486,7.41878088275079,8.36100710822691,6.79230769230769,558.399255467659,48,8596,0,1,0,0,9 +"13338",2014,29067,"MO","29","067",13533,0.981009384467598,659,0.16552131825907,6.49072353450251,7.19668657083435,8.21662849313344,7.7,541.931987535564,40,7381,0,1,0,0,9 +"13339",2014,29069,"MO","29","069",31320,0.87911877394636,1865,0.127969348659004,7.53101633207792,8.19229373114764,9.08624998674513,9.1,809.716599190283,138,17043,0,1,0,0,9 +"13340",2014,29071,"MO","29","071",101923,0.977473190545804,6247,0.137888405953514,8.73985662749357,9.36964915446107,10.3027333608304,6.50769230769231,407.617774807885,244,59860,0,1,0,0,9 +"13341",2014,29073,"MO","29","073",14814,0.984676657216147,794,0.154245983529094,6.67708346124714,7.35308192051543,8.30251371851416,5.31538461538462,425.63541286635,35,8223,0,1,0,0,9 +"13342",2014,29075,"MO","29","075",6753,0.983859025618244,397,0.131941359395824,5.98393628068719,6.5366915975913,7.51588908521513,5.67692307692308,411.184210526316,15,3648,0,1,0,0,9 +"13343",2014,29077,"MO","29","077",285427,0.929141251528412,31026,0.118320971737082,10.3425808416243,10.4059886231559,11.3746169658345,4.89230769230769,407.825624175672,705,172868,0,1,0,0,9 +"13344",2014,29079,"MO","29","079",10183,0.974958263772955,656,0.127270941765688,6.48616078894409,6.85329909318608,7.8984110928116,5.30769230769231,653.961136023916,35,5352,0,1,0,0,9 +"13345",2014,29081,"MO","29","081",8638,0.981129891178514,440,0.139615651771243,6.08677472691231,6.80461452006262,7.72356247227797,6.56153846153846,509.751773049645,23,4512,0,1,0,0,9 +"13346",2014,29083,"MO","29","083",22050,0.970430839002268,1142,0.14249433106576,7.04053639021596,7.8087293067444,8.72420736080056,6.51538461538462,542.138984721538,66,12174,0,1,0,0,9 +"13347",2014,29085,"MO","29","085",9292,0.980628497632372,348,0.168424451140766,5.85220247977447,6.68336094576627,7.76004068088038,8.41538461538462,767.03922857769,35,4563,0,1,0,0,9 +"13348",2014,29089,"MO","29","089",10131,0.927845227519495,849,0.143026354752739,6.74405918631135,6.89568269774787,7.95962530509811,5.42307692307692,450.45045045045,26,5772,0,1,0,0,9 +"13349",2014,29091,"MO","29","091",40122,0.976072977418872,2345,0.130078261303026,7.76004068088038,8.44526745184465,9.33317728193525,7.17692307692308,556.183585801492,123,22115,0,1,0,0,9 +"13350",2014,29093,"MO","29","093",10359,0.97316343276378,542,0.151655565208997,6.29526600143965,7.10414409298753,7.97590836016554,9.93076923076923,931.414055884843,55,5905,0,1,0,0,9 +"13351",2014,29095,"MO","29","095",683334,0.716352471851247,45240,0.126001340486497,10.7197369302301,11.3507594143798,12.2593337525039,7.15384615384615,431.433198262613,1777,411883,0,1,0,0,9 +"13352",2014,29097,"MO","29","097",117801,0.931027750188878,8362,0.119251958811895,9.03145291191651,9.59028252285326,10.4518401481928,5.30769230769231,483.771659776585,330,68214,0,1,0,0,9 +"13353",2014,29099,"MO","29","099",222066,0.973953689443679,13198,0.136004611241703,9.48782058194337,10.2812045514416,11.1208453764722,6.23846153846154,468.439621690533,632,134916,0,1,0,0,9 +"13354",2014,29101,"MO","29","101",54221,0.91337304734328,8781,0.100440788624334,9.08034557536,8.63533171943328,9.67715141032275,6.48461538461538,325.470289638698,109,33490,0,1,0,0,9 +"13355",2014,29105,"MO","29","105",35558,0.972467517858147,2029,0.127734968220935,7.61529833982581,8.35420356292178,9.21453157659465,8.12307692307692,480.913736098587,96,19962,0,1,0,0,9 +"13356",2014,29107,"MO","29","107",32627,0.95797958745824,1954,0.136941796671468,7.57763383260273,8.24117615049496,9.13237883050647,5.98461538461538,487.619873218833,90,18457,0,1,0,0,9 +"13357",2014,29109,"MO","29","109",37917,0.973310124746156,2058,0.127726349658465,7.629489916394,8.43076346341785,9.24965723435313,5.92307692307692,535.068691250904,111,20745,0,1,0,0,9 +"13358",2014,29111,"MO","29","111",10098,0.951970687264805,835,0.126262626262626,6.72743172485086,6.93439720992856,7.92588031673756,5.25384615384615,428.265524625268,24,5604,0,1,0,0,9 +"13359",2014,29113,"MO","29","113",54167,0.964775601380915,3275,0.126497683091181,8.09407314806935,8.83535597112161,9.67708870850125,6.53076923076923,407.127869468542,130,31931,0,1,0,0,9 +"13360",2014,29115,"MO","29","115",12318,0.980272771553824,674,0.143773339827894,6.51323011091231,7.20711885620776,8.11611843160937,8.18461538461538,468.136514648143,31,6622,0,1,0,0,9 +"13361",2014,29117,"MO","29","117",15009,0.953894330068625,927,0.126524085548671,6.83195356556585,7.56786260546388,8.5137873982814,5.04615384615385,472.350230414747,41,8680,0,1,0,0,9 +"13362",2014,29119,"MO","29","119",22851,0.906874972648899,1380,0.1258588245591,7.22983877815125,7.94413749111411,8.76888532613486,5.82307692307692,627.967529483841,82,13058,0,1,0,0,9 +"13363",2014,29121,"MO","29","121",15436,0.961324177247992,798,0.136693443897383,6.68210859744981,7.42476176182321,8.31922993863233,6.17692307692308,534.045393858478,44,8239,0,1,0,0,9 +"13364",2014,29123,"MO","29","123",12195,0.977613776137761,684,0.135055350553506,6.52795791762255,7.27793857294566,8.15248607578024,6.95384615384615,452.422650321074,31,6852,0,1,0,0,9 +"13365",2014,29125,"MO","29","125",8998,0.980995776839298,460,0.14492109357635,6.13122648948314,6.90675477864855,7.83082299513532,6.22307692307692,587.659157688541,30,5105,0,1,0,0,9 +"13366",2014,29127,"MO","29","127",28784,0.926903835464147,1930,0.132156753752084,7.56527528189893,8.11880299698004,9.0295376611515,5.57692307692308,508.905852417303,84,16506,0,1,0,0,9 +"13367",2014,29131,"MO","29","131",24824,0.978891395423783,1358,0.141878826941669,7.21376830811864,7.96380795323145,8.85537824604113,7.76923076923077,522.414401694317,74,14165,0,1,0,0,9 +"13368",2014,29133,"MO","29","133",14197,0.739170247235331,946,0.11840529689371,6.85224256905188,7.54168309988211,8.1969879272589,7.30769230769231,413.174359579743,35,8471,0,1,0,0,9 +"13369",2014,29135,"MO","29","135",15815,0.947581410053746,950,0.113815997470756,6.85646198459459,7.66199755890189,8.3059782109673,5.99230769230769,433.886538670138,40,9219,0,1,0,0,9 +"13370",2014,29137,"MO","29","137",8735,0.957069261591299,465,0.149742415569548,6.14203740558736,6.8001700683022,7.74630066223144,6.45384615384615,484.822934232715,23,4744,0,1,0,0,9 +"13371",2014,29139,"MO","29","139",11725,0.969381663113006,620,0.149253731343284,6.42971947803914,7.14519613499717,8.0774471493312,5.93846153846154,669.405142248593,44,6573,0,1,0,0,9 +"13372",2014,29141,"MO","29","141",20081,0.974403665156118,1018,0.15138688312335,6.92559519711047,7.5569505720129,8.57073395834427,8.72307692307692,631.479736098021,67,10610,0,1,0,0,9 +"13373",2014,29143,"MO","29","143",18230,0.825397696105321,1053,0.13763027975864,6.95939851213398,7.68982866873648,8.57828829077605,7.46923076923077,609.874152952565,63,10330,0,1,0,0,9 +"13374",2014,29145,"MO","29","145",58148,0.930195363555066,3617,0.130890142395267,8.1934002319521,8.81135422996573,9.70381635740706,5.40769230769231,468.908026602102,153,32629,0,1,0,0,9 +"13375",2014,29147,"MO","29","147",23002,0.949613077123728,4707,0.103425789061821,8.45680604140114,7.59890045687141,8.80582481290361,6.83846153846154,242.527997717384,34,14019,0,1,0,0,9 +"13376",2014,29149,"MO","29","149",10835,0.971481310567605,591,0.148592524227042,6.3818160174061,6.98841318199959,7.98275770201111,7.53846153846154,529.552442774171,31,5854,0,1,0,0,9 +"13377",2014,29151,"MO","29","151",13640,0.989369501466276,843,0.129325513196481,6.73696695800186,7.42476176182321,8.20930841164694,4.68461538461538,346.464776081098,27,7793,0,1,0,0,9 +"13378",2014,29153,"MO","29","153",9448,0.98274767146486,431,0.169030482641829,6.06610809010375,6.78332520060396,7.80913539812054,9,603.864734299517,30,4968,0,1,0,0,9 +"13379",2014,29155,"MO","29","155",17574,0.717252759758734,1140,0.128086946625697,7.03878354138854,7.6192334162268,8.54188580400661,9.34615384615385,900.624296387268,88,9771,0,1,0,0,9 +"13380",2014,29157,"MO","29","157",19116,0.980487549696589,1115,0.136011717932622,7.01660968389422,7.75705114203201,8.59118687132456,5.46153846153846,273.822562979189,30,10956,0,1,0,0,9 +"13381",2014,29159,"MO","29","159",42201,0.940001421767257,2757,0.126513589725362,7.9218984110238,8.47782846789396,9.39905809627538,6.16923076923077,372.547396307641,90,24158,0,1,0,0,9 +"13382",2014,29161,"MO","29","161",44957,0.926529795137576,5487,0.119024845963921,8.61013693705898,8.44182288439146,9.43348392329039,6.5,444.896881951514,118,26523,0,1,0,0,9 +"13383",2014,29163,"MO","29","163",18493,0.911155572378738,1278,0.12918401557346,7.15305163493748,7.72223474470961,8.41516046585109,5.71538461538462,460.912788070493,51,11065,0,1,0,0,9 +"13384",2014,29165,"MO","29","165",94947,0.887747901460815,5750,0.130967803090145,8.6569551337914,9.470702633773,10.277530790636,5.13076923076923,244.919228764982,141,57570,0,1,0,0,9 +"13385",2014,29167,"MO","29","167",31130,0.969707677481529,2736,0.119498875682621,7.91425227874244,8.13973227971767,9.07234187381889,6.39230769230769,419.555969931822,72,17161,0,1,0,0,9 +"13386",2014,29169,"MO","29","169",53648,0.802825827617059,8058,0.0723232925738145,8.99442066575129,8.72631895096224,9.54180006677385,7.28461538461538,284.770820079372,94,33009,0,1,0,0,9 +"13387",2014,29171,"MO","29","171",4845,0.988235294117647,264,0.146542827657379,5.57594910314632,6.20050917404269,7.11639414409346,5.08461538461538,624.268435427234,16,2563,0,1,0,0,9 +"13388",2014,29173,"MO","29","173",10280,0.976556420233463,492,0.153210116731518,6.19847871649231,7.11476944836646,7.97349996402463,5.30769230769231,428.302210039404,25,5837,0,1,0,0,9 +"13389",2014,29175,"MO","29","175",25063,0.919243506363963,1729,0.123688305470215,7.45529848568329,8.07992777075827,8.8128434335172,7.1,491.661683609062,74,15051,0,1,0,0,9 +"13390",2014,29177,"MO","29","177",22939,0.970661319150791,1317,0.14172370199224,7.18311170174328,7.9218984110238,8.78599820809833,6.83076923076923,487.581898522017,64,13126,0,1,0,0,9 +"13391",2014,29179,"MO","29","179",6402,0.972352389878163,306,0.150265542018119,5.72358510195238,6.58892647753352,7.47477218239787,8.38461538461539,839.160839160839,30,3575,0,1,0,0,9 +"13392",2014,29181,"MO","29","181",13941,0.977117853812495,777,0.135356143748655,6.65544035036765,7.41457288135059,8.27944348771267,8.25384615384615,437.580437580438,34,7770,0,1,0,0,9 +"13393",2014,29183,"MO","29","183",379956,0.918053669372243,24047,0.126075124488099,10.0877655276285,10.8243080096967,11.6538606318917,4.84615384615385,269.91739824246,614,227477,0,1,0,0,9 +"13394",2014,29185,"MO","29","185",9446,0.977662502646623,427,0.159114969299174,6.05678401322862,6.82979373751242,7.78696700261487,7.7,658.157159952134,33,5014,0,1,0,0,9 +"13395",2014,29186,"MO","29","186",17936,0.975301070472792,1031,0.154605263157895,6.93828448401696,7.60439634879634,8.52892411429194,6.66923076923077,325.07887943398,34,10459,0,1,0,0,9 +"13396",2014,29187,"MO","29","187",65801,0.942630051215027,4622,0.124177444111792,8.43858279083433,9.08918917041203,9.77126958270842,7.66923076923077,617.085078436718,249,40351,0,1,0,0,9 +"13397",2014,29189,"MO","29","189",1000903,0.708003672683567,64331,0.139023461813982,11.0717969091311,11.6713896852336,12.6379005154681,5.83076923076923,364.322890090826,2142,587940,0,1,0,0,9 +"13398",2014,29195,"MO","29","195",23408,0.90845010252905,1857,0.128973000683527,7.52671756135271,7.85748078694253,8.78339623219089,5.63076923076923,423.632649973523,56,13219,0,1,0,0,9 +"13399",2014,29201,"MO","29","201",38897,0.868447438105767,2501,0.132683754531198,7.82444593087762,8.4448375292241,9.34853587072758,6.61538461538461,555.729843588939,124,22313,0,1,0,0,9 +"13400",2014,29203,"MO","29","203",8295,0.975406871609403,473,0.151295961422544,6.15909538849193,6.73221070646721,7.72753511047545,9.44615384615385,643.086816720257,30,4665,0,1,0,0,9 +"13401",2014,29205,"MO","29","205",6089,0.981934636229266,292,0.14813598292002,5.67675380226828,6.48616078894409,7.39878627541995,6.01538461538462,393.224440411373,13,3306,0,1,0,0,9 +"13402",2014,29207,"MO","29","207",29794,0.978250654494193,1776,0.133785325904545,7.48211892355212,8.18757739559151,9.05181346374795,7.82307692307692,563.029692407989,95,16873,0,1,0,0,9 +"13403",2014,29209,"MO","29","209",31462,0.979816922001144,1348,0.175100120780624,7.20637729147225,7.9820748750812,9.05485546913579,9.76923076923077,562.749606680382,93,16526,0,1,0,0,9 +"13404",2014,29213,"MO","29","213",53861,0.958095839290024,3898,0.134178719295966,8.26821888006751,8.69114649853968,9.66065136787618,9.83076923076923,393.081761006289,120,30528,0,1,0,0,9 +"13405",2014,29215,"MO","29","215",25680,0.944781931464174,1564,0.139213395638629,7.35500192110526,7.96137020171951,8.80192090404158,7.94615384615385,527.614087981362,77,14594,0,1,0,0,9 +"13406",2014,29217,"MO","29","217",20996,0.97070870642027,1219,0.134501809868546,7.10578612948127,7.76131918094799,8.6769282495374,5.66923076923077,651.041666666667,75,11520,0,1,0,0,9 +"13407",2014,29219,"MO","29","219",33185,0.958294410125056,1805,0.136386921802019,7.49831587076698,8.24275634571448,9.15693959524907,6.16923076923077,422.185867328091,80,18949,0,1,0,0,9 +"13408",2014,29221,"MO","29","221",25078,0.963194832123774,1468,0.138408166520456,7.29165620917446,8.08548677210285,8.86234196351635,8.56153846153846,689.701352618187,103,14934,0,1,0,0,9 +"13409",2014,29223,"MO","29","223",13482,0.980344162587153,656,0.148197596795728,6.48616078894409,7.25205395185281,8.22790983759748,7.47692307692308,820.333512641205,61,7436,0,1,0,0,9 +"13410",2014,29225,"MO","29","225",37044,0.974273836518734,2052,0.12279991361624,7.62657020629066,8.42595471098197,9.2179116374725,6.06923076923077,315.304390007276,65,20615,0,1,0,0,9 +"13411",2014,29229,"MO","29","229",18200,0.98054945054945,954,0.138076923076923,6.86066367144829,7.57147364885127,8.50653661122771,7.32307692307692,663.265306122449,65,9800,0,1,0,0,9 +"13412",2014,29510,"MO","29","510",317599,0.465662675260313,25372,0.127582265687235,10.1414014827538,10.6130492743642,11.5763602522176,7.59230769230769,544.263927316592,1137,208906,0,1,0,0,9 +"13413",2014,28001,"MS","28","001",32081,0.449611919827936,2018,0.150961628378168,7.60986220091355,8.28652137368124,9.10175243155928,8.43846153846154,666.107206545683,127,19066,0,1,0,0,9 +"13414",2014,28003,"MS","28","003",37276,0.864550917480416,2326,0.1264352398326,7.75190533307861,8.47907586930311,9.28591155882326,6.7,628.105371707134,134,21334,0,1,0,0,9 +"13415",2014,28005,"MS","28","005",12605,0.58048393494645,709,0.164617215390718,6.56385552653213,7.13169851046691,8.18590748148232,8.08461538461538,721.051887459352,51,7073,0,1,0,0,9 +"13416",2014,28007,"MS","28","007",18829,0.559987253704392,1130,0.130118434330023,7.02997291170639,7.64300363556072,8.5816692106006,8.80769230769231,598.919980363279,61,10185,0,1,0,0,9 +"13417",2014,28009,"MS","28","009",8305,0.626610475617098,511,0.129078868151716,6.2363695902037,6.92853781816467,7.77569574991525,9.44615384615385,626.5664160401,30,4788,0,1,0,0,9 +"13418",2014,28011,"MS","28","011",33824,0.338162251655629,2904,0.121274834437086,7.97384437594469,8.23695004806146,9.25129035830514,9.66153846153846,729.551993423757,142,19464,0,1,0,0,9 +"13419",2014,28013,"MS","28","013",14695,0.708744470908472,871,0.135692412385165,6.7696419768525,7.47363710849621,8.36427508499152,7.53846153846154,604.59492140266,50,8270,0,1,0,0,9 +"13420",2014,28015,"MS","28","015",10239,0.654067780056646,608,0.155093270827229,6.41017488196617,7.07834157955767,7.95085485771999,9.57692307692308,629.037742264536,37,5882,0,1,0,0,9 +"13421",2014,28017,"MS","28","017",17399,0.547330306339445,1235,0.128110810966147,7.11882624906208,7.60887062919126,8.5197898172635,9.79230769230769,385.630200933631,38,9854,0,1,0,0,9 +"13422",2014,28019,"MS","28","019",8388,0.696351931330472,479,0.141630901287554,6.17170059741091,6.84374994900622,7.77401507725073,8.24615384615385,624.3272335845,29,4645,0,1,0,0,9 +"13423",2014,28021,"MS","28","021",9169,0.134802050387174,1205,0.130766713927364,7.09423484592476,6.82437367004309,7.91095738284559,14.7461538461538,726.4385394762,38,5231,0,1,0,0,9 +"13424",2014,28023,"MS","28","023",16273,0.647575738954096,970,0.140908252934308,6.87729607149743,7.5422134631934,8.47949132423223,9.1,699.071545603495,64,9155,0,1,0,0,9 +"13425",2014,28025,"MS","28","025",20156,0.403998809287557,1457,0.137973804326255,7.2841348061952,7.75061473277041,8.72648119644001,13.3769230769231,570.391495981333,66,11571,0,1,0,0,9 +"13426",2014,28027,"MS","28","027",24860,0.228559935639582,2017,0.124014481094127,7.60936653795421,7.88870952418201,8.9398431242785,11.8846153846154,857.286938981341,119,13881,0,1,0,0,9 +"13427",2014,28029,"MS","28","029",28976,0.471631695196024,2187,0.136906405300939,7.69028602067677,8.07806788181544,9.05672288331058,8.96923076923077,671.546978038599,111,16529,0,1,0,0,9 +"13428",2014,28031,"MS","28","031",19161,0.63143886018475,1325,0.127133239392516,7.18916773842032,7.67786350067821,8.62047154086974,6.66923076923077,459.263341600074,50,10887,0,1,0,0,9 +"13429",2014,28033,"MS","28","033",170923,0.730159194491087,10678,0.110160715643886,9.27594082906013,10.1498396889872,10.8639482681548,5.4,382.065735154017,385,100768,0,1,0,0,9 +"13430",2014,28035,"MS","28","035",75861,0.603353501799344,8989,0.104796931229486,9.1037568865734,9.07119324056602,10.0776929287278,7.49230769230769,523.639840083435,241,46024,0,1,0,0,9 +"13431",2014,28037,"MS","28","037",7775,0.642700964630225,421,0.148681672025723,6.04263283368238,6.77650699237218,7.70255611326858,8.46153846153846,529.344073647871,23,4345,0,1,0,0,9 +"13432",2014,28039,"MS","28","039",23332,0.905494599691411,1675,0.115035144865421,7.42356844425917,7.99361999482774,8.76545853150423,8.33846153846154,556.349146680701,74,13301,0,1,0,0,9 +"13433",2014,28041,"MS","28","041",14337,0.722047848224873,1091,0.114807839854921,6.99484998583307,7.68202151082687,8.09742629859721,8.93846153846154,385.067921702856,36,9349,0,1,0,0,9 +"13434",2014,28043,"MS","28","043",21611,0.564897505899773,1486,0.132987830271621,7.3038432252777,7.86710550031674,8.78416222227048,7.25384615384615,732.807215332582,91,12418,0,1,0,0,9 +"13435",2014,28045,"MS","28","045",46029,0.895153055682287,2645,0.145690760172934,7.8804263442924,8.60831278478372,9.52770259852938,7.29230769230769,551.600760314562,148,26831,0,1,0,0,9 +"13436",2014,28047,"MS","28","047",198502,0.710068412408943,15311,0.12093580921099,9.6363268033051,10.1085078655906,11.004280794529,6.78461538461538,525.55014589272,625,118923,0,1,0,0,9 +"13437",2014,28049,"MS","28","049",245370,0.270118596405429,20976,0.120418144027387,9.95113420600348,10.2707314478241,11.2694388903722,7.30769230769231,519.19359293013,752,144840,0,1,0,0,9 +"13438",2014,28051,"MS","28","051",18508,0.163118651393992,1663,0.12011022260644,7.41637847919293,7.56837926783652,8.60575336839572,15.1230769230769,794.419686107344,82,10322,0,1,0,0,9 +"13439",2014,28053,"MS","28","053",8794,0.230839208551285,602,0.1344098248806,6.40025744530882,6.80128303447162,7.87625888230323,15.9692307692308,652.52854812398,32,4904,0,1,0,0,9 +"13440",2014,28057,"MS","28","057",23401,0.926285201487116,1733,0.122900730738003,7.45760928971561,7.97004930497614,8.80222174640246,7.22307692307692,509.172594533882,68,13355,0,1,0,0,9 +"13441",2014,28059,"MS","28","059",141511,0.745440283794193,9241,0.128555377320491,9.13140538388804,9.81498415394472,10.6623756560587,8.06923076923077,500.07757766718,419,83787,0,1,0,0,9 +"13442",2014,28061,"MS","28","061",16531,0.463250862016817,1059,0.144939810053838,6.96508034560141,7.5251007461258,8.4707303170059,8.59230769230769,729.222520107239,68,9325,0,1,0,0,9 +"13443",2014,28063,"MS","28","063",7584,0.135152953586498,573,0.142800632911392,6.35088571671474,6.76619171466035,7.71333788887187,16.2384615384615,760.869565217391,35,4600,0,1,0,0,9 +"13444",2014,28065,"MS","28","065",11815,0.387558188743123,804,0.146085484553534,6.68959926917897,7.24351297466548,8.16961956172385,10.3307692307692,946.605531726076,64,6761,0,1,0,0,9 +"13445",2014,28067,"MS","28","067",68428,0.692669667387619,4491,0.128397731922605,8.40983067308774,8.97815607600982,9.88756140198587,6.24615384615385,542.740841248304,208,38324,0,1,0,0,9 +"13446",2014,28069,"MS","28","069",10222,0.354138133437683,828,0.131187634513794,6.71901315438526,7.07918439460967,7.96589273508453,12.8615384615385,633.127994524298,37,5844,0,1,0,0,9 +"13447",2014,28071,"MS","28","071",52116,0.730370711489754,8745,0.100429810422903,9.0762373874527,8.67077227934454,9.70789836874127,6.49230769230769,265.017667844523,87,32828,0,1,0,0,9 +"13448",2014,28073,"MS","28","073",60211,0.778595273288934,4339,0.109747388350966,8.37539918579835,9.04887970584956,9.85145714444174,5.17692307692308,321.605277625069,117,36380,0,1,0,0,9 +"13449",2014,28075,"MS","28","075",79330,0.554355225009454,5719,0.127555779654607,8.65154924391532,9.15112101231621,10.0662014630239,7.57692307692308,513.285024154589,238,46368,0,1,0,0,9 +"13450",2014,28077,"MS","28","077",12625,0.678178217821782,744,0.139960396039604,6.61204103483309,7.24565506759454,8.20412493257404,8.38461538461539,723.025583982202,52,7192,0,1,0,0,9 +"13451",2014,28079,"MS","28","079",23176,0.505134622022782,1593,0.120167414566793,7.37337430991005,7.9229859587112,8.76826314537129,7.18461538461538,717.460812602355,92,12823,0,1,0,0,9 +"13452",2014,28081,"MS","28","081",84781,0.696665526474092,5500,0.118458145103266,8.61250337122056,9.31298720893633,10.1564228886581,7.27692307692308,516.480611643181,254,49179,0,1,0,0,9 +"13453",2014,28083,"MS","28","083",30721,0.249959311220338,2675,0.119136746850688,7.89170465933011,8.13973227971767,9.14516164595119,12.7307692307692,672.222222222222,121,18000,0,1,0,0,9 +"13454",2014,28085,"MS","28","085",34737,0.684313556150502,2245,0.132250914010997,7.71646080017636,8.38091517312361,9.24522477382969,6.66923076923077,665.832290362954,133,19975,0,1,0,0,9 +"13455",2014,28087,"MS","28","087",59828,0.545179514608545,4817,0.12686367587083,8.47990660663022,8.85166342536678,9.82070359105721,8.80769230769231,451.063829787234,159,35250,0,1,0,0,9 +"13456",2014,28089,"MS","28","089",100902,0.585835761431884,6352,0.126439515569563,8.75652500292697,9.51716308795535,10.3683530039257,5.30769230769231,398.353691796559,241,60499,0,1,0,0,9 +"13457",2014,28091,"MS","28","091",25685,0.666653688923496,1621,0.131438582830446,7.39079852173568,8.03592636989179,8.91771275713139,8.28461538461539,713.557594291539,105,14715,0,1,0,0,9 +"13458",2014,28093,"MS","28","093",36197,0.508826698345167,2535,0.143962206812719,7.83794891602528,8.39728289474368,9.27462886185855,8.76153846153846,679.865864302448,148,21769,0,1,0,0,9 +"13459",2014,28095,"MS","28","095",36061,0.683147999223538,2329,0.134133828790106,7.75319426988434,8.37332282099653,9.27246974344173,10.1846153846154,538.678054935456,111,20606,0,1,0,0,9 +"13460",2014,28097,"MS","28","097",10358,0.536976250241359,679,0.141533114500869,6.5206211275587,6.98841318199959,8.01730750768858,9.32307692307692,856.604420078807,50,5837,0,1,0,0,9 +"13461",2014,28099,"MS","28","099",29470,0.611537156430268,1871,0.12375296912114,7.53422832627409,8.15708378502887,9.03622505172933,6.85384615384615,836.068619557813,135,16147,0,1,0,0,9 +"13462",2014,28101,"MS","28","101",21714,0.633370175923367,1606,0.118955512572534,7.38150189450671,7.89766815072691,8.73729211254422,6.74615384615385,733.211131478087,88,12002,0,1,0,0,9 +"13463",2014,28103,"MS","28","103",11069,0.273014725810823,843,0.132351612611799,6.73696695800186,7.09754885061479,8.08394570229562,12.6230769230769,382.65306122449,24,6272,0,1,0,0,9 +"13464",2014,28105,"MS","28","105",49124,0.586800749124664,12137,0.0876557283608827,9.40401391710636,8.34021732094704,9.64153820197995,7.27692307692308,316.856780735108,100,31560,0,1,0,0,9 +"13465",2014,28107,"MS","28","107",34453,0.489884770556991,2467,0.128087539546629,7.81075811652936,8.3086919168389,9.24464517566817,10.6461538461538,728.265817023213,144,19773,0,1,0,0,9 +"13466",2014,28109,"MS","28","109",55149,0.857168760992946,3657,0.136684255380877,8.20439841814938,8.77894188184151,9.67180767019963,6.75384615384615,568.10928124601,178,31332,0,1,0,0,9 +"13467",2014,28111,"MS","28","111",12064,0.790119363395225,793,0.1345324933687,6.67582322163485,7.28207365809346,8.17695386822578,9.26153846153846,702.408256880734,49,6976,0,1,0,0,9 +"13468",2014,28113,"MS","28","113",39960,0.457007007007007,2731,0.129004004004004,7.9124231214737,8.45531778769815,9.37058672111828,8.34615384615385,817.178916783947,180,22027,0,1,0,0,9 +"13469",2014,28115,"MS","28","115",30802,0.832673203038764,1908,0.116680735017207,7.55381085200823,8.25790419346567,9.07988994259212,6.84615384615385,390.161153519932,69,17685,0,1,0,0,9 +"13470",2014,28117,"MS","28","117",25421,0.849848550411077,2017,0.1228511860273,7.60936653795421,7.98378106897745,8.89137400948464,7.56153846153846,584.232593305382,85,14549,0,1,0,0,9 +"13471",2014,28119,"MS","28","119",7689,0.293536220574847,555,0.135258161009234,6.31896811374643,6.83947643822884,7.76641689801966,13.2153846153846,879.17042380523,39,4436,0,1,0,0,9 +"13472",2014,28121,"MS","28","121",148464,0.781906724862593,8560,0.119880913891583,9.05485546913579,9.97296697230593,10.737200699983,4.7,399.358334361644,356,89143,0,1,0,0,9 +"13473",2014,28123,"MS","28","123",28552,0.591202017371813,1923,0.121112356402354,7.56164174558878,8.1758290087146,9.01930092456251,5.53846153846154,582.929373504326,95,16297,0,1,0,0,9 +"13474",2014,28125,"MS","28","125",4615,0.281473456121343,300,0.15557963163597,5.7037824746562,6.19031540585315,7.25981961036319,11.1384615384615,998.080614203455,26,2605,0,1,0,0,9 +"13475",2014,28127,"MS","28","127",27517,0.631318821092416,1782,0.13562524984555,7.48549160803075,8.09132127353041,8.99404829561107,6.45384615384615,615.029790505478,96,15609,0,1,0,0,9 +"13476",2014,28129,"MS","28","129",16207,0.759980255445178,1005,0.138150182020115,6.91274282049318,7.55171221535131,8.45425339164236,5.83846153846154,549.3298176225,50,9102,0,1,0,0,9 +"13477",2014,28131,"MS","28","131",18100,0.789226519337017,1516,0.126298342541436,7.32383056620232,7.69575799055476,8.56140144608056,8.63076923076923,516.301749689263,54,10459,0,1,0,0,9 +"13478",2014,28133,"MS","28","133",27408,0.252116170461179,2403,0.118213660245184,7.78447323573647,8.14206328310415,8.92691588977704,12.6,653.099306081987,112,17149,0,1,0,0,9 +"13479",2014,28135,"MS","28","135",14724,0.410418364574844,1350,0.114506927465363,7.20785987143248,7.62559507213245,8.22255363839696,9.36923076923077,508.097808828199,48,9447,0,1,0,0,9 +"13480",2014,28137,"MS","28","137",28244,0.675364679223906,2057,0.127035830618893,7.62900388965296,8.09040229659332,9.02280524812934,8.56923076923077,451.07129432402,72,15962,0,1,0,0,9 +"13481",2014,28139,"MS","28","139",21976,0.821214051692756,1520,0.121314160902803,7.32646561384032,7.90285719128058,8.7514744871409,8.38461538461539,555.996822875298,70,12590,0,1,0,0,9 +"13482",2014,28141,"MS","28","141",19429,0.964537546965876,1159,0.134335272016058,7.05531284333975,7.75405263903576,8.62245370207373,7.79230769230769,752.017608217168,82,10904,0,1,0,0,9 +"13483",2014,28143,"MS","28","143",10496,0.216653963414634,732,0.115091463414634,6.59578051396131,7.17395831975679,8.09712193091871,11.8846153846154,594.648166501487,36,6054,0,1,0,0,9 +"13484",2014,28145,"MS","28","145",28152,0.834185848252344,1782,0.117362887183859,7.48549160803075,8.22013395715186,8.99156227817161,6.2,438.212094653812,70,15974,0,1,0,0,9 +"13485",2014,28147,"MS","28","147",14844,0.546416060361089,908,0.135071409323632,6.81124437860129,7.46565531013406,8.34616759436413,9.55384615384615,716.976546360433,59,8229,0,1,0,0,9 +"13486",2014,28149,"MS","28","149",47951,0.498279493649767,3110,0.140455882046256,8.04237800517328,8.68490859582083,9.59362803513964,7.7,565.254722381225,158,27952,0,1,0,0,9 +"13487",2014,28151,"MS","28","151",49032,0.267539565997716,3580,0.136257953989232,8.18311807939475,8.61177583390219,9.61880098906415,12.6384615384615,695.807314897413,195,28025,0,1,0,0,9 +"13488",2014,28153,"MS","28","153",20473,0.596492941923509,1386,0.127240756117814,7.23417717974985,7.80547462527086,8.70499967844076,8.94615384615385,667.522464698331,78,11685,0,1,0,0,9 +"13489",2014,28155,"MS","28","155",10000,0.7956,587,0.1331,6.3750248198281,7.04577657687951,7.96206730875367,8.63076923076923,579.048955957185,33,5699,0,1,0,0,9 +"13490",2014,28157,"MS","28","157",9185,0.283287969515514,685,0.139575394665215,6.52941883826223,6.94119005506837,7.80098207125774,11.5615384615385,640.797436810253,36,5618,0,1,0,0,9 +"13491",2014,28159,"MS","28","159",18610,0.5156367544331,1165,0.138527673293928,7.0604763659998,7.69439280262942,8.5775354204224,10.0846153846154,751.164780831036,79,10517,0,1,0,0,9 +"13492",2014,28161,"MS","28","161",12304,0.599967490247074,751,0.14889466840052,6.62140565176413,7.3065313989395,8.20083725837985,9.31538461538462,615.076526963239,43,6991,0,1,0,0,9 +"13493",2014,28163,"MS","28","163",27810,0.410355987055016,1863,0.112980942107156,7.52994337060159,8.29229810706322,8.83258770243455,10.0384615384615,681.551116333725,116,17020,0,1,0,0,9 +"13494",2014,37001,"NC","37","001",155439,0.764557157470133,10289,0.124955770430844,9.23883064237581,9.87796459530504,10.7564124087885,5.50769230769231,415.227986810405,374,90071,0,1,0,0,9 +"13495",2014,37003,"NC","37","003",36993,0.921039115508339,2126,0.137999080907199,7.66199755890189,8.49043845410742,9.24377514806242,5.46923076923077,446.305328057422,97,21734,0,1,0,0,9 +"13496",2014,37005,"NC","37","005",10891,0.965200624368745,541,0.159489486732164,6.29341927884648,7.09754885061479,7.97899637085411,6.64615384615385,663.459943605905,40,6029,0,1,0,0,9 +"13497",2014,37007,"NC","37","007",25976,0.481636895595935,1899,0.135586695411149,7.54908271081229,8.13211877295581,8.859647499715,6.88461538461538,488.795784929855,77,15753,0,1,0,0,9 +"13498",2014,37009,"NC","37","009",26761,0.979298232502522,1311,0.155225888419715,7.1785454837637,8.05927622330565,8.91931939825889,6.63846153846154,499.835580401184,76,15205,0,1,0,0,9 +"13499",2014,37011,"NC","37","011",17658,0.943538339562804,1210,0.137444784233775,7.09837563859079,7.79234892411304,8.39886000445437,6.37692307692308,445.889456572225,48,10765,0,1,0,0,9 +"13500",2014,37013,"NC","37","013",47349,0.7224439798095,2509,0.15656085661788,7.82763954636642,8.6079475546847,9.52230033688749,7.12307692307692,592.885375494071,156,26312,0,1,0,0,9 +"13501",2014,37015,"NC","37","015",20317,0.358419057931781,1357,0.156617610867746,7.21303165983487,7.72001794043224,8.64664125860312,7.67692307692308,519.611129735166,62,11932,0,1,0,0,9 +"13502",2014,37017,"NC","37","017",34365,0.610446675396479,2057,0.15707842281391,7.62900388965296,8.32579052588609,9.23902500583609,9.12307692307692,721.117732485352,144,19969,0,1,0,0,9 +"13503",2014,37019,"NC","37","019",118382,0.865427176428849,5326,0.175187106147894,8.58035576637388,9.43484299932802,10.4309637823711,7.70769230769231,486.678342813745,314,64519,0,1,0,0,9 +"13504",2014,37021,"NC","37","021",249265,0.907873147052334,14912,0.141580245923014,9.60992153692537,10.4014406800794,11.2618067318255,4.56923076923077,379.578290506568,573,150957,0,1,0,0,9 +"13505",2014,37023,"NC","37","023",89292,0.874468037450164,5769,0.141950006719527,8.66025403425689,9.28294006439053,10.1706097110225,6.03076923076923,513.958428159612,271,52728,0,1,0,0,9 +"13506",2014,37025,"NC","37","025",191737,0.785226638572628,11114,0.113540944105728,9.31596085383987,10.2657667631947,10.9712453666083,5.65384615384615,292.625139240059,331,113114,0,1,0,0,9 +"13507",2014,37027,"NC","37","027",81698,0.932556488530931,4781,0.142573869617371,8.4724050086261,9.26530193005016,10.0841410522294,7.04615384615385,499.625281039221,240,48036,0,1,0,0,9 +"13508",2014,37031,"NC","37","031",68670,0.912363477501092,3635,0.162196009902432,8.19836438996762,8.96046776091995,9.91556433376158,6.02307692307692,420.936583899176,168,39911,0,1,0,0,9 +"13509",2014,37033,"NC","37","033",22808,0.646790599789548,1327,0.161390740091196,7.19067603433221,7.91498300584839,8.776938645175,7.00769230769231,523.560209424084,72,13752,0,1,0,0,9 +"13510",2014,37035,"NC","37","035",155157,0.856983571479211,9487,0.133986864917471,9.15767771939288,9.91304176534094,10.7366357773189,6.16923076923077,450.779727095517,407,90288,0,1,0,0,9 +"13511",2014,37037,"NC","37","037",66708,0.830200275828986,3014,0.153324938538106,8.01102337918644,9.00761200540457,9.85587169859446,4.73076923076923,362.279948475741,135,37264,0,1,0,0,9 +"13512",2014,37039,"NC","37","039",27093,0.956593954157901,1237,0.167792418705939,7.12044437239249,7.95155933115525,8.91851640035707,6.9,556.89240288759,81,14545,0,1,0,0,9 +"13513",2014,37041,"NC","37","041",14504,0.635548814120243,740,0.156232763375621,6.60665018619822,7.29233717617388,8.34093322600088,7.67692307692308,441.028225806452,35,7936,0,1,0,0,9 +"13514",2014,37043,"NC","37","043",10578,0.9781622234827,491,0.169786349026281,6.19644412779452,6.99759598298193,7.94873845481361,6.39230769230769,525.26716174606,29,5521,0,1,0,0,9 +"13515",2014,37045,"NC","37","045",97030,0.770802844481088,6700,0.136998866330001,8.80986280537906,9.35746643686648,10.2750855911327,7.08461538461538,641.071301374742,360,56156,0,1,0,0,9 +"13516",2014,37047,"NC","37","047",56906,0.642955048676765,3667,0.137823779566302,8.20712916807133,8.82673459822091,9.6868850617653,8.26923076923077,626.463522184716,206,32883,0,1,0,0,9 +"13517",2014,37049,"NC","37","049",104168,0.734601797096997,11125,0.121678442515936,9.31695010703444,9.30428598481871,10.2697612803941,6.69230769230769,393.031128725952,238,60555,0,1,0,0,9 +"13518",2014,37051,"NC","37","051",332680,0.547742575447878,35874,0.101145244679572,10.487768078109,10.5693406145215,11.5257824584727,7.83076923076923,417.64301874596,827,198016,0,1,0,0,9 +"13519",2014,37053,"NC","37","053",24834,0.920230329387131,1285,0.149834903760973,7.15851399732932,8.06400734709666,8.93405972224884,6.09230769230769,389.387539598733,59,15152,0,1,0,0,9 +"13520",2014,37055,"NC","37","055",34914,0.952683737182792,1607,0.170075041530618,7.38212436573751,8.3584318990313,9.26558584620216,8.44615384615385,451.027868774628,95,21063,0,1,0,0,9 +"13521",2014,37057,"NC","37","057",163437,0.878313968073325,9330,0.135679191370375,9.14099029384139,9.96043483297788,10.7888447376404,6.11538461538461,494.113468509407,473,95727,0,1,0,0,9 +"13522",2014,37059,"NC","37","059",41262,0.91730890407639,2153,0.148611313072561,7.67461749736436,8.53503310954457,9.3923285398689,5.67692307692308,375.090575849282,88,23461,0,1,0,0,9 +"13523",2014,37061,"NC","37","061",59426,0.707249352135429,3528,0.131205196378689,8.16848641712668,8.92292493064183,9.74384682996523,6.2,434.591102628102,148,34055,0,1,0,0,9 +"13524",2014,37063,"NC","37","063",295324,0.534866790372608,21414,0.113610813885766,9.97180019271821,10.6703033230213,11.4946189179876,4.97692307692308,269.800475616649,506,187546,0,1,0,0,9 +"13525",2014,37065,"NC","37","065",54860,0.401203062340503,3644,0.148596427269413,8.20083725837985,8.71735466633852,9.74846983026952,10.0307692307692,556.962025316456,176,31600,0,1,0,0,9 +"13526",2014,37067,"NC","37","067",364555,0.68301902319266,25110,0.126337589664111,10.1310214521516,10.7370703615373,11.6352492867465,5.85384615384615,352.340180260583,758,215133,0,1,0,0,9 +"13527",2014,37069,"NC","37","069",62694,0.705219000223307,3711,0.138226943567167,8.2190566610606,9.02002696525268,9.82951803233595,6.30769230769231,380.207631117703,141,37085,0,1,0,0,9 +"13528",2014,37071,"NC","37","071",210599,0.812059886324247,13109,0.130166809908879,9.48105429619781,10.2626294510386,11.0762947143439,6.61538461538462,504.5922671633,634,125646,0,1,0,0,9 +"13529",2014,37073,"NC","37","073",11632,0.646664374140303,677,0.15173658872077,6.51767127291227,7.14440718032114,8.15334975799889,5.77692307692308,502.809819580006,34,6762,0,1,0,0,9 +"13530",2014,37075,"NC","37","075",8617,0.908552860624347,442,0.143669490541952,6.0913098820777,6.87005341179813,7.77695440332244,13.0307692307692,488.219061770325,23,4711,0,1,0,0,9 +"13531",2014,37077,"NC","37","077",58027,0.652627225257208,3836,0.13986592448343,8.25218543600333,8.9557061535706,9.74232064981457,5.28461538461538,421.431180288259,150,35593,0,1,0,0,9 +"13532",2014,37079,"NC","37","079",21016,0.589788732394366,1353,0.139893414541302,7.21007962817079,7.96415571884094,8.61159386683772,6.03846153846154,437.720780218092,57,13022,0,1,0,0,9 +"13533",2014,37081,"NC","37","081",512414,0.59103186095618,38825,0.121825320931903,10.5668196480169,11.1020507512945,11.995586154609,6.34615384615385,345.701475079602,1064,307780,0,1,0,0,9 +"13534",2014,37083,"NC","37","083",52840,0.407286146858441,3530,0.148050719152157,8.16905314992734,8.67145815042767,9.66224367419013,9.40769230769231,591.890124264225,181,30580,0,1,0,0,9 +"13535",2014,37085,"NC","37","085",126769,0.735085076004386,8371,0.103511110760517,9.03252863066006,9.76411053606749,10.526721795621,7.17692307692308,385.017842290252,287,74542,0,1,0,0,9 +"13536",2014,37087,"NC","37","087",59192,0.97445600756859,3108,0.149547236112988,8.04173471148754,8.82790796297859,9.74782740069566,5.63846153846154,479.860840356297,160,33343,0,1,0,0,9 +"13537",2014,37089,"NC","37","089",110338,0.942830212619406,5233,0.144981783247838,8.56274000637221,9.45508884704278,10.3308772180601,4.90769230769231,442.94944381536,266,60052,0,1,0,0,9 +"13538",2014,37091,"NC","37","091",24615,0.36563071297989,1796,0.14913670526102,7.49331724886215,7.9298464297425,8.85851081303393,7.2,447.928331466965,64,14288,0,1,0,0,9 +"13539",2014,37093,"NC","37","093",51633,0.515852265024306,3339,0.0992582263281235,8.11342663994365,8.87486763568805,9.67130325656977,8.10769230769231,354.191263282172,111,31339,0,1,0,0,9 +"13540",2014,37097,"NC","37","097",166598,0.841348635637883,10144,0.126214000168069,9.22463767667701,10.0263686819119,10.8145044019076,6.11538461538461,369.25823729914,364,98576,0,1,0,0,9 +"13541",2014,37099,"NC","37","099",40960,0.86279296875,5006,0.1309326171875,8.51839247199172,8.35161075062656,9.40960098282706,6.50769230769231,356.683671353324,86,24111,0,1,0,0,9 +"13542",2014,37101,"NC","37","101",180732,0.814238762366377,10195,0.116775114534227,9.22965268300856,10.2155939088984,10.9034390543803,5.53846153846154,317.383268300879,340,107126,0,1,0,0,9 +"13543",2014,37103,"NC","37","103",9841,0.666192460115842,610,0.166243267960573,6.41345895716736,6.92755790627832,7.98104975966596,6.46153846153846,466.482377332412,27,5788,0,1,0,0,9 +"13544",2014,37105,"NC","37","105",59425,0.761026503996634,3703,0.124829617164493,8.21689858091361,8.93853164868069,9.75359446296151,7.93076923076923,385.682980277575,132,34225,0,1,0,0,9 +"13545",2014,37107,"NC","37","107",58275,0.563534963534964,3676,0.147370227370227,8.20958048347558,8.7826296549207,9.7520830983769,6.93076923076923,559.129441471773,186,33266,0,1,0,0,9 +"13546",2014,37109,"NC","37","109",79479,0.92799355804678,4456,0.140452194919413,8.40200678160712,9.29990681533523,10.0785327003593,5.98461538461538,390.470025683323,187,47891,0,1,0,0,9 +"13547",2014,37111,"NC","37","111",45017,0.938134482528822,2566,0.145433947175511,7.85010354517558,8.66112036022288,9.46753746341524,6.23846153846154,492.349643993334,130,26404,0,1,0,0,9 +"13548",2014,37113,"NC","37","113",33849,0.964666607580726,1655,0.155780082129457,7.41155628781116,8.10892415597534,9.11471014096093,6.43076923076923,581.720550397136,104,17878,0,1,0,0,9 +"13549",2014,37115,"NC","37","115",21217,0.971909317999717,1470,0.148465852853844,7.29301767977278,7.83518375526675,8.7168633865448,6.04615384615385,504.465762487595,61,12092,0,1,0,0,9 +"13550",2014,37117,"NC","37","117",23441,0.554498528219786,1396,0.165052685465637,7.24136628332232,7.82604401351897,8.85651849701986,7.60769230769231,653.889515219842,87,13305,0,1,0,0,9 +"13551",2014,37119,"NC","37","119",1010878,0.597802108661975,68188,0.105654688300665,11.1300238752708,11.9480140981445,12.709296448533,5.80769230769231,263.245935473332,1676,636667,0,1,0,0,9 +"13552",2014,37121,"NC","37","121",15167,0.974747807740489,778,0.157249291224369,6.65672652417839,7.44249272279444,8.3696208269491,7.49230769230769,502.043199065966,43,8565,0,1,0,0,9 +"13553",2014,37123,"NC","37","123",27280,0.777382697947214,1626,0.144978005865103,7.39387829010776,8.09101504171053,8.96456770260161,6.20769230769231,475.322307592134,73,15358,0,1,0,0,9 +"13554",2014,37125,"NC","37","125",92849,0.837251882088122,4489,0.132397764111622,8.40938523878193,9.27209376825166,10.1522598634842,5.93846153846154,396.528353800401,196,49429,0,1,0,0,9 +"13555",2014,37127,"NC","37","127",94253,0.573573254962707,6051,0.140738225838965,8.70797882662232,9.35893277602601,10.2546724537312,7.73076923076923,488.009177486024,268,54917,0,1,0,0,9 +"13556",2014,37129,"NC","37","129",216112,0.823290701117939,20954,0.127063744724957,9.95008483791291,10.2286099079618,11.1368638072313,5.73846153846154,359.623108975562,479,133195,0,1,0,0,9 +"13557",2014,37131,"NC","37","131",20658,0.400232355503921,1232,0.166279407493465,7.11639414409346,7.60787807327851,8.66957087183712,7.81538461538462,497.68619575657,57,11453,0,1,0,0,9 +"13558",2014,37133,"NC","37","133",192061,0.788681720911585,36197,0.0727997875674916,10.4967315214515,9.84033473753086,10.842850071978,5.89230769230769,284.348048842968,333,117110,0,1,0,0,9 +"13559",2014,37135,"NC","37","135",140432,0.783603452204626,17464,0.122037712202347,9.76789689822978,9.72442069346267,10.7339371315322,4.50769230769231,225.769669327252,198,87700,0,1,0,0,9 +"13560",2014,37137,"NC","37","137",12870,0.781196581196581,646,0.174902874902875,6.4707995037826,7.15617663748062,8.12946976478423,6.44615384615385,595.980595980596,43,7215,0,1,0,0,9 +"13561",2014,37139,"NC","37","139",39479,0.593505407938398,3053,0.129410572709542,8.02387999273488,8.43359416753992,9.37610901542907,7.83076923076923,370.948025123298,88,23723,0,1,0,0,9 +"13562",2014,37141,"NC","37","141",55931,0.80944377894191,3133,0.144088251595716,8.04974629095219,8.89521858376562,9.69146938400534,6.88461538461539,356.370503487557,117,32831,0,1,0,0,9 +"13563",2014,37143,"NC","37","143",13541,0.743445831179381,612,0.154272210324201,6.41673228251233,7.21081845347222,8.22577079934873,7.56153846153846,386.633526650097,28,7242,0,1,0,0,9 +"13564",2014,37145,"NC","37","145",39130,0.70646562739586,2298,0.151878354203936,7.7397944584087,8.49556089128912,9.36836923620109,7.52307692307692,557.928689739343,128,22942,0,1,0,0,9 +"13565",2014,37147,"NC","37","147",175052,0.612955007654868,24435,0.109538879875694,10.1037718097043,9.94726517488202,10.9639305750867,6.25384615384615,299.908003679853,326,108700,0,1,0,0,9 +"13566",2014,37149,"NC","37","149",20372,0.939083055173768,963,0.170135480070685,6.87005341179813,7.58629630715272,8.62568878756954,5.18461538461538,414.631899014097,45,10853,0,1,0,0,9 +"13567",2014,37151,"NC","37","151",142467,0.907775133890655,8400,0.132837779977118,9.0359869848314,9.82352400839574,10.6381604799246,6.36153846153846,449.31097619736,373,83016,0,1,0,0,9 +"13568",2014,37153,"NC","37","153",45770,0.632663316582915,3289,0.132947345422766,8.09833884618906,8.65538869016764,9.5045759233978,8.70769230769231,562.094462049193,149,26508,0,1,0,0,9 +"13569",2014,37155,"NC","37","155",134920,0.324036466053958,10258,0.123065520308331,9.23581316794921,9.73873082692165,10.6083656559718,9.17692307692308,609.630884542328,475,77916,0,1,0,0,9 +"13570",2014,37157,"NC","37","157",91825,0.790089844813504,5226,0.150612578273891,8.56140144608056,9.32027043134838,10.2222321504397,7.28461538461538,541.980183267526,291,53692,0,1,0,0,9 +"13571",2014,37159,"NC","37","159",138091,0.810183140103265,9228,0.133716172668747,9.12999761929365,9.747652120978,10.6091807022646,6.86153846153846,553.897017098024,449,81062,0,1,0,0,9 +"13572",2014,37161,"NC","37","161",66587,0.882950125399853,3832,0.145779206151351,8.25114213909075,8.99305463014613,9.87277057987407,8.30769230769231,602.647438090476,229,37999,0,1,0,0,9 +"13573",2014,37163,"NC","37","163",63806,0.677600852584397,3964,0.130144500517193,8.28500889544988,8.99912539152725,9.80598497117489,6.28461538461538,568.337817802427,207,36422,0,1,0,0,9 +"13574",2014,37165,"NC","37","165",35662,0.466518983792272,2577,0.13473725534182,7.85438121065236,8.38867776918081,9.23278656080601,11.6153846153846,595.761304814923,122,20478,0,1,0,0,9 +"13575",2014,37167,"NC","37","167",60621,0.854489368370697,4007,0.13472229095528,8.29579811063615,8.900685318714,9.76082891879855,5.88461538461539,478.794231804403,169,35297,0,1,0,0,9 +"13576",2014,37169,"NC","37","169",46309,0.946662635772744,2625,0.149128679090458,7.87283617502572,8.65154924391532,9.52420175621127,5.88461538461539,430.020582181711,117,27208,0,1,0,0,9 +"13577",2014,37171,"NC","37","171",72480,0.942908388520971,4223,0.137168874172185,8.34830105493394,9.11646915636611,9.94217927964711,5.97692307692308,514.840955235425,213,41372,0,1,0,0,9 +"13578",2014,37173,"NC","37","173",14238,0.669546284590532,950,0.134288523669055,6.85646198459459,7.434847875212,8.3291754420774,8.8,633.383010432191,51,8052,0,1,0,0,9 +"13579",2014,37175,"NC","37","175",32971,0.944678657001607,1910,0.153255891541051,7.55485852104068,8.0870254706677,9.0918946167697,5.66923076923077,367.985280588776,64,17392,0,1,0,0,9 +"13580",2014,37179,"NC","37","179",217767,0.842528941483328,12093,0.108377302346085,9.40038205178528,10.3905019251986,11.0557669824532,5.1,314.593789774501,393,124923,0,1,0,0,9 +"13581",2014,37181,"NC","37","181",44533,0.466979543260054,3072,0.139334875261042,8.03008409426756,8.56541176368671,9.51731023333525,9.08461538461538,577.830188679245,147,25440,0,1,0,0,9 +"13582",2014,37183,"NC","37","183",998221,0.701957782895772,64414,0.107544321347678,11.0730862797707,11.9529852178429,12.6735198849942,4.78461538461538,214.925911783708,1334,620679,0,1,0,0,9 +"13583",2014,37185,"NC","37","185",20364,0.411117658613239,1253,0.16627381653899,7.13329595489607,7.65491704784832,8.62389281007529,8.65384615384615,360.545969611125,42,11649,0,1,0,0,9 +"13584",2014,37187,"NC","37","187",12479,0.486657584742367,777,0.166119080054492,6.65544035036765,7.14361760270412,8.20576472523446,9.36153846153846,560.022975301551,39,6964,0,1,0,0,9 +"13585",2014,37189,"NC","37","189",52421,0.963182693958528,11173,0.117472005493981,9.32125543254734,8.47052078321781,9.69720111828834,5.01538461538462,221.643154521221,74,33387,0,1,0,0,9 +"13586",2014,37191,"NC","37","191",124634,0.642433043952694,9661,0.12739701847008,9.17585244151751,9.60501412900613,10.5167253498678,6.22307692307692,432.351336606656,317,73320,0,1,0,0,9 +"13587",2014,37193,"NC","37","193",68418,0.941872021982519,3730,0.146028822824403,8.22416351263786,9.03812754933052,9.87627050624257,6.43076923076923,612.635609444799,240,39175,0,1,0,0,9 +"13588",2014,37195,"NC","37","195",80996,0.571188700676577,5182,0.138216702059361,8.55294636112206,9.19542975924043,10.1131810561259,9.21538461538461,416.124282452359,195,46861,0,1,0,0,9 +"13589",2014,37197,"NC","37","197",37852,0.950121525943147,2172,0.136769523406953,7.68340368105383,8.44397712908498,9.29376198011525,5.49230769230769,487.333915682038,106,21751,0,1,0,0,9 +"13590",2014,37199,"NC","37","199",17543,0.973664709570769,914,0.152368466054837,6.81783057145415,7.646353722446,8.49535649680706,6.56153846153846,472.861842105263,46,9728,0,1,0,0,9 +"13591",2014,38003,"ND","38","003",11068,0.957896638959162,744,0.1508854354897,6.61204103483309,7.00669522683704,7.99091546309133,3.03076923076923,368.471643703941,23,6242,1,1,1,0,9 +"13592",2014,38005,"ND","38","005",6887,0.429795266444025,433,0.119355307100334,6.07073772800249,6.45047042214418,7.44190672805162,6.35384615384615,804.597701149425,28,3480,1,1,1,0,9 +"13593",2014,38015,"ND","38","015",90571,0.929800929657396,6399,0.130251404975102,8.76389700713946,9.3067408662625,10.193392153341,2.4,235.710076605775,128,54304,1,1,1,0,9 +"13594",2014,38017,"ND","38","017",166792,0.914024653460598,20420,0.107439205717301,9.92427009171866,9.92446595892132,10.8480741535651,2.38461538461538,240.479827986194,255,106038,1,1,1,0,9 +"13595",2014,38035,"ND","38","035",69865,0.904429972089029,11958,0.10838044800687,9.38915578944085,8.83112763501208,9.94342915962908,2.70769230769231,214.519589025629,95,44285,1,1,1,0,9 +"13596",2014,38053,"ND","38","053",10997,0.833681913249068,787,0.115849777211967,6.6682282484174,7.21007962817079,7.97246601597457,1.49230769230769,348.484848484848,23,6600,1,1,1,0,9 +"13597",2014,38055,"ND","38","055",9553,0.917617502355281,395,0.172929969643044,5.97888576490112,6.92461239604856,7.82164312623998,3.90769230769231,363.011081390906,19,5234,1,1,1,0,9 +"13598",2014,38057,"ND","38","057",8712,0.962006427915519,385,0.172635445362718,5.95324333428778,6.77650699237218,7.76641689801966,3.88461538461538,488.949735967143,25,5113,1,1,1,0,9 +"13599",2014,38059,"ND","38","059",29792,0.941729323308271,1808,0.133357948442535,7.49997654095212,8.17554759602103,9.05975001334368,3.20769230769231,241.396732723292,43,17813,1,1,1,0,9 +"13600",2014,38061,"ND","38","061",9755,0.698513582778063,810,0.128856996412096,6.69703424766648,7.07665381544395,7.84658997529119,1.26153846153846,446.20723847298,27,6051,1,1,1,0,9 +"13601",2014,38067,"ND","38","067",7067,0.964341304655441,335,0.179142493278619,5.81413053182507,6.56667242980324,7.53476265703754,5.48461538461538,554.29579239103,22,3969,1,1,1,0,9 +"13602",2014,38071,"ND","38","071",11619,0.886134779240899,753,0.143385833548498,6.62406522779989,7.06731984865348,8.06589354696427,3.48461538461538,336.185819070905,22,6544,1,1,1,0,9 +"13603",2014,38077,"ND","38","077",16363,0.950253620974149,1566,0.146122349202469,7.35627987655075,7.38956395367764,8.39931015075952,2.96153846153846,464.281945763427,44,9477,1,1,1,0,9 +"13604",2014,38079,"ND","38","079",14738,0.205658841091057,1010,0.10910571312254,6.9177056098353,7.36264527041782,8.29679586577005,11.1461538461538,797.120082283363,62,7778,1,1,1,0,9 +"13605",2014,38085,"ND","38","085",4467,0.134989926124916,358,0.0837250951421536,5.8805329864007,6.20253551718792,7.06731984865348,4.56923076923077,1073.42206955775,25,2329,1,1,1,0,9 +"13606",2014,38089,"ND","38","089",30345,0.947470753007085,2560,0.114944801449992,7.84776253747361,8.11282747875137,9.02425172861298,1.6,347.090406204241,64,18439,1,1,1,0,9 +"13607",2014,38093,"ND","38","093",21154,0.96085846648388,1560,0.151933440484069,7.35244110024358,7.74673290775362,8.67077227934454,2.68461538461538,345.631380114139,43,12441,1,1,1,0,9 +"13608",2014,38099,"ND","38","099",10907,0.96534335747685,574,0.152379206014486,6.35262939631957,6.99209642741589,7.9585769038139,4.50769230769231,369.499496137051,22,5954,1,1,1,0,9 +"13609",2014,38101,"ND","38","101",69587,0.90840243148864,8361,0.101038987167143,9.03133331615006,8.97246382105991,9.88032127450429,2.58461538461538,248.559747258874,107,43048,1,1,1,0,9 +"13610",2014,38105,"ND","38","105",32166,0.914506000124355,2745,0.115774420195237,7.91753635394363,8.24538446812075,9.06242024189956,1.15384615384615,291.775876563968,59,20221,1,1,1,0,9 +"13611",2014,31001,"NE","31","001",31400,0.96187898089172,2549,0.134044585987261,7.84345640437612,8.11790894238315,9.06184036365774,3.35384615384615,405.245680193617,72,17767,0,1,0,0,9 +"13612",2014,31013,"NE","31","013",11303,0.936653985667522,591,0.1638503052287,6.3818160174061,7.16549347506085,8.0532511535491,3.10769230769231,516.108852048796,33,6394,0,1,0,0,9 +"13613",2014,31019,"NE","31","019",48220,0.962878473662381,5631,0.114724180837827,8.63604232525462,8.59304250369967,9.55979934329461,2.73076923076923,184.720479576188,53,28692,0,1,0,0,9 +"13614",2014,31023,"NE","31","023",8175,0.984097859327217,398,0.145932721712538,5.98645200528444,6.75227037614174,7.6506445514369,2.93846153846154,271.677609237039,12,4417,0,1,0,0,9 +"13615",2014,31025,"NE","31","025",25401,0.979961418841778,1249,0.149403566788709,7.13009851012558,8.03883475778775,8.88225288488936,3.68461538461538,336.492240076913,49,14562,0,1,0,0,9 +"13616",2014,31033,"NE","31","033",10124,0.965725009877519,533,0.135815883050178,6.27852142416584,7.10249935577465,7.95331834656043,2.14615384615385,272.990957174544,16,5861,0,1,0,0,9 +"13617",2014,31037,"NE","31","037",10662,0.910617145000938,652,0.113111986494091,6.48004456192665,7.1276936993474,7.88382321489215,2.96923076923077,259.560477591279,15,5779,0,1,0,0,9 +"13618",2014,31041,"NE","31","041",10772,0.983290011139993,540,0.147697734868177,6.29156913955832,7.04141166379481,7.94165125293056,2.39230769230769,364.456785838251,21,5762,0,1,0,0,9 +"13619",2014,31043,"NE","31","043",20545,0.871112192747627,1489,0.11219274762716,7.30586003268401,7.78155595923534,8.63657494843632,3.70769230769231,327.1913208197,38,11614,0,1,0,0,9 +"13620",2014,31045,"NE","31","045",9030,0.902768549280177,1409,0.120487264673311,7.25063551189868,6.64639051484773,7.83636976054512,2.91538461538462,235.478806907378,12,5096,0,1,0,0,9 +"13621",2014,31047,"NE","31","047",23964,0.912869303955934,1539,0.121265231180103,7.33888813383888,7.94979721616185,8.74129628222515,3.43846153846154,319.173189452086,42,13159,0,1,0,0,9 +"13622",2014,31053,"NE","31","053",36607,0.962466194990029,2335,0.128718551096785,7.755767170103,8.32457884513685,9.204221690968,3.63076923076923,407.473663287617,82,20124,0,1,0,0,9 +"13623",2014,31055,"NE","31","055",543236,0.823673320619399,36453,0.115279547010876,10.5037790385767,11.1539192342644,12.0073289810395,3.59230769230769,318.38448220387,1039,326335,0,1,0,0,9 +"13624",2014,31067,"NE","31","067",21561,0.978850702657576,1151,0.149343722461852,7.04838640872188,7.76937860951398,8.69450220638665,4.10769230769231,540.810383559364,65,12019,0,1,0,0,9 +"13625",2014,31079,"NE","31","079",61103,0.927581297153986,3851,0.118013845474036,8.25608813381491,8.93102321585603,9.74190935688007,3.86923076923077,332.855093256815,116,34850,0,1,0,0,9 +"13626",2014,31081,"NE","31","081",9101,0.986814635754313,489,0.146247665091748,6.19236248947487,6.89972310728487,7.82084087990734,2.98461538461538,257.323832145685,13,5052,0,1,0,0,9 +"13627",2014,31089,"NE","31","089",10361,0.983495801563556,472,0.157706785059357,6.15697898558556,6.89467003943348,7.90248743716286,2.61538461538462,326.56023222061,18,5512,0,1,0,0,9 +"13628",2014,31095,"NE","31","095",7299,0.981093300452117,324,0.163173037402384,5.78074351579233,6.61606518513282,7.55903825544338,3.01538461538462,559.227249618709,22,3934,0,1,0,0,9 +"13629",2014,31101,"NE","31","101",8195,0.975960951799878,365,0.159121415497254,5.89989735358249,6.71659477352098,7.67786350067821,2.83846153846154,408.812173518056,18,4403,0,1,0,0,9 +"13630",2014,31107,"NE","31","107",8478,0.884524652040576,352,0.150743099787686,5.8636311755981,6.66695679242921,7.61677580869837,3.07692307692308,379.957254808834,16,4211,0,1,0,0,9 +"13631",2014,31109,"NE","31","109",302775,0.894763438196681,34839,0.114798117413921,10.4584927279139,10.5038064707849,11.4098844793437,2.96923076923077,264.469811341248,487,184142,0,1,0,0,9 +"13632",2014,31111,"NE","31","111",35661,0.965424413224531,1939,0.143069459633774,7.56992765524265,8.37562962709445,9.20964012686179,3.23076923076923,392.741735023614,79,20115,0,1,0,0,9 +"13633",2014,31119,"NE","31","119",35087,0.945364379969789,2511,0.134494257132271,7.82843635915759,8.23057721714645,9.19684978179368,2.93076923076923,254.821624862596,51,20014,0,1,0,0,9 +"13634",2014,31121,"NE","31","121",7791,0.975484533436016,404,0.141316904120139,6.00141487796115,6.75460409948796,7.64300363556072,3.73846153846154,394.248608534323,17,4312,0,1,0,0,9 +"13635",2014,31131,"NE","31","131",15781,0.976363982003675,859,0.140358659147076,6.75576892198425,7.48717369421374,8.36287583103188,3.67692307692308,371.445153801509,32,8615,0,1,0,0,9 +"13636",2014,31137,"NE","31","137",9162,0.982645710543549,521,0.130648330058939,6.25575004175337,6.86484777797086,7.77988511507052,2.56923076923077,303.459437588509,15,4943,0,1,0,0,9 +"13637",2014,31141,"NE","31","141",32744,0.963168824822868,2023,0.131902027852431,7.61233683716775,8.22040309993373,9.08307502093031,2.95384615384615,318.401405357927,58,18216,0,1,0,0,9 +"13638",2014,31145,"NE","31","145",10909,0.973233110275919,706,0.14410120084334,6.55961523749324,7.02464903045364,7.99091546309133,2.54615384615385,397.285217679192,24,6041,0,1,0,0,9 +"13639",2014,31147,"NE","31","147",8112,0.950936883629191,393,0.155202169625247,5.97380961186926,6.67959918584438,7.67415292128168,3.60769230769231,460.29919447641,20,4345,0,1,0,0,9 +"13640",2014,31151,"NE","31","151",14291,0.936813379049752,1186,0.119025960394654,7.07834157955767,7.42177579364465,8.24643378616036,3.40769230769231,337.373484943146,27,8003,0,1,0,0,9 +"13641",2014,31153,"NE","31","153",171942,0.911621360691396,10927,0.105111025811029,9.29899206957075,10.0944797438333,10.8402865450416,3.06153846153846,219.073047169165,224,102249,0,1,0,0,9 +"13642",2014,31155,"NE","31","155",20863,0.983463547907779,1064,0.139002061065043,6.96979066990159,7.73543335249969,8.65102453904976,3.44615384615385,379.244957765902,44,11602,0,1,0,0,9 +"13643",2014,31157,"NE","31","157",36467,0.941755559821208,2230,0.138563632873557,7.70975686445416,8.32482129876878,9.2340568985935,3.58461538461538,321.845910081204,65,20196,0,1,0,0,9 +"13644",2014,31159,"NE","31","159",17016,0.980018805829807,1453,0.128408556652562,7.28138566357028,7.50714107972761,8.42266270757,3.03846153846154,284.960422163588,27,9475,0,1,0,0,9 +"13645",2014,31173,"NE","31","173",6967,0.394143820869815,513,0.108224486866657,6.24027584517077,6.46458830368996,7.46393660446893,6.00769230769231,723.589001447178,25,3455,0,1,0,0,9 +"13646",2014,31177,"NE","31","177",19935,0.981840983195385,1016,0.146124905944319,6.92362862813843,7.75061473277041,8.64082575186151,3.2,285.467128027682,33,11560,0,1,0,0,9 +"13647",2014,31185,"NE","31","185",13922,0.966312311449504,962,0.138342192213762,6.86901445066571,7.25559127425367,8.27410200229233,3.14615384615385,424.382716049383,33,7776,0,1,0,0,9 +"13648",2014,34001,"NJ","34","001",272634,0.724847231086365,18964,0.138904171893454,9.85029772402201,10.3835343301095,11.3275231675644,10.5230769230769,381.553362439006,624,163542,1,1,1,0,9 +"13649",2014,34003,"NJ","34","003",923475,0.757821272909391,52645,0.134887246541596,10.8713265462909,11.7276658080197,12.550045255326,5.40769230769231,213.8770117918,1198,560135,1,1,1,0,9 +"13650",2014,34005,"NJ","34","005",449806,0.757121959244652,29705,0.135193839121755,10.2990706607898,10.9374190877299,11.8145696124381,6.43846153846154,335.337267663118,912,271965,1,1,1,0,9 +"13651",2014,34007,"NJ","34","007",508409,0.712194315993619,33477,0.129913121128855,10.4186139148538,11.0764649231595,11.9654204587075,7.69230769230769,379.953546775274,1168,307406,1,1,1,0,9 +"13652",2014,34009,"NJ","34","009",94961,0.928075736354925,5848,0.163593475216141,8.67385500142962,9.09380655572023,10.1959332608369,12.6153846153846,498.925534896758,267,53515,1,1,1,0,9 +"13653",2014,34011,"NJ","34","011",155887,0.731863465202358,10623,0.117264428720804,9.27077674078001,9.95337235546513,10.6790438693368,9.89230769230769,435.906054367464,415,95204,1,1,1,0,9 +"13654",2014,34013,"NJ","34","013",788796,0.501804015233343,54051,0.117903741905385,10.8976833242838,11.6212416084537,12.4196869373282,7.98461538461538,352.49614296204,1709,484828,1,1,1,0,9 +"13655",2014,34015,"NJ","34","015",290742,0.850001031842665,19518,0.134101712170928,9.87909239570141,10.5325760967954,11.4081314554841,7.30769230769231,356.958125628798,628,175931,1,1,1,0,9 +"13656",2014,34017,"NJ","34","017",660312,0.670115036528187,44914,0.103647972473619,10.7125048291385,11.5421638275269,12.2838620471847,6.33846153846154,220.737222065671,987,447138,1,1,1,0,9 +"13657",2014,34019,"NJ","34","019",125902,0.928015440580769,7430,0.164278565868692,8.9132811377118,9.5563385212508,10.5535967434045,4.85384615384615,261.711593823606,200,76420,1,1,1,0,9 +"13658",2014,34021,"NJ","34","021",369031,0.663063536667651,28944,0.126344399251011,10.2731182076351,10.7946450747713,11.6322805975677,5.83846153846154,302.215063850123,683,225998,1,1,1,0,9 +"13659",2014,34023,"NJ","34","023",824331,0.632771301819293,55906,0.124288665596708,10.9314269879092,11.6550324815951,12.4446169934204,6.08461538461538,224.93697886368,1160,515700,1,1,1,0,9 +"13660",2014,34025,"NJ","34","025",625581,0.858597048184008,37258,0.145266560205633,10.5256219658497,11.2307614732024,12.1509879623766,6.05384615384615,289.875942696833,1087,374988,1,1,1,0,9 +"13661",2014,34027,"NJ","34","027",494931,0.854579729295599,28086,0.137295905893953,10.2430265105281,11.0489516199815,11.9112115319854,5.00769230769231,211.603364225639,632,298672,1,1,1,0,9 +"13662",2014,34029,"NJ","34","029",584563,0.939084410063586,32793,0.128328341000029,10.3979703569619,11.0215919627822,11.9588989184159,7.36923076923077,382.95151768879,1180,308133,1,1,1,0,9 +"13663",2014,34031,"NJ","34","031",504483,0.76534194412894,37153,0.120237946571044,10.5227998005867,11.085965999397,11.9374870687694,8.2,295.74496113819,898,303640,1,1,1,0,9 +"13664",2014,34033,"NJ","34","033",64342,0.827670883715147,4046,0.142737247831898,8.30548401772769,8.93405972224884,9.86110183603969,8.47692307692308,492.545613431136,186,37763,1,1,1,0,9 +"13665",2014,34035,"NJ","34","035",329378,0.72457480463176,18064,0.136120202320738,9.80167628638944,10.7088914154417,11.5229351999995,5.2,204.074522042537,410,200907,1,1,1,0,9 +"13666",2014,34037,"NJ","34","037",144639,0.952004646049821,8933,0.158180020603019,9.09750756370184,9.76025208444937,10.6994845997105,6.39230769230769,311.870207951001,277,88819,1,1,1,0,9 +"13667",2014,34039,"NJ","34","039",548052,0.693271806324947,34505,0.12283141015816,10.4488595200547,11.2429654255061,12.0301704405384,6.91538461538462,255.244286076365,856,335365,1,1,1,0,9 +"13668",2014,34041,"NJ","34","041",107022,0.919175496626862,6740,0.145016912410532,8.81581520390635,9.45993109330524,10.3888722838202,6.30769230769231,298.900418150844,193,64570,1,1,1,0,9 +"13669",2014,35001,"NM","35","001",676120,0.862271490268,48313,0.126884280896882,10.7854559545647,11.3424573774073,12.2405513639464,6.10769230769231,392.205857855386,1601,408204,1,1,1,0,9 +"13670",2014,35005,"NM","35","005",65839,0.93317030939109,4695,0.119442883397378,8.45425339164236,8.88419463307227,9.80780230240172,6.03076923076923,498.035526534226,180,36142,1,1,1,0,9 +"13671",2014,35006,"NM","35","006",27156,0.539586095153925,1893,0.129547797908381,7.54591815120932,8.12058871174027,8.93392789178263,8.50769230769231,521.739130434783,84,16100,1,1,1,0,9 +"13672",2014,35007,"NM","35","007",12703,0.950247972919783,697,0.16704715421554,6.54678541076052,7.08924315502751,8.12385426310591,6.21538461538462,529.327610872675,37,6990,1,1,1,0,9 +"13673",2014,35009,"NM","35","009",51153,0.877094207573358,5084,0.0973940922331046,8.53385363230935,8.65329627440858,9.549024446394,4.98461538461538,337.702287013508,101,29908,1,1,1,0,9 +"13674",2014,35013,"NM","35","013",213938,0.931022071815199,23951,0.108433284409502,10.0837653556208,10.038499099192,11.0283197421803,7.2,326.737914833074,395,120892,1,1,1,0,9 +"13675",2014,35015,"NM","35","015",56720,0.941713681241185,3905,0.126657263751763,8.27001306227379,8.78063379949498,9.67010425349173,4.36923076923077,510.361892978658,165,32330,1,1,1,0,9 +"13676",2014,35017,"NM","35","017",28876,0.946945560326915,1659,0.157189361407397,7.41397029019044,7.94129557090653,8.96123778149188,6.51538461538462,582.651391162029,89,15275,1,1,1,0,9 +"13677",2014,35025,"NM","35","025",70178,0.924463507081992,5173,0.102767248995412,8.55120807000351,9.04369529456724,9.83825545759851,4.33846153846154,450.826938175924,178,39483,1,1,1,0,9 +"13678",2014,35027,"NM","35","027",19610,0.937735849056604,916,0.177562468128506,6.82001636467413,7.45066079621154,8.59192953753026,5.93076923076923,589.746028726339,62,10513,1,1,1,0,9 +"13679",2014,35028,"NM","35","028",17830,0.90179472798654,745,0.158440830061694,6.61338421837956,7.66715825531915,8.52277756971014,4.08461538461538,137.22799451088,14,10202,1,1,1,0,9 +"13680",2014,35029,"NM","35","029",24430,0.945804338927548,1671,0.115186246418338,7.42117752859539,7.7931743471892,8.72436994920837,17.9692307692308,473.173470206111,59,12469,1,1,1,0,9 +"13681",2014,35031,"NM","35","031",72814,0.185252835993078,6082,0.109182300107122,8.71308886823731,9.02773877597491,9.96213374796886,10.0076923076923,676.639037239313,280,41381,1,1,1,0,9 +"13682",2014,35035,"NM","35","035",65394,0.851408386090467,5701,0.118267730984494,8.64839687703158,8.88002911746844,9.79473239269909,6.17692307692308,482.609867888919,179,37090,1,1,1,0,9 +"13683",2014,35037,"NM","35","037",8467,0.936341088933507,433,0.155663162867604,6.07073772800249,6.71052310945243,7.7510451179718,6.50769230769231,553.464688952845,25,4517,1,1,1,0,9 +"13684",2014,35039,"NM","35","039",39726,0.786386749232241,2508,0.142551477621709,7.82724090175281,8.42814337458273,9.33441468707811,8.65384615384615,796.777477756629,180,22591,1,1,1,0,9 +"13685",2014,35041,"NM","35","041",19659,0.927615850246706,2611,0.10198891093138,7.86748856869913,7.63482067774554,8.63533171943328,5.46923076923077,345.224395857307,39,11297,1,1,1,0,9 +"13686",2014,35043,"NM","35","043",137076,0.802970614841402,7893,0.135800577781669,8.9737315697084,9.77098420272304,10.6113016461395,7.07692307692308,400.120791182244,318,79476,1,1,1,0,9 +"13687",2014,35045,"NM","35","045",129143,0.568648707247005,8931,0.123034155935668,9.09728364968389,9.64231757462446,10.5198616742902,6.31538461538462,460.887949260042,327,70950,1,1,1,0,9 +"13688",2014,35047,"NM","35","047",28501,0.926634153187607,2117,0.149222834286516,7.65775527113487,8.00302866638473,9.01091334727929,8.03076923076923,632.71886597311,104,16437,1,1,1,0,9 +"13689",2014,35049,"NM","35","049",147876,0.921826395087776,8132,0.16416457031567,9.00356217474824,9.76203918895175,10.6979269845779,5.38461538461539,365.542451203531,318,86994,1,1,1,0,9 +"13690",2014,35051,"NM","35","051",11277,0.951494191717655,474,0.176908752327747,6.16120732169508,6.70441435496411,7.94873845481361,9.11538461538461,878.608570916263,49,5577,1,1,1,0,9 +"13691",2014,35053,"NM","35","053",17255,0.821848739495798,1356,0.136540133294697,7.21229446850034,7.49331724886215,8.47365918939251,7.27692307692308,577.736510884143,56,9693,1,1,1,0,9 +"13692",2014,35055,"NM","35","055",32967,0.891588558255225,1611,0.169957836624503,7.38461038317697,8.2147358333823,9.16628398577926,9.79230769230769,469.108161415854,88,18759,1,1,1,0,9 +"13693",2014,35057,"NM","35","057",15662,0.917060400970502,951,0.160196654322564,6.85751406254539,7.46622755621548,8.34498036877057,9.67692307692308,704.067948144837,63,8948,1,1,1,0,9 +"13694",2014,35061,"NM","35","061",75892,0.907368365572129,4990,0.134506930901808,8.51519118874556,9.09773142759353,9.98068004836603,7.76153846153846,452.353616532721,197,43550,1,1,1,0,9 +"13695",2014,32001,"NV","32","001",23864,0.874748575259806,1470,0.134847468990949,7.29301767977278,7.84932381804056,8.80447518384668,8.02307692307692,436.067997043607,59,13530,1,1,1,0,9 +"13696",2014,32003,"NV","32","003",2053929,0.741651731875834,136318,0.115088204120006,11.822745670594,12.5764044091345,13.3332950665301,8.23076923076923,355.2001428453,4456,1254504,1,1,1,0,9 +"13697",2014,32005,"NV","32","005",47406,0.939438045816985,2174,0.176412268489221,7.68432406768116,8.43381158247719,9.49197922088068,8.26923076923077,364.741641337386,96,26320,1,1,1,0,9 +"13698",2014,32007,"NV","32","007",52616,0.899555268359434,3615,0.119868481070397,8.19284713459287,8.81239690526686,9.61059191303146,5.8,283.974379200454,90,31693,1,1,1,0,9 +"13699",2014,32013,"NV","32","013",17230,0.917063261752757,1076,0.133372025536854,6.98100574072173,7.66996199547358,8.46294817656384,6.70769230769231,513.864649990304,53,10314,1,1,1,0,9 +"13700",2014,32015,"NV","32","015",5980,0.911705685618729,367,0.125585284280936,5.90536184805457,6.48463523563525,7.40488757561612,6.92307692307692,462.695199537305,16,3458,1,1,1,0,9 +"13701",2014,32019,"NV","32","019",51359,0.921260149146206,2528,0.149594034151755,7.83518375526675,8.65851912750667,9.56099724358935,10.7,540.54054054054,156,28860,1,1,1,0,9 +"13702",2014,32021,"NV","32","021",4473,0.731052984574111,228,0.163648558014755,5.42934562895444,5.92692602597041,7.10496544826984,11.1846153846154,413.736036408771,10,2417,1,1,1,0,9 +"13703",2014,32023,"NV","32","023",42877,0.916062224502647,2104,0.170604286680505,7.6515955738576,8.2537483433285,9.31298720893633,9.99230769230769,835.66717860692,185,22138,1,1,1,0,9 +"13704",2014,32031,"NV","32","031",436515,0.872941365130637,30949,0.132274950459893,10.3400959674131,10.8849478563934,11.7819215364665,7.80769230769231,373.463782654599,994,266157,1,1,1,0,9 +"13705",2014,32033,"NV","32","033",10041,0.882183049497062,650,0.133652026690569,6.47697236288968,7.13409372119287,7.7553388128465,6.27692307692308,422.14645234616,26,6159,1,1,1,0,9 +"13706",2014,32510,"NV","32","510",54112,0.912921348314607,3433,0.143110585452395,8.14118979345769,8.72826416149618,9.60150369537349,8.9,457.687572993277,145,31681,1,1,1,0,9 +"13707",2014,36001,"NY","36","001",307246,0.788908561868991,32475,0.131409359275629,10.3882258415388,10.4513199019312,11.4725512868319,4.91538461538462,288.695486955925,547,189473,1,1,1,0,9 +"13708",2014,36003,"NY","36","003",47671,0.967044953955235,4376,0.13935096809381,8.38389034410182,8.48694014824522,9.49311040006694,6.26153846153846,326.821659362698,88,26926,1,1,1,0,9 +"13709",2014,36005,"NY","36","005",1430474,0.458096407204885,122549,0.103699892483191,11.7162662289882,12.1095011706275,13.0348056693849,9.53846153846154,334.957825031762,2908,868169,1,1,1,0,9 +"13710",2014,36007,"NY","36","007",197295,0.888572949137079,19700,0.136465698573203,9.88837391472608,9.90013192872277,10.9612952076444,6.7,375.878129077414,435,115729,1,1,1,0,9 +"13711",2014,36009,"NY","36","009",78690,0.934794764264837,5135,0.148392425975346,8.54383512236266,9.05986625862135,10.0220258584597,7.05384615384615,366.332896694123,165,45041,1,1,1,0,9 +"13712",2014,36011,"NY","36","011",78782,0.937612652636389,5086,0.146721332284024,8.53424694598207,9.12303804357339,10.0135071975747,6.03846153846154,316.783172477878,150,47351,1,1,1,0,9 +"13713",2014,36013,"NY","36","013",131792,0.95074814859779,9282,0.146753975962122,9.13583231980112,9.55300766526031,10.535291102855,6.86923076923077,407.583686134266,310,76058,1,1,1,0,9 +"13714",2014,36015,"NY","36","015",87239,0.901855821364298,5705,0.142207040429166,8.64909826229618,9.21483027724904,10.1321359244848,6.31538461538462,395.916624616698,204,51526,1,1,1,0,9 +"13715",2014,36017,"NY","36","017",49339,0.976894545896755,2942,0.151969030584325,7.98684490116138,8.62011072542292,9.55201334699657,6.26153846153846,368.731563421829,105,28476,1,1,1,0,9 +"13716",2014,36019,"NY","36","019",81497,0.932365608550008,8109,0.134839319238745,9.00072983494456,9.17512761622044,10.0807546905828,6.66153846153846,317.118527943623,162,51085,1,1,1,0,9 +"13717",2014,36021,"NY","36","021",61956,0.917505971980115,3571,0.162453999612628,8.18060094759445,8.81328976246904,9.79629202093257,4.75384615384615,403.668717047452,147,36416,1,1,1,0,9 +"13718",2014,36023,"NY","36","023",48747,0.960736045295095,6059,0.124869222721398,8.70930004894499,8.5358186555394,9.5959428509881,6.56153846153846,322.802197802198,94,29120,1,1,1,0,9 +"13719",2014,36025,"NY","36","025",46567,0.963557884338695,3065,0.160736143621019,8.02780284837031,8.42704964156327,9.45977525724446,6.63076923076923,382.921692513881,100,26115,1,1,1,0,9 +"13720",2014,36027,"NY","36","027",295162,0.835161707807916,22752,0.139957040540449,10.032408332603,10.4574014009819,11.3887105389831,5.36153846153846,298.60355660147,538,180172,1,1,1,0,9 +"13721",2014,36029,"NY","36","029",921934,0.813284898919012,66961,0.139331015018429,11.111865639341,11.5364173569841,12.5460209763865,6.14615384615385,374.728660331495,2075,553734,1,1,1,0,9 +"13722",2014,36031,"NY","36","031",38333,0.951947408238332,2107,0.160384003339159,7.65302041380419,8.3959291039232,9.26823185039196,6.93846153846154,399.478940512375,92,23030,1,1,1,0,9 +"13723",2014,36033,"NY","36","033",51110,0.850205439248679,3850,0.134768147133633,8.25582842728183,8.74576199937551,9.50561852104959,7.30769230769231,337.542192774097,108,31996,1,1,1,0,9 +"13724",2014,36035,"NY","36","035",53940,0.96551724137931,3236,0.143882091212458,8.08209327817838,8.76997321185875,9.66997795897274,7.70769230769231,416.575312431484,133,31927,1,1,1,0,9 +"13725",2014,36037,"NY","36","037",58745,0.944267597242318,3838,0.146208187930888,8.25270667656764,8.79588497202989,9.75056944611141,5.60769230769231,309.623906374276,109,35204,1,1,1,0,9 +"13726",2014,36039,"NY","36","039",47963,0.914454892312825,3344,0.155182119550487,8.11492297420459,8.5991417740634,9.50069387298312,6.8,437.682367653189,126,28788,1,1,1,0,9 +"13727",2014,36043,"NY","36","043",63393,0.974934140993485,4020,0.147902765289543,8.29903718161307,8.84246002419529,9.81257767717629,6.82307692307692,371.747211895911,136,36584,1,1,1,0,9 +"13728",2014,36045,"NY","36","045",118121,0.896555227266955,12573,0.101666934753346,9.43930693659318,9.51192534959696,10.3982142817124,7.67692307692308,269.799103436826,195,72276,1,1,1,0,9 +"13729",2014,36047,"NY","36","047",2601527,0.502503721852589,186346,0.109627153590949,12.1353604396918,12.7878244706959,13.6550166355785,7.44615384615385,254.517331083456,4163,1635645,1,1,1,0,9 +"13730",2014,36049,"NY","36","049",27085,0.980505815026768,1619,0.145504892006646,7.38956395367764,8.0375431851187,8.94049821765273,7.9,313.199105145414,49,15645,1,1,1,0,9 +"13731",2014,36051,"NY","36","051",64574,0.947161396227584,6704,0.141124910954873,8.81045964216192,8.84260448067803,9.84934810643548,5.83076923076923,290.011292475105,113,38964,1,1,1,0,9 +"13732",2014,36053,"NY","36","053",72251,0.960305047681001,5931,0.145672724252952,8.68794811183873,8.95027346655738,9.96852594871535,6.46153846153846,347.48309541698,148,42592,1,1,1,0,9 +"13733",2014,36055,"NY","36","055",747583,0.787012278235326,56491,0.132472247228736,10.9418366124108,11.3461268022296,12.3460302209419,5.83846153846154,306.669903366688,1377,449017,1,1,1,0,9 +"13734",2014,36057,"NY","36","057",49689,0.951780072048139,3034,0.141781883314214,8.01763715990848,8.65712903171375,9.5733154284634,7.52307692307692,321.060896876636,92,28655,1,1,1,0,9 +"13735",2014,36059,"NY","36","059",1354851,0.771639095369159,86086,0.137658679810547,11.3631020755687,12.008298307129,12.9148470819758,4.81538461538462,236.115850510793,1889,800031,1,1,1,0,9 +"13736",2014,36061,"NY","36","061",1631733,0.664229993509968,118664,0.112838926466524,11.6840512490034,12.3767179662864,13.2689921240041,5.96153846153846,192.002931179533,2159,1124462,1,1,1,0,9 +"13737",2014,36063,"NY","36","063",213331,0.896433242238587,14134,0.150507896180114,9.5563385212508,10.0862673376608,11.0762328130455,7.06923076923077,416.327552745258,532,127784,1,1,1,0,9 +"13738",2014,36065,"NY","36","065",232634,0.882003490461411,16548,0.135968946929512,9.7140205275813,10.170954162487,11.1020055061791,6.14615384615385,365.521806280797,497,135970,1,1,1,0,9 +"13739",2014,36067,"NY","36","067",467472,0.82257760892631,34213,0.134527843378855,10.4403609677836,10.8687589066319,11.8673358467225,5.6,330.009274770467,918,278174,1,1,1,0,9 +"13740",2014,36069,"NY","36","069",109378,0.951068770685147,7414,0.149216478633729,8.91112538371068,9.40491982616564,10.382760587789,5.27692307692308,303.19049692145,195,64316,1,1,1,0,9 +"13741",2014,36071,"NY","36","071",374945,0.833212871221112,28790,0.122367280534478,10.2677833836062,10.7410164227698,11.5924665083697,5.53846153846154,297.612265453733,653,219413,1,1,1,0,9 +"13742",2014,36073,"NY","36","073",41864,0.914389451557424,3001,0.14344066501051,8.00670084544037,8.48570252432487,9.44683440765853,7.72307692307692,397.691827822832,102,25648,1,1,1,0,9 +"13743",2014,36075,"NY","36","075",120611,0.973476714395868,9608,0.137549643067382,9.17035136375982,9.51155545871055,10.486038311754,8.12307692307692,395.968817455625,288,72733,1,1,1,0,9 +"13744",2014,36077,"NY","36","077",60973,0.956013317369983,6909,0.145982648057337,8.8405801884888,8.66250492257629,9.80466119822923,5.76153846153846,337.066131817929,121,35898,1,1,1,0,9 +"13745",2014,36079,"NY","36","079",99407,0.936855553431851,5997,0.14875209995272,8.69901462316851,9.40244722950493,10.3117819876545,4.96923076923077,227.924899565467,139,60985,1,1,1,0,9 +"13746",2014,36081,"NY","36","081",2298234,0.500883722023084,154759,0.123584891703804,11.9496243471756,12.6923309488564,13.520262602935,6.2,218.81351754347,3249,1484826,1,1,1,0,9 +"13747",2014,36083,"NY","36","083",159719,0.887846780908971,11732,0.140164914631321,9.37007543009734,9.84139936022271,10.8015124756034,5.4,340.299422615094,333,97855,1,1,1,0,9 +"13748",2014,36085,"NY","36","085",471899,0.784466591368068,31923,0.132827151572688,10.3710820321098,11.0254582307815,11.8995135173087,7.25384615384615,307.298068709765,885,287994,1,1,1,0,9 +"13749",2014,36087,"NY","36","087",321120,0.789549078226208,21534,0.119678001993024,9.97738836037566,10.4909686151911,11.3939054145264,5.19230769230769,200.23689999436,355,177290,1,1,1,0,9 +"13750",2014,36089,"NY","36","089",111476,0.947477483942732,10468,0.130691808102192,9.25607826365004,9.42205890562093,10.351117752805,7.80769230769231,309.498399146211,203,65590,1,1,1,0,9 +"13751",2014,36091,"NY","36","091",224605,0.949413414661294,13420,0.140103737672803,9.50450141052567,10.2794551898553,11.1271453301785,4.68461538461538,262.675177929415,358,136290,1,1,1,0,9 +"13752",2014,36093,"NY","36","093",155050,0.81736214124476,10501,0.134679135762657,9.25922576970599,9.84246285069835,10.7560074685116,5.40769230769231,353.665505752456,328,92743,1,1,1,0,9 +"13753",2014,36095,"NY","36","095",31768,0.970693779904306,2231,0.155219088390834,7.71020519443253,8.13622555490846,9.12336535796178,6.76153846153846,347.769385426289,64,18403,1,1,1,0,9 +"13754",2014,36097,"NY","36","097",18184,0.97778266608007,1042,0.163440387153542,6.94889722231331,7.62997570702779,8.58802437217683,7.07692307692308,357.568533969011,39,10907,1,1,1,0,9 +"13755",2014,36099,"NY","36","099",34891,0.930297211315239,2501,0.146800034392823,7.82444593087762,8.27001306227379,9.16461052027001,5.69230769230769,328.211958331351,69,21023,1,1,1,0,9 +"13756",2014,36101,"NY","36","101",98153,0.961682271555633,5854,0.146424459771989,8.67488046725183,9.32981087195235,10.2439162377965,6.94615384615385,438.473410972359,250,57016,1,1,1,0,9 +"13757",2014,36103,"NY","36","103",1495553,0.862412097732411,99230,0.131299258535137,11.5051956669083,12.1397992870989,13.012302945534,5.42307692307692,279.919680053695,2519,899901,1,1,1,0,9 +"13758",2014,36105,"NY","36","105",75651,0.866465744008671,4678,0.146990786638643,8.45062594714412,9.07257144223129,9.97683094676034,6.64615384615385,439.511653718091,198,45050,1,1,1,0,9 +"13759",2014,36107,"NY","36","107",49855,0.977554909236787,2780,0.151158359241801,7.93020620668468,8.61794309451638,9.57595523548439,6.14615384615385,418.7430786268,121,28896,1,1,1,0,9 +"13760",2014,36109,"NY","36","109",103530,0.838520235680479,19072,0.11371583116005,9.85597656986508,9.2342521920225,10.4072281365789,4.43846153846154,198.813145766184,132,66394,1,1,1,0,9 +"13761",2014,36111,"NY","36","111",180435,0.895674342561033,12559,0.14974367500762,9.43819281901813,9.97287368002114,10.90084200913,5.75384615384615,348.378456638193,385,110512,1,1,1,0,9 +"13762",2014,36113,"NY","36","113",64893,0.972785970751853,3855,0.154993604857227,8.25712628599743,8.88530251298063,9.87503663636211,6.65384615384615,353.632534193146,136,38458,1,1,1,0,9 +"13763",2014,36115,"NY","36","115",62504,0.954786893638807,3909,0.146134647382568,8.27103686579295,8.9387940814338,9.78425346461243,6.13076923076923,338.266384778013,128,37840,1,1,1,0,9 +"13764",2014,36117,"NY","36","117",91819,0.951796469140374,5532,0.148607586665069,8.61830469278465,9.26558584620216,10.2076948285701,6.22307692307692,332.24420867139,181,54478,1,1,1,0,9 +"13765",2014,36119,"NY","36","119",967180,0.756245993506896,58864,0.129608759486342,10.9829849773446,11.7433464712547,12.5795103067996,5.19230769230769,218.457087786867,1249,571737,1,1,1,0,9 +"13766",2014,36121,"NY","36","121",41145,0.927062826588893,2566,0.144148742253008,7.85010354517558,8.57546209954021,9.3101857069459,6.56923076923077,314.344859311508,82,26086,1,1,1,0,9 +"13767",2014,36123,"NY","36","123",25162,0.976512200937922,1984,0.149511167633733,7.59287028784482,7.77611547709874,8.87598589132597,5.7,361.297781631621,50,13839,1,1,1,0,9 +"13768",2014,39001,"OH","39","001",28060,0.983499643620813,1578,0.139558089807555,7.36391350140582,8.17357548663415,8.99652814809086,9.16923076923077,538.240080110151,86,15978,1,1,1,0,9 +"13769",2014,39003,"OH","39","003",104886,0.849531872699884,8036,0.136252693400454,8.99168672593482,9.40335455830888,10.2827113494391,5.8,393.843517236833,239,60684,1,1,1,0,9 +"13770",2014,39005,"OH","39","005",53169,0.978765822189622,3739,0.138539374447516,8.22657347497711,8.68879078484722,9.62152244041358,5.96153846153846,389.444705566373,116,29786,1,1,1,0,9 +"13771",2014,39007,"OH","39","007",99064,0.945136477428733,5839,0.145744165388032,8.67231482828354,9.36297561839978,10.2370269210727,7.15384615384615,544.669891762085,313,57466,1,1,1,0,9 +"13772",2014,39009,"OH","39","009",64833,0.927274690358305,12025,0.109527555411596,9.39474309497396,8.76280248744611,9.90228683195961,6.9,318.611832753296,130,40802,1,1,1,0,9 +"13773",2014,39011,"OH","39","011",45756,0.982450389020019,2723,0.141686336218201,7.90948949267376,8.57904059474232,9.45493225449626,4.32307692307692,323.9241092087,84,25932,1,1,1,0,9 +"13774",2014,39013,"OH","39","013",69403,0.94595334495627,4417,0.155843407345504,8.39321601159653,9.01833204959268,9.87950218978562,6.71538461538462,455.177039911839,190,41742,1,1,1,0,9 +"13775",2014,39015,"OH","39","015",43950,0.981433447098976,2509,0.14,7.82763954636642,8.61830469278465,9.44628168152025,7.43846153846154,527.081776344255,134,25423,1,1,1,0,9 +"13776",2014,39017,"OH","39","017",373877,0.875207621757958,32300,0.126279498337689,10.3828225092107,10.7337191811368,11.6235451270422,5.55384615384615,405.594025305442,895,220664,1,1,1,0,9 +"13777",2014,39019,"OH","39","019",28144,0.983122512791359,1503,0.15466884593519,7.31521838975297,8.09742629859721,8.97537724385663,6.13846153846154,511.477045908184,82,16032,1,1,1,0,9 +"13778",2014,39021,"OH","39","021",39089,0.958504950241756,2401,0.136764818746962,7.78364059622125,8.46379241468912,9.32250766884693,5.05384615384615,463.313583106874,104,22447,1,1,1,0,9 +"13779",2014,39023,"OH","39","023",136364,0.883392977618726,8675,0.140073626470329,9.06820060481506,9.65226597708712,10.587013598052,5.78461538461538,547.280377933242,424,77474,1,1,1,0,9 +"13780",2014,39025,"OH","39","025",201516,0.966350066495961,11956,0.139964072331726,9.38898852340383,10.1553351719787,11.0114724474509,5.46923076923077,418.83076411684,504,120335,1,1,1,0,9 +"13781",2014,39027,"OH","39","027",41824,0.959831675592961,2785,0.139704475899005,7.93200315236138,8.51819269174932,9.41319957998769,7.70769230769231,524.165256510793,127,24229,1,1,1,0,9 +"13782",2014,39029,"OH","39","029",105681,0.963900795791107,5935,0.153849793245711,8.68862230704377,9.47339670460156,10.3025991866721,6.46923076923077,472.668810289389,294,62200,1,1,1,0,9 +"13783",2014,39031,"OH","39","031",36530,0.976320832192718,2097,0.144483985765125,7.64826303090192,8.33758794211651,9.24898399556839,7.5,425.387924783681,88,20687,1,1,1,0,9 +"13784",2014,39033,"OH","39","033",42406,0.978328538414375,2507,0.143399518936,7.82684209815829,8.53168763756669,9.39590665893503,6.7,488.823898057238,117,23935,1,1,1,0,9 +"13785",2014,39035,"OH","39","035",1263498,0.651157342552184,85947,0.141070266830656,11.3614861061879,11.8965743197975,12.8728886843437,6.26153846153846,423.227244370744,3175,750188,1,1,1,0,9 +"13786",2014,39037,"OH","39","037",52203,0.983794034825585,2973,0.136007509146984,7.9973268229981,8.70533113353163,9.56794488373285,5.33076923076923,389.931413849528,112,28723,1,1,1,0,9 +"13787",2014,39039,"OH","39","039",38547,0.964147663890835,2464,0.14307209380756,7.80954132465341,8.42726848388825,9.30127736696828,5.5,396.626396170504,87,21935,1,1,1,0,9 +"13788",2014,39041,"OH","39","041",189649,0.900294755047482,9542,0.118703499622988,9.16345838607605,10.3071844315816,10.9332855252039,4.12307692307692,213.673279069978,236,110449,1,1,1,0,9 +"13789",2014,39043,"OH","39","043",75833,0.884008281355083,4571,0.153838038848522,8.42748727833174,9.01711963431323,10.0032423856731,6.43846153846154,461.169525917727,200,43368,1,1,1,0,9 +"13790",2014,39045,"OH","39","045",150400,0.90311170212766,9232,0.127692819148936,9.13043098874788,9.90438714777896,10.6883247315807,5.19230769230769,295.861341918224,261,88217,1,1,1,0,9 +"13791",2014,39047,"OH","39","047",28652,0.957001256456792,1697,0.136046349294988,7.43661726523423,8.17807746384961,9.03013657115323,5.99230769230769,557.508180826566,92,16502,1,1,1,0,9 +"13792",2014,39049,"OH","39","049",1238758,0.706711883999942,94775,0.112243876527942,11.4592609403845,12.0139552659461,12.8887729469773,4.88461538461538,350.181698050875,2703,771885,1,1,1,0,9 +"13793",2014,39051,"OH","39","051",42401,0.980259899530671,2493,0.146529562982005,7.82124208352356,8.51619269108265,9.41605288156071,5.9,378.118449714356,92,24331,1,1,1,0,9 +"13794",2014,39053,"OH","39","053",30467,0.95716677060426,1896,0.141497357796961,7.54750168281497,8.17159948034546,9.07555104562754,7.7,563.412671035989,98,17394,1,1,1,0,9 +"13795",2014,39055,"OH","39","055",93981,0.975718496291804,5259,0.155861291112033,8.56769617358934,9.20923976653215,10.1711837308994,5.03846153846154,251.482981705093,131,52091,1,1,1,0,9 +"13796",2014,39057,"OH","39","057",164796,0.880828418165489,14936,0.133644020485934,9.61152968522156,9.8034461983559,10.8107577211892,5.23846153846154,315.724941248595,309,97870,1,1,1,0,9 +"13797",2014,39059,"OH","39","059",39699,0.969067230912617,2308,0.144965868157888,7.74413662762799,8.43879912398823,9.34154405759153,6.73076923076923,519.06919456297,118,22733,1,1,1,0,9 +"13798",2014,39061,"OH","39","061",807922,0.697379202447761,56751,0.131178504855667,10.9464285563338,11.4529631237975,12.4249551313857,5.46153846153846,436.118483343589,2105,482667,1,1,1,0,9 +"13799",2014,39063,"OH","39","063",75324,0.953255270564495,5121,0.134021029154054,8.54110501146255,9.08591029359801,10.0036948129532,4.43846153846154,351.442046072919,155,44104,1,1,1,0,9 +"13800",2014,39065,"OH","39","065",31780,0.975928256765261,3586,0.12076777847703,8.18479265416508,8.18896686364888,9.11635930850529,5.72307692307692,416.324294713777,76,18255,1,1,1,0,9 +"13801",2014,39067,"OH","39","067",15517,0.967390603853838,833,0.168782625507508,6.72503364216684,7.45414107814668,8.39886000445437,6.04615384615385,616.868550919695,55,8916,1,1,1,0,9 +"13802",2014,39069,"OH","39","069",27605,0.979641369317153,1591,0.142836442673429,7.37211802833779,8.09407314806935,8.96648377906443,6.47692307692308,387.818678873419,61,15729,1,1,1,0,9 +"13803",2014,39071,"OH","39","071",43102,0.971579045055914,2478,0.135167741636119,7.81520706218909,8.579980179515,9.42157327226456,7.76153846153846,529.665366454527,129,24355,1,1,1,0,9 +"13804",2014,39073,"OH","39","073",28749,0.982990712720442,1597,0.143935441232739,7.37588214821501,8.1758290087146,9.02364928266429,6.46923076923077,447.67090139141,74,16530,1,1,1,0,9 +"13805",2014,39075,"OH","39","075",43791,0.991368089333425,3148,0.103377406316366,8.05452260953729,8.47803647621504,9.32821229257107,4.02307692307692,291.442197297536,66,22646,1,1,1,0,9 +"13806",2014,39077,"OH","39","077",58626,0.972998328386723,3519,0.137294033364036,8.16593213732158,8.88225288488936,9.73731489748154,8,439.495174461767,148,33675,1,1,1,0,9 +"13807",2014,39079,"OH","39","079",32772,0.980959355547419,1924,0.139906017331869,7.56216163122565,8.33134542484572,9.16649297219591,8.80769230769231,672.410170203824,128,19036,1,1,1,0,9 +"13808",2014,39081,"OH","39","081",67916,0.92897108192473,4679,0.15790093645091,8.45083969086622,8.9270486478257,9.90033258084283,8.12307692307692,605.644196758022,238,39297,1,1,1,0,9 +"13809",2014,39083,"OH","39","083",61035,0.976685508314901,4954,0.136249692799214,8.5079506100493,8.82010864450861,9.77417581605579,5.3,383.274257226017,133,34701,1,1,1,0,9 +"13810",2014,39085,"OH","39","085",229865,0.938555238944598,13169,0.150388271376678,9.48562086171022,10.207252105818,11.1276893638337,5.52307692307692,361.422582986476,488,135022,1,1,1,0,9 +"13811",2014,39087,"OH","39","087",61599,0.965973473595351,3631,0.137291189792042,8.19726337141434,8.96610085736724,9.8114819067401,6.67692307692308,589.872008903728,212,35940,1,1,1,0,9 +"13812",2014,39089,"OH","39","089",169506,0.940892947742263,10907,0.135027668637098,9.29716006392874,9.96043483297788,10.8244672738964,5.25384615384615,379.289767267799,375,98869,1,1,1,0,9 +"13813",2014,39091,"OH","39","091",45477,0.960177672229918,2625,0.143479121314071,7.87283617502572,8.61195776786066,9.47990938900104,5.03076923076923,379.455730164814,99,26090,1,1,1,0,9 +"13814",2014,39093,"OH","39","093",304551,0.880791722896986,19015,0.14093534416239,9.85298342036236,10.5459465187686,11.3940856210887,6.46923076923077,397.190329769528,704,177245,1,1,1,0,9 +"13815",2014,39095,"OH","39","095",434736,0.763921092341099,32268,0.135116484487137,10.3818313060569,10.8502880906149,11.7941567759265,6.4,462.551834377099,1198,258998,1,1,1,0,9 +"13816",2014,39097,"OH","39","097",43988,0.913771937801218,2721,0.128739656269892,7.90875473878325,8.78094111357239,9.35927748475055,4.74615384615385,331.270476883873,91,27470,1,1,1,0,9 +"13817",2014,39099,"OH","39","099",233472,0.816834566885965,15336,0.15392852247807,9.63795828472548,10.1891175208618,11.1259974778605,6.73076923076923,469.095126581811,635,135367,1,1,1,0,9 +"13818",2014,39101,"OH","39","101",65822,0.918173255142657,4396,0.138251648385038,8.38845031552351,9.03384182848502,9.77525637463905,5.99230769230769,503.091132080194,201,39953,1,1,1,0,9 +"13819",2014,39103,"OH","39","103",175898,0.96791322243573,9672,0.139995906718666,9.17699039229463,10.0388921895423,10.8622437277285,5.06153846153846,280.673228613184,290,103323,1,1,1,0,9 +"13820",2014,39105,"OH","39","105",23285,0.981833798582779,1252,0.15001073652566,7.13249755166004,7.96241568012106,8.81996090128606,9.00769230769231,645.445210503154,88,13634,1,1,1,0,9 +"13821",2014,39107,"OH","39","107",40739,0.981148285426741,2548,0.142958835513881,7.84306401669205,8.39072252736229,9.31163262345805,3.80769230769231,409.980603068242,93,22684,1,1,1,0,9 +"13822",2014,39109,"OH","39","109",103876,0.952674342485271,5821,0.139464361353922,8.66922734727174,9.45704418769941,10.3069840575494,5.4,383.944738783448,229,59644,1,1,1,0,9 +"13823",2014,39111,"OH","39","111",14368,0.987820155902004,731,0.154022828507795,6.59441345974978,7.39572160860205,8.28197705886776,11.0153846153846,525.131282820705,42,7998,1,1,1,0,9 +"13824",2014,39113,"OH","39","113",532708,0.7499587015776,37666,0.133735554938165,10.5365131097547,11.0240896174292,11.9832602893648,6.13076923076923,538.732869451244,1677,311286,1,1,1,0,9 +"13825",2014,39115,"OH","39","115",14731,0.945964292987577,839,0.147579933473627,6.73221070646721,7.41697962138115,8.33302993974291,7.77692307692308,441.896572315777,37,8373,1,1,1,0,9 +"13826",2014,39117,"OH","39","117",34941,0.983543687931084,1914,0.145416559342892,7.5569505720129,8.42200300441249,9.21443198987944,5.96153846153846,378.676108980033,77,20334,1,1,1,0,9 +"13827",2014,39119,"OH","39","119",85918,0.937801159244861,5931,0.136467329313997,8.68794811183873,9.22896583609935,10.1378084044405,7.10769230769231,459.411871850398,227,49411,1,1,1,0,9 +"13828",2014,39121,"OH","39","121",14532,0.963253509496284,685,0.198940269749518,6.52941883826223,7.14834574390007,8.09437844497296,7.6,321.384425216316,26,8090,1,1,1,0,9 +"13829",2014,39123,"OH","39","123",40906,0.978389478316139,2007,0.171955214393976,7.60439634879634,8.38753998318937,9.3559114952954,7.68461538461538,370.785547986548,86,23194,1,1,1,0,9 +"13830",2014,39125,"OH","39","125",18970,0.976014760147601,1024,0.146020031628888,6.93147180559945,7.71110125184016,8.57243866564222,5.50769230769231,333.827893175074,36,10784,1,1,1,0,9 +"13831",2014,39127,"OH","39","127",35926,0.985915492957746,2145,0.139286310749875,7.67089483136212,8.38845031552351,9.24763615671988,7.37692307692308,477.326968973747,100,20950,1,1,1,0,9 +"13832",2014,39129,"OH","39","129",56703,0.950655168156888,3802,0.127259580621837,8.24328252304838,8.97068626853498,9.64982035867162,5.65384615384615,402.152528642518,139,34564,1,1,1,0,9 +"13833",2014,39131,"OH","39","131",28176,0.972849233390119,1691,0.137137989778535,7.43307534889858,8.18451375303372,9.00085314710946,9.06923076923077,588.848678157394,96,16303,1,1,1,0,9 +"13834",2014,39133,"OH","39","133",162520,0.925387644597588,19338,0.134444991385676,9.86982735104349,9.79065474426178,10.8239296555328,5.86153846153846,334.502075524926,332,99252,1,1,1,0,9 +"13835",2014,39135,"OH","39","135",41509,0.981618444192826,2282,0.14661880556024,7.73280753042202,8.51939077495972,9.38723053877293,5.71538461538462,457.138064083207,109,23844,1,1,1,0,9 +"13836",2014,39137,"OH","39","137",34194,0.985289816926946,2111,0.140872667719483,7.65491704784832,8.25608813381491,9.15588418618012,4.53846153846154,284.9593285322,55,19301,1,1,1,0,9 +"13837",2014,39139,"OH","39","139",122030,0.885241334098173,7855,0.139654183397525,8.96890555068972,9.58342001994019,10.4144231702526,6.53076923076923,473.651369901866,334,70516,1,1,1,0,9 +"13838",2014,39141,"OH","39","141",77116,0.920340785310441,4576,0.138752009959023,8.42858053305963,9.260082463871,9.96763537235988,6.4,477.94039552223,225,47077,1,1,1,0,9 +"13839",2014,39143,"OH","39","143",59830,0.949791074711683,3474,0.146799264582985,8.15306194680105,8.87988996767346,9.7560890255314,5.71538461538462,476.603119584055,165,34620,1,1,1,0,9 +"13840",2014,39145,"OH","39","145",77509,0.957695235392019,5278,0.13628094801894,8.57130251706327,9.17678358844734,10.0257936769201,8.74615384615385,629.250198710589,285,45292,1,1,1,0,9 +"13841",2014,39147,"OH","39","147",55819,0.954316630537989,4142,0.142299217112453,8.32893404195553,8.7662383802531,9.66523036341187,5.74615384615385,409.874243129949,132,32205,1,1,1,0,9 +"13842",2014,39149,"OH","39","149",49001,0.952490765494582,2976,0.136854349911226,7.99833539595298,8.68575383296015,9.53017496744437,5.10769230769231,362.618030373748,101,27853,1,1,1,0,9 +"13843",2014,39151,"OH","39","151",375608,0.896935102553726,24395,0.143817490575281,10.1021334722499,10.677338760511,11.6148952385539,5.80769230769231,427.763212363737,930,217410,1,1,1,0,9 +"13844",2014,39153,"OH","39","153",542572,0.807428322876964,35939,0.142998532913604,10.4895783357991,11.0749474956817,12.0132218503484,5.90769230769231,438.383306759957,1416,323005,1,1,1,0,9 +"13845",2014,39155,"OH","39","155",205071,0.898254750793628,12484,0.152381370354658,9.43220310339067,10.0565090236185,10.9943868389971,7.26923076923077,489.337024526114,578,118119,1,1,1,0,9 +"13846",2014,39157,"OH","39","157",92682,0.975971601821281,5300,0.142433266437928,8.57546209954021,9.30301070681749,10.1797926519646,5.53846153846154,389.576005143916,206,52878,1,1,1,0,9 +"13847",2014,39159,"OH","39","159",53782,0.933249042430553,3156,0.116321445836897,8.05706068196577,9.03574886124414,9.77166897791528,4.46153846153846,237.768632830361,78,32805,1,1,1,0,9 +"13848",2014,39161,"OH","39","161",28343,0.977666443213492,1697,0.141551705888579,7.43661726523423,8.11342663994365,8.98807143807263,4.89230769230769,349.759540316033,56,16011,1,1,1,0,9 +"13849",2014,39163,"OH","39","163",13210,0.983724451173353,808,0.149356548069644,6.6945620585211,7.42535788702715,8.26539293085222,8,690.184049079755,54,7824,1,1,1,0,9 +"13850",2014,39165,"OH","39","165",221429,0.908133081032746,12039,0.122657827113883,9.39590665893503,10.3551362560599,11.069353423226,4.97692307692308,287.87692685623,375,130264,1,1,1,0,9 +"13851",2014,39167,"OH","39","167",61204,0.972550813672309,3985,0.152048885693746,8.29029259122431,8.84850930088808,9.78975878720778,6.40769230769231,462.115021555975,164,35489,1,1,1,0,9 +"13852",2014,39169,"OH","39","169",115957,0.965073259915313,8432,0.133092439438757,9.03978927078114,9.47883962501119,10.3899794992867,4.64615384615385,354.058588999554,230,64961,1,1,1,0,9 +"13853",2014,39171,"OH","39","171",37222,0.975874482832733,2192,0.143490408897964,7.69256964806791,8.3959291039232,9.25426155903411,5.46923076923077,411.23416982102,88,21399,1,1,1,0,9 +"13854",2014,39173,"OH","39","173",129410,0.944733791824434,16325,0.124016691136697,9.70045295414463,9.58390193107134,10.5720346162278,5.20769230769231,289.788172539365,226,77988,1,1,1,0,9 +"13855",2014,39175,"OH","39","175",22287,0.982994570826042,1237,0.140664961636829,7.12044437239249,7.90544164906029,8.73681053295389,4.40769230769231,333.148250971682,42,12607,1,1,1,0,9 +"13856",2014,40001,"OK","40","001",22392,0.483386923901393,1464,0.121382636655949,7.28892769452126,7.9135210172839,8.73857519211079,7.73076923076923,657.630924693239,82,12469,0,1,0,0,9 +"13857",2014,40003,"OK","40","003",5817,0.904246175004298,260,0.135636926250645,5.56068163101553,6.76041469108343,7.11558212618445,2.4,454.545454545455,16,3520,0,1,0,0,9 +"13858",2014,40005,"OK","40","005",13924,0.779158287848319,881,0.134515943694341,6.78105762593618,7.40427911803727,8.19808924895612,5.95384615384615,528.235442082757,42,7951,0,1,0,0,9 +"13859",2014,40007,"OK","40","007",5535,0.961156278229449,312,0.137308039747064,5.74300318780948,6.45362499889269,7.31121838441963,2.66153846153846,561.797752808989,17,3026,0,1,0,0,9 +"13860",2014,40009,"OK","40","009",23611,0.899750116471136,1754,0.117360552284952,7.46965417293213,7.98309894071089,8.72062371142043,2.72307692307692,519.371139809096,74,14248,0,1,0,0,9 +"13861",2014,40011,"OK","40","011",9845,0.829659725749111,580,0.141797866937532,6.36302810354046,6.91869521902047,7.8739783796045,3.32307692307692,602.863602110023,32,5308,0,1,0,0,9 +"13862",2014,40013,"OK","40","013",44525,0.801706906232454,3317,0.120336889387984,8.10681603894705,8.55256033525353,9.4589177245472,4.67692307692308,566.718186501803,143,25233,0,1,0,0,9 +"13863",2014,40015,"OK","40","015",29448,0.668262700353165,1836,0.122588970388481,7.51534457118044,8.14873480893717,8.92956770782534,5.24615384615385,645.778521884717,108,16724,0,1,0,0,9 +"13864",2014,40017,"OK","40","017",129384,0.871614728250788,7238,0.114936931923576,8.88710020412369,9.82476896782472,10.5518988392547,3.42307692307692,307.307672274598,236,76796,0,1,0,0,9 +"13865",2014,40019,"OK","40","019",48600,0.788333333333333,2953,0.130349794238683,7.99057688174392,8.71833650245078,9.53878043690013,4.29230769230769,624.841983602413,173,27687,0,1,0,0,9 +"13866",2014,40021,"OK","40","021",48253,0.569353200837254,5421,0.117878681118272,8.59803557926034,8.57357352485234,9.55052001338572,5.81538461538462,530.56103244309,148,27895,0,1,0,0,9 +"13867",2014,40023,"OK","40","023",15114,0.671364298001853,846,0.137223766044727,6.74051935960622,7.42297125104942,8.34355383500512,8.00769230769231,756.374283274369,62,8197,0,1,0,0,9 +"13868",2014,40027,"OK","40","027",269874,0.832036431816329,30694,0.11133714251836,10.331822474735,10.4304030374511,11.3290146459678,3.55384615384615,307.09051120135,515,167703,0,1,0,0,9 +"13869",2014,40029,"OK","40","029",5722,0.771059070255156,359,0.140160782943027,5.88332238848828,6.46925031679577,7.33953769540767,6.5,517.96697960505,16,3089,0,1,0,0,9 +"13870",2014,40031,"OK","40","031",124622,0.690215210797452,12154,0.104604323474186,9.4054136126953,9.6310881036155,10.4855355605774,4.51538461538462,428.014040948416,328,76633,0,1,0,0,9 +"13871",2014,40033,"OK","40","033",6133,0.840208706994945,361,0.133865970976684,5.88887795833288,6.53087762772588,7.4318919168078,4.46923076923077,554.097404491105,19,3429,0,1,0,0,9 +"13872",2014,40035,"OK","40","035",14634,0.717780511138445,861,0.1309963099631,6.75809450442773,7.4599147662411,8.26255897301066,5.33846153846154,613.86615310544,51,8308,0,1,0,0,9 +"13873",2014,40037,"OK","40","037",70559,0.839212573874346,4186,0.135659518984113,8.33950090300594,9.04617302576227,9.91155492361389,4.8,644.017872744065,258,40061,0,1,0,0,9 +"13874",2014,40039,"OK","40","039",29517,0.862248873530508,3905,0.104516041603144,8.27001306227379,7.99598047476376,9.03181161342092,2.99230769230769,430.407724073751,74,17193,0,1,0,0,9 +"13875",2014,40041,"OK","40","041",41792,0.707312404287902,2186,0.148760528330781,7.68982866873648,8.38114434695296,9.34119318039495,5.63846153846154,616.755953720794,137,22213,0,1,0,0,9 +"13876",2014,40047,"OK","40","047",62801,0.881626088756548,4353,0.123389754940208,8.3786205415523,8.86304982791909,9.7669229930799,3.45384615384615,496.485551712596,178,35852,0,1,0,0,9 +"13877",2014,40049,"OK","40","049",27613,0.85488719081592,1609,0.131242530692065,7.38336814699238,8.08825472712243,8.95415696658377,3.93846153846154,598.451831132505,92,15373,0,1,0,0,9 +"13878",2014,40051,"OK","40","051",53883,0.890707644340516,3256,0.132657795594158,8.08825472712243,8.82232217747174,9.66427813353513,3.86153846153846,446.485521112387,140,31356,0,1,0,0,9 +"13879",2014,40055,"OK","40","055",6121,0.867832053586015,389,0.111256330664924,5.96357934361845,6.65801104587075,7.18765716411496,4.48461538461538,568.02813091696,21,3697,0,1,0,0,9 +"13880",2014,40061,"OK","40","061",12828,0.782273152478952,750,0.12659806672903,6.62007320653036,7.27100853828099,8.13563990335439,7.19230769230769,490.266762797404,34,6935,0,1,0,0,9 +"13881",2014,40063,"OK","40","063",13680,0.707017543859649,887,0.129678362573099,6.78784498230958,7.43602781635185,8.12769985281777,6.76923076923077,591.715976331361,47,7943,0,1,0,0,9 +"13882",2014,40065,"OK","40","065",25834,0.864790586049392,2117,0.115506696601378,7.65775527113487,7.99867136101578,8.91623773172148,4.15384615384615,444.356015386656,67,15078,0,1,0,0,9 +"13883",2014,40067,"OK","40","067",6288,0.893447837150127,337,0.14456106870229,5.82008293035236,6.53378883793334,7.42535788702715,4.48461538461538,730.566919929866,25,3422,0,1,0,0,9 +"13884",2014,40069,"OK","40","069",11110,0.773447344734473,686,0.131683168316832,6.53087762772588,7.11801620446533,8.03300949859667,6.77692307692308,779.980500487488,48,6154,0,1,0,0,9 +"13885",2014,40071,"OK","40","071",45475,0.841297416162727,2973,0.130379329301814,7.9973268229981,8.52198170814803,9.41483103479118,5.49230769230769,527.062639367525,130,24665,0,1,0,0,9 +"13886",2014,40073,"OK","40","073",15513,0.931992522400567,902,0.126539031779798,6.80461452006262,7.49108759353488,8.35608503102148,2.96923076923077,429.682963651144,37,8611,0,1,0,0,9 +"13887",2014,40075,"OK","40","075",9286,0.853219900926125,514,0.142903295283222,6.24222326545517,6.9037472575846,7.83042561782033,3.92307692307692,758.75486381323,39,5140,0,1,0,0,9 +"13888",2014,40077,"OK","40","077",10779,0.72455700899898,792,0.128305037573059,6.67456139181443,7.00033446027523,7.99091546309133,7.10769230769231,562.180579216354,33,5870,0,1,0,0,9 +"13889",2014,40079,"OK","40","079",50225,0.807008461921354,3091,0.130691886510702,8.03624994213212,8.70682132339263,9.53878043690013,6.64615384615385,553.937930544706,156,28162,0,1,0,0,9 +"13890",2014,40081,"OK","40","081",34539,0.886099771273054,1937,0.13851009004314,7.568895663407,8.29654652030061,9.17988116449147,4.37692307692308,581.694636054772,113,19426,0,1,0,0,9 +"13891",2014,40083,"OK","40","083",44681,0.852532396320584,3111,0.133770506479264,8.04269949689764,8.62604759632832,9.48166437781514,3.89230769230769,435.80546878013,113,25929,0,1,0,0,9 +"13892",2014,40085,"OK","40","085",9740,0.870328542094456,576,0.131827515400411,6.35610766069589,6.96318998587024,7.87739718635329,3.48461538461538,509.24179554885,27,5302,0,1,0,0,9 +"13893",2014,40087,"OK","40","087",37248,0.901524914089347,2050,0.126718213058419,7.62559507213245,8.49002752334347,9.28739400141847,3.56153846153846,464.50523154882,99,21313,0,1,0,0,9 +"13894",2014,40089,"OK","40","089",33192,0.698873222463244,2045,0.12855507351169,7.6231530684769,8.25088114470065,9.13680146864131,7.81538461538462,731.372009898268,133,18185,0,1,0,0,9 +"13895",2014,40091,"OK","40","091",19958,0.739803587533821,982,0.153221765707987,6.88959130835447,7.59890045687141,8.60024674655152,8.9,862.63478668542,92,10665,0,1,0,0,9 +"13896",2014,40093,"OK","40","093",7791,0.946091644204852,390,0.141316904120139,5.96614673912369,6.72142570079064,7.63723438878947,2.49230769230769,570.206699928724,24,4209,0,1,0,0,9 +"13897",2014,40095,"OK","40","095",16160,0.844430693069307,861,0.135891089108911,6.75809450442773,7.47760424319759,8.37953902611744,4.63076923076923,558.074642483432,48,8601,0,1,0,0,9 +"13898",2014,40097,"OK","40","097",40934,0.730370840865784,2487,0.137562906141594,7.8188324438034,8.47114925291483,9.35452729228868,4.70769230769231,565.980234228743,130,22969,0,1,0,0,9 +"13899",2014,40099,"OK","40","099",13763,0.814502652038073,726,0.141102957204098,6.5875500148248,7.36833968631138,8.24722005274523,4.04615384615385,589.854502556036,45,7629,0,1,0,0,9 +"13900",2014,40101,"OK","40","101",69751,0.644349184957922,4518,0.127381686284068,8.41582469702795,9.03729565196244,9.91516905730997,5.52307692307692,718.936175561198,286,39781,0,1,0,0,9 +"13901",2014,40103,"OK","40","103",11555,0.8678494158373,625,0.135785374296841,6.4377516497364,7.18916773842032,8.07775756373692,3.54615384615385,543.900543900544,35,6435,0,1,0,0,9 +"13902",2014,40105,"OK","40","105",10503,0.742264115014758,624,0.137674950014282,6.43615036836943,7.04141166379481,7.97349996402463,5.89230769230769,598.392887673106,35,5849,0,1,0,0,9 +"13903",2014,40107,"OK","40","107",12170,0.672062448644207,759,0.125390304026294,6.63200177739563,7.32646561384032,8.01201823915906,5.82307692307692,801.832760595647,56,6984,0,1,0,0,9 +"13904",2014,40109,"OK","40","109",766928,0.738186635512069,55364,0.117029238729059,10.9216848420166,11.4702788902488,12.353681977314,4.04615384615385,476.449291243327,2174,456292,0,1,0,0,9 +"13905",2014,40111,"OK","40","111",39086,0.695491992017602,2823,0.133091132374763,7.94555542825349,8.35514473946184,9.30428598481871,6.57692307692308,657.654366094264,144,21896,0,1,0,0,9 +"13906",2014,40113,"OK","40","113",47490,0.704000842282586,2711,0.148304906296062,7.90507284949867,8.59692815943509,9.4925826756776,4.96923076923077,509.149940968123,138,27104,0,1,0,0,9 +"13907",2014,40115,"OK","40","115",31955,0.734626818964168,2259,0.121201689876389,7.722677516468,8.20056279700856,9.08227970190866,6.52307692307692,594.722559039206,103,17319,0,1,0,0,9 +"13908",2014,40117,"OK","40","117",16350,0.825626911314985,904,0.143119266055046,6.80682936039218,7.53955882930103,8.42814337458273,5.13076923076923,592.625109745391,54,9112,0,1,0,0,9 +"13909",2014,40119,"OK","40","119",80583,0.840735639030565,17258,0.0914460866435849,9.75603108306825,8.93458687038968,10.0929915868061,3.60769230769231,306.457352999328,155,50578,0,1,0,0,9 +"13910",2014,40121,"OK","40","121",44853,0.771720955120059,2718,0.133012284574053,7.90765159471109,8.55756708555451,9.40162167014161,5.92307692307692,656.974032032343,169,25724,0,1,0,0,9 +"13911",2014,40123,"OK","40","123",38292,0.73683798182388,3286,0.116316724119921,8.09742629859721,8.34569287325387,9.31901538860184,4.19230769230769,536.328214531286,117,21815,0,1,0,0,9 +"13912",2014,40125,"OK","40","125",71561,0.796313634521597,5099,0.122105616187588,8.53679972105516,9.07520769798469,9.98202143019024,4.56923076923077,560.210444271239,230,41056,0,1,0,0,9 +"13913",2014,40127,"OK","40","127",11111,0.778057780577806,586,0.142111421114211,6.37331978957701,7.03702761468628,8.02355239240435,7.21538461538462,748.752079866888,45,6010,0,1,0,0,9 +"13914",2014,40131,"OK","40","131",89394,0.811754703895116,5803,0.12755889657024,8.66613030419061,9.30728557803266,10.1628087299689,4.06923076923077,431.961259079903,223,51625,0,1,0,0,9 +"13915",2014,40133,"OK","40","133",25361,0.715626355427625,1584,0.128031229052482,7.36770857237437,7.96762673933382,8.8667226671941,6.6,796.898556967478,111,13929,0,1,0,0,9 +"13916",2014,40135,"OK","40","135",41879,0.719167124334392,2491,0.12660283196829,7.82043951526218,8.536211197252,9.38479775371334,6.58461538461538,654.153661977853,153,23389,0,1,0,0,9 +"13917",2014,40137,"OK","40","137",44590,0.897712491590043,2604,0.139246467817896,7.86480400332846,8.53719187792293,9.44438429775868,4.33076923076923,509.405960450844,127,24931,0,1,0,0,9 +"13918",2014,40139,"OK","40","139",21741,0.894669058460972,1786,0.102709167011637,7.48773376143644,7.94626364358054,8.64312074801403,3.56923076923077,319.115815691158,41,12848,0,1,0,0,9 +"13919",2014,40141,"OK","40","141",7668,0.849113197704747,437,0.128847157016171,6.07993319509559,6.71417052990947,7.60140233458373,4.51538461538462,571.973307912297,24,4196,0,1,0,0,9 +"13920",2014,40143,"OK","40","143",631241,0.767551537368454,44019,0.119604081483934,10.6923766378756,11.2988159832859,12.1556421367308,4.14615384615385,449.885109985353,1674,372095,0,1,0,0,9 +"13921",2014,40145,"OK","40","145",75664,0.812566081624022,4146,0.130431909494608,8.32989929299572,9.21054035197885,10.0073068811751,4.13076923076923,388.509267088694,170,43757,0,1,0,0,9 +"13922",2014,40147,"OK","40","147",52044,0.818096226270079,3219,0.134866651295058,8.07682603129881,8.68152048483791,9.60474453272492,4.1,538.437489144406,155,28787,0,1,0,0,9 +"13923",2014,40149,"OK","40","149",11567,0.934987464338203,614,0.134174807642431,6.41999492814714,7.15695636461564,8.0494270571107,3.30769230769231,607.950116913484,39,6415,0,1,0,0,9 +"13924",2014,40151,"OK","40","151",9253,0.910083216254188,1232,0.111099102993624,7.11639414409346,6.81124437860129,7.79069603117474,2.61538461538462,401.313389273988,22,5482,0,1,0,0,9 +"13925",2014,40153,"OK","40","153",21544,0.930699962866691,1425,0.113256591162273,7.26192709270275,7.90174751852014,8.6278397115033,2.99230769230769,390.593862096453,49,12545,0,1,0,0,9 +"13926",2014,41001,"OR","41","001",16030,0.963755458515284,785,0.162320648783531,6.66568371778241,7.36833968631138,8.35467426191846,8.19230769230769,542.349411493192,47,8666,1,1,1,0,9 +"13927",2014,41003,"OR","41","003",87296,0.900762921554252,14793,0.126683925953079,9.60190937489224,9.05263337594615,10.1975740726609,4.97692307692308,231.396459266877,126,54452,1,1,1,0,9 +"13928",2014,41005,"OR","41","005",393544,0.921627568963064,23023,0.147365987030675,10.0442489952444,10.8215766663517,11.680023394826,6.04615384615385,293.647580284271,689,234635,1,1,1,0,9 +"13929",2014,41007,"OR","41","007",37491,0.94982795871009,2288,0.166760022405377,7.73543335249969,8.31458729131958,9.30592324186991,6.49230769230769,407.424173834314,90,22090,1,1,1,0,9 +"13930",2014,41009,"OR","41","009",49513,0.952881061539394,2606,0.155454123159574,7.86557175768479,8.71275997496021,9.58066177794877,8.26153846153846,429.868959301116,124,28846,1,1,1,0,9 +"13931",2014,41011,"OR","41","011",62403,0.934394179766998,3441,0.169703379645209,8.14351740579748,8.74512525946224,9.77786763861148,8.8,539.718083426636,188,34833,1,1,1,0,9 +"13932",2014,41013,"OR","41","013",20965,0.966467922728357,932,0.170283806343907,6.83733281468559,7.75319426988434,8.68287710705717,9.65384615384615,463.084316295325,53,11445,1,1,1,0,9 +"13933",2014,41015,"OR","41","015",22167,0.949339107682591,878,0.187982135606983,6.77764659363512,7.53636393840451,8.67760991282214,9.95384615384615,668.809172240076,77,11513,1,1,1,0,9 +"13934",2014,41017,"OR","41","017",169631,0.964298978370699,8676,0.148357316764035,9.06831587194677,10.0087480631936,10.8346866011434,7.60769230769231,301.534812194068,300,99491,1,1,1,0,9 +"13935",2014,41019,"OR","41","019",106769,0.953319783832386,5629,0.161713606009235,8.63568708546403,9.30082072510456,10.300214594701,8.99230769230769,531.724525793752,312,58677,1,1,1,0,9 +"13936",2014,41023,"OR","41","023",7191,0.965234320678626,272,0.183284661382283,5.605802066296,6.51323011091231,7.55485852104068,10.3692307692308,318.217979315831,12,3771,1,1,1,0,9 +"13937",2014,41025,"OR","41","025",7133,0.935511005187158,373,0.166269451843544,5.92157841964382,6.65415252018322,7.59287028784482,9.42307692307692,536.12458514169,21,3917,1,1,1,0,9 +"13938",2014,41027,"OR","41","027",22671,0.956905297516651,1334,0.134841868466323,7.19593722647557,7.97625194374562,8.78339623219089,5.38461538461539,283.942314877083,38,13383,1,1,1,0,9 +"13939",2014,41029,"OR","41","029",209351,0.948311687070996,12491,0.149108435116145,9.43276366396591,10.07204819408,11.0119016461765,8.26153846153846,427.31455052218,509,119116,1,1,1,0,9 +"13940",2014,41031,"OR","41","031",22200,0.765630630630631,1391,0.138108108108108,7.23777819192344,7.82484569102686,8.67743954055833,8.76923076923077,493.208279430789,61,12368,1,1,1,0,9 +"13941",2014,41033,"OR","41","033",83435,0.956684844489723,4209,0.160771858332834,8.34498036877057,9.04215837873595,10.0398960523157,9.21538461538462,537.382656587955,241,44847,1,1,1,0,9 +"13942",2014,41035,"OR","41","035",65333,0.914193439762448,4256,0.150398726524115,8.35608503102148,8.86021535890118,9.82989483223276,9.17692307692308,546.668821026552,203,37134,1,1,1,0,9 +"13943",2014,41037,"OR","41","037",7828,0.945835462442514,344,0.165176290240164,5.8406416573734,6.7990558620588,7.59890045687141,9.44615384615385,542.372881355932,24,4425,1,1,1,0,9 +"13944",2014,41039,"OR","41","039",358273,0.926966307815548,35919,0.141933665110126,10.489021682385,10.6302629140761,11.6001393214595,6.78461538461538,356.631729108096,770,215909,1,1,1,0,9 +"13945",2014,41041,"OR","41","041",46383,0.923139943513787,2130,0.190759545523144,7.66387725870347,8.44698529637274,9.50390510758612,7.68461538461538,601.717001379733,157,26092,1,1,1,0,9 +"13946",2014,41043,"OR","41","043",119095,0.953902346865947,7263,0.139065451950124,8.89054824560617,9.56366972566382,10.4468578077778,7.97692307692308,443.620762619114,304,68527,1,1,1,0,9 +"13947",2014,41045,"OR","41","045",30354,0.937471173486196,2164,0.118304012650721,7.67971363996637,8.21608809863232,8.87248718227804,7.79230769230769,368.399508800655,63,17101,1,1,1,0,9 +"13948",2014,41047,"OR","41","047",324473,0.914556835237447,22624,0.121375276217127,10.0267665686963,10.6097483722415,11.4335683555538,7.23846153846154,319.956413283266,599,187213,1,1,1,0,9 +"13949",2014,41049,"OR","41","049",11095,0.953492564218116,653,0.137359170797657,6.48157712927643,7.18387071506245,7.98956044933387,6.8,391.644908616188,24,6128,1,1,1,0,9 +"13950",2014,41051,"OR","41","051",779002,0.825638445087432,50504,0.121918814072364,10.8298078200475,11.7353807795038,12.4601837151173,5.77692307692308,303.934828910343,1564,514584,1,1,1,0,9 +"13951",2014,41053,"OR","41","053",77702,0.928019870788397,7108,0.127100975521866,8.86897618927454,9.08386970792223,10.0194467037037,6.69230769230769,284.371058364866,124,43605,1,1,1,0,9 +"13952",2014,41057,"OR","41","057",25314,0.958086434384135,1207,0.176898159121435,7.09589322109753,7.85979918056211,8.84520113533958,6.78461538461538,461.910176236498,65,14072,1,1,1,0,9 +"13953",2014,41059,"OR","41","059",76711,0.923283492589068,5372,0.121925147632021,8.58895555764313,9.16941420536354,9.9167985665958,7.62307692307692,391.154924482228,173,44228,1,1,1,0,9 +"13954",2014,41061,"OR","41","061",25645,0.950789627607721,2236,0.145642425424059,7.71244383427499,7.86710550031674,8.89247396834709,7.11538461538461,374.739764052741,54,14410,1,1,1,0,9 +"13955",2014,41063,"OR","41","063",6778,0.973000885216878,213,0.193272351726173,5.36129216570943,6.3919171133926,7.54433210805369,9.86153846153846,548.847420417124,20,3644,1,1,1,0,9 +"13956",2014,41065,"OR","41","065",25276,0.924909004589334,1541,0.147847760721633,7.34018683532012,7.91644286012226,8.86021535890118,6.63846153846154,500.987863392605,71,14172,1,1,1,0,9 +"13957",2014,41067,"OR","41","067",562552,0.842526557544902,34381,0.116600776461554,10.4452593651921,11.345914106667,12.0703560098574,5.49230769230769,207.066803557627,718,346748,1,1,1,0,9 +"13958",2014,41071,"OR","41","071",100850,0.937154189390183,7117,0.130897372335151,8.87024156729927,9.44801779306743,10.2590618910308,6.33076923076923,322.657743785851,189,58576,1,1,1,0,9 +"13959",2014,44001,"RI","44","001",49100,0.962912423625255,3507,0.148044806517312,8.16251625014018,8.57508466983201,9.58362658172011,6.77692307692308,317.673220147542,90,28331,1,1,1,0,9 +"13960",2014,44003,"RI","44","003",164526,0.946075392339205,9330,0.150596258342147,9.14099029384139,9.9227998635685,10.8522648354446,7.24615384615385,323.937819740455,328,101254,1,1,1,0,9 +"13961",2014,44005,"RI","44","005",83457,0.921288807409804,5452,0.148926992343362,8.60373779281642,9.1573614471853,10.1078151895927,6.93846153846154,288.952189683792,141,48797,1,1,1,0,9 +"13962",2014,44007,"RI","44","007",632995,0.809042725455967,52117,0.123794026809059,10.861246470104,11.2597736354153,12.1935293057332,8.21538461538461,322.499916150022,1250,387597,1,1,1,0,9 +"13963",2014,44009,"RI","44","009",126433,0.949214208315867,12069,0.154904178497702,9.3983954606179,9.43388384331172,10.5435503620036,7.24615384615385,304.440540214315,227,74563,1,1,1,0,9 +"13964",2014,45001,"SC","45","001",24811,0.703155858288662,1699,0.148563137318125,7.43779512167193,7.93630269320196,8.88322423027899,7.50769230769231,484.848484848485,68,14025,0,1,0,0,9 +"13965",2014,45003,"SC","45","003",164333,0.725204310759251,10478,0.140087505248489,9.25703309996817,9.85198370966901,10.8054967875845,6.33076923076923,485.462233126272,465,95785,0,1,0,0,9 +"13966",2014,45005,"SC","45","005",9704,0.251751854905194,726,0.141900247320693,6.5875500148248,7.09007683577609,7.86901937649902,11.8615384615385,613.395225464191,37,6032,0,1,0,0,9 +"13967",2014,45007,"SC","45","007",191872,0.81601275850567,11827,0.132265260173449,9.37814033225112,10.0822611561144,10.9490681946524,5.8,479.807352821358,530,110461,0,1,0,0,9 +"13968",2014,45009,"SC","45","009",15148,0.370940058093478,1404,0.143451280697122,7.24708058458576,7.32184971378836,8.38183155348556,11.2615384615385,478.971962616822,41,8560,0,1,0,0,9 +"13969",2014,45011,"SC","45","011",22032,0.532861292665214,1439,0.140023602033406,7.27170370688737,7.83161727635261,8.79042130689787,9.42307692307692,595.765236293374,74,12421,0,1,0,0,9 +"13970",2014,45013,"SC","45","013",175318,0.780313487491301,12397,0.131492487936207,9.42520978683815,9.81553027377699,10.7700837113864,5.5,328.158794762245,308,93857,0,1,0,0,9 +"13971",2014,45015,"SC","45","015",198485,0.704642668211704,15104,0.119197924276394,9.62271488838528,10.173858142213,11.0145223612028,5.83846153846154,386.443720497307,465,120328,0,1,0,0,9 +"13972",2014,45017,"SC","45","017",14844,0.566424144435462,868,0.162153058474805,6.76619171466035,7.40549566319947,8.38913252134872,7.8,499.361282081059,43,8611,0,1,0,0,9 +"13973",2014,45019,"SC","45","019",380239,0.684103945150287,28093,0.128795310317984,10.2432757139684,10.7581368958617,11.7157193593948,5,355.865933468543,851,239135,0,1,0,0,9 +"13974",2014,45021,"SC","45","021",56361,0.774968506591437,3970,0.127694682493213,8.28652137368124,8.86869477658097,9.72782378340624,8.07692307692308,603.091994489515,197,32665,0,1,0,0,9 +"13975",2014,45023,"SC","45","023",32449,0.610188295479059,2046,0.144503682702086,7.62364194651157,8.23642052726539,9.18921887535407,9.41538461538462,818.191478057592,154,18822,0,1,0,0,9 +"13976",2014,45025,"SC","45","025",46162,0.651639876955071,2978,0.137992288029115,7.99900721324395,8.65381978894806,9.52208070952103,6.67692307692308,594.161715319039,161,27097,0,1,0,0,9 +"13977",2014,45027,"SC","45","027",34222,0.494594120741044,2588,0.151393840219742,7.85864065562079,8.17413934342947,9.19258365038692,8.16923076923077,522.13974916816,102,19535,0,1,0,0,9 +"13978",2014,45029,"SC","45","029",37529,0.591089557408937,2244,0.146100349063391,7.71601526664259,8.33038156934942,9.31748928749323,7.42307692307692,644.645209862601,137,21252,0,1,0,0,9 +"13979",2014,45031,"SC","45","031",67660,0.569420632574638,4616,0.144028968371268,8.43728380818794,9.0177260256968,9.94102415606485,7.76153846153846,644.044497619836,253,39283,0,1,0,0,9 +"13980",2014,45033,"SC","45","033",31290,0.487823585810163,2102,0.133397251518057,7.6506445514369,8.22389538017882,9.14644164612595,9.36923076923077,631.697687535251,112,17730,0,1,0,0,9 +"13981",2014,45035,"SC","45","035",148854,0.703487981512086,9509,0.118680048906983,9.15999399753944,9.90728035077482,10.7361575164402,5.68461538461538,350.916281401437,315,89765,0,1,0,0,9 +"13982",2014,45037,"SC","45","037",26655,0.614631401238042,1801,0.146839242168449,7.49609734517596,8.15478757276852,8.8685540405312,6.53076923076923,476.477683956574,79,16580,0,1,0,0,9 +"13983",2014,45039,"SC","45","039",23050,0.395097613882863,1462,0.169544468546638,7.28756064030972,7.85670679309584,8.87863674743007,8.45384615384615,703.967148199751,96,13637,0,1,0,0,9 +"13984",2014,45041,"SC","45","041",138837,0.551841367935061,9902,0.13129065018691,9.20049203592137,9.76892705914043,10.6849431851866,7.00769230769231,562.61721191915,459,81583,0,1,0,0,9 +"13985",2014,45043,"SC","45","043",60866,0.659497913449216,3185,0.161370880294417,8.06620756800626,8.77059432989114,9.77201118974774,8.33076923076923,451.977401129944,148,32745,0,1,0,0,9 +"13986",2014,45045,"SC","45","045",481737,0.779543609895026,32540,0.123175093463861,10.390225380773,11.0619398415603,11.8996833456127,5.19230769230769,372.206284840139,1073,288281,0,1,0,0,9 +"13987",2014,45047,"SC","45","047",69686,0.656387222684614,4895,0.124286083287891,8.49596955496461,9.01966401079947,9.95778632594351,6.68461538461538,444.770159965631,176,39571,0,1,0,0,9 +"13988",2014,45049,"SC","45","049",20433,0.441247002398082,1369,0.133754221112906,7.22183582528845,7.88193748927207,8.6429443967218,7.5,477.248416028964,58,12153,0,1,0,0,9 +"13989",2014,45051,"SC","45","051",298042,0.834858845397629,18014,0.147912039242791,9.79890451234369,10.4680055904989,11.4058523725785,7.23076923076923,490.803914896562,851,173389,0,1,0,0,9 +"13990",2014,45053,"SC","45","053",26712,0.527216232404912,2027,0.136043725666367,7.614312146452,8.07899825868515,8.95364003713313,5.53076923076923,484.144274993948,80,16524,0,1,0,0,9 +"13991",2014,45055,"SC","45","055",63201,0.732108669166627,3628,0.143842660717394,8.19643681123503,8.93326847863642,9.84495761034573,6.26153846153846,519.864288059538,190,36548,0,1,0,0,9 +"13992",2014,45057,"SC","45","057",83499,0.751877267991233,4656,0.130169223583516,8.44591198941127,9.33016576504453,10.090257533736,7.02307692307692,518.416321752582,248,47838,0,1,0,0,9 +"13993",2014,45059,"SC","45","059",66490,0.723958489998496,4775,0.138998345615882,8.47114925291483,8.96584549475094,9.89741917713452,6.9,672.373218857483,260,38669,0,1,0,0,9 +"13994",2014,45061,"SC","45","061",18339,0.345820382790774,1460,0.144555319264954,7.28619171470238,7.64539769942863,8.51879191277993,8.83076923076923,697.300196674414,78,11186,0,1,0,0,9 +"13995",2014,45063,"SC","45","063",277568,0.81894526746599,17218,0.130605833525478,9.7537106272179,10.5145837602072,11.3520757298274,4.90769230769231,402.362606062423,671,166765,0,1,0,0,9 +"13996",2014,45065,"SC","45","065",9816,0.498471882640587,469,0.1619804400978,6.15060276844628,6.92657703322272,7.71467747380093,7.67692307692308,688.905003625816,38,5516,0,1,0,0,9 +"13997",2014,45067,"SC","45","067",31947,0.410711490906814,2133,0.151187904967603,7.66528471847135,8.20521842639541,9.20753644464345,10.2692307692308,793.26002516549,145,18279,0,1,0,0,9 +"13998",2014,45069,"SC","45","069",28049,0.424328853078541,1852,0.13112766943563,7.52402141520612,8.24328252304838,8.93208043810331,10.3230769230769,616.465979143861,107,17357,0,1,0,0,9 +"13999",2014,45071,"SC","45","071",37675,0.65799601857996,2638,0.141499668214997,7.87777633327726,8.36497397843873,9.29320984979848,5.56923076923077,426.953777612771,92,21548,0,1,0,0,9 +"14000",2014,45073,"SC","45","073",75254,0.904935285831982,4616,0.150118266138677,8.43728380818794,9.02340820262454,9.96538195607372,6.13076923076923,518.650088809947,219,42225,0,1,0,0,9 +"14001",2014,45075,"SC","45","075",90058,0.350363099335983,7303,0.136578649314886,8.89604050162011,9.14345242643455,10.2200121513476,11.0461538461538,666.55006898696,343,51459,0,1,0,0,9 +"14002",2014,45077,"SC","45","077",120651,0.905015292040679,15410,0.118424215298671,9.64277192831416,9.4922055591064,10.4804940979613,6.13076923076923,433.791224069852,312,71924,0,1,0,0,9 +"14003",2014,45079,"SC","45","079",400688,0.481666533562273,47510,0.111780237990656,10.768695494181,10.8109796900539,11.7651072947275,5.80769230769231,366.506794564349,917,250200,0,1,0,0,9 +"14004",2014,45081,"SC","45","081",20061,0.69832012362295,1262,0.137380987986641,7.14045304310116,7.7621706071382,8.64011853825354,5.53846153846154,536.285788426607,62,11561,0,1,0,0,9 +"14005",2014,45083,"SC","45","083",293146,0.755834976428128,20749,0.126285195772755,9.94025333172645,10.5071475665945,11.3860688889675,6.16923076923077,490.213201988798,842,171762,0,1,0,0,9 +"14006",2014,45085,"SC","45","085",107784,0.496975432346174,9089,0.122374378386402,9.11482017011877,9.40910926014874,10.3825438326131,7.11538461538461,503.35037632189,317,62978,0,1,0,0,9 +"14007",2014,45087,"SC","45","087",27912,0.668458010891373,1649,0.148466609343651,7.4079243225596,8.12533508671429,9.03324513415381,8.37692307692308,622.93652276833,100,16053,0,1,0,0,9 +"14008",2014,45089,"SC","45","089",32728,0.331092642385725,2138,0.15032999266683,7.66762609158499,8.2666784433059,9.16387749756584,9.72307692307692,593.144716812766,113,19051,0,1,0,0,9 +"14009",2014,45091,"SC","45","091",244661,0.770192225160528,15254,0.123722211549859,9.63259704272418,10.4382542870735,11.2348768414867,6.11538461538461,364.753311576118,532,145852,0,1,0,0,9 +"14010",2014,46005,"SD","46","005",18073,0.893376860510153,1014,0.137940574337409,6.92165818415113,7.49443021503157,8.47782846789396,3.02307692307692,368.599322574218,37,10038,0,1,0,0,9 +"14011",2014,46011,"SD","46","011",33304,0.941928897429738,6432,0.0981263511890464,8.7690408108588,8.07775756373692,9.17998425196128,3.06923076923077,150.646321314025,31,20578,0,1,0,0,9 +"14012",2014,46013,"SD","46","013",38278,0.923141229949318,2694,0.130544960551753,7.89878235697031,8.3387839714422,9.29394595583098,2.83846153846154,272.504314651649,60,22018,0,1,0,0,9 +"14013",2014,46019,"SD","46","019",10254,0.960698264092062,581,0.153501072752097,6.36475075685191,6.92165818415113,7.95120715647297,3.3,420.315236427321,24,5710,0,1,0,0,9 +"14014",2014,46023,"SD","46","023",9238,0.650573717254817,519,0.123511582593635,6.25190388316589,6.78219205600679,7.71868549519847,3.73076923076923,433.08791684712,20,4618,0,1,0,0,9 +"14015",2014,46027,"SD","46","027",13907,0.916660674480477,3219,0.0929028546775005,8.07682603129881,7.05358572719368,8.35725915349991,3.38461538461538,279.10222118851,24,8599,0,1,0,0,9 +"14016",2014,46029,"SD","46","029",27958,0.957257314543243,1973,0.132913656198584,7.58731050602262,8.09315669772264,8.97195627124569,3.21538461538462,290.033940141932,47,16205,0,1,0,0,9 +"14017",2014,46031,"SD","46","031",4170,0.308153477218225,297,0.105275779376499,5.6937321388027,6.04025471127741,6.96318998587024,5.68461538461538,919.540229885057,20,2175,0,1,0,0,9 +"14018",2014,46033,"SD","46","033",8435,0.94380557202134,267,0.212685240071132,5.58724865840025,6.61873898351722,7.78862606562503,4.43846153846154,508.905852417303,24,4716,0,1,0,0,9 +"14019",2014,46035,"SD","46","035",19974,0.949384199459297,1554,0.131671172524282,7.34858753092759,7.68478394352278,8.60630236648801,2.74615384615385,452.488687782805,51,11271,0,1,0,0,9 +"14020",2014,46041,"SD","46","041",5666,0.219555241793152,423,0.0967172608542181,6.04737217904628,6.3456363608286,7.33367639565768,14.1307692307692,1187.64845605701,35,2947,0,1,0,0,9 +"14021",2014,46047,"SD","46","047",6849,0.89706526500219,276,0.18499050956344,5.62040086571715,6.46614472423762,7.50273821075485,4.60769230769231,597.501357957632,22,3682,0,1,0,0,9 +"14022",2014,46065,"SD","46","065",17647,0.861732872442908,989,0.141440471468238,6.89669433162271,7.63578686139558,8.58279364850019,2.51538461538462,316.546762589928,33,10425,0,1,0,0,9 +"14023",2014,46071,"SD","46","071",3273,0.425908952031775,222,0.102963641918729,5.40267738187228,5.73657229747919,6.71052310945243,5.34615384615385,1110.42566317088,18,1621,0,1,0,0,9 +"14024",2014,46079,"SD","46","079",12101,0.969176101148665,854,0.17428311709776,6.74993119378857,7.02286808608264,8.10591119798651,3.52307692307692,329.277022190408,23,6985,0,1,0,0,9 +"14025",2014,46081,"SD","46","081",24759,0.95274445656125,2118,0.161880528292742,7.65822752616135,7.83913164827433,8.8858559930003,3.39230769230769,301.163586584531,44,14610,0,1,0,0,9 +"14026",2014,46083,"SD","46","083",51601,0.964632468363016,2556,0.109532760993004,7.84619881549743,8.94350613203724,9.6363268033051,2.36923076923077,155.675532443443,47,30191,0,1,0,0,9 +"14027",2014,46093,"SD","46","093",26737,0.932789766989565,2456,0.133036615925497,7.80628928926703,8.00803284696931,8.93062646917358,3.26923076923077,316.043874326083,51,16137,0,1,0,0,9 +"14028",2014,46099,"SD","46","099",180925,0.89346966975266,12659,0.120071852977753,9.44612370363683,10.025262609462,10.8917826168934,2.93076923076923,295.237143557926,325,110081,0,1,0,0,9 +"14029",2014,46103,"SD","46","103",107613,0.854339159766943,6898,0.138477693215504,8.83898679349679,9.42060129745938,10.3500946039755,3.32307692307692,362.197969785064,228,62949,0,1,0,0,9 +"14030",2014,46109,"SD","46","109",10280,0.598054474708171,607,0.133852140077821,6.4085287910595,6.92165818415113,7.86710550031674,4.68461538461538,570.017100513015,30,5263,0,1,0,0,9 +"14031",2014,46113,"SD","46","113",14217,0.0462826193993107,1221,0.0783568966729971,7.1074254741107,7.30518821539304,8.24748200428569,NA,840.108401084011,62,7380,0,1,0,0,9 +"14032",2014,46115,"SD","46","115",6655,0.960480841472577,366,0.151465063861758,5.90263333340137,6.4118182677099,7.46393660446893,3.43846153846154,280.269058295964,10,3568,0,1,0,0,9 +"14033",2014,46121,"SD","46","121",9958,0.0942960433822053,750,0.0819441654950793,6.62007320653036,6.92853781816467,7.86480400332846,8.48461538461538,901.269971323228,44,4882,0,1,0,0,9 +"14034",2014,46125,"SD","46","125",8193,0.980104967655316,336,0.148785548639082,5.8171111599632,6.82328612235569,7.67415292128168,2.82307692307692,581.265369997764,26,4473,0,1,0,0,9 +"14035",2014,46127,"SD","46","127",14996,0.965857562016538,794,0.143704987996799,6.67708346124714,7.50659178007084,8.33973976601914,3.61538461538462,386.281165866792,33,8543,0,1,0,0,9 +"14036",2014,46135,"SD","46","135",22695,0.935712712051113,1435,0.140779907468605,7.26892012819372,7.87511928104029,8.71127861513043,2.93846153846154,344.466077579751,46,13354,0,1,0,0,9 +"14037",2014,47001,"TN","47","001",75191,0.934965620885478,4471,0.146307403811626,8.40536737623398,9.11471014096093,10.0090180537456,6.83076923076923,567.262786194327,249,43895,0,1,0,0,9 +"14038",2014,47003,"TN","47","003",46257,0.888297987331647,3019,0.119203579998703,8.01268092970684,8.71028982137815,9.50054426197147,7.49230769230769,478.216666039086,127,26557,0,1,0,0,9 +"14039",2014,47005,"TN","47","005",16201,0.96068143941732,842,0.149743842972656,6.73578001424233,7.51043055637801,8.41825644355621,8.80769230769231,876.803551609323,79,9010,0,1,0,0,9 +"14040",2014,47007,"TN","47","007",14514,0.917114510128152,847,0.140967341876809,6.74170069465205,7.69893619981345,8.13622555490846,9.03846153846154,344.867226117945,30,8699,0,1,0,0,9 +"14041",2014,47009,"TN","47","009",125932,0.952863450115936,7537,0.140115300320808,8.92757950384347,9.6583539833303,10.5335618041201,6.00769230769231,460.679196053651,339,73587,0,1,0,0,9 +"14042",2014,47011,"TN","47","011",102830,0.929368861227268,7450,0.123125547019352,8.9159693113736,9.4955944993533,10.3361786468979,6.1,474.26924660354,288,60725,0,1,0,0,9 +"14043",2014,47013,"TN","47","013",39918,0.986822987123603,2358,0.139060073149957,7.76556908109732,8.54752839121231,9.36640350760777,9.38461538461539,764.253766989448,176,23029,0,1,0,0,9 +"14044",2014,47015,"TN","47","015",13581,0.97135704292762,806,0.139606803622708,6.69208374250663,7.42535788702715,8.29004161870449,6.38461538461539,718.355214268021,58,8074,0,1,0,0,9 +"14045",2014,47017,"TN","47","017",28417,0.881409015730021,2010,0.132420734067636,7.60589000105312,8.08240225392624,8.99578483784851,10.0769230769231,628.172588832487,99,15760,0,1,0,0,9 +"14046",2014,47019,"TN","47","019",56334,0.976089040366386,3336,0.145382894876984,8.11252776347864,8.84072491676172,9.72698900904496,7.71538461538462,491.642084562439,165,33561,0,1,0,0,9 +"14047",2014,47021,"TN","47","021",39611,0.969074247052586,2298,0.138875564868345,7.7397944584087,8.58522560180806,9.4041786888978,5.50769230769231,445.269016697588,108,24255,0,1,0,0,9 +"14048",2014,47023,"TN","47","023",17141,0.89084650837174,1566,0.120879761974214,7.35627987655075,7.62364194651157,8.5213843960347,6.8,589.790522676429,58,9834,0,1,0,0,9 +"14049",2014,47025,"TN","47","025",31597,0.97676994651391,2174,0.145045415704023,7.68432406768116,8.27333659850449,9.15514473650823,8.68461538461538,705.391973494362,132,18713,0,1,0,0,9 +"14050",2014,47027,"TN","47","027",7626,0.974822974036192,408,0.142014162077105,6.01126717440416,6.76503897678054,7.65207074611648,9.13846153846154,760.817879220162,32,4206,0,1,0,0,9 +"14051",2014,47029,"TN","47","029",35279,0.965276793559908,2021,0.150939652484481,7.61134771740362,8.37170488466763,9.27171765165109,9.06153846153846,828.581176585271,170,20517,0,1,0,0,9 +"14052",2014,47031,"TN","47","031",53555,0.941144617682756,3279,0.128708804033237,8.09529377684465,8.77477681604399,9.65245879773238,6.40769230769231,611.890972154053,187,30561,0,1,0,0,9 +"14053",2014,47033,"TN","47","033",14654,0.847959601474,891,0.125835949228879,6.79234442747081,7.4489161025442,8.34045601291618,7.64615384615385,558.455748452106,46,8237,0,1,0,0,9 +"14054",2014,47035,"TN","47","035",57952,0.981243097736057,2919,0.144412617338487,7.97899637085411,8.66267785815822,9.63423461555271,7.96923076923077,638.190106365018,189,29615,0,1,0,0,9 +"14055",2014,47037,"TN","47","037",670102,0.666353778976932,51434,0.114739248651698,10.8480547113619,11.4264194148269,12.313540439317,5.03076923076923,372.827292899408,1613,432640,0,1,0,0,9 +"14056",2014,47039,"TN","47","039",11681,0.957195445595411,610,0.150158376851297,6.41345895716736,7.19218205871325,8.06652149046999,9.55384615384615,651.061850875833,42,6451,0,1,0,0,9 +"14057",2014,47041,"TN","47","041",19218,0.965605161827453,1083,0.139608700176917,6.98749024700099,7.77653502818524,8.62927109482159,8.2,681.003584229391,76,11160,0,1,0,0,9 +"14058",2014,47043,"TN","47","043",50484,0.940951588622138,2955,0.133012439584819,7.9912539298402,8.79315687091382,9.63541200972327,6.29230769230769,513.384671800513,154,29997,0,1,0,0,9 +"14059",2014,47045,"TN","47","045",37835,0.840359455530593,2363,0.127421699484604,7.76768727718691,8.45595588194505,9.31829751348127,8.25384615384615,489.72048972049,106,21645,0,1,0,0,9 +"14060",2014,47047,"TN","47","047",39131,0.709003092177557,2004,0.160614346681659,7.60290046220476,8.45659356928731,9.36597566350763,7.24615384615385,507.703081232493,116,22848,0,1,0,0,9 +"14061",2014,47049,"TN","47","049",17856,0.987847222222222,924,0.148185483870968,6.82871207164168,7.65539064482615,8.53738789870176,8.52307692307692,621.180242460675,62,9981,0,1,0,0,9 +"14062",2014,47051,"TN","47","051",41320,0.930348499515973,3261,0.140755082284608,8.08978917578932,8.49084921607663,9.39457676097491,6.16153846153846,557.494254830198,131,23498,0,1,0,0,9 +"14063",2014,47053,"TN","47","053",49437,0.799684446871776,2848,0.126180795760261,7.95437227253187,8.73182058296211,9.57324586566555,8.94615384615385,673.01081882983,186,27637,0,1,0,0,9 +"14064",2014,47055,"TN","47","055",28829,0.880051337195185,1815,0.14416039404766,7.50384074669895,8.10892415597534,9.0415666277275,6.13076923076923,498.019920796832,83,16666,0,1,0,0,9 +"14065",2014,47057,"TN","47","057",22857,0.984468652929081,1232,0.143675897974362,7.11639414409346,7.98548435673382,8.80447518384668,8.21538461538461,578.164889623067,77,13318,0,1,0,0,9 +"14066",2014,47059,"TN","47","059",68491,0.96641894555489,4099,0.143011490560804,8.31849832050434,9.04192172035122,9.90063348355322,8.10769230769231,574.975830661985,226,39306,0,1,0,0,9 +"14067",2014,47061,"TN","47","061",13341,0.983059740649127,752,0.135297204107638,6.62273632394984,7.39449310721904,8.22416351263786,9.4,924.809006835545,69,7461,0,1,0,0,9 +"14068",2014,47063,"TN","47","063",63027,0.927951512843702,3795,0.124089675853206,8.24143968982973,9.01408214944336,9.80868224526222,7.40769230769231,610.589120918951,219,35867,0,1,0,0,9 +"14069",2014,47065,"TN","47","065",350972,0.76710962697879,24460,0.135270050032481,10.1047944092412,10.6941243543733,11.5915240534824,6.2,432.384358472179,914,211386,0,1,0,0,9 +"14070",2014,47067,"TN","47","067",6619,0.985496298534522,380,0.157727753437075,5.94017125272043,6.68710860786651,7.57250298502038,9.83076923076923,1105.39845758355,43,3890,0,1,0,0,9 +"14071",2014,47069,"TN","47","069",25992,0.566058787319175,1816,0.131425053862727,7.50439155916124,8.12058871174027,8.79905837854645,9.33076923076923,536.862475809976,86,16019,0,1,0,0,9 +"14072",2014,47071,"TN","47","071",25808,0.95044172349659,1472,0.14789987600744,7.29437729928882,8.01367414283268,8.90204734562028,9.00769230769231,818.713450292398,119,14535,0,1,0,0,9 +"14073",2014,47073,"TN","47","073",56506,0.975170778324426,3170,0.144055498531129,8.06148686687133,8.868413284672,9.71480581258949,7.35384615384615,672.248365214203,220,32726,0,1,0,0,9 +"14074",2014,47075,"TN","47","075",18243,0.482705695335197,1172,0.14953680863893,7.06646697013696,7.64587582518481,8.64082575186151,9.86923076923077,616.873873018886,65,10537,0,1,0,0,9 +"14075",2014,47077,"TN","47","077",28107,0.905254918703526,1636,0.129220478884264,7.40000951716269,8.17470288246946,9.01760477683336,8.65384615384615,569.729997522913,92,16148,0,1,0,0,9 +"14076",2014,47079,"TN","47","079",32247,0.90637888795857,1682,0.147176481533166,7.42773884053289,8.21039625510477,9.12750209366718,8.07692307692308,570.916825254674,102,17866,0,1,0,0,9 +"14077",2014,47081,"TN","47","081",24481,0.937625097014011,1511,0.134880111106572,7.32052696227274,8.05990833457828,8.82055174325303,6.61538461538462,575.880758807588,85,14760,0,1,0,0,9 +"14078",2014,47083,"TN","47","083",8222,0.954025784480662,495,0.14205789345658,6.20455776256869,6.89365635460264,7.77022320415879,9.9,470.487596236099,22,4676,0,1,0,0,9 +"14079",2014,47085,"TN","47","085",18145,0.959162303664922,1066,0.143014604574263,6.97166860472579,7.70975686445416,8.56197533418813,7.83846153846154,542.267841580323,56,10327,0,1,0,0,9 +"14080",2014,47087,"TN","47","087",11531,0.985950914924985,654,0.163212210562831,6.4831073514572,7.22475340576797,8.11402544235676,8.8,789.395293416741,53,6714,0,1,0,0,9 +"14081",2014,47089,"TN","47","089",52439,0.965388355994584,3402,0.136920993916741,8.13211877295581,8.74049672993181,9.63318687791512,7.43076923076923,460.585175121773,139,30179,0,1,0,0,9 +"14082",2014,47091,"TN","47","091",17942,0.968398171887192,1031,0.141121391149259,6.93828448401696,7.76937860951398,8.44440742169058,6.88461538461539,623.894217338672,67,10739,0,1,0,0,9 +"14083",2014,47093,"TN","47","093",448112,0.876323329881815,41085,0.124417556325204,10.6233983703653,10.9433401459973,11.8472954934996,5.47692307692308,476.620381369406,1304,273593,0,1,0,0,9 +"14084",2014,47095,"TN","47","095",7679,0.700221382992577,666,0.123714025263706,6.50128967054039,7.06219163228656,7.35627987655075,9.26153846153846,523.458704924389,27,5158,0,1,0,0,9 +"14085",2014,47097,"TN","47","097",27359,0.628422091450711,1966,0.120581892613034,7.58375630070711,8.19063168090354,8.92279162396964,9.81538461538462,594.095055208833,99,16664,0,1,0,0,9 +"14086",2014,47099,"TN","47","099",42313,0.969583815848557,2553,0.126509583343181,7.84502441724148,8.51919119407891,9.38815177329225,8.14615384615385,617.704694555679,145,23474,0,1,0,0,9 +"14087",2014,47101,"TN","47","101",11893,0.966030438072816,649,0.153619776339023,6.47543271670409,7.28550654852279,8.14002395246292,8.99230769230769,648.584905660377,44,6784,0,1,0,0,9 +"14088",2014,47103,"TN","47","103",33465,0.91331241595697,1919,0.14427013297475,7.5595594960077,8.26384813136891,9.16847616787748,5.36923076923077,563.233376792699,108,19175,0,1,0,0,9 +"14089",2014,47105,"TN","47","105",50613,0.966332760358011,2539,0.149902199039772,7.83952558170468,8.62622695244036,9.53899642739739,6.7,501.72123342855,137,27306,0,1,0,0,9 +"14090",2014,47107,"TN","47","107",52687,0.941845236965475,3335,0.139616983316568,8.11222795834972,8.76092337633884,9.64814358799629,7.56923076923077,632.995293961689,191,30174,0,1,0,0,9 +"14091",2014,47109,"TN","47","109",26039,0.930335266331272,1524,0.137332462844195,7.32909373624659,8.06934236681164,8.91408834884133,10.6538461538462,613.0372590423,90,14681,0,1,0,0,9 +"14092",2014,47111,"TN","47","111",22916,0.975213824402164,1444,0.124803630651073,7.27517231945277,7.96485088744731,8.81818627792769,6.54615384615385,603.500301750151,80,13256,0,1,0,0,9 +"14093",2014,47113,"TN","47","113",98172,0.604693802713605,7625,0.132176180581021,8.93918760147561,9.36263218231844,10.3247932008634,6.8,472.460092755033,272,57571,0,1,0,0,9 +"14094",2014,47115,"TN","47","115",28416,0.947564752252252,1663,0.148648648648649,7.41637847919293,8.15104494568502,9.0395520509959,7.92307692307692,589.651022864019,98,16620,0,1,0,0,9 +"14095",2014,47117,"TN","47","117",31293,0.915604128718883,1901,0.136068769373342,7.55013534248843,8.33351070898294,9.14569517848265,6.29230769230769,524.74979713281,97,18485,0,1,0,0,9 +"14096",2014,47119,"TN","47","119",85498,0.857435261643547,5104,0.140424337411401,8.53777982502463,9.29660980712836,10.1811571672049,5.95384615384615,503.124877166778,256,50882,0,1,0,0,9 +"14097",2014,47121,"TN","47","121",11713,0.969435669768633,625,0.147443012037907,6.4377516497364,7.30988148582479,8.1185050675871,8.70769230769231,709.010339734121,48,6770,0,1,0,0,9 +"14098",2014,47123,"TN","47","123",45407,0.96112934129099,2618,0.142929504261457,7.87016594646984,8.6020856584342,9.47016294754888,7.64615384615385,561.294094718378,144,25655,0,1,0,0,9 +"14099",2014,47125,"TN","47","125",189294,0.746220165456908,17846,0.0888776189419633,9.7895346724601,10.1267111006505,10.9702479117551,6.67692307692308,312.113588879887,366,117265,0,1,0,0,9 +"14100",2014,47127,"TN","47","127",6286,0.961024498886414,311,0.151606745147948,5.73979291217923,6.67329796776765,7.49220304261874,5.09230769230769,306.834030683403,11,3585,0,1,0,0,9 +"14101",2014,47129,"TN","47","129",21714,0.953440176844432,1399,0.135949157225753,7.24351297466548,8.02486215028641,8.64857226947262,8.81538461538462,534.67993465023,72,13466,0,1,0,0,9 +"14102",2014,47131,"TN","47","131",30845,0.879688766412709,1765,0.141935483870968,7.4759059693674,8.24800570160062,9.09840271873532,9.58461538461538,523.292190432854,92,17581,0,1,0,0,9 +"14103",2014,47133,"TN","47","133",21945,0.983185235816815,1276,0.139940760993393,7.15148546390474,7.90617884039481,8.73600738456922,7.92307692307692,629.590766002099,78,12389,0,1,0,0,9 +"14104",2014,47135,"TN","47","135",7822,0.961135259524418,411,0.147660444899003,6.01859321449623,6.78219205600679,7.6506445514369,8.13076923076923,857.47392815759,37,4315,0,1,0,0,9 +"14105",2014,47139,"TN","47","139",16690,0.982025164769323,919,0.144278010784901,6.82328612235569,7.67740043051481,8.49084921607663,7.91538461538462,505.258816250773,49,9698,0,1,0,0,9 +"14106",2014,47141,"TN","47","141",74946,0.950871293998345,8336,0.116884156592747,9.02833876399315,9.04652648673797,9.99570203652394,6.91538461538462,462.090211044186,201,43498,0,1,0,0,9 +"14107",2014,47143,"TN","47","143",32648,0.962968635138446,2151,0.134832148983092,7.67368812926773,8.28324144138542,9.14184737553088,8.46153846153846,653.983353151011,121,18502,0,1,0,0,9 +"14108",2014,47145,"TN","47","145",52870,0.958804615093626,2742,0.160317760544732,7.91644286012226,8.71423914360857,9.64023789622493,7.69230769230769,651.184424731719,196,30099,0,1,0,0,9 +"14109",2014,47147,"TN","47","147",68063,0.906821621145116,3980,0.129189133596815,8.28903709827848,9.10509096125709,9.92944765420566,5.69230769230769,514.017531225944,207,40271,0,1,0,0,9 +"14110",2014,47149,"TN","47","149",289014,0.811863785145356,28979,0.102040039582858,10.2743267087231,10.6333523160312,11.4192958721881,5.25384615384615,301.229976001826,541,179597,0,1,0,0,9 +"14111",2014,47151,"TN","47","151",21994,0.989951805037738,1377,0.127261980540147,7.22766249872865,7.98002359231065,8.76639427704974,11.6923076923077,715.971675845791,91,12710,0,1,0,0,9 +"14112",2014,47153,"TN","47","153",14636,0.980322492484285,826,0.144301721781908,6.71659477352098,7.52833176670725,8.35561499576018,7.49230769230769,654.761904761905,55,8400,0,1,0,0,9 +"14113",2014,47155,"TN","47","155",94716,0.968294691498796,5954,0.141570589974239,8.69181854157572,9.39082691282441,10.2625945366661,7.18461538461538,550.184285027509,309,56163,0,1,0,0,9 +"14114",2014,47157,"TN","47","157",937949,0.424972999598059,70597,0.122859558462134,11.1647429296606,11.6947468967225,12.5986348682828,7.63076923076923,481.661839438981,2724,565542,0,1,0,0,9 +"14115",2014,47159,"TN","47","159",19104,0.966760887772194,1124,0.136777638190955,7.02464903045364,7.73630709654828,8.63817111796914,6.41538461538462,534.66405275352,60,11222,0,1,0,0,9 +"14116",2014,47161,"TN","47","161",13211,0.958746499129513,716,0.145106350768299,6.57368016696065,7.35564110297425,8.23668532271246,9.26923076923077,720.461095100865,55,7634,0,1,0,0,9 +"14117",2014,47163,"TN","47","163",156509,0.962411107348459,9074,0.145250432882454,9.11316846022391,9.86235300917757,10.7385031509453,6.67692307692308,547.539933986113,496,90587,0,1,0,0,9 +"14118",2014,47165,"TN","47","165",172380,0.907013574660633,10011,0.126418378002088,9.21143976741948,10.069467984117,10.8583064501156,5.27692307692308,391.948317970535,398,101544,0,1,0,0,9 +"14119",2014,47167,"TN","47","167",61625,0.793703853955375,3941,0.124705882352941,8.279189777195,8.98481899587601,9.81858304544568,8.29230769230769,560.587650502596,203,36212,0,1,0,0,9 +"14120",2014,47169,"TN","47","169",8001,0.888888888888889,510,0.141107361579803,6.23441072571837,6.89972310728487,7.78572089653462,7.07692307692308,632.777894958869,30,4741,0,1,0,0,9 +"14121",2014,47171,"TN","47","171",17957,0.988026953277274,914,0.153477752408531,6.81783057145415,7.65681009148038,8.5387589693308,9.16153846153846,547.516621040282,56,10228,0,1,0,0,9 +"14122",2014,47173,"TN","47","173",18992,0.988890058972199,1060,0.143481465880371,6.96602418710611,7.76302130901852,8.63621989783788,7.93076923076923,718.778077268643,80,11130,0,1,0,0,9 +"14123",2014,47175,"TN","47","175",5696,0.985428370786517,294,0.165905898876405,5.68357976733868,6.55819780281227,7.39510754656249,9.64615384615385,765.228037955311,25,3267,0,1,0,0,9 +"14124",2014,47177,"TN","47","177",39993,0.947790863401095,2318,0.130622859000325,7.7484600238997,8.57395152523485,9.34914533485336,6.81538461538462,517.233885339245,119,23007,0,1,0,0,9 +"14125",2014,47179,"TN","47","179",125821,0.933151063812877,11635,0.129533225773122,9.36177307573639,9.65412835440351,10.555135425918,6.30769230769231,444.13400458631,337,75878,0,1,0,0,9 +"14126",2014,47181,"TN","47","181",16857,0.928219730675684,1108,0.132467224298511,7.01031186730723,7.74196789982069,8.365672383775,8.73076923076923,597.072419106317,62,10384,0,1,0,0,9 +"14127",2014,47183,"TN","47","183",34003,0.900449960297621,4261,0.123930241449284,8.35725915349991,8.18144069571937,9.2137346050442,8.6,469.99455795775,95,20213,0,1,0,0,9 +"14128",2014,47185,"TN","47","185",26279,0.968415845351802,1490,0.139350812435785,7.3065313989395,8.03073492409854,8.92864037120195,7.42307692307692,782.451681936735,117,14953,0,1,0,0,9 +"14129",2014,47187,"TN","47","187",205395,0.910830351274374,10132,0.127758708829329,9.22345401112157,10.3254819625955,11.0213794559362,4.54615384615385,190.096478168345,226,118887,0,1,0,0,9 +"14130",2014,47189,"TN","47","189",125253,0.907171884106568,6911,0.131677484770824,8.8408696240914,9.76359310138207,10.5412277258243,5.3,394.70660592871,292,73979,0,1,0,0,9 +"14131",2014,48001,"TX","48","001",57846,0.759551222210697,3562,0.118538879092764,8.17807746384961,9.13550906135318,9.42416059582951,4.71538461538462,604.752770673487,227,37536,0,1,0,0,9 +"14132",2014,48003,"TX","48","003",17424,0.951962809917355,1271,0.100321395775941,7.14755927118945,7.6434829070772,8.45977592054629,3.03846153846154,363.342753330642,36,9908,0,1,0,0,9 +"14133",2014,48005,"TX","48","005",87575,0.820256922637739,5994,0.119703111618613,8.69851424787661,9.2762217410897,10.1281499498196,5.30769230769231,463.765778118321,230,49594,0,1,0,0,9 +"14134",2014,48007,"TX","48","007",24573,0.94375941073536,1316,0.154030846864445,7.18235211188526,7.77485576666552,8.80071662871916,5.60769230769231,553.617473077506,73,13186,0,1,0,0,9 +"14135",2014,48009,"TX","48","009",8842,0.970821081203348,495,0.148269622257408,6.20455776256869,6.86171134048073,7.82883452758809,4.54615384615385,275.699094131548,14,5078,0,1,0,0,9 +"14136",2014,48013,"TX","48","013",47730,0.966687617850409,3092,0.116551435156086,8.03657340970731,8.66785206770135,9.4934871756262,5.00769230769231,505.145700606929,134,26527,0,1,0,0,9 +"14137",2014,48015,"TX","48","015",28975,0.885452976704055,1670,0.147575496117343,7.4205789054108,8.10922495308995,8.99788945020072,4.83846153846154,405.231165960582,66,16287,0,1,0,0,9 +"14138",2014,48019,"TX","48","019",20800,0.971105769230769,893,0.188990384615385,6.7945865808765,7.56682847920833,8.69517199877606,4.82307692307692,427.423491195076,50,11698,0,1,0,0,9 +"14139",2014,48021,"TX","48","021",77726,0.884658930087744,4523,0.139875974577362,8.41693076947784,9.19003561863582,9.99442454752823,4.93076923076923,484.107686578607,221,45651,0,1,0,0,9 +"14140",2014,48023,"TX","48","023",3569,0.960212944802466,182,0.143737741664332,5.2040066870768,5.8664680569333,6.84374994900622,4.3,591.080064481462,11,1861,0,1,0,0,9 +"14141",2014,48025,"TX","48","025",32847,0.894967576947666,2931,0.1022620026182,7.98309894071089,8.46653127661401,8.87696334026227,5.88461538461539,374.212495855241,79,21111,0,1,0,0,9 +"14142",2014,48027,"TX","48","027",330436,0.695184544056943,31730,0.0914034790398141,10.3650178845772,10.6252707796324,11.4900047815857,5.9,321.222580267465,631,196437,0,1,0,0,9 +"14143",2014,48029,"TX","48","029",1857977,0.864045141570644,145835,0.104295693649598,11.8902311246178,12.4157539865551,13.2349274847818,4.73076923076923,331.409602742401,3666,1106184,0,1,0,0,9 +"14144",2014,48031,"TX","48","031",10807,0.964189876931618,488,0.181178865550106,6.19031540585315,7.04228617193974,8.01301211036892,3.72307692307692,458.865945591609,28,6102,0,1,0,0,9 +"14145",2014,48035,"TX","48","035",17715,0.962856336438047,845,0.148969799604855,6.73933662735717,7.51806418123308,8.45083969086622,5.23076923076923,537.287771330325,50,9306,0,1,0,0,9 +"14146",2014,48037,"TX","48","037",93337,0.720732399798579,6110,0.122084489537911,8.71768205216564,9.39847831409158,10.1707628152102,6.37692307692308,487.230873889941,265,54389,0,1,0,0,9 +"14147",2014,48039,"TX","48","039",337632,0.785769713771207,20811,0.114147948061795,9.94323697205341,10.8042584727522,11.5003365561298,5.15384615384615,317.762635258824,644,202667,0,1,0,0,9 +"14148",2014,48041,"TX","48","041",209039,0.813934241935715,45835,0.0787939092705189,10.7328032703959,9.97273372527294,11.0914376765564,4.05384615384615,201.330403103291,273,135598,0,1,0,0,9 +"14149",2014,48043,"TX","48","043",9148,0.95124617402711,554,0.15052470485352,6.31716468674728,6.92264389147589,7.89431806384162,4.69230769230769,387.81163434903,21,5415,0,1,0,0,9 +"14150",2014,48047,"TX","48","047",7237,0.970015199668371,546,0.110266685090507,6.3026189757449,6.52941883826223,7.51207124583547,7.83076923076923,598.313842806636,22,3677,0,1,0,0,9 +"14151",2014,48049,"TX","48","049",37544,0.94097592158534,2259,0.131552311953974,7.722677516468,8.3707791729607,9.25013784185025,5.23076923076923,646.624523476331,134,20723,0,1,0,0,9 +"14152",2014,48051,"TX","48","051",17388,0.852829537612146,976,0.152288934897631,6.88346258641309,7.49498623395053,8.50126704086598,4.82307692307692,466.853408029879,45,9639,0,1,0,0,9 +"14153",2014,48053,"TX","48","053",43957,0.95693518665969,2399,0.147667038241918,7.7828072628397,8.47741232140439,9.42197798310419,4.36153846153846,416.565558521395,103,24726,0,1,0,0,9 +"14154",2014,48055,"TX","48","055",39670,0.900453743382909,3279,0.121199899168137,8.09529377684465,8.50936261230105,9.35244738860101,5.27692307692308,422.517178097392,99,23431,0,1,0,0,9 +"14155",2014,48057,"TX","48","057",21799,0.905041515665856,1479,0.126244323134089,7.2991214627108,7.82003798945875,8.68406264365127,4.83846153846154,406.50406504065,50,12300,0,1,0,0,9 +"14156",2014,48059,"TX","48","059",13508,0.964761622742079,654,0.149689073141842,6.4831073514572,7.31521838975297,8.24275634571448,4.49230769230769,639.232920495406,48,7509,0,1,0,0,9 +"14157",2014,48061,"TX","48","061",418698,0.97697863376467,31729,0.0950303082412622,10.3649863681651,10.8707945404262,11.6609574637893,8.41538461538462,313.370787530097,695,221782,0,1,0,0,9 +"14158",2014,48063,"TX","48","063",12654,0.794847479058005,817,0.126758337284653,6.70563909486,7.25276241805319,8.17779668327778,6.17692307692308,570.843091334895,39,6832,0,1,0,0,9 +"14159",2014,48065,"TX","48","065",6035,0.966694283347142,311,0.143993371996686,5.73979291217923,6.52356230614951,7.40610338123702,3.4,360.46860919195,12,3329,0,1,0,0,9 +"14160",2014,48067,"TX","48","067",30119,0.810352269331651,1600,0.142567814336465,7.37775890822787,8.13270648969326,9.0441677169216,7.72307692307692,629.430457100953,103,16364,0,1,0,0,9 +"14161",2014,48069,"TX","48","069",7912,0.949191102123357,530,0.122345803842265,6.27287700654617,6.80572255341699,7.61529833982581,4.01538461538462,365.675280351048,15,4102,0,1,0,0,9 +"14162",2014,48071,"TX","48","071",38287,0.887063494136391,2364,0.116593099485465,7.76811037852599,8.57715877258367,9.3160508263983,5.83076923076923,387.441549766199,87,22455,0,1,0,0,9 +"14163",2014,48073,"TX","48","073",51187,0.823334049661047,3342,0.123918182350988,8.11432470915534,8.73311069763871,9.50903656569106,5.86923076923077,443.309571940277,125,28197,0,1,0,0,9 +"14164",2014,48077,"TX","48","077",10380,0.96849710982659,505,0.163583815028902,6.22455842927536,7.02286808608264,7.97212112892166,4.60769230769231,465.276581078752,27,5803,0,1,0,0,9 +"14165",2014,48083,"TX","48","083",8422,0.944431251484208,376,0.152220375207789,5.9295891433899,6.80572255341699,7.69984240739699,6.16923076923077,789.177001127396,35,4435,0,1,0,0,9 +"14166",2014,48085,"TX","48","085",884410,0.754513178277043,49266,0.104557840820434,10.8049894669368,11.8899156498943,12.5212774682933,4.61538461538461,183.318227415101,985,537317,0,1,0,0,9 +"14167",2014,48089,"TX","48","089",20695,0.845614882821938,1189,0.150229524039623,7.08086789669078,7.65349490966125,8.61721950548336,4.5,401.965163019205,45,11195,0,1,0,0,9 +"14168",2014,48091,"TX","48","091",123268,0.953264431969368,6658,0.148027062984716,8.80357441813497,9.59580683357766,10.4891887109472,4.60769230769231,348.638615608283,247,70847,0,1,0,0,9 +"14169",2014,48093,"TX","48","093",13470,0.971269487750557,714,0.136896807720861,6.57088296233958,7.20191631753163,8.15708378502887,4.87692307692308,498.788656120849,35,7017,0,1,0,0,9 +"14170",2014,48097,"TX","48","097",38772,0.937196946249871,2597,0.13986897761271,7.86211221166275,8.32869258354557,9.29706837548601,3.90769230769231,539.867109634552,117,21672,0,1,0,0,9 +"14171",2014,48099,"TX","48","099",76245,0.76385336743393,8089,0.0811200734474392,8.99826039301795,9.31054763239321,10.0969138890622,6.03076923076923,259.185535373642,125,48228,0,1,0,0,9 +"14172",2014,48111,"TX","48","111",7214,0.942750207929027,510,0.103548655392293,6.23441072571837,6.78671695060508,7.56475701290573,2.95384615384615,491.159135559921,20,4072,0,1,0,0,9 +"14173",2014,48113,"TX","48","113",2519407,0.686505594372009,182598,0.103589455772727,12.1150422941805,12.7785228615637,13.5578842516257,5.5,325.981629216927,4999,1533522,0,1,0,0,9 +"14174",2014,48115,"TX","48","115",13451,0.909597799420117,1153,0.101256412162664,7.05012252026906,7.38087903556412,8.03365842788615,4.92307692307692,428.961393474587,33,7693,0,1,0,0,9 +"14175",2014,48117,"TX","48","117",19116,0.95679012345679,1357,0.105618330194601,7.21303165983487,7.71020519443253,8.52456594574565,3.66923076923077,341.897040148481,35,10237,0,1,0,0,9 +"14176",2014,48119,"TX","48","119",5137,0.885341639088962,260,0.147362273700603,5.56068163101553,6.3026189757449,7.24351297466548,6.10769230769231,712.250712250712,20,2808,0,1,0,0,9 +"14177",2014,48121,"TX","48","121",752355,0.807698493397399,51682,0.101877438177456,10.8528648373981,11.6823728372806,12.3866384953055,4.50769230769231,195.878062719221,922,470701,0,1,0,0,9 +"14178",2014,48123,"TX","48","123",20519,0.888249914713193,1049,0.135143038159754,6.9555926083963,7.84149292446001,8.54675199365778,3.88461538461538,634.267592354504,74,11667,0,1,0,0,9 +"14179",2014,48127,"TX","48","127",10993,0.969344128081506,783,0.109706176657873,6.6631326959908,7.11476944836646,7.96693349840484,3.84615384615385,479.123887748118,28,5844,0,1,0,0,9 +"14180",2014,48131,"TX","48","131",11487,0.97266475145817,871,0.104465917994254,6.7696419768525,7.17242457712485,7.95155933115525,5.63846153846154,786.643120886177,49,6229,0,1,0,0,9 +"14181",2014,48133,"TX","48","133",18259,0.956514595541925,1184,0.138726107672928,7.07665381544395,7.51643330291563,8.47928361834302,4.90769230769231,640.099112120586,62,9686,0,1,0,0,9 +"14182",2014,48135,"TX","48","135",154553,0.917788719727213,13303,0.098361080017858,9.49574485268391,9.82536383575455,10.685789644407,3.48461538461538,471.72982542635,421,89246,0,1,0,0,9 +"14183",2014,48139,"TX","48","139",159239,0.881536558255201,10508,0.120422760755845,9.25989215080543,9.9631705546973,10.7627633896827,4.98461538461538,351.998966608538,327,92898,0,1,0,0,9 +"14184",2014,48141,"TX","48","141",833370,0.930901040354224,72933,0.0986380599253633,11.1972964904675,11.5606388591547,12.400549196829,6.5,289.874485394303,1385,477793,0,1,0,0,9 +"14185",2014,48143,"TX","48","143",40525,0.957137569401604,5899,0.104429364589759,8.68253812400308,8.30052860619974,9.37737907190562,4.30769230769231,350.143046244502,82,23419,0,1,0,0,9 +"14186",2014,48145,"TX","48","145",17211,0.726570216721864,1206,0.12817384231015,7.09506437728713,7.63094658089046,8.62389281007529,5.56923076923077,396.825396825397,40,10080,0,1,0,0,9 +"14187",2014,48147,"TX","48","147",33606,0.905314527167768,2191,0.133250014878296,7.69211333959547,8.32724260745779,9.08000387024818,5.38461538461538,494.469082938268,97,19617,0,1,0,0,9 +"14188",2014,48149,"TX","48","149",24761,0.913250676467025,1218,0.154921045192036,7.10496544826984,7.81480342948936,8.7984546960651,3.47692307692308,409.929401047597,54,13173,0,1,0,0,9 +"14189",2014,48157,"TX","48","157",683977,0.581697922590964,40567,0.120096143583775,10.6107102072006,11.5603337223652,12.262235564029,4.57692307692308,206.519312346506,851,412068,0,1,0,0,9 +"14190",2014,48159,"TX","48","159",10561,0.933623709875959,522,0.140801060505634,6.25766758788264,6.97447891102505,7.95120715647297,5.20769230769231,564.274378416505,32,5671,0,1,0,0,9 +"14191",2014,48161,"TX","48","161",19678,0.81121048887082,935,0.134922248195955,6.84054652928869,7.86018505747217,8.52038808231276,5.69230769230769,473.806543894153,53,11186,0,1,0,0,9 +"14192",2014,48163,"TX","48","163",18930,0.925726360274696,1979,0.0922873745377707,7.59034694560257,7.74889133725553,8.32796785830549,3.62307692307692,495.794599380257,56,11295,0,1,0,0,9 +"14193",2014,48165,"TX","48","165",19319,0.959055851752161,1313,0.0889279983435996,7.1800698743028,7.71423114484909,8.50815244676409,3.3,352.181569164547,36,10222,0,1,0,0,9 +"14194",2014,48167,"TX","48","167",313451,0.815052432437606,20144,0.131829217325834,9.91066175628413,10.612458868443,11.4631783430628,5.69230769230769,438.68944178358,828,188744,0,1,0,0,9 +"14195",2014,48171,"TX","48","171",25476,0.975349348406343,1211,0.155636677657403,7.09920174355309,7.76131918094799,8.79905837854645,3.57692307692308,312.891113892365,40,12784,0,1,0,0,9 +"14196",2014,48177,"TX","48","177",20331,0.897939107766465,1337,0.126899808174709,7.19818357710194,7.72885582385254,8.60465446718623,3.90769230769231,435.904278978739,49,11241,0,1,0,0,9 +"14197",2014,48179,"TX","48","179",23425,0.91607257203842,1392,0.11598719316969,7.23849684089437,8.03138533062553,8.66957087183712,4.06923076923077,542.315918117935,71,13092,0,1,0,0,9 +"14198",2014,48181,"TX","48","181",123628,0.897903387582101,7936,0.134289966674216,8.97916464896471,9.55867059537935,10.4841377018689,4.91538461538462,487.066318150005,341,70011,0,1,0,0,9 +"14199",2014,48183,"TX","48","183",123225,0.761858389125583,9256,0.118774599310205,9.13302726887351,9.59069277926927,10.4843055481222,4.93846153846154,504.063659275621,356,70626,0,1,0,0,9 +"14200",2014,48185,"TX","48","185",26998,0.814986295281132,1742,0.144344025483369,7.46278915741245,8.11731246160197,8.83622857152601,4.83076923076923,602.854330708661,98,16256,0,1,0,0,9 +"14201",2014,48187,"TX","48","187",146832,0.883676582761251,9187,0.112720660346518,9.12554472027147,9.92230930677672,10.6754921231736,4.37692307692308,317.166799307149,271,85444,0,1,0,0,9 +"14202",2014,48189,"TX","48","189",34435,0.91467983156672,2853,0.103441266153623,7.9561263512135,8.29404964010203,9.09076823683534,9.47692307692308,396.192436326216,77,19435,0,1,0,0,9 +"14203",2014,48193,"TX","48","193",8164,0.965213130818226,435,0.142209701126899,6.07534603108868,6.71780469502369,7.65681009148038,4.66923076923077,614.657210401891,26,4230,0,1,0,0,9 +"14204",2014,48199,"TX","48","199",55516,0.92933568700915,3248,0.132394264716478,8.08579470128157,8.84750362592364,9.6955404481032,6.36923076923077,535.008864972472,172,32149,0,1,0,0,9 +"14205",2014,48201,"TX","48","201",4454951,0.712909075767612,324532,0.105005195343338,12.6901394235155,13.3636469982606,14.1222692589448,5.05384615384615,308.344539552456,8367,2713523,0,1,0,0,9 +"14206",2014,48203,"TX","48","203",66605,0.75630958636739,4448,0.13195706028076,8.40020983593042,8.98243550356026,9.86972392238332,5.57692307692308,473.921375666857,183,38614,0,1,0,0,9 +"14207",2014,48207,"TX","48","207",5811,0.93219755635863,405,0.13543279986233,6.00388706710654,6.47850964220857,7.27931883541462,3.98461538461538,714.507611059335,23,3219,0,1,0,0,9 +"14208",2014,48209,"TX","48","209",184764,0.924114004892728,24242,0.103894698101362,10.0958419450305,10.0675602742733,10.9563176485491,4.33846153846154,229.022980970113,262,114399,0,1,0,0,9 +"14209",2014,48213,"TX","48","213",79331,0.915316837049829,4490,0.143071434874135,8.4096079807363,9.06253617720779,10.0064050865428,5.66153846153846,644.552381390852,280,43441,0,1,0,0,9 +"14210",2014,48215,"TX","48","215",829065,0.97458824097025,65713,0.0800166452570064,11.0930520540012,11.5887469681907,12.3299923686993,8.88461538461539,258.446223129797,1134,438776,0,1,0,0,9 +"14211",2014,48217,"TX","48","217",34778,0.910690666513313,1952,0.13407901546955,7.57660976697304,8.20467182895081,9.15005944109125,5.35384615384615,484.053138277846,90,18593,0,1,0,0,9 +"14212",2014,48219,"TX","48","219",23446,0.933037618357076,1994,0.113068327219995,7.59789795052178,7.83794891602528,8.77400360020093,3.90769230769231,457.875457875458,60,13104,0,1,0,0,9 +"14213",2014,48221,"TX","48","221",53827,0.972058632284913,2675,0.15154104817285,7.89170465933011,8.58746524440157,9.59560277276683,5,486.094232839137,140,28801,0,1,0,0,9 +"14214",2014,48223,"TX","48","223",35686,0.90363167628762,2184,0.128201535616208,7.6889133368648,8.33423142973486,9.2093398716426,4.76153846153846,477.747045511692,95,19885,0,1,0,0,9 +"14215",2014,48225,"TX","48","225",22807,0.72333055640812,1280,0.137720875169904,7.15461535691366,7.94058382710424,8.65312170864048,5.00769230769231,508.191747572816,67,13184,0,1,0,0,9 +"14216",2014,48227,"TX","48","227",36513,0.895434502779832,2869,0.115958699641224,7.96171881598136,8.40514368760761,9.10609035060238,4.43076923076923,507.548152004164,117,23052,0,1,0,0,9 +"14217",2014,48231,"TX","48","231",88664,0.882206983668682,6178,0.128767030587386,8.72874987347853,9.24888778158842,10.1599498190432,6,572.399781198719,293,51188,0,1,0,0,9 +"14218",2014,48233,"TX","48","233",21917,0.937537071679518,1307,0.136423780626911,7.17548971362422,7.89245204352035,8.70433643848941,4.43076923076923,488.042947779405,60,12294,0,1,0,0,9 +"14219",2014,48237,"TX","48","237",8881,0.939871636077018,651,0.118229929062043,6.47850964220857,6.9782137426307,7.64778604544093,3.79230769230769,476.281196418365,25,5249,0,1,0,0,9 +"14220",2014,48239,"TX","48","239",14723,0.910140596345853,863,0.132853358690484,6.76041469108343,7.41397029019044,8.28752842311176,3.98461538461538,468.557336621455,38,8110,0,1,0,0,9 +"14221",2014,48241,"TX","48","241",35425,0.816429075511644,1994,0.138546224417784,7.59789795052178,8.25868149626424,9.19064773863045,8.25384615384615,591.655615627869,116,19606,0,1,0,0,9 +"14222",2014,48245,"TX","48","245",252896,0.598487125142351,18943,0.12412216879666,9.84918974912828,10.357584082056,11.1750722752721,8.39230769230769,491.447368421053,747,152000,0,1,0,0,9 +"14223",2014,48249,"TX","48","249",41525,0.972354003612282,2942,0.115015051173992,7.98684490116138,8.47156801338996,9.35573857466554,5.29230769230769,510.540909290964,116,22721,0,1,0,0,9 +"14224",2014,48251,"TX","48","251",156735,0.94219542539956,9745,0.120630363352155,9.18450961194166,9.91595945403145,10.7167927240899,5.11538461538461,390.625,356,91136,0,1,0,0,9 +"14225",2014,48253,"TX","48","253",19851,0.841468943630044,1538,0.117122563095058,7.33823815006559,7.9973268229981,8.29304913976844,5.59230769230769,403.963414634146,53,13120,0,1,0,0,9 +"14226",2014,48255,"TX","48","255",14907,0.896894076608305,1213,0.112229154088683,7.10085190894405,7.57763383260273,8.10892415597534,3.72307692307692,380.186834673039,35,9206,0,1,0,0,9 +"14227",2014,48257,"TX","48","257",110895,0.866729789440462,6262,0.118111727309617,8.74225490188635,9.65123697191561,10.3978483722709,5.22307692307692,433.423113835485,280,64602,0,1,0,0,9 +"14228",2014,48259,"TX","48","259",38379,0.968550509393158,2032,0.144923004768233,7.61677580869837,8.40603814205008,9.29320984979848,4.09230769230769,262.479493789548,56,21335,0,1,0,0,9 +"14229",2014,48265,"TX","48","265",50333,0.95315200762919,2935,0.146067192497964,7.9844627322622,8.41869794466714,9.50151633368222,4.43076923076923,401.234567901235,104,25920,0,1,0,0,9 +"14230",2014,48273,"TX","48","273",31884,0.91873667043031,4824,0.0902960732655878,8.48135873840702,8.04590874227078,9.08034557536,5.52307692307692,428.184281842818,79,18450,0,1,0,0,9 +"14231",2014,48277,"TX","48","277",49435,0.831435217962982,3219,0.127561444320825,8.07682603129881,8.6383483129727,9.55994034724295,6.18461538461538,574.399243828844,158,27507,0,1,0,0,9 +"14232",2014,48279,"TX","48","279",13491,0.924394040471425,813,0.117115113779557,6.70073110954781,7.28207365809346,8.17188200612782,5.86923076923077,587.905935050392,42,7144,0,1,0,0,9 +"14233",2014,48281,"TX","48","281",20106,0.922262011339898,1070,0.137968765542624,6.97541392745595,7.77695440332244,8.65172408437384,5.69230769230769,566.672569505932,64,11294,0,1,0,0,9 +"14234",2014,48283,"TX","48","283",7482,0.974605720395616,1172,0.0898155573376103,7.06646697013696,6.72743172485086,7.45298232946546,3.13846153846154,252.844500632111,12,4746,0,1,0,0,9 +"14235",2014,48285,"TX","48","285",19777,0.917985538757142,998,0.140719017039996,6.90575327631146,7.6177595766085,8.54985397365579,3.96923076923077,463.723311757318,48,10351,0,1,0,0,9 +"14236",2014,48287,"TX","48","287",16614,0.863970145660287,920,0.144757433489828,6.82437367004309,7.52940645783701,8.45723085024355,4.04615384615385,568.48089272555,54,9499,0,1,0,0,9 +"14237",2014,48289,"TX","48","289",16731,0.90741736895583,836,0.148885302731457,6.7286286130847,7.4151751096133,8.38799525294456,5.38461538461539,679.424753708527,60,8831,0,1,0,0,9 +"14238",2014,48291,"TX","48","291",78047,0.869194203492767,5426,0.124284085230694,8.59895749321888,9.22118139515406,10.0754220164436,7.26923076923077,541.396503391753,253,46731,0,1,0,0,9 +"14239",2014,48293,"TX","48","293",23521,0.793461162365546,1506,0.134688151013988,7.31721240835984,7.92551897978693,8.74989095553526,5.90769230769231,507.576323057401,68,13397,0,1,0,0,9 +"14240",2014,48297,"TX","48","297",12063,0.929785293873829,723,0.132802785376772,6.58340922215876,7.26262860097424,8.00670084544037,3.60769230769231,512.382578992314,36,7026,0,1,0,0,9 +"14241",2014,48299,"TX","48","299",19666,0.970914268280281,754,0.176548357571443,6.62539236800796,7.35115822643069,8.50976567558744,5.23846153846154,471.500419111484,45,9544,0,1,0,0,9 +"14242",2014,48303,"TX","48","303",294591,0.878896503966516,38266,0.10226042207671,10.5523170524449,10.3877946477413,11.3822927243348,4,380.63979395307,668,175494,0,1,0,0,9 +"14243",2014,48307,"TX","48","307",8152,0.95215897939156,426,0.143768400392542,6.05443934626937,6.74405918631135,7.66762609158499,4.28461538461538,509.849362688297,22,4315,0,1,0,0,9 +"14244",2014,48309,"TX","48","309",243182,0.812506682237995,26065,0.111529636239524,10.1683486972022,10.1937288473828,11.1710406065041,5.12307692307692,401.500078725506,561,139726,0,1,0,0,9 +"14245",2014,48313,"TX","48","313",13857,0.771956411921772,1275,0.10377426571408,7.15070145759253,7.50328963067508,8.04366335239394,4.93846153846154,341.296928327645,29,8497,0,1,0,0,9 +"14246",2014,48315,"TX","48","315",10168,0.754228953579858,472,0.168568056648308,6.15697898558556,6.90675477864855,7.97418866928601,6.53846153846154,861.462728551336,49,5688,0,1,0,0,9 +"14247",2014,48321,"TX","48","321",36463,0.845432356086992,2411,0.138194882483614,7.78779687818117,8.25971696102152,9.23327534325868,7.96153846153846,496.229627827779,102,20555,0,1,0,0,9 +"14248",2014,48323,"TX","48","323",57044,0.971776172778907,4768,0.0931210995021387,8.46968220874519,8.83695515733143,9.63371088395318,11.0615384615385,293.206826118469,89,30354,0,1,0,0,9 +"14249",2014,48325,"TX","48","325",47851,0.95038766169986,3433,0.128440366972477,8.14118979345769,8.62497078358967,9.46931428029122,4.98461538461538,377.577693871624,104,27544,0,1,0,0,9 +"14250",2014,48329,"TX","48","329",156767,0.896330222559595,12022,0.111975096799709,9.39449358359911,9.84177171055548,10.737743594056,2.90769230769231,339.237788513151,316,93150,0,1,0,0,9 +"14251",2014,48331,"TX","48","331",24147,0.87571955108295,1377,0.137946742866609,7.22766249872865,7.87321705486274,8.79406706515142,6.28461538461538,657.640232108317,85,12925,0,1,0,0,9 +"14252",2014,48335,"TX","48","335",9075,0.851349862258953,930,0.106225895316804,6.8351845861473,7.11720550316434,7.5595594960077,4.30769230769231,535.590877677954,31,5788,0,1,0,0,9 +"14253",2014,48337,"TX","48","337",19366,0.970721883713725,979,0.138386863575338,6.88653164253051,7.62997570702779,8.55852705490921,4.01538461538462,663.780663780664,69,10395,0,1,0,0,9 +"14254",2014,48339,"TX","48","339",517262,0.909397945335246,31026,0.122152796841833,10.3425808416243,11.1783194858067,11.9392253472662,4.47692307692308,314.079824797225,958,305018,0,1,0,0,9 +"14255",2014,48341,"TX","48","341",21975,0.85806598407281,1607,0.102480091012514,7.38212436573751,7.89394513823596,8.65329627440858,3.52307692307692,332.792207792208,41,12320,0,1,0,0,9 +"14256",2014,48343,"TX","48","343",12599,0.742916104452734,734,0.144138423684419,6.59850902861452,7.21964204013074,8.17948018535889,7.90769230769231,640.83891639965,44,6866,0,1,0,0,9 +"14257",2014,48347,"TX","48","347",65235,0.783367824020848,8801,0.111075342990726,9.08262063037381,8.7681075396758,9.87230643505255,5.41538461538462,384.59484001923,144,37442,0,1,0,0,9 +"14258",2014,48349,"TX","48","349",47907,0.825829210762519,2993,0.124825182123698,8.0040315078527,8.6255093348997,9.50241279272926,5.30769230769231,461.684011352886,122,26425,0,1,0,0,9 +"14259",2014,48351,"TX","48","351",14294,0.78046732894921,939,0.139499090527494,6.84481547920826,7.40974195408092,8.26230094178745,8.40769230769231,595.599854138811,49,8227,0,1,0,0,9 +"14260",2014,48353,"TX","48","353",15139,0.92410330933351,983,0.127155030054825,6.89060912014717,7.43307534889858,8.30992298925832,4.34615384615385,558.591378263509,46,8235,0,1,0,0,9 +"14261",2014,48355,"TX","48","355",356717,0.921402680556295,27035,0.11977842379253,10.2048876018161,10.6925583610662,11.5669495274144,5.18461538461538,408.436908622346,859,210314,0,1,0,0,9 +"14262",2014,48357,"TX","48","357",10709,0.965636380614436,721,0.100943131945093,6.58063913728495,7.22256601882217,7.95892649305011,3.01538461538462,485.436893203883,29,5974,0,1,0,0,9 +"14263",2014,48361,"TX","48","361",83301,0.890145376406046,5382,0.131210909833015,8.59081533128685,9.2277872855799,10.0986019311288,8.07692307692308,613.737807902133,297,48392,0,1,0,0,9 +"14264",2014,48363,"TX","48","363",28033,0.951271715478186,1698,0.137623515142867,7.43720636687129,8.04622910107538,8.97322466309509,5.22307692307692,535.794977729004,83,15491,0,1,0,0,9 +"14265",2014,48365,"TX","48","365",23749,0.821255631816076,1457,0.141395427175881,7.2841348061952,7.92443418488756,8.81075792702617,4.98461538461538,441.286462228871,59,13370,0,1,0,0,9 +"14266",2014,48367,"TX","48","367",122185,0.965560420673569,7147,0.136923517616729,8.87444796721998,9.62615177213849,10.4852840901727,4.61538461538461,387.580687886012,278,71727,0,1,0,0,9 +"14267",2014,48371,"TX","48","371",15818,0.930838285497534,1095,0.110443798204577,6.9985096422506,7.68063742756094,8.23456499326713,4.20769230769231,258.051197357556,25,9688,0,1,0,0,9 +"14268",2014,48373,"TX","48","373",45815,0.851271417657972,2787,0.151718869365928,7.93272102748195,8.58746524440157,9.37509180757667,6.51538461538462,663.975553627344,176,26507,0,1,0,0,9 +"14269",2014,48375,"TX","48","375",122019,0.815028806989075,8694,0.10901580901335,9.07038841154874,9.64101828255575,10.4157721115384,4.00769230769231,497.21196117814,354,71197,0,1,0,0,9 +"14270",2014,48379,"TX","48","379",11001,0.94891373511499,515,0.157167530224525,6.24416690066374,7.0475172213573,8.01367414283268,4.99230769230769,535.923630882599,32,5971,0,1,0,0,9 +"14271",2014,48381,"TX","48","381",128823,0.937045403382936,9420,0.123068085667932,9.15059036757041,9.67965626478542,10.5556825217646,3.5,319.556318499934,242,75730,0,1,0,0,9 +"14272",2014,48387,"TX","48","387",12443,0.802378847544804,664,0.149240536848027,6.49828214947643,7.19142933003638,8.15104494568502,7.86923076923077,643.933850431728,44,6833,0,1,0,0,9 +"14273",2014,48389,"TX","48","389",15103,0.91763225849169,1601,0.0889889425941866,7.37838371299671,7.76259604854007,8.0123496393278,4.08461538461538,487.21071863581,44,9031,0,1,0,0,9 +"14274",2014,48391,"TX","48","391",7366,0.909584577789845,481,0.130735813195764,6.17586727010576,6.66185474054531,7.57147364885127,4.31538461538462,481.866599036267,19,3943,0,1,0,0,9 +"14275",2014,48395,"TX","48","395",16457,0.769459804338579,1009,0.139515099957465,6.91671502035361,7.49443021503157,8.43054538469057,5.44615384615385,741.068465877668,67,9041,0,1,0,0,9 +"14276",2014,48397,"TX","48","397",87138,0.896990979825105,4538,0.114301452867865,8.42024166533979,9.48524111006323,10.1552963030641,4.57692307692308,248.192723619674,126,50767,0,1,0,0,9 +"14277",2014,48399,"TX","48","399",10297,0.94542099640672,529,0.137224434301253,6.2709884318583,6.97541392745595,7.8995244720322,4.3,490.641468290024,27,5503,0,1,0,0,9 +"14278",2014,48401,"TX","48","401",53144,0.803195092578654,3569,0.128706909528827,8.18004072349016,8.81877816903701,9.56036323983454,5.00769230769231,504.861630516081,162,32088,0,1,0,0,9 +"14279",2014,48403,"TX","48","403",10435,0.910397700047916,470,0.16032582654528,6.1527326947041,6.80128303447162,7.89095671613892,10.7,549.554671214705,29,5277,0,1,0,0,9 +"14280",2014,48405,"TX","48","405",8479,0.756339190942328,449,0.155324920391556,6.10702288774225,6.68461172766793,7.72973533138505,9.66923076923077,993.816254416961,45,4528,0,1,0,0,9 +"14281",2014,48407,"TX","48","407",27066,0.875304810463312,1487,0.159166481933053,7.30451594646016,7.97315543344413,8.92850782431329,5.83076923076923,719.089153738598,108,15019,0,1,0,0,9 +"14282",2014,48409,"TX","48","409",66654,0.954061271641612,4484,0.113151498784769,8.40827078419205,8.99776577201121,9.82401135103433,6.31538461538462,500.977844455756,187,37327,0,1,0,0,9 +"14283",2014,48415,"TX","48","415",17367,0.922093625842114,1295,0.118443024126216,7.16626597413364,7.65349490966125,8.36450810375059,3.36153846153846,446.73880671101,45,10073,0,1,0,0,9 +"14284",2014,48419,"TX","48","419",25604,0.794094672707389,1639,0.124511795032026,7.40184157874383,8.01002752848173,8.86333283343959,5.93076923076923,630.89246473382,89,14107,0,1,0,0,9 +"14285",2014,48423,"TX","48","423",219678,0.787438887826728,16280,0.11909704203425,9.69769263955653,10.1631944431574,11.0782272015918,5.27692307692308,391.046169195861,486,124282,0,1,0,0,9 +"14286",2014,48425,"TX","48","425",8559,0.960042060988433,488,0.14043696693539,6.19031540585315,6.92951677076365,7.80588204022862,5.2,309.533635988444,15,4846,0,1,0,0,9 +"14287",2014,48427,"TX","48","427",62901,0.99108122287404,5238,0.0814931400136723,8.56369502506766,8.94819608331224,9.73566044189263,13.7769230769231,340.456576587531,112,32897,0,1,0,0,9 +"14288",2014,48429,"TX","48","429",9335,0.952865559721478,654,0.128655597214783,6.4831073514572,6.91968384984741,7.77359446736019,4.42307692307692,320.81524816003,17,5299,0,1,0,0,9 +"14289",2014,48439,"TX","48","439",1946907,0.76383309526341,133272,0.108607139426793,11.8001474315896,12.5093573612094,13.3004325723764,5.1,306.821933790786,3587,1169082,0,1,0,0,9 +"14290",2014,48441,"TX","48","441",135049,0.879236425297485,14869,0.106235514516953,9.60703378769722,9.56113807874204,10.5798954090918,4.28461538461538,481.065270935961,375,77952,0,1,0,0,9 +"14291",2014,48445,"TX","48","445",12796,0.929665520475148,949,0.110737730540794,6.85540879860993,7.23561914106675,8.04686951095958,4.36153846153846,363.738108561835,26,7148,0,1,0,0,9 +"14292",2014,48449,"TX","48","449",32484,0.857960842260805,2334,0.106052210318926,7.7553388128465,8.29129585190541,9.09448048588165,6.37692307692308,427.759329093263,76,17767,0,1,0,0,9 +"14293",2014,48451,"TX","48","451",116366,0.922073457882887,10660,0.116013268480484,9.27425369771984,9.43059976811053,10.4312882805081,4.09230769230769,413.762746680361,282,68155,0,1,0,0,9 +"14294",2014,48453,"TX","48","453",1152411,0.820928470832021,84340,0.102486873172852,11.3426115273006,12.1063462284894,12.8284190713667,4.13846153846154,214.614919892046,1627,758102,0,1,0,0,9 +"14295",2014,48455,"TX","48","455",14303,0.888484933230791,676,0.160875340837587,6.51619307604296,7.25841215059531,8.28475659319044,6.09230769230769,673.534072900159,51,7572,0,1,0,0,9 +"14296",2014,48457,"TX","48","457",21469,0.870184917788439,1467,0.135590851926033,7.29097477814298,7.79523492900217,8.56331312702979,8.06923076923077,699.975862901279,87,12429,0,1,0,0,9 +"14297",2014,48459,"TX","48","459",40303,0.89430067240652,2348,0.143438453713123,7.76131918094799,8.42068229103539,9.35556562412896,5.2,464.362377885837,106,22827,0,1,0,0,9 +"14298",2014,48463,"TX","48","463",27017,0.966946737239516,2134,0.104933930488211,7.6657534318617,8.03008409426756,8.87766093359367,5.76923076923077,368.926632326326,53,14366,0,1,0,0,9 +"14299",2014,48465,"TX","48","465",48821,0.959791892833002,4073,0.0915589602834846,8.31213510764841,8.65903991564447,9.45844966930814,5.82307692307692,318.973281296908,85,26648,0,1,0,0,9 +"14300",2014,48467,"TX","48","467",52782,0.95210488424084,2765,0.140824523511803,7.92479591395644,8.70533113353163,9.59349170248776,5.36153846153846,572.380060360079,165,28827,0,1,0,0,9 +"14301",2014,48469,"TX","48","469",91037,0.905258301569691,6307,0.123202653866011,8.74941540666365,9.26407069439715,10.1725982394025,4.2,427.153082429,222,51972,0,1,0,0,9 +"14302",2014,48471,"TX","48","471",70064,0.740551495775291,10702,0.110227791733272,9.27818591887125,9.13248693277132,9.7853794640558,5.5,282.663316582915,135,47760,0,1,0,0,9 +"14303",2014,48473,"TX","48","473",46793,0.703908704293377,7086,0.108819695253564,8.86587628542542,8.42639282708974,9.49687178267057,5.17692307692308,368.646434555949,99,26855,0,1,0,0,9 +"14304",2014,48475,"TX","48","475",11571,0.922219341457091,774,0.109929997407311,6.65157187358973,7.1777824161952,8.05261481881557,3.61538461538462,575.965130759651,37,6424,0,1,0,0,9 +"14305",2014,48477,"TX","48","477",34384,0.793712191717078,2289,0.139338064215914,7.73587031995257,8.1961611392829,9.14569517848265,4.65384615384615,432.553668695931,81,18726,0,1,0,0,9 +"14306",2014,48479,"TX","48","479",267258,0.979892089291995,21839,0.0797282027104895,9.99145264126477,10.4777385781522,11.2154219866874,5.13846153846154,285.284867377327,410,143716,0,1,0,0,9 +"14307",2014,48481,"TX","48","481",41082,0.842461418626162,2800,0.130908913879558,7.9373746961633,8.41383067842108,9.34940642009918,4.73846153846154,308.695652173913,71,23000,0,1,0,0,9 +"14308",2014,48483,"TX","48","483",5701,0.94018593229258,339,0.13085423609893,5.82600010738045,6.47543271670409,7.3304052118444,3.6,580.08378988076,18,3103,0,1,0,0,9 +"14309",2014,48485,"TX","48","485",132721,0.844734442929152,12653,0.1161986422646,9.44564962018926,9.60568780189606,10.5152619746303,4.93846153846154,473.37880484577,372,78584,0,1,0,0,9 +"14310",2014,48487,"TX","48","487",12991,0.883765683935032,898,0.133015164344546,6.8001700683022,7.25488481007734,8.20930841164694,4.97692307692308,556.762629005975,41,7364,0,1,0,0,9 +"14311",2014,48489,"TX","48","489",21926,0.958861625467482,2161,0.0964152148134635,7.67832635650689,7.9391588179568,8.58485183989005,12.5076923076923,421.085464753587,54,12824,0,1,0,0,9 +"14312",2014,48491,"TX","48","491",488446,0.851656068429263,27229,0.101223062528918,10.2120378607922,11.2928771185633,11.9088990036448,4.42307692307692,204.624443880804,597,291754,0,1,0,0,9 +"14313",2014,48493,"TX","48","493",46147,0.964873122846556,2598,0.137842113246798,7.86249719723055,8.65591111072806,9.50740330623372,4.20769230769231,454.613206141005,122,26836,0,1,0,0,9 +"14314",2014,48495,"TX","48","495",7818,0.944231261192121,533,0.105653619851624,6.27852142416584,6.85540879860993,7.6275443904885,4.44615384615385,549.45054945055,24,4368,0,1,0,0,9 +"14315",2014,48497,"TX","48","497",61668,0.965200752416164,3699,0.130975546474671,8.21581779183245,8.92119055624937,9.78779607803994,4.93846153846154,434.576705574282,156,35897,0,1,0,0,9 +"14316",2014,48499,"TX","48","499",42791,0.930920053282232,2355,0.14933046668692,7.76429600645052,8.3133619511344,9.30991417687228,6.04615384615385,562.409288824383,124,22048,0,1,0,0,9 +"14317",2014,48501,"TX","48","501",8392,0.960795996186845,597,0.104385128693994,6.3919171133926,6.8001700683022,7.69621263934641,3.06153846153846,498.640072529465,22,4412,0,1,0,0,9 +"14318",2014,48503,"TX","48","503",18267,0.962062736081458,1015,0.140909837411726,6.92264389147589,7.614312146452,8.51238163441901,4.13076923076923,600.961538461538,60,9984,0,1,0,0,9 +"14319",2014,48505,"TX","48","505",14359,0.989275019151752,1100,0.0841980639320287,7.00306545878646,7.42952084278646,8.23031079913502,5.26923076923077,511.784511784512,38,7425,0,1,0,0,9 +"14320",2014,48507,"TX","48","507",12254,0.974702138077363,1143,0.100375387628529,7.04141166379481,7.23489842031483,8.05484022110102,12.3,456.343170063888,30,6574,0,1,0,0,9 +"14321",2014,49001,"UT","49","001",6428,0.959396390790292,385,0.118699439950218,5.95324333428778,6.6631326959908,7.3790081276283,3.83846153846154,452.079566003617,15,3318,0,1,0,0,9 +"14322",2014,49003,"UT","49","003",51309,0.965347210041123,3168,0.10590734568984,8.06085575293432,8.75557997214314,9.50442689210096,3.69230769230769,318.05909981878,86,27039,0,1,0,0,9 +"14323",2014,49005,"UT","49","005",117956,0.946047678795483,17420,0.0761979043032995,9.76537425040649,9.47424191576256,10.3939369845493,3.06153846153846,185.682799432384,123,66242,0,1,0,0,9 +"14324",2014,49007,"UT","49","007",20642,0.963714756322062,1409,0.133901753706036,7.25063551189868,7.77359446736019,8.64347335732657,4.9,500.307206179233,57,11393,0,1,0,0,9 +"14325",2014,49011,"UT","49","011",328891,0.942640570888227,22324,0.0913159679042601,10.0134176119083,10.7183212513527,11.4103388761951,3.40769230769231,223.277200855527,404,180941,0,1,0,0,9 +"14326",2014,49013,"UT","49","013",20197,0.932465217606575,1279,0.0979353369312274,7.15383380157884,7.79523492900217,8.54636356871602,3.46923076923077,392.37668161435,42,10704,0,1,0,0,9 +"14327",2014,49015,"UT","49","015",10641,0.975848134573818,539,0.127901513015694,6.289715570909,7.12367278520461,7.9229859587112,5.08461538461538,434.861387932596,24,5519,0,1,0,0,9 +"14328",2014,49019,"UT","49","019",9464,0.928043110735418,456,0.156593406593407,6.12249280951439,7.11151211649616,7.9359451033537,6.28461538461538,321.313816494109,18,5602,0,1,0,0,9 +"14329",2014,49021,"UT","49","021",47080,0.948237043330501,5492,0.0986830926083263,8.61104776688786,8.56541176368671,9.47339670460156,4.31538461538462,287.279273757996,75,26107,0,1,0,0,9 +"14330",2014,49023,"UT","49","023",10418,0.973219427913227,636,0.0950278364369361,6.45519856334012,7.19743535409659,7.86748856869913,3.9,417.219798975915,22,5273,0,1,0,0,9 +"14331",2014,49025,"UT","49","025",7172,0.969046291132181,358,0.157975460122699,5.8805329864007,6.57228254269401,7.56786260546388,4.63846153846154,311.607374707868,12,3851,0,1,0,0,9 +"14332",2014,49027,"UT","49","027",12540,0.955741626794258,684,0.124242424242424,6.52795791762255,7.21450441415114,8.02649693894541,3.33846153846154,319.437789490497,20,6261,0,1,0,0,9 +"14333",2014,49035,"UT","49","035",1090340,0.900744721829888,79531,0.100585138580626,11.2839021617436,11.9415665890628,12.6791372103292,3.51538461538462,281.912269024851,1834,650557,0,1,0,0,9 +"14334",2014,49037,"UT","49","037",15074,0.484476582194507,1087,0.104617221706249,6.99117688712121,7.44073370738926,8.27537637483641,7.40769230769231,340.00755572346,27,7941,0,1,0,0,9 +"14335",2014,49039,"UT","49","039",28299,0.953637937736316,3022,0.0987667408742358,8.01367414283268,8.1199938277251,8.85152027169106,4.34615384615385,283.706235089303,44,15509,0,1,0,0,9 +"14336",2014,49041,"UT","49","041",20746,0.971898197242842,1169,0.111973392461197,7.06390396147207,7.85127199710988,8.57451825803551,4.3,420.168067226891,45,10710,0,1,0,0,9 +"14337",2014,49043,"UT","49","043",39144,0.966073983241365,2162,0.141886368281218,7.67878899819915,8.58951385299586,9.37771748138431,3.29230769230769,232.722436936375,56,24063,0,1,0,0,9 +"14338",2014,49045,"UT","49","045",61473,0.957965285572528,3543,0.0897955199843834,8.17272910486547,9.12761072437719,9.71275068614083,4.58461538461538,353.251107651778,118,33404,0,1,0,0,9 +"14339",2014,49047,"UT","49","047",36934,0.897330373097958,2529,0.0930308117182,7.83557924666997,8.44095988541665,9.19664704484418,3.4,371.581450653983,75,20184,0,1,0,0,9 +"14340",2014,49049,"UT","49","049",561171,0.951447954366851,71904,0.0653383727954581,11.1830871749851,11.1271747449712,11.9168427090881,3.33076923076923,179.597226807527,544,302900,0,1,0,0,9 +"14341",2014,49051,"UT","49","051",27815,0.969369045479058,1584,0.104080532087003,7.36770857237437,8.30819906320645,8.92930284224307,3.60769230769231,222.731739272846,34,15265,0,1,0,0,9 +"14342",2014,49053,"UT","49","053",151231,0.950122660036633,9620,0.106777049678968,9.17159954365975,9.70399949082026,10.5606707111625,4.18461538461538,294.535178379526,222,75373,0,1,0,0,9 +"14343",2014,49057,"UT","49","057",240185,0.942311135166642,17384,0.103303703395299,9.76330552193627,10.3474038470185,11.1252757167321,4.2,318.864580609547,439,137676,0,1,0,0,9 +"14344",2014,51001,"VA","51","001",32992,0.691349418040737,1760,0.161736178467507,7.4730690880322,8.14322675036744,9.16030943837062,6.57692307692308,588.711855252498,109,18515,0,1,0,0,9 +"14345",2014,51003,"VA","51","003",103811,0.837656895704694,6980,0.13350223001416,8.85080419575642,9.38151671766514,10.3438692525479,4.4,194.614015535854,117,60119,0,1,0,0,9 +"14346",2014,51005,"VA","51","005",15613,0.940754499455582,843,0.152757317619932,6.73696695800186,7.4500795698075,8.37678103769949,5.8,557.038412440525,48,8617,0,1,0,0,9 +"14347",2014,51007,"VA","51","007",12713,0.760009439156769,707,0.155667427043184,6.56103066589657,7.23273313617761,8.24380842366528,5.16923076923077,437.143992581799,33,7549,0,1,0,0,9 +"14348",2014,51009,"VA","51","009",32174,0.78389382731398,2278,0.148100951078511,7.73105314400713,8.18590748148232,9.18696938565294,5.31538461538462,432.877297990594,81,18712,0,1,0,0,9 +"14349",2014,51011,"VA","51","011",15343,0.78550479045819,837,0.144561037606726,6.72982407048948,7.4730690880322,8.41825644355621,5.59230769230769,516.588221788543,45,8711,0,1,0,0,9 +"14350",2014,51013,"VA","51","013",226274,0.782723600590435,14751,0.0984028213581764,9.59906615608005,10.5266145483893,11.3045350489929,3.20769230769231,125.131998998944,205,163827,0,1,0,0,9 +"14351",2014,51015,"VA","51","015",73908,0.946582237376197,4199,0.148738972776966,8.34260168068419,9.08579703690158,9.95821245222537,4.6,389.114017314423,169,43432,0,1,0,0,9 +"14352",2014,51021,"VA","51","021",6586,0.954904342544792,337,0.149407834801093,5.82008293035236,6.85435450225502,7.44483327389219,5.92307692307692,617.588932806324,25,4048,0,1,0,0,9 +"14353",2014,51023,"VA","51","023",33086,0.953061717947168,1617,0.164903584597715,7.38832785957711,8.23642052726539,9.16597042424024,4.79230769230769,391.604010025063,75,19152,0,1,0,0,9 +"14354",2014,51025,"VA","51","025",16815,0.422420457924472,1166,0.146773713945882,7.06133436691044,7.62119516280984,8.41205487329293,7.91538461538462,586.306270495876,59,10063,0,1,0,0,9 +"14355",2014,51027,"VA","51","027",23167,0.963784693745414,1273,0.157120041438253,7.14913159855741,7.97487690055888,8.80777106698004,10.2692307692308,729.720155862558,103,14115,0,1,0,0,9 +"14356",2014,51029,"VA","51","029",16936,0.637163438828531,1060,0.143717524799244,6.96602418710611,7.69575799055476,8.40110871239544,6.69230769230769,397.012950184327,42,10579,0,1,0,0,9 +"14357",2014,51031,"VA","51","031",55286,0.83418948739283,3599,0.139872662156785,8.18841130807903,8.80146947073318,9.71625395138115,5.26923076923077,385.875723516982,126,32653,0,1,0,0,9 +"14358",2014,51033,"VA","51","033",29747,0.684136215416681,1627,0.131038424042761,7.39449310721904,8.25140306538056,9.0896405867384,6.03846153846154,428.531153087116,76,17735,0,1,0,0,9 +"14359",2014,51035,"VA","51","035",29721,0.98391709565627,1508,0.154133441001312,7.3185395485679,8.19007704971905,9.03408040656082,6.58461538461538,651.504382847666,110,16884,0,1,0,0,9 +"14360",2014,51036,"VA","51","036",6975,0.431541218637993,373,0.181648745519713,5.92157841964382,6.55961523749324,7.67647364638916,5.84615384615385,418.507323878168,18,4301,0,1,0,0,9 +"14361",2014,51037,"VA","51","037",12177,0.697544551203088,699,0.148394514248173,6.54965074223381,7.17548971362422,8.13153071060425,6.62307692307692,350.672121566335,24,6844,0,1,0,0,9 +"14362",2014,51041,"VA","51","041",332221,0.713335400230569,20875,0.13236068761457,9.94630754971906,10.7278603444489,11.5515979509514,5.03076923076923,281.959138541955,561,198965,0,1,0,0,9 +"14363",2014,51043,"VA","51","043",14329,0.927629283271687,808,0.161560471770535,6.6945620585211,7.30586003268401,8.32989929299572,4.3,297.512793050101,25,8403,0,1,0,0,9 +"14364",2014,51045,"VA","51","045",5177,0.988796600347692,273,0.161097160517674,5.60947179518496,6.41836493593621,7.31055015853442,6.24615384615385,399.733510992672,12,3002,0,1,0,0,9 +"14365",2014,51047,"VA","51","047",49243,0.807525942773592,2726,0.125845297808826,7.91059061225648,8.77121506237538,9.55577234996887,4.90769230769231,376.608431844335,108,28677,0,1,0,0,9 +"14366",2014,51049,"VA","51","049",9843,0.659047038504521,610,0.141420298689424,6.41345895716736,6.98471632011827,7.97865372908273,5.99230769230769,406.288641582759,23,5661,0,1,0,0,9 +"14367",2014,51051,"VA","51","051",15345,0.990681003584229,842,0.150146627565982,6.73578001424233,7.56579328242851,8.36730010184162,9.99230769230769,800.533689126084,72,8994,0,1,0,0,9 +"14368",2014,51053,"VA","51","053",28090,0.652367390530438,1732,0.146173015307939,7.45703208912238,8.12888014212564,9.06612352121577,6.33076923076923,407.608695652174,69,16928,0,1,0,0,9 +"14369",2014,51057,"VA","51","057",11066,0.580878366166637,656,0.150822338695102,6.48616078894409,7.07496319796604,8.11969625295725,6.23846153846154,455.259026687598,29,6370,0,1,0,0,9 +"14370",2014,51059,"VA","51","059",1136794,0.68682012748132,66098,0.124578419660906,11.0988937681959,12.0235190618201,12.7838735067277,4.1,151.858145298325,1076,708556,0,1,0,0,9 +"14371",2014,51061,"VA","51","061",68135,0.890041828722389,3900,0.140823365377559,8.26873183211774,9.00466830157398,9.91768627193594,4.49230769230769,356.244239057323,143,40141,0,1,0,0,9 +"14372",2014,51063,"VA","51","063",15538,0.970137726863174,726,0.154588750160896,6.5875500148248,7.53529670244409,8.38206051742474,4.56153846153846,437.710437710438,39,8910,0,1,0,0,9 +"14373",2014,51065,"VA","51","065",25980,0.826520400307929,1309,0.137721324095458,7.1770187659099,8.15133333790043,9.05707263557296,4.30769230769231,282.318954763312,43,15231,0,1,0,0,9 +"14374",2014,51067,"VA","51","067",56265,0.90258597707278,3377,0.155816226783969,8.12474302038557,8.70913499158718,9.68657455097255,5.26153846153846,491.085392555521,157,31970,0,1,0,0,9 +"14375",2014,51069,"VA","51","069",82735,0.928724240043512,4989,0.127878165226325,8.51499076786104,9.26160366591373,10.1037718097043,4.59230769230769,333.257904589496,162,48611,0,1,0,0,9 +"14376",2014,51071,"VA","51","071",16853,0.972586483118733,900,0.142585889752566,6.80239476332431,7.64491934495886,8.4755375161474,6.07692307692308,653.730414029262,63,9637,0,1,0,0,9 +"14377",2014,51073,"VA","51","073",37038,0.893838760192235,2130,0.152951023273395,7.66387725870347,8.3584318990313,9.32223946447359,4.72307692307692,481.180015289832,107,22237,0,1,0,0,9 +"14378",2014,51075,"VA","51","075",22020,0.801362397820163,1049,0.173524069028156,6.9555926083963,7.90912218321141,8.80672355472564,4.7,282.572170459753,37,13094,0,1,0,0,9 +"14379",2014,51077,"VA","51","077",15925,0.938084772370487,837,0.158681318681319,6.72982407048948,7.58375630070711,8.3719361787591,7.6,293.427230046948,25,8520,0,1,0,0,9 +"14380",2014,51079,"VA","51","079",19131,0.903768752286864,993,0.130730228425069,6.90073066404517,7.8087293067444,8.64822145382264,4.32307692307692,397.758090761164,44,11062,0,1,0,0,9 +"14381",2014,51081,"VA","51","081",11568,0.391943291839557,790,0.133471645919779,6.67203294546107,7.4759059693674,7.82284529027977,6.32307692307692,536.578981808664,41,7641,0,1,0,0,9 +"14382",2014,51083,"VA","51","083",35205,0.616702172986792,1995,0.153926999005823,7.59839932932396,8.2398574110186,9.19624144759668,7.66153846153846,537.412153782555,104,19352,0,1,0,0,9 +"14383",2014,51085,"VA","51","085",101740,0.880342048358561,6254,0.144092785531748,8.74097653801779,9.44675546548363,10.3261702502614,4.48461538461538,328.640064059789,197,59944,0,1,0,0,9 +"14384",2014,51087,"VA","51","087",321863,0.602486150939996,19247,0.125497494275515,9.86511048341512,10.6902616788747,11.5434837675449,4.99230769230769,295.015467824876,576,195244,0,1,0,0,9 +"14385",2014,51089,"VA","51","089",52235,0.76228582368144,2698,0.149420886378865,7.9002660367677,8.64874763115654,9.61266722758384,7.53076923076923,636.249191929502,187,29391,0,1,0,0,9 +"14386",2014,51093,"VA","51","093",35887,0.739237049627999,1972,0.156212556078803,7.58680353516258,8.34450508359052,9.29099827499364,5.13846153846154,406.675080633852,87,21393,0,1,0,0,9 +"14387",2014,51095,"VA","51","095",72145,0.822898329752582,3849,0.138692910111581,8.25556865328375,8.98293776374159,9.91965613369771,4.82307692307692,256.860201927723,101,39321,0,1,0,0,9 +"14388",2014,51097,"VA","51","097",7084,0.694805194805195,395,0.174054206662902,5.97888576490112,6.65801104587075,7.62559507213245,5.63846153846154,499.168053244592,21,4207,0,1,0,0,9 +"14389",2014,51099,"VA","51","099",25284,0.792279702578706,1574,0.119917734535675,7.36137542897735,8.14554963178358,8.91811465947453,5.28461538461538,362.056480811007,55,15191,0,1,0,0,9 +"14390",2014,51101,"VA","51","101",16153,0.793784436327617,890,0.137126230421594,6.79122146272619,7.6251071482389,8.51479030679993,5.06153846153846,381.089710577814,37,9709,0,1,0,0,9 +"14391",2014,51103,"VA","51","103",10863,0.702752462487342,465,0.172880419773543,6.14203740558736,6.72623340235875,7.93128476152589,7.51538461538462,507.137490608565,27,5324,0,1,0,0,9 +"14392",2014,51105,"VA","51","105",24744,0.947906563207242,1338,0.150096993210475,7.19893124068817,8.12237124340655,8.82658783077367,8.01538461538462,660,99,15000,0,1,0,0,9 +"14393",2014,51107,"VA","51","107",362330,0.727607429691166,17180,0.0939171473518616,9.75150119553825,11.0654345130059,11.6142357896667,4.16153846153846,150.063435906997,330,219907,0,1,0,0,9 +"14394",2014,51109,"VA","51","109",34173,0.811869019401282,1728,0.156907500073157,7.454719949364,8.29654652030061,9.24290436284945,4.98461538461538,435.378143038842,89,20442,0,1,0,0,9 +"14395",2014,51111,"VA","51","111",12480,0.638942307692308,683,0.160576923076923,6.52649485957079,7.33432935030054,8.09985791073758,5.79230769230769,483.156623272044,36,7451,0,1,0,0,9 +"14396",2014,51113,"VA","51","113",13034,0.884686205309191,728,0.156667178149455,6.59030104819669,7.24779258176785,8.24012129807647,3.95384615384615,431.907139964908,32,7409,0,1,0,0,9 +"14397",2014,51115,"VA","51","115",8813,0.895268353568592,407,0.171451265176444,6.0088131854426,6.70318811324086,7.7873820264847,4.53846153846154,385.356454720617,18,4671,0,1,0,0,9 +"14398",2014,51117,"VA","51","117",31117,0.631005559661921,1619,0.158980621525211,7.38956395367764,8.0959035329611,9.06044728240157,7.57692307692308,575.648331201302,99,17198,0,1,0,0,9 +"14399",2014,51119,"VA","51","119",10653,0.80446822491317,507,0.177884164085234,6.22851100359118,6.82654522355659,7.9665866976384,4.93846153846154,590.072891357168,34,5762,0,1,0,0,9 +"14400",2014,51121,"VA","51","121",97193,0.886318973588633,19446,0.0972086467132407,9.8753966723696,9.21542741102474,10.2913995013967,5.01538461538462,236.673232098609,149,62956,0,1,0,0,9 +"14401",2014,51125,"VA","51","125",14867,0.857536826528553,710,0.17764175691128,6.56526497003536,7.28961052145117,8.36474106822456,4.82307692307692,519.38639932359,43,8279,0,1,0,0,9 +"14402",2014,51127,"VA","51","127",20021,0.835073173168173,1105,0.16008191399031,7.00760061395185,7.86134179559999,8.71045468824853,4.43076923076923,354.781486856959,44,12402,0,1,0,0,9 +"14403",2014,51131,"VA","51","131",12034,0.622735582516204,619,0.170433770982217,6.4281052726846,7.01750614294126,8.13329386122263,7.44615384615385,734.731363845094,48,6533,0,1,0,0,9 +"14404",2014,51133,"VA","51","133",12256,0.741106396866841,521,0.168652088772846,6.25575004175337,6.77078942390898,8.02092771898158,6.93076923076923,439.634764964491,26,5914,0,1,0,0,9 +"14405",2014,51135,"VA","51","135",15515,0.585562359007412,999,0.134966161778924,6.90675477864855,7.50714107972761,8.28702502516506,5.23076923076923,475.932936722553,44,9245,0,1,0,0,9 +"14406",2014,51137,"VA","51","137",34912,0.844580659945005,1872,0.136657882676444,7.53476265703754,8.3165447179294,9.20230820027892,5.2,528.052805280528,104,19695,0,1,0,0,9 +"14407",2014,51139,"VA","51","139",23787,0.967461218312524,1262,0.143103375793501,7.14045304310116,7.96693349840484,8.83651926920248,7.90769230769231,622.241516532812,86,13821,0,1,0,0,9 +"14408",2014,51141,"VA","51","141",18185,0.930217211987902,849,0.155622766015947,6.74405918631135,7.6685611080159,8.51879191277993,6.57692307692308,559.481743227326,57,10188,0,1,0,0,9 +"14409",2014,51143,"VA","51","143",62386,0.770701760010259,3367,0.156765941076524,8.12177741916107,8.89054824560617,9.80261694215115,6.21538461538462,498.869963067086,181,36282,0,1,0,0,9 +"14410",2014,51145,"VA","51","145",28504,0.860019646365422,1677,0.148294976143699,7.42476176182321,8.26384813136891,9.00109972583097,4.45384615384615,230.596175478065,41,17780,0,1,0,0,9 +"14411",2014,51147,"VA","51","147",22994,0.648299556406019,4172,0.115508393493955,8.33615081612066,7.58933582317062,8.79239774235691,7.51538461538462,404.53074433657,55,13596,0,1,0,0,9 +"14412",2014,51149,"VA","51","149",37465,0.62992125984252,2561,0.121446683571333,7.84815308619953,8.65329627440858,9.22631214148588,6.18461538461538,288.353044423085,69,23929,0,1,0,0,9 +"14413",2014,51153,"VA","51","153",444004,0.663813839514959,28006,0.102726552013045,10.2401740519157,11.1368346760682,11.8252952719517,4.79230769230769,193.941700393006,530,273278,0,1,0,0,9 +"14414",2014,51155,"VA","51","155",34343,0.933669161109979,1929,0.153714002853566,7.56475701290573,8.3774712482411,9.2037184956673,5.99230769230769,555.528243449191,113,20341,0,1,0,0,9 +"14415",2014,51159,"VA","51","159",8880,0.679842342342342,502,0.131081081081081,6.21860011969173,7.05098944706805,7.63433723562832,5.34615384615385,455.871626549964,25,5484,0,1,0,0,9 +"14416",2014,51161,"VA","51","161",93428,0.902663013229439,5465,0.144153786873314,8.60611940061064,9.36065513263505,10.2282486232293,4.49230769230769,384.894293523735,207,53781,0,1,0,0,9 +"14417",2014,51163,"VA","51","163",22443,0.955041661097001,1099,0.1606737067237,7.00215595440362,7.74543561027438,8.75036627836763,5.23076923076923,348.901752438347,44,12611,0,1,0,0,9 +"14418",2014,51165,"VA","51","165",77897,0.961847054443688,5069,0.137078449747744,8.53089883847235,9.12292891496521,10.0160570211396,4.59230769230769,290.638729300439,129,44385,0,1,0,0,9 +"14419",2014,51167,"VA","51","167",28082,0.983370130332597,1595,0.157681076846378,7.37462901521894,8.16080392095467,9.03515330408283,7.70769230769231,717.574597859236,120,16723,0,1,0,0,9 +"14420",2014,51169,"VA","51","169",22521,0.985835442475911,1195,0.148528040495537,7.08590146436561,7.90875473878325,8.74289347151214,5.73076923076923,617.903761489148,80,12947,0,1,0,0,9 +"14421",2014,51171,"VA","51","171",42737,0.957881929007651,2349,0.140627559257786,7.76174498465891,8.48301573961465,9.40401391710636,4.9,417.045173011809,101,24218,0,1,0,0,9 +"14422",2014,51173,"VA","51","173",31593,0.96894881777609,1885,0.144145855094483,7.54168309988211,8.28526113406895,9.12565356380899,7.76153846153846,568.896668672392,104,18281,0,1,0,0,9 +"14423",2014,51175,"VA","51","175",18224,0.622530728709394,1003,0.161051360842845,6.91075078796194,7.6314316645769,8.53464010501996,4.79230769230769,326.886406973577,36,11013,0,1,0,0,9 +"14424",2014,51177,"VA","51","177",128881,0.792149347072105,8171,0.11989354520837,9.00834657938471,9.74846983026952,10.5740567580828,5.3,297.174891965896,229,77059,0,1,0,0,9 +"14425",2014,51179,"VA","51","179",138937,0.759768816082109,9975,0.108804710048439,9.20783724175806,9.85182576921224,10.6444482300051,5.22307692307692,209.185462194694,179,85570,0,1,0,0,9 +"14426",2014,51181,"VA","51","181",6783,0.541058528674628,397,0.171458056906973,5.98393628068719,6.45676965557216,7.62705741701893,6.1,634.146341463415,26,4100,0,1,0,0,9 +"14427",2014,51183,"VA","51","183",11724,0.404042988741044,955,0.132719208461276,6.86171134048073,7.29097477814298,7.89431806384162,7.66153846153846,476.988526492201,37,7757,0,1,0,0,9 +"14428",2014,51185,"VA","51","185",43399,0.954169450909007,2576,0.156340007834282,7.85399308722424,8.60922527686273,9.43348392329039,7.97692307692308,706.148564294632,181,25632,0,1,0,0,9 +"14429",2014,51187,"VA","51","187",40147,0.925349341171196,2637,0.1349042269659,7.87739718635329,8.53070154144103,9.37729445163902,5.51538461538462,407.591389631894,96,23553,0,1,0,0,9 +"14430",2014,51191,"VA","51","191",54630,0.976258466044298,3149,0.151198974922204,8.05484022110102,8.80267284031282,9.67733949220162,5.65384615384615,435.682046138415,139,31904,0,1,0,0,9 +"14431",2014,51193,"VA","51","193",17440,0.699369266055046,956,0.165080275229358,6.8627579130514,7.41818082272679,8.51177855871474,6.34615384615385,574.241181296144,56,9752,0,1,0,0,9 +"14432",2014,51195,"VA","51","195",39916,0.937694157731236,2960,0.141046197013729,7.99294454731811,8.5440298453698,9.33750151759286,9.3,653.114539962446,160,24498,0,1,0,0,9 +"14433",2014,51197,"VA","51","197",29060,0.958706125258087,1553,0.149690295939436,7.34794382314869,8.21689858091361,9.06647000155648,6.32307692307692,470.726684318917,80,16995,0,1,0,0,9 +"14434",2014,51199,"VA","51","199",66607,0.788685873857102,4466,0.127389013166784,8.4042484324001,9.01711963431323,9.89187033319594,4.90769230769231,236.455227716665,92,38908,0,1,0,0,9 +"14435",2014,51510,"VA","51","510",151544,0.679611202027134,7022,0.107823470411234,8.85680335672838,10.2256797414505,10.9198045984774,3.77692307692308,180.676084290542,193,106821,0,1,0,0,9 +"14436",2014,51520,"VA","51","520",17225,0.921277213352685,1056,0.132017416545718,6.96224346426621,7.67136092319064,8.53797573059877,6.26923076923077,826.363998407009,83,10044,0,1,0,0,9 +"14437",2014,51530,"VA","51","530",6561,0.920743789056546,612,0.11964639536656,6.41673228251233,6.49375383985169,7.56786260546388,5.66923076923077,377.765785213168,14,3706,0,1,0,0,9 +"14438",2014,51540,"VA","51","540",45562,0.71386242921733,8347,0.103002502085071,9.02965747185074,8.55178783618074,9.72883650204639,4.23846153846154,254.226905170301,83,32648,0,1,0,0,9 +"14439",2014,51550,"VA","51","550",233477,0.644020610167168,15884,0.124106443032933,9.67306759225114,10.3338403761521,11.1967204535852,5.16923076923077,312.185015119274,446,142864,0,1,0,0,9 +"14440",2014,51570,"VA","51","570",17448,0.814133425034388,1109,0.122019715726731,7.01121398735037,7.58832367733522,8.54169066301663,5.66923076923077,496.277915632754,48,9672,0,1,0,0,9 +"14441",2014,51580,"VA","51","580",5778,0.848736587054344,346,0.132571824160609,5.84643877505772,6.48768401848461,7.38336814699238,7.83076923076923,641.809290953545,21,3272,0,1,0,0,9 +"14442",2014,51590,"VA","51","590",42295,0.4777633289987,2957,0.145052606691098,7.99193051985248,8.35585004100747,9.44493807333551,8.50769230769231,609.52380952381,144,23625,0,1,0,0,9 +"14443",2014,51600,"VA","51","600",23324,0.752958326187618,1581,0.128022637626479,7.36581283720947,8.04173471148754,8.88016824790345,4.04615384615385,227.869078856512,33,14482,0,1,0,0,9 +"14444",2014,51620,"VA","51","620",8399,0.395285152994404,536,0.142278842719371,6.2841341610708,6.7696419768525,7.87359778968554,7.70769230769231,603.838688807419,28,4637,0,1,0,0,9 +"14445",2014,51630,"VA","51","630",28276,0.701442919790635,4094,0.0915617484792757,8.31727776622123,8.10530751550515,9.17792048072007,5.99230769230769,317.230632235085,57,17968,0,1,0,0,9 +"14446",2014,51640,"VA","51","640",6892,0.910621009866512,398,0.135809634358677,5.98645200528444,6.63200177739563,7.55328660560042,7.21538461538462,769.230769230769,29,3770,0,1,0,0,9 +"14447",2014,51650,"VA","51","650",137778,0.443866219570614,12494,0.126899795322911,9.43300380805352,9.62059399681614,10.6822618190635,6.62307692307692,444.544817011565,374,84131,0,1,0,0,9 +"14448",2014,51660,"VA","51","660",52589,0.85546407043298,11882,0.0747684877065546,9.38277992891569,8.56140144608056,9.73778709675841,5.97692307692308,156.897572528123,53,33780,0,1,0,0,9 +"14449",2014,51670,"VA","51","670",22117,0.563729258036804,1484,0.116426278428358,7.30249642372733,7.84776253747361,8.82055174325303,8.83076923076923,743.494423791822,94,12643,0,1,0,0,9 +"14450",2014,51680,"VA","51","680",78242,0.666636844661435,13825,0.100444773906597,9.53423382639054,8.84836569494255,10.0979846852602,6.26153846153846,356.966217233297,166,46503,0,1,0,0,9 +"14451",2014,51683,"VA","51","683",41137,0.755961786226511,2866,0.110095534433721,7.96067260838812,8.69734573092535,9.45587144216802,4.91538461538462,232.549273760055,61,26231,0,1,0,0,9 +"14452",2014,51690,"VA","51","690",13343,0.51435209473132,740,0.137225511504159,6.60665018619822,7.29709100516042,8.29154650988391,9.73076923076923,873.069173942243,65,7445,0,1,0,0,9 +"14453",2014,51700,"VA","51","700",181661,0.519230875091517,16893,0.111212643330159,9.73465461392273,9.95901686232861,10.9560384505436,6.14615384615385,421.310863420618,474,112506,0,1,0,0,9 +"14454",2014,51710,"VA","51","710",246756,0.503404172542917,37064,0.102708748723435,10.5204014270965,10.2133957837461,11.2234551278592,6.23076923076923,351.102362690592,569,162061,0,1,0,0,9 +"14455",2014,51730,"VA","51","730",32242,0.184914087215433,2844,0.138639042243037,7.95296679092313,8.08856180527623,9.27265767804104,10.5384615384615,725.148554738644,144,19858,0,1,0,0,9 +"14456",2014,51735,"VA","51","735",12005,0.956518117451062,730,0.1390254060808,6.59304453414244,7.26892012819372,8.14844566624324,4.46923076923077,259.815242494226,18,6928,0,1,0,0,9 +"14457",2014,51740,"VA","51","740",95886,0.421656967649083,7719,0.122927226080971,8.95144010094985,9.31136148603491,10.3069172572822,7.12307692307692,562.222757126646,327,58162,0,1,0,0,9 +"14458",2014,51750,"VA","51","750",17395,0.87490658235125,4777,0.0811152630066111,8.47156801338996,7.30854279753919,8.65416864644332,6.61538461538461,209.186786367994,24,11473,0,1,0,0,9 +"14459",2014,51760,"VA","51","760",217238,0.447476960752723,21410,0.122032057006601,9.97161338158373,10.1210555895172,11.2225196865969,6.00769230769231,437.050222680898,631,144377,0,1,0,0,9 +"14460",2014,51770,"VA","51","770",99475,0.661090726313144,6517,0.133681829605428,8.78216942633238,9.43715716865669,10.3543402171075,5.76153846153846,502.182689467293,306,60934,0,1,0,0,9 +"14461",2014,51775,"VA","51","775",25441,0.899886010770017,2216,0.138948940686294,7.70345904786717,7.92262357421729,8.9442893196507,5.06923076923077,370.570004042582,55,14842,0,1,0,0,9 +"14462",2014,51790,"VA","51","790",24287,0.851360810310042,1791,0.136081031004241,7.49052940206071,7.92840602618053,8.94910546953925,5.05384615384615,481.791129375089,68,14114,0,1,0,0,9 +"14463",2014,51800,"VA","51","800",86976,0.534929175864606,5275,0.123976729212656,8.57073395834427,9.35599794439855,10.2028511297617,5.64615384615385,419.295276196338,218,51992,0,1,0,0,9 +"14464",2014,51810,"VA","51","810",449139,0.705745882677746,35021,0.115694695851396,10.4637031605435,10.9644498937523,11.8622857216936,4.83076923076923,270.051597243416,761,281798,0,1,0,0,9 +"14465",2014,51820,"VA","51","820",21303,0.853588696427733,1308,0.124536450265221,7.17625453201714,7.82923253754359,8.76076662424196,5.24615384615385,442.731819299828,54,12197,0,1,0,0,9 +"14466",2014,51840,"VA","51","840",27398,0.833017008540769,2112,0.120775239068545,7.65539064482615,8.10651451625519,9.01152351265303,5.01538461538462,446.756425948592,73,16340,0,1,0,0,9 +"14467",2014,50001,"VT","50","001",36950,0.96573748308525,3373,0.157807848443843,8.12355783506165,8.30474226964077,9.30837411224755,3.75384615384615,306.499594338772,68,22186,1,1,1,0,9 +"14468",2014,50003,"VT","50","003",36207,0.9745629298202,2362,0.158864308006739,7.76726399675731,8.20275638165564,9.26359673827661,4.65384615384615,393.853933676943,81,20566,1,1,1,0,9 +"14469",2014,50005,"VT","50","005",30882,0.97406256071498,1979,0.161420892429247,7.59034694560257,8.17159948034546,9.10985683339786,4.87692307692308,313.980389996695,57,18154,1,1,1,0,9 +"14470",2014,50007,"VT","50","007",160134,0.931132676383529,17706,0.130315860466859,9.781658844171,9.83156181296454,10.8413636354353,3.07692307692308,230.171196001146,233,101229,1,1,1,0,9 +"14471",2014,50011,"VT","50","011",48775,0.969267042542286,2716,0.143147104049206,7.90691548867859,8.76201995356159,9.60918360377546,4,382.001960718028,113,29581,1,1,1,0,9 +"14472",2014,50013,"VT","50","013",6969,0.971444970584015,345,0.191562634524322,5.84354441703136,6.65929391968364,7.66340766489348,4.50769230769231,490.310530002335,21,4283,1,1,1,0,9 +"14473",2014,50015,"VT","50","015",25149,0.976221718557398,1664,0.142033480456479,7.41697962138115,8.09101504171053,8.93022956502072,5.16923076923077,316.122233930453,48,15184,1,1,1,0,9 +"14474",2014,50017,"VT","50","017",28888,0.981618665189698,1641,0.172251453890889,7.40306109109009,8.08085641964099,9.06900719585954,3.88461538461538,316.911552866609,55,17355,1,1,1,0,9 +"14475",2014,50019,"VT","50","019",27032,0.978802900266351,1451,0.158663805859722,7.28000825288419,8.05006542291597,8.93524541502987,6.27692307692308,372.77459991002,58,15559,1,1,1,0,9 +"14476",2014,50021,"VT","50","021",60071,0.978958232757903,3810,0.16545421251519,8.24538446812075,8.75447630628417,9.78790833668397,4.77692307692308,405.382579809695,144,35522,1,1,1,0,9 +"14477",2014,50023,"VT","50","023",59005,0.973646301160919,3743,0.157918820438946,8.22764270790443,8.88682384651519,9.79400745191731,3.90769230769231,300.173932559053,107,35646,1,1,1,0,9 +"14478",2014,50025,"VT","50","025",43708,0.96877001921845,2632,0.172874530978311,7.87549929244521,8.43663368355782,9.49077121771377,4.13076923076923,334.847201909014,87,25982,1,1,1,0,9 +"14479",2014,50027,"VT","50","027",55770,0.975560337098799,2688,0.171830733369195,7.89655270164304,8.7059937143079,9.72106599074184,3.71538461538462,258.79917184265,85,32844,1,1,1,0,9 +"14480",2014,53001,"WA","53","001",19154,0.913542863109533,1417,0.0976297379137517,7.25629723969068,7.7066129139642,8.47969898698866,7.06923076923077,333.704115684093,33,9889,1,1,1,0,9 +"14481",2014,53003,"WA","53","003",22235,0.95767933438273,1254,0.154351248032381,7.13409372119287,7.77611547709874,8.76233304060234,5.2,344.358132457756,43,12487,1,1,1,0,9 +"14482",2014,53005,"WA","53","005",186535,0.925885222612378,12141,0.127145039804862,9.40434343354397,10.0152078021465,10.8852101563911,7.26923076923077,280.571583038935,301,107281,1,1,1,0,9 +"14483",2014,53007,"WA","53","007",74114,0.950994414010848,4628,0.140580726988153,8.43988008831357,9.0135952945165,9.93842023907615,6.1,337.878315880281,141,41731,1,1,1,0,9 +"14484",2014,53009,"WA","53","009",72518,0.897735734576243,3791,0.169626851264514,8.24038511551633,8.84014587794994,9.87513951702064,8.16153846153846,437.597563784323,171,39077,1,1,1,0,9 +"14485",2014,53011,"WA","53","011",448505,0.896141626068829,26970,0.128192550807683,10.2024804161338,11.0150489714904,11.8011748764548,6.81538461538462,314.970145815316,834,264787,1,1,1,0,9 +"14486",2014,53015,"WA","53","015",101811,0.93816974590172,6071,0.145151309779886,8.71127861513043,9.38697914563464,10.2748441910108,7.85384615384615,462.507550263181,268,57945,1,1,1,0,9 +"14487",2014,53017,"WA","53","017",39757,0.94919133737455,2436,0.127776240662022,7.79811262882979,8.45361420977337,9.2944976799829,6.98461538461538,298.804780876494,66,22088,1,1,1,0,9 +"14488",2014,53019,"WA","53","019",7597,0.786231407134395,419,0.191786231407134,6.03787091992214,6.59441345974978,7.67182679787878,11.1076923076923,602.828657546951,26,4313,1,1,1,0,9 +"14489",2014,53021,"WA","53","021",87640,0.918404837973528,6128,0.0896850753080785,8.72062371142043,9.37254425185104,10.040244985891,8.14615384615385,199.621127248284,98,49093,1,1,1,0,9 +"14490",2014,53025,"WA","53","025",92898,0.939891063316756,6797,0.108258520097311,8.82423661734664,9.2985343827121,10.1062651178975,7.31538461538462,337.724408982284,171,50633,1,1,1,0,9 +"14491",2014,53027,"WA","53","027",70796,0.898892592801853,4039,0.15622351545285,8.30375241556341,9.00331620254186,9.87034433394287,9.85384615384615,560.59276591596,230,41028,1,1,1,0,9 +"14492",2014,53029,"WA","53","029",78777,0.88701016794242,5688,0.153788542341039,8.64611397148308,8.95905451471569,10.017931686927,6.42307692307692,340.196558011295,153,44974,1,1,1,0,9 +"14493",2014,53031,"WA","53","031",30172,0.933613946705555,1192,0.206747978257988,7.0833878476253,7.86057078553866,9.01322999770879,7.78461538461538,347.631758644236,56,16109,1,1,1,0,9 +"14494",2014,53033,"WA","53","033",2086174,0.723432944711227,134678,0.122468212143378,11.8106420231499,12.6460164720546,13.4101314461583,4.5,230.017935745248,3092,1344243,1,1,1,0,9 +"14495",2014,53035,"WA","53","035",253568,0.865093387178193,20543,0.14437152953054,9.93027552929251,10.2589567698786,11.2131843064698,5.94615384615385,336.209577114428,519,154368,1,1,1,0,9 +"14496",2014,53037,"WA","53","037",42619,0.940683732607522,7501,0.12203477322321,8.92279162396964,8.31825432879885,9.46443980741084,6.73076923076923,220.163984208928,58,26344,1,1,1,0,9 +"14497",2014,53039,"WA","53","039",20863,0.945837127929828,960,0.172985668408187,6.86693328446188,7.79069603117474,8.67162954472066,7.56153846153846,417.376490630324,49,11740,1,1,1,0,9 +"14498",2014,53041,"WA","53","041",74877,0.948742604538109,4361,0.147375028379876,8.38045666784277,9.03717675296699,9.95408560529922,8.8,427.563600085513,180,42099,1,1,1,0,9 +"14499",2014,53043,"WA","53","043",10224,0.961463223787167,431,0.175958528951487,6.06610809010375,6.9177056098353,7.88495294575981,5.61538461538462,390.770375883885,21,5374,1,1,1,0,9 +"14500",2014,53045,"WA","53","045",60613,0.906571197597875,3359,0.165080098328741,8.11939858961229,8.80146947073318,9.70741183950951,8.13846153846154,418.818129661503,146,34860,1,1,1,0,9 +"14501",2014,53047,"WA","53","047",41225,0.835973317161916,2205,0.157404487568223,7.69848278788095,8.40983067308774,9.33388455806764,7.07692307692308,486.854917234664,110,22594,1,1,1,0,9 +"14502",2014,53049,"WA","53","049",20583,0.922265947626682,898,0.184278287907496,6.8001700683022,7.54960916515453,8.60831278478372,9.65384615384615,601.69568784757,66,10969,1,1,1,0,9 +"14503",2014,53051,"WA","53","051",12926,0.929444530403837,590,0.18830264583011,6.38012253689976,7.12367278520461,8.15708378502887,9.72307692307692,606.060606060606,43,7095,1,1,1,0,9 +"14504",2014,53053,"WA","53","053",833106,0.793155972949421,64035,0.122498217513738,11.0671850878602,11.5763133243504,12.4415834066714,6.8,326.836037911403,1658,507288,1,1,1,0,9 +"14505",2014,53055,"WA","53","055",15970,0.96205385097057,599,0.208954289292423,6.39526159811545,7.29641326877392,8.43879912398823,4.9,387.111465330753,34,8783,1,1,1,0,9 +"14506",2014,53057,"WA","53","057",119990,0.926193849487457,7299,0.144087007250604,8.89549263145163,9.52456699965008,10.4353503353679,7.01538461538462,373.490964165454,254,68007,1,1,1,0,9 +"14507",2014,53059,"WA","53","059",11387,0.950382014578028,521,0.179415122508123,6.25575004175337,7.20042489294496,8.11072758297449,7.97692307692308,280.567040756054,19,6772,1,1,1,0,9 +"14508",2014,53061,"WA","53","061",757485,0.824152293444755,48877,0.131267285820841,10.7970622171666,11.5610201492543,12.3612884721728,5.01538461538462,273.895372809047,1302,475364,1,1,1,0,9 +"14509",2014,53063,"WA","53","063",483148,0.919293880964011,36790,0.132400423886677,10.5129813480988,10.9635668914875,11.8871613097266,6.76153846153846,357.445110329785,1039,290674,1,1,1,0,9 +"14510",2014,53065,"WA","53","065",43498,0.913697181479608,2057,0.17869787116649,7.62900388965296,8.42748727833174,9.39938924951956,9.06153846153846,443.458980044346,106,23903,1,1,1,0,9 +"14511",2014,53067,"WA","53","067",265071,0.858411519932396,17364,0.136891625262665,9.76215437641948,10.4449684645617,11.3148768843139,6.31538461538462,293.25148026623,471,160613,1,1,1,0,9 +"14512",2014,53071,"WA","53","071",59548,0.93591724323235,5530,0.126939611741788,8.61794309451638,8.80161997114735,9.69344530314157,5.99230769230769,351.264261038697,121,34447,1,1,1,0,9 +"14513",2014,53073,"WA","53","073",208240,0.894314252785248,23295,0.129369957741068,10.0559940242509,10.0867669837552,11.0570298480627,6.36923076923077,253.909494316699,321,126423,1,1,1,0,9 +"14514",2014,53075,"WA","53","075",46965,0.873139572021718,12151,0.0861705525391249,9.40516674990861,8.25452888193974,9.5805927243286,5.09230769230769,178.547811136093,54,30244,1,1,1,0,9 +"14515",2014,53077,"WA","53","077",246748,0.892063968097006,18021,0.107936031902994,9.79929302351827,10.2849331548001,11.112238921315,8.51538461538462,372.665296283699,504,135242,1,1,1,0,9 +"14516",2014,55001,"WI","55","001",20120,0.947117296222664,831,0.181163021868787,6.72262979485545,7.59940133341582,8.5137873982814,8.71538461538461,666.725151329064,76,11399,0,1,0,0,9 +"14517",2014,55003,"WI","55","003",15996,0.859839959989998,1081,0.150225056264066,6.98564181763921,7.42595365707754,8.41604600941128,7.4,479.825517993457,44,9170,0,1,0,0,9 +"14518",2014,55005,"WI","55","005",45355,0.969793848528277,2457,0.14891412192702,7.80669637252118,8.5179928715868,9.43484299932802,5.71538461538462,325.388113533009,83,25508,0,1,0,0,9 +"14519",2014,55007,"WI","55","007",14975,0.874991652754591,642,0.199332220367279,6.46458830368996,7.23128700432762,8.33278946841796,9.45384615384615,366.994199123949,31,8447,0,1,0,0,9 +"14520",2014,55009,"WI","55","009",256254,0.89947083752839,17460,0.125633160848221,9.76766782939359,10.3723342628091,11.2450329478338,4.78461538461538,258.391222489125,398,154030,0,1,0,0,9 +"14521",2014,55011,"WI","55","011",13234,0.985416351821067,677,0.155130723893003,6.51767127291227,7.24494154633701,8.19505769089508,5.53846153846154,427.236315086782,32,7490,0,1,0,0,9 +"14522",2014,55013,"WI","55","013",15229,0.931709238952,652,0.181955479676932,6.48004456192665,7.23273313617761,8.29829063435928,7.91538461538462,558.727073970606,46,8233,0,1,0,0,9 +"14523",2014,55015,"WI","55","015",49480,0.95947857720291,2622,0.132801131770412,7.87169266432365,8.81477608854528,9.58307565546143,4.13076923076923,410.242384875731,120,29251,0,1,0,0,9 +"14524",2014,55017,"WI","55","017",63349,0.959194304566765,3409,0.139765426447142,8.1341742721379,8.95918307420677,9.76428295481558,5.30769230769231,250.746905676483,94,37488,0,1,0,0,9 +"14525",2014,55019,"WI","55","019",34348,0.979998835448934,1794,0.130400605566554,7.49220304261874,8.21039625510477,9.06496771896043,5.38461538461539,300.3003003003,54,17982,0,1,0,0,9 +"14526",2014,55021,"WI","55","021",56645,0.966122340895048,2950,0.145379115544179,7.98956044933387,8.88253050843362,9.68446051673376,5.20769230769231,354.029690893404,119,33613,0,1,0,0,9 +"14527",2014,55023,"WI","55","023",16339,0.967745884081033,855,0.158455229818226,6.75110146893676,7.41938058291869,8.37216741936598,6.97692307692308,326.05151613955,30,9201,0,1,0,0,9 +"14528",2014,55025,"WI","55","025",516602,0.871018695243147,54336,0.11941688185489,10.902942269671,11.0981824498813,12.010489541853,3.64615384615385,214.684153151484,707,329321,0,1,0,0,9 +"14529",2014,55027,"WI","55","027",88085,0.954260089686099,5177,0.140591474144292,8.5519810169019,9.32179229727033,10.0877239415349,5.28461538461538,278.396436525612,150,53880,0,1,0,0,9 +"14530",2014,55029,"WI","55","029",27478,0.977363709149138,1232,0.186731203144334,7.11639414409346,7.88758403166028,8.92877290052426,8.20769230769231,340.49240440021,52,15272,0,1,0,0,9 +"14531",2014,55031,"WI","55","031",43686,0.947740694959484,2887,0.150826351691617,7.96797317966293,8.54032360880509,9.48759324893742,5.6,393.135253647842,104,26454,0,1,0,0,9 +"14532",2014,55033,"WI","55","033",44100,0.95485260770975,5822,0.121859410430839,8.66939912430557,8.46547875572956,9.45673159001008,5.14615384615385,234.839589409492,62,26401,0,1,0,0,9 +"14533",2014,55035,"WI","55","035",101745,0.936940390191164,12899,0.119396530542041,9.46490506796514,9.30437701390256,10.346601626429,4.41538461538462,258.131130614352,160,61984,0,1,0,0,9 +"14534",2014,55039,"WI","55","039",101993,0.956536232878727,6486,0.142450952516349,8.77740128686726,9.40129125546819,10.3126458324819,4.84615384615385,336.705949027387,202,59993,0,1,0,0,9 +"14535",2014,55041,"WI","55","041",9112,0.822870939420544,558,0.158691834942932,6.32435896238131,6.82871207164168,7.81439963380449,8.55384615384615,359.64035964036,18,5005,0,1,0,0,9 +"14536",2014,55043,"WI","55","043",51708,0.972576777287847,6289,0.12783321729713,8.7465573545435,8.51539156946961,9.52762978918062,4.75384615384615,309.816467418757,92,29695,0,1,0,0,9 +"14537",2014,55045,"WI","55","045",36856,0.980437377903191,1995,0.148496852615585,7.59839932932396,8.44009614103127,9.27303344131461,4.44615384615385,246.683732836863,53,21485,0,1,0,0,9 +"14538",2014,55047,"WI","55","047",18757,0.978674628138828,862,0.15631497574239,6.75925527066369,7.57250298502038,8.51699317141357,6.35384615384615,449.921752738654,46,10224,0,1,0,0,9 +"14539",2014,55049,"WI","55","049",23594,0.981266423667034,1152,0.154912265830296,7.04925484125584,7.93020620668468,8.82497196556714,5.04615384615385,275.581985640728,38,13789,0,1,0,0,9 +"14540",2014,55053,"WI","55","053",20584,0.898610571317528,1175,0.140546055188496,7.06902342657826,7.793999089504,8.579980179515,5.79230769230769,283.85373184171,34,11978,0,1,0,0,9 +"14541",2014,55055,"WI","55","055",84370,0.973391015763897,5239,0.13713405238829,8.56388591940822,9.27040012840385,10.1158936633076,4.90769230769231,290.645232415963,145,49889,0,1,0,0,9 +"14542",2014,55057,"WI","55","057",26349,0.950244791073665,1341,0.148202967854568,7.20117088328168,8.0481491016652,8.83840674707681,6.37692307692308,361.127232862578,56,15507,0,1,0,0,9 +"14543",2014,55059,"WI","55","059",167938,0.890054663030404,11669,0.125254558229823,9.36469103180611,9.97980023538529,10.8369893211406,5.96923076923077,360.957424775881,366,101397,0,1,0,0,9 +"14544",2014,55061,"WI","55","061",20347,0.981864648351108,1039,0.149309480513098,6.94601399109923,7.79276172081653,8.63692987301857,4.96923076923077,274.607397236763,32,11653,0,1,0,0,9 +"14545",2014,55063,"WI","55","063",117508,0.929417571569595,14125,0.124919154440549,9.55570155601464,9.45548022116229,10.4819811705267,4.30769230769231,272.559956165615,194,71177,0,1,0,0,9 +"14546",2014,55065,"WI","55","065",16769,0.982944719422744,1011,0.14783230961894,6.91869521902047,7.46508273639955,8.43446354381724,4.16923076923077,305.070481800968,29,9506,0,1,0,0,9 +"14547",2014,55067,"WI","55","067",19258,0.969259528507633,943,0.163672240108007,6.84906628263346,7.59186171488993,8.57168137670031,7.42307692307692,481.25867653864,52,10805,0,1,0,0,9 +"14548",2014,55069,"WI","55","069",28105,0.977121508628358,1416,0.161714997331436,7.25559127425367,8.05864371221562,8.98117874833641,6.12307692307692,366.568914956012,60,16368,0,1,0,0,9 +"14549",2014,55071,"WI","55","071",79950,0.95343339587242,4457,0.156160100062539,8.40223117294656,9.09795524138139,10.0327159505439,5.95384615384615,392.712289963304,183,46599,0,1,0,0,9 +"14550",2014,55073,"WI","55","073",135173,0.923150333276616,7910,0.137586648221168,8.9758830607617,9.70485367024987,10.5669484227257,4.97692307692308,312.641823407796,248,79324,0,1,0,0,9 +"14551",2014,55075,"WI","55","075",41072,0.979036813400857,2191,0.166025516166732,7.69211333959547,8.34521792667643,9.34443410645688,6.65384615384615,379.838675259272,89,23431,0,1,0,0,9 +"14552",2014,55077,"WI","55","077",15060,0.976162018592297,617,0.169787516600266,6.42486902390539,7.30854279753919,8.3086919168389,7.07692307692308,320.398718405126,27,8427,0,1,0,0,9 +"14553",2014,55079,"WI","55","079",958639,0.659788512672654,71763,0.117729405959908,11.1811243018789,11.6944884007507,12.6059320711175,6.78461538461538,387.105455185298,2244,579687,0,1,0,0,9 +"14554",2014,55081,"WI","55","081",45162,0.957309242283336,2318,0.139409237854834,7.7484600238997,8.56388591940822,9.43508264465409,5.33076923076923,384.018619084562,99,25780,0,1,0,0,9 +"14555",2014,55083,"WI","55","083",37459,0.97381136709469,1827,0.163004885341306,7.51043055637801,8.36776467792431,9.27706400401909,6.11538461538461,345.564497794753,76,21993,0,1,0,0,9 +"14556",2014,55085,"WI","55","085",35330,0.974469289555618,1702,0.180413246532692,7.43955930913332,8.14293601043227,9.20331575703922,6.69230769230769,439.506172839506,89,20250,0,1,0,0,9 +"14557",2014,55087,"WI","55","087",182127,0.927995299982979,11971,0.126395317553136,9.39024233725137,10.0506567757527,10.9054604450498,4.7,226.089651840169,248,109691,0,1,0,0,9 +"14558",2014,55089,"WI","55","089",87622,0.954554792175481,5080,0.154584465088676,8.53306654057253,9.18921887535407,10.1462376334893,4.18461538461538,224.32652412999,113,50373,0,1,0,0,9 +"14559",2014,55093,"WI","55","093",41076,0.972806505015094,4569,0.133192131658389,8.42704964156327,8.45340105832846,9.44081697065718,4.36923076923077,228.045609121824,57,24995,0,1,0,0,9 +"14560",2014,55095,"WI","55","095",43343,0.975913065546916,2187,0.156403571510971,7.69028602067677,8.52971447196991,9.41466800903275,5.64615384615385,368.132527709976,92,24991,0,1,0,0,9 +"14561",2014,55097,"WI","55","097",70546,0.952031298727072,8408,0.131176820797777,9.03693891255679,8.92917038313962,9.95541564539649,5.5,260.993172232191,112,42913,0,1,0,0,9 +"14562",2014,55099,"WI","55","099",13658,0.971006003807292,586,0.18743593498316,6.37331978957701,7.24779258176785,8.22630598801551,5.30769230769231,337.530832143321,26,7703,0,1,0,0,9 +"14563",2014,55101,"WI","55","101",194821,0.85057052371151,11931,0.138429635408914,9.3868953338758,10.0626257738744,10.9584962037221,6.5,384.155118888638,443,115318,0,1,0,0,9 +"14564",2014,55103,"WI","55","103",17747,0.98039105200879,976,0.162844424409759,6.88346258641309,7.56060116276856,8.47741232140439,4.97692307692308,344.827586206897,34,9860,0,1,0,0,9 +"14565",2014,55105,"WI","55","105",160999,0.919713787042156,10217,0.132609519313785,9.23180827859142,9.90578491158481,10.7700416725005,6.04615384615385,339.047699773262,320,94382,0,1,0,0,9 +"14566",2014,55107,"WI","55","107",14347,0.977207778629679,692,0.167352059664041,6.53958595561767,7.27862894232068,8.24905227417129,6.44615384615385,445.519348268839,35,7856,0,1,0,0,9 +"14567",2014,55109,"WI","55","109",86599,0.971362255915195,4388,0.129493412164113,8.38662882139512,9.41735454136051,10.1582460432196,4.4,237.27767274972,123,51838,0,1,0,0,9 +"14568",2014,55111,"WI","55","111",62972,0.96569904084355,3459,0.139919329225688,8.14873480893717,8.94272233056014,9.8030040139578,4.91538461538462,337.98517226341,124,36688,0,1,0,0,9 +"14569",2014,55113,"WI","55","113",16364,0.796198973356148,761,0.177584942556832,6.63463335786169,7.38770923908104,8.38640090116621,8.83846153846154,755.303787626347,68,9003,0,1,0,0,9 +"14570",2014,55115,"WI","55","115",41349,0.901811410191299,2184,0.145082105975961,7.6889133368648,8.43750042250699,9.34320904505061,5.83846153846154,320.581320795042,75,23395,0,1,0,0,9 +"14571",2014,55117,"WI","55","117",114994,0.918308781327721,6916,0.143720541941319,8.84159284680318,9.52200748967842,10.3999200910145,4.48461538461538,319.347112569857,216,67638,0,1,0,0,9 +"14572",2014,55119,"WI","55","119",20414,0.985353188987949,981,0.150191045361027,6.88857245956536,7.77359446736019,8.61740045183326,5.26153846153846,225.949422090901,26,11507,0,1,0,0,9 +"14573",2014,55121,"WI","55","121",29417,0.976544175136826,1575,0.140293027841044,7.36201055125973,8.15679704667565,8.99702338147971,4.5,281.740798465412,47,16682,0,1,0,0,9 +"14574",2014,55123,"WI","55","123",30199,0.984535911785158,1455,0.151230173184543,7.28276117960559,8.06652149046999,8.99156227817161,4.78461538461538,252.665310901584,41,16227,0,1,0,0,9 +"14575",2014,55125,"WI","55","125",21422,0.872000746895715,893,0.176920922416208,6.7945865808765,7.52994337060159,8.60995467149755,8.4,446.74767691208,50,11192,0,1,0,0,9 +"14576",2014,55127,"WI","55","127",103190,0.967932939238298,9773,0.136263203798818,9.18737876033884,9.37407356395878,10.316424675483,5.45384615384615,329.855157660968,202,61239,0,1,0,0,9 +"14577",2014,55129,"WI","55","129",15654,0.972722626804651,678,0.175418423406158,6.5191472879404,7.35179986905778,8.36404201192206,6.14615384615385,464.684014869888,40,8608,0,1,0,0,9 +"14578",2014,55131,"WI","55","131",133610,0.967966469575631,6766,0.142601601676521,8.81966534934065,9.71836206840944,10.5707013510696,4.48461538461538,248.601615910503,196,78841,0,1,0,0,9 +"14579",2014,55133,"WI","55","133",395518,0.943294616174232,21034,0.150026041798351,9.95389545507997,10.7726866768764,11.666753235525,4.36923076923077,275.315923945592,639,232097,0,1,0,0,9 +"14580",2014,55135,"WI","55","135",51934,0.980821812300227,2758,0.151422959910656,7.92226105835325,8.68592279469073,9.58857130713058,5.57692307692308,375.561665884247,112,29822,0,1,0,0,9 +"14581",2014,55137,"WI","55","137",24110,0.961509746992949,1114,0.164993778515139,7.01571242048723,7.85321638815607,8.73069036567864,7.04615384615385,378.512156063474,52,13738,0,1,0,0,9 +"14582",2014,55139,"WI","55","139",169445,0.937962170615834,15406,0.129227773023695,9.64251232291291,9.91591007253469,10.8217363661164,5.13846153846154,273.179207490709,283,103595,0,1,0,0,9 +"14583",2014,55141,"WI","55","141",73595,0.959589646035736,4065,0.148664990828181,8.31016902198191,9.00035980718825,9.9572652582166,6.59230769230769,326.41089928568,138,42278,0,1,0,0,9 +"14584",2014,54001,"WV","54","001",16909,0.977171920279141,1400,0.1392749423384,7.24422751560335,7.5847730776122,8.50976567558744,6.64615384615385,550.878287080345,53,9621,1,1,1,0,9 +"14585",2014,54003,"WV","54","003",110316,0.90190906124225,6376,0.128693933790203,8.76029622047005,9.62245002280302,10.4287189136097,5.38461538461539,439.764262422593,294,66854,1,1,1,0,9 +"14586",2014,54005,"WV","54","005",23716,0.988573115196492,1278,0.156982627761849,7.15305163493748,8.10832229017324,8.85409390765552,9.1,952.92684674357,133,13957,1,1,1,0,9 +"14587",2014,54007,"WV","54","007",14407,0.984313181092524,830,0.157492885402929,6.72142570079064,7.42833319419081,8.31115254800169,9.28461538461539,515.093435553426,43,8348,1,1,1,0,9 +"14588",2014,54009,"WV","54","009",23383,0.976264807766326,1672,0.162553992216568,7.42177579364465,7.89282552625112,8.82335348511379,7.11538461538461,574.416378231092,78,13579,1,1,1,0,9 +"14589",2014,54011,"WV","54","011",96659,0.927570117630019,9764,0.129465440362512,9.18645743151285,9.3445215534422,10.2772899801355,5.39230769230769,603.573153066152,350,57988,1,1,1,0,9 +"14590",2014,54013,"WV","54","013",7565,0.990218109715796,352,0.161136814276272,5.8636311755981,6.77878489768518,7.67415292128168,9.53076923076923,640,28,4375,1,1,1,0,9 +"14591",2014,54015,"WV","54","015",8892,0.99055330634278,467,0.150359874044085,6.1463292576689,7.0057890192535,7.82883452758809,10.6769230769231,678.778199241366,34,5009,1,1,1,0,9 +"14592",2014,54017,"WV","54","017",8471,0.973202691535828,569,0.152284263959391,6.34388043412633,6.96885037834195,7.74153358928183,4.92307692307692,476.553564620663,25,5246,1,1,1,0,9 +"14593",2014,54019,"WV","54","019",45176,0.944373118469984,2494,0.156499026031521,7.82164312623998,8.64979915596426,9.45305122878292,8.2,746.07081992047,197,26405,1,1,1,0,9 +"14594",2014,54021,"WV","54","021",8511,0.858183527200094,937,0.120197391610857,6.84268328223842,7.12929754892937,7.5740450053722,6.41538461538462,241.379310344828,14,5800,1,1,1,0,9 +"14595",2014,54023,"WV","54","023",11614,0.983554330979852,619,0.149474771827105,6.4281052726846,7.21890970761906,8.08671792030391,7.56923076923077,549.031569315236,36,6557,1,1,1,0,9 +"14596",2014,54025,"WV","54","025",35602,0.956097972024044,1983,0.155693500365148,7.5923661285198,8.30622521603216,9.24358170575598,6.80769230769231,521.371304903841,106,20331,1,1,1,0,9 +"14597",2014,54027,"WV","54","027",23430,0.978233034571063,1238,0.153734528382416,7.12125245324454,7.95191138185419,8.7984546960651,6.21538461538462,419.025215026097,57,13603,1,1,1,0,9 +"14598",2014,54029,"WV","54","029",30293,0.96457927574027,1524,0.161918595054963,7.32909373624659,8.21527695893663,9.09414357757367,7.87692307692308,634.358212367128,111,17498,1,1,1,0,9 +"14599",2014,54031,"WV","54","031",13964,0.952663993125179,741,0.148381552563735,6.60800062529609,7.45414107814668,8.28778002708843,8.32307692307692,458.374628344896,37,8072,1,1,1,0,9 +"14600",2014,54033,"WV","54","033",68702,0.970321096911298,3847,0.143139937701959,8.2550489027523,9.05310159554969,9.914081240747,5.29230769230769,496.327178876315,200,40296,1,1,1,0,9 +"14601",2014,54035,"WV","54","035",29139,0.986684512165826,1627,0.145784000823638,7.39449310721904,8.1870210673435,9.03431892773071,6.53076923076923,528.084493518963,88,16664,1,1,1,0,9 +"14602",2014,54037,"WV","54","037",55702,0.904330185630678,3498,0.133998779217981,8.15994665557855,8.90354343566472,9.74296662570103,4.56923076923077,415.34691926134,139,33466,1,1,1,0,9 +"14603",2014,54039,"WV","54","039",190458,0.901794621386342,11270,0.154044461246049,9.32989960703382,10.0649684434582,10.9622149075053,5.78461538461538,615.182781973549,694,112812,1,1,1,0,9 +"14604",2014,54041,"WV","54","041",16445,0.98364244451201,921,0.14442079659471,6.82546003625531,7.64826303090192,8.47303229563047,6.22307692307692,470.514429109159,45,9564,1,1,1,0,9 +"14605",2014,54043,"WV","54","043",21523,0.992287320540817,1162,0.146587371648934,7.05789793741186,7.94378269245863,8.75463404743127,9.40769230769231,747.514910536779,94,12575,1,1,1,0,9 +"14606",2014,54045,"WV","54","045",35254,0.973790208203324,1997,0.165371305383786,7.59940133341582,8.49228555571005,9.26369154747318,10.3384615384615,804.705882352941,171,21250,1,1,1,0,9 +"14607",2014,54047,"WV","54","047",20390,0.90446297204512,1103,0.169200588523786,7.0057890192535,7.85010354517558,8.71177264560569,12.8615384615385,946.502057613169,115,12150,1,1,1,0,9 +"14608",2014,54049,"WV","54","049",56841,0.951900916591897,4850,0.142291655671082,8.48673398393153,8.84520113533958,9.72136597574484,5.88461538461538,420.757363253857,141,33511,1,1,1,0,9 +"14609",2014,54051,"WV","54","051",32363,0.985353644594135,1861,0.161295306368384,7.52886925664225,8.25712628599743,9.1503780308035,7.5,501.636920477347,95,18938,1,1,1,0,9 +"14610",2014,54053,"WV","54","053",27177,0.982963535342385,1471,0.152555469698642,7.29369772060144,8.12415060330663,9.02099420024526,9.23846153846154,739.277292715569,116,15691,1,1,1,0,9 +"14611",2014,54055,"WV","54","055",61807,0.92324493989354,4052,0.150258061384633,8.30696586536857,8.90923527919226,9.81901839590968,7.49230769230769,731.018910527801,259,35430,1,1,1,0,9 +"14612",2014,54057,"WV","54","057",27580,0.960406091370558,1768,0.142567077592458,7.47760424319759,8.07651532755233,8.97626225560919,7.8,389.030612244898,61,15680,1,1,1,0,9 +"14613",2014,54059,"WV","54","059",25742,0.973428638023464,1439,0.157291585735374,7.27170370688737,8.12533508671429,8.97903863296051,11.7692307692308,945.0337512054,147,15555,1,1,1,0,9 +"14614",2014,54061,"WV","54","061",103631,0.917495730042169,17957,0.10761258696722,9.7957352900419,9.36357634787504,10.4045961182387,4.34615384615385,226.110751062144,157,69435,1,1,1,0,9 +"14615",2014,54063,"WV","54","063",13619,0.983552390043322,669,0.148909611572068,6.50578406012823,7.34987370473834,8.22577079934873,5.76153846153846,563.834071687475,42,7449,1,1,1,0,9 +"14616",2014,54065,"WV","54","065",17533,0.980265784520618,884,0.164204642673815,6.78445706263764,7.63433723562832,8.54266598738927,5.83846153846154,445.235975066785,45,10107,1,1,1,0,9 +"14617",2014,54067,"WV","54","067",25712,0.987904480398258,1493,0.157514001244555,7.30854279753919,8.05452260953729,8.93787526532926,8.93846153846154,586.158662492507,88,15013,1,1,1,0,9 +"14618",2014,54069,"WV","54","069",43279,0.947018184338825,3189,0.155849257145498,8.06746266701006,8.45935219172639,9.44628168152025,5.46923076923077,415.086809020156,104,25055,1,1,1,0,9 +"14619",2014,54071,"WV","54","071",7233,0.966957002626849,408,0.166735794276234,6.01126717440416,6.58617165485467,7.57558465155779,4.82307692307692,291.616038882139,12,4115,1,1,1,0,9 +"14620",2014,54073,"WV","54","073",7589,0.979180392673607,476,0.143365397285545,6.16541785423142,6.91572344863131,7.61874237767041,6.99230769230769,523.67444905084,24,4583,1,1,1,0,9 +"14621",2014,54075,"WV","54","075",8656,0.981053604436229,420,0.171095194085028,6.04025471127741,6.87419849545329,7.77485576666552,8.57692307692308,532.439361072767,27,5071,1,1,1,0,9 +"14622",2014,54077,"WV","54","077",33927,0.980634892563445,1884,0.148112123087806,7.54115245513631,8.40760151478614,9.18768568141138,5.91538461538462,447.502646521028,93,20782,1,1,1,0,9 +"14623",2014,54079,"WV","54","079",56631,0.973918878352846,2799,0.143137151030354,7.93701748951545,8.96226355411676,9.72853875007159,5.45384615384615,442.63775971093,147,33210,1,1,1,0,9 +"14624",2014,54081,"WV","54","081",78236,0.900531724525794,4664,0.14871670330794,8.44762872803033,9.25052216160901,10.0139102337862,7.03076923076923,592.115288329669,272,45937,1,1,1,0,9 +"14625",2014,54083,"WV","54","083",29371,0.976201014606244,1903,0.144087705559906,7.55118686729615,8.15017926968233,8.99230873254815,7.13076923076923,371.294308754424,64,17237,1,1,1,0,9 +"14626",2014,54085,"WV","54","085",10082,0.991767506447134,544,0.15740924419758,6.29894924685594,7.06902342657826,7.95296679092313,6.1,538.101024127756,31,5761,1,1,1,0,9 +"14627",2014,54087,"WV","54","087",14597,0.9862985544975,767,0.156607522093581,6.64248680136726,7.50108212425987,8.3387839714422,9.81538461538462,634.502573925536,53,8353,1,1,1,0,9 +"14628",2014,54089,"WV","54","089",13344,0.941546762589928,646,0.166966426858513,6.4707995037826,7.44833386089748,8.40938523878193,7.01538461538462,607.262362126658,49,8069,1,1,1,0,9 +"14629",2014,54091,"WV","54","091",17091,0.978936282253818,931,0.147211982914984,6.83625927727707,7.69074316354187,8.49801037199946,5.21538461538462,400.429729465768,41,10239,1,1,1,0,9 +"14630",2014,54093,"WV","54","093",7050,0.989219858156028,395,0.155602836879433,5.97888576490112,6.66057514983969,7.60738142563979,6.23076923076923,272.209849047265,11,4041,1,1,1,0,9 +"14631",2014,54095,"WV","54","095",9084,0.991743725231176,515,0.16523557904007,6.24416690066374,6.99484998583307,7.86863689418417,8.9,607.55648376685,32,5267,1,1,1,0,9 +"14632",2014,54097,"WV","54","097",24686,0.981811553107024,1965,0.140524993923681,7.58324752430336,7.94449216393216,8.86869477658097,6.63846153846154,413.976985686219,59,14252,1,1,1,0,9 +"14633",2014,54099,"WV","54","099",41574,0.9881416269784,2418,0.142180208784336,7.79069603117474,8.57640505104808,9.41058370340406,6.73076923076923,604.771438104771,145,23976,1,1,1,0,9 +"14634",2014,54101,"WV","54","101",8750,0.989714285714286,471,0.163885714285714,6.15485809401642,6.95177216439891,7.83636976054512,8.43846153846154,497.908783110934,25,5021,1,1,1,0,9 +"14635",2014,54103,"WV","54","103",15962,0.988597920060143,905,0.148602931963413,6.80793494369993,7.50714107972761,8.40469616018909,10.0615384615385,476.454293628809,43,9025,1,1,1,0,9 +"14636",2014,54107,"WV","54","107",86533,0.974633954676251,5002,0.143494389423688,8.51759311143756,9.25989215080543,10.152532741373,5.83076923076923,577.068492060333,290,50254,1,1,1,0,9 +"14637",2014,54109,"WV","54","109",22582,0.988043574528385,1223,0.168497033035161,7.10906213568717,8.01035958891978,8.81195017753998,9.35384615384615,891.920251836306,119,13342,1,1,1,0,9 +"14638",2014,56001,"WY","56","001",37702,0.932046045302636,8785,0.102169646172617,9.0808010006212,8.16536363247398,9.388319179336,3.63076923076923,222.86518611198,57,25576,0,1,0,0,9 +"14639",2014,56003,"WY","56","003",11864,0.969656102494943,595,0.144302090357384,6.38856140554563,7.15305163493748,8.02224091680654,4.72307692307692,490.661601772713,31,6318,0,1,0,0,9 +"14640",2014,56005,"WY","56","005",48195,0.964477642909015,3189,0.128996783898745,8.06746266701006,8.76233304060234,9.56296713306835,3.51538461538462,356.353317715379,108,30307,0,1,0,0,9 +"14641",2014,56007,"WY","56","007",15889,0.95241991314746,942,0.143243753540185,6.84800527457636,7.55066124310534,8.34331588140495,4.18461538461538,563.792023386928,54,9578,0,1,0,0,9 +"14642",2014,56009,"WY","56","009",14207,0.969451678749912,827,0.140353346941648,6.71780469502369,7.45066079621154,8.29754352935628,3.17692307692308,299.724253686608,25,8341,0,1,0,0,9 +"14643",2014,56011,"WY","56","011",7237,0.976785961033577,334,0.16885449772005,5.8111409929767,6.58063913728495,7.59085212368858,4.07692307692308,393.797686438592,16,4063,0,1,0,0,9 +"14644",2014,56013,"WY","56","013",40595,0.753122305702673,2428,0.142529868210371,7.79482315217939,8.38206051742474,9.3345030145966,5.20769230769231,540.113292056383,123,22773,0,1,0,0,9 +"14645",2014,56015,"WY","56","015",13541,0.968835388819142,977,0.145114836422716,6.88448665204278,7.28276117960559,8.14148104145742,3.76153846153846,391.849529780564,30,7656,0,1,0,0,9 +"14646",2014,56017,"WY","56","017",4795,0.969551616266945,181,0.17288842544317,5.19849703126583,6.15697898558556,7.15148546390474,4.33846153846154,657.894736842105,17,2584,0,1,0,0,9 +"14647",2014,56019,"WY","56","019",8589,0.965071603213412,387,0.161834905111189,5.95842469302978,6.84054652928869,7.76131918094799,4.72307692307692,232.705733023059,11,4727,0,1,0,0,9 +"14648",2014,56021,"WY","56","021",96122,0.932710513722145,7333,0.130750504567113,8.9001399880938,9.34818743866831,10.2437739346193,4.54615384615385,353.503846953629,204,57708,0,1,0,0,9 +"14649",2014,56023,"WY","56","023",18601,0.974732541261223,845,0.150153217568948,6.73933662735717,7.76387128782022,8.53286967080125,5.4,413.899316584849,43,10389,0,1,0,0,9 +"14650",2014,56025,"WY","56","025",81453,0.954967895596233,5626,0.134200090849938,8.6351539890498,9.22167588163993,10.0837653556208,4.21538461538462,416.457096871542,207,49705,0,1,0,0,9 +"14651",2014,56029,"WY","56","029",29000,0.969275862068966,1686,0.160827586206897,7.4301141385618,8.01135510916129,9.01054706927019,4.70769230769231,389.721105833638,64,16422,0,1,0,0,9 +"14652",2014,56031,"WY","56","031",8778,0.975051264524949,426,0.162451583504215,6.05443934626937,6.76849321164863,7.74630066223144,4.05384615384615,538.636834472757,26,4827,0,1,0,0,9 +"14653",2014,56033,"WY","56","033",29884,0.964261812341052,1709,0.160587605407576,7.44366368311559,8.158802490694,9.06126014896203,4.87692307692308,432.426199261993,75,17344,0,1,0,0,9 +"14654",2014,56035,"WY","56","035",10170,0.967846607669616,492,0.144051130776794,6.19847871649231,7.23705902612474,7.94236223767433,4.50769230769231,161.446561188247,10,6194,0,1,0,0,9 +"14655",2014,56037,"WY","56","037",44996,0.956862832251756,2881,0.130189350164459,7.96589273508453,8.6919864817894,9.47185812440728,4.18461538461538,339.119019836639,93,27424,0,1,0,0,9 +"14656",2014,56039,"WY","56","039",22801,0.963422656901013,1138,0.136485241875356,7.03702761468628,8.19726337141434,8.89261137817211,4.94615384615385,116.754232340922,18,15417,0,1,0,0,9 +"14657",2014,56041,"WY","56","041",20835,0.968322534197264,1131,0.138276937844972,7.03085747611612,7.87473912517181,8.68185981297147,5.05384615384615,429.618397776093,51,11871,0,1,0,0,9 +"14658",2014,56043,"WY","56","043",8277,0.961821916153196,362,0.145946599009303,5.89164421182577,6.83840520084734,7.67786350067821,4.55384615384615,334.821428571429,15,4480,0,1,0,0,9 +"14659",2015,2020,"AK","02","020",298337,0.692384786332235,25298,0.120746002004445,10.1384806202075,10.53990563885,11.4275200704274,4.86153846153846,352.569854221866,668,189466,0,1,0,0,9 +"14660",2015,2050,"AK","02","050",17970,0.119365609348915,1409,0.0976627712854758,7.25063551189868,7.52023455647463,8.43337670532313,13.9384615384615,493.877970984669,48,9719,0,1,0,0,9 +"14661",2015,2070,"AK","02","070",4987,0.20312813314618,415,0.125526368558251,6.0282785202307,6.17170059741091,7.23201033166476,9.49230769230769,662.713637949076,19,2867,0,1,0,0,9 +"14662",2015,2090,"AK","02","090",99812,0.80395142868593,11538,0.113202821304052,9.35340121481683,9.39623885726048,10.2699692526652,5.28461538461538,283.646170776695,183,64517,0,1,0,0,9 +"14663",2015,2110,"AK","02","110",32644,0.742831760813626,2240,0.144927092268104,7.71423114484909,8.35725915349991,9.2308290384035,4.56923076923077,374.301146593386,79,21106,0,1,0,0,9 +"14664",2015,2122,"AK","02","122",58075,0.872027550581145,3574,0.163874300473526,8.18144069571937,8.80807015476454,9.70856696016566,7.6,428.49337129382,149,34773,0,1,0,0,9 +"14665",2015,2130,"AK","02","130",13737,0.721627720754168,904,0.156948387566426,6.80682936039218,7.41577697541539,8.3228800217699,6.77692307692308,234.109797495025,20,8543,0,1,0,0,9 +"14666",2015,2150,"AK","02","150",13760,0.601308139534884,1011,0.124200581395349,6.91869521902047,7.46565531013406,8.27308133366583,4.70769230769231,372.526193247963,32,8590,0,1,0,0,9 +"14667",2015,2170,"AK","02","170",101162,0.874102924022854,6563,0.132787014887013,8.78920309447372,9.48349239264364,10.2718736524029,7.42307692307692,390.854974815202,239,61148,0,1,0,0,9 +"14668",2015,2180,"AK","02","180",9901,0.173416826583173,763,0.1004948995051,6.63725803128446,6.99209642741589,7.82803803212583,11.5384615384615,391.280044717719,21,5367,0,1,0,0,9 +"14669",2015,2185,"AK","02","185",9382,0.321573225325091,636,0.142720102323598,6.45519856334012,7.07072410726028,7.6314316645769,5.52307692307692,476.923076923077,31,6500,0,1,0,0,9 +"14670",2015,2188,"AK","02","188",7787,0.136637986387569,649,0.0891228971362527,6.47543271670409,6.67329796776765,7.52725591937378,15.5307692307692,473.9336492891,20,4220,0,1,0,0,9 +"14671",2015,2220,"AK","02","220",8789,0.708840596199795,523,0.148481055865286,6.25958146406492,7.12849594568004,7.8811822022271,4.53076923076923,365.430294171387,20,5473,0,1,0,0,9 +"14672",2015,2261,"AK","02","261",9417,0.793989593288733,542,0.173622172666454,6.29526600143965,6.95844839329766,7.90248743716286,8.63846153846154,371.308016877637,22,5925,0,1,0,0,9 +"14673",2015,2270,"AK","02","270",8201,0.046579685404219,662,0.0782831362029021,6.49526555593701,6.5694814204143,7.54855597916987,NA,766.75735839723,31,4043,0,1,0,0,9 +"14674",2015,2290,"AK","02","290",5461,0.240065921992309,334,0.147408899468962,5.8111409929767,6.33505425149806,7.24921505711439,17.8230769230769,1040.65040650407,32,3075,0,1,0,0,9 +"14675",2015,1001,"AL","01","001",54903,0.787516164872593,3503,0.119847731453655,8.16137502319749,8.9130119224726,9.71111565988867,5.23076923076923,477.643215925549,155,32451,0,1,0,0,9 +"14676",2015,1003,"AL","01","003",203101,0.883560396059104,11237,0.139457708233834,9.3269671839079,10.1297861215436,10.9872738100856,5.57692307692308,436.90034346423,505,115587,0,1,0,0,9 +"14677",2015,1005,"AL","01","005",26300,0.500532319391635,1750,0.127528517110266,7.46737106691756,8.09955428237636,8.81090703609974,8.94615384615385,505.273795237794,80,15833,0,1,0,0,9 +"14678",2015,1007,"AL","01","007",22553,0.769476344610473,1463,0.122777457544451,7.28824440102012,8.05261481881557,8.72355674269043,6.65384615384615,512.601452370782,72,14046,0,1,0,0,9 +"14679",2015,1009,"AL","01","009",57535,0.970435387155644,3416,0.129399495958981,8.13622555490846,8.89740886527095,9.70497563634345,5.42307692307692,510.018214936248,168,32940,0,1,0,0,9 +"14680",2015,1011,"AL","01","011",10404,0.266243752402922,699,0.141772395232603,6.54965074223381,7.20489251020467,7.8991534833431,7.97692307692308,498.564737875812,33,6619,0,1,0,0,9 +"14681",2015,1013,"AL","01","013",20168,0.535005950019833,1199,0.144486314954383,7.08924315502751,7.77779262633883,8.72290570100077,7.63846153846154,648.427784686445,73,11258,0,1,0,0,9 +"14682",2015,1015,"AL","01","015",115550,0.766828212894851,7991,0.137689311986153,8.98607118737446,9.54287630006159,10.4647876355357,7.06923076923077,663.281777360373,452,68146,0,1,0,0,9 +"14683",2015,1017,"AL","01","017",33991,0.580947897972993,2184,0.143567414903945,7.6889133368648,8.28197705886776,9.22611529109155,6.08461538461538,657.129858969823,130,19783,0,1,0,0,9 +"14684",2015,1019,"AL","01","019",25739,0.941916935389875,1432,0.153269357783908,7.26682734752059,8.00168997809913,8.87988996767346,5.49230769230769,713.403759089038,104,14578,0,1,0,0,9 +"14685",2015,1021,"AL","01","021",43693,0.879889227107317,2705,0.133408097406907,7.90285719128058,8.64646552712038,9.45680974859389,5.67692307692308,639.34104726417,163,25495,0,1,0,0,9 +"14686",2015,1023,"AL","01","023",13237,0.575054770718441,746,0.148220895973408,6.61472560020376,7.30854279753919,8.26126815057765,9.15384615384615,622.041920216362,46,7395,0,1,0,0,9 +"14687",2015,1025,"AL","01","025",24711,0.544737161587957,1630,0.137954756990814,7.39633529380081,7.99361999482774,8.90747697752874,11.7846153846154,462.140063988624,65,14065,0,1,0,0,9 +"14688",2015,1027,"AL","01","027",13415,0.839955273947074,787,0.139694371971674,6.6682282484174,7.39203156751459,8.26487826280175,6.16923076923077,651.890482398957,50,7670,0,1,0,0,9 +"14689",2015,1029,"AL","01","029",14923,0.955437914628426,872,0.132748106949005,6.77078942390898,7.51261754467451,8.35326149973387,6.07692307692308,759.013282732448,64,8432,0,1,0,0,9 +"14690",2015,1031,"AL","01","031",51004,0.778429142812328,3089,0.124931377931143,8.03560269291858,8.81581520390635,9.60157132005652,6,411.356126508868,122,29658,0,1,0,0,9 +"14691",2015,1033,"AL","01","033",54439,0.819926890648249,3218,0.139128198534139,8.07651532755233,8.78584533796121,9.68837417291718,7.97692307692308,607.961090490209,190,31252,0,1,0,0,9 +"14692",2015,1035,"AL","01","035",12677,0.517630354184744,770,0.149167784176067,6.64639051484773,7.2283884515736,8.19063168090354,9.27692307692308,699.101155657012,49,7009,0,1,0,0,9 +"14693",2015,1037,"AL","01","037",10935,0.673159579332419,596,0.173022405121171,6.39024066706535,7.13489085156588,8.05261481881557,6.71538461538462,705.521472392638,46,6520,0,1,0,0,9 +"14694",2015,1039,"AL","01","039",37566,0.855640738966086,2139,0.142762072086461,7.66809370908241,8.36730010184162,9.28173036806286,7.19230769230769,577.432790609618,122,21128,0,1,0,0,9 +"14695",2015,1041,"AL","01","041",13851,0.735759150963829,849,0.141217240632445,6.74405918631135,7.41938058291869,8.30003171177957,6.02307692307692,389.594068116124,31,7957,0,1,0,0,9 +"14696",2015,1043,"AL","01","043",81771,0.972031649362243,4901,0.133299091364909,8.49719454490955,9.22355270344832,10.0576239465471,5.27692307692308,585.105255347565,276,47171,0,1,0,0,9 +"14697",2015,1045,"AL","01","045",49428,0.763231366836611,3437,0.127154649186696,8.14235427684983,8.69366433453202,9.57851889529833,6.39230769230769,468.077783514025,136,29055,0,1,0,0,9 +"14698",2015,1047,"AL","01","047",40947,0.28573521869734,2756,0.141524409602657,7.92153563213355,8.41360887515967,9.44105518878671,9.63846153846154,727.556190723659,168,23091,0,1,0,0,9 +"14699",2015,1049,"AL","01","049",71065,0.944994019559558,4451,0.127108984732287,8.40088406901585,9.1248914101437,9.91615695563679,6.09230769230769,602.676375086097,245,40652,0,1,0,0,9 +"14700",2015,1051,"AL","01","051",80903,0.770651273747574,5592,0.125990383545728,8.62909228391365,9.32089736254083,10.150894355986,5.05384615384615,374.509089436819,185,49398,0,1,0,0,9 +"14701",2015,1053,"AL","01","053",37676,0.629551969423506,2391,0.129286548465867,7.77946696745832,8.51659301134421,9.22414465295258,7.06923076923077,659.666128163705,147,22284,0,1,0,0,9 +"14702",2015,1055,"AL","01","055",103033,0.822435530364058,6474,0.138004328710219,8.77554943448619,9.46653177733659,10.3317573132976,6.22307692307692,649.263944987816,389,59914,0,1,0,0,9 +"14703",2015,1057,"AL","01","057",16711,0.868170666028365,1031,0.143199090419484,6.93828448401696,7.56992765524265,8.45977592054629,7.06153846153846,584.67098968853,55,9407,0,1,0,0,9 +"14704",2015,1059,"AL","01","059",31532,0.927533933781555,2072,0.122827603704174,7.63626960337937,8.31409733540581,9.08341567840252,6.47692307692308,641.45100641451,116,18084,0,1,0,0,9 +"14705",2015,1061,"AL","01","061",26645,0.884969037342841,1466,0.140176393319572,7.2902928824466,8.05959232888755,8.93168411073171,5.96153846153846,558.362137729327,84,15044,0,1,0,0,9 +"14706",2015,1063,"AL","01","063",8509,0.176636502526736,557,0.165001762839347,6.32256523992728,6.72623340235875,7.81802793853073,11.1307692307692,672.12770426381,32,4761,0,1,0,0,9 +"14707",2015,1065,"AL","01","065",15016,0.410895045285029,1004,0.145178476291955,6.91174730025167,7.39510754656249,8.41958036254924,7.8,529.162746942615,45,8504,0,1,0,0,9 +"14708",2015,1067,"AL","01","067",17097,0.713867930046207,929,0.145054687956952,6.83410873881384,7.65539064482615,8.50451313825886,6.85384615384615,542.740841248304,52,9581,0,1,0,0,9 +"14709",2015,1069,"AL","01","069",104326,0.709640933228534,6179,0.130782355309319,8.72891172506098,9.47891607468823,10.3589167386817,6.27692307692308,470.962820470299,284,60302,0,1,0,0,9 +"14710",2015,1071,"AL","01","071",52229,0.934499990426774,3003,0.145876811732945,8.00736706798333,8.79724623670353,9.62667947663622,6.7,611.05207226355,184,30112,0,1,0,0,9 +"14711",2015,1073,"AL","01","073",660717,0.541552586054241,44075,0.132999453623866,10.6936480072661,11.3339423294417,12.2444805284264,5.79230769230769,540.845326833413,2139,395492,0,1,0,0,9 +"14712",2015,1075,"AL","01","075",13931,0.883353671667504,686,0.145718182470749,6.53087762772588,7.40245152081824,8.26230094178745,6.35384615384615,751.782242384964,58,7715,0,1,0,0,9 +"14713",2015,1077,"AL","01","077",92524,0.880884959578055,8058,0.136905019238252,8.99442066575129,9.23610557986221,10.2276341394667,6.97692307692308,464.89140136864,250,53776,0,1,0,0,9 +"14714",2015,1079,"AL","01","079",33116,0.815225268752265,1977,0.139237830655876,7.58933582317062,8.27614021955846,9.20069399492438,7.77692307692308,706.424366521628,138,19535,0,1,0,0,9 +"14715",2015,1081,"AL","01","081",157162,0.716019139486644,22850,0.101901222941933,10.0367063963224,9.84569952876873,10.8178364001729,5.28461538461538,308.248943868373,305,98946,0,1,0,0,9 +"14716",2015,1083,"AL","01","083",91596,0.834425084064806,5203,0.126020786933927,8.5569906612903,9.43962502804716,10.2028881935671,5.51538461538462,423.660062377184,235,55469,0,1,0,0,9 +"14717",2015,1085,"AL","01","085",10350,0.250628019323672,676,0.141932367149758,6.51619307604296,7.01481435127554,8.04590874227078,11.5923076923077,887.029288702929,53,5975,0,1,0,0,9 +"14718",2015,1087,"AL","01","087",19331,0.166830479540634,2491,0.14132740158295,7.82043951526218,7.4899708988348,8.71817293002873,8.08461538461538,718.06839601472,80,11141,0,1,0,0,9 +"14719",2015,1089,"AL","01","089",353194,0.705739621850881,24791,0.130596782504799,10.118235963062,10.6645503578944,11.6015222512009,5.52307692307692,389.139430006044,837,215090,0,1,0,0,9 +"14720",2015,1091,"AL","01","091",19772,0.472789803762897,1306,0.137972890956909,7.17472430983638,7.7393592026891,8.67282848294769,7.68461538461538,703.146128188948,78,11093,0,1,0,0,9 +"14721",2015,1093,"AL","01","093",30137,0.949563659289246,1674,0.135481302053954,7.42297125104942,8.18896686364888,9.03872133831536,6.99230769230769,639.446204388126,109,17046,0,1,0,0,9 +"14722",2015,1095,"AL","01","095",94588,0.946462553389436,5861,0.126030786146234,8.67607551647643,9.3527076132631,10.1962691005326,5.82307692307692,606.895524610917,326,53716,0,1,0,0,9 +"14723",2015,1097,"AL","01","097",414654,0.605830403179518,29009,0.131152720099167,10.2753614056492,10.8108989798037,11.754058235644,6.91538461538462,556.220487932844,1357,243968,0,1,0,0,9 +"14724",2015,1099,"AL","01","099",21720,0.562292817679558,1413,0.146961325966851,7.25347038268453,7.83439230291044,8.769196271411,10.1153846153846,645.530315411015,79,12238,0,1,0,0,9 +"14725",2015,1101,"AL","01","101",227420,0.382420191715768,17528,0.124289860170609,9.7715548812753,10.2592721001897,11.183629417798,6.12307692307692,496.382547455947,671,135178,0,1,0,0,9 +"14726",2015,1103,"AL","01","103",119316,0.848151128096819,7182,0.133469107244628,8.87933317478603,9.62317823441376,10.4618167989461,5.91538461538462,490.021000900039,343,69997,0,1,0,0,9 +"14727",2015,1105,"AL","01","105",9650,0.306010362694301,875,0.130880829015544,6.77422388635761,6.92067150424868,7.93343838762749,10.0384615384615,805.987334484744,42,5211,0,1,0,0,9 +"14728",2015,1107,"AL","01","107",20788,0.581585530113527,1392,0.136232441793342,7.23849684089437,7.79811262882979,8.71423914360857,6.78461538461538,582.183587207911,73,12539,0,1,0,0,9 +"14729",2015,1109,"AL","01","109",33518,0.58592398114446,5988,0.108807208067307,8.69751274553952,8.11072758297449,9.24956108512946,6.61538461538461,459.632294164668,92,20016,0,1,0,0,9 +"14730",2015,1111,"AL","01","111",22603,0.788346679644295,1310,0.142812900942353,7.1777824161952,7.85941315469358,8.76764057725779,5.93076923076923,673.373999841559,85,12623,0,1,0,0,9 +"14731",2015,1113,"AL","01","113",58946,0.527720286363791,4094,0.121314423370543,8.31727776622123,8.90842413949658,9.80261694215115,5.97692307692308,577.334685141377,205,35508,0,1,0,0,9 +"14732",2015,1115,"AL","01","115",86569,0.891508507664406,4808,0.130346890919382,8.47803647621504,9.35979432514452,10.1469042086899,5.23846153846154,501.073729420186,259,51689,0,1,0,0,9 +"14733",2015,1117,"AL","01","117",209047,0.848254220342794,11981,0.127789444478993,9.3910773406399,10.3040071182513,11.0728844399222,4.22307692307692,325.709495868758,408,125265,0,1,0,0,9 +"14734",2015,1119,"AL","01","119",13212,0.257795943082047,1959,0.140402664244626,7.58018941794454,7.10578612948127,8.35514473946184,8.03076923076923,801.966110464364,62,7731,0,1,0,0,9 +"14735",2015,1121,"AL","01","121",81168,0.656933767001774,5361,0.140646560220777,8.58690580382754,9.2304370736753,10.108385663509,6.58461538461538,712.826712243112,342,47978,0,1,0,0,9 +"14736",2015,1123,"AL","01","123",40628,0.710938269173969,2418,0.151718026976469,7.79069603117474,8.39795910349254,9.37898549795389,6.11538461538461,514.52784503632,119,23128,0,1,0,0,9 +"14737",2015,1125,"AL","01","125",204953,0.661341868623538,26000,0.115055646904412,10.1658518170036,10.0922052768353,11.0857820716188,5.46153846153846,409.547679098046,518,126481,0,1,0,0,9 +"14738",2015,1127,"AL","01","127",64950,0.923110084680523,3864,0.141539645881447,8.25945819533241,8.97017781549238,9.84469250602562,7.26923076923077,914.731999572055,342,37388,0,1,0,0,9 +"14739",2015,1129,"AL","01","129",16831,0.66609232962985,1104,0.141881052819203,7.00669522683704,7.54750168281497,8.49964003216865,8.96153846153846,701.60957490714,68,9692,0,1,0,0,9 +"14740",2015,1131,"AL","01","131",10900,0.277247706422018,709,0.142752293577982,6.56385552653213,7.10414409298753,8.04558828080353,14.7153846153846,802.407221664995,48,5982,0,1,0,0,9 +"14741",2015,1133,"AL","01","133",23929,0.973964645409336,1253,0.142295958878348,7.13329595489607,7.95050243480885,8.81060879571578,7.56923076923077,540.981176819327,73,13494,0,1,0,0,9 +"14742",2015,5001,"AR","05","001",18376,0.73911623857205,1083,0.149053112755768,6.98749024700099,7.71824095195932,8.59581951187143,4.10769230769231,551.173619690202,58,10523,0,1,0,0,9 +"14743",2015,5003,"AR","05","003",20856,0.730389336401995,1244,0.133678557729191,7.12608727329912,7.82244472948932,8.69868106746161,7.45384615384615,570.046640179651,66,11578,0,1,0,0,9 +"14744",2015,5005,"AR","05","005",41156,0.980901934104383,1759,0.153221887452619,7.47250074473756,8.22389538017882,9.28470545393149,5.40769230769231,664.854896632049,137,20606,0,1,0,0,9 +"14745",2015,5007,"AR","05","007",251759,0.911315980759377,14776,0.103996282158731,9.60075952187908,10.4748907381877,11.1981188251218,3.72307692307692,332.687785309171,481,144580,0,1,0,0,9 +"14746",2015,5009,"AR","05","009",37165,0.976886855912821,2143,0.134642809094578,7.66996199547358,8.3813734682737,9.24879155835043,4.79230769230769,495.530509133307,102,20584,0,1,0,0,9 +"14747",2015,5011,"AR","05","011",10999,0.693608509864533,664,0.13428493499409,6.49828214947643,7.17548971362422,8.05134093329298,5.70769230769231,498.793242156074,31,6215,0,1,0,0,9 +"14748",2015,5013,"AR","05","013",5197,0.770829324610352,358,0.154704637290745,5.8805329864007,6.28599809450886,7.27586460054653,5.30769230769231,485.436893203883,15,3090,0,1,0,0,9 +"14749",2015,5015,"AR","05","015",27777,0.954242718796126,1428,0.153220290168125,7.26403014289953,7.99429498641598,8.92811007820265,4.51538461538462,526.070453486049,79,15017,0,1,0,0,9 +"14750",2015,5017,"AR","05","017",10987,0.434968599253663,685,0.150996632383726,6.52941883826223,7.08673793451058,7.98820359702258,8.92307692307692,620.104438642298,38,6128,0,1,0,0,9 +"14751",2015,5019,"AR","05","019",22536,0.739971600993965,3376,0.115548455804047,8.12444685571585,7.73105314400713,8.82114223633189,5.37692307692308,466.753385874971,61,13069,0,1,0,0,9 +"14752",2015,5021,"AR","05","021",15206,0.984150993029068,867,0.133828751808497,6.76503897678054,7.46565531013406,8.33375100695358,6.50769230769231,754.129758199665,63,8354,0,1,0,0,9 +"14753",2015,5023,"AR","05","023",25384,0.979751024267255,1219,0.146706586826347,7.10578612948127,7.87283617502572,8.81239690526686,6.82307692307692,684.371048129138,92,13443,0,1,0,0,9 +"14754",2015,5025,"AR","05","025",8290,0.875633293124246,450,0.135343787696019,6.10924758276437,6.88346258641309,7.74109909003537,5.56153846153846,714.285714285714,33,4620,0,1,0,0,9 +"14755",2015,5027,"AR","05","027",24118,0.615971473588191,2748,0.123807944273986,7.91862865334224,7.79152281915073,8.85808422219916,6.43846153846154,590.101054805635,80,13557,0,1,0,0,9 +"14756",2015,5029,"AR","05","029",20939,0.865705143512107,1235,0.140121304742347,7.11882624906208,7.76387128782022,8.69316127423802,6,631.366276622611,75,11879,0,1,0,0,9 +"14757",2015,5031,"AR","05","031",104509,0.826990976853668,8174,0.108469127060827,9.00871366412422,9.49152639068426,10.356631095961,4.38461538461538,374.965356461631,230,61339,0,1,0,0,9 +"14758",2015,5033,"AR","05","033",61963,0.933896034730404,3550,0.129577328405661,8.17470288246946,8.94871583384369,9.78908629222615,5.12307692307692,558.374195742751,197,35281,0,1,0,0,9 +"14759",2015,5035,"AR","05","035",48972,0.456587437719513,3403,0.12258024993874,8.1324126745009,8.69299353121993,9.61393706902432,6.06923076923077,641.596863304224,180,28055,0,1,0,0,9 +"14760",2015,5037,"AR","05","037",17253,0.754941169651655,1069,0.130238219440097,6.97447891102505,7.66481578528574,8.5179928715868,5.32307692307692,576.546895912694,56,9713,0,1,0,0,9 +"14761",2015,5039,"AR","05","039",7539,0.568643056108237,389,0.156784719458814,5.96357934361845,6.7093043402583,7.6425241342329,6.86153846153846,761.723399190669,32,4201,0,1,0,0,9 +"14762",2015,5041,"AR","05","041",12024,0.505489021956088,716,0.145292747837658,6.57368016696065,7.18916773842032,8.15219801586179,7.18461538461538,690.92584062644,45,6513,0,1,0,0,9 +"14763",2015,5043,"AR","05","043",18615,0.700832661831856,1960,0.12484555466022,7.58069975222456,7.60489448081162,8.61050136854989,6.72307692307692,548.327137546468,59,10760,0,1,0,0,9 +"14764",2015,5045,"AR","05","045",121333,0.857590268105132,14739,0.103879406262105,9.59825232083676,9.61919971315236,10.5429965864268,4.6,316.459939658062,236,74575,0,1,0,0,9 +"14765",2015,5047,"AR","05","047",17753,0.960739030023095,1068,0.13349856362305,6.97354301952014,7.65539064482615,8.49719454490955,4.88461538461539,666.734013536721,66,9899,0,1,0,0,9 +"14766",2015,5049,"AR","05","049",12149,0.980245287677998,573,0.154662935221006,6.35088571671474,7.07072410726028,8.07121853996986,5.12307692307692,681.998413957177,43,6305,0,1,0,0,9 +"14767",2015,5051,"AR","05","051",97930,0.888910446237108,5420,0.144256101296845,8.59785109443369,9.2881343994162,10.2323955379221,5.38461538461539,613.302512862576,329,53644,0,1,0,0,9 +"14768",2015,5053,"AR","05","053",18031,0.960179690532971,991,0.133603238866397,6.89871453432999,7.72929567431048,8.5571828396324,4.48461538461538,495.757460196396,52,10489,0,1,0,0,9 +"14769",2015,5055,"AR","05","055",44321,0.974098057354302,2818,0.118634507344148,7.94378269245863,8.66871183905515,9.46125472023575,5.10769230769231,535.78412201799,137,25570,0,1,0,0,9 +"14770",2015,5057,"AR","05","057",22095,0.67295768273365,1252,0.132880742249378,7.13249755166004,7.83002808253384,8.74209519574531,4.83846153846154,519.416275043285,63,12129,0,1,0,0,9 +"14771",2015,5059,"AR","05","059",33511,0.871475038047208,2085,0.14010324967921,7.6425241342329,8.33997857199043,9.12782795040172,4.96153846153846,673.383626145512,133,19751,0,1,0,0,9 +"14772",2015,5061,"AR","05","061",13332,0.765676567656766,756,0.125037503750375,6.62804137617953,7.2991214627108,8.24380842366528,4.16153846153846,481.165795985703,35,7274,0,1,0,0,9 +"14773",2015,5063,"AR","05","063",37055,0.956686007286466,2304,0.130751585481042,7.74240202181578,8.42244285487043,9.26378634768181,6.37692307692308,536.604062859333,112,20872,0,1,0,0,9 +"14774",2015,5065,"AR","05","065",13495,0.963690255650241,643,0.14672100778066,6.46614472423762,7.3178761986265,8.11880299698004,6.50769230769231,515.88379038827,38,7366,0,1,0,0,9 +"14775",2015,5067,"AR","05","067",17386,0.808754170021857,1069,0.135511330955942,6.97447891102505,7.75276480885133,8.55833513474741,7.40769230769231,596.647409792594,63,10559,0,1,0,0,9 +"14776",2015,5069,"AR","05","069",71920,0.417018909899889,5303,0.137861512791991,8.57602797713713,9.02208122251547,9.95565296651681,6.96923076923077,637.33798009214,267,41893,0,1,0,0,9 +"14777",2015,5071,"AR","05","071",26103,0.943186606903421,1729,0.12358732712715,7.45529848568329,8.01433573729942,8.89686174448039,5.66923076923077,530.54006257652,78,14702,0,1,0,0,9 +"14778",2015,5073,"AR","05","073",7009,0.619917249250963,431,0.156370380938793,6.06610809010375,6.5792512120101,7.60936653795421,7.41538461538462,583.756345177665,23,3940,0,1,0,0,9 +"14779",2015,5075,"AR","05","075",16705,0.979048189164921,1146,0.130799161927567,7.04403289727469,7.54274354536855,8.44848599340645,5.90769230769231,528.815022663501,49,9266,0,1,0,0,9 +"14780",2015,5077,"AR","05","077",9660,0.437474120082816,687,0.1324016563147,6.53233429222235,7.13568734702814,7.72621265050753,6.56923076923077,673.400673400673,40,5940,0,1,0,0,9 +"14781",2015,5079,"AR","05","079",13872,0.682670126874279,1150,0.11361014994233,7.0475172213573,7.61726781362835,7.97796809312855,6.05384615384615,251.889168765743,23,9131,0,1,0,0,9 +"14782",2015,5081,"AR","05","081",12417,0.771361842635097,680,0.139727792542482,6.52209279817015,7.3185395485679,8.18367658262066,5.36923076923077,606.060606060606,42,6930,0,1,0,0,9 +"14783",2015,5083,"AR","05","083",21728,0.946014359351988,1298,0.137932621502209,7.16857989726403,7.82003798945875,8.72745411689943,5.66923076923077,607.852801051421,74,12174,0,1,0,0,9 +"14784",2015,5085,"AR","05","085",71409,0.916285062107017,4312,0.114299318013136,8.36915711258883,9.19299073364107,9.95868571300089,4.13076923076923,542.79252469944,228,42005,0,1,0,0,9 +"14785",2015,5087,"AR","05","087",15719,0.960557287359247,858,0.143775049303391,6.75460409948796,7.51969240411654,8.38685668968823,3.8,553.547220967013,49,8852,0,1,0,0,9 +"14786",2015,5089,"AR","05","089",16226,0.976950573154197,704,0.181622088006902,6.55677835615804,7.28207365809346,8.38228942895144,5.1,599.83850501788,52,8669,0,1,0,0,9 +"14787",2015,5091,"AR","05","091",43858,0.726549318254366,2689,0.127502394090018,7.89692465626886,8.58951385299586,9.45938556081305,4.92307692307692,548.031002896735,140,25546,0,1,0,0,9 +"14788",2015,5093,"AR","05","093",43692,0.6282156916598,2981,0.126979767463151,8.00001409367807,8.55929436743487,9.45727857185611,8.87692307692308,705.938659115383,177,25073,0,1,0,0,9 +"14789",2015,5095,"AR","05","095",7454,0.572578481352294,482,0.15870673463912,6.1779441140506,6.62406522779989,7.67322312112171,5.95384615384615,584.652862362972,24,4105,0,1,0,0,9 +"14790",2015,5097,"AR","05","097",9029,0.964226381659098,423,0.154059142762211,6.04737217904628,6.77764659363512,7.7698009960039,6.63846153846154,779.768177028451,37,4745,0,1,0,0,9 +"14791",2015,5099,"AR","05","099",8506,0.67023277686339,515,0.144838937220785,6.24416690066374,6.84268328223842,7.78155595923534,4.89230769230769,755.508919202518,36,4765,0,1,0,0,9 +"14792",2015,5101,"AR","05","101",7848,0.976172273190622,366,0.163990825688073,5.90263333340137,6.6945620585211,7.62900388965296,4.77692307692308,568.855178952358,24,4219,0,1,0,0,9 +"14793",2015,5103,"AR","05","103",24324,0.57654990955435,1354,0.154250945568163,7.21081845347222,7.89095671613892,8.88447171813916,6.2,829.694323144105,114,13740,0,1,0,0,9 +"14794",2015,5105,"AR","05","105",10303,0.963991070561972,561,0.146365136368048,6.3297209055227,7.10496544826984,7.97349996402463,6.03846153846154,563.043849172496,33,5861,0,1,0,0,9 +"14795",2015,5107,"AR","05","107",19548,0.360804174340086,1309,0.138275015346839,7.1770187659099,7.61677580869837,8.65416864644332,7.46923076923077,876.774992852378,92,10493,0,1,0,0,9 +"14796",2015,5109,"AR","05","109",10834,0.942588148421636,646,0.138176112239247,6.4707995037826,7.21007962817079,8.01466637046494,5.76923076923077,490.918016691213,30,6111,0,1,0,0,9 +"14797",2015,5111,"AR","05","111",24004,0.908181969671721,1438,0.130853191134811,7.27100853828099,7.96137020171951,8.82834762005316,5.52307692307692,858.085808580858,117,13635,0,1,0,0,9 +"14798",2015,5113,"AR","05","113",20205,0.959712942341005,1084,0.139272457312546,6.98841318199959,7.67600993202889,8.59304250369967,5.67692307692308,566.625743696289,60,10589,0,1,0,0,9 +"14799",2015,5115,"AR","05","115",63642,0.937934068696773,5971,0.116683950850068,8.69466969654699,8.8722067560283,9.81836529911929,5.2,410.002986776725,151,36829,0,1,0,0,9 +"14800",2015,5117,"AR","05","117",8311,0.868607869089159,446,0.146191794007941,6.10031895202006,6.77878489768518,7.76131918094799,4.61538461538462,415.663968497047,19,4571,0,1,0,0,9 +"14801",2015,5119,"AR","05","119",393857,0.595678126832835,27010,0.129265190157849,10.2039624467867,10.8258995114152,11.7254043503547,4.50769230769231,474.169991209683,1122,236624,0,1,0,0,9 +"14802",2015,5121,"AR","05","121",17447,0.977933169026194,984,0.134521694274087,6.89162589705225,7.59890045687141,8.47616284185825,7.01538461538462,681.395829031592,66,9686,0,1,0,0,9 +"14803",2015,5123,"AR","05","123",26600,0.442932330827068,1685,0.129887218045113,7.42952084278646,8.24774388722552,8.8180382503943,7.12307692307692,482.136234392385,78,16178,0,1,0,0,9 +"14804",2015,5125,"AR","05","125",116428,0.909781152300134,6093,0.122711031710585,8.71489585024849,9.66852442441658,10.4317011259033,4.01538461538462,449.694207938602,300,66712,0,1,0,0,9 +"14805",2015,5127,"AR","05","127",10538,0.926077054469539,608,0.132378060353008,6.41017488196617,7.00033446027523,7.93630269320196,4.67692307692308,694.68565474123,40,5758,0,1,0,0,9 +"14806",2015,5129,"AR","05","129",7838,0.971548864506252,361,0.15450369992345,5.88887795833288,6.6945620585211,7.63819824428578,5.57692307692308,521.697889494902,22,4217,0,1,0,0,9 +"14807",2015,5131,"AR","05","131",127511,0.847424928045424,8772,0.125549952553113,9.07932010953778,9.65905652207866,10.5345465407827,4.73076923076923,517.524973588842,387,74779,0,1,0,0,9 +"14808",2015,5133,"AR","05","133",17263,0.903435092394138,1180,0.108497943578752,7.07326971745971,7.67971363996637,8.44354665124794,5.96153846153846,411.957325446287,39,9467,0,1,0,0,9 +"14809",2015,5135,"AR","05","135",16811,0.971506751531735,787,0.145618939979775,6.6682282484174,7.44190672805162,8.38890517111471,6.8,790.740316296126,69,8726,0,1,0,0,9 +"14810",2015,5137,"AR","05","137",12405,0.978798871422813,580,0.160661023780734,6.36302810354046,7.10578612948127,8.09040229659332,6.17692307692308,539.125077017868,35,6492,0,1,0,0,9 +"14811",2015,5139,"AR","05","139",40112,0.651500797766254,2364,0.140631232548863,7.76811037852599,8.46947245520483,9.3637479186055,6.02307692307692,552.437741143458,126,22808,0,1,0,0,9 +"14812",2015,5141,"AR","05","141",16811,0.977395752780917,757,0.152578668728809,6.62936325343745,7.46965417293213,8.39276311303806,6.62307692307692,685.547314003147,61,8898,0,1,0,0,9 +"14813",2015,5143,"AR","05","143",224600,0.890271593944791,24191,0.0985886019590383,10.0937359421461,10.2724961236337,11.1039040406593,3.49230769230769,318.697407533386,431,135238,0,1,0,0,9 +"14814",2015,5145,"AR","05","145",78954,0.934468171340274,6661,0.115484965929529,8.80402490241318,9.14056147736827,10.0432060157052,6.12307692307692,503.64479787939,228,45270,0,1,0,0,9 +"14815",2015,5147,"AR","05","147",6715,0.717647058823529,379,0.152941176470588,5.93753620508243,6.61740297797448,7.53583046279837,6.29230769230769,865.566675682986,32,3697,0,1,0,0,9 +"14816",2015,5149,"AR","05","149",21505,0.953266682166938,1242,0.128016740292955,7.12447826249342,7.86134179559999,8.67982211486446,5,538.124016888815,65,12079,0,1,0,0,9 +"14817",2015,4001,"AZ","04","001",71026,0.229817250021119,5359,0.120406611663335,8.58653266949485,8.93445510940391,9.86500656571785,13.3153846153846,723.350580482405,281,38847,0,1,0,0,9 +"14818",2015,4003,"AZ","04","003",126594,0.896811855222206,7970,0.133718817637487,8.98343977178426,9.51583780429796,10.4196290221244,7.28461538461538,438.920516274825,303,69033,0,1,0,0,9 +"14819",2015,4005,"AZ","04","005",139100,0.673271028037383,19623,0.118145219266715,9.88445762662932,9.6134694202868,10.666953392005,6.51538461538462,374.245330759906,318,84971,0,1,0,0,9 +"14820",2015,4007,"AZ","04","007",53020,0.802225575254621,2719,0.158921161825726,7.90801944463247,8.39276311303806,9.50777473587064,7.92307692307692,778.734556345938,208,26710,0,1,0,0,9 +"14821",2015,4009,"AZ","04","009",37888,0.823136613175676,2897,0.103462837837838,7.97143099776935,8.47093980689877,9.13248693277132,7.36923076923077,358.829084041549,76,21180,0,1,0,0,9 +"14822",2015,4011,"AZ","04","011",9587,0.921247522686972,627,0.115990403671639,6.44094654063292,7.06219163228656,7.85243908535751,7.94615384615385,405.679513184584,22,5423,0,1,0,0,9 +"14823",2015,4012,"AZ","04","012",20476,0.783649150224653,928,0.132301230709123,6.8330317327862,7.3664451483276,8.41316512099219,7.48461538461538,766.974960523348,68,8866,0,1,0,0,9 +"14824",2015,4013,"AZ","04","013",4174423,0.852728868157348,287868,0.111776166430666,12.5702573207179,13.2150701713385,14.0192763677056,5.14615384615385,304.951936387289,7424,2434482,0,1,0,0,9 +"14825",2015,4015,"AZ","04","015",204890,0.9346527404949,9908,0.158851090829225,9.20109779060925,9.84272854669056,10.8709655731794,7.94615384615385,671.725688589095,717,106740,0,1,0,0,9 +"14826",2015,4017,"AZ","04","017",107695,0.508268721853382,6998,0.126821115186406,8.85337967292763,9.34635617589363,10.2567466691737,9.69230769230769,575.290244325074,332,57710,0,1,0,0,9 +"14827",2015,4019,"AZ","04","019",1009490,0.867073472743663,92586,0.126022050738492,11.4358932212993,11.6488277947007,12.5772602692398,5.48461538461538,396.028578090363,2276,574706,0,1,0,0,9 +"14828",2015,4021,"AZ","04","021",405922,0.84262001074098,23188,0.117377230108247,10.0513901824596,10.8912986258191,11.5431151361333,6.30769230769231,357.84432426615,798,223002,0,1,0,0,9 +"14829",2015,4023,"AZ","04","023",46493,0.96584432065042,3179,0.122792678467726,8.0643219609108,8.55236726642389,9.47270463644367,11.5384615384615,265.544570634856,65,24478,0,1,0,0,9 +"14830",2015,4025,"AZ","04","025",221019,0.949293952103665,10255,0.174478212280392,9.23552067050648,9.89101003102502,10.9868677530628,5.62307692307692,509.644987911151,586,114982,0,1,0,0,9 +"14831",2015,4027,"AZ","04","027",205187,0.924386047849035,18092,0.0961415684229508,9.80322513059773,10.0093329506195,10.8595565344187,21.6923076923077,303.147219313234,330,108858,0,1,0,0,9 +"14832",2015,6001,"CA","06","001",1634326,0.533481692147099,105909,0.121071316249023,11.5703355138141,12.3953822290918,13.1721910983636,4.77692307692308,232.646381333098,2428,1043644,0,1,0,0,9 +"14833",2015,6005,"CA","06","005",37039,0.924754987985637,1664,0.174626744782527,7.41697962138115,8.28248300373056,9.14034700015565,6.63846153846154,391.934646078292,83,21177,0,1,0,0,9 +"14834",2015,6007,"CA","06","007",224643,0.888739021469621,25799,0.13214745173453,10.1580910104686,10.0620712491519,11.0955750050628,7.22307692307692,427.811521484891,567,132535,0,1,0,0,9 +"14835",2015,6009,"CA","06","009",44972,0.941029974206173,2068,0.190362892466424,7.63433723562832,8.30003171177957,9.4265801469736,6.43846153846154,435.614542197614,107,24563,0,1,0,0,9 +"14836",2015,6011,"CA","06","011",21208,0.925028291210864,1502,0.12070916635232,7.31455283232408,7.80220931624712,8.65765054411149,15.5769230769231,281.293952180028,34,12087,0,1,0,0,9 +"14837",2015,6013,"CA","06","013",1124148,0.692331436785904,69174,0.129791628860257,11.144380348461,11.9135321232347,12.7425016864903,5.06923076923077,254.849780953722,1719,674515,0,1,0,0,9 +"14838",2015,6015,"CA","06","015",27198,0.808625634237812,1593,0.144385616589455,7.37337430991005,8.14467918344776,8.84130362048157,8.6,460.187708144111,76,16515,0,1,0,0,9 +"14839",2015,6017,"CA","06","017",184627,0.917395613859295,10186,0.169493086060002,9.22876950744455,9.91511963676584,10.8948672038493,5.73846153846154,314.622545481465,340,108066,0,1,0,0,9 +"14840",2015,6019,"CA","06","019",968889,0.784338556841909,76461,0.102790928579022,11.2445360858989,11.6782449691951,12.5211497732435,10.2461538461538,331.714059960511,1843,555599,0,1,0,0,9 +"14841",2015,6021,"CA","06","021",27723,0.912238935180175,1832,0.127258954658587,7.51316354523408,8.06117135969092,8.93141980519298,8.78461538461539,372.702737437347,58,15562,0,1,0,0,9 +"14842",2015,6023,"CA","06","023",135177,0.86601270926267,13283,0.142265326201943,9.4942403011325,9.71166096572787,10.6172458570002,5.62307692307692,468.457591306973,388,82825,0,1,0,0,9 +"14843",2015,6025,"CA","06","025",178701,0.908545559342141,14042,0.102165069025915,9.5498081175772,9.9735265433161,10.7755128681123,24.5923076923077,290.964324814818,295,101387,0,1,0,0,9 +"14844",2015,6027,"CA","06","027",18097,0.822954080786871,845,0.167486323700061,6.73933662735717,7.55538194424027,8.51097389160232,5.83076923076923,348.640302819006,35,10039,0,1,0,0,9 +"14845",2015,6029,"CA","06","029",876548,0.842085088323743,70755,0.102163258600784,11.1669784843865,11.5993508369591,12.3912567679376,10.2846153846154,370.306545672446,1891,510658,0,1,0,0,9 +"14846",2015,6031,"CA","06","031",149960,0.833082155241398,13108,0.0924713256868498,9.4809780098187,9.92363325822908,10.529024833434,10.5769230769231,216.865094577277,198,91301,0,1,0,0,9 +"14847",2015,6033,"CA","06","033",64266,0.89965144866648,3323,0.169405284287181,8.1086232683546,8.77105991537329,9.80521298326779,7.63076923076923,853.829839975762,310,36307,0,1,0,0,9 +"14848",2015,6035,"CA","06","035",31256,0.833567954952649,2570,0.125223957000256,7.85166117788927,8.43098149459717,8.78966009806154,7.27692307692308,315.398013463259,67,21243,0,1,0,0,9 +"14849",2015,6037,"CA","06","037",10077263,0.724530956471018,758919,0.11510297984681,13.5396503313153,14.1424640634369,14.9622699469377,6.68461538461538,249.812305531729,15835,6338759,0,1,0,0,9 +"14850",2015,6039,"CA","06","039",153448,0.873944267764976,11241,0.11072154736458,9.3273230874618,9.85613385615266,10.7357442888003,10.5692307692308,302.947473919184,266,87804,0,1,0,0,9 +"14851",2015,6041,"CA","06","041",260974,0.87980028661859,11883,0.154544130832957,9.38286408629003,10.3921902592143,11.2282389014982,3.57692307692308,174.30991237933,262,150307,0,1,0,0,9 +"14852",2015,6043,"CA","06","043",17653,0.920296833399422,882,0.188693139976208,6.78219205600679,7.3864708488299,8.49821422481843,7.26923076923077,362.976406533575,36,9918,0,1,0,0,9 +"14853",2015,6045,"CA","06","045",87131,0.884863022345663,4847,0.154009479978423,8.48611523584538,9.224341891612,10.1001228439695,5.86923076923077,430.607500252704,213,49465,0,1,0,0,9 +"14854",2015,6047,"CA","06","047",266133,0.83519142684297,21260,0.0971957630207453,9.96458265189594,10.3870858540476,11.1950728031733,11.4307692307692,360.301561084767,541,150152,0,1,0,0,9 +"14855",2015,6049,"CA","06","049",9064,0.90545013239188,431,0.159642541924095,6.06610809010375,6.84587987526405,7.78696700261487,8.65384615384615,553.959786622897,27,4874,0,1,0,0,9 +"14856",2015,6051,"CA","06","051",14074,0.924328549097627,1002,0.155321870115106,6.90975328164481,7.45703208912238,8.34212526333359,6.2,208.905992303463,19,9095,0,1,0,0,9 +"14857",2015,6053,"CA","06","053",430178,0.846686720380866,32639,0.110451952447591,10.3932631713538,10.9194788125159,11.6917408824349,8.25384615384615,255.665677671864,648,253456,0,1,0,0,9 +"14858",2015,6055,"CA","06","055",140766,0.863475555176676,9026,0.134485600215961,9.10786458038695,9.78301339906825,10.6170744123335,4.64615384615385,256.643960472033,214,83384,0,1,0,0,9 +"14859",2015,6057,"CA","06","057",98716,0.956349527938733,4599,0.181409295352324,8.43359416753992,9.24454854330592,10.2429196900399,5.46153846153846,303.139660772284,168,55420,0,1,0,0,9 +"14860",2015,6059,"CA","06","059",3148952,0.747870085031464,223542,0.12030319928662,12.3173545948442,12.9416133850558,13.7790872085382,4.51538461538462,210.105908635889,4076,1939974,0,1,0,0,9 +"14861",2015,6061,"CA","06","061",372870,0.879539785984391,20522,0.133802665808459,9.92925276042215,10.761280150016,11.5866962374214,5.1,274.150392415956,583,212657,0,1,0,0,9 +"14862",2015,6063,"CA","06","063",18435,0.931272036886358,839,0.197992948196366,6.73221070646721,7.4079243225596,8.54266598738927,10.4076923076923,512.06302314131,52,10155,0,1,0,0,9 +"14863",2015,6065,"CA","06","065",2344648,0.819714515782326,171529,0.109302121256581,12.0525076275029,12.6007935744376,13.4189566271148,6.73076923076923,298.717647811893,4060,1359143,0,1,0,0,9 +"14864",2015,6067,"CA","06","067",1493547,0.667285328148361,102356,0.120455533036456,11.5362122117454,12.1734616400517,13.0370864953084,6.03076923076923,332.56279688181,3014,906295,0,1,0,0,9 +"14865",2015,6069,"CA","06","069",58276,0.903596677877685,3996,0.120684329741231,8.29304913976844,8.91179955618953,9.73701965966534,7.60769230769231,225.524778812236,78,34586,0,1,0,0,9 +"14866",2015,6071,"CA","06","071",2114352,0.787205725442121,172453,0.109455757603275,12.0578800145604,12.5058994216153,13.3511756312216,6.49230769230769,324.443861332457,4105,1265242,0,1,0,0,9 +"14867",2015,6073,"CA","06","073",3280825,0.782661373282635,268360,0.115569102283724,12.5000846416768,12.9720310649914,13.8096121967829,5.23846153846154,232.853482963709,4769,2048069,0,1,0,0,9 +"14868",2015,6075,"CA","06","075",863237,0.558692456416952,50553,0.118123991441516,10.8307775698687,11.8226723100194,12.5707088146495,3.67692307692308,216.990343929695,1320,608322,0,1,0,0,9 +"14869",2015,6077,"CA","06","077",721919,0.701361233046921,52183,0.109992949347503,10.8625120503305,11.4318130186636,12.2389898795908,8.93846153846154,364.099153624963,1522,418018,0,1,0,0,9 +"14870",2015,6079,"CA","06","079",280138,0.911547166039595,30826,0.141655184230629,10.3361137687067,10.2935682586005,11.2854726420679,4.77692307692308,293.103655386981,488,166494,0,1,0,0,9 +"14871",2015,6081,"CA","06","081",765479,0.638145527179714,43066,0.12881476826928,10.6704891016666,11.6139827349332,12.372451117403,3.44615384615385,191.047170707508,905,473705,0,1,0,0,9 +"14872",2015,6083,"CA","06","083",442051,0.877376139857166,51395,0.112206510108562,10.847296170447,10.8136193570947,11.7482584226944,5.33076923076923,240.34511877787,629,261707,0,1,0,0,9 +"14873",2015,6085,"CA","06","085",1915736,0.573310727574154,123243,0.1138450183115,11.7219132951602,12.5485944039824,13.2734126815052,4.19230769230769,182.422917129545,2184,1197218,0,1,0,0,9 +"14874",2015,6087,"CA","06","087",273495,0.896480740050092,28611,0.139593045576702,10.261546538247,10.3691693561328,11.3290747395937,7.53076923076923,252.212810507281,424,168112,0,1,0,0,9 +"14875",2015,6089,"CA","06","089",178386,0.908675568710549,10707,0.148419719036247,9.27865301215827,9.83932229506034,10.8475101761482,7.82307692307692,550.68687825675,558,101328,0,1,0,0,9 +"14876",2015,6093,"CA","06","093",43275,0.896406701328712,2097,0.1747429231658,7.64826303090192,8.33973976601914,9.37915444541164,9.43076923076923,622.881355932203,147,23600,0,1,0,0,9 +"14877",2015,6095,"CA","06","095",433378,0.628520598645986,30486,0.134284619893026,10.3250228408218,10.8798568748258,11.7820896345139,6.16923076923077,320.097841226941,848,264919,0,1,0,0,9 +"14878",2015,6097,"CA","06","097",500598,0.894602055941094,30885,0.146638620210229,10.33802590813,11.013122204486,11.9218578883207,4.50769230769231,277.179242576866,831,299806,0,1,0,0,9 +"14879",2015,6099,"CA","06","099",532954,0.860128641496264,38418,0.110953290527888,10.5562813787469,11.1054383139104,11.944526046683,9.55384615384615,390.500298276446,1211,310115,0,1,0,0,9 +"14880",2015,6101,"CA","06","101",95224,0.760449046458876,6527,0.11679828614635,8.78370269863522,9.34460899278122,10.2044806390476,10.7615384615385,381.008206330598,208,54592,0,1,0,0,9 +"14881",2015,6103,"CA","06","103",63150,0.926476642913698,3817,0.138638163103721,8.24722005274523,8.84217104861172,9.77041319831079,7.95384615384615,416.867538212858,147,35263,0,1,0,0,9 +"14882",2015,6105,"CA","06","105",13094,0.909118680311593,572,0.198946082175042,6.3491389913798,7.17165682276851,8.19395302356374,7.85384615384615,580.375219327845,43,7409,0,1,0,0,9 +"14883",2015,6107,"CA","06","107",456794,0.897198737286392,34709,0.0966978550506355,10.4547542982996,10.9312302097044,11.7344597220648,11.7,373.327433838083,945,253129,0,1,0,0,9 +"14884",2015,6109,"CA","06","109",53599,0.928618071232672,2933,0.174033097632419,7.98378106897745,8.61395685984855,9.55718717759594,7.07692307692308,474.765868886576,146,30752,0,1,0,0,9 +"14885",2015,6111,"CA","06","111",845599,0.864310388257318,60655,0.126947879550473,11.012957351205,11.5639607260701,12.4325984705026,5.67692307692308,241.893214924989,1223,505595,0,1,0,0,9 +"14886",2015,6113,"CA","06","113",211998,0.77745073066727,30464,0.104137774884669,10.3243009375911,10.1038945768765,11.1023523330933,6.49230769230769,249.368928325556,326,130730,0,1,0,0,9 +"14887",2015,6115,"CA","06","115",74039,0.825213738705277,5720,0.114412674401329,8.65172408437384,9.08738146457573,9.9543707628507,9.35384615384615,457.274826789838,198,43300,0,1,0,0,9 +"14888",2015,8001,"CO","08","001",490448,0.881010830913777,31871,0.104773594754184,10.3694517843901,11.1741185050023,11.8881787576702,4.19230769230769,285.544959862076,848,296976,0,1,0,0,9 +"14889",2015,8003,"CO","08","003",15894,0.896879325531647,1807,0.116333207499685,7.49942329059223,7.41397029019044,8.43032725839458,4.97692307692308,449.919657204071,42,9335,0,1,0,0,9 +"14890",2015,8005,"CO","08","005",631688,0.793434416990666,39939,0.122862869011284,10.5951085691,11.4032891544496,12.1860535948161,3.59230769230769,250.746947007435,971,387243,0,1,0,0,9 +"14891",2015,8007,"CO","08","007",12399,0.938704734252762,479,0.19485442374385,6.17170059741091,7.13329595489607,8.15306194680105,3.9,217.328310634599,15,6902,0,1,0,0,9 +"14892",2015,8011,"CO","08","011",5891,0.867764386352062,434,0.126803598709896,6.0730445341004,6.78671695060508,6.94697599213542,3.79230769230769,414.830178895515,16,3857,0,1,0,0,9 +"14893",2015,8013,"CO","08","013",318408,0.920988166126479,33976,0.127163890354514,10.4334096719931,10.6138359404158,11.498217836098,3.06153846153846,207.840251397204,418,201116,0,1,0,0,9 +"14894",2015,8014,"CO","08","014",64914,0.902147456634932,3669,0.118341189881998,8.20767442435528,9.19684978179368,9.8928309723476,3.17692307692308,192.880939856216,77,39921,0,1,0,0,9 +"14895",2015,8015,"CO","08","015",18635,0.95186477059297,954,0.172256506573652,6.86066367144829,7.68753876620163,8.49902922078857,3.3,386.135057471264,43,11136,0,1,0,0,9 +"14896",2015,8019,"CO","08","019",9246,0.961821328141899,380,0.208847069002812,5.94017125272043,7.11476944836646,7.95822719232231,3.53076923076923,369.43744752309,22,5955,0,1,0,0,9 +"14897",2015,8021,"CO","08","021",8064,0.93687996031746,449,0.144345238095238,6.10702288774225,6.68710860786651,7.62900388965296,5.49230769230769,496.102055279943,21,4233,0,1,0,0,9 +"14898",2015,8029,"CO","08","029",29925,0.962205513784461,1397,0.165714285714286,7.24208235925696,8.02092771898158,8.96469555531546,5.51538461538462,431.519699812383,69,15990,0,1,0,0,9 +"14899",2015,8031,"CO","08","031",683328,0.821342020230402,43603,0.103430563360495,10.6828812343095,11.5782917684015,12.3107434233736,3.56153846153846,293.761537087394,1332,453429,0,1,0,0,9 +"14900",2015,8035,"CO","08","035",322333,0.924311193703406,15494,0.119336214411804,9.64820813119185,10.8336220162309,11.4815070346918,2.99230769230769,156.048720714682,298,190966,0,1,0,0,9 +"14901",2015,8037,"CO","08","037",53863,0.956946326792046,2971,0.124612442678648,7.99665387546261,9.07257144223129,9.70637717826873,3.03076923076923,159.784711126062,57,35673,0,1,0,0,9 +"14902",2015,8039,"CO","08","039",24634,0.963343346594138,1221,0.185191199155639,7.1074254741107,7.94058382710424,8.9298325032724,3.02307692307692,258.740794798647,39,15073,0,1,0,0,9 +"14903",2015,8041,"CO","08","041",674094,0.859215480333603,56548,0.115995691995478,10.9428451139869,11.3394169589081,12.2056275464883,4.42307692307692,317.724728390676,1297,408215,0,1,0,0,9 +"14904",2015,8043,"CO","08","043",46327,0.926155373756125,2469,0.147861937962743,7.81156848934518,8.69734573092535,9.26917515769708,5.95384615384615,478.953992448609,137,28604,0,1,0,0,9 +"14905",2015,8045,"CO","08","045",57724,0.954299771325618,3259,0.13509112327628,8.08917567883756,8.99665197943273,9.74443320268052,3.96923076923077,227.330851638203,80,35191,0,1,0,0,9 +"14906",2015,8049,"CO","08","049",14742,0.970763804097137,791,0.188780355447022,6.67329796776765,7.55851674304564,8.39660622842712,3.09230769230769,272.794040499423,26,9531,0,1,0,0,9 +"14907",2015,8051,"CO","08","051",16125,0.955410852713178,2218,0.129178294573643,7.70436116791031,7.62608275807238,8.48466999971068,2.83846153846154,254.381006218202,27,10614,0,1,0,0,9 +"14908",2015,8055,"CO","08","055",6408,0.911048689138577,275,0.195692883895131,5.61677109766657,6.25190388316589,7.41997992366183,7.44615384615385,739.644970414201,25,3380,0,1,0,0,9 +"14909",2015,8059,"CO","08","059",565240,0.935338971056542,33125,0.14740641143585,10.4080435632885,11.1992963267639,12.0706480333245,3.4,285.660579409654,1003,351116,0,1,0,0,9 +"14910",2015,8065,"CO","08","065",7455,0.951978537894031,514,0.142723004694836,6.24222326545517,6.96318998587024,7.66996199547358,3.72307692307692,334.588038477624,16,4782,0,1,0,0,9 +"14911",2015,8067,"CO","08","067",54776,0.90190959544326,3689,0.157696801518913,8.21311069759668,8.8446246833853,9.73737393458638,3.32307692307692,271.699436150633,93,34229,0,1,0,0,9 +"14912",2015,8069,"CO","08","069",333637,0.945617542418856,37243,0.128232180483579,10.5252192866855,10.6090325614318,11.5340899096701,3.19230769230769,253.300918579768,522,206079,0,1,0,0,9 +"14913",2015,8071,"CO","08","071",14048,0.917639521640091,857,0.160378701594533,6.75343791859778,7.25770767716004,8.19090888118251,5.39230769230769,586.36073932441,46,7845,0,1,0,0,9 +"14914",2015,8075,"CO","08","075",22484,0.925902864259029,1720,0.12987012987013,7.4500795698075,7.94165125293056,8.58485183989005,2.92307692307692,338.2949932341,45,13302,0,1,0,0,9 +"14915",2015,8077,"CO","08","077",148159,0.956445440371493,9905,0.139579775781424,9.20079495913265,9.74519497354154,10.6589050588222,5.33076923076923,384.949416707744,328,85206,0,1,0,0,9 +"14916",2015,8081,"CO","08","081",12946,0.962613934806118,720,0.14730418662135,6.5792512120101,7.3304052118444,8.20958048347558,4.36923076923077,379.879486507729,29,7634,0,1,0,0,9 +"14917",2015,8083,"CO","08","083",25763,0.841594534797966,1272,0.162054108605364,7.14834574390007,7.92226105835325,8.89740886527095,5.49230769230769,543.067299099471,79,14547,0,1,0,0,9 +"14918",2015,8085,"CO","08","085",40609,0.957176980472309,1956,0.153118766775838,7.57865685059476,8.38343320123671,9.3160508263983,4.86923076923077,395.724357516489,87,21985,0,1,0,0,9 +"14919",2015,8087,"CO","08","087",28245,0.926960523986546,1782,0.122499557443795,7.48549160803075,8.08671792030391,8.95519002452689,3.66923076923077,458.131840162891,72,15716,0,1,0,0,9 +"14920",2015,8089,"CO","08","089",18182,0.925585744142559,1145,0.139533604663953,7.04315991598834,7.58528107863913,8.50835424274903,5.59230769230769,711.165295133598,70,9843,0,1,0,0,9 +"14921",2015,8093,"CO","08","093",16739,0.964334787024315,601,0.234064161538921,6.39859493453521,7.53849499941346,8.536211197252,3.30769230769231,262.541022034693,28,10665,0,1,0,0,9 +"14922",2015,8097,"CO","08","097",17962,0.962364992762499,991,0.165738781872843,6.89871453432999,7.78030308790837,8.64347335732657,3.73076923076923,143.970189701897,17,11808,0,1,0,0,9 +"14923",2015,8099,"CO","08","099",11937,0.961213035100947,734,0.138225684845439,6.59850902861452,7.21229446850034,8.07371464110986,3.89230769230769,387.717121588089,25,6448,0,1,0,0,9 +"14924",2015,8101,"CO","08","101",163101,0.920766886775679,10694,0.135167779474068,9.27743811550868,9.86141477611422,10.7558155974484,5.44615384615385,485.651214128035,451,92865,0,1,0,0,9 +"14925",2015,8105,"CO","08","105",11355,0.942668428005284,689,0.149977983267283,6.53524127101366,7.09754885061479,8.05102220819068,6.09230769230769,521.491782553729,33,6328,0,1,0,0,9 +"14926",2015,8107,"CO","08","107",24388,0.971625389535837,1427,0.162702968673118,7.26332961747684,8.1519098729409,8.9366926884882,3.13076923076923,214.972180070814,34,15816,0,1,0,0,9 +"14927",2015,8117,"CO","08","117",30064,0.964675359233635,2051,0.142196647152741,7.62608275807238,8.45190772471761,9.17378011666438,2.43846153846154,198.843930635838,43,21625,0,1,0,0,9 +"14928",2015,8119,"CO","08","119",23421,0.961145980103326,1054,0.211476879723325,6.96034772910131,7.77527584648686,8.86502918668777,4.3,486.052409129332,69,14196,0,1,0,0,9 +"14929",2015,8123,"CO","08","123",286493,0.942120749896158,19333,0.116128491795611,9.8695687593325,10.5513235103861,11.3249197841079,3.7,279.48941039057,469,167806,0,1,0,0,9 +"14930",2015,8125,"CO","08","125",10044,0.97610513739546,550,0.126642771804062,6.30991827822652,7.04403289727469,7.87169266432365,2.52307692307692,278.035217794254,15,5395,0,1,0,0,9 +"14931",2015,9001,"CT","09","001",945323,0.80542735128628,59135,0.132278596839387,10.9875782446852,11.6966959715293,12.5584709577016,5.27692307692308,219.123647582354,1233,562696,0,1,0,0,9 +"14932",2015,9003,"CT","09","003",896563,0.776079316233215,58711,0.135449488769891,10.9803823817866,11.6007898114113,12.5128732878348,5.76153846153846,312.122301287411,1676,536969,0,1,0,0,9 +"14933",2015,9005,"CT","09","005",184171,0.952571251717154,10106,0.169114572869779,9.22088458585185,9.89767066721456,10.9149066295019,5.07692307692308,355.579868708972,390,109680,0,1,0,0,9 +"14934",2015,9007,"CT","09","007",163809,0.904693881288574,10040,0.157305154173458,9.21433239324572,9.8114819067401,10.81677377539,4.82307692307692,323.962055944198,320,98777,0,1,0,0,9 +"14935",2015,9009,"CT","09","009",860506,0.796283814406872,60535,0.135414511926704,11.0109769891418,11.5317275919328,12.48508978565,6.1,327.856802980305,1695,516994,0,1,0,0,9 +"14936",2015,9011,"CT","09","011",269818,0.857233394362126,20541,0.14336330415317,9.93017816778917,10.3232499653451,11.2890066131883,5.82307692307692,324.44298899926,535,164898,0,1,0,0,9 +"14937",2015,9013,"CT","09","013",151815,0.907354345749761,19497,0.135605836050456,9.87801588656246,9.66484958026327,10.7324104802717,4.86153846153846,220.937590493249,206,93239,0,1,0,0,9 +"14938",2015,9015,"CT","09","015",116556,0.939016438450187,8091,0.144943203267099,8.99850761180784,9.55718717759594,10.4776541056128,6.24615384615385,343.363278348493,245,71353,0,1,0,0,9 +"14939",2015,11001,"DC","11","001",677014,0.449206367962849,55847,0.103321349336941,10.9303710877458,11.4726137568984,12.3794249317406,6.93076923076923,360.951383537192,1644,455463,1,1,1,0,9 +"14940",2015,10001,"DE","10","001",173308,0.692103076603504,13260,0.120854201767951,9.49250726373985,9.90693161493868,10.8578637380156,5.31538461538462,436.346247721137,438,100379,1,1,1,0,9 +"14941",2015,10003,"DE","10","003",553929,0.674893352758206,38163,0.129718790675339,10.5496217388243,11.1393949753924,12.0592128226943,4.64615384615385,352.958868644455,1197,339133,1,1,1,0,9 +"14942",2015,10005,"DE","10","005",214828,0.834839964995252,10938,0.158252183141862,9.29999824390672,9.95489334059603,10.9962997196394,4.87692307692308,431.11221799507,502,116443,1,1,1,0,9 +"14943",2015,12001,"FL","12","001",259215,0.716679204521343,43197,0.112038269390274,10.6735263273764,10.2086533893277,11.3498769835199,4.66153846153846,312.079892452468,520,166624,0,1,0,0,9 +"14944",2015,12003,"FL","12","003",27357,0.849946997112256,1715,0.124757831633586,7.44716835960004,8.1786387885907,8.92465630218707,5.63846153846154,389.010454655969,64,16452,0,1,0,0,9 +"14945",2015,12005,"FL","12","005",181678,0.840101718424906,12271,0.132261473596143,9.41499403397655,9.98934409629581,10.9016347308801,5.53846153846154,530.988059646742,579,109042,0,1,0,0,9 +"14946",2015,12007,"FL","12","007",26759,0.788631862177211,1663,0.134197839979072,7.41637847919293,8.11162807830774,8.81016126829726,4.86923076923077,562.144798616259,91,16188,0,1,0,0,9 +"14947",2015,12009,"FL","12","009",566133,0.852898523845104,31560,0.156231839514743,10.3596457749598,10.965816144127,12.0000811530335,6.04615384615385,492.6630621192,1580,320706,0,1,0,0,9 +"14948",2015,12011,"FL","12","011",1885435,0.652402230784938,116037,0.128813775070474,11.6616643847471,12.4367120327393,13.276194577632,5.18461538461538,303.164853383429,3489,1150859,0,1,0,0,9 +"14949",2015,12013,"FL","12","013",14412,0.834304746044963,811,0.12864279766861,6.69826805411541,7.56423847517049,8.19118600464279,6.18461538461538,566.081330868761,49,8656,0,1,0,0,9 +"14950",2015,12015,"FL","12","015",172607,0.915281535511306,6981,0.167559832451755,8.8509474519704,9.48865369442386,10.6524477979153,6.06153846153846,537.051695792486,441,82115,0,1,0,0,9 +"14951",2015,12017,"FL","12","017",140397,0.944286558829605,5751,0.161876678276601,8.65712903171375,9.32206062158659,10.4650157962759,7.6,686.319463960832,464,67607,0,1,0,0,9 +"14952",2015,12019,"FL","12","019",202552,0.839349895335519,12290,0.131299616888503,9.41654120256008,10.1657364257309,11.0174317052012,5.08461538461538,393.392993778901,473,120236,0,1,0,0,9 +"14953",2015,12021,"FL","12","021",356288,0.902778089635351,17762,0.131665955631399,9.78481662281845,10.4834660349904,11.4078649043214,5.31538461538462,278.792271878224,500,179345,0,1,0,0,9 +"14954",2015,12023,"FL","12","023",68277,0.792272654041625,4731,0.139183033818123,8.46189187563115,8.98042393637454,9.82844067821322,5.56153846153846,547.335799260222,219,40012,0,1,0,0,9 +"14955",2015,12027,"FL","12","027",35644,0.847183256649085,2548,0.115783862641679,7.84306401669205,8.37170488466763,8.9851948179913,5.87692307692308,379.19826652221,77,20306,0,1,0,0,9 +"14956",2015,12029,"FL","12","029",16352,0.893713307240705,825,0.148789138943249,6.71538338633468,7.52023455647463,8.28248300373056,6.3,676.401116598669,63,9314,0,1,0,0,9 +"14957",2015,12031,"FL","12","031",911106,0.628619502011841,65567,0.124774724346015,11.0908277995802,11.6537216549356,12.5741473644198,5.85384615384615,444.202188093966,2510,565058,0,1,0,0,9 +"14958",2015,12033,"FL","12","033",309630,0.711752737137874,27218,0.131873526467074,10.2116337981203,10.4182852770545,11.425208384485,5.63846153846154,518.994549743757,957,184395,0,1,0,0,9 +"14959",2015,12035,"FL","12","035",104533,0.851367510738236,4886,0.154353170769039,8.49412925181769,9.26804308210447,10.2586062862076,6.33846153846154,435.298040232653,235,53986,0,1,0,0,9 +"14960",2015,12037,"FL","12","037",11702,0.836267304734233,686,0.144163390873355,6.53087762772588,7.24064969425547,7.92262357421729,4.75384615384615,612.557427258806,44,7183,0,1,0,0,9 +"14961",2015,12039,"FL","12","039",46057,0.417504396725796,3016,0.143648088238487,8.01168672912785,8.66957087183712,9.57921064961479,7.26153846153846,576.253986662801,159,27592,0,1,0,0,9 +"14962",2015,12041,"FL","12","041",17394,0.926756352765321,1520,0.141370587558928,7.32646561384032,7.48436864328613,8.43163530305459,5.72307692307692,486.341059602649,47,9664,0,1,0,0,9 +"14963",2015,12043,"FL","12","043",13115,0.796950057186428,682,0.126267632481891,6.52502965784346,7.40245152081824,7.96623977655947,7.20769230769231,560,42,7500,0,1,0,0,9 +"14964",2015,12045,"FL","12","045",15944,0.797666833918716,931,0.142310587054691,6.83625927727707,7.67878899819915,8.15248607578024,5.3,433.71118777723,44,10145,0,1,0,0,9 +"14965",2015,12047,"FL","12","047",14275,0.630963222416813,1377,0.138423817863398,7.22766249872865,7.45182223652793,8.11731246160197,6.55384615384615,417.089392402209,37,8871,0,1,0,0,9 +"14966",2015,12049,"FL","12","049",27167,0.89288474988037,2097,0.103986454153937,7.64826303090192,8.07121853996986,8.82276429670376,7.13076923076923,329.728303877605,50,15164,0,1,0,0,9 +"14967",2015,12051,"FL","12","051",39242,0.83469242138525,2799,0.105116966515468,7.93701748951545,8.5079506100493,9.2593209941978,10.8153846153846,414.433082571287,92,22199,0,1,0,0,9 +"14968",2015,12053,"FL","12","053",178036,0.918314273517716,8684,0.142538587701364,9.06923753099818,9.8018976967745,10.7834254549445,7.03846153846154,528.424472116946,488,92350,0,1,0,0,9 +"14969",2015,12055,"FL","12","055",100204,0.866771785557463,4657,0.133148377310287,8.44612674298238,9.04817432138579,10.0672207445187,7.58461538461538,423.783783783784,196,46250,0,1,0,0,9 +"14970",2015,12057,"FL","12","057",1364645,0.764983567154828,94162,0.118596411520945,11.4527719821504,12.1314622394854,12.9670957406796,5.1,347.204915332331,2856,822569,0,1,0,0,9 +"14971",2015,12059,"FL","12","059",19292,0.912398921832884,1315,0.135392908977815,7.18159194461187,7.7510451179718,8.51559191004926,6.20769230769231,449.894142554693,51,11336,0,1,0,0,9 +"14972",2015,12061,"FL","12","061",147547,0.879414694978549,6935,0.148976258412574,8.84433633274893,9.50159106930499,10.5571399823979,6.90769230769231,444.937316581691,329,73943,0,1,0,0,9 +"14973",2015,12063,"FL","12","063",48617,0.703642758705803,3233,0.134829380669313,8.08116577772543,8.81951754060489,9.39930647148881,5.94615384615385,577.683186378839,171,29601,0,1,0,0,9 +"14974",2015,12065,"FL","12","065",14121,0.630833510374619,709,0.163656964804192,6.56385552653213,7.4312996751559,8.24722005274523,6.00769230769231,497.100248550124,42,8449,0,1,0,0,9 +"14975",2015,12067,"FL","12","067",8722,0.833983031414813,752,0.110066498509516,6.62273632394984,7.18083119904456,7.5522372875608,4.63846153846154,310.445580715851,17,5476,0,1,0,0,9 +"14976",2015,12069,"FL","12","069",325338,0.85511683234052,16294,0.132041138754157,9.69855222087059,10.4741280586033,11.381802598089,5.57692307692308,446.483647536409,760,170219,0,1,0,0,9 +"14977",2015,12071,"FL","12","071",700243,0.880432935423846,36026,0.138866079346741,10.4919961789835,11.2027114440114,12.1480091163145,5.22307692307692,388.732440087323,1437,369663,0,1,0,0,9 +"14978",2015,12073,"FL","12","073",286098,0.634128864934393,48973,0.109424043509567,10.7990244048171,10.3180775684213,11.4667035001519,5.08461538461538,257.445567865512,468,181786,0,1,0,0,9 +"14979",2015,12075,"FL","12","075",39630,0.886525359576079,2038,0.15662376987131,7.61972421378267,8.30052860619974,9.33087517360492,5.82307692307692,674.10612616716,148,21955,0,1,0,0,9 +"14980",2015,12077,"FL","12","077",8412,0.785425582501189,558,0.116856871136472,6.32435896238131,7.18614430452233,7.52563997504154,5.93846153846154,197.486535008977,11,5570,0,1,0,0,9 +"14981",2015,12079,"FL","12","079",18485,0.593345956180687,1178,0.141087368136327,7.07157336421153,7.69256964806791,8.51519118874556,6.19230769230769,654.78355765733,72,10996,0,1,0,0,9 +"14982",2015,12081,"FL","12","081",362821,0.874384338282514,18272,0.143205602762795,9.81312511245574,10.5349986624377,11.5063237213357,5.12307692307692,449.474317234515,867,192892,0,1,0,0,9 +"14983",2015,12083,"FL","12","083",342388,0.837286937626319,17862,0.136459221701695,9.79043083024383,10.4259057223379,11.4325068533203,6.56153846153846,528.805695180476,930,175868,0,1,0,0,9 +"14984",2015,12085,"FL","12","085",155674,0.914237444916942,7390,0.152350424605265,8.90788301394225,9.58183496051319,10.5877201157065,5.42307692307692,326.639694146468,264,80823,0,1,0,0,9 +"14985",2015,12086,"FL","12","086",2659549,0.786077263475875,177557,0.117384188070985,12.087046963108,12.8338062555418,13.6285988826763,6.13076923076923,267.653590290427,4439,1658487,0,1,0,0,9 +"14986",2015,12087,"FL","12","087",76758,0.907892336955106,3958,0.168881419526303,8.28349412616251,9.15207546384421,10.0419878297812,3.51538461538462,526.578695416892,253,48046,0,1,0,0,9 +"14987",2015,12089,"FL","12","089",78022,0.91899720591628,4017,0.154956294378509,8.29829063435928,9.10297785364768,10.0342526224157,5.20769230769231,481.691271575755,216,44842,0,1,0,0,9 +"14988",2015,12091,"FL","12","091",198310,0.840189602138067,15221,0.126045080933891,9.63043133227967,10.0268991624513,10.9668007617172,4.57692307692308,408.558040255474,490,119934,0,1,0,0,9 +"14989",2015,12093,"FL","12","093",39833,0.883614088820827,2425,0.122687219139909,7.79358680337158,8.48920515487607,9.22305914438396,6.36923076923077,573.511759213978,129,22493,0,1,0,0,9 +"14990",2015,12095,"FL","12","095",1291844,0.698101318735079,106748,0.108868408259821,11.5782261955524,12.1082337712712,12.9357132659198,5.06923076923077,273.785496821107,2241,818524,0,1,0,0,9 +"14991",2015,12097,"FL","12","097",323860,0.813731241894646,22485,0.107376644228988,10.0206036992048,10.7485400368092,11.4954231898341,5.82307692307692,295.194911649045,569,192754,0,1,0,0,9 +"14992",2015,12099,"FL","12","099",1424772,0.765482477196351,80658,0.128028203810855,11.2979732726823,12.0151845000701,12.899714703618,5.16923076923077,339.854174428064,2682,789162,0,1,0,0,9 +"14993",2015,12101,"FL","12","101",495130,0.905917637792095,25435,0.131985539151334,10.1438814572569,11.001766452303,11.8472597034156,5.93846153846154,510.166737421499,1394,273244,0,1,0,0,9 +"14994",2015,12103,"FL","12","103",947664,0.84250747100238,50106,0.155713417413767,10.8218960403813,11.5563775976428,12.5530042771859,5.00769230769231,466.671386019462,2571,550923,0,1,0,0,9 +"14995",2015,12105,"FL","12","105",648823,0.806978174324893,40495,0.123249329940523,10.6089337886831,11.2387254333311,12.1131675711397,6.38461538461539,445.263020042409,1598,358889,0,1,0,0,9 +"14996",2015,12107,"FL","12","107",71961,0.814705187532135,4057,0.152513166854268,8.30819906320645,8.89068592028113,9.89927870776207,7.71538461538462,728.339487127611,288,39542,0,1,0,0,9 +"14997",2015,12109,"FL","12","109",226582,0.906854913452966,11500,0.141895649257223,9.35010231435134,10.2688942633983,11.107420356062,3.97692307692308,323.864734299517,419,129375,0,1,0,0,9 +"14998",2015,12111,"FL","12","111",297471,0.759189971459403,16389,0.135512369272971,9.70436565706383,10.4137930410552,11.3298916545839,6.43076923076923,423.767905577868,689,162589,0,1,0,0,9 +"14999",2015,12113,"FL","12","113",166451,0.892749217487429,10172,0.131131684399613,9.22739412654201,9.96885385596738,10.7814116064651,4.88461538461539,397.091943577384,402,101236,0,1,0,0,9 +"15000",2015,12115,"FL","12","115",405099,0.925820601877566,17556,0.153268707155535,9.77315105080812,10.4768935314835,11.5439976845246,5.12307692307692,462.550968591784,920,198897,0,1,0,0,9 +"15001",2015,12117,"FL","12","117",448535,0.817340898703557,29451,0.129782514185069,10.2904831443606,11.0044803389033,11.8707537435628,4.96923076923077,277.525481885155,770,277452,0,1,0,0,9 +"15002",2015,12119,"FL","12","119",117229,0.903044468518882,2984,0.157333083110834,8.00101996132365,8.91152994173656,9.94568460123592,7.77692307692308,466.647129105706,207,44359,0,1,0,0,9 +"15003",2015,12121,"FL","12","121",43670,0.845431646439203,2664,0.135585069841997,7.88758403166028,8.49556089128912,9.32125543254734,5.5,545.615020460563,136,24926,0,1,0,0,9 +"15004",2015,12123,"FL","12","123",22362,0.769296127358912,1436,0.13710759323853,7.26961674960817,7.92840602618053,8.58858318750291,6.77692307692308,541.529454811562,74,13665,0,1,0,0,9 +"15005",2015,12125,"FL","12","125",15268,0.753143830233167,971,0.150641865339272,6.87832646829133,7.63240112660145,7.9561263512135,4.91538461538462,1268.858027775,127,10009,0,1,0,0,9 +"15006",2015,12127,"FL","12","127",517144,0.856305013690577,31315,0.150488065219745,10.3518524949595,10.9002147607006,11.9004913331906,5.90769230769231,543.154633852508,1578,290525,0,1,0,0,9 +"15007",2015,12129,"FL","12","129",31529,0.835611659107488,1729,0.134225633543722,7.45529848568329,8.42683075133585,9.045347797304,4.69230769230769,319.552626323148,64,20028,0,1,0,0,9 +"15008",2015,12131,"FL","12","131",63145,0.914466703618655,3127,0.151888510570908,8.04782935745784,8.96482339168508,9.80427476746454,4.74615384615385,421.221007731272,158,37510,0,1,0,0,9 +"15009",2015,12133,"FL","12","133",24556,0.816989737742303,1650,0.132676331650106,7.40853056689463,8.09681747057232,8.7509996908987,6.00769230769231,522.753166677837,78,14921,0,1,0,0,9 +"15010",2015,13001,"GA","13","001",18420,0.785667752442997,1116,0.134364820846906,7.01750614294126,7.71378461659875,8.53522955390234,7.43846153846154,746.697300402068,78,10446,0,1,0,0,9 +"15011",2015,13003,"GA","13","003",8331,0.782379066138519,548,0.115112231424799,6.30627528694802,6.98841318199959,7.7553388128465,5.83846153846154,625.782227784731,30,4794,0,1,0,0,9 +"15012",2015,13005,"GA","13","005",11225,0.815412026726058,668,0.125701559020045,6.50428817353665,7.35436233042148,8.06589354696427,5.81538461538462,633.987938766043,41,6467,0,1,0,0,9 +"15013",2015,13009,"GA","13","009",45566,0.550695694157925,5817,0.124105692841153,8.66853994391076,8.46168048148598,9.47408829413233,7.79230769230769,359.712230215827,98,27244,0,1,0,0,9 +"15014",2015,13011,"GA","13","011",18375,0.949224489795918,1033,0.133823129251701,6.94022246911964,7.80384330353877,8.5650305208304,5.67692307692308,427.11234911792,46,10770,0,1,0,0,9 +"15015",2015,13013,"GA","13","013",74979,0.833153282919217,4370,0.109510662985636,8.38251828808963,9.28804187964004,10.0249526898173,5.34615384615385,434.461290394822,194,44653,0,1,0,0,9 +"15016",2015,13015,"GA","13","015",102063,0.86882611720212,6421,0.123521746372339,8.76732914779405,9.513108081846,10.3295392942527,5.98461538461538,447.661215220481,274,61207,0,1,0,0,9 +"15017",2015,13017,"GA","13","017",17368,0.622754491017964,1034,0.135766927683095,6.94119005506837,7.61332497954064,8.53405030848266,9.15384615384615,613.747954173486,60,9776,0,1,0,0,9 +"15018",2015,13019,"GA","13","019",18989,0.873347727631787,1112,0.13002264468903,7.01391547481053,7.75833346749091,8.60739945930239,7.29230769230769,531.121878494223,57,10732,0,1,0,0,9 +"15019",2015,13021,"GA","13","021",154068,0.419282394786718,11642,0.126489601993925,9.36237452783168,9.8030040139578,10.7619372847204,6.76923076923077,605.583070688879,538,88840,0,1,0,0,9 +"15020",2015,13023,"GA","13","023",12710,0.718095987411487,1101,0.119905586152636,7.00397413672268,7.23705902612474,8.20303024171486,8.67692307692308,536.309610088419,37,6899,0,1,0,0,9 +"15021",2015,13025,"GA","13","025",18443,0.957436425744185,1037,0.135335899799382,6.94408720822953,7.75233516330229,8.60666819784384,7.6,626.285286969527,67,10698,0,1,0,0,9 +"15022",2015,13027,"GA","13","027",15672,0.621745788667688,905,0.144014803471159,6.80793494369993,7.46106551435428,8.4211227226655,6.16153846153846,526.197939991043,47,8932,0,1,0,0,9 +"15023",2015,13029,"GA","13","029",34860,0.811417096959266,1977,0.103012048192771,7.58933582317062,8.57224939716431,9.24792513230345,5.34615384615385,449.833757089771,92,20452,0,1,0,0,9 +"15024",2015,13031,"GA","13","031",73137,0.678480112665272,12480,0.098595785990675,9.43188264192342,8.92864037120195,10.0329795477689,6.16153846153846,326.473634439591,145,44414,0,1,0,0,9 +"15025",2015,13033,"GA","13","033",22644,0.499867514573397,1520,0.13906553612436,7.32646561384032,7.86557175768479,8.82834762005316,8.26153846153846,562.273742586459,73,12983,0,1,0,0,9 +"15026",2015,13035,"GA","13","035",23516,0.702840619152917,1665,0.127615240687192,7.41758040241454,8.04686951095958,8.74145611599836,6.76153846153846,474.455064292099,69,14543,0,1,0,0,9 +"15027",2015,13037,"GA","13","037",6536,0.356181150550796,461,0.127447980416157,6.13339804299665,6.93342302573071,7.27309259599952,6.34615384615385,369.515011547344,16,4330,0,1,0,0,9 +"15028",2015,13039,"GA","13","039",52549,0.767569316257208,5705,0.110030638071134,8.64909826229618,8.67008593751938,9.62727281152524,5.63846153846154,384.179367678549,122,31756,0,1,0,0,9 +"15029",2015,13043,"GA","13","043",10864,0.732050810014727,629,0.130062592047128,6.44413125670044,7.1800698743028,8.01994168767737,5.79230769230769,1020.23749790935,61,5979,0,1,0,0,9 +"15030",2015,13045,"GA","13","045",114501,0.784683103204339,10691,0.112688972148715,9.2771575450135,9.56997094374055,10.4468868467336,6.81538461538462,468.844748790913,317,67613,0,1,0,0,9 +"15031",2015,13047,"GA","13","047",65841,0.94959068057897,3773,0.124876596649504,8.23562571996431,9.08557048502023,9.88399887595227,5.31538461538462,496.219281663516,189,38088,0,1,0,0,9 +"15032",2015,13049,"GA","13","049",13238,0.652515485722919,1055,0.114216649040641,6.96129604591017,7.57660976697304,8.00503334463711,6.49230769230769,469.924812030075,40,8512,0,1,0,0,9 +"15033",2015,13051,"GA","13","051",286239,0.549607146475498,24242,0.117688365317095,10.0958419450305,10.4533704145556,11.4059080218103,5.96153846153846,402.178514628314,703,174798,0,1,0,0,9 +"15034",2015,13053,"GA","13","053",11075,0.731918735891648,2880,0.031783295711061,7.96554557312999,6.9555926083963,7.63819824428578,8.9,194.628260023355,15,7707,0,1,0,0,9 +"15035",2015,13055,"GA","13","055",24918,0.879404446584798,1557,0.134360703106188,7.350516171834,8.0684029585697,8.8293727354684,6.28461538461538,425.065130947484,62,14586,0,1,0,0,9 +"15036",2015,13057,"GA","13","057",235424,0.902681969552807,13281,0.12070986815278,9.49408972140025,10.4452011918355,11.1759691111832,4.75384615384615,307.747105966162,432,140375,0,1,0,0,9 +"15037",2015,13059,"GA","13","059",123621,0.660882859708302,24472,0.086595319565446,10.1052848858307,9.5045759233978,10.6238850475862,6.2,255.994005994006,205,80080,0,1,0,0,9 +"15038",2015,13063,"GA","13","063",272874,0.217342069966358,20300,0.10766141149395,9.91837616502988,10.5364865602598,11.3965152365826,7.76153846153846,382.643069339745,635,165951,0,1,0,0,9 +"15039",2015,13065,"GA","13","065",6828,0.699326303456356,463,0.129906268306971,6.13772705408623,6.72623340235875,7.60439634879634,7.15384615384615,487.304437035137,19,3899,0,1,0,0,9 +"15040",2015,13067,"GA","13","067",739428,0.652114877986768,48784,0.117508398383615,10.795157669228,11.5864918619271,12.3775438832697,5.15384615384615,257.783540140269,1185,459688,0,1,0,0,9 +"15041",2015,13069,"GA","13","069",42998,0.697358016651937,3199,0.113958788780874,8.07059353994952,8.64962397859673,9.4038491181607,6.84615384615385,516.464740602672,133,25752,0,1,0,0,9 +"15042",2015,13071,"GA","13","071",45486,0.737127907488018,2970,0.11594776414721,7.99631723179675,8.6557370008643,9.46715078076088,6.50769230769231,515.364048513969,133,25807,0,1,0,0,9 +"15043",2015,13073,"GA","13","073",143991,0.769589766027043,8689,0.121396476168649,9.06981313683921,9.90283734119454,10.6934664819995,5.09230769230769,254.447013442703,219,86069,0,1,0,0,9 +"15044",2015,13075,"GA","13","075",17076,0.709592410400562,959,0.120637151557742,6.86589107488344,7.69484807238461,8.51699317141357,6.79230769230769,599.810586130696,57,9503,0,1,0,0,9 +"15045",2015,13077,"GA","13","077",138217,0.78839795394199,8254,0.121974865609874,9.01845321031253,9.8671865728098,10.6499859085931,5.4,341.98644224567,281,82167,0,1,0,0,9 +"15046",2015,13079,"GA","13","079",12351,0.76560602380374,692,0.150595093514695,6.53958595561767,7.23417717974985,8.1961611392829,6.40769230769231,515.39400515394,38,7373,0,1,0,0,9 +"15047",2015,13081,"GA","13","081",22961,0.536300683768129,1417,0.13771177213536,7.25629723969068,7.86403565907245,8.82995804423548,6.96923076923077,567.607495529119,73,12861,0,1,0,0,9 +"15048",2015,13083,"GA","13","083",16176,0.968471810089021,1395,0.149975272007913,7.24064969425547,7.54115245513631,8.48570252432487,5.57692307692308,426.59452710436,41,9611,0,1,0,0,9 +"15049",2015,13085,"GA","13","085",23371,0.975268495143554,1258,0.141799666253049,7.13727843726039,7.95120715647297,8.82746811252065,5.2,488.20179007323,66,13519,0,1,0,0,9 +"15050",2015,13087,"GA","13","087",27063,0.554114473635591,1887,0.129734323615268,7.54274354536855,8.090708716084,8.96890555068972,6.90769230769231,637.68115942029,99,15525,0,1,0,0,9 +"15051",2015,13089,"GA","13","089",734846,0.363710219556206,48831,0.115548019585056,10.7961206360596,11.5840360924282,12.4086746566193,6.13076923076923,306.12814446844,1426,465818,0,1,0,0,9 +"15052",2015,13091,"GA","13","091",21133,0.683149576491743,1425,0.134812851937728,7.26192709270275,7.91717198884578,8.68355472863146,8.53076923076923,645.562728474761,83,12857,0,1,0,0,9 +"15053",2015,13093,"GA","13","093",14033,0.48685241929737,847,0.150929950830186,6.74170069465205,7.55276208421415,8.20576472523446,7.71538461538462,422.181652213601,37,8764,0,1,0,0,9 +"15054",2015,13095,"GA","13","095",91556,0.282941587662196,7534,0.12291930621696,8.92718138825199,9.26558584620216,10.25667642719,7.84615384615385,544.02617412642,286,52571,0,1,0,0,9 +"15055",2015,13097,"GA","13","097",140264,0.518686191752695,9390,0.114726515713226,9.14740057220231,9.92827772134335,10.7106105304095,6.45384615384615,380.808212211881,322,84557,0,1,0,0,9 +"15056",2015,13099,"GA","13","099",10459,0.485036810402524,640,0.129075437422316,6.46146817635372,7.08757370555797,7.99833539595298,7.06153846153846,582.627118644068,33,5664,0,1,0,0,9 +"15057",2015,13103,"GA","13","103",57125,0.839737417943107,3575,0.118126914660832,8.18172045512811,8.99255742690407,9.75765220431258,5.19230769230769,374.444184413761,128,34184,0,1,0,0,9 +"15058",2015,13105,"GA","13","105",19303,0.686162772626017,1178,0.141066155519867,7.07157336421153,7.67136092319064,8.63052187672324,7.57692307692308,624.827712946798,68,10883,0,1,0,0,9 +"15059",2015,13107,"GA","13","107",22465,0.637168929445805,1469,0.125439572668596,7.29233717617388,7.8770178956224,8.7662383802531,8.88461538461539,576.638354242967,74,12833,0,1,0,0,9 +"15060",2015,13109,"GA","13","109",10690,0.662114125350795,651,0.119831618334892,6.47850964220857,7.14991683613211,8.02747653086048,5.68461538461538,599.900016663889,36,6001,0,1,0,0,9 +"15061",2015,13111,"GA","13","111",24455,0.980985483541198,1108,0.175792271519117,7.01031186730723,7.79688034278352,8.82644104178258,6.30769230769231,545.165442568335,72,13207,0,1,0,0,9 +"15062",2015,13113,"GA","13","113",110215,0.71233498162682,6791,0.149362609445175,8.82335348511379,9.41906040262467,10.3908091071141,5.28461538461538,300.854809697394,189,62821,0,1,0,0,9 +"15063",2015,13115,"GA","13","115",96209,0.82041181178476,6689,0.125591160910102,8.80821966511841,9.37483734385759,10.2444496944302,6.8,476.604689935124,263,55182,0,1,0,0,9 +"15064",2015,13117,"GA","13","117",211368,0.84639112826918,9909,0.103114000227092,9.2011987140589,10.4507126056821,11.0319336865241,4.60769230769231,220.871096042251,271,122696,0,1,0,0,9 +"15065",2015,13119,"GA","13","119",22281,0.882859835734482,1502,0.134284816659934,7.31455283232408,7.82923253754359,8.74862232231722,6.38461538461539,645.727040816327,81,12544,0,1,0,0,9 +"15066",2015,13121,"GA","13","121",1005752,0.468185994161583,74839,0.109302293209459,11.2230944184602,11.899119404533,12.6979998131141,6.07692307692308,324.557676929228,2078,640256,0,1,0,0,9 +"15067",2015,13123,"GA","13","123",29512,0.968555164001084,1498,0.154343995662781,7.31188616407716,8.10802122137675,8.98143022576764,6.13846153846154,476.514635806671,77,16159,0,1,0,0,9 +"15068",2015,13127,"GA","13","127",83368,0.701456194223203,5037,0.137894635831494,8.52456594574565,9.17854005942639,10.1322950334748,6.17692307692308,476.240649035929,226,47455,0,1,0,0,9 +"15069",2015,13129,"GA","13","129",56330,0.930232558139535,3485,0.120078111130836,8.15622332319462,8.92996487470684,9.71902370267014,6.00769230769231,494.377957977874,164,33173,0,1,0,0,9 +"15070",2015,13131,"GA","13","131",25106,0.677367959850235,1394,0.129849438381263,7.23993259132047,7.9885429827377,8.88364023250367,6.12307692307692,433.824052343361,61,14061,0,1,0,0,9 +"15071",2015,13133,"GA","13","133",16620,0.619975932611312,771,0.158664259927798,6.64768837356333,7.39694860262101,8.41825644355621,6.73846153846154,543.226999537679,47,8652,0,1,0,0,9 +"15072",2015,13135,"GA","13","135",888597,0.584550701836716,58427,0.10951196099019,10.9755333907424,11.8050725543812,12.5342354542802,5.27692307692308,240.609004865363,1312,545283,0,1,0,0,9 +"15073",2015,13137,"GA","13","137",43775,0.920685322672758,2952,0.124842946887493,7.99023818572036,8.59062950948942,9.50039462857302,5.81538461538462,452.144686299616,113,24992,0,1,0,0,9 +"15074",2015,13139,"GA","13","139",192249,0.883265972774891,12800,0.111001877773096,9.45720044990771,10.1299456048182,10.9148702585913,4.93076923076923,324.441240086518,360,110960,0,1,0,0,9 +"15075",2015,13141,"GA","13","141",8579,0.258072036367875,582,0.156894742977037,6.36647044773144,6.87005341179813,7.69165682281055,9.96153846153846,840.175673095284,44,5237,0,1,0,0,9 +"15076",2015,13143,"GA","13","143",28733,0.935300873560018,1736,0.122472418473532,7.4593388952203,8.17835816560584,9.03765226415047,6.65384615384615,675.105485232068,112,16590,0,1,0,0,9 +"15077",2015,13145,"GA","13","145",33147,0.80824810691767,1859,0.149877816997013,7.52779398772144,8.33399124719497,9.18317470390341,5.33076923076923,382.614018977655,75,19602,0,1,0,0,9 +"15078",2015,13147,"GA","13","147",25415,0.793743852055873,1448,0.141058430060988,7.27793857294566,7.944846711002,8.86615849228492,6.3,527.797325826882,75,14210,0,1,0,0,9 +"15079",2015,13149,"GA","13","149",11557,0.881284070260448,718,0.143376308730639,6.57646956904822,7.23489842031483,8.13622555490846,6.51538461538462,429.184549356223,29,6757,0,1,0,0,9 +"15080",2015,13151,"GA","13","151",216548,0.53112473908787,14357,0.113203539169145,9.57199290712769,10.3566946566297,11.1366598712665,6.26923076923077,350.129278502832,455,129952,0,1,0,0,9 +"15081",2015,13153,"GA","13","153",149197,0.64362554206854,10274,0.115766402809708,9.23737171102721,9.8685337232726,10.7393488352952,5.90769230769231,363.911548349043,327,89857,0,1,0,0,9 +"15082",2015,13155,"GA","13","155",9137,0.713253803217686,612,0.119951844150159,6.41673228251233,7.07242190053737,7.81399567500279,8.53846153846154,438.763830599008,23,5242,0,1,0,0,9 +"15083",2015,13157,"GA","13","157",63439,0.900029950030738,3585,0.117545989060357,8.18451375303372,9.0831885863157,9.82265703462158,4.93846153846154,427.315753887762,158,36975,0,1,0,0,9 +"15084",2015,13159,"GA","13","159",13679,0.773375246728562,734,0.14503984209372,6.59850902861452,7.38087903556412,8.30474226964077,5.60769230769231,392.852616905335,31,7891,0,1,0,0,9 +"15085",2015,13161,"GA","13","161",15012,0.825406341593392,856,0.121702637889688,6.75227037614174,7.52617891334615,8.34924780056679,6.76923076923077,623.20230105465,52,8344,0,1,0,0,9 +"15086",2015,13163,"GA","13","163",15926,0.4507723219892,1009,0.135627276152204,6.91671502035361,7.5137092478397,8.43402895015547,9.18461538461538,649.708181918291,59,9081,0,1,0,0,9 +"15087",2015,13165,"GA","13","165",8906,0.545474960700651,694,0.124635077475859,6.5424719605068,7.05961762829138,7.74975340627444,8.47692307692308,503.074343208496,27,5367,0,1,0,0,9 +"15088",2015,13167,"GA","13","167",9717,0.648862817742101,568,0.137902644849233,6.34212141872115,7.20711885620776,7.75362354655975,7.11538461538461,362.976406533575,22,6061,0,1,0,0,9 +"15089",2015,13169,"GA","13","169",28432,0.738920934158694,1657,0.135059088351154,7.41276401742656,8.20056279700856,9.03788993497749,5.61538461538461,333.73786407767,55,16480,0,1,0,0,9 +"15090",2015,13171,"GA","13","171",18229,0.677601623786275,1529,0.129464040814087,7.33236920592906,7.61972421378267,8.58783803098557,7.81538461538462,606.177234677187,63,10393,0,1,0,0,9 +"15091",2015,13173,"GA","13","173",10264,0.741426344505066,676,0.11603663289166,6.51619307604296,7.19593722647557,8.02355239240435,6.79230769230769,493.473416109519,31,6282,0,1,0,0,9 +"15092",2015,13175,"GA","13","175",47491,0.614095302267798,3012,0.129392937609231,8.01035958891978,8.65312170864048,9.55229753882796,7.68461538461538,592.134664084612,159,26852,0,1,0,0,9 +"15093",2015,13177,"GA","13","177",29191,0.76246103251002,1632,0.122229454283855,7.39756153552405,8.37216741936598,9.0687768076544,5.40769230769231,380.930393628073,66,17326,0,1,0,0,9 +"15094",2015,13179,"GA","13","179",61762,0.509649946569088,7438,0.089958226741362,8.91435727448502,8.79588497202989,9.80923181661041,6.41538461538462,322.58064516129,123,38130,0,1,0,0,9 +"15095",2015,13181,"GA","13","181",7720,0.673963730569948,436,0.171373056994819,6.07764224334903,6.62671774924902,7.71110125184016,6.86153846153846,705.186533212011,31,4396,0,1,0,0,9 +"15096",2015,13183,"GA","13","183",17695,0.692285956484883,1218,0.102797400395592,7.10496544826984,7.81843027207066,8.57432938278705,5.96153846153846,431.54898540079,47,10891,0,1,0,0,9 +"15097",2015,13185,"GA","13","185",113501,0.597651122016546,15384,0.099276658355433,9.64108328726862,9.44675546548363,10.4550423665162,6.01538461538462,383.113315415114,258,67343,0,1,0,0,9 +"15098",2015,13187,"GA","13","187",31292,0.960788699987217,3916,0.134794835740764,8.2728260036504,8.09803475617607,9.13669383180788,5.51538461538462,475.187645121227,88,18519,0,1,0,0,9 +"15099",2015,13189,"GA","13","189",21470,0.569026548672566,1304,0.132463903120633,7.1731917424866,7.77569574991525,8.75746914147075,8.45384615384615,482.729920932168,58,12015,0,1,0,0,9 +"15100",2015,13191,"GA","13","191",14033,0.63984892752797,790,0.173590821634718,6.67203294546107,7.28207365809346,8.32239411311117,6.60769230769231,561.377245508982,45,8016,0,1,0,0,9 +"15101",2015,13193,"GA","13","193",13689,0.37037037037037,1044,0.148002045437943,6.95081476844258,7.4318919168078,8.19671240721307,9.33846153846154,660.639777468706,57,8628,0,1,0,0,9 +"15102",2015,13195,"GA","13","195",28431,0.884070205057859,1716,0.138510780486089,7.44775128004791,8.17919979842309,9.04605517766833,5.63846153846154,407.796101949025,68,16675,0,1,0,0,9 +"15103",2015,13197,"GA","13","197",8561,0.651793014834716,525,0.153019507066931,6.26339826259162,6.84054652928869,7.80994708647679,8.56153846153846,431.626446929566,22,5097,0,1,0,0,9 +"15104",2015,13199,"GA","13","199",21167,0.587234846695328,1198,0.143761515566684,7.0884087786754,7.73587031995257,8.7212762399917,8.15384615384615,721.658135436771,86,11917,0,1,0,0,9 +"15105",2015,13201,"GA","13","201",5847,0.709252608175133,337,0.128955019668206,5.82008293035236,6.45833828334479,7.40123126441302,5.5,939.261114589856,30,3194,0,1,0,0,9 +"15106",2015,13205,"GA","13","205",22449,0.500824090159918,1443,0.128379883291015,7.27447955877387,7.96311205897929,8.70284253830287,6.85384615384615,470.838396111786,62,13168,0,1,0,0,9 +"15107",2015,13207,"GA","13","207",26683,0.74590563279991,1695,0.15459281190271,7.43543801981455,8.0802374162167,8.97853441008332,5.92307692307692,469.077891618319,76,16202,0,1,0,0,9 +"15108",2015,13209,"GA","13","209",8939,0.721333482492449,748,0.12797852108737,6.61740297797448,6.96885037834195,7.80588204022862,8.81538461538462,529.200529200529,28,5291,0,1,0,0,9 +"15109",2015,13211,"GA","13","211",17947,0.744692706301889,1036,0.143923775561375,6.94312242281943,7.65491704784832,8.5709235138372,5.57692307692308,393.352345363359,40,10169,0,1,0,0,9 +"15110",2015,13213,"GA","13","213",39426,0.966747831380307,2510,0.118322934104398,7.82803803212583,8.56407677731509,9.36443390731358,7.49230769230769,543.853591160221,126,23168,0,1,0,0,9 +"15111",2015,13215,"GA","13","215",198925,0.478572326253613,16350,0.112982279753676,9.7019831763254,10.1230647519707,11.0035820754854,7.59230769230769,474.272562880158,577,121660,0,1,0,0,9 +"15112",2015,13217,"GA","13","217",104920,0.536303850552802,6977,0.110646206633626,8.85037430393924,9.59117119912599,10.3862222961356,6.87692307692308,463.569650111388,283,61048,0,1,0,0,9 +"15113",2015,13219,"GA","13","219",35861,0.899389308719779,1998,0.133097236552243,7.5999019592085,8.50532301884575,9.26017760682335,4.49230769230769,274.819649604947,56,20377,0,1,0,0,9 +"15114",2015,13221,"GA","13","221",14722,0.805325363401712,856,0.140062491509306,6.75227037614174,7.49665243816828,8.38343320123671,5.63076923076923,614.065577569227,53,8631,0,1,0,0,9 +"15115",2015,13223,"GA","13","223",151691,0.792538779492521,9385,0.104864494267953,9.14686794902061,10.0579239058405,10.7584133886587,5.30769230769231,296.090728317637,271,91526,0,1,0,0,9 +"15116",2015,13225,"GA","13","225",27216,0.538176072898295,2516,0.132899764844209,7.83042561782033,8.01135510916129,9.01627006814768,8.07692307692308,624.093803189813,99,15863,0,1,0,0,9 +"15117",2015,13227,"GA","13","227",30139,0.973257241447958,1606,0.153654733070108,7.38150189450671,8.14583961293684,9.07084839315758,5.42307692307692,408.759124087591,70,17125,0,1,0,0,9 +"15118",2015,13229,"GA","13","229",19089,0.89040808842789,1128,0.121431190738121,7.028201432058,7.82923253754359,8.60061479955531,6.35384615384615,508.694043655198,55,10812,0,1,0,0,9 +"15119",2015,13231,"GA","13","231",17935,0.889043769166434,1057,0.12930025090605,6.96318998587024,7.77275271646874,8.57357352485234,5.81538461538462,624.699663623258,65,10405,0,1,0,0,9 +"15120",2015,13233,"GA","13","233",41209,0.844597054041593,2457,0.121502584386906,7.80669637252118,8.5137873982814,9.37016066342362,6.73846153846154,572.30716665243,134,23414,0,1,0,0,9 +"15121",2015,13235,"GA","13","235",11409,0.663861863441143,698,0.139188360066614,6.54821910276237,7.24565506759454,8.30622521603216,6.68461538461538,623.052959501558,42,6741,0,1,0,0,9 +"15122",2015,13237,"GA","13","237",21310,0.712060065696856,1062,0.153026748005631,6.96790920180188,7.68063742756094,8.70847448958166,8.21538461538461,576.271186440678,68,11800,0,1,0,0,9 +"15123",2015,13241,"GA","13","241",16224,0.96474358974359,827,0.153537968441815,6.71780469502369,7.48380668766583,8.39547743273214,6.84615384615385,502.684793784988,44,8753,0,1,0,0,9 +"15124",2015,13243,"GA","13","243",7153,0.370753529987418,473,0.152383615266322,6.15909538849193,6.50876913697168,7.629489916394,9.26153846153846,564.102564102564,22,3900,0,1,0,0,9 +"15125",2015,13245,"GA","13","245",201639,0.395865879120607,17706,0.124271594284836,9.781658844171,10.0419442956831,11.0516674808391,7.53076923076923,563.589961718418,689,122252,0,1,0,0,9 +"15126",2015,13247,"GA","13","247",88424,0.435537863023614,5943,0.131016466117796,8.68996933536666,9.33096381429992,10.2326833801866,6.64615384615385,362.055093674572,189,52202,0,1,0,0,9 +"15127",2015,13251,"GA","13","251",14060,0.559530583214794,966,0.149715504978663,6.87316383421252,7.39510754656249,8.34806422840827,8.47692307692308,554.484088717454,46,8296,0,1,0,0,9 +"15128",2015,13253,"GA","13","253",8559,0.645519336371071,499,0.147213459516299,6.21260609575152,6.80350525760834,7.80098207125774,8.22307692307692,601.374570446735,28,4656,0,1,0,0,9 +"15129",2015,13255,"GA","13","255",63826,0.637984520414878,4052,0.126829191865384,8.30696586536857,8.96392819372262,9.843790625278,8.17692307692308,615.595075239398,225,36550,0,1,0,0,9 +"15130",2015,13257,"GA","13","257",25475,0.864023552502453,1843,0.139509322865554,7.51914995766982,7.93666015522543,8.9226582995244,6.66923076923077,701.340184709395,101,14401,0,1,0,0,9 +"15131",2015,13261,"GA","13","261",30625,0.439314285714286,3080,0.122351020408163,8.03268487596762,8.09529377684465,9.13194630454817,8.46153846153846,563.749217014976,99,17561,0,1,0,0,9 +"15132",2015,13263,"GA","13","263",6499,0.426527158024311,373,0.186490229266041,5.92157841964382,6.46769872610435,7.59287028784482,7.83846153846154,632.411067193676,24,3795,0,1,0,0,9 +"15133",2015,13267,"GA","13","267",25394,0.687406473970229,1923,0.115066551153816,7.56164174558878,8.20603776277881,8.7160440501614,6.24615384615385,511.178173307877,83,16237,0,1,0,0,9 +"15134",2015,13269,"GA","13","269",8316,0.599206349206349,551,0.149470899470899,6.31173480915291,6.9177056098353,7.82923253754359,9.33846153846154,495.867768595041,24,4840,0,1,0,0,9 +"15135",2015,13271,"GA","13","271",16448,0.60755107003891,999,0.130593385214008,6.90675477864855,7.86211221166275,8.21202580462344,8.87692307692308,405.010831685033,43,10617,0,1,0,0,9 +"15136",2015,13273,"GA","13","273",9016,0.376441881100266,590,0.145297249334516,6.38012253689976,6.78332520060396,7.87625888230323,7.57692307692308,762.314308053167,39,5116,0,1,0,0,9 +"15137",2015,13275,"GA","13","275",44819,0.609317476962895,2711,0.13351480398938,7.90507284949867,8.57016507618234,9.50286072106821,7.35384615384615,567.536889897843,145,25549,0,1,0,0,9 +"15138",2015,13277,"GA","13","277",40538,0.669939316197148,3063,0.118160738072919,8.02715010683277,8.51919119407891,9.3803362790795,6.22307692307692,487.510246343673,113,23179,0,1,0,0,9 +"15139",2015,13279,"GA","13","279",27151,0.715111782254797,1632,0.119479945490037,7.39756153552405,8.09285102753838,8.97068626853498,8.88461538461539,627.545229988651,94,14979,0,1,0,0,9 +"15140",2015,13281,"GA","13","281",11208,0.976713062098501,739,0.1395431834404,6.6052979209482,6.78219205600679,7.90544164906029,8.03076923076923,423.892100192678,22,5190,0,1,0,0,9 +"15141",2015,13283,"GA","13","283",6807,0.667107389452035,488,0.134420449537241,6.19031540585315,6.69703424766648,7.5234813125735,8.63846153846154,484.076433121019,19,3925,0,1,0,0,9 +"15142",2015,13285,"GA","13","285",69666,0.608345534407028,5232,0.122599259323056,8.56254889313703,9.05310159554969,9.9560800026553,6.17692307692308,498.925581050708,202,40487,0,1,0,0,9 +"15143",2015,13287,"GA","13","287",7988,0.585378067100651,515,0.124937406109164,6.24416690066374,6.78897174299217,7.67275789664251,6.9,743.840074384007,32,4302,0,1,0,0,9 +"15144",2015,13289,"GA","13","289",8353,0.570812881599425,492,0.167843888423321,6.19847871649231,6.72142570079064,7.81681996576455,9.26923076923077,910.562525293403,45,4942,0,1,0,0,9 +"15145",2015,13291,"GA","13","291",22029,0.97757501475328,934,0.164601207499206,6.83947643822884,7.56527528189893,8.65381978894806,5.43846153846154,606.829091567793,67,11041,0,1,0,0,9 +"15146",2015,13293,"GA","13","293",26237,0.69893661622899,1673,0.140259938255136,7.42237370098682,8.04269949689764,8.96072450033086,7.37692307692308,714.23847629125,108,15121,0,1,0,0,9 +"15147",2015,13295,"GA","13","295",68604,0.941169611101394,3934,0.136260276368725,8.277411998949,9.10930382779841,9.89887693997844,6.08461538461538,589.489527154145,235,39865,0,1,0,0,9 +"15148",2015,13297,"GA","13","297",88373,0.805268577506705,5302,0.120195082208367,8.57583938684897,9.34539560296905,10.175040243058,5.5,438.751819934679,223,50826,0,1,0,0,9 +"15149",2015,13299,"GA","13","299",35337,0.6800520700682,2343,0.130146871551065,7.7591874385078,8.34426735626264,9.20200573518613,6.61538461538461,574.740875374564,117,20357,0,1,0,0,9 +"15150",2015,13301,"GA","13","301",5375,0.37693023255814,324,0.162046511627907,5.78074351579233,6.25575004175337,7.3664451483276,7.92307692307692,950.819672131148,29,3050,0,1,0,0,9 +"15151",2015,13303,"GA","13","303",20734,0.450805440339539,1441,0.136008488473039,7.27309259599952,7.81197342962202,8.65730289940088,7.09230769230769,540.584153622721,67,12394,0,1,0,0,9 +"15152",2015,13305,"GA","13","305",29460,0.781059063136456,1802,0.123964697895451,7.49665243816828,8.22389538017882,9.02038978801774,7.36153846153846,703.268128361208,119,16921,0,1,0,0,9 +"15153",2015,13309,"GA","13","309",7909,0.613099001137944,647,0.111139208496649,6.4723462945009,7.10906213568717,7.31521838975297,11.0615384615385,317.994762439207,17,5346,0,1,0,0,9 +"15154",2015,13311,"GA","13","311",28389,0.963577441966959,1691,0.143823311846138,7.43307534889858,8.08116577772543,8.98042393637454,5.28461538461538,423.538471411153,66,15583,0,1,0,0,9 +"15155",2015,13313,"GA","13","313",103621,0.920045164590189,7226,0.110315476592583,8.88544091170758,9.50866560452644,10.301693039915,6.49230769230769,382.587288121496,230,60117,0,1,0,0,9 +"15156",2015,13315,"GA","13","315",9015,0.626178591236828,602,0.126234054353855,6.40025744530882,7.10249935577465,7.56734567601324,7.98461538461538,578.243585110228,32,5534,0,1,0,0,9 +"15157",2015,13317,"GA","13","317",9927,0.553843054296363,546,0.143749370403949,6.3026189757449,6.92362862813843,7.93092537248339,7.35384615384615,707.108299218459,38,5374,0,1,0,0,9 +"15158",2015,13319,"GA","13","319",9080,0.592180616740088,516,0.14988986784141,6.24610676548156,6.86797440897029,7.8804263442924,7.43846153846154,882.578664620107,46,5212,0,1,0,0,9 +"15159",2015,13321,"GA","13","321",20692,0.698385849603712,1227,0.139474192924802,7.11232744471091,7.73280753042202,8.7132532743207,6.6,498.268727303437,59,11841,0,1,0,0,9 +"15160",2015,15001,"HI","15","001",196111,0.353508982158064,10916,0.160653915384655,9.29798488182823,10.0169947933297,10.9487693854926,4.18461538461538,404.295976503061,457,113036,1,1,1,0,9 +"15161",2015,15003,"HI","15","003",991755,0.20845773401697,77010,0.118810593342106,11.2516905625333,11.727915869528,12.5655042862863,3.23846153846154,265.383839108337,1591,599509,1,1,1,0,9 +"15162",2015,15007,"HI","15","007",71052,0.348702358835782,3819,0.149932443843945,8.24774388722552,9.05204779298159,9.92681337783963,3.76923076923077,347.632957535669,144,41423,1,1,1,0,9 +"15163",2015,15009,"HI","15","009",163993,0.350758873854372,8589,0.144500070124944,9.05823759376623,9.97497065415799,10.792859195059,3.50769230769231,326.488267781405,321,98319,1,1,1,0,9 +"15164",2015,19005,"IA","19","005",13881,0.969742813918306,764,0.155824508320726,6.63856778916652,7.23128700432762,8.1870210673435,4.82307692307692,334.806481853489,25,7467,1,1,1,0,9 +"15165",2015,19007,"IA","19","007",12587,0.979979343767379,666,0.151346627472789,6.50128967054039,7.17930796950403,8.1318247850072,4.85384615384615,673.105062920691,46,6834,1,1,1,0,9 +"15166",2015,19011,"IA","19","011",25608,0.983833177132146,1423,0.141986879100281,7.26052259808985,8.0323601479245,8.88211404420882,3.83846153846154,308.959835221421,45,14565,1,1,1,0,9 +"15167",2015,19013,"IA","19","013",133764,0.866765347926198,16130,0.124839269160611,9.68843617111926,9.58369542616611,10.5964597177818,4.52307692307692,332.94803497839,265,79592,1,1,1,0,9 +"15168",2015,19015,"IA","19","015",26468,0.974724195254647,1476,0.154148405621883,7.29709100516042,8.07433769408951,8.94285300680992,3.00769230769231,308.860433691526,48,15541,1,1,1,0,9 +"15169",2015,19017,"IA","19","017",24755,0.972651989497071,1965,0.127691375479701,7.58324752430336,7.95402108727804,8.82114223633189,3.49230769230769,212.922173274596,29,13620,1,1,1,0,9 +"15170",2015,19019,"IA","19","019",21110,0.983467550923733,1084,0.132828043581241,6.98841318199959,7.77401507725073,8.64699262895108,4.21538461538462,287.2812744842,33,11487,1,1,1,0,9 +"15171",2015,19021,"IA","19","021",20373,0.854856918470525,1814,0.132086585186276,7.50328963067508,7.65633716643018,8.62155320674048,3.63076923076923,225.205716760502,26,11545,1,1,1,0,9 +"15172",2015,19023,"IA","19","023",14880,0.984475806451613,733,0.145631720430108,6.59714570188665,7.42535788702715,8.27817429094374,4.32307692307692,402.31330148353,32,7954,1,1,1,0,9 +"15173",2015,19025,"IA","19","025",9801,0.968574635241302,570,0.15845321905928,6.3456363608286,6.89972310728487,7.80710329012598,4.27692307692308,408.163265306122,22,5390,1,1,1,0,9 +"15174",2015,19027,"IA","19","027",20421,0.978159737525097,1186,0.146760687527545,7.07834157955767,7.68063742756094,8.62155320674048,2.59230769230769,403.261941034143,45,11159,1,1,1,0,9 +"15175",2015,19029,"IA","19","029",13354,0.982252508611652,660,0.149243672307923,6.49223983502047,7.27239839257005,8.1758290087146,3.59230769230769,459.034636249826,33,7189,1,1,1,0,9 +"15176",2015,19031,"IA","19","031",18257,0.982691570356576,880,0.151284438845374,6.77992190747225,7.70796153183549,8.5324758149474,3.4,260.642919200695,27,10359,1,1,1,0,9 +"15177",2015,19033,"IA","19","033",43006,0.963377203180952,2597,0.158233734827698,7.86211221166275,8.4211227226655,9.41041998369184,3.9,404.312668463612,99,24486,1,1,1,0,9 +"15178",2015,19035,"IA","19","035",11488,0.974930362116992,570,0.165912256267409,6.3456363608286,7.00215595440362,8.00636756765025,5.11538461538461,559.910414333707,35,6251,1,1,1,0,9 +"15179",2015,19039,"IA","19","039",9213,0.971127754260284,513,0.141539129490937,6.24027584517077,6.91473089271856,7.82284529027977,4.06153846153846,352.388410336727,18,5108,1,1,1,0,9 +"15180",2015,19041,"IA","19","041",16498,0.977391198933204,877,0.14880591586859,6.77650699237218,7.54486106865846,8.41604600941128,3.58461538461538,393.056010481494,36,9159,1,1,1,0,9 +"15181",2015,19043,"IA","19","043",17726,0.983244950919553,886,0.166591447591109,6.78671695060508,7.50163445788341,8.4525479979227,4.10769230769231,301.580698835275,29,9616,1,1,1,0,9 +"15182",2015,19045,"IA","19","045",47593,0.950665013762528,2778,0.145756728930725,7.92948652331429,8.57885257180297,9.50636256870296,4.93846153846154,458.647177268998,123,26818,1,1,1,0,9 +"15183",2015,19047,"IA","19","047",17069,0.931454683929931,1069,0.129591657390591,6.97447891102505,7.57198844937744,8.37632063253482,4.16153846153846,269.222485461986,25,9286,1,1,1,0,9 +"15184",2015,19049,"IA","19","049",80658,0.926740062981973,3670,0.101267078281138,8.20794694104862,9.44564962018926,10.0729349248465,2.85384615384615,178.325885183912,83,46544,1,1,1,0,9 +"15185",2015,19053,"IA","19","053",8145,0.96292203806016,1039,0.128913443830571,6.94601399109923,6.59850902861452,7.67647364638916,3.24615384615385,314.324202963628,14,4454,1,1,1,0,9 +"15186",2015,19055,"IA","19","055",17395,0.987755102040816,1022,0.151825237137108,6.92951677076365,7.52994337060159,8.47177732788576,3.34615384615385,246.685168054271,24,9729,1,1,1,0,9 +"15187",2015,19057,"IA","19","057",39909,0.915031697110927,2189,0.142975268736375,7.69120009752286,8.41249912030157,9.32206062158659,4.66923076923077,390.712713881529,87,22267,1,1,1,0,9 +"15188",2015,19059,"IA","19","059",17009,0.983655711682051,814,0.166794050208713,6.70196036600254,7.49554194388426,8.43272403478979,3.9,460.681379901436,43,9334,1,1,1,0,9 +"15189",2015,19061,"IA","19","061",96934,0.94179544844946,7004,0.134307879588173,8.85423669340574,9.25817770139034,10.2209225831373,3.63076923076923,282.694419936259,157,55537,1,1,1,0,9 +"15190",2015,19063,"IA","19","063",9708,0.96147507210548,616,0.154614750721055,6.42324696353352,6.96413561241824,7.85243908535751,3.69230769230769,349.328920757492,19,5439,1,1,1,0,9 +"15191",2015,19065,"IA","19","065",20143,0.969666881795165,1360,0.150573400188651,7.2152399787301,7.59538727885397,8.58895555764313,4.49230769230769,411.22832111568,46,11186,1,1,1,0,9 +"15192",2015,19067,"IA","19","067",15920,0.953957286432161,939,0.139447236180905,6.84481547920826,7.45240245122364,8.35913488675796,3.73846153846154,350.262697022767,30,8565,1,1,1,0,9 +"15193",2015,19069,"IA","19","069",10318,0.975188990114363,597,0.156716417910448,6.3919171133926,7.03085747611612,7.92732436030979,3.33076923076923,248.888888888889,14,5625,1,1,1,0,9 +"15194",2015,19071,"IA","19","071",6910,0.982923299565847,325,0.164978292329957,5.78382518232974,6.62273632394984,7.5137092478397,3.27692307692308,372.43947858473,14,3759,1,1,1,0,9 +"15195",2015,19073,"IA","19","073",8947,0.983234603777803,458,0.154688722476808,6.12686918411419,6.81673588059497,7.76811037852599,3.49230769230769,437.773608505316,21,4797,1,1,1,0,9 +"15196",2015,19075,"IA","19","075",12402,0.98806644089663,649,0.142154491211095,6.47543271670409,7.26682734752059,8.11402544235676,3.76923076923077,220.848056537102,15,6792,1,1,1,0,9 +"15197",2015,19077,"IA","19","077",10653,0.984323664695391,527,0.152633061109547,6.26720054854136,7.03878354138854,7.94093976232779,3.74615384615385,470.383275261324,27,5740,1,1,1,0,9 +"15198",2015,19079,"IA","19","079",15220,0.959395532194481,765,0.1446123521682,6.63987583382654,7.42535788702715,8.3243363327069,4.21538461538462,347.930413917217,29,8335,1,1,1,0,9 +"15199",2015,19081,"IA","19","081",11029,0.980052588629976,547,0.156405839151328,6.30444880242198,7.08590146436561,7.98956044933387,2.69230769230769,299.500831946755,18,6010,1,1,1,0,9 +"15200",2015,19083,"IA","19","083",17257,0.969519615228603,1026,0.153966506345251,6.93342302573071,7.51697722460432,8.43923164994653,3.90769230769231,440.713536201469,42,9530,1,1,1,0,9 +"15201",2015,19085,"IA","19","085",14145,0.986567691763874,750,0.151360904913397,6.62007320653036,7.37713371283395,8.27308133366583,3.36153846153846,440.085502326166,35,7953,1,1,1,0,9 +"15202",2015,19087,"IA","19","087",19862,0.938878259993958,1366,0.132866780787433,7.21964204013074,7.74932246466036,8.57922858233569,3.87692307692308,396.9654199012,45,11336,1,1,1,0,9 +"15203",2015,19091,"IA","19","091",9562,0.98389458272328,512,0.152269399707174,6.23832462503951,6.90975328164481,7.86480400332846,3.29230769230769,420.650095602294,22,5230,1,1,1,0,9 +"15204",2015,19095,"IA","19","095",16293,0.983551218314614,883,0.151107837721721,6.78332520060396,7.53849499941346,8.41405243249672,3.47692307692308,304.447102315973,28,9197,1,1,1,0,9 +"15205",2015,19097,"IA","19","097",19363,0.977069668956257,1089,0.15188762071993,6.99301512293296,7.61184239958042,8.57922858233569,4.18461538461538,305.159977806547,33,10814,1,1,1,0,9 +"15206",2015,19099,"IA","19","099",36762,0.96681355747783,2011,0.140960774713019,7.60638738977265,8.38045666784277,9.18676463544748,3.83846153846154,379.43464238285,80,21084,1,1,1,0,9 +"15207",2015,19101,"IA","19","101",17913,0.84614525763412,2036,0.1684251660805,7.61874237767041,7.49886973397693,8.4424696452203,3.8,266.250459052516,29,10892,1,1,1,0,9 +"15208",2015,19103,"IA","19","103",145114,0.854927849828411,22754,0.101533966398831,10.0324962330997,9.72800257300116,10.7341550344355,2.63076923076923,171.016030046867,158,92389,1,1,1,0,9 +"15209",2015,19105,"IA","19","105",20435,0.963102520185955,1137,0.145975042818693,7.03614849375054,7.7944112057266,8.5876516550648,4.12307692307692,392.257184275603,46,11727,1,1,1,0,9 +"15210",2015,19107,"IA","19","107",10169,0.986527682171305,552,0.152424033828302,6.3135480462771,7.01301578963963,7.88870952418201,4.20769230769231,253.347810351068,14,5526,1,1,1,0,9 +"15211",2015,19109,"IA","19","109",15150,0.98052805280528,856,0.159471947194719,6.75227037614174,7.24636808010246,8.27969713387763,2.81538461538462,444.499320903815,36,8099,1,1,1,0,9 +"15212",2015,19111,"IA","19","111",34916,0.951913163019819,2032,0.15196471531676,7.61677580869837,8.27588566947436,9.17502402684861,5.30769230769231,473.225404732254,95,20075,1,1,1,0,9 +"15213",2015,19113,"IA","19","113",220392,0.909524846636901,15345,0.124764056771571,9.63854496705384,10.2455512705059,11.0824655736227,3.75384615384615,306.184464600306,398,129987,1,1,1,0,9 +"15214",2015,19115,"IA","19","115",11289,0.938258481707857,660,0.137567543626539,6.49223983502047,7.21670948670946,8.04430540699064,3.76153846153846,375.704445835942,24,6388,1,1,1,0,9 +"15215",2015,19117,"IA","19","117",8609,0.9883842490417,468,0.155418747822047,6.14846829591765,6.79794041297493,7.72577144158795,3.49230769230769,451.030927835052,21,4656,1,1,1,0,9 +"15216",2015,19119,"IA","19","119",11755,0.986473840918758,625,0.128796256911952,6.4377516497364,7.25276241805319,8.00369733909437,1.98461538461538,324.569944823109,20,6162,1,1,1,0,9 +"15217",2015,19121,"IA","19","121",15727,0.981178864373371,716,0.137852101481529,6.57368016696065,7.61972421378267,8.38640090116621,3.88461538461538,366.384245477444,32,8734,1,1,1,0,9 +"15218",2015,19123,"IA","19","123",22417,0.962260784226257,1545,0.137261899451309,7.34277918933185,7.86211221166275,8.72192834304709,3.91538461538462,446.963045733897,56,12529,1,1,1,0,9 +"15219",2015,19125,"IA","19","125",33123,0.971198261027081,2404,0.132928780605621,7.7848892956551,8.24800570160062,9.11537013438496,3.23076923076923,275.021570319241,51,18544,1,1,1,0,9 +"15220",2015,19127,"IA","19","127",40340,0.930887456618741,2589,0.136787307882995,7.85902697975154,8.37816098272068,9.28961355287069,5.00769230769231,403.623643376088,90,22298,1,1,1,0,9 +"15221",2015,19129,"IA","19","129",14885,0.980047027208599,744,0.160497144776621,6.61204103483309,7.50714107972761,8.34307787116938,4.03846153846154,364.662980825785,31,8501,1,1,1,0,9 +"15222",2015,19133,"IA","19","133",8865,0.975408911449521,484,0.155781161872532,6.18208490671663,6.79794041297493,7.73236922228439,4.35384615384615,578.40616966581,27,4668,1,1,1,0,9 +"15223",2015,19135,"IA","19","135",7919,0.979921707286273,449,0.142442227553984,6.10702288774225,6.78784498230958,7.65728279297819,4.38461538461539,456.412596987677,20,4382,1,1,1,0,9 +"15224",2015,19137,"IA","19","137",10153,0.981581798483207,544,0.157293410814538,6.29894924685594,7.01481435127554,7.92262357421729,3.52307692307692,486.749594375338,27,5547,1,1,1,0,9 +"15225",2015,19139,"IA","19","139",43069,0.948710209199192,2717,0.133088764540621,7.90728360942635,8.54655780004614,9.40087808354148,3.82307692307692,323.25381562257,79,24439,1,1,1,0,9 +"15226",2015,19141,"IA","19","141",13927,0.975802398219286,777,0.149421986070223,6.65544035036765,7.2868764117507,8.19174002127746,2.8,413.057961359094,31,7505,1,1,1,0,9 +"15227",2015,19145,"IA","19","145",15466,0.952023794129057,896,0.152140178455968,6.79794041297493,7.56371966841437,8.28324144138542,4.1,418.883731461565,37,8833,1,1,1,0,9 +"15228",2015,19147,"IA","19","147",9137,0.97077815475539,565,0.142716427711503,6.33682573114644,6.84481547920826,7.77401507725073,3.05384615384615,350.010294420424,17,4857,1,1,1,0,9 +"15229",2015,19149,"IA","19","149",24912,0.973265895953757,1412,0.145070648683365,7.25276241805319,7.96311205897929,8.81789020094551,2.79230769230769,293.10471165824,40,13647,1,1,1,0,9 +"15230",2015,19151,"IA","19","151",6970,0.972453371592539,356,0.162410329985653,5.87493073085203,6.47389069635227,7.50439155916124,3.03076923076923,485.82995951417,18,3705,1,1,1,0,9 +"15231",2015,19153,"IA","19","153",467517,0.871298797690779,30281,0.116622497149836,10.3182757321051,11.0464356550243,11.8644551949683,3.63846153846154,292.747507929316,827,282496,1,1,1,0,9 +"15232",2015,19155,"IA","19","155",93657,0.959533190258069,5845,0.140128340647255,8.67334187390617,9.31578088443418,10.2066984266055,3.63846153846154,417.215227428656,225,53929,1,1,1,0,9 +"15233",2015,19157,"IA","19","157",18379,0.955819141411393,1781,0.141737852984384,7.48493028328966,7.49387388678356,8.54655780004614,3.59230769230769,318.96385076358,33,10346,1,1,1,0,9 +"15234",2015,19161,"IA","19","161",9961,0.985744403172372,478,0.160124485493424,6.16961073249146,6.87626461189077,7.85979918056211,3.29230769230769,454.029511918275,24,5286,1,1,1,0,9 +"15235",2015,19163,"IA","19","163",172072,0.87653424148031,10631,0.132903668231903,9.27152954028861,9.97580821411575,10.8399729916958,4.62307692307692,339.813497708235,344,101232,1,1,1,0,9 +"15236",2015,19165,"IA","19","165",11799,0.979744046105602,638,0.14958894821595,6.45833828334479,7.07580886397839,8.06211758275474,2.83846153846154,362.31884057971,23,6348,1,1,1,0,9 +"15237",2015,19167,"IA","19","167",34764,0.97347831089633,3226,0.118110689218732,8.07899825868515,8.21093973337902,9.10919318997123,2.42307692307692,175.140643243817,33,18842,1,1,1,0,9 +"15238",2015,19169,"IA","19","169",96744,0.882194244604317,21651,0.0940316712147523,9.98280692174038,9.09470502837726,10.245870855758,2.48461538461538,147.251038202545,89,60441,1,1,1,0,9 +"15239",2015,19171,"IA","19","171",17214,0.894214011850819,931,0.147321947252237,6.83625927727707,7.51316354523408,8.45105338891169,4.31538461538462,350.021213406873,33,9428,1,1,1,0,9 +"15240",2015,19175,"IA","19","175",12431,0.974097015525702,762,0.138926876357493,6.63594655568665,7.22402480828583,8.14728825870662,4.13846153846154,587.716720540699,40,6806,1,1,1,0,9 +"15241",2015,19179,"IA","19","179",35450,0.942087447108604,2433,0.141466854724965,7.79688034278352,8.31581113188354,9.22414465295258,5.09230769230769,387.577883530393,79,20383,1,1,1,0,9 +"15242",2015,19181,"IA","19","181",48486,0.977952398630533,3162,0.128036959122221,8.05896001776942,8.7212762399917,9.54545454398782,3.39230769230769,305.11060259344,84,27531,1,1,1,0,9 +"15243",2015,19183,"IA","19","183",22160,0.976218411552347,1222,0.135018050541516,7.10824413973154,7.79152281915073,8.70201162840878,3.07692307692308,315.745741587038,38,12035,1,1,1,0,9 +"15244",2015,19187,"IA","19","187",37089,0.929035563104964,2955,0.141632289897274,7.9912539298402,8.25426877009018,9.20341645690336,4.28461538461538,475.338855421687,101,21248,1,1,1,0,9 +"15245",2015,19189,"IA","19","189",10612,0.966170373162458,729,0.155861289106672,6.59167373200866,6.9985096422506,7.94307271727793,3.92307692307692,362.193859951707,21,5798,1,1,1,0,9 +"15246",2015,19191,"IA","19","191",20756,0.9761514742725,2230,0.145307380998266,7.70975686445416,7.5847730776122,8.66233195708248,3.62307692307692,178.829941241591,21,11743,1,1,1,0,9 +"15247",2015,19193,"IA","19","193",102532,0.895769125736355,7371,0.122508095033746,8.90530866118929,9.41897923708751,10.2737053762902,3.74615384615385,391.633745489371,229,58473,1,1,1,0,9 +"15248",2015,19197,"IA","19","197",12843,0.975317293467258,650,0.155804718523709,6.47697236288968,7.20191631753163,8.09101504171053,3.88461538461538,398.759415152858,27,6771,1,1,1,0,9 +"15249",2015,16001,"ID","16","001",433254,0.940046716244974,26678,0.119583431428215,10.191594534701,11.0084794481683,11.7605274551168,3.36923076923077,249.960461501074,648,259241,0,1,0,0,9 +"15250",2015,16005,"ID","16","005",84263,0.927310919383359,6132,0.117192599361523,8.7212762399917,9.21721667591562,10.0910453761253,3.72307692307692,391.86259796565,188,47976,0,1,0,0,9 +"15251",2015,16009,"ID","16","009",8999,0.884876097344149,419,0.169018779864429,6.03787091992214,6.8501261661455,7.79646924308606,6.09230769230769,673.331973066721,33,4901,0,1,0,0,9 +"15252",2015,16011,"ID","16","011",45071,0.89773912271749,2700,0.118435357546981,7.90100705199242,8.57054436691323,9.38622458680613,3.80769230769231,462.515241979565,110,23783,0,1,0,0,9 +"15253",2015,16013,"ID","16","013",21659,0.962971512996907,1051,0.154023731474214,6.95749737087695,7.92479591395644,8.72923534965927,3.30769230769231,223.196492626544,28,12545,0,1,0,0,9 +"15254",2015,16015,"ID","16","015",6963,0.968548039638087,246,0.222892431423237,5.50533153593236,6.52209279817015,7.61480536471107,5.85384615384615,491.279783836895,20,4071,0,1,0,0,9 +"15255",2015,16017,"ID","16","017",41656,0.975777799116574,1825,0.183334933743038,7.50933526601659,8.42266270757,9.3710977508543,5.53076923076923,442.287873582961,103,23288,0,1,0,0,9 +"15256",2015,16019,"ID","16","019",109916,0.962989919574948,6664,0.108164416463481,8.80447518384668,9.51716308795535,10.3015587260906,3.21538461538462,399.415979995637,238,59587,0,1,0,0,9 +"15257",2015,16021,"ID","16","021",11310,0.962157382847038,530,0.164898320070734,6.27287700654617,7.1074254741107,8.02355239240435,5.13846153846154,313.842087875785,19,6054,0,1,0,0,9 +"15258",2015,16027,"ID","16","027",206956,0.952917528363517,13747,0.104626104099422,9.52857589747142,10.1832382546616,10.9555322053879,4.63846153846154,307.659758279926,349,113437,0,1,0,0,9 +"15259",2015,16031,"ID","16","031",23497,0.963569817423501,1534,0.11141847895476,7.3356339819272,7.90728360942635,8.66630261400408,3.12307692307692,472.245236122618,57,12070,0,1,0,0,9 +"15260",2015,16035,"ID","16","035",8554,0.958849660977321,421,0.1679915828852,6.04263283368238,6.75460409948796,7.63819824428578,7.47692307692308,314.399496960805,15,4771,0,1,0,0,9 +"15261",2015,16039,"ID","16","039",25861,0.899269169792351,2713,0.106608406480801,7.90581031265893,7.9561263512135,8.8685540405312,4.4,300.182719916471,46,15324,0,1,0,0,9 +"15262",2015,16043,"ID","16","043",12824,0.972707423580786,712,0.128041172800998,6.56807791141198,7.32251043399739,8.08394570229562,3.39230769230769,394.679140476539,27,6841,0,1,0,0,9 +"15263",2015,16045,"ID","16","045",16706,0.969651622171675,858,0.150245420806896,6.75460409948796,7.44073370738926,8.41316512099219,4.9,562.366437970982,50,8891,0,1,0,0,9 +"15264",2015,16047,"ID","16","047",15181,0.959752321981424,960,0.117251827942823,6.86693328446188,7.49720722320332,8.25140306538056,3.21538461538462,383.1891223733,31,8090,0,1,0,0,9 +"15265",2015,16049,"ID","16","049",16312,0.952182442373713,769,0.17815105443845,6.64509096950564,7.30921236569276,8.321664807135,5.8,462.695199537305,40,8645,0,1,0,0,9 +"15266",2015,16051,"ID","16","051",27133,0.971694983967862,1459,0.10559097777614,7.28550654852279,8.15651022607997,8.83637393092739,3.17692307692308,256.702795208214,36,14024,0,1,0,0,9 +"15267",2015,16053,"ID","16","053",22960,0.962064459930314,1461,0.1125,7.2868764117507,7.88495294575981,8.69884785922249,3.07692307692308,381.122283490107,47,12332,0,1,0,0,9 +"15268",2015,16055,"ID","16","055",149566,0.963895537755907,8758,0.137584745196101,9.07772284736134,9.781658844171,10.6753765950366,4.71538461538462,345.251331265726,295,85445,0,1,0,0,9 +"15269",2015,16057,"ID","16","057",38860,0.949073597529593,7042,0.1062789500772,8.859647499715,8.24669594371856,9.36108525866861,3.21538461538462,182.00620475698,44,24175,0,1,0,0,9 +"15270",2015,16059,"ID","16","059",7744,0.973398760330578,312,0.180785123966942,5.74300318780948,6.5206211275587,7.6231530684769,6.54615384615385,547.26368159204,22,4020,0,1,0,0,9 +"15271",2015,16065,"ID","16","065",38120,0.967733473242392,8517,0.0609391395592865,9.04981944514108,7.97659540931658,9.24493501674068,2.49230769230769,148.015250056066,33,22295,0,1,0,0,9 +"15272",2015,16067,"ID","16","067",20431,0.958298663795213,1386,0.121971513875973,7.23417717974985,7.74196789982069,8.57960445153763,3.41538461538462,368.019136995124,40,10869,0,1,0,0,9 +"15273",2015,16069,"ID","16","069",40039,0.913334498863608,2754,0.138165288843378,7.9208096792886,8.39344238398006,9.34373425514671,3.43076923076923,435.050096677799,99,22756,0,1,0,0,9 +"15274",2015,16073,"ID","16","073",11294,0.928103417743935,699,0.132636798299982,6.54965074223381,7.20489251020467,8.00336305862995,4.46923076923077,454.324192763265,28,6163,0,1,0,0,9 +"15275",2015,16075,"ID","16","075",22833,0.961459291376516,1340,0.122585731178557,7.20042489294496,7.87587915949631,8.73052880173936,4.60769230769231,351.738241308793,43,12225,0,1,0,0,9 +"15276",2015,16079,"ID","16","079",12446,0.961995821950828,664,0.168166479190101,6.49828214947643,7.16394668434255,8.14148104145742,7.23076923076923,618.260244428469,43,6955,0,1,0,0,9 +"15277",2015,16083,"ID","16","083",82289,0.956093767089161,5225,0.115373865279685,8.56121007683301,9.20210656704908,10.0353049771563,3.43076923076923,356.897430781849,161,45111,0,1,0,0,9 +"15278",2015,16085,"ID","16","085",10058,0.97653609067409,387,0.196858222310599,5.95842469302978,7.07834157955767,7.9585769038139,5.76923076923077,460.515094661436,27,5863,0,1,0,0,9 +"15279",2015,16087,"ID","16","087",9894,0.963007883565797,502,0.146856680816657,6.21860011969173,6.93439720992856,7.83597458172157,5.4,335.96837944664,17,5060,0,1,0,0,9 +"15280",2015,17001,"IL","17","001",66850,0.941047120418848,4113,0.136185489902767,8.32190796823042,8.91031577632602,9.84776340376377,4.98461538461538,409.160954354642,154,37638,1,1,1,0,9 +"15281",2015,17003,"IL","17","003",6763,0.639656956971758,392,0.156883040070974,5.97126183979046,6.53233429222235,7.56786260546388,9.17692307692308,617.118325731151,23,3727,1,1,1,0,9 +"15282",2015,17005,"IL","17","005",16688,0.919582933844679,1011,0.143096836049856,6.91869521902047,7.69848278788095,8.43381158247719,5.30769230769231,510.105871029836,53,10390,1,1,1,0,9 +"15283",2015,17007,"IL","17","007",53571,0.944503556028448,3435,0.121072968583749,8.14177220465645,8.86220033048729,9.6268772940514,6.53846153846154,271.179795471624,83,30607,1,1,1,0,9 +"15284",2015,17011,"IL","17","011",33494,0.971427718397325,1886,0.147727951274855,7.5422134631934,8.21851757748959,9.13970329237674,6.45384615384615,406.895813256237,76,18678,1,1,1,0,9 +"15285",2015,17015,"IL","17","015",14638,0.973630277360295,770,0.159926219428884,6.64639051484773,7.3178761986265,8.27486682068525,5.49230769230769,411.83077499064,33,8013,1,1,1,0,9 +"15286",2015,17017,"IL","17","017",12843,0.937475667678891,771,0.132679280541929,6.64768837356333,7.36137542897735,8.19146305132693,5.69230769230769,340.043525571273,25,7352,1,1,1,0,9 +"15287",2015,17019,"IL","17","019",209534,0.742080044288755,34786,0.10635505454962,10.4569702859681,10.0280917157607,11.0835722955335,5.06923076923077,247.146409533007,325,131501,1,1,1,0,9 +"15288",2015,17021,"IL","17","021",33480,0.971236559139785,2032,0.142413381123059,7.61677580869837,8.28853445941392,9.12576239550089,6.63076923076923,450.704225352113,88,19525,1,1,1,0,9 +"15289",2015,17023,"IL","17","023",15881,0.986146968075058,884,0.139474844153391,6.78445706263764,7.50933526601659,8.39502555744203,6.22307692307692,468.123049487294,42,8972,1,1,1,0,9 +"15290",2015,17025,"IL","17","025",13395,0.981037700634565,774,0.146323254945875,6.65157187358973,7.3038432252777,8.22121009392507,7.08461538461538,486.906171864719,37,7599,1,1,1,0,9 +"15291",2015,17027,"IL","17","027",37657,0.94970390631224,2365,0.137212204902143,7.76853330092603,8.454679286027,9.26350192009041,4.52307692307692,307.111832580178,70,22793,1,1,1,0,9 +"15292",2015,17029,"IL","17","029",52217,0.938181052147768,6902,0.128119194898213,8.83956650365795,8.60867788153842,9.69763121260851,6.09230769230769,391.669257071806,126,32170,1,1,1,0,9 +"15293",2015,17031,"IL","17","031",5243371,0.664150982259314,360168,0.120786799179383,12.7943258682439,13.4691918031012,14.3150978677829,6.30769230769231,327.616336789348,10626,3243428,1,1,1,0,9 +"15294",2015,17033,"IL","17","033",19262,0.93640328107154,1170,0.140587685598588,7.0647590277918,7.79152281915073,8.5422759717837,5.93076923076923,485.100485100485,56,11544,1,1,1,0,9 +"15295",2015,17035,"IL","17","035",10869,0.982059067071488,541,0.14867973134603,6.29341927884648,7.1777824161952,8.01367414283268,5.27692307692308,355.239786856128,22,6193,1,1,1,0,9 +"15296",2015,17037,"IL","17","037",104238,0.885061110151768,15449,0.10669813311844,9.64529955531205,9.35262087923295,10.3739598219529,5.57692307692308,225.867252363818,145,64197,1,1,1,0,9 +"15297",2015,17039,"IL","17","039",16185,0.978992894655545,878,0.1494593759654,6.77764659363512,7.59135704669855,8.43663368355782,5.55384615384615,508.474576271186,48,9440,1,1,1,0,9 +"15298",2015,17041,"IL","17","041",19827,0.979068946386241,1104,0.134311797044434,7.00669522683704,7.74066440191724,8.6079475546847,4.89230769230769,470.843897138718,52,11044,1,1,1,0,9 +"15299",2015,17043,"IL","17","043",933669,0.817887281252778,59501,0.137199585720421,10.9937483981152,11.6956802612357,12.5585377404766,4.82307692307692,210.104537654673,1184,563529,1,1,1,0,9 +"15300",2015,17045,"IL","17","045",17625,0.987120567375886,909,0.156312056737589,6.81234509417748,7.64156444126097,8.51499076786104,6.26153846153846,501.605136436597,50,9968,1,1,1,0,9 +"15301",2015,17047,"IL","17","047",6514,0.982959778937673,342,0.150291679459625,5.8348107370626,6.64509096950564,7.48605261786314,5.97692307692308,302.946846598733,11,3631,1,1,1,0,9 +"15302",2015,17049,"IL","17","049",34200,0.982719298245614,2149,0.139298245614035,7.67275789664251,8.25244609024695,9.17398754251038,4.81538461538462,386.473429951691,76,19665,1,1,1,0,9 +"15303",2015,17051,"IL","17","051",22048,0.939087445573295,1452,0.131531204644412,7.28069719538474,7.92407232492342,8.65207367361006,6.57692307692308,415.129151291513,54,13008,1,1,1,0,9 +"15304",2015,17053,"IL","17","053",13527,0.976713240186294,724,0.149700598802395,6.58479139238572,7.36581283720947,8.22657347497711,5.3,422.55380958669,32,7573,1,1,1,0,9 +"15305",2015,17055,"IL","17","055",39398,0.982131072643281,2196,0.137925783034672,7.69439280262942,8.47135865507244,9.3171298661577,8.1,627.51117331046,139,22151,1,1,1,0,9 +"15306",2015,17057,"IL","17","057",35709,0.947772270296004,2111,0.141588955165364,7.65491704784832,8.42989086301344,9.1557785839835,7.62307692307692,477.281405116457,100,20952,1,1,1,0,9 +"15307",2015,17059,"IL","17","059",5224,0.984877488514548,269,0.138591117917305,5.59471137960184,6.48768401848461,7.28756064030972,6.69230769230769,481.761871988988,14,2906,1,1,1,0,9 +"15308",2015,17061,"IL","17","061",13345,0.980891719745223,749,0.145073061071562,6.61873898351722,7.39756153552405,8.20849175174038,6.13846153846154,488.771466314399,37,7570,1,1,1,0,9 +"15309",2015,17063,"IL","17","063",50358,0.968843083521983,2984,0.123098613924302,8.00101996132365,8.84937050375457,9.60366542019018,7.02307692307692,299.018949065986,89,29764,1,1,1,0,9 +"15310",2015,17065,"IL","17","065",8247,0.983145386201043,446,0.146113738329089,6.10031895202006,6.8501261661455,7.72312009226633,5.51538461538462,484.261501210654,22,4543,1,1,1,0,9 +"15311",2015,17067,"IL","17","067",18217,0.983312290717462,934,0.154690673546687,6.83947643822884,7.58069975222456,8.50187648730434,6.19230769230769,280.729897734109,28,9974,1,1,1,0,9 +"15312",2015,17069,"IL","17","069",4065,0.977367773677737,171,0.157687576875769,5.14166355650266,6.11589212548303,7.00760061395185,8.47692307692308,737.527114967462,17,2305,1,1,1,0,9 +"15313",2015,17071,"IL","17","071",7001,0.984002285387802,355,0.167833166690473,5.87211778947542,6.49375383985169,7.56371966841437,6.02307692307692,412.69022440031,16,3877,1,1,1,0,9 +"15314",2015,17073,"IL","17","073",49654,0.968119386152173,2751,0.145426350344383,7.91971976092457,8.68490859582083,9.53351023735752,6.13076923076923,341.603739661992,95,27810,1,1,1,0,9 +"15315",2015,17075,"IL","17","075",28529,0.974727470293386,1543,0.148235129166813,7.34148385236316,8.06054004653864,8.98143022576764,5.69230769230769,526.215685031383,83,15773,1,1,1,0,9 +"15316",2015,17077,"IL","17","077",59249,0.792789751725767,10137,0.112204425391146,9.2239473753824,8.68946441235669,9.81339871775444,5.56923076923077,305.745353999947,115,37613,1,1,1,0,9 +"15317",2015,17079,"IL","17","079",9630,0.988473520249221,495,0.146521287642783,6.20455776256869,6.98749024700099,7.88419993367604,6.24615384615385,440.205429200293,24,5452,1,1,1,0,9 +"15318",2015,17081,"IL","17","081",38290,0.885322538521807,2364,0.135936275790024,7.76811037852599,8.44934252450806,9.24773249119325,6.76923076923077,492.809461941669,110,22321,1,1,1,0,9 +"15319",2015,17083,"IL","17","083",22268,0.97727680977187,1486,0.147072031614873,7.3038432252777,7.82284529027977,8.79102985704596,6.33846153846154,417.568821527993,54,12932,1,1,1,0,9 +"15320",2015,17085,"IL","17","085",22068,0.983596157331883,1038,0.162271161863332,6.94505106372583,7.71601526664259,8.67436786578824,5.5,337.552742616034,40,11850,1,1,1,0,9 +"15321",2015,17087,"IL","17","087",12768,0.899122807017544,868,0.137687969924812,6.76619171466035,7.35436233042148,8.02158453345511,8.53076923076923,377.75172593461,29,7677,1,1,1,0,9 +"15322",2015,17089,"IL","17","089",528562,0.878195935386956,33834,0.119272668107053,10.4292214930352,11.1923344514901,11.9455451930901,5.76153846153846,225.041311154976,700,311054,1,1,1,0,9 +"15323",2015,17091,"IL","17","091",111786,0.822365949224411,8802,0.129515323922495,9.08273424737104,9.49792243942763,10.3912390033315,6.88461538461539,387.106844610942,248,64065,1,1,1,0,9 +"15324",2015,17093,"IL","17","093",122892,0.884695504996257,6812,0.0953357419522833,8.82644104178258,9.91891789019149,10.5089504024512,5.26923076923077,208.261499206951,151,72505,1,1,1,0,9 +"15325",2015,17095,"IL","17","095",51377,0.890923954298616,3663,0.14344940342955,8.20603776277881,8.68710472813351,9.55470991405776,6.09230769230769,508.42287225028,150,29503,1,1,1,0,9 +"15326",2015,17097,"IL","17","097",704687,0.830290611292673,51243,0.131180226114573,10.8443343023062,11.4020609411221,12.2429203530236,5.40769230769231,236.133175271289,984,416714,1,1,1,0,9 +"15327",2015,17099,"IL","17","099",111015,0.955168220510742,6746,0.145637976849975,8.8167050156216,9.46622213187817,10.3429353201418,6.98461538461538,439.808027653894,285,64801,1,1,1,0,9 +"15328",2015,17101,"IL","17","101",16467,0.884982085382887,1217,0.1289852432137,7.10414409298753,7.74283595543075,8.2995345703326,7.1,430.10752688172,44,10230,1,1,1,0,9 +"15329",2015,17103,"IL","17","103",34521,0.92888386779062,2105,0.149734943947163,7.65207074611648,8.3221510702129,9.12303804357339,5.33846153846154,400.34728921474,83,20732,1,1,1,0,9 +"15330",2015,17105,"IL","17","105",36615,0.938768264372525,2336,0.143274614229141,7.75619534394812,8.36427508499152,9.24917639576138,5.38461538461538,421.092032002994,90,21373,1,1,1,0,9 +"15331",2015,17107,"IL","17","107",29286,0.902649730246534,2225,0.133988936693301,7.70751219460034,8.20275638165564,9.02845871841061,5.43076923076923,415.706982753778,74,17801,1,1,1,0,9 +"15332",2015,17109,"IL","17","109",31461,0.912018054098725,5248,0.118781984043737,8.56560233062392,7.97177612288063,9.14313162228273,6.10769230769231,259.794242959576,50,19246,1,1,1,0,9 +"15333",2015,17111,"IL","17","111",307595,0.945841122254913,19082,0.137043840114436,9.85650076131179,10.5935800723668,11.4324201503106,5.46923076923077,264.359010326187,490,185354,1,1,1,0,9 +"15334",2015,17113,"IL","17","113",173222,0.851035087921857,22422,0.112087379201256,10.0177978987135,9.94616382681656,10.8984970391217,4.80769230769231,265.39927532822,282,106255,1,1,1,0,9 +"15335",2015,17115,"IL","17","115",107398,0.795219650272817,7075,0.143214957447997,8.86432272251144,9.41889806496197,10.3587898954915,6.97692307692308,475.877912701017,290,60940,1,1,1,0,9 +"15336",2015,17117,"IL","17","117",45887,0.979754614596727,2622,0.150565519646087,7.87169266432365,8.59785109443369,9.49046898877305,6.33076923076923,387.082084171379,102,26351,1,1,1,0,9 +"15337",2015,17119,"IL","17","119",266112,0.892875931938432,16560,0.139779491341991,9.71474542793925,10.3757074739909,11.2962732989513,6.00769230769231,461.393003466751,732,158650,1,1,1,0,9 +"15338",2015,17121,"IL","17","121",38381,0.938719679007842,2294,0.141893124202079,7.73805229768932,8.3786205415523,9.29688497337637,6.78461538461538,671.887308280432,145,21581,1,1,1,0,9 +"15339",2015,17123,"IL","17","123",11925,0.981719077568134,698,0.155639412997904,6.54821910276237,7.1608459066643,8.09894674894334,6.63076923076923,674.561535002249,45,6671,1,1,1,0,9 +"15340",2015,17125,"IL","17","125",13862,0.982614341364882,739,0.145649978358101,6.6052979209482,7.38212436573751,8.24354550792826,7.16153846153846,558.224068544723,43,7703,1,1,1,0,9 +"15341",2015,17127,"IL","17","127",14568,0.919206479956068,765,0.141954969796815,6.63987583382654,7.45240245122364,8.33639048059155,7.31538461538462,613.045610593428,50,8156,1,1,1,0,9 +"15342",2015,17129,"IL","17","129",12364,0.97864768683274,686,0.151488191523779,6.53087762772588,7.27586460054653,8.1961611392829,4.79230769230769,393.368923855015,28,7118,1,1,1,0,9 +"15343",2015,17131,"IL","17","131",15748,0.984124968249936,783,0.148907797815596,6.6631326959908,7.48605261786314,8.3790798892866,6.24615384615385,387.199635576814,34,8781,1,1,1,0,9 +"15344",2015,17133,"IL","17","133",33811,0.985241489456094,1751,0.152346869362042,7.46794233228585,8.34759040703006,9.20643274714516,4.38461538461539,275.938189845475,55,19932,1,1,1,0,9 +"15345",2015,17135,"IL","17","135",29196,0.955713111385121,1758,0.140909713659405,7.47193207824512,8.1610895128458,8.9441588309704,7.59230769230769,392.8103797167,66,16802,1,1,1,0,9 +"15346",2015,17137,"IL","17","137",34693,0.915746692416338,2508,0.139538235378895,7.82724090175281,8.28071107566285,9.1874810778301,5.01538461538462,462.780622292241,94,20312,1,1,1,0,9 +"15347",2015,17139,"IL","17","139",14747,0.986844781989557,812,0.132704956940395,6.69950034016168,7.43720636687129,8.31581113188354,4.34615384615385,421.470187182348,34,8067,1,1,1,0,9 +"15348",2015,17141,"IL","17","141",51572,0.972795315287365,2995,0.141840533622896,8.00469951054955,8.70615929092886,9.59383249927394,6.16923076923077,307.567512758982,91,29587,1,1,1,0,9 +"15349",2015,17143,"IL","17","143",186552,0.754384836399503,12413,0.128784467601527,9.42649958951595,10.0201588593398,10.9207813200266,6.86923076923077,405.801388413862,439,108181,1,1,1,0,9 +"15350",2015,17145,"IL","17","145",21522,0.892342719078153,1637,0.132050924635257,7.40062057737113,7.95437227253187,8.60153433984999,7.13846153846154,437.78801843318,57,13020,1,1,1,0,9 +"15351",2015,17147,"IL","17","147",16356,0.983431156762045,809,0.152971386647102,6.69579891705849,7.57967882309046,8.44505251363855,4.93076923076923,246.913580246914,23,9315,1,1,1,0,9 +"15352",2015,17149,"IL","17","149",15794,0.977079903760922,871,0.14334557426871,6.7696419768525,7.4770384723197,8.35749381265856,5.19230769230769,493.716337522442,44,8912,1,1,1,0,9 +"15353",2015,17153,"IL","17","153",5662,0.660543977393147,301,0.161956905687036,5.70711026474888,6.43454651878745,7.3864708488299,8.88461538461539,855.784469096672,27,3155,1,1,1,0,9 +"15354",2015,17157,"IL","17","157",32754,0.881663308298223,1961,0.139738657873847,7.58120982619635,8.37562962709445,8.99168672593482,5.43846153846154,367.282112368473,74,20148,1,1,1,0,9 +"15355",2015,17159,"IL","17","159",15952,0.976053159478435,891,0.141863089267803,6.79234442747081,7.50988306115491,8.40110871239544,5.87692307692308,470.008952551477,42,8936,1,1,1,0,9 +"15356",2015,17161,"IL","17","161",146161,0.84885845061268,9300,0.139346337258229,9.13776967914135,9.75185037787317,10.6366243813122,6.38461538461539,371.662802648247,311,83678,1,1,1,0,9 +"15357",2015,17163,"IL","17","163",265008,0.664195043168508,17386,0.134716687798104,9.76342056363901,10.4156522793033,11.3052368682109,6.60769230769231,456.743002544529,718,157200,1,1,1,0,9 +"15358",2015,17165,"IL","17","165",24495,0.939007960808328,1448,0.138844662175954,7.27793857294566,7.92551897978693,8.85637603673042,7.76153846153846,604.708084371176,84,13891,1,1,1,0,9 +"15359",2015,17167,"IL","17","167",198973,0.838550959175365,12366,0.140054178205083,9.42270605011851,10.0967490493684,11.0123801506118,5.31538461538462,442.130419938546,518,117160,1,1,1,0,9 +"15360",2015,17173,"IL","17","173",21819,0.987854622118337,1179,0.149594390210367,7.07242190053737,7.78821155784708,8.70450228972123,5.9,494.356101178215,60,12137,1,1,1,0,9 +"15361",2015,17177,"IL","17","177",45680,0.874693520140105,2632,0.151926444833625,7.87549929244521,8.44591198941127,9.46211025207872,6.62307692307692,463.146227535429,117,25262,1,1,1,0,9 +"15362",2015,17179,"IL","17","179",134350,0.969906959434313,7282,0.136300707108299,8.89316082873538,9.75597313724758,10.561111177027,6.27692307692308,405.760511129431,315,77632,1,1,1,0,9 +"15363",2015,17181,"IL","17","181",17285,0.970957477581718,948,0.146774660109922,6.85435450225502,7.60688453121963,8.49269555981584,7.7,577.156743620899,57,9876,1,1,1,0,9 +"15364",2015,17183,"IL","17","183",79209,0.837720461058718,4885,0.137724248507114,8.49392456447688,9.12858787010392,9.99997885272489,7.10769230769231,567.061143984221,253,44616,1,1,1,0,9 +"15365",2015,17185,"IL","17","185",11627,0.973853960608927,723,0.149651672830481,6.58340922215876,7.16006920759613,8.08548677210285,5.65384615384615,350.770169284734,23,6557,1,1,1,0,9 +"15366",2015,17187,"IL","17","187",17448,0.932370472260431,1376,0.140187987161852,7.22693601849329,7.56837926783652,8.48280876455441,5.21538461538462,291.090549953218,28,9619,1,1,1,0,9 +"15367",2015,17189,"IL","17","189",14259,0.979942492460902,794,0.1532365523529,6.67708346124714,7.44483327389219,8.30424746507847,3.78461538461538,396.063370139222,33,8332,1,1,1,0,9 +"15368",2015,17191,"IL","17","191",16534,0.981734607475505,893,0.140619329865731,6.7945865808765,7.56216163122565,8.41913925094085,6.91538461538462,428.100987925357,39,9110,1,1,1,0,9 +"15369",2015,17193,"IL","17","193",14204,0.981413686285553,716,0.144043931286961,6.57368016696065,7.30988148582479,8.26719218593215,5.74615384615385,626.999360204734,49,7815,1,1,1,0,9 +"15370",2015,17195,"IL","17","195",56943,0.963788349753262,3270,0.146550058830761,8.0925452638913,8.77012852753818,9.66959897968574,6.2,435.204608785497,139,31939,1,1,1,0,9 +"15371",2015,17197,"IL","17","197",685825,0.812978529508256,44695,0.118956001895527,10.707616917522,11.4821672437132,12.2278292449318,6.25384615384615,264.82882627571,1084,409321,1,1,1,0,9 +"15372",2015,17199,"IL","17","199",67457,0.932223490519887,3757,0.133833404983916,8.23137604557397,9.06912237006065,9.87287369391829,6.2,433.361210370258,171,39459,1,1,1,0,9 +"15373",2015,17201,"IL","17","201",287237,0.820855251934813,18056,0.13508357210248,9.80123331849737,10.4494100133395,11.3454885797756,7.02307692307692,436.647126657698,727,166496,1,1,1,0,9 +"15374",2015,17203,"IL","17","203",38949,0.978972502503274,2316,0.14077383244756,7.74759683869289,8.43119947824926,9.30145996534367,5.08461538461538,326.930935839804,72,22023,1,1,1,0,9 +"15375",2015,20001,"KS","20","001",12680,0.948817034700315,796,0.142507886435331,6.67959918584438,7.25559127425367,8.16422565226583,5.11538461538461,475.778546712803,33,6936,0,1,0,0,9 +"15376",2015,20003,"KS","20","003",7826,0.978277536417071,407,0.136340403782264,6.0088131854426,6.68586094706836,7.60290046220476,4.8,395.452298566485,16,4046,0,1,0,0,9 +"15377",2015,20005,"KS","20","005",16429,0.923610688416824,1443,0.12922271592915,7.27447955877387,7.41095187558364,8.4292359126571,6.11538461538462,550.842789467886,50,9077,0,1,0,0,9 +"15378",2015,20009,"KS","20","009",27164,0.96130908555441,1748,0.144161390075099,7.46622755621548,7.9287663216267,8.9270486478257,4.20769230769231,386.744015469761,58,14997,0,1,0,0,9 +"15379",2015,20011,"KS","20","011",14734,0.937152165060405,933,0.13445092982218,6.83840520084734,7.38523092306657,8.26719218593215,4.79230769230769,514.006682086867,40,7782,0,1,0,0,9 +"15380",2015,20013,"KS","20","013",9710,0.870751802265705,520,0.151184346035015,6.25382881157547,6.880384082186,7.87169266432365,3.98461538461538,325.920245398773,17,5216,0,1,0,0,9 +"15381",2015,20015,"KS","20","015",66293,0.948984055631816,4024,0.134659767999638,8.30003171177957,9.01115745810682,9.82698440655001,4.26153846153846,367.907917903976,140,38053,0,1,0,0,9 +"15382",2015,20021,"KS","20","021",20552,0.927160373686259,1057,0.140618917866874,6.96318998587024,7.76004068088038,8.65259782842244,4.43846153846154,612.369871402327,70,11431,0,1,0,0,9 +"15383",2015,20027,"KS","20","027",8291,0.97430949222048,403,0.14039319744301,5.99893656194668,6.8627579130514,7.68063742756094,4.29230769230769,434.087274388851,19,4377,0,1,0,0,9 +"15384",2015,20029,"KS","20","029",9192,0.968668407310705,616,0.132832898172324,6.42324696353352,6.78897174299217,7.76387128782022,3.79230769230769,389.50389503895,19,4878,0,1,0,0,9 +"15385",2015,20031,"KS","20","031",8294,0.969375452134073,441,0.15529298287919,6.08904487544685,6.80128303447162,7.76089319585102,5.73846153846154,428.816466552316,20,4664,0,1,0,0,9 +"15386",2015,20035,"KS","20","035",35774,0.909012131715771,2547,0.130038575501761,7.84267147497946,8.28273588020175,9.17895289873455,4.56923076923077,601.74506067596,120,19942,0,1,0,0,9 +"15387",2015,20037,"KS","20","037",39166,0.932543532655875,5560,0.113389164070878,8.62335338724463,8.32044811395656,9.33335414787133,5.09230769230769,410.846343467543,95,23123,0,1,0,0,9 +"15388",2015,20041,"KS","20","041",19214,0.966014364525867,1039,0.138648901842407,6.94601399109923,7.69211333959547,8.56140144608056,5.16923076923077,414.39065737427,44,10618,0,1,0,0,9 +"15389",2015,20045,"KS","20","045",118265,0.856889189531983,21732,0.0992939584830677,9.98654110767141,9.49777241317275,10.5367520234947,3.7,242.130750605327,184,75992,0,1,0,0,9 +"15390",2015,20051,"KS","20","051",29030,0.959869100930072,3979,0.11970375473648,8.28878581042693,8.00068478451475,9.05157907959124,2.99230769230769,355.423068103646,62,17444,0,1,0,0,9 +"15391",2015,20055,"KS","20","055",37127,0.898133433889083,2801,0.104748565733833,7.93773177526011,8.36474106822456,9.21969646690021,3.52307692307692,356.317411402157,74,20768,0,1,0,0,9 +"15392",2015,20057,"KS","20","057",34617,0.928734436837392,2727,0.102839645260999,7.91095738284559,8.33447155460094,9.1266326229027,3.4,314.157696863573,61,19417,0,1,0,0,9 +"15393",2015,20059,"KS","20","059",25495,0.962031770935478,1570,0.138458521278682,7.35883089834235,7.97004930497614,8.88985958777302,4.59230769230769,386.313465783664,56,14496,0,1,0,0,9 +"15394",2015,20061,"KS","20","061",36783,0.721066797161732,5364,0.05874996601691,8.58746524440157,8.32069157104845,9.18860587983018,6.18461538461538,270.306798215975,60,22197,0,1,0,0,9 +"15395",2015,20073,"KS","20","073",6235,0.969206094627105,278,0.163753007217322,5.62762111369064,6.46146817635372,7.40062057737113,4.58461538461538,661.654135338346,22,3325,0,1,0,0,9 +"15396",2015,20079,"KS","20","079",34832,0.952744602664217,2326,0.13154570509876,7.75190533307861,8.26230094178745,9.14537509312382,3.89230769230769,372.875938848346,70,18773,0,1,0,0,9 +"15397",2015,20085,"KS","20","085",13286,0.880626223091976,685,0.137814240553967,6.52941883826223,7.31588350450979,8.18451375303372,3.7,428.17679558011,31,7240,0,1,0,0,9 +"15398",2015,20087,"KS","20","087",18789,0.974293469583267,900,0.154877854063548,6.80239476332431,7.63867982387611,8.56883642456808,4.16923076923077,419.972001866542,45,10715,0,1,0,0,9 +"15399",2015,20091,"KS","20","091",580158,0.886368885717339,33281,0.124267871855598,10.4127419425606,11.2948316422881,12.0779494593008,3.37692307692308,222.976079959049,771,345777,0,1,0,0,9 +"15400",2015,20095,"KS","20","095",7639,0.977483963869616,383,0.155648645110617,5.94803498918065,6.61740297797448,7.6251071482389,4.34615384615385,604.010630587098,25,4139,0,1,0,0,9 +"15401",2015,20099,"KS","20","099",20640,0.907848837209302,1232,0.139728682170543,7.11639414409346,7.70120018085745,8.65207367361006,5.73076923076923,558.89939810834,65,11630,0,1,0,0,9 +"15402",2015,20103,"KS","20","103",79269,0.864474132384665,4885,0.127237633879575,8.49392456447688,9.34661799026873,9.9617564606601,4.50769230769231,332.025981033016,160,48189,0,1,0,0,9 +"15403",2015,20107,"KS","20","107",9574,0.975976603300606,415,0.144453728848966,6.0282785202307,6.97634807044775,7.83913164827433,6.4,447.209799727785,23,5143,0,1,0,0,9 +"15404",2015,20111,"KS","20","111",33142,0.920916058173918,4557,0.1219902238851,8.42441979126388,8.11910083763749,9.20593066348748,4.27692307692308,388.241819190239,77,19833,0,1,0,0,9 +"15405",2015,20113,"KS","20","113",28667,0.965012034743782,1817,0.144172742177417,7.50494206839617,8.04334217044161,8.96788657212747,3,433.36264288406,69,15922,0,1,0,0,9 +"15406",2015,20115,"KS","20","115",12054,0.971461755433881,821,0.149576903932305,6.71052310945243,7.05098944706805,8.0487882835342,3.79230769230769,449.751861042184,29,6448,0,1,0,0,9 +"15407",2015,20117,"KS","20","117",9848,0.978980503655565,477,0.158813972380179,6.16751649088834,6.90975328164481,7.85360481309784,2.9,321.421818869351,17,5289,0,1,0,0,9 +"15408",2015,20121,"KS","20","121",32782,0.968915868464401,1625,0.140473430541151,7.39326309476384,8.30671904320269,9.13118893367075,4.30769230769231,345.609677070958,64,18518,0,1,0,0,9 +"15409",2015,20125,"KS","20","125",33458,0.876621435829996,1947,0.137665132404806,7.5740450053722,8.158802490694,9.11493018717152,6.43846153846154,539.558442988493,98,18163,0,1,0,0,9 +"15410",2015,20133,"KS","20","133",16291,0.960284819839175,980,0.137499232705175,6.88755257166462,7.46908388492123,8.3719361787591,7.43076923076923,443.131462333826,39,8801,0,1,0,0,9 +"15411",2015,20139,"KS","20","139",15867,0.97447532614861,802,0.155984117980715,6.68710860786651,7.50439155916124,8.39525152061099,4.96923076923077,443.888003642158,39,8786,0,1,0,0,9 +"15412",2015,20143,"KS","20","143",5932,0.976567768037761,293,0.154079568442347,5.68017260901707,6.56807791141198,7.38461038317697,3.76923076923077,574.365175332527,19,3308,0,1,0,0,9 +"15413",2015,20145,"KS","20","145",6772,0.922622563496751,371,0.1560838747785,5.91620206260743,6.72623340235875,7.42476176182321,3.72307692307692,466.9451953797,19,4069,0,1,0,0,9 +"15414",2015,20149,"KS","20","149",23145,0.957399006264852,1365,0.119637070641607,7.21890970761906,7.94944442025063,8.75542238014849,3.65384615384615,367.330988667448,47,12795,0,1,0,0,9 +"15415",2015,20155,"KS","20","155",63612,0.940844494749418,4042,0.138385839149846,8.30449489796357,8.85651849701986,9.747652120978,4.30769230769231,431.215523758855,154,35713,0,1,0,0,9 +"15416",2015,20159,"KS","20","159",9926,0.953052589159782,761,0.138122103566391,6.63463335786169,6.89972310728487,7.85010354517558,3.76923076923077,516.795865633075,28,5418,0,1,0,0,9 +"15417",2015,20161,"KS","20","161",77293,0.852147024956982,19807,0.072128135794962,9.89379068955726,8.846209127361,10.0503114569769,3.43076923076923,112.692763938316,57,50580,0,1,0,0,9 +"15418",2015,20169,"KS","20","169",55463,0.916268503326542,3706,0.134233633232966,8.21770840684531,8.73841489716775,9.66649859439987,3.75384615384615,416.379688184835,133,31942,0,1,0,0,9 +"15419",2015,20173,"KS","20","173",511230,0.827367329773292,36011,0.124642528803083,10.4915797263212,11.0236166846665,11.9134249313276,4.76153846153846,404.50163582748,1203,297403,0,1,0,0,9 +"15420",2015,20175,"KS","20","175",23283,0.886526650345746,1933,0.0907099600566937,7.56682847920833,7.94449216393216,8.71473171401505,4.29230769230769,299.125632765762,39,13038,0,1,0,0,9 +"15421",2015,20177,"KS","20","177",178789,0.86125544636415,11013,0.138263539703226,9.30683167216494,9.92993472255098,10.8649619529856,4.23076923076923,461.784847561874,470,101779,0,1,0,0,9 +"15422",2015,20181,"KS","20","181",5965,0.969488683989941,345,0.141659681475272,5.84354441703136,6.42648845745769,7.36770857237437,2.9,459.98160073597,15,3261,0,1,0,0,9 +"15423",2015,20191,"KS","20","191",23414,0.95993849833433,1325,0.151319723242504,7.18916773842032,7.85670679309584,8.75400293349426,4.44615384615385,529.587842505181,69,13029,0,1,0,0,9 +"15424",2015,20205,"KS","20","205",8847,0.964733808070532,459,0.155080818356505,6.12905021006055,6.86693328446188,7.77946696745832,6.56153846153846,692.84064665127,33,4763,0,1,0,0,9 +"15425",2015,20209,"KS","20","209",163776,0.678927315357562,10991,0.116677657288003,9.3048320350689,9.94611591459175,10.7727076410173,5.96923076923077,448.732095379215,427,95157,0,1,0,0,9 +"15426",2015,21001,"KY","21","001",19172,0.959002712288754,1540,0.133841018151471,7.33953769540767,7.66246781520024,8.6278397115033,7.07692307692308,437.078856310326,48,10982,1,1,1,0,9 +"15427",2015,21003,"KY","21","003",20655,0.98077947228274,1290,0.132074558218349,7.16239749735572,7.82644313545601,8.70184536354847,4.81538461538462,487.149336469007,58,11906,1,1,1,0,9 +"15428",2015,21005,"KY","21","005",21933,0.96457392969498,1253,0.131901700633748,7.13329595489607,8.00570067866254,8.79936008317991,4.08461538461538,416.281221091582,54,12972,1,1,1,0,9 +"15429",2015,21007,"KY","21","007",8208,0.953460038986355,414,0.148391812865497,6.02586597382531,6.93828448401696,7.74759683869289,6.78461538461538,367.408688134861,17,4627,1,1,1,0,9 +"15430",2015,21009,"KY","21","009",43559,0.941206180123511,2550,0.134507220092289,7.84384863815247,8.58279364850019,9.44927852918903,5.11538461538461,447.749260414168,112,25014,1,1,1,0,9 +"15431",2015,21011,"KY","21","011",12209,0.974199361127037,711,0.134327135719551,6.56667242980324,7.34987370473834,8.15994665557855,7.61538461538461,849.776753564742,59,6943,1,1,1,0,9 +"15432",2015,21013,"KY","21","013",27376,0.965261542957335,1758,0.139465225014611,7.47193207824512,8.12326131912175,9.00023643416978,8.48461538461538,896.414342629482,144,16064,1,1,1,0,9 +"15433",2015,21015,"KY","21","015",128270,0.932158727683792,7309,0.120643954159195,8.89686174448039,9.79957043911635,10.5427591601268,4.02307692307692,316.111037322354,238,75290,1,1,1,0,9 +"15434",2015,21017,"KY","21","017",20159,0.923160871074954,1237,0.136415496800437,7.12044437239249,7.82524529143177,8.68406264365127,4.66153846153846,476.685734096031,55,11538,1,1,1,0,9 +"15435",2015,21019,"KY","21","019",48518,0.957459087349025,2648,0.143554969289748,7.8815599170569,8.72923534965927,9.53755560876329,6.79230769230769,616.392518755944,175,28391,1,1,1,0,9 +"15436",2015,21021,"KY","21","021",29800,0.899630872483221,2582,0.130436241610738,7.85631957140659,8.17470288246946,9.02941783609594,5.46923076923077,421.016206240268,73,17339,1,1,1,0,9 +"15437",2015,21023,"KY","21","023",8292,0.985166425470333,440,0.142547033285094,6.08677472691231,6.90173720665657,7.78322401633604,6.21538461538462,908.715406856671,44,4842,1,1,1,0,9 +"15438",2015,21025,"KY","21","025",13358,0.984877975744872,851,0.145680491091481,6.74641212857337,7.48099216286952,8.3150770072941,9.70769230769231,877.620672842516,72,8204,1,1,1,0,9 +"15439",2015,21027,"KY","21","027",19987,0.966428178315905,1083,0.151598539050383,6.98749024700099,7.72621265050753,8.63337494570565,6.08461538461538,660.095053687731,75,11362,1,1,1,0,9 +"15440",2015,21029,"KY","21","029",78698,0.975742712648352,4808,0.133573915474345,8.47803647621504,9.27668975251772,10.0907551906118,4.48461538461538,377.610414536958,181,47933,1,1,1,0,9 +"15441",2015,21031,"KY","21","031",12742,0.984617799403547,623,0.140558781980851,6.43454651878745,7.37525577800975,8.1978140322212,5.81538461538462,621.789672884563,46,7398,1,1,1,0,9 +"15442",2015,21033,"KY","21","033",12744,0.932909604519774,732,0.145244821092279,6.59578051396131,7.33106030521863,8.19643681123503,5.53076923076923,533.1088664422,38,7128,1,1,1,0,9 +"15443",2015,21035,"KY","21","035",38695,0.93079209200155,5897,0.115906447861481,8.6821990260005,8.27052509505507,9.37254425185104,4.6,392.95275930564,91,23158,1,1,1,0,9 +"15444",2015,21037,"KY","21","037",92612,0.95139938668855,6796,0.135965101714681,8.82408948279182,9.30955202204713,10.2479279588065,4.08461538461538,420.415070811437,236,56135,1,1,1,0,9 +"15445",2015,21039,"KY","21","039",4849,0.971952979995875,266,0.138379047226232,5.5834963087817,6.3297209055227,7.20711885620776,5.81538461538462,741.839762611276,20,2696,1,1,1,0,9 +"15446",2015,21041,"KY","21","041",10693,0.963901617880857,681,0.130178621528103,6.52356230614951,7.15695636461564,8.00302866638473,5.49230769230769,778.210116731517,48,6168,1,1,1,0,9 +"15447",2015,21043,"KY","21","043",27443,0.987136974820537,1871,0.134351200670481,7.53422832627409,8.09468364869882,8.97979449089521,9.98461538461538,654.425312916958,103,15739,1,1,1,0,9 +"15448",2015,21045,"KY","21","045",15756,0.981403909621731,907,0.134932724041635,6.81014245011514,7.56008046502183,8.41094339157353,5.70769230769231,607.492406344921,54,8889,1,1,1,0,9 +"15449",2015,21047,"KY","21","047",73243,0.739975151208989,9482,0.088609150362492,9.15715054346206,8.95221710176595,9.85786237450985,6.26923076923077,360.04021228345,154,42773,1,1,1,0,9 +"15450",2015,21049,"KY","21","049",35685,0.939246181869133,2078,0.137200504413619,7.63916117165917,8.46083445774685,9.27659616775325,5.13846153846154,567.748091603053,119,20960,1,1,1,0,9 +"15451",2015,21051,"KY","21","051",20986,0.95082435909654,1346,0.126417611741161,7.20489251020467,8.02682357621763,8.68236858937522,9.62307692307692,780.125729000985,103,13203,1,1,1,0,9 +"15452",2015,21053,"KY","21","053",10197,0.982053545160341,573,0.139354712170246,6.35088571671474,7.07749805356923,7.96762673933382,8.25384615384615,727.650727650728,42,5772,1,1,1,0,9 +"15453",2015,21055,"KY","21","055",9174,0.978526269893176,459,0.141159799433181,6.12905021006055,6.97541392745595,7.83241092718792,5.49230769230769,564.312122981125,29,5139,1,1,1,0,9 +"15454",2015,21057,"KY","21","057",6731,0.964344079631555,358,0.15346902391918,5.8805329864007,6.57228254269401,7.55799495853081,5.92307692307692,638.637573177222,24,3758,1,1,1,0,9 +"15455",2015,21059,"KY","21","059",99548,0.925553501828264,6190,0.132649576083899,8.73069036567864,9.38109529239867,10.2752579841202,4.53076923076923,427.485750474984,243,56844,1,1,1,0,9 +"15456",2015,21061,"KY","21","061",12009,0.972354067782496,746,0.144558247980681,6.61472560020376,7.3185395485679,8.15075647027555,6.92307692307692,688.962250610019,48,6967,1,1,1,0,9 +"15457",2015,21063,"KY","21","063",7546,0.956268221574344,469,0.139146567717996,6.15060276844628,6.97728134163075,7.52833176670725,10.1461538461538,405.46308151942,19,4686,1,1,1,0,9 +"15458",2015,21065,"KY","21","065",14381,0.990612613865517,806,0.136290939433975,6.69208374250663,7.50659178007084,8.33950090300594,6.12307692307692,806.451612903226,68,8432,1,1,1,0,9 +"15459",2015,21067,"KY","21","067",316079,0.794652602672117,34220,0.114487200984564,10.4405655474462,10.6396223808955,11.5167381872981,3.78461538461538,374.134157396788,747,199661,1,1,1,0,9 +"15460",2015,21069,"KY","21","069",14576,0.977703073545554,840,0.136388583973655,6.73340189183736,7.49997654095212,8.33686963728496,6.26923076923077,759.40212150434,63,8296,1,1,1,0,9 +"15461",2015,21071,"KY","21","071",37545,0.984898122253296,2249,0.147955786389666,7.71824095195932,8.49290049884719,9.34931939925763,9.36153846153846,888.92879590554,198,22274,1,1,1,0,9 +"15462",2015,21073,"KY","21","073",50090,0.85889399081653,3415,0.140566979437013,8.13593277200489,8.7281022050621,9.63991255542758,4.21538461538462,458.577405857741,137,29875,1,1,1,0,9 +"15463",2015,21075,"KY","21","075",6259,0.739095702188848,376,0.14778718645151,5.9295891433899,6.49828214947643,7.45587668749182,7.62307692307692,531.766022949902,19,3573,1,1,1,0,9 +"15464",2015,21077,"KY","21","077",8610,0.970383275261324,557,0.134959349593496,6.32256523992728,6.98378996525813,7.83478810738819,5.11538461538462,616.33281972265,32,5192,1,1,1,0,9 +"15465",2015,21079,"KY","21","079",17212,0.969614222635371,913,0.150011619800139,6.81673588059497,7.6685611080159,8.53699581871242,5.11538461538461,500.883912787272,51,10182,1,1,1,0,9 +"15466",2015,21081,"KY","21","081",24746,0.98015840943991,1531,0.121716641073305,7.33367639565768,8.07402621612406,8.86474666090541,5.26153846153846,524.585577393859,75,14297,1,1,1,0,9 +"15467",2015,21083,"KY","21","083",37249,0.937877526913474,2109,0.132164621869043,7.65396918047877,8.41294317004244,9.26757100543045,6.13846153846154,449.159021406728,94,20928,1,1,1,0,9 +"15468",2015,21085,"KY","21","085",26143,0.980377156408981,1581,0.140419997704931,7.36581283720947,8.10319175228579,8.91004576147356,6.64615384615385,571.276737079846,86,15054,1,1,1,0,9 +"15469",2015,21087,"KY","21","087",10976,0.96884110787172,571,0.147139212827988,6.34738920965601,7.20637729147225,8.05388708361822,5.27692307692308,542.091836734694,34,6272,1,1,1,0,9 +"15470",2015,21089,"KY","21","089",36030,0.980849292256453,1949,0.143824590618929,7.57507169950756,8.41825644355621,9.25483561186273,7.53076923076923,645.445210503154,132,20451,1,1,1,0,9 +"15471",2015,21091,"KY","21","091",8648,0.977451433857539,468,0.131128584643848,6.14846829591765,6.99668148817654,7.77695440332244,4.90769230769231,412.031314379893,20,4854,1,1,1,0,9 +"15472",2015,21093,"KY","21","093",106415,0.827825024667575,7663,0.124935394446272,8.9441588309704,9.52828488255485,10.3590752700475,4.90769230769231,398.582118944466,253,63475,1,1,1,0,9 +"15473",2015,21095,"KY","21","095",27509,0.967792358864372,1646,0.149587407757461,7.40610338123702,8.11102783819368,9.02038978801774,12.5692307692308,915.614946795348,148,16164,1,1,1,0,9 +"15474",2015,21097,"KY","21","097",18642,0.965293423452419,1097,0.146819010835747,7.00033446027523,7.73193072194849,8.59932602095476,4.59230769230769,497.100248550124,54,10863,1,1,1,0,9 +"15475",2015,21099,"KY","21","099",18415,0.943089872386641,1120,0.140157480314961,7.02108396428914,7.65728279297819,8.55891078476811,5.08461538461538,538.956127080182,57,10576,1,1,1,0,9 +"15476",2015,21101,"KY","21","101",46376,0.90488614800759,2634,0.145398481973435,7.87625888230323,8.63799389156194,9.54545454398782,4.77692307692308,529.275554085346,144,27207,1,1,1,0,9 +"15477",2015,21103,"KY","21","103",15563,0.959005333161987,854,0.144509413352181,6.74993119378857,7.54380286750151,8.43032725839458,4.58461538461538,633.192623861364,57,9002,1,1,1,0,9 +"15478",2015,21105,"KY","21","105",4622,0.895499783643444,225,0.143660752920814,5.41610040220442,6.27664348934164,7.1608459066643,6.00769230769231,437.028208184346,11,2517,1,1,1,0,9 +"15479",2015,21107,"KY","21","107",46068,0.916123990622558,2723,0.144894503777025,7.90948949267376,8.64153246567185,9.52288577415265,5.69230769230769,597.505414892822,160,26778,1,1,1,0,9 +"15480",2015,21109,"KY","21","109",13321,0.991967570002252,755,0.147511448089483,6.62671774924902,7.50384074669895,8.30028018985266,8.83076923076923,729.559748427673,58,7950,1,1,1,0,9 +"15481",2015,21111,"KY","21","111",765322,0.741643386705204,49605,0.134167056480802,10.811846914084,11.4782512010362,12.3746966510686,4.72307692307692,488.533661769043,2253,461176,1,1,1,0,9 +"15482",2015,21113,"KY","21","113",51822,0.93672571494732,3766,0.125178495619621,8.2337687092171,8.80146947073318,9.66789179328268,4.14615384615385,487.421898001243,149,30569,1,1,1,0,9 +"15483",2015,21115,"KY","21","115",23144,0.987556170065676,1259,0.142196681645351,7.13807303404435,8.00034949532468,8.84548923675327,8.76153846153846,701.107011070111,95,13550,1,1,1,0,9 +"15484",2015,21117,"KY","21","117",164627,0.928031246393362,10182,0.129055379737224,9.22837673446228,9.96707249416124,10.8167537150082,4.36923076923077,539.169998897608,538,99783,1,1,1,0,9 +"15485",2015,21119,"KY","21","119",15681,0.986289139723232,1209,0.152031120464256,7.09754885061479,7.55118686729615,8.45892828328426,10.1153846153846,778.168638737874,73,9381,1,1,1,0,9 +"15486",2015,21121,"KY","21","121",31467,0.978485397400451,2090,0.12517875869959,7.64491934495886,8.26436332973167,9.1235835080499,8.12307692307692,779.032886316844,140,17971,1,1,1,0,9 +"15487",2015,21123,"KY","21","123",14123,0.956808043616795,804,0.139913616087234,6.68959926917897,7.42356844425917,8.32142158689788,5.03846153846154,460.159844998789,38,8258,1,1,1,0,9 +"15488",2015,21125,"KY","21","125",59937,0.98077981880975,3583,0.134557952516809,8.18395571730495,8.97055917950895,9.8092867571373,6.19230769230769,528.31249121821,188,35585,1,1,1,0,9 +"15489",2015,21127,"KY","21","127",15861,0.98884055229809,949,0.143874913309375,6.85540879860993,7.58984151218266,8.45531778769815,9.46923076923077,662.036032125027,61,9214,1,1,1,0,9 +"15490",2015,21129,"KY","21","129",7023,0.974654705966111,393,0.148084864018226,5.97380961186926,6.7286286130847,7.5973963202128,8.62307692307692,590.115564298008,24,4067,1,1,1,0,9 +"15491",2015,21131,"KY","21","131",10655,0.990333176912248,582,0.149131862975129,6.36647044773144,7.21007962817079,8.0727793331695,11.0692307692308,956.712672521957,61,6376,1,1,1,0,9 +"15492",2015,21133,"KY","21","133",23043,0.988933732586903,1237,0.152974873063403,7.12044437239249,7.98104975966596,8.84735987547417,11.4923076923077,725.009154155987,99,13655,1,1,1,0,9 +"15493",2015,21135,"KY","21","135",13666,0.989023854822186,792,0.14166544709498,6.67456139181443,7.44658509915773,8.29129585190541,8.75384615384615,615.19146264909,49,7965,1,1,1,0,9 +"15494",2015,21137,"KY","21","137",24351,0.967722064802267,1350,0.133341546548396,7.20785987143248,8.00969535774292,8.8599314696161,6.67692307692308,609.187988246255,85,13953,1,1,1,0,9 +"15495",2015,21139,"KY","21","139",9290,0.980731969860065,476,0.158234660925727,6.16541785423142,6.94985645500077,7.89133075766189,7.12307692307692,714.01728673431,38,5322,1,1,1,0,9 +"15496",2015,21141,"KY","21","141",26761,0.920967078958185,1519,0.137139867717948,7.32580750259577,8.0323601479245,8.93826914703855,4.76153846153846,581.011488181698,88,15146,1,1,1,0,9 +"15497",2015,21143,"KY","21","143",8478,0.92686954470394,444,0.159943382873319,6.09582456243222,6.96979066990159,7.57558465155779,5.71538461538462,623.993558776167,31,4968,1,1,1,0,9 +"15498",2015,21145,"KY","21","145",64990,0.86774888444376,3671,0.145637790429297,8.20821938349683,8.96699411334445,9.86531828641862,5.69230769230769,590.30931139484,221,37438,1,1,1,0,9 +"15499",2015,21147,"KY","21","147",17902,0.923137079655904,1131,0.122835437381298,7.03085747611612,7.87891291229713,8.45361420977337,8.40769230769231,715.255771842463,79,11045,1,1,1,0,9 +"15500",2015,21149,"KY","21","149",9385,0.982525306339904,508,0.140436867341502,6.23048144757848,7.0352685992811,7.87891291229713,4.83846153846154,437.67840152236,23,5255,1,1,1,0,9 +"15501",2015,21151,"KY","21","151",88274,0.933445861748646,11168,0.112037519541428,9.32080782500215,9.29789326898404,10.2122214716845,4.26153846153846,434.465064888856,232,53399,1,1,1,0,9 +"15502",2015,21153,"KY","21","153",12791,0.992416542881714,776,0.143772965366273,6.65415252018322,7.42297125104942,8.24143968982973,15.6230769230769,718.766335598536,55,7652,1,1,1,0,9 +"15503",2015,21155,"KY","21","155",19219,0.911910088974452,1180,0.132160882460066,7.07326971745971,7.78572089653462,8.60373779281642,4.86153846153846,502.963894377582,56,11134,1,1,1,0,9 +"15504",2015,21157,"KY","21","157",31068,0.988187202265997,1633,0.149510750611562,7.39817409297047,8.20712916807133,9.0916694422585,5.53846153846154,592.187677941009,104,17562,1,1,1,0,9 +"15505",2015,21159,"KY","21","159",12299,0.919586958289292,724,0.127571347264005,6.58479139238572,7.50933526601659,8.07121853996986,9.90769230769231,806.864754098361,63,7808,1,1,1,0,9 +"15506",2015,21161,"KY","21","161",17052,0.919716162327,998,0.142739854562515,6.90575327631146,7.62997570702779,8.51819269174932,6.1,551.977920883165,54,9783,1,1,1,0,9 +"15507",2015,21163,"KY","21","163",27743,0.942219659013084,1633,0.13347511083877,7.39817409297047,8.23774380389093,9.03396112463786,5.49230769230769,507.734089030582,86,16938,1,1,1,0,9 +"15508",2015,21165,"KY","21","165",6371,0.967509025270758,379,0.155548579500863,5.93753620508243,6.62539236800796,7.51043055637801,8.52307692307692,754.716981132075,28,3710,1,1,1,0,9 +"15509",2015,21167,"KY","21","167",21383,0.945377168778937,1249,0.14754711686854,7.13009851012558,7.81359155295243,8.74065669154137,4.98461538461538,489.356496207487,60,12261,1,1,1,0,9 +"15510",2015,21169,"KY","21","169",9917,0.973782393869114,550,0.141575073106786,6.30991827822652,7.03614849375054,7.93379687481541,5.13846153846154,770.471241712955,43,5581,1,1,1,0,9 +"15511",2015,21171,"KY","21","171",10616,0.970704596834966,619,0.142614920874152,6.4281052726846,7.12608727329912,8.00536706731666,4.36153846153846,613.090306545153,37,6035,1,1,1,0,9 +"15512",2015,21173,"KY","21","173",27594,0.960933536276002,1600,0.12401246647822,7.37775890822787,8.2550489027523,9.02026886172217,6.51538461538462,492.97510475721,80,16228,1,1,1,0,9 +"15513",2015,21175,"KY","21","175",13279,0.945628435876195,855,0.145794111002335,6.75110146893676,7.56631101477246,8.15478757276852,8.23846153846154,433.458294283037,37,8536,1,1,1,0,9 +"15514",2015,21177,"KY","21","177",31258,0.943566446989571,2037,0.134205643355301,7.6192334162268,8.29054350077274,9.06346317611542,7.19230769230769,537.42802303263,98,18235,1,1,1,0,9 +"15515",2015,21179,"KY","21","179",45119,0.934617345242581,2765,0.134732596023848,7.92479591395644,8.65137437288226,9.51199931135876,5.03076923076923,416.604113496472,111,26644,1,1,1,0,9 +"15516",2015,21181,"KY","21","181",7072,0.986566742081448,400,0.138150452488688,5.99146454710798,6.77078942390898,7.61972421378267,6.18461538461538,833.537631772493,34,4079,1,1,1,0,9 +"15517",2015,21183,"KY","21","183",24040,0.977870216306156,1391,0.133818635607321,7.23777819192344,8.01697774676226,8.81863022910035,6.30769230769231,644.169533709099,88,13661,1,1,1,0,9 +"15518",2015,21185,"KY","21","185",64586,0.92814232186542,3672,0.12428390053572,8.20849175174038,9.16941420536354,9.76203918895175,3.83846153846154,301.927692188589,117,38751,1,1,1,0,9 +"15519",2015,21187,"KY","21","187",10737,0.979044425817267,541,0.152184036509267,6.29341927884648,7.23993259132047,8.03592636989179,4.1,466.312912043737,29,6219,1,1,1,0,9 +"15520",2015,21189,"KY","21","189",4449,0.988536749831423,228,0.155315801303664,5.42934562895444,6.22059017009974,7.17625453201714,10.0692307692308,1560.71564522269,41,2627,1,1,1,0,9 +"15521",2015,21191,"KY","21","191",14494,0.983648406237064,901,0.14537049813716,6.80350525760834,7.49443021503157,8.36007143564403,5.25384615384615,560.833237953531,49,8737,1,1,1,0,9 +"15522",2015,21193,"KY","21","193",27381,0.972170483181768,1617,0.149081479858296,7.38832785957711,8.1721644521119,9.04723303410603,8.98461538461538,862.797152166043,143,16574,1,1,1,0,9 +"15523",2015,21195,"KY","21","195",61831,0.984069479710825,3829,0.148776503695557,8.25035895147729,9.00442260132704,9.83381587928681,9.20769230769231,723.171159502415,268,37059,1,1,1,0,9 +"15524",2015,21197,"KY","21","197",12224,0.983884162303665,721,0.13898887434555,6.58063913728495,7.40184157874383,8.19863945529737,7.01538461538462,756.325632563256,55,7272,1,1,1,0,9 +"15525",2015,21199,"KY","21","199",63898,0.974740993458324,3546,0.138157688816551,8.17357548663415,8.99019232964177,9.83627880284268,5.83846153846154,652.025644523257,239,36655,1,1,1,0,9 +"15526",2015,21203,"KY","21","203",16938,0.989727240524265,994,0.141220923367576,6.90173720665657,7.66622192566273,8.52734152246805,6.32307692307692,500.65084609993,50,9987,1,1,1,0,9 +"15527",2015,21205,"KY","21","205",24658,0.967272284856842,3970,0.107510747019223,8.28652137368124,7.81359155295243,8.92225821950306,5.86153846153846,502.863528425758,72,14318,1,1,1,0,9 +"15528",2015,21207,"KY","21","207",17694,0.981010512037979,1004,0.143494970046343,6.91174730025167,7.65349490966125,8.52872642722991,11.6307692307692,592.786094644831,59,9953,1,1,1,0,9 +"15529",2015,21209,"KY","21","209",52177,0.921363819307358,3561,0.117791364010963,8.17779668327778,8.94871583384369,9.67533145939837,3.91538461538462,419.042817984184,133,31739,1,1,1,0,9 +"15530",2015,21211,"KY","21","211",45838,0.898533967450587,2910,0.13002312491819,7.97590836016554,8.72583205652757,9.56366972566382,3.98461538461538,368.6500036865,100,27126,1,1,1,0,9 +"15531",2015,21213,"KY","21","213",17913,0.88533467314241,1058,0.133366828560263,6.96413561241824,7.70481192293259,8.55333223803211,4.74615384615385,549.397590361446,57,10375,1,1,1,0,9 +"15532",2015,21215,"KY","21","215",18043,0.970071495870975,948,0.143102588261376,6.85435450225502,7.86018505747217,8.61558951327243,4.20769230769231,308.27817571856,34,11029,1,1,1,0,9 +"15533",2015,21217,"KY","21","217",25562,0.930013300993662,2059,0.129528205930678,7.62997570702779,7.88870952418201,8.8961774222748,5.96923076923077,566.393958464443,81,14301,1,1,1,0,9 +"15534",2015,21219,"KY","21","219",12449,0.906498513936862,704,0.121937505020484,6.55677835615804,7.32712329225929,8.14002395246292,4.78461538461538,365.016790772376,25,6849,1,1,1,0,9 +"15535",2015,21221,"KY","21","221",14222,0.913373646463226,712,0.152369568274504,6.56807791141198,7.35627987655075,8.29279885820037,5.64615384615385,614.439324116743,48,7812,1,1,1,0,9 +"15536",2015,21223,"KY","21","223",8739,0.97596979059389,507,0.137887630163634,6.22851100359118,7.00033446027523,7.83399634170946,5.54615384615385,621.600621600622,32,5148,1,1,1,0,9 +"15537",2015,21225,"KY","21","225",14976,0.854901175213675,1690,0.138020833333333,7.43248380791712,7.44483327389219,8.3466420902212,6.69230769230769,590.134728872063,53,8981,1,1,1,0,9 +"15538",2015,21227,"KY","21","227",124224,0.852170273055126,15330,0.109511849562081,9.63756697186586,9.62112464156195,10.5453940689025,4.40769230769231,415.83945914042,310,74548,1,1,1,0,9 +"15539",2015,21229,"KY","21","229",12000,0.92525,811,0.136,6.69826805411541,7.23921497377981,8.14293601043227,4.41538461538462,483.23326987846,33,6829,1,1,1,0,9 +"15540",2015,21231,"KY","21","231",20606,0.96889255556634,1187,0.147238668349025,7.07918439460967,7.83557924666997,8.68304655550289,8.06923076923077,538.901987201078,64,11876,1,1,1,0,9 +"15541",2015,21233,"KY","21","233",13153,0.940697939633544,764,0.145974302440508,6.63856778916652,7.42297125104942,8.24064886337491,5.19230769230769,647.081661705707,50,7727,1,1,1,0,9 +"15542",2015,21235,"KY","21","235",36143,0.981490191738373,2910,0.122928367872064,7.97590836016554,8.35066624052092,9.24753981296529,6.72307692307692,866.897189889446,178,20533,1,1,1,0,9 +"15543",2015,21237,"KY","21","237",7247,0.99020284255554,367,0.144887539671588,5.90536184805457,6.78219205600679,7.65254569269392,10.0538461538462,999.025341130604,41,4104,1,1,1,0,9 +"15544",2015,21239,"KY","21","239",25860,0.93476411446249,1503,0.152436194895592,7.31521838975297,8.06683531441734,8.96316024283373,3.46153846153846,462.320850670365,70,15141,1,1,1,0,9 +"15545",2015,25001,"MA","25","001",214015,0.941387285937902,11345,0.17408125598673,9.33653239721394,9.84527564278771,10.9941852701186,6.15384615384615,423.989132033677,490,115569,1,1,1,0,9 +"15546",2015,25003,"MA","25","003",127950,0.939413833528722,8703,0.159132473622509,9.07142307278951,9.49182830026464,10.5400379262313,5.39230769230769,389.966130969248,289,74109,1,1,1,0,9 +"15547",2015,25005,"MA","25","005",557104,0.911653838421551,37989,0.135358927597002,10.5450519231187,11.1444237164164,12.0525717545444,6.10769230769231,378.303463618032,1272,336238,1,1,1,0,9 +"15548",2015,25007,"MA","25","007",17290,0.922672064777328,826,0.167784846732215,6.71659477352098,7.59135704669855,8.53973715585113,6.84615384615385,254.229001662267,26,10227,1,1,1,0,9 +"15549",2015,25009,"MA","25","009",777228,0.876098133366271,52014,0.139193389841848,10.8592681920967,11.4417301699281,12.3825856989161,4.98461538461538,310.006078974752,1433,462249,1,1,1,0,9 +"15550",2015,25011,"MA","25","011",70911,0.955719140894925,3970,0.175713217977465,8.28652137368124,8.99342737041261,9.99811568161491,4.38461538461539,368.19192293442,159,43184,1,1,1,0,9 +"15551",2015,25013,"MA","25","013",469251,0.846050407990606,35834,0.134143560695662,10.4866524423598,10.8874930060783,11.8669990282504,6.37692307692308,360.253365003959,1001,277860,1,1,1,0,9 +"15552",2015,25015,"MA","25","015",160885,0.899735836156261,24625,0.133760139229885,10.1115174660403,9.66103375268742,10.8599600740431,4.49230769230769,214.186847715172,212,98979,1,1,1,0,9 +"15553",2015,25017,"MA","25","017",1586107,0.81585794653198,109405,0.126825617691619,11.6028118717648,12.2453750861129,13.1232669690424,3.9,225.900724861602,2237,990258,1,1,1,0,9 +"15554",2015,25021,"MA","25","021",694774,0.81267865521738,42628,0.135939168708098,10.6602665933408,11.3788682198238,12.2794021004323,4.15384615384615,255.827310582492,1069,417860,1,1,1,0,9 +"15555",2015,25023,"MA","25","023",509413,0.868852973913112,31431,0.144109003892716,10.3555499460211,11.0004150894734,11.9338307575663,5.05384615384615,338.490486441966,1011,298679,1,1,1,0,9 +"15556",2015,25025,"MA","25","025",783177,0.632496868523973,77970,0.10195651813064,11.2640794163036,11.5126854361656,12.5033287404162,4.38461538461539,247.827235528999,1304,526173,1,1,1,0,9 +"15557",2015,25027,"MA","25","027",818446,0.88320304577211,56810,0.137025533755434,10.9474676455512,11.5238950781588,12.4265807270427,5.08461538461538,339.015729687174,1688,497912,1,1,1,0,9 +"15558",2015,24001,"MD","24","001",72501,0.899987586378119,6525,0.130577509275734,8.78339623219089,9.03670101556506,9.87313143252123,6.84615384615385,441.183300051084,190,43066,1,1,1,0,9 +"15559",2015,24003,"MD","24","003",563133,0.77413506223219,37105,0.128923362686967,10.5215070104042,11.2018109855353,12.0624043332173,4.31538461538462,298.154037610619,1035,347136,1,1,1,0,9 +"15560",2015,24005,"MD","24","005",827796,0.640104566825643,53318,0.135371516653862,10.8840292642118,11.5150232630524,12.4634282336479,5.2,373.050719152157,1848,495375,1,1,1,0,9 +"15561",2015,24009,"MD","24","009",90542,0.834518786861346,5565,0.140376841686731,8.62425226370964,9.26188863385676,10.2230315981367,4.50769230769231,337.218678982479,184,54564,1,1,1,0,9 +"15562",2015,24011,"MD","24","011",32601,0.824698628876415,1971,0.138369988650655,7.58629630715272,8.26744895830485,9.17481681590714,5.36923076923077,445.74964602234,85,19069,1,1,1,0,9 +"15563",2015,24013,"MD","24","013",167201,0.938636730641563,10566,0.142834073958888,9.26539657772426,9.84278167741873,10.8156096075381,4.13076923076923,312.85409167026,312,99727,1,1,1,0,9 +"15564",2015,24015,"MD","24","015",102453,0.904853933022947,6283,0.141176929909324,8.74560285240295,9.42205890562093,10.3425486100728,5.86923076923077,496.108949416342,306,61680,1,1,1,0,9 +"15565",2015,24017,"MD","24","017",155775,0.484557855881881,10421,0.1229208794736,9.25157827999243,9.93188062703735,10.8191981161452,4.89230769230769,328.148927525965,315,95993,1,1,1,0,9 +"15566",2015,24019,"MD","24","019",32431,0.68782954580494,1840,0.150442477876106,7.51752085060303,8.12769985281777,9.18471482433721,7.05384615384615,473.907833097287,87,18358,1,1,1,0,9 +"15567",2015,24021,"MD","24","021",245145,0.841828305696628,15112,0.130490118093373,9.62324440918135,10.3610389738426,11.2194935605378,4.38461538461538,270.724610284835,401,148121,1,1,1,0,9 +"15568",2015,24023,"MD","24","023",29451,0.981834233133,1766,0.154256222199586,7.4764723811639,8.12296471523406,9.05625635659347,6.20769230769231,481.36190196654,82,17035,1,1,1,0,9 +"15569",2015,24025,"MD","24","025",249690,0.81935199647563,15251,0.139312747807281,9.63240035365618,10.3236442093873,11.2408411131415,4.82307692307692,331.578701572497,497,149889,1,1,1,0,9 +"15570",2015,24027,"MD","24","027",311417,0.611530520170704,18199,0.12851257317359,9.80912192650041,10.672020460002,11.4808463895065,3.73846153846154,195.417434816961,371,189850,1,1,1,0,9 +"15571",2015,24029,"MD","24","029",19745,0.823854140288681,1475,0.150367181564953,7.29641326877392,7.44132038971762,8.61920811682297,5.23846153846154,413.339596054486,44,10645,1,1,1,0,9 +"15572",2015,24031,"MD","24","031",1033370,0.630589237156101,59690,0.129925389744235,10.9969197811627,11.8677426844068,12.682651485621,3.80769230769231,191.602918480364,1203,627861,1,1,1,0,9 +"15573",2015,24033,"MD","24","033",906754,0.268686986768186,65957,0.124429558623397,11.0967582935288,11.7228297628499,12.5919301073321,5.13076923076923,310.038956307278,1770,570896,1,1,1,0,9 +"15574",2015,24035,"MD","24","035",49012,0.908634620093038,2583,0.148739084305884,7.85670679309584,8.59877317840866,9.56458235867321,4.42307692307692,320.39997183297,91,28402,1,1,1,0,9 +"15575",2015,24037,"MD","24","037",111092,0.807618910452598,7646,0.121583912432938,8.94193791425636,9.52813934333177,10.4192708666213,4.75384615384615,303.557876880496,204,67203,1,1,1,0,9 +"15576",2015,24039,"MD","24","039",25705,0.548297996498736,3275,0.129235557284575,8.09407314806935,7.95752740223077,8.83695515733143,8.10769230769231,392.621214009722,63,16046,1,1,1,0,9 +"15577",2015,24041,"MD","24","041",37431,0.844166599877107,1825,0.152867943683043,7.50933526601659,8.18535022317869,9.24164522180459,4.81538461538462,329.631320046656,65,19719,1,1,1,0,9 +"15578",2015,24043,"MD","24","043",149160,0.855088495575221,9178,0.130430410297667,9.12456459495478,9.84548760823814,10.6473040828707,5.50769230769231,433.90775525804,386,88959,1,1,1,0,9 +"15579",2015,24045,"MD","24","045",101820,0.689815360439992,10693,0.125770968375565,9.27734460075666,9.32250766884693,10.3416457045908,6.7,385.80375782881,231,59875,1,1,1,0,9 +"15580",2015,24047,"MD","24","047",51472,0.839096984768418,2660,0.156997979483991,7.88608140177575,8.50572771330696,9.56261565157023,10.4230769230769,489.517931254656,138,28191,1,1,1,0,9 +"15581",2015,24510,"MD","24","510",622831,0.31730116195244,47826,0.124264848731036,10.775324703656,11.2255100236359,12.2486818420531,7.4,642.167752109601,2541,395691,1,1,1,0,9 +"15582",2015,23001,"ME","23","001",107189,0.939238168095607,6689,0.139781134258179,8.80821966511841,9.4673054717659,10.3745531177282,4.17692307692308,375.690607734807,238,63350,0,1,0,0,9 +"15583",2015,23003,"ME","23","003",68869,0.962247164907288,3793,0.165154133209427,8.2409125416889,8.90761234131913,9.88149753464451,5.91538461538462,456.679252984998,179,39196,0,1,0,0,9 +"15584",2015,23005,"ME","23","005",289704,0.937822743213763,18593,0.145586529699279,9.83054044478006,10.480606407036,11.4128288484319,3.44615384615385,301.225246405642,533,176944,0,1,0,0,9 +"15585",2015,23007,"ME","23","007",30024,0.982747135624834,2045,0.165867306155076,7.6231530684769,8.01367414283268,9.09896178399279,4.76153846153846,405.853435463588,71,17494,0,1,0,0,9 +"15586",2015,23009,"ME","23","009",54280,0.972457627118644,2770,0.174447310243183,7.92660259918138,8.67008593751938,9.69177837884758,5.69230769230769,339.473187904696,108,31814,0,1,0,0,9 +"15587",2015,23011,"ME","23","011",121063,0.973534440745727,7552,0.157851697050296,8.92956770782534,9.54387974051276,10.5143123455926,4.26153846153846,412.080314176669,298,72316,0,1,0,0,9 +"15588",2015,23013,"ME","23","013",39797,0.979194411639068,1939,0.169309244415408,7.56992765524265,8.39140318535794,9.32741204356202,4.12307692307692,462.962962962963,105,22680,0,1,0,0,9 +"15589",2015,23015,"ME","23","015",33789,0.98037822960135,1558,0.173014886501524,7.35115822643069,8.16422565226583,9.16387749756584,4.48461538461538,375.194297046685,70,18657,0,1,0,0,9 +"15590",2015,23017,"ME","23","017",57195,0.979263921671475,2781,0.170591834950608,7.93056585423396,8.77059432989114,9.73601519859238,5.44615384615385,405.800560959599,136,33514,0,1,0,0,9 +"15591",2015,23019,"ME","23","019",152029,0.962901814785337,11355,0.148221720855889,9.33741345453966,9.74630728814851,10.7477450815105,4.73846153846154,394.70704325601,366,92727,0,1,0,0,9 +"15592",2015,23021,"ME","23","021",16940,0.976387249114522,739,0.183412042502952,6.6052979209482,7.47760424319759,8.47699600166482,5.52307692307692,470.268575608737,45,9569,0,1,0,0,9 +"15593",2015,23023,"ME","23","023",35137,0.974300594814583,1705,0.164584341292654,7.44132038971762,8.30102525383845,9.26397592114209,3.51538461538462,432.668935342732,89,20570,0,1,0,0,9 +"15594",2015,23025,"ME","23","025",50749,0.978679382844982,2462,0.163510611046523,7.8087293067444,8.69934806765309,9.61600546008701,6.57692307692308,541.425754486815,162,29921,0,1,0,0,9 +"15595",2015,23027,"ME","23","027",39143,0.978386940193649,1993,0.167999386863552,7.5973963202128,8.44505251363855,9.35599794439855,5.22307692307692,400.281516671065,91,22734,0,1,0,0,9 +"15596",2015,23029,"ME","23","029",31783,0.927256709561715,1691,0.168675077871818,7.43307534889858,8.11522197256233,9.09526616413072,6.43076923076923,534.398379929122,95,17777,0,1,0,0,9 +"15597",2015,23031,"ME","23","031",201407,0.970224470847587,11071,0.158946809197297,9.31208435585947,10.0591656367158,11.0231272083963,3.93846153846154,360.276211762351,432,119908,0,1,0,0,9 +"15598",2015,26001,"MI","26","001",10327,0.982666795778057,397,0.196668926116007,5.98393628068719,6.61873898351722,7.85127199710988,8.13076923076923,752.459965271079,39,5183,1,1,1,0,9 +"15599",2015,26003,"MI","26","003",9265,0.867242309767944,480,0.179060982191042,6.17378610390194,6.93634273583405,7.72577144158795,8.64615384615385,563.738861611202,31,5499,1,1,1,0,9 +"15600",2015,26005,"MI","26","005",114122,0.963013266504267,6702,0.143031142111074,8.81016126829726,9.50940738929453,10.4010151481581,4.18461538461538,351.031154014919,232,66091,1,1,1,0,9 +"15601",2015,26007,"MI","26","007",28728,0.978835978835979,1580,0.169590643274854,7.36518012602101,8.03851202097681,9.00724451596575,6.33076923076923,555.216595485052,91,16390,1,1,1,0,9 +"15602",2015,26009,"MI","26","009",23036,0.977470046883139,1129,0.172599409619726,7.02908756414966,7.67971363996637,8.73311069763871,7.6,548.077698073668,68,12407,1,1,1,0,9 +"15603",2015,26011,"MI","26","011",15304,0.975104547830632,753,0.181390486147412,6.62406522779989,7.34729970074316,8.35019365072007,9.09230769230769,474.317445627024,41,8644,1,1,1,0,9 +"15604",2015,26013,"MI","26","013",8583,0.75905860421764,523,0.152976814633578,6.25958146406492,6.93537044601511,7.64491934495886,9.22307692307692,409.996095275283,21,5122,1,1,1,0,9 +"15605",2015,26015,"MI","26","015",59434,0.97964128276744,3354,0.152067839956927,8.11790894238315,8.81581520390635,9.73085886771307,4.34615384615385,394.679140476539,135,34205,1,1,1,0,9 +"15606",2015,26017,"MI","26","017",105271,0.960093473036259,6528,0.151998176135878,8.78385589664394,9.39557435021717,10.3363083906541,5.83846153846154,472.943424952625,292,61741,1,1,1,0,9 +"15607",2015,26019,"MI","26","019",17386,0.9697457724606,837,0.166283216380996,6.72982407048948,7.44775128004791,8.47491179915963,7.09230769230769,428.466924443515,41,9569,1,1,1,0,9 +"15608",2015,26021,"MI","26","021",155136,0.807420585808581,9644,0.144789088283828,9.17409123930106,9.77837774149328,10.705197615699,5.27692307692308,462.155365759725,408,88282,1,1,1,0,9 +"15609",2015,26023,"MI","26","023",43635,0.961475879454566,2578,0.141446086856881,7.85476918349913,8.55352512066363,9.36254630486551,5.17692307692308,418.760469011725,105,25074,1,1,1,0,9 +"15610",2015,26025,"MI","26","025",134377,0.836854521235033,8928,0.13848352024528,9.09694768462109,9.66959897968574,10.578954352241,5.15384615384615,513.006529174008,396,77192,1,1,1,0,9 +"15611",2015,26027,"MI","26","027",51370,0.908467977418727,2865,0.15637531633249,7.96032362914884,8.65399423290838,9.58086891020345,5.10769230769231,462.107208872458,135,29214,1,1,1,0,9 +"15612",2015,26029,"MI","26","029",26219,0.964758381326519,1326,0.17239406537244,7.18992217074581,7.83794891602528,8.8989119057944,6.13076923076923,367.772253626643,54,14683,1,1,1,0,9 +"15613",2015,26031,"MI","26","031",25399,0.947950706720737,1238,0.178668451513839,7.12125245324454,7.83715965000168,8.85337967292763,9.40769230769231,434.689660086938,61,14033,1,1,1,0,9 +"15614",2015,26033,"MI","26","033",37998,0.73369651034265,3429,0.135217643033844,8.14002395246292,8.48404997282298,9.18358563466736,7.86153846153846,311.008861622359,73,23472,1,1,1,0,9 +"15615",2015,26035,"MI","26","035",30611,0.977197739374735,1662,0.168109503119794,7.41577697541539,8.04302088529828,9.06519898630651,7.83076923076923,721.93758733116,124,17176,1,1,1,0,9 +"15616",2015,26037,"MI","26","037",77037,0.953113438996846,4971,0.142697664758493,8.51137630609467,9.13991790767964,10.0441186822759,3.96923076923077,244.814094297143,112,45749,1,1,1,0,9 +"15617",2015,26039,"MI","26","039",13854,0.974375631586545,661,0.173956979933593,6.49375383985169,7.15539630189673,8.23774380389093,7.93846153846154,470.403763230106,36,7653,1,1,1,0,9 +"15618",2015,26041,"MI","26","041",36431,0.956630342290906,1865,0.168235843100656,7.53101633207792,8.26950076718061,9.21979553074694,6.87692307692308,325.588278821962,66,20271,1,1,1,0,9 +"15619",2015,26043,"MI","26","043",25675,0.975890944498539,1414,0.167555988315482,7.25417784645652,7.88306935130575,8.89068592028113,5.71538461538462,400.244216810257,59,14741,1,1,1,0,9 +"15620",2015,26045,"MI","26","045",108701,0.891472939531375,7096,0.148351901086467,8.86728652398942,9.43043929310417,10.3924049337532,4.47692307692308,345.433892977734,222,64267,1,1,1,0,9 +"15621",2015,26047,"MI","26","047",32931,0.939206219064104,1858,0.16540645592299,7.52725591937378,8.20903626577507,9.16868469670735,7.33076923076923,342.80892357998,65,18961,1,1,1,0,9 +"15622",2015,26049,"MI","26","049",410574,0.763316722442239,27499,0.140639689800133,10.2219049193571,10.8084544106788,11.7283271250324,6.24615384615385,504.732124592436,1209,239533,1,1,1,0,9 +"15623",2015,26051,"MI","26","051",25227,0.982360169659492,1187,0.166488286359853,7.07918439460967,7.81197342962202,8.80372460211062,7.36153846153846,512.630014858841,69,13460,1,1,1,0,9 +"15624",2015,26053,"MI","26","053",15537,0.916264401107035,892,0.164832335714745,6.79346613258001,7.4318919168078,8.2534880283459,7.38461538461539,354.531353866608,32,9026,1,1,1,0,9 +"15625",2015,26055,"MI","26","055",91610,0.960299093985373,5373,0.152843576028818,8.58914169072882,9.29550838434606,10.2029993767415,4.73076923076923,282.449608422134,154,54523,1,1,1,0,9 +"15626",2015,26057,"MI","26","057",41333,0.92572520746135,3298,0.127162315825128,8.10107150311954,8.5569906612903,9.28294006439053,5.75384615384615,391.223683149149,97,24794,1,1,1,0,9 +"15627",2015,26059,"MI","26","059",45894,0.979735913191267,3019,0.152394648537935,8.01268092970684,8.52971447196991,9.46273199764938,5.31538461538462,391.976020290523,102,26022,1,1,1,0,9 +"15628",2015,26061,"MI","26","061",36248,0.946121165305672,5457,0.118930699624807,8.60465446718623,8.10319175228579,9.11723775371386,6.43076923076923,330.385773977262,68,20582,1,1,1,0,9 +"15629",2015,26063,"MI","26","063",31761,0.981770095400019,1609,0.16813072636252,7.38336814699238,8.02191277898571,9.05075830215172,5.46153846153846,487.301496302242,85,17443,1,1,1,0,9 +"15630",2015,26065,"MI","26","065",287255,0.78297679761884,40676,0.116673339019338,10.613393516911,10.3575523304804,11.4109702557804,4.72307692307692,345.768572348684,612,176997,1,1,1,0,9 +"15631",2015,26067,"MI","26","067",64073,0.933060727607573,4490,0.131256535514179,8.4096079807363,9.05473863988161,9.75132655863703,4.63846153846154,331.058368136905,130,39268,1,1,1,0,9 +"15632",2015,26069,"MI","26","069",25360,0.971175078864353,1168,0.179968454258675,7.06304816338817,7.70255611326858,8.81060879571578,7.63846153846154,600.756508195505,81,13483,1,1,1,0,9 +"15633",2015,26071,"MI","26","071",11327,0.974132603513728,478,0.195550454665843,6.16961073249146,6.86066367144829,7.98582466641892,7.13846153846154,315.982038915683,19,6013,1,1,1,0,9 +"15634",2015,26073,"MI","26","073",70798,0.900025424447018,14385,0.105398457583548,9.57394127598565,8.776938645175,10.0172179428631,4.85384615384615,259.441411361278,115,44326,1,1,1,0,9 +"15635",2015,26075,"MI","26","075",159325,0.889402165385219,10758,0.14253255923427,9.28340494283319,9.85497984847108,10.7099187745494,5.35384615384615,412.23347886906,389,94364,1,1,1,0,9 +"15636",2015,26077,"MI","26","077",259816,0.833332050374111,32554,0.120466022107953,10.3906555279514,10.2935344079159,11.2855605160817,4.41538461538462,315.317597001317,498,157936,1,1,1,0,9 +"15637",2015,26079,"MI","26","079",17254,0.972875854874232,886,0.162107337429002,6.78671695060508,7.58273848891441,8.49249057877587,7.79230769230769,412.267471091,41,9945,1,1,1,0,9 +"15638",2015,26081,"MI","26","081",637333,0.841867595119035,45854,0.122435210478667,10.7332177148826,11.266705182326,12.1707252214984,3.81538461538462,286.923369187837,1095,381635,1,1,1,0,9 +"15639",2015,26085,"MI","26","085",11691,0.878282439483363,503,0.192028055769395,6.22059017009974,7.04490511712937,8.0471895621705,8.72307692307692,573.979591836735,36,6272,1,1,1,0,9 +"15640",2015,26087,"MI","26","087",88376,0.972220964967865,5328,0.158289580881687,8.58073121222023,9.22503192071917,10.1546353002599,7.13076923076923,342.609159084853,180,52538,1,1,1,0,9 +"15641",2015,26089,"MI","26","089",21633,0.941801876762354,1073,0.190773355521657,6.9782137426307,7.49443021503157,8.67214355141406,5.34615384615385,294.60185425873,34,11541,1,1,1,0,9 +"15642",2015,26091,"MI","26","091",98432,0.951367441482445,6574,0.144018205461638,8.79087775422416,9.37644785490711,10.2244109587677,5.06923076923077,404.477143554517,232,57358,1,1,1,0,9 +"15643",2015,26093,"MI","26","093",187221,0.975317939761031,10992,0.153433642593512,9.30492301446213,9.99947931818985,10.9261363023972,4.56923076923077,260.046647542961,291,111903,1,1,1,0,9 +"15644",2015,26097,"MI","26","097",10814,0.772609580173849,551,0.182818568522286,6.31173480915291,6.99209642741589,7.99429498641598,10.7,631.543958783447,38,6017,1,1,1,0,9 +"15645",2015,26099,"MI","26","099",865031,0.837079827196944,55352,0.13922275617868,10.9214680711786,11.5971379286539,12.4881603486381,5.68461538461538,387.310035931634,2020,521546,1,1,1,0,9 +"15646",2015,26101,"MI","26","101",24462,0.92891014634944,1386,0.173248303491129,7.23417717974985,7.78655180642871,8.75636755980297,6.76153846153846,463.197510313382,64,13817,1,1,1,0,9 +"15647",2015,26103,"MI","26","103",67357,0.947666909155693,7925,0.14696319610434,8.97777759874548,8.86939815988352,9.89802264710506,6.06923076923077,382.549841830354,156,40779,1,1,1,0,9 +"15648",2015,26105,"MI","26","105",28754,0.965952563121653,1639,0.164916185574181,7.40184157874383,7.99496952269788,8.99019232964177,6.2,423.38584147936,68,16061,1,1,1,0,9 +"15649",2015,26107,"MI","26","107",43013,0.943784437263153,5560,0.132239090507521,8.62335338724463,8.28677323113125,9.39897529082673,6.23846153846154,390.357760875689,97,24849,1,1,1,0,9 +"15650",2015,26109,"MI","26","109",23494,0.955563122499361,1218,0.173959308759683,7.10496544826984,7.78986855905471,8.77585831479753,5.45384615384615,396.054401434763,53,13382,1,1,1,0,9 +"15651",2015,26111,"MI","26","111",83706,0.950326141495233,5394,0.141399660717272,8.59304250369967,9.17326136373476,10.1148014080968,4.93076923076923,314.637760591113,155,49263,1,1,1,0,9 +"15652",2015,26113,"MI","26","113",14884,0.975947325987638,830,0.151370599301263,6.72142570079064,7.30988148582479,8.3030093814735,6.60769230769231,544.926132235408,45,8258,1,1,1,0,9 +"15653",2015,26115,"MI","26","115",149439,0.958350899029035,9018,0.152122270625473,9.10697785898103,9.78560451187941,10.6995297118141,4.61538461538461,441.12503807665,391,88637,1,1,1,0,9 +"15654",2015,26117,"MI","26","117",62778,0.960495715059416,3786,0.141036668896747,8.23906533176927,8.9599540842681,9.7553934942914,5.8,412.52781848776,152,36846,1,1,1,0,9 +"15655",2015,26119,"MI","26","119",9292,0.983641842445114,328,0.210073181231167,5.79301360838414,6.68959926917897,7.80343505695217,10.1153846153846,624.748085449416,31,4962,1,1,1,0,9 +"15656",2015,26121,"MI","26","121",172506,0.823681495136401,11360,0.141421167959375,9.33785369227514,9.93479240236454,10.8173152536388,5.88461538461539,482.982043735061,489,101246,1,1,1,0,9 +"15657",2015,26123,"MI","26","123",47900,0.968350730688935,2718,0.150041753653445,7.90765159471109,8.54169066301663,9.50911074141338,5.53076923076923,446.527418997712,121,27098,1,1,1,0,9 +"15658",2015,26125,"MI","26","125",1244895,0.772916591359111,75965,0.142256174215496,11.2380279868779,11.9723672639351,12.856818460019,4.66923076923077,314.321750931977,2360,750823,1,1,1,0,9 +"15659",2015,26127,"MI","26","127",26316,0.96500227998176,1500,0.147400820793434,7.3132203870903,7.90396563403217,8.85694575615902,8.11538461538461,426.633095537838,61,14298,1,1,1,0,9 +"15660",2015,26129,"MI","26","129",20876,0.978060931212876,1075,0.178721977390305,6.98007594056176,7.6275443904885,8.66094715506093,7.96923076923077,538.241166767949,62,11519,1,1,1,0,9 +"15661",2015,26131,"MI","26","131",6037,0.973993705482856,172,0.211528905085307,5.14749447681345,6.17378610390194,7.34083555412327,9.48461538461538,543.478260869565,17,3128,1,1,1,0,9 +"15662",2015,26133,"MI","26","133",23180,0.974805867126833,1235,0.150690250215703,7.11882624906208,7.8188324438034,8.74830491237962,6.61538461538462,376.441063446004,48,12751,1,1,1,0,9 +"15663",2015,26135,"MI","26","135",8275,0.982114803625378,406,0.189486404833837,6.00635315960173,6.52795791762255,7.68017564043659,8.80769230769231,342.465753424658,15,4380,1,1,1,0,9 +"15664",2015,26137,"MI","26","137",24209,0.97133297533975,1445,0.153827089099095,7.27586460054653,7.85282781228174,8.83127373772255,6.22307692307692,562.906645222604,77,13679,1,1,1,0,9 +"15665",2015,26139,"MI","26","139",280907,0.938662973866796,26800,0.118391496117932,10.1961571664989,10.3938451276623,11.3016734284988,3.67692307692308,209.04669743437,337,161208,1,1,1,0,9 +"15666",2015,26141,"MI","26","141",12800,0.97625,542,0.194140625,6.29526600143965,7.06561336359772,8.1164170727942,10.3307692307692,504.22660536853,34,6743,1,1,1,0,9 +"15667",2015,26143,"MI","26","143",23910,0.975826014219992,1019,0.198243412797992,6.92657703322272,7.56268124672188,8.75305551513822,9.16153846153846,624.456564698443,79,12651,1,1,1,0,9 +"15668",2015,26145,"MI","26","145",193384,0.773859264468622,13956,0.142467836015389,9.54366480230667,9.97557562893038,10.9474500428615,5.78461538461538,442.676935811844,492,111142,1,1,1,0,9 +"15669",2015,26147,"MI","26","147",159757,0.953930031234938,9787,0.151893187778939,9.18881025342582,9.82941034913981,10.7624245573803,6.74615384615385,466.467357886479,440,94326,1,1,1,0,9 +"15670",2015,26149,"MI","26","149",60809,0.948395796674834,3638,0.138137446759526,8.19918935907807,8.84879645092595,9.7319278783862,4.56923076923077,412.848066055691,141,34153,1,1,1,0,9 +"15671",2015,26151,"MI","26","151",41463,0.981188047174589,2257,0.159467477027711,7.72179177681754,8.40065937516029,9.3461815948876,6.59230769230769,379.653997152595,88,23179,1,1,1,0,9 +"15672",2015,26153,"MI","26","153",8118,0.885316580438532,394,0.187854151268785,5.97635090929793,6.6945620585211,7.73630709654828,10.9615384615385,375.358798851844,17,4529,1,1,1,0,9 +"15673",2015,26155,"MI","26","155",68538,0.976669876564825,4287,0.147903352884531,8.36334246659798,8.99106433218846,9.90653291072209,5.72307692307692,398.714146876324,160,40129,1,1,1,0,9 +"15674",2015,26157,"MI","26","157",53723,0.974387134002196,3109,0.154905720082646,8.04205641005875,8.70300863746445,9.63671860166455,6.77692307692308,415.485699561969,129,31048,1,1,1,0,9 +"15675",2015,26159,"MI","26","159",75087,0.929601662071996,4391,0.152236738716422,8.38731227056172,9.07348918922699,9.9818365189471,6.36153846153846,458.182156479673,197,42996,1,1,1,0,9 +"15676",2015,26161,"MI","26","161",363555,0.758900303943007,49081,0.115734895682909,10.8012272735154,10.634965627401,11.6459867471101,3.75384615384615,226.022619920009,512,226526,1,1,1,0,9 +"15677",2015,26163,"MI","26","163",1764866,0.555569091364444,126997,0.133046361593458,11.7519187431145,12.2827234533637,13.2006883028421,6.83846153846154,544.977094334646,5703,1046466,1,1,1,0,9 +"15678",2015,26165,"MI","26","165",32885,0.973848259084689,1904,0.149308195225787,7.55171221535131,8.19146305132693,9.13302726887351,6.83076923076923,550.97892371884,103,18694,1,1,1,0,9 +"15679",2015,27001,"MN","27","001",15857,0.957179794412562,631,0.178028630888567,6.44730586254121,7.15773548424991,8.277411998949,6.67692307692308,365.515502898916,29,7934,1,1,1,0,9 +"15680",2015,27003,"MN","27","003",344244,0.878952138599366,20320,0.133861447113094,9.91936090169242,10.7256434136596,11.5518961468683,3.7,260.343672651087,548,210491,1,1,1,0,9 +"15681",2015,27005,"MN","27","005",33455,0.892721566283067,1685,0.151726199372291,7.42952084278646,8.18757739559151,9.09234481373847,4.47692307692308,368.715083798883,66,17900,1,1,1,0,9 +"15682",2015,27007,"MN","27","007",45629,0.746652348287273,4563,0.1240439194372,8.4257355809274,8.45297461908959,9.45665342531703,5.01538461538462,387.703152535735,99,25535,1,1,1,0,9 +"15683",2015,27009,"MN","27","009",39433,0.942941191387924,2541,0.118149773032739,7.84031298332016,8.52377150677636,9.34653072642645,4.53076923076923,276.102285277377,65,23542,1,1,1,0,9 +"15684",2015,27013,"MN","27","013",65701,0.927763656565349,10884,0.111215963227348,9.29504909990314,8.80161997114735,9.88674822853183,3.00769230769231,200.172989002842,81,40465,1,1,1,0,9 +"15685",2015,27015,"MN","27","015",25246,0.982452665768835,1798,0.147389685494732,7.49443021503157,7.82883452758809,8.84231554684186,4.16153846153846,236.169755957919,33,13973,1,1,1,0,9 +"15686",2015,27017,"MN","27","017",35400,0.906723163841808,1995,0.14271186440678,7.59839932932396,8.39660622842712,9.16377273615985,5.02307692307692,379.880746297365,79,20796,1,1,1,0,9 +"15687",2015,27019,"MN","27","019",98610,0.942977385660683,5428,0.123679140046648,8.59932602095476,9.5361127111751,10.2878992514465,3.23076923076923,187.787015381464,110,58577,1,1,1,0,9 +"15688",2015,27021,"MN","27","021",28704,0.853748606465998,1359,0.169000836120401,7.21450441415114,7.87739718635329,8.91529794511811,6.86923076923077,520.696018982336,79,15172,1,1,1,0,9 +"15689",2015,27023,"MN","27","023",12069,0.954842986162897,707,0.144336730466484,6.56103066589657,7.11395610956603,8.08825472712243,4.46153846153846,348.326518249281,23,6603,1,1,1,0,9 +"15690",2015,27025,"MN","27","025",54144,0.963707890070922,3136,0.13707890070922,8.0507033814703,8.83200393125627,9.64749792681684,4.26923076923077,293.613897724492,96,32696,1,1,1,0,9 +"15691",2015,27027,"MN","27","027",62235,0.934072467261187,6941,0.110452317827589,8.84520113533958,8.90259163737409,9.80829736553238,3.17692307692308,302.493527728573,111,36695,1,1,1,0,9 +"15692",2015,27029,"MN","27","029",8794,0.880372981578349,428,0.142938367068456,6.0591231955818,6.87729607149743,7.74022952476318,9.22307692307692,532.821824381927,25,4692,1,1,1,0,9 +"15693",2015,27033,"MN","27","033",11431,0.939725308371971,610,0.141719884524539,6.41345895716736,7.07834157955767,7.98036576511125,4.86923076923077,472.095767998651,28,5931,1,1,1,0,9 +"15694",2015,27035,"MN","27","035",63255,0.972460675045451,3313,0.148921033910363,8.1056094022999,8.81581520390635,9.76025208444937,5.29230769230769,312.84082429252,109,34842,1,1,1,0,9 +"15695",2015,27037,"MN","27","037",414245,0.871433571919999,24185,0.132107810595179,10.0934878852571,10.9015057259685,11.7488114850939,3.36923076923077,213.145434768699,533,250064,1,1,1,0,9 +"15696",2015,27039,"MN","27","039",20417,0.979526864867512,1120,0.127148944507028,7.02108396428914,7.91571319938212,8.65189889426853,3.81538461538462,258.175559380379,30,11620,1,1,1,0,9 +"15697",2015,27041,"MN","27","041",36796,0.981709968474834,2069,0.147787803022068,7.63482067774554,8.28147085789517,9.20773698610607,3.49230769230769,359.729956142512,73,20293,1,1,1,0,9 +"15698",2015,27043,"MN","27","043",13977,0.978464620447879,681,0.158832367460829,6.52356230614951,7.28276117960559,8.20903626577507,4.46923076923077,546.448087431694,41,7503,1,1,1,0,9 +"15699",2015,27045,"MN","27","045",20737,0.984809760331774,1047,0.148623233833245,6.95368421087054,7.72885582385254,8.60611940061064,4.17692307692308,260.510240747395,29,11132,1,1,1,0,9 +"15700",2015,27047,"MN","27","047",30519,0.959074674792752,1545,0.149054687244012,7.34277918933185,8.07620452723903,9.0050367387903,3.87692307692308,323.024466112341,54,16717,1,1,1,0,9 +"15701",2015,27049,"MN","27","049",46092,0.95919031502213,2438,0.151154213312505,7.79893331004122,8.56216655705897,9.46831038044244,3.58461538461538,301.480689970997,79,26204,1,1,1,0,9 +"15702",2015,27053,"MN","27","053",1222868,0.768545746556456,78673,0.12667188936173,11.2730553005736,11.9845465354524,12.8541570814532,3.37692307692308,250.190873318847,1917,766215,1,1,1,0,9 +"15703",2015,27055,"MN","27","055",18695,0.979138807167692,1021,0.166461620754212,6.92853781816467,7.63723438878947,8.57376254290413,3.9,225.818592397441,24,10628,1,1,1,0,9 +"15704",2015,27057,"MN","27","057",20645,0.955388713974328,903,0.164495035117462,6.80572255341699,7.6226639513236,8.60428789826717,6.27692307692308,311.212814645309,34,10925,1,1,1,0,9 +"15705",2015,27059,"MN","27","059",38281,0.970220213683028,2061,0.136177215851206,7.63094658089046,8.44290058683438,9.29981537840379,4.39230769230769,351.064302537439,79,22503,1,1,1,0,9 +"15706",2015,27061,"MN","27","061",45269,0.943294528264375,2301,0.168945636086505,7.74109909003537,8.49105453380654,9.42100640177928,6.64615384615385,445.611522240789,112,25134,1,1,1,0,9 +"15707",2015,27063,"MN","27","063",10098,0.967914438502674,554,0.157654981184393,6.31716468674728,7.00124562206948,7.88382321489215,4.12307692307692,232.39184840901,13,5594,1,1,1,0,9 +"15708",2015,27065,"MN","27","065",15895,0.976785152563699,825,0.165397923875433,6.71538338633468,7.50659178007084,8.38662882139512,6.70769230769231,308.880308880309,28,9065,1,1,1,0,9 +"15709",2015,27067,"MN","27","067",42638,0.93257188423472,2742,0.145855809371922,7.91644286012226,8.43728380818794,9.37288430116146,3.81538461538462,317.845343147505,76,23911,1,1,1,0,9 +"15710",2015,27071,"MN","27","071",12798,0.955149242069073,658,0.180106266604157,6.48920493132532,7.18235211188526,8.16848641712668,8.31538461538462,346.54837815359,25,7214,1,1,1,0,9 +"15711",2015,27075,"MN","27","075",10540,0.98111954459203,467,0.181973434535104,6.1463292576689,6.9555926083963,7.94626364358054,4.90769230769231,344.589937973811,20,5804,1,1,1,0,9 +"15712",2015,27079,"MN","27","079",27762,0.979576399394856,1449,0.140515812981774,7.27862894232068,8.1146238864201,8.9497545251861,4.90769230769231,310.283687943262,49,15792,1,1,1,0,9 +"15713",2015,27083,"MN","27","083",25830,0.916918312040263,1828,0.124699961285327,7.5109777520141,7.99867136101578,8.8848872018374,3.28461538461538,309.427215842673,45,14543,1,1,1,0,9 +"15714",2015,27085,"MN","27","085",35808,0.976737042001787,2062,0.133713136729223,7.6314316645769,8.36357570275064,9.2098402469345,4.02307692307692,295.901760615476,60,20277,1,1,1,0,9 +"15715",2015,27087,"MN","27","087",5428,0.506816507000737,276,0.127671333824613,5.62040086571715,6.3026189757449,7.20563517641036,5.92307692307692,737.463126843658,20,2712,1,1,1,0,9 +"15716",2015,27091,"MN","27","091",20041,0.977546030637194,1097,0.159173693927449,7.00033446027523,7.59890045687141,8.58260632996447,4.15384615384615,368.019136995124,40,10869,1,1,1,0,9 +"15717",2015,27093,"MN","27","093",23048,0.98329573064908,1166,0.149817771607081,7.06133436691044,7.85476918349913,8.71620797115185,4.28461538461538,317.183411307589,40,12611,1,1,1,0,9 +"15718",2015,27095,"MN","27","095",25482,0.917785103210109,1333,0.136213797975041,7.19518732017871,8.01168672912785,8.86191700423521,5.91538461538462,376.464026770775,54,14344,1,1,1,0,9 +"15719",2015,27097,"MN","27","097",32770,0.982880683552029,1711,0.149588037839487,7.44483327389219,8.21202580462344,9.10208678653593,5.50769230769231,334.773218142549,62,18520,1,1,1,0,9 +"15720",2015,27099,"MN","27","099",39497,0.914626427323594,2313,0.129782008760159,7.74630066223144,8.42726848388825,9.26255324342312,3.27692307692308,226.296587078003,49,21653,1,1,1,0,9 +"15721",2015,27103,"MN","27","103",33545,0.944850201222239,2974,0.127202265613355,7.9976631270201,8.27969713387763,9.16858043772795,2.70769230769231,212.228398180899,42,19790,1,1,1,0,9 +"15722",2015,27105,"MN","27","105",21754,0.863979038337777,1465,0.124942539303117,7.28961052145117,7.78155595923534,8.61830469278465,3.26153846153846,232.925713334997,28,12021,1,1,1,0,9 +"15723",2015,27109,"MN","27","109",151492,0.865722282364745,8615,0.12914213291791,9.06126014896203,9.86016242779775,10.720731130809,2.99230769230769,226.158221187219,202,89318,1,1,1,0,9 +"15724",2015,27111,"MN","27","111",57539,0.96788265350458,2947,0.161907575731243,7.9885429827377,8.61540823891319,9.61999668470282,4.3,382.495948136143,118,30850,1,1,1,0,9 +"15725",2015,27113,"MN","27","113",14258,0.951676251928742,880,0.136344508346192,6.77992190747225,7.45066079621154,8.29254851397576,5.22307692307692,352.369380315917,29,8230,1,1,1,0,9 +"15726",2015,27115,"MN","27","115",29051,0.92822966507177,1444,0.154590203435338,7.27517231945277,8.1610895128458,8.93287262193137,5.66923076923077,444.080869463597,76,17114,1,1,1,0,9 +"15727",2015,27117,"MN","27","117",9302,0.950333261664158,515,0.137497312405934,6.24416690066374,6.82219739062049,7.7848892956551,3.42307692307692,390.625,19,4864,1,1,1,0,9 +"15728",2015,27119,"MN","27","119",31519,0.946222913163489,2089,0.139027253402709,7.64444076155657,8.11701408773731,9.05345261643904,4.30769230769231,416.010793793569,74,17788,1,1,1,0,9 +"15729",2015,27121,"MN","27","121",10930,0.981335773101555,505,0.160475754803294,6.22455842927536,7.00033446027523,7.95014988765202,3.53846153846154,252.993759487266,15,5929,1,1,1,0,9 +"15730",2015,27123,"MN","27","123",536838,0.706753247720914,40696,0.123877221806206,10.6138850865026,11.0598812091161,12.0146820893963,3.6,273.708333205337,891,325529,1,1,1,0,9 +"15731",2015,27127,"MN","27","127",15427,0.90762948078045,810,0.140014260711739,6.69703424766648,7.36201055125973,8.27690348126706,3.99230769230769,419.132149901381,34,8112,1,1,1,0,9 +"15732",2015,27129,"MN","27","129",14797,0.967087923227681,778,0.157464350881936,6.65672652417839,7.34407285057307,8.26333266743997,4.90769230769231,354.220105044583,29,8187,1,1,1,0,9 +"15733",2015,27131,"MN","27","131",65336,0.914671850128566,6604,0.125505081425248,8.79543080504002,8.93471861401677,9.80576446400751,3.61538461538462,208.850019579689,80,38305,1,1,1,0,9 +"15734",2015,27135,"MN","27","135",15619,0.941545553492541,882,0.145207759779755,6.78219205600679,7.48436864328613,8.34640487043596,4.04615384615385,233.592880978865,21,8990,1,1,1,0,9 +"15735",2015,27137,"MN","27","137",200383,0.939485884531123,18571,0.153366303528742,9.82935650319305,9.97683094676034,10.9691116653773,5.1,389.004149377593,465,119536,1,1,1,0,9 +"15736",2015,27139,"MN","27","139",141372,0.878398834281187,7381,0.110396683926096,8.90666440977005,9.97464474685246,10.6481355059585,3.18461538461538,169.190724088973,143,84520,1,1,1,0,9 +"15737",2015,27141,"MN","27","141",91441,0.952483021839219,5418,0.113537690970134,8.59748202264504,9.47155012409685,10.1805509458398,4.07692307692308,228.828796106278,126,55063,1,1,1,0,9 +"15738",2015,27143,"MN","27","143",14893,0.978043376082723,774,0.139931511448331,6.65157187358973,7.46851327149634,8.30127348519135,4.23076923076923,264.13735142274,22,8329,1,1,1,0,9 +"15739",2015,27145,"MN","27","145",156068,0.912999461773073,17530,0.118224107440347,9.77166897791528,9.74237939214137,10.7094498937147,3.7,233.925799610852,214,91482,1,1,1,0,9 +"15740",2015,27147,"MN","27","147",36628,0.94960139783772,2076,0.132958392486622,7.63819824428578,8.34711636103872,9.21652123105126,3.40769230769231,276.457464351537,57,20618,1,1,1,0,9 +"15741",2015,27153,"MN","27","153",24318,0.97528579652932,1318,0.154371247635496,7.18387071506245,7.80994708647679,8.74941540666365,4.46923076923077,358.040679515502,47,13127,1,1,1,0,9 +"15742",2015,27157,"MN","27","157",21392,0.979478309648467,1121,0.151271503365744,7.02197642307216,7.77106708606541,8.68828526625864,3.86923076923077,266.112266112266,32,12025,1,1,1,0,9 +"15743",2015,27159,"MN","27","159",13664,0.97240925058548,761,0.13788056206089,6.63463335786169,7.2848209125686,8.150467911624,6.02307692307692,585.284280936455,42,7176,1,1,1,0,9 +"15744",2015,27161,"MN","27","161",18932,0.952514261567716,1019,0.137175153179801,6.92657703322272,7.80302664363222,8.69550672681265,4.23076923076923,199.691386039757,22,11017,1,1,1,0,9 +"15745",2015,27163,"MN","27","163",250482,0.883939764134748,14302,0.136401018835685,9.56815466660834,10.3798459474199,11.2218509781154,3.22307692307692,207.820764646336,310,149167,1,1,1,0,9 +"15746",2015,27165,"MN","27","165",11013,0.958866793789158,730,0.14246799237265,6.59304453414244,7.07157336421153,7.97246601597457,4.76923076923077,356.657608695652,21,5888,1,1,1,0,9 +"15747",2015,27169,"MN","27","169",50859,0.948229418588647,7603,0.13014412395053,8.93629818522844,8.50045386741194,9.61607211120178,3.38461538461538,291.478352001048,89,30534,1,1,1,0,9 +"15748",2015,27171,"MN","27","171",131029,0.964351403124499,6717,0.113700020606125,8.81239690526686,9.83857562835898,10.5259976534966,3.75384615384615,174.663243972795,132,75574,1,1,1,0,9 +"15749",2015,29001,"MO","29","001",25396,0.941762482280674,5188,0.104229012442904,8.55410354543633,7.67600993202889,8.95079213876817,5.73076923076923,331.411148671041,50,15087,0,1,0,0,9 +"15750",2015,29003,"MO","29","003",17316,0.979036729036729,947,0.147840147840148,6.85329909318608,7.68248244653451,8.50653661122771,4.24615384615385,382.717292778729,38,9929,0,1,0,0,9 +"15751",2015,29007,"MO","29","007",25976,0.910109331690791,1639,0.131159531875577,7.40184157874383,8.09285102753838,9.0641578617981,4.71538461538462,396.641766378,60,15127,0,1,0,0,9 +"15752",2015,29009,"MO","29","009",35300,0.958895184135977,1989,0.145552407932011,7.59538727885397,8.25166392360559,9.18317470390341,5.1,581.543641279396,114,19603,0,1,0,0,9 +"15753",2015,29011,"MO","29","011",11834,0.964002028054757,682,0.143822883217847,6.52502965784346,7.18690102041163,8.07837810362652,5.52307692307692,603.434937335603,39,6463,0,1,0,0,9 +"15754",2015,29013,"MO","29","013",16361,0.97371798789805,859,0.141922865350529,6.75576892198425,7.50823877467866,8.41072094690572,6.19230769230769,542.755870624723,49,9028,0,1,0,0,9 +"15755",2015,29015,"MO","29","015",18815,0.980600584639915,690,0.177943130480999,6.5366915975913,7.41276401742656,8.48797033273933,6.64615384615385,675.044137501298,65,9629,0,1,0,0,9 +"15756",2015,29017,"MO","29","017",12320,0.983522727272727,677,0.146996753246753,6.51767127291227,7.26332961747684,8.15994665557855,5.7,512.236767216847,36,7028,0,1,0,0,9 +"15757",2015,29019,"MO","29","019",174563,0.836947119378104,26661,0.106786661549126,10.1909571024066,9.90553545415343,10.9536096320438,3.6,255.603088761536,285,111501,0,1,0,0,9 +"15758",2015,29021,"MO","29","021",89137,0.904854325364327,6468,0.127747175695839,8.774622220697,9.28163725385822,10.1443138387026,4.66923076923077,469.386605583823,250,53261,0,1,0,0,9 +"15759",2015,29023,"MO","29","023",42857,0.918309727699092,2526,0.134260447534825,7.83439230291044,8.53227882883428,9.42690231192484,6.32307692307692,672.747533946923,163,24229,0,1,0,0,9 +"15760",2015,29025,"MO","29","025",8996,0.977656736327257,477,0.139951089373055,6.16751649088834,6.9177056098353,7.78821155784708,4.63076923076923,345.458240195082,17,4921,0,1,0,0,9 +"15761",2015,29027,"MO","29","027",44722,0.932449353785609,3615,0.134475202361254,8.19284713459287,8.59062950948942,9.45821555950958,4.8,384.22131147541,105,27328,0,1,0,0,9 +"15762",2015,29029,"MO","29","029",44793,0.97736253432456,2028,0.176411492867189,7.61480536471107,8.32312288758773,9.41841089379287,6.71538461538461,549.564067600512,133,24201,0,1,0,0,9 +"15763",2015,29031,"MO","29","031",78297,0.892614020971429,8419,0.125777488281799,9.03824633533766,9.07703752466176,10.0653937943791,4.4,396.490087747806,183,46155,0,1,0,0,9 +"15764",2015,29033,"MO","29","033",8882,0.969826615627111,501,0.138482323800946,6.21660610108486,6.93244789157251,7.79110951061003,6.15384615384615,308.959835221421,15,4855,0,1,0,0,9 +"15765",2015,29035,"MO","29","035",6280,0.976433121019108,334,0.145222929936306,5.8111409929767,6.5792512120101,7.47363710849621,7.55384615384615,691.244239631336,24,3472,0,1,0,0,9 +"15766",2015,29037,"MO","29","037",101389,0.936176508299717,5700,0.132844785923522,8.64822145382264,9.46405192485681,10.2910262721108,4.89230769230769,354.89094855804,206,58046,0,1,0,0,9 +"15767",2015,29039,"MO","29","039",13790,0.980493110949964,674,0.137200870195794,6.51323011091231,7.24279792279376,8.16650031915505,5.37692307692308,568.181818181818,40,7040,0,1,0,0,9 +"15768",2015,29041,"MO","29","041",7582,0.966235821682933,384,0.154576628857821,5.95064255258773,6.62804137617953,7.5847730776122,4.79230769230769,626.5664160401,25,3990,0,1,0,0,9 +"15769",2015,29043,"MO","29","043",83154,0.972701253096664,4464,0.121701902494167,8.40380050406115,9.33255800470043,10.1046717524959,4.3,291.441271438755,139,47694,0,1,0,0,9 +"15770",2015,29045,"MO","29","045",6811,0.98678608133901,350,0.146527675818529,5.85793315448346,6.65929391968364,7.50218648660292,7.26923076923077,612.190577588501,23,3757,0,1,0,0,9 +"15771",2015,29047,"MO","29","047",235344,0.894303657624584,13840,0.121188558025699,9.53531822917166,10.3956806641541,11.1792273768384,4.62307692307692,318.2726795866,449,141074,0,1,0,0,9 +"15772",2015,29049,"MO","29","049",20592,0.968628593628594,1135,0.140831390831391,7.0343879299155,7.81197342962202,8.67008593751938,4.93846153846154,497.341793860401,58,11662,0,1,0,0,9 +"15773",2015,29051,"MO","29","051",76838,0.851661938103543,4866,0.13221322782998,8.49002752334347,9.19715381017201,9.99747868095637,4.07692307692308,376.283278232121,173,45976,0,1,0,0,9 +"15774",2015,29053,"MO","29","053",17615,0.907919386886177,1328,0.134601192165768,7.19142933003638,7.61579107203583,8.45083969086622,5.89230769230769,423.810441148141,44,10382,0,1,0,0,9 +"15775",2015,29055,"MO","29","055",24510,0.981640146878825,1333,0.142880456956344,7.19518732017871,7.92624152317096,8.83389994290864,6.13846153846154,515.65110029777,71,13769,0,1,0,0,9 +"15776",2015,29057,"MO","29","057",7576,0.97624076029567,371,0.164466737064414,5.91620206260743,6.68835471394676,7.62119516280984,5.21538461538462,699.975862901279,29,4143,0,1,0,0,9 +"15777",2015,29059,"MO","29","059",16362,0.977447744774477,819,0.15340422931182,6.70808408385307,7.48211892355212,8.40357646462927,6.33076923076923,514.253773057574,46,8945,0,1,0,0,9 +"15778",2015,29061,"MO","29","061",8281,0.982973070885159,473,0.132713440405748,6.15909538849193,6.81014245011514,7.67136092319064,4.66923076923077,438.799076212471,19,4330,0,1,0,0,9 +"15779",2015,29063,"MO","29","063",12559,0.867983119675133,810,0.123895214587149,6.69703424766648,7.56992765524265,7.83478810738819,4.74615384615385,336.619379658572,28,8318,0,1,0,0,9 +"15780",2015,29065,"MO","29","065",15662,0.974396628783042,782,0.145511428936279,6.66185474054531,7.42117752859539,8.352318548226,5.93076923076923,566.639121709361,48,8471,0,1,0,0,9 +"15781",2015,29067,"MO","29","067",13374,0.979662030806042,616,0.167040526394497,6.42324696353352,7.16626597413364,8.18952211074809,6.93846153846154,500.277932184547,36,7196,0,1,0,0,9 +"15782",2015,29069,"MO","29","069",30868,0.878385382920824,1776,0.131851755863678,7.48211892355212,8.18562889114761,9.07474971766984,8.17692307692308,856.276386989356,144,16817,0,1,0,0,9 +"15783",2015,29071,"MO","29","071",102265,0.976150198014961,6097,0.142111181733731,8.71555212590782,9.3637479186055,10.3032028286637,5.16923076923077,460.127831877656,275,59766,0,1,0,0,9 +"15784",2015,29073,"MO","29","073",14753,0.984613298990036,776,0.15718836846743,6.65415252018322,7.32778053842163,8.29654652030061,4.31538461538462,524.390243902439,43,8200,0,1,0,0,9 +"15785",2015,29075,"MO","29","075",6650,0.98406015037594,374,0.13593984962406,5.92425579741453,6.47850964220857,7.49886973397693,4.28461538461538,445.062586926287,16,3595,0,1,0,0,9 +"15786",2015,29077,"MO","29","077",287543,0.927106554497936,31271,0.119036109381901,10.3504464294737,10.4146631150664,11.3792454898793,4.23076923076923,421.308650371455,731,173507,0,1,0,0,9 +"15787",2015,29079,"MO","29","079",10033,0.97558058407256,615,0.129871424299811,6.42162226780652,6.86797440897029,7.88758403166028,4.21538461538462,698.376745941865,37,5298,0,1,0,0,9 +"15788",2015,29081,"MO","29","081",8631,0.982157339821573,436,0.141235082840922,6.07764224334903,6.81454289725996,7.71289096149013,5.16923076923077,424.296560964716,19,4478,0,1,0,0,9 +"15789",2015,29083,"MO","29","083",21728,0.970360824742268,1103,0.144882179675994,7.0057890192535,7.80057265467065,8.6978466911095,5.54615384615385,779.351378530127,93,11933,0,1,0,0,9 +"15790",2015,29085,"MO","29","085",9269,0.980580429388283,331,0.166792534253965,5.80211837537706,6.63331843328038,7.74413662762799,6.76923076923077,707.80800707808,32,4521,0,1,0,0,9 +"15791",2015,29089,"MO","29","089",10136,0.92827545382794,825,0.141969218626677,6.71538338633468,6.93731408122368,7.9585769038139,4.98461538461538,402.872657207917,23,5709,0,1,0,0,9 +"15792",2015,29091,"MO","29","091",40071,0.974744827930423,2286,0.132290184921764,7.73455884435476,8.43119947824926,9.33184978937338,6.56153846153846,548.404641044235,121,22064,0,1,0,0,9 +"15793",2015,29093,"MO","29","093",10200,0.972745098039216,511,0.153627450980392,6.2363695902037,7.06561336359772,7.944846711002,8.03846153846154,954.861111111111,55,5760,0,1,0,0,9 +"15794",2015,29095,"MO","29","095",687182,0.7158176436519,44352,0.128040315374966,10.6999130825496,11.3521227090626,12.2602766995437,6.02307692307692,454.100473970399,1874,412684,0,1,0,0,9 +"15795",2015,29097,"MO","29","097",118623,0.930510946443776,8252,0.120566837797055,9.01821087419114,9.6022473154855,10.4550135634285,4.36923076923077,466.793665566333,321,68767,0,1,0,0,9 +"15796",2015,29099,"MO","29","099",223185,0.973080628178417,12748,0.138965432264713,9.45312967553723,10.2825060106293,11.1206973598941,4.93846153846154,455.198140719139,615,135106,0,1,0,0,9 +"15797",2015,29101,"MO","29","101",53717,0.912150715788298,8686,0.103803265260532,9.06946781309477,8.60593640125063,9.66624507684242,5.48461538461538,328.164985699232,109,33215,0,1,0,0,9 +"15798",2015,29105,"MO","29","105",35506,0.97200473159466,2020,0.130766630991945,7.61085279039525,8.34972083747249,9.20763672040187,6.47692307692308,477.698999346307,95,19887,0,1,0,0,9 +"15799",2015,29107,"MO","29","107",32633,0.957497012226887,1922,0.137835932951307,7.56112158953024,8.2190566610606,9.12565356380899,4.94615384615385,479.041916167665,88,18370,0,1,0,0,9 +"15800",2015,29109,"MO","29","109",37999,0.972709808152846,2075,0.129450775020395,7.6377164326648,8.41715183723601,9.24570751581347,4.99230769230769,540.175557056043,112,20734,0,1,0,0,9 +"15801",2015,29111,"MO","29","111",10141,0.951385464944286,859,0.127107780297801,6.75576892198425,6.94697599213542,7.92948652331429,5.02307692307692,389.587391535328,22,5647,0,1,0,0,9 +"15802",2015,29113,"MO","29","113",54569,0.963385805127453,3319,0.13075189209991,8.10741881171997,8.8373908555447,9.68383789047617,5.26923076923077,515.223936186722,166,32219,0,1,0,0,9 +"15803",2015,29115,"MO","29","115",12290,0.978030919446705,677,0.147355573637103,6.51767127291227,7.17548971362422,8.10892415597534,7.16153846153846,592.165198906772,39,6586,0,1,0,0,9 +"15804",2015,29117,"MO","29","117",14943,0.952486113899485,897,0.126547547346584,6.7990558620588,7.56008046502183,8.50309426703674,4.34615384615385,418.848167539267,36,8595,0,1,0,0,9 +"15805",2015,29119,"MO","29","119",22721,0.902821178645306,1317,0.129219664627437,7.18311170174328,7.94165125293056,8.7598255953143,4.83846153846154,648.999459167117,84,12943,0,1,0,0,9 +"15806",2015,29121,"MO","29","121",15271,0.961430161744483,788,0.139872961823063,6.66949808985788,7.40731771046942,8.30251371851416,5.43076923076923,382.668806320207,31,8101,0,1,0,0,9 +"15807",2015,29123,"MO","29","123",12182,0.974552618617633,671,0.138236742735183,6.50876913697168,7.26892012819372,8.15075647027555,5.98461538461538,734.552786979692,51,6943,0,1,0,0,9 +"15808",2015,29125,"MO","29","125",8934,0.979068726214462,475,0.148197895679427,6.16331480403464,6.90775527898214,7.81278281857758,5.4,454.545454545455,23,5060,0,1,0,0,9 +"15809",2015,29127,"MO","29","127",28719,0.927713360493053,1921,0.134788815766566,7.56060116276856,8.10228362448007,9.02280524812934,4.54615384615385,530.22915650902,87,16408,0,1,0,0,9 +"15810",2015,29131,"MO","29","131",24865,0.978363161069777,1346,0.141282927810175,7.20489251020467,7.92948652331429,8.84606519069288,6.13846153846154,629.155644527061,88,13987,0,1,0,0,9 +"15811",2015,29133,"MO","29","133",13984,0.74091819221968,878,0.120923913043478,6.77764659363512,7.50218648660292,8.17272910486547,5.92307692307692,492.610837438424,41,8323,0,1,0,0,9 +"15812",2015,29135,"MO","29","135",15878,0.946403829197632,923,0.117898979720368,6.82762923450285,7.6657534318617,8.29978317194979,4.99230769230769,346.658000216661,32,9231,0,1,0,0,9 +"15813",2015,29137,"MO","29","137",8635,0.956803705848292,460,0.152866242038217,6.13122648948314,6.78897174299217,7.73455884435476,5.30769230769231,363.40316374519,17,4678,0,1,0,0,9 +"15814",2015,29139,"MO","29","139",11579,0.967700146817514,594,0.152085672337853,6.38687931936265,7.13886699994552,8.06369263426952,5.07692307692308,542.131350681537,35,6456,0,1,0,0,9 +"15815",2015,29141,"MO","29","141",20072,0.972997210043842,994,0.15265045834994,6.90173720665657,7.55381085200823,8.56235774337061,6.87692307692308,608.422853883449,64,10519,0,1,0,0,9 +"15816",2015,29143,"MO","29","143",18070,0.822689540675152,1048,0.139900387382402,6.95463886488099,7.69575799055476,8.56712556016445,6.33076923076923,721.739978542866,74,10253,0,1,0,0,9 +"15817",2015,29145,"MO","29","145",58165,0.928599673343076,3595,0.131505200722084,8.18729927015515,8.80327398250104,9.70381635740706,4.66923076923077,490.902954622158,160,32593,0,1,0,0,9 +"15818",2015,29147,"MO","29","147",22649,0.94851869839728,4662,0.104684533533489,8.4471998195957,7.61134771740362,8.786456678344,5.01538461538462,297.295337538975,41,13791,0,1,0,0,9 +"15819",2015,29149,"MO","29","149",10864,0.971189248895434,567,0.150957290132548,6.34035930372775,6.99025650049388,7.97143099776935,6.44615384615385,415.656390717007,24,5774,0,1,0,0,9 +"15820",2015,29151,"MO","29","151",13540,0.98877400295421,851,0.135450516986706,6.74641212857337,7.38709023565676,8.20467182895081,3.83076923076923,295.896050430979,23,7773,0,1,0,0,9 +"15821",2015,29153,"MO","29","153",9373,0.981969486823856,408,0.171343219886909,6.01126717440416,6.80572255341699,7.793999089504,8.12307692307692,573.300573300573,28,4884,0,1,0,0,9 +"15822",2015,29155,"MO","29","155",17427,0.715097262867963,1107,0.130142881735238,7.00940893270864,7.59387784460512,8.54208090692402,9.21538461538461,774.313442081355,75,9686,0,1,0,0,9 +"15823",2015,29157,"MO","29","157",19066,0.980803524598762,1110,0.138990873806776,7.01211529430638,7.75362354655975,8.58895555764313,4.3,338.703771512267,37,10924,0,1,0,0,9 +"15824",2015,29159,"MO","29","159",42303,0.940004255017375,2713,0.128997943408269,7.90581031265893,8.48280876455441,9.40112600718227,5.37692307692308,531.340805313408,128,24090,0,1,0,0,9 +"15825",2015,29161,"MO","29","161",44801,0.923595455458583,5402,0.122966005223098,8.59452453435256,8.44182288439146,9.42399908407918,5.43076923076923,434.766171411289,115,26451,0,1,0,0,9 +"15826",2015,29163,"MO","29","163",18404,0.912356009563138,1233,0.131438817648337,7.11720550316434,7.72444664563354,8.40737832540903,4.66923076923077,468.706920319824,51,10881,0,1,0,0,9 +"15827",2015,29165,"MO","29","165",96552,0.883254619272516,5813,0.131286767752092,8.66785206770135,9.48417703760591,10.2878992514465,4.27692307692308,273.055126223596,159,58230,0,1,0,0,9 +"15828",2015,29167,"MO","29","167",31272,0.969621386543873,2803,0.121162701458173,7.93844555116479,8.13944052187461,9.07153796909572,5.39230769230769,494.818954476656,85,17178,0,1,0,0,9 +"15829",2015,29169,"MO","29","169",53324,0.799677443552622,8016,0.0752756732428175,8.98919482332465,8.73423818426858,9.53892443574839,5.96923076923077,288.867941739897,95,32887,0,1,0,0,9 +"15830",2015,29171,"MO","29","171",4864,0.987870065789474,253,0.146381578947368,5.53338948872752,6.18620862390049,7.11882624906208,4.05384615384615,587.544065804935,15,2553,0,1,0,0,9 +"15831",2015,29173,"MO","29","173",10171,0.975813587651165,502,0.153770524038934,6.21860011969173,7.08673793451058,7.95787735848981,4.32307692307692,296.270477518299,17,5738,0,1,0,0,9 +"15832",2015,29175,"MO","29","175",25063,0.918285919482903,1720,0.12392770219048,7.4500795698075,8.06400734709666,8.8146275553107,6.1,578.342086020076,87,15043,0,1,0,0,9 +"15833",2015,29177,"MO","29","177",22799,0.969954822579938,1273,0.144611605772183,7.14913159855741,7.9124231214737,8.77493138749495,5.56153846153846,421.455938697318,55,13050,0,1,0,0,9 +"15834",2015,29179,"MO","29","179",6294,0.971877979027645,298,0.155862726406101,5.6970934865054,6.58617165485467,7.46164039220858,7.12307692307692,766.392279307408,27,3523,0,1,0,0,9 +"15835",2015,29181,"MO","29","181",13797,0.976299195477278,755,0.139233166630427,6.62671774924902,7.39878627541995,8.26565016558033,8.08461538461538,653.167864141084,50,7655,0,1,0,0,9 +"15836",2015,29183,"MO","29","183",385108,0.916654548853828,24179,0.129470174600372,10.0932397668206,10.8378146468964,11.6629906677325,3.93076923076923,253.043685843877,583,230395,0,1,0,0,9 +"15837",2015,29185,"MO","29","185",9427,0.978253951416145,425,0.159859976662777,6.05208916892442,6.81014245011514,7.78862606562503,7.09230769230769,808.080808080808,40,4950,0,1,0,0,9 +"15838",2015,29186,"MO","29","186",17805,0.974782364504353,1020,0.160292052794159,6.92755790627832,7.59186171488993,8.51939077495972,5.45384615384615,327.1117952665,34,10394,0,1,0,0,9 +"15839",2015,29187,"MO","29","187",66253,0.940787586977193,4474,0.125035847433324,8.40603814205008,9.09481728072064,9.77263827411114,6.19230769230769,581.309424109562,236,40598,0,1,0,0,9 +"15840",2015,29189,"MO","29","189",1001585,0.70413794136294,64881,0.14108438125571,11.0803101017408,11.6686976865306,12.6343195987853,4.73846153846154,359.118140834988,2107,586715,0,1,0,0,9 +"15841",2015,29195,"MO","29","195",23241,0.905382728798244,1837,0.130588184673637,7.51588908521513,7.87054784450771,8.76997321185875,4.91538461538462,313.192269498128,41,13091,0,1,0,0,9 +"15842",2015,29201,"MO","29","201",39040,0.867981557377049,2433,0.132274590163934,7.79688034278352,8.439663988907,9.3425083355536,5.32307692307692,512.982045628403,114,22223,0,1,0,0,9 +"15843",2015,29203,"MO","29","203",8275,0.974259818731118,439,0.152990936555891,6.08449941307517,6.70563909486,7.71601526664259,8.33076923076923,391.134289439374,18,4602,0,1,0,0,9 +"15844",2015,29205,"MO","29","205",6099,0.980980488604689,301,0.14756517461879,5.70711026474888,6.5366915975913,7.39264752072162,4.81538461538462,513.905683192261,17,3308,0,1,0,0,9 +"15845",2015,29207,"MO","29","207",29751,0.977782259419851,1703,0.132970320325367,7.44014668066269,8.1763915966338,9.04546572878595,6.76153846153846,660.67495982382,111,16801,0,1,0,0,9 +"15846",2015,29209,"MO","29","209",31334,0.978808961511457,1370,0.178272802706325,7.22256601882217,7.96519829061218,9.0455836463617,8.13076923076923,408.188132082369,67,16414,0,1,0,0,9 +"15847",2015,29213,"MO","29","213",54282,0.956339117939649,3851,0.132788032865407,8.25608813381491,8.7106195279423,9.65585917954152,8.28461538461538,499.359374486678,152,30439,0,1,0,0,9 +"15848",2015,29215,"MO","29","215",25692,0.94340650786237,1488,0.141289117234937,7.30518821539304,7.9592759601164,8.79694389354174,6.77692307692308,564.07787026209,82,14537,0,1,0,0,9 +"15849",2015,29217,"MO","29","217",20775,0.970637785800241,1214,0.136269554753309,7.10167597161944,7.76046702921342,8.66888370465667,5.18461538461538,554.235946159937,63,11367,0,1,0,0,9 +"15850",2015,29219,"MO","29","219",33539,0.957899758490116,1831,0.141655982587436,7.51261754467451,8.25790419346567,9.16094002168106,4.86923076923077,387.942332896461,74,19075,0,1,0,0,9 +"15851",2015,29221,"MO","29","221",24795,0.962411776567856,1380,0.140592861464005,7.22983877815125,8.05006542291597,8.84592123330402,6.82307692307692,796.405962834388,117,14691,0,1,0,0,9 +"15852",2015,29223,"MO","29","223",13435,0.980275400074432,644,0.152586527726089,6.46769872610435,7.21303165983487,8.22228507387272,6,756.041582287026,56,7407,0,1,0,0,9 +"15853",2015,29225,"MO","29","225",37611,0.973332269814682,2070,0.123740395097179,7.63530388625941,8.42332197580617,9.22916212621677,5.19230769230769,498.227459998084,104,20874,0,1,0,0,9 +"15854",2015,29229,"MO","29","229",18147,0.979776271560037,914,0.142062048823497,6.81783057145415,7.5595594960077,8.50086053679534,6.38461538461539,522.433927473878,51,9762,0,1,0,0,9 +"15855",2015,29510,"MO","29","510",316268,0.470920232208127,24181,0.129911973389657,10.0933224798066,10.6157017958133,11.5706470535309,6.2,557.41252855597,1159,207925,0,1,0,0,9 +"15856",2015,28001,"MS","28","001",31574,0.448248558940901,1961,0.15465256223475,7.58120982619635,8.27231514795602,9.07852179735533,8.06153846153846,621.384186843797,116,18668,0,1,0,0,9 +"15857",2015,28003,"MS","28","003",37302,0.86309045091416,2257,0.126856468822047,7.72179177681754,8.47407690034261,9.28284706276293,5.70769230769231,624.442462087422,133,21299,0,1,0,0,9 +"15858",2015,28005,"MS","28","005",12553,0.586075041822672,711,0.1684856209671,6.56667242980324,7.12608727329912,8.1870210673435,7.66923076923077,568.990042674253,40,7030,0,1,0,0,9 +"15859",2015,28007,"MS","28","007",18674,0.5593873835279,1101,0.130609403448645,7.00397413672268,7.6275443904885,8.57565076098781,7.71538461538462,723.416906153999,73,10091,0,1,0,0,9 +"15860",2015,28009,"MS","28","009",8164,0.626653601175894,476,0.131675649191573,6.16541785423142,6.89365635460264,7.743269700829,8.08461538461538,710.900473933649,33,4642,0,1,0,0,9 +"15861",2015,28011,"MS","28","011",33233,0.339933198928776,2637,0.124093521499714,7.87739718635329,8.22737550683403,9.22562299550734,7.96923076923077,755.271163327389,144,19066,0,1,0,0,9 +"15862",2015,28013,"MS","28","013",14636,0.704632413227658,852,0.136239409674775,6.74758652682932,7.44541755670169,8.36030543587909,6.26923076923077,683.093437423762,56,8198,0,1,0,0,9 +"15863",2015,28015,"MS","28","015",10209,0.656969340777745,585,0.155157214222745,6.37161184723186,7.08170858610557,7.944846711002,8.30769230769231,548.60277730156,32,5833,0,1,0,0,9 +"15864",2015,28017,"MS","28","017",17389,0.541721778135603,1226,0.128817068261545,7.11151211649616,7.59287028784482,8.51418868239594,7.78461538461538,519.40116101436,51,9819,0,1,0,0,9 +"15865",2015,28019,"MS","28","019",8372,0.695174390826565,459,0.141662685140946,6.12905021006055,6.85224256905188,7.76344638872736,6.36923076923077,477.016478751084,22,4612,0,1,0,0,9 +"15866",2015,28021,"MS","28","021",9211,0.128976224079904,1273,0.129627619151015,7.14913159855741,6.82979373751242,7.91899248816525,12.7,590.47619047619,31,5250,0,1,0,0,9 +"15867",2015,28023,"MS","28","023",16021,0.649147993258848,965,0.143187066974596,6.87212810133899,7.50328963067508,8.45998771764546,7.96923076923077,654.319618498392,59,9017,0,1,0,0,9 +"15868",2015,28025,"MS","28","025",20019,0.403216943903292,1409,0.139417553324342,7.25063551189868,7.7484600238997,8.71505995954565,9.71538461538461,620.792165777739,71,11437,0,1,0,0,9 +"15869",2015,28027,"MS","28","027",24525,0.224709480122324,1916,0.125219164118247,7.55799495853081,7.89020821310996,8.92145757894788,10.1923076923077,793.067998237627,108,13618,0,1,0,0,9 +"15870",2015,28029,"MS","28","029",28868,0.471248441180546,2115,0.14095191907995,7.65681009148038,8.08271113423758,9.05333562316602,7.32307692307692,695.970695970696,114,16380,0,1,0,0,9 +"15871",2015,28031,"MS","28","031",19253,0.62868124448138,1281,0.127356775567444,7.15539630189673,7.7106533235012,8.62640627638955,5.92307692307692,568.181818181818,62,10912,0,1,0,0,9 +"15872",2015,28033,"MS","28","033",173470,0.719761342018793,10860,0.111483253588517,9.29284159348793,10.1507772256784,10.8791597809254,4.87692307692308,357.601230540125,365,102069,0,1,0,0,9 +"15873",2015,28035,"MS","28","035",75642,0.6004468417017,8837,0.106263715925015,9.086702731518,9.07715177773244,10.0744110643777,6.36923076923077,463.661614504735,212,45723,0,1,0,0,9 +"15874",2015,28037,"MS","28","037",7734,0.640548228600983,403,0.152055857253685,5.99893656194668,6.76041469108343,7.69256964806791,7.8,627.906976744186,27,4300,0,1,0,0,9 +"15875",2015,28039,"MS","28","039",23391,0.90445042965243,1638,0.117181822068317,7.40123126441302,7.97796809312855,8.76764057725779,7.59230769230769,735.294117647059,98,13328,0,1,0,0,9 +"15876",2015,28041,"MS","28","041",13545,0.742709486895533,989,0.117755629383536,6.89669433162271,7.58375630070711,8.09101504171053,7.63076923076923,350.017500875044,30,8571,0,1,0,0,9 +"15877",2015,28043,"MS","28","043",21461,0.563300871348027,1417,0.135687992171847,7.25629723969068,7.85088266480985,8.77322978603247,6.01538461538462,626.219908913468,77,12296,0,1,0,0,9 +"15878",2015,28045,"MS","28","045",46360,0.894413287316652,2567,0.150323554788611,7.85049318087114,8.60703389541603,9.53769978408073,6.56923076923077,552.811970221862,150,27134,0,1,0,0,9 +"15879",2015,28047,"MS","28","047",200880,0.705281760254879,15082,0.123178016726404,9.62125725876259,10.1192035880215,11.0137319254339,6.02307692307692,508.895221064418,609,119671,0,1,0,0,9 +"15880",2015,28049,"MS","28","049",244321,0.265777399404881,20372,0.122298124189079,9.9219166880045,10.2728072140079,11.2613695789693,6.09230769230769,512.264459133529,737,143871,0,1,0,0,9 +"15881",2015,28051,"MS","28","051",18362,0.16436118069927,1600,0.12275351268925,7.37775890822787,7.5569505720129,8.60575336839572,12.1615384615385,793.029175641277,81,10214,0,1,0,0,9 +"15882",2015,28053,"MS","28","053",8707,0.231997243597106,558,0.137131043987596,6.32435896238131,6.82979373751242,7.86249719723055,12.8,687.213660974594,33,4802,0,1,0,0,9 +"15883",2015,28057,"MS","28","057",23546,0.923596364562983,1760,0.123163169965175,7.4730690880322,7.96866570046623,8.81447900001071,5.8,492.206726825267,66,13409,0,1,0,0,9 +"15884",2015,28059,"MS","28","059",141443,0.744186704184725,8917,0.132314784047284,9.09571484613488,9.80394342219974,10.6619073597123,7.12307692307692,535.347258735242,448,83684,0,1,0,0,9 +"15885",2015,28061,"MS","28","061",16549,0.461719741374101,1065,0.143996616109735,6.97073007814353,7.50494206839617,8.46273700562018,7.90769230769231,623.722980965695,58,9299,0,1,0,0,9 +"15886",2015,28063,"MS","28","063",7507,0.13667243905688,564,0.145464233382177,6.33505425149806,6.75576892198425,7.70345904786717,15.0846153846154,799.112097669256,36,4505,0,1,0,0,9 +"15887",2015,28065,"MS","28","065",11633,0.390355024499269,784,0.146050030086822,6.66440902035041,7.20934025660291,8.1426451859428,8.83076923076923,543.396226415094,36,6625,0,1,0,0,9 +"15888",2015,28067,"MS","28","067",68664,0.688293720144472,4360,0.129281719678434,8.38022733634308,8.98406692765304,9.88573083094687,6.08461538461538,555.876029157271,212,38138,0,1,0,0,9 +"15889",2015,28069,"MS","28","069",10108,0.34804115552038,864,0.129303521962802,6.76157276880406,7.04141166379481,7.94129557090653,10.4846153846154,787.12611509533,45,5717,0,1,0,0,9 +"15890",2015,28071,"MS","28","071",52841,0.731080032550482,8604,0.102060899680173,9.05998249038762,8.68895923427068,9.72280465241068,5.55384615384615,266.158545806491,88,33063,0,1,0,0,9 +"15891",2015,28073,"MS","28","073",61034,0.775584100665203,4153,0.111413310613756,8.33158624363075,9.0617243476474,9.8607366154685,4.86923076923077,376.401276491286,138,36663,0,1,0,0,9 +"15892",2015,28075,"MS","28","075",78422,0.550840325418888,5577,0.128688378261202,8.62640627638955,9.13862952442218,10.0496636626937,6.62307692307692,630.622684776857,286,45352,0,1,0,0,9 +"15893",2015,28077,"MS","28","077",12694,0.670789349298881,738,0.144162596502285,6.60394382460047,7.28892769452126,8.20603776277881,7.31538461538462,622.406639004149,45,7230,0,1,0,0,9 +"15894",2015,28079,"MS","28","079",22774,0.503029770791253,1481,0.123254588565908,7.3004728142678,7.93164402145431,8.75131624677346,6.23846153846154,545.842892176252,69,12641,0,1,0,0,9 +"15895",2015,28081,"MS","28","081",84762,0.691913829310304,5379,0.120100988650575,8.59025776227324,9.31217467785745,10.1503085672047,5.61538461538461,458.201812442725,225,49105,0,1,0,0,9 +"15896",2015,28083,"MS","28","083",30260,0.24477858559154,2598,0.118704560475876,7.86249719723055,8.13681086367554,9.12336535796178,10.9076923076923,621.047877145438,110,17712,0,1,0,0,9 +"15897",2015,28085,"MS","28","085",34527,0.683320300055029,2164,0.133518695513656,7.67971363996637,8.3813734682737,9.23941361946189,6.13076923076923,659.65053628078,131,19859,0,1,0,0,9 +"15898",2015,28087,"MS","28","087",59725,0.543926329007953,4617,0.128572624529092,8.43750042250699,8.8373908555447,9.81841974014606,7.12307692307692,551.444326980771,193,34999,0,1,0,0,9 +"15899",2015,28089,"MS","28","089",102516,0.584386827422061,6626,0.12838971477623,8.79875658285984,9.53705083139544,10.3841219741379,4.64615384615385,396.148913025831,244,61593,0,1,0,0,9 +"15900",2015,28091,"MS","28","091",25430,0.665237907982698,1604,0.133936295713724,7.38025578842646,8.02812905943176,8.905037290767,7.40769230769231,866.396204359486,126,14543,0,1,0,0,9 +"15901",2015,28093,"MS","28","093",35918,0.507628487109527,2538,0.145609443732947,7.83913164827433,8.36287583103188,9.2605580881368,7.29230769230769,736.768477500583,158,21445,0,1,0,0,9 +"15902",2015,28095,"MS","28","095",35831,0.684128268817504,2240,0.13586000948899,7.71423114484909,8.35537989525363,9.2610334862917,7.46153846153846,573.22032237519,117,20411,0,1,0,0,9 +"15903",2015,28097,"MS","28","097",10190,0.531795878312071,646,0.143375858684985,6.4707995037826,6.96790920180188,7.9885429827377,7.84615384615385,845.964046528023,48,5674,0,1,0,0,9 +"15904",2015,28099,"MS","28","099",29491,0.608490725984199,1809,0.123054491200705,7.5005294853953,8.16536363247398,9.03610602536485,6.22307692307692,748.923422580041,120,16023,0,1,0,0,9 +"15905",2015,28101,"MS","28","101",21578,0.63031791639633,1534,0.118639354898508,7.3356339819272,7.87625888230323,8.73311069763871,6.20769230769231,639.73063973064,76,11880,0,1,0,0,9 +"15906",2015,28103,"MS","28","103",10948,0.27265253927658,823,0.135732553891122,6.71295620067707,7.10987946307227,8.0861025356691,9.90769230769231,677.528633650589,42,6199,0,1,0,0,9 +"15907",2015,28105,"MS","28","105",49589,0.584948274819012,11921,0.0895158200407348,9.386056829718,8.36100710822691,9.65444910367655,6.23076923076923,288.981027767307,92,31836,0,1,0,0,9 +"15908",2015,28107,"MS","28","107",34204,0.490381241960005,2425,0.129546251900363,7.79358680337158,8.30449489796357,9.23815007261545,8.8,736.572890025575,144,19550,0,1,0,0,9 +"15909",2015,28109,"MS","28","109",54978,0.857688529957437,3487,0.13709120011641,8.15679704667565,8.76311532961979,9.6626890659832,6.22307692307692,607.345994408561,189,31119,0,1,0,0,9 +"15910",2015,28111,"MS","28","111",12083,0.791525283456095,797,0.137548622030953,6.68085467879022,7.28961052145117,8.16961956172385,8.08461538461538,788.643533123028,55,6974,0,1,0,0,9 +"15911",2015,28113,"MS","28","113",39907,0.450898338637332,2760,0.128498759616107,7.9229859587112,8.44031214708028,9.36271805239707,7.41538461538462,753.046415042673,165,21911,0,1,0,0,9 +"15912",2015,28115,"MS","28","115",30884,0.831822302810517,1873,0.11821655226007,7.53529670244409,8.2398574110186,9.07932010953778,5.64615384615385,470.574895112825,83,17638,0,1,0,0,9 +"15913",2015,28117,"MS","28","117",25457,0.8478610991083,1968,0.123345248851004,7.5847730776122,7.9912539298402,8.88930831984285,6.13076923076923,543.515651874785,79,14535,0,1,0,0,9 +"15914",2015,28119,"MS","28","119",7513,0.284174098229735,515,0.140157061094104,6.24416690066374,6.81673588059497,7.74586822979227,10.9153846153846,673.948408087381,29,4303,0,1,0,0,9 +"15915",2015,28121,"MS","28","121",149507,0.778933427866254,8507,0.1206966897871,9.04864463297588,9.9692284754988,10.7419680828395,4.21538461538462,373.334525619243,334,89464,0,1,0,0,9 +"15916",2015,28123,"MS","28","123",28445,0.588222886271752,1905,0.124274916505537,7.5522372875608,8.16394095475501,9.01347354374019,4.87692307692308,580.354386614805,94,16197,0,1,0,0,9 +"15917",2015,28125,"MS","28","125",4568,0.279553415061296,285,0.157837127845884,5.65248918026865,6.16751649088834,7.24636808010246,9.73846153846154,663.285212641436,17,2563,0,1,0,0,9 +"15918",2015,28127,"MS","28","127",27177,0.631894616771535,1712,0.137616366780734,7.44541755670169,8.07837810362652,8.98343977178426,5.96923076923077,581.88401112045,90,15467,0,1,0,0,9 +"15919",2015,28129,"MS","28","129",16073,0.763640888446463,949,0.140048528588316,6.85540879860993,7.53476265703754,8.44762872803033,5.41538461538462,518.763796909492,47,9060,0,1,0,0,9 +"15920",2015,28131,"MS","28","131",18283,0.790953344637095,1474,0.126237488377181,7.29573507274928,7.69439280262942,8.55852705490921,7.50769230769231,552.749452015629,58,10493,0,1,0,0,9 +"15921",2015,28133,"MS","28","133",26883,0.250492876539077,2184,0.120819848975189,7.6889133368648,8.12326131912175,8.90422273736872,10.6384615384615,569.51022120976,95,16681,0,1,0,0,9 +"15922",2015,28135,"MS","28","135",14619,0.411108830973391,1336,0.116013407209795,7.19743535409659,7.61579107203583,8.21932609390609,7.63076923076923,491.452991452991,46,9360,0,1,0,0,9 +"15923",2015,28137,"MS","28","137",28465,0.671948006323555,2106,0.126400843140699,7.65254569269392,8.10137467122858,9.03312575255037,7.15384615384615,543.54617018618,87,16006,0,1,0,0,9 +"15924",2015,28139,"MS","28","139",22025,0.821702610669694,1482,0.12422247446084,7.30114780585603,7.90654723236804,8.75400293349426,6.43076923076923,548.969687325961,69,12569,0,1,0,0,9 +"15925",2015,28141,"MS","28","141",19485,0.965819861431871,1195,0.133128047215807,7.08590146436561,7.72973533138505,8.62568878756954,6.44615384615385,758.267860405628,83,10946,0,1,0,0,9 +"15926",2015,28143,"MS","28","143",10264,0.213269680436477,697,0.114964925954793,6.54678541076052,7.16626597413364,8.06085575293432,9.4,900.594732370433,53,5885,0,1,0,0,9 +"15927",2015,28145,"MS","28","145",28309,0.831890918082589,1743,0.117913031191494,7.46336304552002,8.22362717580548,8.99739464563842,5.16923076923077,485.165142750513,78,16077,0,1,0,0,9 +"15928",2015,28147,"MS","28","147",14604,0.54882224048206,925,0.138729115310874,6.82979373751242,7.45760928971561,8.32869258354557,8.18461538461538,677.173110071411,55,8122,0,1,0,0,9 +"15929",2015,28149,"MS","28","149",47496,0.495620683847061,3005,0.142054067710965,8.00803284696931,8.67658724356649,9.58307565546143,6.73076923076923,753.186558516802,208,27616,0,1,0,0,9 +"15930",2015,28151,"MS","28","151",47991,0.265799837469526,3537,0.138838532224792,8.17103418920548,8.59322787769223,9.59716617586541,10.4,616.585792987705,169,27409,0,1,0,0,9 +"15931",2015,28153,"MS","28","153",20515,0.592834511333171,1344,0.131757250792103,7.2034055210831,7.78655180642871,8.69734573092535,8.00769230769231,566.523605150215,66,11650,0,1,0,0,9 +"15932",2015,28155,"MS","28","155",9881,0.800627466855581,573,0.135208986944641,6.35088571671474,7.0184017990692,7.94732502701646,7.3,639.204545454545,36,5632,0,1,0,0,9 +"15933",2015,28157,"MS","28","157",9089,0.288700627131698,649,0.14115964352514,6.47543271670409,6.94119005506837,7.77653502818524,10.7076923076923,780.682643427741,43,5508,0,1,0,0,9 +"15934",2015,28159,"MS","28","159",18452,0.515716453500976,1089,0.139930630825927,6.99301512293296,7.67971363996637,8.5569906612903,8.36153846153846,609.579100145138,63,10335,0,1,0,0,9 +"15935",2015,28161,"MS","28","161",12457,0.594525166573011,760,0.148992534318054,6.63331843328038,7.30518821539304,8.19863945529737,7.25384615384615,715.71714858288,50,6986,0,1,0,0,9 +"15936",2015,28163,"MS","28","163",27424,0.408911901983664,1858,0.114133605600933,7.52725591937378,8.26281693767093,8.82261694534418,8.27692307692308,600.168047053175,100,16662,0,1,0,0,9 +"15937",2015,37001,"NC","37","001",157104,0.760547153477951,10064,0.127469701598941,9.21671997894022,9.8599013243732,10.7653643363706,5.28461538461538,420.574089122175,383,91066,0,1,0,0,9 +"15938",2015,37003,"NC","37","003",36960,0.920075757575758,2128,0.139258658008658,7.66293785046154,8.46589989702869,9.23542315234365,4.84615384615385,467.96089514896,101,21583,0,1,0,0,9 +"15939",2015,37005,"NC","37","005",10855,0.96333486872409,530,0.162597881160755,6.27287700654617,7.07242190053737,7.97177612288063,6.07692307692308,537.183145878798,32,5957,0,1,0,0,9 +"15940",2015,37007,"NC","37","007",25616,0.480871330418488,1814,0.136008744534666,7.50328963067508,8.10349427838097,8.83869681234353,6.44615384615385,607.133822413357,96,15812,0,1,0,0,9 +"15941",2015,37009,"NC","37","009",26625,0.978516431924883,1268,0.158197183098592,7.14519613499717,8.04398443122155,8.91018077801329,5.95384615384615,424.995019589614,64,15059,0,1,0,0,9 +"15942",2015,37011,"NC","37","011",17494,0.943294843946496,1199,0.140162341374185,7.08924315502751,7.75747876658418,8.39840965542627,5.88461538461539,391.389432485323,42,10731,0,1,0,0,9 +"15943",2015,37013,"NC","37","013",47403,0.722317152922811,2477,0.155707444676497,7.81480342948936,8.60061479955531,9.51797211973558,6.5,492.855505463437,129,26174,0,1,0,0,9 +"15944",2015,37015,"NC","37","015",20167,0.359002330539991,1341,0.158972578965637,7.20117088328168,7.71868549519847,8.6347984334905,7.13076923076923,488.815244407622,59,12070,0,1,0,0,9 +"15945",2015,37017,"NC","37","017",34090,0.609621589909064,1977,0.157230859489586,7.58933582317062,8.31115254800169,9.21920100040838,7.86153846153846,645.326504481434,126,19525,0,1,0,0,9 +"15946",2015,37019,"NC","37","019",122322,0.867047628390641,5190,0.177474207419761,8.55448897615993,9.44089638300585,10.4554743133071,7.2,470.423988588424,310,65898,0,1,0,0,9 +"15947",2015,37021,"NC","37","021",252160,0.908105964467005,14849,0.141124682741117,9.60568780189606,10.4115393327527,11.2697832671493,4.30769230769231,380.433351762631,578,151932,0,1,0,0,9 +"15948",2015,37023,"NC","37","023",89337,0.873355944345568,5759,0.145113446836137,8.65851912750667,9.25903529351494,10.1708010875948,5.56153846153846,547.887673481855,287,52383,0,1,0,0,9 +"15949",2015,37025,"NC","37","025",196483,0.777166472417461,11394,0.114651140302214,9.34084218004034,10.2721849364521,10.9932777070311,5.11538461538461,334.289268191556,387,115768,0,1,0,0,9 +"15950",2015,37027,"NC","37","027",81554,0.932645854280599,4713,0.144284768374329,8.45807992692373,9.22896583609935,10.0777769376328,6.16923076923077,516.585100598151,247,47814,0,1,0,0,9 +"15951",2015,37031,"NC","37","031",68766,0.912558531832592,3581,0.164412645784254,8.18339736999843,8.94128376364757,9.90971810228676,5.85384615384615,523.599939292761,207,39534,0,1,0,0,9 +"15952",2015,37033,"NC","37","033",22813,0.648840573357296,1285,0.160127997194582,7.15851399732932,7.89095671613892,8.76358440945014,6.23846153846154,452.086266953235,61,13493,0,1,0,0,9 +"15953",2015,37035,"NC","37","035",155607,0.855295712917799,9560,0.135096750146202,9.16534300604545,9.88282555608803,10.7341550344355,5.44615384615385,503.390974365783,455,90387,0,1,0,0,9 +"15954",2015,37037,"NC","37","037",68307,0.830149179439882,3090,0.151814601724567,8.03592636989179,9.00196227286245,9.86433083733493,4.7,320.046552225778,121,37807,0,1,0,0,9 +"15955",2015,37039,"NC","37","039",27126,0.95520902455209,1232,0.166261151662612,7.11639414409346,7.94590959861313,8.9095055129461,6.35384615384615,610.81418754772,88,14407,0,1,0,0,9 +"15956",2015,37041,"NC","37","041",14251,0.636165883095923,727,0.15669075854326,6.58892647753352,7.29233717617388,8.30251371851416,7.05384615384615,627.883136852896,49,7804,0,1,0,0,9 +"15957",2015,37043,"NC","37","043",10644,0.977264186396092,482,0.17033070274333,6.1779441140506,6.98564181763921,7.95120715647297,6.02307692307692,436.284311943283,24,5501,0,1,0,0,9 +"15958",2015,37045,"NC","37","045",96881,0.769975536998999,6624,0.137766951208183,8.7984546960651,9.33105244713845,10.269587937122,6.31538461538462,557.018250855229,311,55833,0,1,0,0,9 +"15959",2015,37047,"NC","37","047",56698,0.641204275283079,3652,0.136653850223994,8.20303024171486,8.82614739914356,9.67696329306244,7.43076923076923,610.29840218358,199,32607,0,1,0,0,9 +"15960",2015,37049,"NC","37","049",102988,0.733357284343807,10707,0.123936769332349,9.27865301215827,9.29981537840379,10.254285259302,5.98461538461538,433.959418930014,259,59683,0,1,0,0,9 +"15961",2015,37051,"NC","37","051",331598,0.544023184699546,35666,0.103390249639624,10.4819531330125,10.5630520960789,11.516548892421,7.19230769230769,391.675614869356,766,195570,0,1,0,0,9 +"15962",2015,37053,"NC","37","053",25128,0.919850366125438,1273,0.155404329831264,7.14913159855741,8.05356916913454,8.93734984826739,5.71538461538462,465.360162548339,71,15257,0,1,0,0,9 +"15963",2015,37055,"NC","37","055",35499,0.953717006112848,1623,0.17369503366292,7.39203156751459,8.35936910622267,9.27509761919146,7.61538461538461,438.286441396861,93,21219,0,1,0,0,9 +"15964",2015,37057,"NC","37","057",163548,0.877662826815369,9277,0.138295790838164,9.13529349765327,9.92954508685542,10.786138767366,5.49230769230769,523.636819716337,501,95677,0,1,0,0,9 +"15965",2015,37059,"NC","37","059",41652,0.916138480745222,2215,0.148876404494382,7.70300768247924,8.51177855871474,9.39947202069869,4.96923076923077,359.225762826473,85,23662,0,1,0,0,9 +"15966",2015,37061,"NC","37","061",58879,0.70590533127261,3442,0.134852833777748,8.14380797677148,8.88696203486613,9.73471380828744,5.66153846153846,427.095155605997,143,33482,0,1,0,0,9 +"15967",2015,37063,"NC","37","063",301014,0.536875361278877,21431,0.115210588211844,9.97259375093468,10.6843937472021,11.5104824833191,4.96153846153846,274.778274267301,527,191791,0,1,0,0,9 +"15968",2015,37065,"NC","37","065",53734,0.400379647895187,3430,0.149774816689619,8.14031554015999,8.67590488257106,9.71571114505921,9.47692307692308,626.93898655636,194,30944,0,1,0,0,9 +"15969",2015,37067,"NC","37","067",367516,0.681279182402943,24983,0.128078777522611,10.1259508725455,10.7287588860231,11.6383591595571,5.44615384615385,361.391705111772,781,216109,0,1,0,0,9 +"15970",2015,37069,"NC","37","069",63667,0.709409898377495,3781,0.140653713854901,8.23774380389093,9.01262087300213,9.83932229506034,5.84615384615385,406.990663155375,153,37593,0,1,0,0,9 +"15971",2015,37071,"NC","37","071",212998,0.808289279711547,13148,0.130987145419206,9.48402493478411,10.2443785833191,11.084432233241,5.93846153846154,513.984801185634,652,126852,0,1,0,0,9 +"15972",2015,37073,"NC","37","073",11530,0.651431049436253,671,0.155941023417173,6.50876913697168,7.11963563801764,8.14380797677148,5.42307692307692,489.541611036938,33,6741,0,1,0,0,9 +"15973",2015,37075,"NC","37","075",8587,0.907651100500757,440,0.141842319785723,6.08677472691231,6.83410873881384,7.75747876658418,11.8846153846154,494.411006018917,23,4652,0,1,0,0,9 +"15974",2015,37077,"NC","37","077",58201,0.651191560282469,3760,0.141784505420869,8.23217423638394,8.92665032079394,9.73867186987184,4.89230769230769,362.705955125682,129,35566,0,1,0,0,9 +"15975",2015,37079,"NC","37","079",20952,0.589442535318824,1318,0.14327987781596,7.18387071506245,7.96415571884094,8.59969441292798,5.45384615384615,413.286392162865,54,13066,0,1,0,0,9 +"15976",2015,37081,"NC","37","081",517281,0.586267425248559,38139,0.122826858129334,10.5489926596182,11.091940545204,11.999085375784,5.78461538461538,335.609453860154,1040,309884,0,1,0,0,9 +"15977",2015,37083,"NC","37","083",52190,0.406859551638245,3327,0.148074343744012,8.10982627601848,8.64100247714252,9.64212278840172,8.70769230769231,585.768488317913,176,30046,0,1,0,0,9 +"15978",2015,37085,"NC","37","085",128145,0.73474579577822,8432,0.105669358929338,9.03978927078114,9.76566123562873,10.5343869196165,6.62307692307692,416.263439078387,314,75433,0,1,0,0,9 +"15979",2015,37087,"NC","37","087",59724,0.973159868729489,3080,0.151245730359654,8.03268487596762,8.80836915312227,9.751617603198,5.19230769230769,454.695025277454,152,33429,0,1,0,0,9 +"15980",2015,37089,"NC","37","089",111943,0.940773429334572,5219,0.146288736231832,8.56006109164341,9.46024269259108,10.3423551989446,4.7,420.306576561727,255,60670,0,1,0,0,9 +"15981",2015,37091,"NC","37","091",24404,0.365595803966563,1753,0.152311096541551,7.46908388492123,7.90100705199242,8.84375938191798,6.99230769230769,453.868519963123,64,14101,0,1,0,0,9 +"15982",2015,37093,"NC","37","093",52805,0.517204810150554,3367,0.102111542467569,8.12177741916107,8.91072066195136,9.69276652122048,7.83076923076923,309.404006625621,99,31997,0,1,0,0,9 +"15983",2015,37097,"NC","37","097",169592,0.838942874663899,10229,0.128779659417897,9.23298210245701,10.0218926169147,10.8329116628002,5.41538461538462,362.553411886573,364,100399,0,1,0,0,9 +"15984",2015,37099,"NC","37","099",41352,0.862134842329271,4976,0.131311665699362,8.51238163441901,8.33134542484572,9.40837122247532,6.01538461538462,380.353894493137,92,24188,0,1,0,0,9 +"15985",2015,37101,"NC","37","101",185130,0.812747798844056,10407,0.118387079349646,9.25023393563786,10.21115605892,10.925344778853,5.16923076923077,380.297823596793,415,109125,0,1,0,0,9 +"15986",2015,37103,"NC","37","103",9770,0.669703172978506,579,0.168474923234391,6.361302477573,6.91373735065968,7.97212112892166,5.7,540.917815389984,31,5731,0,1,0,0,9 +"15987",2015,37105,"NC","37","105",59402,0.759907073835898,3620,0.12812699909094,8.19422930481982,8.91529794511811,9.75365254677647,7.12307692307692,485.649922471549,166,34181,0,1,0,0,9 +"15988",2015,37107,"NC","37","107",58012,0.564900365441633,3632,0.148417568778873,8.19753873972118,8.78354947715327,9.73589696034217,6.26923076923077,623.713213031367,206,33028,0,1,0,0,9 +"15989",2015,37109,"NC","37","109",80646,0.927150757632121,4473,0.141408129355455,8.40581460343285,9.28089202792713,10.0905063931317,5.35384615384615,449.892686148258,218,48456,0,1,0,0,9 +"15990",2015,37111,"NC","37","111",44982,0.93693032768663,2539,0.146836512382731,7.83952558170468,8.62819774945915,9.46660917372222,5.43076923076923,535.104364326376,141,26350,0,1,0,0,9 +"15991",2015,37113,"NC","37","113",34117,0.963361374095026,1670,0.156373655362429,7.4205789054108,8.10711747075039,9.11602969250494,6.1,458.202950379973,82,17896,0,1,0,0,9 +"15992",2015,37115,"NC","37","115",21175,0.972042502951594,1453,0.150460448642267,7.28138566357028,7.81963630236759,8.71702717329482,5.60769230769231,413.804518745345,50,12083,0,1,0,0,9 +"15993",2015,37117,"NC","37","117",23267,0.552843082477328,1326,0.16559934671423,7.18992217074581,7.79110951061003,8.84014587794994,7.58461538461538,609.338106481834,80,13129,0,1,0,0,9 +"15994",2015,37119,"NC","37","119",1034049,0.594423475096441,69224,0.106916596795703,11.1451029022866,11.9579445640218,12.7300286868243,5.27692307692308,266.318345041494,1731,649974,0,1,0,0,9 +"15995",2015,37121,"NC","37","121",15062,0.973575886336476,768,0.160669233833488,6.64378973314767,7.39572160860205,8.35396813031327,6.76153846153846,645.691476872505,55,8518,0,1,0,0,9 +"15996",2015,37123,"NC","37","123",27432,0.774825021872266,1637,0.145742198891805,7.40062057737113,8.09132127353041,8.96021095557699,5.63076923076923,468.0795735275,72,15382,0,1,0,0,9 +"15997",2015,37125,"NC","37","125",94057,0.838183229318392,4449,0.132090115568219,8.40043463080604,9.29007533999504,10.1642351262477,5.73076923076923,400.048005760691,200,49994,0,1,0,0,9 +"15998",2015,37127,"NC","37","127",93855,0.569261094241117,6027,0.14145224015769,8.70400465348304,9.33238099788521,10.2475026983281,7.19230769230769,527.040675787347,287,54455,0,1,0,0,9 +"15999",2015,37129,"NC","37","129",219619,0.825406727104668,21215,0.128244823990638,9.96246375763643,10.2350190322662,11.1536184888431,5.27692307692308,367.959450572997,498,135341,0,1,0,0,9 +"16000",2015,37131,"NC","37","131",20539,0.402307804664297,1191,0.171283898923998,7.0825485693553,7.58933582317062,8.66336930157384,7.44615384615385,637.888850052429,73,11444,0,1,0,0,9 +"16001",2015,37133,"NC","37","133",193402,0.787137671792432,36264,0.0745131901428114,10.4985807926207,9.86047566194284,10.8447830433998,5.83076923076923,314.554840266467,365,116037,0,1,0,0,9 +"16002",2015,37135,"NC","37","135",141449,0.782359719757651,17590,0.122623701828928,9.7750858377316,9.70862771904407,10.7324759560075,4.57692307692308,215.837962489634,190,88029,0,1,0,0,9 +"16003",2015,37137,"NC","37","137",12739,0.779103540309286,628,0.17497448779339,6.4425401664682,7.11232744471091,8.11072758297449,5.89230769230769,497.017892644135,35,7042,0,1,0,0,9 +"16004",2015,37139,"NC","37","139",39433,0.596835138082317,2884,0.132148200745568,7.96693349840484,8.43163530305459,9.37007543009734,7.15384615384615,425.495702493405,100,23502,0,1,0,0,9 +"16005",2015,37141,"NC","37","141",57463,0.812052973217549,3116,0.14442336808033,8.04430540699064,8.91355028049368,9.71908382953785,6.02307692307692,455.981403111403,153,33554,0,1,0,0,9 +"16006",2015,37143,"NC","37","143",13474,0.749517589431498,572,0.158675968531988,6.3491389913798,7.19743535409659,8.21121136179302,7.03846153846154,461.215932914046,33,7155,0,1,0,0,9 +"16007",2015,37145,"NC","37","145",39214,0.708445963176417,2256,0.152573060641608,7.72134861261795,8.47365918939251,9.3637479186055,6.71538461538462,511.408339889851,117,22878,0,1,0,0,9 +"16008",2015,37147,"NC","37","147",176178,0.609207733088127,24009,0.110547287402513,10.0861840390352,9.93870989824589,10.9642941264683,5.98461538461538,345.152180734233,374,108358,0,1,0,0,9 +"16009",2015,37149,"NC","37","149",20417,0.936866336876133,984,0.169368663368761,6.89162589705225,7.57507169950756,8.60886037994206,5.03846153846154,458.158017765311,49,10695,0,1,0,0,9 +"16010",2015,37151,"NC","37","151",142560,0.906179854096521,8306,0.134995791245791,9.0247334241907,9.79104647319038,10.6335450871162,5.64615384615385,499.131944444444,414,82944,0,1,0,0,9 +"16011",2015,37153,"NC","37","153",45427,0.630858300129879,3141,0.134413454553459,8.05229649953865,8.63177109612367,9.49077121771377,7.83846153846154,700.8455854346,184,26254,0,1,0,0,9 +"16012",2015,37155,"NC","37","155",134446,0.323549975454829,9821,0.124510956071583,9.19227822915777,9.72190572207717,10.5981835330859,8.36923076923077,619.869542100554,478,77113,0,1,0,0,9 +"16013",2015,37157,"NC","37","157",91697,0.789011636149492,5215,0.1535491891774,8.55929436743487,9.29090601981575,10.2195748494931,6.54615384615385,601.925413590055,322,53495,0,1,0,0,9 +"16014",2015,37159,"NC","37","159",138520,0.810937048801617,9082,0.136168062373664,9.1140497116579,9.73228396147602,10.607376829628,6.02307692307692,494.701390345304,401,81059,0,1,0,0,9 +"16015",2015,37161,"NC","37","161",66408,0.882965907721961,3744,0.147587640043368,8.22790983759748,8.96200720958831,9.86765309952691,7.67692307692308,593.031875463306,224,37772,0,1,0,0,9 +"16016",2015,37163,"NC","37","163",63562,0.675655265724804,3905,0.131698184449829,8.27001306227379,8.98594603876032,9.79606936576883,5.83076923076923,574.680732926152,207,36020,0,1,0,0,9 +"16017",2015,37165,"NC","37","165",35333,0.464013811451051,2592,0.135623920980387,7.86018505747217,8.35631996582815,9.21910187764476,10.4692307692308,552.567237163814,113,20450,0,1,0,0,9 +"16018",2015,37167,"NC","37","167",60624,0.852187252573238,3928,0.135952757983637,8.27588566947436,8.87178596915065,9.75875075606944,5.25384615384615,456.46565166851,161,35271,0,1,0,0,9 +"16019",2015,37169,"NC","37","169",46143,0.946600784517695,2602,0.153717790347398,7.86403565907245,8.60995467149755,9.51856009564551,5.36923076923077,509.319062557667,138,27095,0,1,0,0,9 +"16020",2015,37171,"NC","37","171",71990,0.942061397416308,4110,0.139255452146131,8.32117830749028,9.07337451690302,9.93294926268575,5.34615384615385,474.972597734746,195,41055,0,1,0,0,9 +"16021",2015,37173,"NC","37","173",14325,0.665479930191972,942,0.133193717277487,6.84800527457636,7.4312996751559,8.34164861890131,7.63846153846154,785.083415112856,64,8152,0,1,0,0,9 +"16022",2015,37175,"NC","37","175",33185,0.943920445984632,1910,0.153382552357993,7.55485852104068,8.07992777075827,9.09245733131947,5.37692307692308,409.269080009223,71,17348,0,1,0,0,9 +"16023",2015,37179,"NC","37","179",222051,0.839212613318562,12830,0.111573467356598,9.45954145760968,10.3758633659269,11.0779337041037,4.79230769230769,287.965694521609,368,127793,0,1,0,0,9 +"16024",2015,37181,"NC","37","181",44477,0.462980866515278,3044,0.138071362726803,8.02092771898158,8.54286093816481,9.5045759233978,8.45384615384615,682.350140833895,172,25207,0,1,0,0,9 +"16025",2015,37183,"NC","37","183",1022871,0.700013002617143,65362,0.109845718570572,11.0876963288209,11.9639437578465,12.6957839220714,4.66153846153846,199.938432156005,1273,636696,0,1,0,0,9 +"16026",2015,37185,"NC","37","185",20190,0.412233779098564,1175,0.168103021297672,7.06902342657826,7.64444076155657,8.61323037961318,8.17692307692308,646.231770151078,74,11451,0,1,0,0,9 +"16027",2015,37187,"NC","37","187",12251,0.484531874948984,751,0.164884499224553,6.62140565176413,7.08924315502751,8.17835816560584,8.58461538461538,618.647812638091,42,6789,0,1,0,0,9 +"16028",2015,37189,"NC","37","189",53129,0.962261665004047,11102,0.118993393438612,9.31488055125011,8.47532898731754,9.70953865950119,4.77692307692308,199.529467822151,67,33579,0,1,0,0,9 +"16029",2015,37191,"NC","37","191",124400,0.641487138263666,9361,0.129734726688103,9.14430740137174,9.59464993801156,10.5091687073148,5.98461538461538,473.203477495323,344,72696,0,1,0,0,9 +"16030",2015,37193,"NC","37","193",68302,0.940104242921144,3703,0.146921027202717,8.21689858091361,9.0095696715137,9.86786037489298,5.62307692307692,565.66903219171,220,38892,0,1,0,0,9 +"16031",2015,37195,"NC","37","195",81228,0.56891712217462,5111,0.139483921800364,8.53915035876828,9.17367638760459,10.1112331616702,9.39230769230769,504.618542593226,236,46768,0,1,0,0,9 +"16032",2015,37197,"NC","37","197",37630,0.951023119851183,2159,0.138772256178581,7.67740043051481,8.39638057119949,9.28340494283319,4.93076923076923,496.358491441295,107,21557,0,1,0,0,9 +"16033",2015,37199,"NC","37","199",17550,0.972877492877493,899,0.154017094017094,6.80128303447162,7.60389796852188,8.49290049884719,5.81538461538462,494.284831634229,48,9711,0,1,0,0,9 +"16034",2015,38003,"ND","38","003",11017,0.951983298538622,718,0.153671598438776,6.57646956904822,7.04141166379481,7.98139158158007,3.20769230769231,468.043899289864,29,6196,1,1,1,0,9 +"16035",2015,38005,"ND","38","005",6822,0.428320140721196,423,0.125036646144826,6.04737217904628,6.45362499889269,7.42892719480227,4.58461538461538,812.300551203945,28,3447,1,1,1,0,9 +"16036",2015,38015,"ND","38","015",93284,0.924295699155268,6438,0.130311736203422,8.76997321185875,9.34731582700326,10.2123316220399,2.37692307692308,312.831484511246,174,55621,1,1,1,0,9 +"16037",2015,38017,"ND","38","017",171028,0.90418527960334,20400,0.106953247421475,9.92329017983231,9.95915874990659,10.8689302878699,2.23846153846154,223.886785151607,243,108537,1,1,1,0,9 +"16038",2015,38035,"ND","38","035",70448,0.89778276175335,11697,0.10921530774472,9.36708767765071,8.83971137870348,9.9482218838763,2.43846153846154,250.980392156863,112,44625,1,1,1,0,9 +"16039",2015,38053,"ND","38","053",12817,0.843333073262074,949,0.11258484824842,6.85540879860993,7.36581283720947,8.12799505577195,2.5,414.346756441797,32,7723,1,1,1,0,9 +"16040",2015,38055,"ND","38","055",9664,0.918253311258278,396,0.176841887417219,5.98141421125448,6.98656645940643,7.83399634170946,3.74615384615385,414.546824948182,22,5307,1,1,1,0,9 +"16041",2015,38057,"ND","38","057",8790,0.958361774744027,460,0.173378839590444,6.13122648948314,6.84374994900622,7.77443551030296,4.22307692307692,387.822377351173,20,5157,1,1,1,0,9 +"16042",2015,38059,"ND","38","059",30273,0.940243781587553,1825,0.134608396921349,7.50933526601659,8.21581779183245,9.07050342678838,3.09230769230769,382.165605095541,69,18055,1,1,1,0,9 +"16043",2015,38061,"ND","38","061",10311,0.695470856366987,817,0.128115604694016,6.70563909486,7.11314210870709,7.91132401896335,1.96923076923077,626.959247648903,40,6380,1,1,1,0,9 +"16044",2015,38067,"ND","38","067",7033,0.962889236456704,318,0.178017915541021,5.76205138278018,6.57646956904822,7.51043055637801,5.33846153846154,281.762295081967,11,3904,1,1,1,0,9 +"16045",2015,38071,"ND","38","071",11667,0.876489243164481,752,0.146738664609583,6.62273632394984,7.07496319796604,8.06117135969092,3.41538461538462,399.508297480025,26,6508,1,1,1,0,9 +"16046",2015,38077,"ND","38","077",16306,0.947994603213541,1580,0.148534281859438,7.36518012602101,7.39203156751459,8.39908510293591,2.73076923076923,381.033022861981,36,9448,1,1,1,0,9 +"16047",2015,38079,"ND","38","079",14707,0.19915686407833,959,0.111443530291698,6.86589107488344,7.36391350140582,8.29004161870449,10.2461538461538,567.815201961543,44,7749,1,1,1,0,9 +"16048",2015,38085,"ND","38","085",4385,0.141163055872292,327,0.0900798175598632,5.78996017089725,6.16751649088834,7.04403289727469,4.4,1482.1272885789,34,2294,1,1,1,0,9 +"16049",2015,38089,"ND","38","089",31908,0.936849692866993,2542,0.113827253353391,7.8407064517494,8.19257047115217,9.0693526786752,2.71538461538462,271.54421559586,53,19518,1,1,1,0,9 +"16050",2015,38093,"ND","38","093",21090,0.95542911332385,1601,0.152062588904694,7.37838371299671,7.74500280351584,8.65591111072806,2.56923076923077,461.165048543689,57,12360,1,1,1,0,9 +"16051",2015,38099,"ND","38","099",10852,0.959915223000369,560,0.152230003685957,6.3279367837292,6.99576615630485,7.94944442025063,4.19230769230769,440.976933514247,26,5896,1,1,1,0,9 +"16052",2015,38101,"ND","38","101",71409,0.900908849024633,8478,0.101037684325505,9.04522985191258,9.00270100719794,9.8997806906048,3.2,236.811836081102,105,44339,1,1,1,0,9 +"16053",2015,38105,"ND","38","105",35379,0.895785635546511,2901,0.109895700839481,7.9728107841214,8.36147461641682,9.14952823257943,2.40769230769231,285.132382892057,63,22095,1,1,1,0,9 +"16054",2015,31001,"NE","31","001",31576,0.959399543957436,2533,0.135799341271852,7.83715965000168,8.12207437536222,9.06462071762678,3.12307692307692,349.433579439779,62,17743,0,1,0,0,9 +"16055",2015,31013,"NE","31","013",11327,0.931667696654013,612,0.163944557252582,6.41673228251233,7.16549347506085,8.04398443122155,2.97692307692308,394.695295232081,25,6334,0,1,0,0,9 +"16056",2015,31019,"NE","31","019",48605,0.961958646229812,5700,0.115769982512087,8.64822145382264,8.61359368570255,9.56521369396829,2.43076923076923,251.51598676957,73,29024,0,1,0,0,9 +"16057",2015,31023,"NE","31","023",8053,0.983111883770024,414,0.149882031541041,6.02586597382531,6.75110146893676,7.63723438878947,2.79230769230769,253.807106598985,11,4334,0,1,0,0,9 +"16058",2015,31025,"NE","31","025",25419,0.979464180337543,1290,0.151815571029545,7.16239749735572,8.04141290939305,8.87570644462861,3.31538461538462,412.967169110056,60,14529,0,1,0,0,9 +"16059",2015,31033,"NE","31","033",10150,0.968275862068966,499,0.138226600985222,6.21260609575152,7.09754885061479,7.94909149983052,2.16153846153846,307.692307692308,18,5850,0,1,0,0,9 +"16060",2015,31037,"NE","31","037",10713,0.90534864183702,673,0.115747223000093,6.51174532964473,7.16239749735572,7.88269220628903,2.60769230769231,242.718446601942,14,5768,0,1,0,0,9 +"16061",2015,31041,"NE","31","041",10831,0.98328870833718,566,0.14717015972671,6.33859407820318,7.04141166379481,7.93951526066241,2.21538461538462,311.904349332871,18,5771,0,1,0,0,9 +"16062",2015,31043,"NE","31","043",20548,0.863685030173253,1481,0.112760365972357,7.3004728142678,7.76387128782022,8.62658556818743,3.53076923076923,349.253470706365,40,11453,0,1,0,0,9 +"16063",2015,31045,"NE","31","045",8974,0.904947626476488,1478,0.120236238020949,7.29844510150815,6.67456139181443,7.83201418050547,2.6,214.885719867162,11,5119,0,1,0,0,9 +"16064",2015,31047,"NE","31","047",23870,0.909593632174277,1522,0.12258064516129,7.32778053842163,7.9483852851119,8.72631895096224,3.17692307692308,278.271624024117,36,12937,0,1,0,0,9 +"16065",2015,31053,"NE","31","053",36566,0.960400371930208,2402,0.128917573702346,7.78405700263993,8.32724260745779,9.19958271532322,3.24615384615385,443.646877025074,89,20061,0,1,0,0,9 +"16066",2015,31055,"NE","31","055",549313,0.820976383227777,36672,0.116485500980315,10.5097688000744,11.1728828621705,12.0117959095169,3.30769230769231,337.162419170787,1108,328625,0,1,0,0,9 +"16067",2015,31067,"NE","31","067",21718,0.978220830647389,1173,0.149829634404641,7.06731984865348,7.78030308790837,8.70068073485016,3.60769230769231,479.180436219432,58,12104,0,1,0,0,9 +"16068",2015,31079,"NE","31","079",61135,0.924740328780568,3847,0.119195223685287,8.2550489027523,8.92345797969497,9.73636982948445,3.90769230769231,268.096514745308,93,34689,0,1,0,0,9 +"16069",2015,31081,"NE","31","081",9138,0.987415189319326,518,0.144561173123222,6.24997524225948,6.89162589705225,7.82284529027977,2.86153846153846,356.718192627824,18,5046,0,1,0,0,9 +"16070",2015,31089,"NE","31","089",10266,0.982271576076369,493,0.16072472238457,6.20050917404269,6.88346258641309,7.87739718635329,2.38461538461538,407.331975560081,22,5401,0,1,0,0,9 +"16071",2015,31095,"NE","31","095",7224,0.979789590254707,350,0.163205980066445,5.85793315448346,6.59304453414244,7.54855597916987,2.71538461538462,594.622543950362,23,3868,0,1,0,0,9 +"16072",2015,31101,"NE","31","101",8159,0.974261551660743,379,0.160558892021081,5.93753620508243,6.68586094706836,7.65775527113487,2.66153846153846,436.480588100161,19,4353,0,1,0,0,9 +"16073",2015,31107,"NE","31","107",8472,0.885741265344665,376,0.152974504249292,5.9295891433899,6.67456139181443,7.6192334162268,3.2,449.385052034059,19,4228,0,1,0,0,9 +"16074",2015,31109,"NE","31","109",306293,0.891675617790808,35504,0.115089146666754,10.4774006451724,10.5172938624107,11.4151692961723,2.64615384615385,255.210320168063,475,186121,0,1,0,0,9 +"16075",2015,31111,"NE","31","111",35519,0.963287254708747,1886,0.142937582702216,7.5422134631934,8.36590507720246,9.19776158976932,2.9,397.24443103535,79,19887,0,1,0,0,9 +"16076",2015,31119,"NE","31","119",35001,0.941744521585098,2422,0.137938916030971,7.79234892411304,8.2451219664786,9.19156521664985,2.74615384615385,321.156162183862,64,19928,0,1,0,0,9 +"16077",2015,31121,"NE","31","121",7806,0.972328977709454,435,0.146041506533436,6.07534603108868,6.78332520060396,7.6434829070772,3.70769230769231,437.485609026019,19,4343,0,1,0,0,9 +"16078",2015,31131,"NE","31","131",15844,0.973870234789195,862,0.142640747286039,6.75925527066369,7.49886973397693,8.36427508499152,3.28461538461538,400.595169966808,35,8737,0,1,0,0,9 +"16079",2015,31137,"NE","31","137",9218,0.983835973096116,530,0.132783684096333,6.27287700654617,6.89162589705225,7.77863014732581,2.37692307692308,462.311557788945,23,4975,0,1,0,0,9 +"16080",2015,31141,"NE","31","141",32869,0.960662021965986,2051,0.1347470260732,7.62608275807238,8.23403420769204,9.07829359105585,2.97692307692308,263.692797890458,48,18203,0,1,0,0,9 +"16081",2015,31145,"NE","31","145",10895,0.973749426342359,717,0.146030289123451,6.57507584059962,7.03614849375054,7.99361999482774,2.63076923076923,315.457413249211,19,6023,0,1,0,0,9 +"16082",2015,31147,"NE","31","147",8026,0.950909543982058,386,0.157737353600797,5.95583736946483,6.65801104587075,7.65444322647011,3.19230769230769,652.224551595621,28,4293,0,1,0,0,9 +"16083",2015,31151,"NE","31","151",14193,0.932572394842528,1186,0.120763756781512,7.07834157955767,7.4205789054108,8.2398574110186,2.92307692307692,428.373440846668,34,7937,0,1,0,0,9 +"16084",2015,31153,"NE","31","153",175294,0.9104761144135,11173,0.107134300090134,9.32125543254734,10.1169847267985,10.8541797111276,2.81538461538462,202.970487513948,211,103956,0,1,0,0,9 +"16085",2015,31155,"NE","31","155",20953,0.982627785997232,1086,0.141698086192908,6.99025650049388,7.7341213033283,8.65207367361006,3.06923076923077,342.906129447064,40,11665,0,1,0,0,9 +"16086",2015,31157,"NE","31","157",36273,0.939679651531442,2155,0.139690679017451,7.67554600253785,8.3291754420774,9.21930011334766,3.36923076923077,397.064736630478,79,19896,0,1,0,0,9 +"16087",2015,31159,"NE","31","159",16998,0.979291681374279,1415,0.129132839157548,7.25488481007734,7.51316354523408,8.41648848729461,2.9,394.414241552073,37,9381,0,1,0,0,9 +"16088",2015,31173,"NE","31","173",7077,0.393810936837643,538,0.109509679242617,6.28785856016178,6.47850964220857,7.48829351515943,5.29230769230769,656.580074222095,23,3503,0,1,0,0,9 +"16089",2015,31177,"NE","31","177",19925,0.980175658720201,1023,0.148005018820577,6.93049476595163,7.75362354655975,8.62962862074603,2.98461538461538,332.487531717561,38,11429,0,1,0,0,9 +"16090",2015,31185,"NE","31","185",13804,0.965227470298464,940,0.141842944074181,6.84587987526405,7.24850407237061,8.26616443661249,2.89230769230769,444.909709500131,34,7642,0,1,0,0,9 +"16091",2015,34001,"NJ","34","001",270206,0.72431034099909,18750,0.142643020510277,9.83894903139856,10.3532565862008,11.3160708124789,9.45384615384615,412.642885297596,670,162368,1,1,1,0,9 +"16092",2015,34003,"NJ","34","003",926481,0.753489817923951,54017,0.137048682056081,10.8970540908174,11.7196387760931,12.5508672974382,4.62307692307692,218.000401532932,1227,562843,1,1,1,0,9 +"16093",2015,34005,"NJ","34","005",447906,0.753667064071479,29257,0.138886284175698,10.2838741402678,10.9227138622816,11.8111690675934,5.29230769230769,303.975946570806,827,272061,1,1,1,0,9 +"16094",2015,34007,"NJ","34","007",507760,0.710095320623917,32731,0.132050575074838,10.396077920038,11.0687766994685,11.9620182280499,6.39230769230769,393.223652060596,1207,306950,1,1,1,0,9 +"16095",2015,34009,"NJ","34","009",94330,0.927329587617937,5705,0.164868016537687,8.64909826229618,9.07153796909572,10.1783503075256,11.3769230769231,486.337143289683,257,52844,1,1,1,0,9 +"16096",2015,34011,"NJ","34","011",154580,0.729408720403674,10056,0.118695820934144,9.21592475027008,9.93716407889551,10.6704891016666,8.73076923076923,440.20074855393,414,94048,1,1,1,0,9 +"16097",2015,34013,"NJ","34","013",790546,0.500532543330812,53460,0.119617327770933,10.8866889896929,11.617195386146,12.418312972132,6.81538461538462,352.73986001602,1713,485627,1,1,1,0,9 +"16098",2015,34015,"NJ","34","015",291022,0.848994234112885,19230,0.13728515369972,9.86422683858282,10.5152890936421,11.4072426751654,5.99230769230769,342.125154155229,602,175959,1,1,1,0,9 +"16099",2015,34017,"NJ","34","017",664595,0.666472061932455,43793,0.105104612583604,10.6872292662408,11.5522038687671,12.2886521328557,5.3,228.157264593758,1030,451443,1,1,1,0,9 +"16100",2015,34019,"NJ","34","019",125569,0.925467272973425,7843,0.168489037899482,8.96737669321267,9.52186103390781,10.5487828785764,4.18461538461538,247.616037089721,188,75924,1,1,1,0,9 +"16101",2015,34021,"NJ","34","021",368266,0.658545725100878,29005,0.128494077650394,10.2752235079002,10.7783310944961,11.6281273946589,4.92307692307692,307.02842560431,693,225712,1,1,1,0,9 +"16102",2015,34023,"NJ","34","023",825471,0.62665799283076,54847,0.126833044407375,10.9123027695859,11.6477360390931,12.442298252388,5.06923076923077,218.606062597488,1131,517369,1,1,1,0,9 +"16103",2015,34025,"NJ","34","025",624180,0.857688487295331,38011,0.149344740299273,10.5456308705033,11.2012102291103,12.1470442490679,5.12307692307692,288.37082510403,1079,374171,1,1,1,0,9 +"16104",2015,34027,"NJ","34","027",494370,0.851801282440278,29268,0.14029775269535,10.2842500480039,11.0260604786491,11.9084816413683,4.30769230769231,225.122611422292,672,298504,1,1,1,0,9 +"16105",2015,34029,"NJ","34","029",587238,0.938209039605748,32550,0.130475207667079,10.3905326476367,11.0074687361931,11.9574702506456,6.1,393.639511809185,1214,308404,1,1,1,0,9 +"16106",2015,34031,"NJ","34","031",504556,0.763138283956588,36460,0.122368973909735,10.5039710482327,11.0742189320823,11.9350772396963,6.96923076923077,288.762885920592,879,304402,1,1,1,0,9 +"16107",2015,34033,"NJ","34","033",63754,0.826865765285315,4056,0.144743859208834,8.30795254527102,8.91058571829013,9.84829191706818,7.26153846153846,497.124738001827,185,37214,1,1,1,0,9 +"16108",2015,34035,"NJ","34","035",329682,0.716790725608313,18879,0.13964972306647,9.84580547219504,10.6907851497259,11.522846092412,4.50769230769231,216.225866763208,436,201641,1,1,1,0,9 +"16109",2015,34037,"NJ","34","037",143059,0.95062177143696,8978,0.162317645167378,9.10253241934188,9.70674247507645,10.6880053448006,5.36923076923077,342.438480528789,301,87899,1,1,1,0,9 +"16110",2015,34039,"NJ","34","039",549954,0.691006884212134,34720,0.125675965626216,10.4550711687743,11.2395801286185,12.0312072225555,5.97692307692308,268.892199751883,906,336938,1,1,1,0,9 +"16111",2015,34041,"NJ","34","041",106787,0.915720078286683,6758,0.149784149756056,8.81848226727424,9.42270605011851,10.3849564536411,5.29230769230769,337.806427619549,218,64534,1,1,1,0,9 +"16112",2015,35001,"NM","35","001",676440,0.859983147064041,47041,0.128376500502631,10.75877484085,11.3462331330485,12.2369897481649,5.96153846153846,398.318320678173,1622,407212,1,1,1,0,9 +"16113",2015,35005,"NM","35","005",65856,0.931486880466472,4631,0.120763483965015,8.44052810648075,8.90923527919226,9.81197515203002,6.38461538461539,478.574787684307,173,36149,1,1,1,0,9 +"16114",2015,35006,"NM","35","006",27046,0.53360940619685,1834,0.130962064630629,7.51425465281641,8.12622252945853,8.91731069319781,8.09230769230769,505.176499937633,81,16034,1,1,1,0,9 +"16115",2015,35007,"NM","35","007",12434,0.948769502975712,675,0.16913302235805,6.51471269087253,7.07242190053737,8.09559870137819,6.09230769230769,531.914893617021,36,6768,1,1,1,0,9 +"16116",2015,35009,"NM","35","009",50344,0.877482917527411,4944,0.098542030827904,8.50592999913753,8.65032450401942,9.5314088634456,4.91538461538462,454.360504543605,134,29492,1,1,1,0,9 +"16117",2015,35013,"NM","35","013",214028,0.930023174537911,23944,0.109219354476984,10.0834730495325,10.043032079974,11.0259791149942,7.39230769230769,315.870633979721,381,120619,1,1,1,0,9 +"16118",2015,35015,"NM","35","015",57756,0.939279035944317,4007,0.125510769443867,8.29579811063615,8.81135422996573,9.67978134295944,4.98461538461538,562.94312752944,185,32863,1,1,1,0,9 +"16119",2015,35017,"NM","35","017",28369,0.946385138707744,1615,0.153759385244457,7.38709023565676,7.9287663216267,8.93221251232921,6.54615384615385,481.97678365352,71,14731,1,1,1,0,9 +"16120",2015,35025,"NM","35","025",71480,0.921152770005596,5224,0.103315612758814,8.56101867095627,9.07715177773244,9.85529470993464,6.28461538461538,430.305442244553,173,40204,1,1,1,0,9 +"16121",2015,35027,"NM","35","027",19365,0.938703847146915,891,0.175006454944487,6.79234442747081,7.44949800538285,8.56598335558567,5.83076923076923,567.292644757434,58,10224,1,1,1,0,9 +"16122",2015,35028,"NM","35","028",17848,0.899372478709099,837,0.158729269385926,6.72982407048948,7.66293785046154,8.5213843960347,4.09230769230769,223.931457501704,23,10271,1,1,1,0,9 +"16123",2015,35029,"NM","35","029",24370,0.941280262617973,1729,0.115633976200246,7.45529848568329,7.78197323443438,8.71407489954152,17.5307692307692,557.66588539562,69,12373,1,1,1,0,9 +"16124",2015,35031,"NM","35","031",73485,0.179506021637069,5894,0.110784513846363,8.68169016329764,9.03527244389354,9.97142653554432,9.89230769230769,605.281607852302,259,42790,1,1,1,0,9 +"16125",2015,35035,"NM","35","035",64838,0.846694839446004,5498,0.121070976896265,8.61213966872519,8.87821865809223,9.78554825467144,6.26923076923077,442.00992488543,163,36877,1,1,1,0,9 +"16126",2015,35037,"NM","35","037",8449,0.932773109243697,431,0.156941649899396,6.06610809010375,6.72142570079064,7.74716496652033,7.2,557.786702365016,25,4482,1,1,1,0,9 +"16127",2015,35039,"NM","35","039",39358,0.782509273845216,2387,0.145739112759795,7.77779262633883,8.41049845274527,9.31587087318565,8.10769230769231,821.585705306636,183,22274,1,1,1,0,9 +"16128",2015,35041,"NM","35","041",19157,0.927285065511301,2560,0.102730072558334,7.84776253747361,7.61579107203583,8.60226936377136,5.47692307692308,436.086127010085,48,11007,1,1,1,0,9 +"16129",2015,35043,"NM","35","043",138586,0.801747651277907,7858,0.137611302728991,8.9692874001184,9.76537425040649,10.6163148038629,6.72307692307692,349.515047871079,280,80111,1,1,1,0,9 +"16130",2015,35045,"NM","35","045",128324,0.565046289080764,8547,0.124318132227798,9.05333562316602,9.64355034039291,10.5086228557729,6.96923076923077,504.805215829985,343,67947,1,1,1,0,9 +"16131",2015,35047,"NM","35","047",28223,0.924883959890869,2031,0.150232080218262,7.61628356158038,7.97693875695943,8.99081526618468,7.76153846153846,502.169869807811,81,16130,1,1,1,0,9 +"16132",2015,35049,"NM","35","049",148199,0.920431311952172,8151,0.16333443545503,9.00589589809446,9.74490205341876,10.6865896901665,5.41538461538462,368.206474393969,317,86093,1,1,1,0,9 +"16133",2015,35051,"NM","35","051",11252,0.948986846782794,459,0.170636331318877,6.12905021006055,6.71780469502369,7.91753635394363,9.21538461538461,920.810313075507,50,5430,1,1,1,0,9 +"16134",2015,35053,"NM","35","053",17148,0.816829951014696,1356,0.138441800793095,7.21229446850034,7.46508273639955,8.45489216521886,7.64615384615385,491.683230463438,47,9559,1,1,1,0,9 +"16135",2015,35055,"NM","35","055",32806,0.890385905017375,1614,0.166951167469365,7.3864708488299,8.20712916807133,9.14537509312382,9.26153846153846,463.013400152522,85,18358,1,1,1,0,9 +"16136",2015,35057,"NM","35","057",15592,0.914507439712673,877,0.15950487429451,6.77650699237218,7.46622755621548,8.32675881451173,9.15384615384615,453.41192473362,40,8822,1,1,1,0,9 +"16137",2015,35061,"NM","35","061",75665,0.904870151324919,4901,0.138042688164938,8.49719454490955,9.07303042101158,9.97137981857905,7.52307692307692,473.331794042946,205,43310,1,1,1,0,9 +"16138",2015,32001,"NV","32","001",24006,0.870490710655669,1503,0.133924852120303,7.31521838975297,7.8659554139335,8.80116840193669,7.10769230769231,506.756756756757,69,13616,1,1,1,0,9 +"16139",2015,32003,"NV","32","003",2097832,0.73628584176426,135621,0.115677995187413,11.8176195097544,12.5867907229007,13.3522139860394,6.91538461538462,358.86756997175,4591,1279302,1,1,1,0,9 +"16140",2015,32005,"NV","32","005",47422,0.938256505419426,2085,0.179663447345114,7.6425241342329,8.41980084540759,9.47998575694181,6.8,352.085725220054,92,26130,1,1,1,0,9 +"16141",2015,32007,"NV","32","007",51756,0.89920009274287,3391,0.123174124739161,8.12888014212564,8.7826296549207,9.5861020007109,5.21538461538462,341.198055814852,106,31067,1,1,1,0,9 +"16142",2015,32013,"NV","32","013",17033,0.914695003816122,1013,0.133975224564081,6.92067150424868,7.65396918047877,8.439663988907,6.08461538461538,486.738849706963,49,10067,1,1,1,0,9 +"16143",2015,32015,"NV","32","015",5885,0.913848768054376,357,0.126932880203908,5.87773578177964,6.4831073514572,7.36770857237437,6.83076923076923,500,17,3400,1,1,1,0,9 +"16144",2015,32019,"NV","32","019",51999,0.920306159733841,2528,0.150195196061463,7.83518375526675,8.65154924391532,9.56127889406298,9.54615384615385,457.988980716253,133,29040,1,1,1,0,9 +"16145",2015,32021,"NV","32","021",4423,0.721908207099254,225,0.167533348406059,5.41610040220442,5.93224518744801,7.08422642209792,10.2384615384615,749.375520399667,18,2402,1,1,1,0,9 +"16146",2015,32023,"NV","32","023",43008,0.915294828869048,2028,0.173944382440476,7.61480536471107,8.25452888193974,9.30900854377288,8.87692307692308,743.494423791822,164,22058,1,1,1,0,9 +"16147",2015,32031,"NV","32","031",442617,0.872135503155098,30130,0.132866564094917,10.3132766321243,10.892210567667,11.7920258195906,6.32307692307692,376.749192680301,1015,269410,1,1,1,0,9 +"16148",2015,32033,"NV","32","033",9875,0.876050632911392,605,0.137113924050633,6.40522845803084,7.11395610956603,7.74153358928183,5.46153846153846,497.347480106101,30,6032,1,1,1,0,9 +"16149",2015,32510,"NV","32","510",54152,0.910141823016694,3308,0.146495050967647,8.10409905614358,8.71456755083648,9.59750572291291,7.29230769230769,625.138831593311,197,31513,1,1,1,0,9 +"16150",2015,36001,"NY","36","001",307521,0.78506183317562,33168,0.131867417184517,10.4093408346756,10.4523312434896,11.470017963959,4.37692307692308,276.446737928492,525,189910,1,1,1,0,9 +"16151",2015,36003,"NY","36","003",47352,0.965513600270316,4368,0.140648758236189,8.38206051742474,8.47491179915963,9.47868670812122,6.53076923076923,341.181763647271,91,26672,1,1,1,0,9 +"16152",2015,36005,"NY","36","005",1439480,0.457116458721205,118815,0.105752771834273,11.6853229405665,12.1117289984825,13.0385577655453,7.62307692307692,336.729034838897,2963,879936,1,1,1,0,9 +"16153",2015,36007,"NY","36","007",195981,0.885279695480684,19804,0.13912573157602,9.89363921648131,9.87919485996708,10.9516833552902,6.00769230769231,406.589187868635,466,114612,1,1,1,0,9 +"16154",2015,36009,"NY","36","009",77941,0.93292362171386,4981,0.150395812216933,8.51338595307328,9.04038207416563,10.0067659019896,6.32307692307692,496.629213483146,221,44500,1,1,1,0,9 +"16155",2015,36011,"NY","36","011",78323,0.936455447314327,5065,0.150096395694751,8.53010941668278,9.09773142759353,10.0070364281647,5.39230769230769,384.256114130435,181,47104,1,1,1,0,9 +"16156",2015,36013,"NY","36","013",130582,0.950054371965508,8831,0.148848999096353,9.0860235374688,9.53640145729708,10.519699691622,6.06923076923077,453.65048957003,341,75168,1,1,1,0,9 +"16157",2015,36015,"NY","36","015",86771,0.900727201484367,5533,0.143077756393265,8.61848544289811,9.21652123105126,10.1225829210038,5.92307692307692,399.639540806332,204,51046,1,1,1,0,9 +"16158",2015,36017,"NY","36","017",48794,0.976595483051195,2901,0.155674878058778,7.9728107841214,8.57960445153763,9.53914039514886,5.50769230769231,409.909107111032,115,28055,1,1,1,0,9 +"16159",2015,36019,"NY","36","019",80759,0.932589556581929,7984,0.138287992669548,8.9851948179913,9.16293424957891,10.0706108655722,5.86923076923077,290.933560274705,147,50527,1,1,1,0,9 +"16160",2015,36021,"NY","36","021",61451,0.916909407495403,3448,0.163756488909863,8.14554963178358,8.78737298873188,9.78188473077688,4.01538461538462,359.361506532579,129,35897,1,1,1,0,9 +"16161",2015,36023,"NY","36","023",48299,0.961034389945962,5921,0.127642394252469,8.68626063253178,8.5137873982814,9.5840395773207,5.93076923076923,355.598940175708,102,28684,1,1,1,0,9 +"16162",2015,36025,"NY","36","025",45895,0.962261684279333,2930,0.163155027780804,7.98275770201111,8.3959291039232,9.44184883962202,6.04615384615385,402.108139761858,103,25615,1,1,1,0,9 +"16163",2015,36027,"NY","36","027",294105,0.832961017323745,22524,0.144094796076231,10.0223366863745,10.4327324943259,11.3829078916455,4.53076923076923,271.834492900552,488,179521,1,1,1,0,9 +"16164",2015,36029,"NY","36","029",920858,0.811154379936972,64161,0.141944794962958,11.0691508284538,11.5247552167238,12.5424734510288,5.39230769230769,384.327399921145,2125,552914,1,1,1,0,9 +"16165",2015,36031,"NY","36","031",37973,0.954151634055777,2117,0.164722302688753,7.65775527113487,8.36520683441836,9.2605580881368,6.08461538461538,322.735400584413,74,22929,1,1,1,0,9 +"16166",2015,36033,"NY","36","033",50552,0.851064250672575,3718,0.137462414939073,8.22094116828139,8.72745411689943,9.49657139216065,6.56153846153846,359.300476947536,113,31450,1,1,1,0,9 +"16167",2015,36035,"NY","36","035",53812,0.963855645580911,3185,0.146119824574444,8.06620756800626,8.76248954737158,9.65969476565407,6.47692307692308,420.128546794168,134,31895,1,1,1,0,9 +"16168",2015,36037,"NY","36","037",58488,0.943543974832444,3735,0.148851046368486,8.22550309756692,8.76467807411661,9.73979145986534,4.99230769230769,323.476369049323,113,34933,1,1,1,0,9 +"16169",2015,36039,"NY","36","039",47621,0.913567543730707,3218,0.157787530711241,8.07651532755233,8.57508466983201,9.49506808460153,5.66923076923077,450.02285272299,128,28443,1,1,1,0,9 +"16170",2015,36043,"NY","36","043",62659,0.973651031775164,3876,0.150720566877863,8.26255897301066,8.82600054548297,9.79590234185619,6.27692307692308,427.516517683638,154,36022,1,1,1,0,9 +"16171",2015,36045,"NY","36","045",116539,0.892954289980178,12428,0.103355958091283,9.42770727051294,9.49837238319225,10.3796906751496,6.63846153846154,301.04033940548,215,71419,1,1,1,0,9 +"16172",2015,36047,"NY","36","047",2608797,0.502949060429002,177973,0.110345496410798,12.0893871323756,12.7928532489666,13.6543518793762,5.80769230769231,251.007589238187,4126,1643775,1,1,1,0,9 +"16173",2015,36049,"NY","36","049",26824,0.979794214136594,1628,0.150275872353117,7.39510754656249,8.0149968943483,8.92678311410135,6.97692307692308,277.598450613299,43,15490,1,1,1,0,9 +"16174",2015,36051,"NY","36","051",64336,0.946468540164138,6643,0.143372295448893,8.80131894766524,8.81016126829726,9.83948222256022,5.3,300.215539361593,117,38972,1,1,1,0,9 +"16175",2015,36053,"NY","36","053",71779,0.959821117597069,5832,0.149040805806712,8.6711152736885,8.92837525985363,9.96368855522688,5.72307692307692,288.866789790216,122,42234,1,1,1,0,9 +"16176",2015,36055,"NY","36","055",745847,0.785780461676456,54169,0.135007581983973,10.8998640680791,11.331115777149,12.3401969873256,5.1,295.542494852598,1322,447313,1,1,1,0,9 +"16177",2015,36057,"NY","36","057",49576,0.949471518476682,2929,0.142649669194772,7.98241634682773,8.63728467167406,9.56577454647878,6.61538461538461,420.257098460234,119,28316,1,1,1,0,9 +"16178",2015,36059,"NY","36","059",1354987,0.766867874009123,86939,0.140154112179674,11.3729620022912,11.9978792811686,12.9132632539297,4.26153846153846,235.181682528434,1885,801508,1,1,1,0,9 +"16179",2015,36061,"NY","36","061",1637327,0.662126136074223,116275,0.113025070740298,11.6637133540923,12.370777434296,13.2639306457193,4.76153846153846,187.531960639558,2116,1128341,1,1,1,0,9 +"16180",2015,36063,"NY","36","063",212391,0.895334548074071,13465,0.153594078845149,9.5078490052457,10.0708646619443,11.067231936142,6.20769230769231,405.375563897915,514,126796,1,1,1,0,9 +"16181",2015,36065,"NY","36","065",231315,0.88020232150963,16163,0.137842336208201,9.69047995840981,10.150699131184,11.0920167153682,5.37692307692308,363.895085563519,491,134929,1,1,1,0,9 +"16182",2015,36067,"NY","36","067",466320,0.820406587750901,33618,0.137094698919197,10.4228169167933,10.8550488984922,11.8619542514083,4.96153846153846,333.296100255467,925,277531,1,1,1,0,9 +"16183",2015,36069,"NY","36","069",109324,0.949965240935202,7396,0.150927518202773,8.90869459250701,9.39015879855202,10.3774209501177,4.76153846153846,326.996792615192,209,63915,1,1,1,0,9 +"16184",2015,36071,"NY","36","071",375911,0.830342820508046,28858,0.124329961081213,10.2701425298572,10.7201347290817,11.5922448341745,4.69230769230769,280.064924141506,616,219949,1,1,1,0,9 +"16185",2015,36073,"NY","36","073",41482,0.913818041560195,2889,0.14830528904103,7.96866570046623,8.44955654270043,9.4343635363174,6.41538461538462,295.986424089348,75,25339,1,1,1,0,9 +"16186",2015,36075,"NY","36","075",119764,0.972345613038977,9153,0.141127550850005,9.12183697338478,9.48804786328076,10.4757092651672,7.22307692307692,365.389424546389,263,71978,1,1,1,0,9 +"16187",2015,36077,"NY","36","077",60524,0.954546956579208,6896,0.147627387482652,8.83869681234353,8.64417820317073,9.7932819852151,5.42307692307692,326.567382675037,116,35521,1,1,1,0,9 +"16188",2015,36079,"NY","36","079",99158,0.934669920732568,6162,0.152675527945299,8.72615667915661,9.37033110828512,10.3101852340468,4.29230769230769,302.546985217949,184,60817,1,1,1,0,9 +"16189",2015,36081,"NY","36","081",2305252,0.496966925958637,147561,0.125897732655692,11.901996928592,12.6864380308831,13.5180353556359,4.92307692307692,212.49075507641,3169,1491359,1,1,1,0,9 +"16190",2015,36083,"NY","36","083",159413,0.885718228751733,11254,0.142064950788204,9.32847889999322,9.83263581156418,10.7987793418142,4.69230769230769,336.493715033803,329,97773,1,1,1,0,9 +"16191",2015,36085,"NY","36","085",472301,0.781954728023019,30714,0.134725524612482,10.3324738556856,11.0099026532673,11.8945895628924,5.73076923076923,303.857319171867,874,287635,1,1,1,0,9 +"16192",2015,36087,"NY","36","087",322938,0.788860400448383,21558,0.120899367680484,9.97850225634157,10.4811397029577,11.3936688441203,4.56153846153846,215.495414392618,383,177730,1,1,1,0,9 +"16193",2015,36089,"NY","36","089",110399,0.947445176133842,9891,0.13459361044937,9.19938053173984,9.40013394360884,10.3365678276773,7.35384615384615,352.923124136873,230,65170,1,1,1,0,9 +"16194",2015,36091,"NY","36","091",226182,0.946680107170332,13637,0.141112024829562,9.52054196585783,10.2663930462255,11.128453451741,4.16153846153846,247.274855512473,338,136690,1,1,1,0,9 +"16195",2015,36093,"NY","36","093",154773,0.813585056825157,10513,0.136742196636364,9.26036786557583,9.83740116740827,10.7516921445751,4.75384615384615,368.124729320052,340,92360,1,1,1,0,9 +"16196",2015,36095,"NY","36","095",31408,0.970071319409068,2189,0.157794192562404,7.69120009752286,8.09925056179696,9.10963566785455,5.83846153846154,412.269129287599,75,18192,1,1,1,0,9 +"16197",2015,36097,"NY","36","097",18037,0.976880856018185,1011,0.165881244109331,6.91869521902047,7.60339933974067,8.57602797713713,6.67692307692308,365.990990990991,39,10656,1,1,1,0,9 +"16198",2015,36099,"NY","36","099",34814,0.92847704946286,2503,0.149279025679324,7.82524529143177,8.25088114470065,9.15894180889018,5.2,377.016321466069,79,20954,1,1,1,0,9 +"16199",2015,36101,"NY","36","101",97549,0.960563409158474,5757,0.148181939333053,8.65817178467581,9.30792070031505,10.2355213825584,6.35384615384615,363.946242476965,205,56327,1,1,1,0,9 +"16200",2015,36103,"NY","36","103",1491997,0.860356957822301,98911,0.135439950616523,11.501975734884,12.1112508464486,13.0086816697923,4.75384615384615,294.177205049523,2644,898778,1,1,1,0,9 +"16201",2015,36105,"NY","36","105",74850,0.865090180360721,4567,0.148029392117568,8.426611813185,9.05075830215172,9.95896956199513,5.46153846153846,401.978275106705,178,44281,1,1,1,0,9 +"16202",2015,36107,"NY","36","107",49390,0.976270500101235,2767,0.155456570155902,7.92551897978693,8.59840444684106,9.56134929428829,5.59230769230769,357.555999579346,102,28527,1,1,1,0,9 +"16203",2015,36109,"NY","36","109",103187,0.835667283669455,19053,0.113919389070329,9.85497984847108,9.23951074927596,10.4016229954856,4.43076923076923,221.99889000555,148,66667,1,1,1,0,9 +"16204",2015,36111,"NY","36","111",179696,0.894226916570207,12240,0.152318359896714,9.41246455606632,9.9490343674921,10.8937533905949,4.84615384615385,348.758855561019,383,109818,1,1,1,0,9 +"16205",2015,36113,"NY","36","113",64449,0.971620971620972,3733,0.1578457384909,8.22496747891458,8.84548923675327,9.86427883931085,5.59230769230769,409.922219886483,156,38056,1,1,1,0,9 +"16206",2015,36115,"NY","36","115",62277,0.95388345617162,3783,0.149461277839331,8.23827262463303,8.91851640035707,9.77837774149328,5.06923076923077,308.060018589829,116,37655,1,1,1,0,9 +"16207",2015,36117,"NY","36","117",91316,0.949439309650007,5455,0.151638267116387,8.60428789826717,9.23171039771237,10.1977603583119,5.37692307692308,385.964261193891,208,53891,1,1,1,0,9 +"16208",2015,36119,"NY","36","119",968891,0.753563610354519,59976,0.131809460506909,11.0016997611829,11.7286898571345,12.5788630353017,4.56923076923077,220.630616982114,1267,574263,1,1,1,0,9 +"16209",2015,36121,"NY","36","121",40939,0.92667138913994,2503,0.146583941962432,7.82524529143177,8.54519738782584,9.3031018520575,5.7,332.007875535652,86,25903,1,1,1,0,9 +"16210",2015,36123,"NY","36","123",25145,0.975303241201034,1999,0.151680254523762,7.6004023345004,7.76131918094799,8.87458787627932,5.03076923076923,327.177548349571,45,13754,1,1,1,0,9 +"16211",2015,39001,"OH","39","001",27919,0.982986496651026,1541,0.14345069665819,7.34018683532012,8.15392513200786,8.98769669570362,7.93076923076923,635.340001258099,101,15897,1,1,1,0,9 +"16212",2015,39003,"OH","39","003",104141,0.848301821568835,7773,0.137371448324867,8.95841146923022,9.39607277189222,10.2712161788079,4.90769230769231,456.742790465078,274,59990,1,1,1,0,9 +"16213",2015,39005,"OH","39","005",53317,0.978018268094604,3859,0.139711536658102,8.25816336153762,8.67522205564115,9.62337674558067,5.08461538461538,325.853265251277,97,29768,1,1,1,0,9 +"16214",2015,39007,"OH","39","007",98443,0.944516115924952,5705,0.147973954471115,8.64909826229618,9.34975442775886,10.2277426052187,6.04615384615385,516.478111165765,294,56924,1,1,1,0,9 +"16215",2015,39009,"OH","39","009",65949,0.925639509317806,12177,0.109630168766774,9.40730420550701,8.77431295828538,9.91036385647556,6.32307692307692,392.98888540637,163,41477,1,1,1,0,9 +"16216",2015,39011,"OH","39","011",45754,0.98063557284609,2763,0.143528434672378,7.92407232492342,8.56445838388335,9.44691334360205,3.71538461538462,337.039476232906,87,25813,1,1,1,0,9 +"16217",2015,39013,"OH","39","013",69018,0.945260656640297,4342,0.157147410820366,8.37609035043824,9.00650913169435,9.86993076900728,6.41538461538462,461.966380457129,191,41345,1,1,1,0,9 +"16218",2015,39015,"OH","39","015",43717,0.981677608253082,2395,0.142004254637784,7.78113850984502,8.60465446718623,9.43612044461152,6.29230769230769,603.749602796314,152,25176,1,1,1,0,9 +"16219",2015,39017,"OH","39","017",376173,0.871277311237117,32993,0.127401488145082,10.4040506967356,10.7256214392598,11.6259326700366,4.63846153846154,434.156666471101,962,221579,1,1,1,0,9 +"16220",2015,39019,"OH","39","019",27729,0.982220779689134,1499,0.158642576364095,7.3125534981026,8.06902932877496,8.96456770260161,6.02307692307692,354.206198608476,56,15810,1,1,1,0,9 +"16221",2015,39021,"OH","39","021",38976,0.957409688013136,2468,0.138752052545156,7.81116338502528,8.4359831359907,9.31461029315198,4.43076923076923,468.102180018724,105,22431,1,1,1,0,9 +"16222",2015,39023,"OH","39","023",135810,0.882276710109712,8573,0.140188498637803,9.05637300867876,9.63357990818351,10.5775538452833,5.05384615384615,611.417471677943,469,76707,1,1,1,0,9 +"16223",2015,39025,"OH","39","025",202077,0.965013336500443,11857,0.142544673565027,9.38067368945807,10.1456098624481,11.0109274298069,4.56153846153846,428.253060138371,515,120256,1,1,1,0,9 +"16224",2015,39027,"OH","39","027",41864,0.9583651824957,2797,0.140717561628129,7.93630269320196,8.50451313825886,9.40730420550701,6.26923076923077,503.196535368117,122,24245,1,1,1,0,9 +"16225",2015,39029,"OH","39","029",104788,0.962963316410276,5854,0.155924342481964,8.67488046725183,9.45501055383467,10.2891240330101,5.92307692307692,489.24476915801,300,61319,1,1,1,0,9 +"16226",2015,39031,"OH","39","031",36579,0.975696437846852,2049,0.144700511222286,7.6251071482389,8.33302993974291,9.24154829910038,6.46923076923077,374.222395023328,77,20576,1,1,1,0,9 +"16227",2015,39033,"OH","39","033",42327,0.976728801946748,2525,0.143312779077185,7.83399634170946,8.5336569174469,9.38530157436385,5.86153846153846,555.625710316959,132,23757,1,1,1,0,9 +"16228",2015,39035,"OH","39","035",1259109,0.648769089888167,85307,0.142966971088285,11.3540117934187,11.8833504424331,12.8682243923876,5.2,440.227642973506,3286,746432,1,1,1,0,9 +"16229",2015,39037,"OH","39","037",52002,0.982500673051036,2887,0.138494673281797,7.96797317966293,8.69901462316851,9.56268595775369,4.3,399.201596806387,114,28557,1,1,1,0,9 +"16230",2015,39039,"OH","39","039",38349,0.964353698923049,2448,0.14300242509583,7.80302664363222,8.43468076984177,9.28952116985062,4.97692307692308,445.690130490719,97,21764,1,1,1,0,9 +"16231",2015,39041,"OH","39","041",193624,0.895596620253688,10107,0.119494484154857,9.22098353207466,10.3047438158702,10.9491033428019,3.55384615384615,179.772880993913,202,112364,1,1,1,0,9 +"16232",2015,39043,"OH","39","043",75388,0.882487929113387,4563,0.15446755451796,8.4257355809274,8.99813676070031,9.99099463997436,5.64615384615385,471.159004501668,202,42873,1,1,1,0,9 +"16233",2015,39045,"OH","39","045",151310,0.901308571806226,9356,0.129694005683696,9.14377312770407,9.89085813613599,10.6928308839485,4.4,323.876588349471,287,88614,1,1,1,0,9 +"16234",2015,39047,"OH","39","047",28617,0.956389558653947,1666,0.136597127581507,7.41818082272679,8.15966073706338,9.01760477683336,4.99230769230769,580.684596577017,95,16360,1,1,1,0,9 +"16235",2015,39049,"OH","39","049",1257891,0.70051379650542,91557,0.113505860205694,11.42471700813,12.0293652995207,12.9010207035365,4.13846153846154,376.267315832092,2946,782954,1,1,1,0,9 +"16236",2015,39051,"OH","39","051",42299,0.979904962292253,2547,0.148064966074848,7.84267147497946,8.501470230951,9.40861729556027,4.92307692307692,318.287037037037,77,24192,1,1,1,0,9 +"16237",2015,39053,"OH","39","053",30258,0.955053209068676,1892,0.143234846982616,7.54538974961182,8.15994665557855,9.06808532439531,6.55384615384615,628.381916564846,108,17187,1,1,1,0,9 +"16238",2015,39055,"OH","39","055",93899,0.975526895920084,5558,0.156583137200609,8.62299361030245,9.18584274037578,10.1660056513244,4.19230769230769,266.013840430248,138,51877,1,1,1,0,9 +"16239",2015,39057,"OH","39","057",164421,0.8806539310672,14308,0.135870722109706,9.56857410037891,9.80056849852829,10.8034049702923,4.40769230769231,324.934093556496,318,97866,1,1,1,0,9 +"16240",2015,39059,"OH","39","059",39402,0.968072686665651,2324,0.14595705801736,7.7510451179718,8.40491994893345,9.33025446864152,6.29230769230769,559.676631279705,126,22513,1,1,1,0,9 +"16241",2015,39061,"OH","39","061",809902,0.694546994574652,55189,0.132706179266133,10.9185189370449,11.4547771495747,12.4241513923486,4.53076923076923,445.836472661382,2148,481791,1,1,1,0,9 +"16242",2015,39063,"OH","39","063",75726,0.951245279032301,5043,0.135528088107123,8.52575642207673,9.08681588569068,10.001294612539,3.71538461538462,372.481773376638,164,44029,1,1,1,0,9 +"16243",2015,39065,"OH","39","065",31615,0.97592914755654,3608,0.121999051083347,8.19090888118251,8.17159948034546,9.10886120302633,4.87692307692308,425.062103229368,77,18115,1,1,1,0,9 +"16244",2015,39067,"OH","39","067",15396,0.967459080280592,827,0.168615224733697,6.71780469502369,7.43543801981455,8.38708450606922,6.36153846153846,588.434989249745,52,8837,1,1,1,0,9 +"16245",2015,39069,"OH","39","069",27490,0.979301564205166,1553,0.146016733357585,7.34794382314869,8.0802374162167,8.96303219366268,5.65384615384615,448.172098085665,70,15619,1,1,1,0,9 +"16246",2015,39071,"OH","39","071",42973,0.971074860959207,2357,0.137504944965443,7.76514490293613,8.5709235138372,9.41377089198037,6.43076923076923,566.466818275791,137,24185,1,1,1,0,9 +"16247",2015,39073,"OH","39","073",28502,0.982387200898183,1561,0.144972282646832,7.35308192051543,8.15104494568502,9.01066917684711,5.65384615384615,490.526703047397,80,16309,1,1,1,0,9 +"16248",2015,39075,"OH","39","075",43885,0.990908055144127,3074,0.104956135353766,8.03073492409854,8.47491179915963,9.33025446864152,3.46923076923077,246.522275048424,56,22716,1,1,1,0,9 +"16249",2015,39077,"OH","39","077",58325,0.972104586369481,3535,0.138842691813116,8.17046857833067,8.85395110151461,9.72567581122,6.64615384615385,422.00407039387,141,33412,1,1,1,0,9 +"16250",2015,39079,"OH","39","079",32575,0.98056792018419,1881,0.13976976208749,7.53955882930103,8.31532177537757,9.1557785839835,7.6,617.513973915358,116,18785,1,1,1,0,9 +"16251",2015,39081,"OH","39","081",67546,0.928152666331093,4592,0.15857341663459,8.4320709379994,8.91476052739726,9.88745979145893,7.5,580.409882377112,226,38938,1,1,1,0,9 +"16252",2015,39083,"OH","39","083",61045,0.97664018347121,4900,0.138815627815546,8.49699048409872,8.81016126829726,9.7675532752953,4.69230769230769,449.249318880065,155,34502,1,1,1,0,9 +"16253",2015,39085,"OH","39","085",229843,0.93667851533438,13146,0.153252437533447,9.48387280882352,10.1964929310193,11.1241847217545,4.53846153846154,405.463716577142,545,134414,1,1,1,0,9 +"16254",2015,39087,"OH","39","087",60990,0.965387768486637,3467,0.138662075750123,8.15104494568502,8.94819608331224,9.7997368515422,5.93846153846154,705.690508322087,251,35568,1,1,1,0,9 +"16255",2015,39089,"OH","39","089",170721,0.93902917625834,10849,0.135882521775294,9.29182818882245,9.94203496214837,10.8251637566866,4.49230769230769,431.712729473472,428,99140,1,1,1,0,9 +"16256",2015,39091,"OH","39","091",45255,0.960203292453872,2650,0.147210253010717,7.88231491898027,8.60465446718623,9.47623685235604,4.24615384615385,420.038535645472,109,25950,1,1,1,0,9 +"16257",2015,39093,"OH","39","093",305533,0.879158716079769,19184,0.142020665525492,9.8618318772673,10.53646001006,11.3922933746091,5.57692307692308,397.058491290694,703,177052,1,1,1,0,9 +"16258",2015,39095,"OH","39","095",433826,0.761558781631345,30576,0.136480985464218,10.3279706664801,10.8397181571898,11.7876286751938,5.36153846153846,467.222401756756,1200,256837,1,1,1,0,9 +"16259",2015,39097,"OH","39","097",44149,0.912115789712111,2735,0.130286076694829,7.91388671485608,8.77755545321306,9.36383369293329,4.08461538461538,422.580994690649,117,27687,1,1,1,0,9 +"16260",2015,39099,"OH","39","099",231988,0.816024966808628,15099,0.15467610393641,9.62238379544447,10.1781603703943,11.1172869176798,6.16923076923077,516.435773424051,693,134189,1,1,1,0,9 +"16261",2015,39101,"OH","39","101",65470,0.916282266687032,4281,0.140232167404918,8.36194190614495,9.02509454366498,9.76812591460545,5.17692307692308,531.107738998483,210,39540,1,1,1,0,9 +"16262",2015,39103,"OH","39","103",176185,0.967301416125096,9841,0.141703323211397,9.19431261089898,10.0215372193099,10.8576326799613,4.16153846153846,339.19987594976,350,103184,1,1,1,0,9 +"16263",2015,39105,"OH","39","105",23192,0.981372887202484,1232,0.152078302863056,7.11639414409346,7.952615111651,8.81343849452851,8.30769230769231,465.425531914894,63,13536,1,1,1,0,9 +"16264",2015,39107,"OH","39","107",40735,0.980213575549282,2498,0.144494906100405,7.82324569068552,8.37770121259764,9.30882731869084,3.32307692307692,367.891494171358,83,22561,1,1,1,0,9 +"16265",2015,39109,"OH","39","109",104100,0.950701248799231,5804,0.140624399615754,8.66630261400408,9.44335504308566,10.3057140887938,4.44615384615385,409.547148276209,244,59578,1,1,1,0,9 +"16266",2015,39111,"OH","39","111",14267,0.987453564169061,707,0.153080535501507,6.56103066589657,7.37963215260955,8.26616443661249,10.0384615384615,468.354430379747,37,7900,1,1,1,0,9 +"16267",2015,39113,"OH","39","113",532059,0.748198977932898,36911,0.134825273137002,10.5162648885858,11.0184815912866,11.9773196406077,5.06153846153846,520.400676197649,1610,309377,1,1,1,0,9 +"16268",2015,39115,"OH","39","115",14736,0.946118349619978,825,0.14942996742671,6.71538338633468,7.40974195408092,8.32820949174873,7.37692307692308,446.051838456902,37,8295,1,1,1,0,9 +"16269",2015,39117,"OH","39","117",34954,0.982319620072095,1885,0.148795559878698,7.54168309988211,8.39366870513074,9.21213875391756,5.09230769230769,493.851548224604,100,20249,1,1,1,0,9 +"16270",2015,39119,"OH","39","119",86213,0.936912066625683,5986,0.137508264414879,8.69717868841264,9.22424327714517,10.1404945605095,6.28461538461538,475.672189301407,236,49614,1,1,1,0,9 +"16271",2015,39121,"OH","39","121",14468,0.963643903787669,657,0.196848216754216,6.48768401848461,7.11395610956603,8.07806788181544,7.36153846153846,502.323245008163,40,7963,1,1,1,0,9 +"16272",2015,39123,"OH","39","123",40761,0.978165403204043,2014,0.172836780255637,7.60787807327851,8.35420356292178,9.33961270768032,6.73076923076923,445.765230312036,102,22882,1,1,1,0,9 +"16273",2015,39125,"OH","39","125",18953,0.974779718250409,1067,0.14810320265921,6.97260625130175,7.70751219460034,8.56826646160024,4.83076923076923,306.60596487968,33,10763,1,1,1,0,9 +"16274",2015,39127,"OH","39","127",35970,0.985849318876842,2103,0.142924659438421,7.6511201757027,8.38640090116621,9.24917639576138,6.6,481.021098252131,101,20997,1,1,1,0,9 +"16275",2015,39129,"OH","39","129",56991,0.950904528785247,3779,0.128967731747118,8.23721470334949,8.96635615479012,9.65412835440351,4.80769230769231,379.952433435814,131,34478,1,1,1,0,9 +"16276",2015,39131,"OH","39","131",28115,0.972185666014583,1647,0.139498488351414,7.40671073017764,8.16422565226583,8.99355158629998,7.40769230769231,610.169491525424,99,16225,1,1,1,0,9 +"16277",2015,39133,"OH","39","133",162667,0.924102614543823,19387,0.135934147675927,9.87235801733921,9.77149782807318,10.820717842887,4.91538461538462,370.66214196259,367,99012,1,1,1,0,9 +"16278",2015,39135,"OH","39","135",41313,0.979933677050807,2227,0.145305351826302,7.70841066725737,8.51077262361331,9.37644785490711,4.86923076923077,544.055765715986,128,23527,1,1,1,0,9 +"16279",2015,39137,"OH","39","137",34020,0.98477366255144,2121,0.143709582598471,7.65964295456468,8.24800570160062,9.14963449685879,3.92307692307692,308.416100365917,59,19130,1,1,1,0,9 +"16280",2015,39139,"OH","39","139",121720,0.883651002300362,7715,0.140847847518896,8.95092176479726,9.57567768899357,10.4037475561973,5.63846153846154,494.485136945307,347,70174,1,1,1,0,9 +"16281",2015,39141,"OH","39","141",77067,0.920329064320656,4511,0.141098005631464,8.4142741374084,9.24503161176611,9.96589881265752,5.40769230769231,567.309332878348,266,46888,1,1,1,0,9 +"16282",2015,39143,"OH","39","143",59476,0.948348913847602,3377,0.149354361423095,8.12474302038557,8.86939815988352,9.74624877610964,4.87692307692308,414.187376035468,142,34284,1,1,1,0,9 +"16283",2015,39145,"OH","39","145",77024,0.957299023680931,4991,0.136347112588284,8.51539156946961,9.16335358075185,10.0129695631531,7.73846153846154,571.262803204427,256,44813,1,1,1,0,9 +"16284",2015,39147,"OH","39","147",55672,0.95363917229487,4068,0.143860468458112,8.31090675716845,8.77012852753818,9.65816229616317,4.89230769230769,375.563345017526,120,31952,1,1,1,0,9 +"16285",2015,39149,"OH","39","149",49036,0.952891752997797,2971,0.137735541235011,7.99665387546261,8.67402598544303,9.52566193023138,4.33846153846154,393.373994009167,109,27709,1,1,1,0,9 +"16286",2015,39151,"OH","39","151",374798,0.89573316826664,24001,0.14457387712848,10.0858507751287,10.6621181202072,11.6062974039625,5.31538461538462,403.767259661243,872,215966,1,1,1,0,9 +"16287",2015,39153,"OH","39","153",541940,0.80427722626121,35210,0.144510462412813,10.4690854121491,11.0582123378931,12.0097779170986,5.02307692307692,457.979738430271,1476,322285,1,1,1,0,9 +"16288",2015,39155,"OH","39","155",203442,0.897494126089991,12244,0.153232862437451,9.4127913000653,10.0340771222397,10.9799905556161,6.51538461538462,513.750118128163,598,116399,1,1,1,0,9 +"16289",2015,39157,"OH","39","157",92782,0.975415490073506,5283,0.14430600763079,8.57224939716431,9.29468152040993,10.1722543538748,5.43076923076923,383.236259462331,202,52709,1,1,1,0,9 +"16290",2015,39159,"OH","39","159",54394,0.929477515902489,3246,0.119002095819392,8.08517874807454,9.01152351265303,9.77741399528076,3.9,329.354887445233,109,33095,1,1,1,0,9 +"16291",2015,39161,"OH","39","161",28330,0.976844334627603,1770,0.142428521002471,7.47873482556787,8.10591119798651,8.98769669570362,4.2,468.486476357049,75,16009,1,1,1,0,9 +"16292",2015,39163,"OH","39","163",13083,0.983107849881526,762,0.152029351066269,6.63594655568665,7.42297125104942,8.24380842366528,6.62307692307692,544.605809128631,42,7712,1,1,1,0,9 +"16293",2015,39165,"OH","39","165",224018,0.905119231490327,12370,0.125864885857386,9.42302946538653,10.3491344502771,11.0769444467389,4.22307692307692,275.255866295604,362,131514,1,1,1,0,9 +"16294",2015,39167,"OH","39","167",61075,0.971772410970119,3995,0.154318460908719,8.29279885820037,8.84260448067803,9.77973674509995,6.06923076923077,473.128027877723,167,35297,1,1,1,0,9 +"16295",2015,39169,"OH","39","169",116262,0.963780082916172,8315,0.134050678639624,9.02581639162703,9.46769209462013,10.3841838113206,3.98461538461538,338.06730472368,219,64780,1,1,1,0,9 +"16296",2015,39171,"OH","39","171",37036,0.974754293120207,2163,0.147856139971919,7.67925142595306,8.38958706681109,9.24840657278264,4.47692307692308,410.319294439466,87,21203,1,1,1,0,9 +"16297",2015,39173,"OH","39","173",129375,0.943914975845411,16399,0.124212560386473,9.70497563634345,9.5816970104509,10.5689551639893,4.33076923076923,300.720959222752,234,77813,1,1,1,0,9 +"16298",2015,39175,"OH","39","175",22181,0.982327216987512,1202,0.140345340606826,7.09174211509515,7.90654723236804,8.7326270996604,3.68461538461538,359.798512832814,45,12507,1,1,1,0,9 +"16299",2015,40001,"OK","40","001",22266,0.478577202910267,1408,0.121395850175155,7.24992553671799,7.90728360942635,8.72761617832107,5.90769230769231,753.402462734932,93,12344,0,1,0,0,9 +"16300",2015,40003,"OK","40","003",5912,0.902401894451962,275,0.133119079837618,5.61677109766657,6.79234442747081,7.13329595489607,2.89230769230769,366.610265087422,13,3546,0,1,0,0,9 +"16301",2015,40005,"OK","40","005",13888,0.77570564516129,875,0.132056451612903,6.77422388635761,7.40731771046942,8.18618599422608,6.33846153846154,609.601219202438,48,7874,0,1,0,0,9 +"16302",2015,40007,"OK","40","007",5460,0.958424908424908,311,0.134615384615385,5.73979291217923,6.4118182677099,7.27517231945277,2.64615384615385,578.624914908101,17,2938,0,1,0,0,9 +"16303",2015,40009,"OK","40","009",23564,0.896409777626888,1696,0.11797657443558,7.43602781635185,8.00770001288403,8.71078434046842,5.02307692307692,473.130428642045,67,14161,0,1,0,0,9 +"16304",2015,40011,"OK","40","011",9772,0.829001227998363,558,0.139991813344249,6.32435896238131,6.91473089271856,7.84267147497946,3.73846153846154,598.802395209581,31,5177,0,1,0,0,9 +"16305",2015,40013,"OK","40","013",45080,0.797338065661047,3189,0.118611357586513,8.06746266701006,8.5567984460086,9.46366389179152,4.46153846153846,547.848021440959,139,25372,0,1,0,0,9 +"16306",2015,40015,"OK","40","015",29439,0.667549848839974,1830,0.122898196270254,7.51207124583547,8.1341742721379,8.92025541490809,5.03846153846154,762.250453720508,126,16530,0,1,0,0,9 +"16307",2015,40017,"OK","40","017",133241,0.86897426467829,7317,0.116720829174203,8.89795568688403,9.84871452668884,10.5782161475721,3.50769230769231,328.926480486659,259,78741,0,1,0,0,9 +"16308",2015,40019,"OK","40","019",48587,0.7856216683475,2971,0.13155782410933,7.99665387546261,8.70367275835886,9.53640145729708,4.42307692307692,677.168205685316,187,27615,0,1,0,0,9 +"16309",2015,40021,"OK","40","021",48392,0.566808563398909,5531,0.119523888245991,8.61812390999468,8.57527340249276,9.55456817061316,5.04615384615385,568.30366716706,159,27978,0,1,0,0,9 +"16310",2015,40023,"OK","40","023",14987,0.667178221124975,782,0.1434576633082,6.66185474054531,7.39756153552405,8.3380665255188,7.48461538461538,752.52899087096,61,8106,0,1,0,0,9 +"16311",2015,40027,"OK","40","027",274041,0.828938005626895,30953,0.112607237603132,10.3402252039484,10.4572577166274,11.3420778302499,3.44615384615385,345.3245874636,587,169985,0,1,0,0,9 +"16312",2015,40029,"OK","40","029",5600,0.763928571428571,335,0.142857142857143,5.81413053182507,6.45990445437753,7.32052696227274,7.45384615384615,831.117021276596,25,3008,0,1,0,0,9 +"16313",2015,40031,"OK","40","031",123689,0.686277680311103,11787,0.108126025758151,9.37475250822657,9.62456698575292,10.4729122186051,4.23846153846154,436.945592377142,332,75982,0,1,0,0,9 +"16314",2015,40033,"OK","40","033",6008,0.834387483355526,341,0.138315579227696,5.83188247728352,6.4831073514572,7.41878088275079,4.03846153846154,569.203115638107,19,3338,0,1,0,0,9 +"16315",2015,40035,"OK","40","035",14706,0.713110295117639,874,0.13219094247246,6.77308037565554,7.44716835960004,8.26126815057765,4.71538461538462,767.47811488188,64,8339,0,1,0,0,9 +"16316",2015,40037,"OK","40","037",70798,0.836690301985932,4155,0.135710048306449,8.33206770728955,9.04357715409808,9.90996651863384,4.82307692307692,597.082042570201,239,40028,0,1,0,0,9 +"16317",2015,40039,"OK","40","039",29568,0.858157467532468,3859,0.105079816017316,8.25816336153762,8.02845516411425,9.03574886124414,3.95384615384615,534.014395170653,92,17228,0,1,0,0,9 +"16318",2015,40041,"OK","40","041",41738,0.705160764770713,2150,0.150773875125785,7.67322312112171,8.35490952835879,9.33802973311707,4.83076923076923,654.184525152267,145,22165,0,1,0,0,9 +"16319",2015,40047,"OK","40","047",63246,0.876830155266736,4317,0.123217278563071,8.37031599555548,8.87192625111763,9.76675102896266,3.82307692307692,492.240947772401,177,35958,0,1,0,0,9 +"16320",2015,40049,"OK","40","049",27913,0.855801956077813,1596,0.13144412997528,7.37525577800975,8.10772006191053,8.96085284532237,4.57692307692308,610.905309677,94,15387,0,1,0,0,9 +"16321",2015,40051,"OK","40","051",54563,0.890328610963473,3194,0.134340120594542,8.06902932877496,8.83389994290864,9.66503998996204,4.36923076923077,426.338228327807,135,31665,0,1,0,0,9 +"16322",2015,40055,"OK","40","055",6031,0.864367434919582,372,0.114243077433261,5.91889385427315,6.67456139181443,7.18311170174328,5.50769230769231,656.275635767022,24,3657,0,1,0,0,9 +"16323",2015,40061,"OK","40","061",12749,0.779904306220096,720,0.128794415248255,6.5792512120101,7.25559127425367,8.13827263853019,7.74615384615385,670.847309318944,46,6857,0,1,0,0,9 +"16324",2015,40063,"OK","40","063",13589,0.709029361983958,901,0.127750386341894,6.80350525760834,7.40549566319947,8.11552088154677,7.3,711.56289707751,56,7870,0,1,0,0,9 +"16325",2015,40065,"OK","40","065",25464,0.864082626453032,2129,0.117185045554508,7.66340766489348,8.01002752848173,8.89877535906107,3.96153846153846,635.779506256341,94,14785,0,1,0,0,9 +"16326",2015,40067,"OK","40","067",6259,0.895670234861799,316,0.146509027001118,5.75574221358691,6.54534966033442,7.41818082272679,5.56923076923077,619.834710743802,21,3388,0,1,0,0,9 +"16327",2015,40069,"OK","40","069",10977,0.776623849867906,664,0.135191764598706,6.49828214947643,7.09837563859079,8.01928379291679,6.36153846153846,645.054581541515,39,6046,0,1,0,0,9 +"16328",2015,40071,"OK","40","071",45261,0.839574909966638,2855,0.129670135436689,7.95682712209011,8.52118521268578,9.39996850395258,5.53846153846154,622.976351489815,152,24399,0,1,0,0,9 +"16329",2015,40073,"OK","40","073",15595,0.929913433792882,932,0.129208079512664,6.83733281468559,7.49886973397693,8.35113860708615,3.06923076923077,371.143586174901,32,8622,0,1,0,0,9 +"16330",2015,40075,"OK","40","075",9120,0.853179824561404,493,0.149122807017544,6.20050917404269,6.88653164253051,7.80302664363222,4.54615384615385,954.843843246469,48,5027,0,1,0,0,9 +"16331",2015,40077,"OK","40","077",10622,0.717096591978912,775,0.127377141781209,6.65286302935335,7.02197642307216,7.96241568012106,7.92307692307692,662.136260672591,38,5739,0,1,0,0,9 +"16332",2015,40079,"OK","40","079",50030,0.805196881870877,3040,0.131261243254048,8.01961279440027,8.70533113353163,9.5272656628976,6.73076923076923,580.811702280224,162,27892,0,1,0,0,9 +"16333",2015,40081,"OK","40","081",34937,0.883619085782981,1935,0.137933995477574,7.56786260546388,8.28778002708843,9.18296917518005,4.53076923076923,648.985640553937,127,19569,0,1,0,0,9 +"16334",2015,40083,"OK","40","083",45355,0.854459265792085,3116,0.136368647337669,8.04430540699064,8.63141433550626,9.49303502791692,3.70769230769231,403.486734421986,106,26271,0,1,0,0,9 +"16335",2015,40085,"OK","40","085",9815,0.869994905756495,578,0.129291900152827,6.35957386867238,6.99759598298193,7.88833450073865,3.46923076923077,672.143390589992,36,5356,0,1,0,0,9 +"16336",2015,40087,"OK","40","087",37981,0.89860719833601,2090,0.128379979463416,7.64491934495886,8.51458980554612,9.30373963623473,3.61538461538462,438.171671048383,95,21681,0,1,0,0,9 +"16337",2015,40089,"OK","40","089",33174,0.695876288659794,2021,0.128685114848978,7.61134771740362,8.24538446812075,9.13043098874788,7.70769230769231,718.947019135051,130,18082,0,1,0,0,9 +"16338",2015,40091,"OK","40","091",19811,0.735298571500681,944,0.154611074655494,6.8501261661455,7.58832367733522,8.5855992240803,8.42307692307692,720.106120902028,76,10554,0,1,0,0,9 +"16339",2015,40093,"OK","40","093",7774,0.947517365577566,386,0.145356315924878,5.95583736946483,6.74758652682932,7.6251071482389,3.20769230769231,622.158411103135,26,4179,0,1,0,0,9 +"16340",2015,40095,"OK","40","095",16267,0.840843425339645,893,0.133398905760128,6.7945865808765,7.46908388492123,8.37286082052632,5.33076923076923,678.124634631124,58,8553,0,1,0,0,9 +"16341",2015,40097,"OK","40","097",40901,0.726216962910442,2459,0.14082785261974,7.80751004221619,8.46083445774685,9.34958043906769,4.21538461538462,631.670659986931,145,22955,0,1,0,0,9 +"16342",2015,40099,"OK","40","099",13859,0.810808860668158,720,0.141640811025326,6.5792512120101,7.40245152081824,8.24695803256818,4.13076923076923,562.753566287135,43,7641,0,1,0,0,9 +"16343",2015,40101,"OK","40","101",69349,0.641869385283133,4435,0.129461131378967,8.39728289474368,9.03491498187007,9.9040873726081,5.01538461538462,718.146522191489,283,39407,0,1,0,0,9 +"16344",2015,40103,"OK","40","103",11560,0.862975778546713,611,0.137110726643599,6.4150969591716,7.16472037877186,8.0643219609108,3.46153846153846,642.331192229359,41,6383,0,1,0,0,9 +"16345",2015,40105,"OK","40","105",10517,0.737092326709138,630,0.138632689930589,6.44571981938558,7.07749805356923,7.97349996402463,5.56923076923077,562.08482370976,33,5871,0,1,0,0,9 +"16346",2015,40107,"OK","40","107",12110,0.669116432700248,763,0.127250206440958,6.63725803128446,7.3065313989395,8.0106915391303,5.71538461538462,760.838357737583,53,6966,0,1,0,0,9 +"16347",2015,40109,"OK","40","109",777406,0.7356760817385,54637,0.118041280875115,10.9084665879057,11.4901787079743,12.3631404948495,3.84615384615385,454.313369762414,2091,460255,0,1,0,0,9 +"16348",2015,40111,"OK","40","111",39072,0.692772317772318,2711,0.13326678951679,7.90507284949867,8.36404201192206,9.29615102838929,6.50769230769231,698.433120433764,152,21763,0,1,0,0,9 +"16349",2015,40113,"OK","40","113",47333,0.700547186952021,2673,0.14839541123529,7.89095671613892,8.59359852261864,9.48189306249808,5.14615384615385,543.680643479556,146,26854,0,1,0,0,9 +"16350",2015,40115,"OK","40","115",31890,0.732612104107871,2198,0.122232674819693,7.69530313496357,8.18757739559151,9.08136999067922,5,715.116279069768,123,17200,0,1,0,0,9 +"16351",2015,40117,"OK","40","117",16436,0.82228036018496,904,0.141944512046727,6.80682936039218,7.5422134631934,8.43402895015547,5.69230769230769,713.032031592804,65,9116,0,1,0,0,9 +"16352",2015,40119,"OK","40","119",81443,0.838684724285697,17254,0.0923099591125081,9.75579927963652,8.95699531192885,10.098766465702,3.44615384615385,288.920772813931,147,50879,0,1,0,0,9 +"16353",2015,40121,"OK","40","121",44725,0.768429290106205,2672,0.134197875908329,7.89058253465654,8.56464913257253,9.39374467572138,5.56153846153846,698.559711157333,178,25481,0,1,0,0,9 +"16354",2015,40123,"OK","40","123",38343,0.732154500169522,3212,0.119578541063558,8.07464907506665,8.36799688505411,9.31811796414961,3.88461538461538,568.468344565168,124,21813,0,1,0,0,9 +"16355",2015,40125,"OK","40","125",71510,0.79453223325409,4954,0.123507201789959,8.5079506100493,9.07760865952222,9.97878053657156,4.38461538461538,557.402699002543,228,40904,0,1,0,0,9 +"16356",2015,40127,"OK","40","127",11155,0.775168086060063,557,0.143254146122815,6.32256523992728,7.04490511712937,8.02158453345511,7.60769230769231,980.881130507066,59,6015,0,1,0,0,9 +"16357",2015,40131,"OK","40","131",90113,0.809250607570495,5815,0.130802436940286,8.66819606495276,9.29514097366865,10.1704948674967,4.28461538461538,420.151945361062,219,52124,0,1,0,0,9 +"16358",2015,40133,"OK","40","133",25410,0.712081857536403,1546,0.127469500196773,7.34342622914737,7.98275770201111,8.86474666090541,6.66153846153846,826.683919200633,115,13911,0,1,0,0,9 +"16359",2015,40135,"OK","40","135",41811,0.713520365454067,2506,0.128411183659802,7.82644313545601,8.5179928715868,9.3794922547215,6.18461538461538,626.905405985658,146,23289,0,1,0,0,9 +"16360",2015,40137,"OK","40","137",44604,0.896556362658058,2555,0.14043583535109,7.8458075026378,8.54733434832822,9.44438429775868,5.85384615384615,520.916813591922,130,24956,0,1,0,0,9 +"16361",2015,40139,"OK","40","139",21452,0.882341972776431,1678,0.10376654857356,7.42535788702715,7.92479591395644,8.61938870373091,3.14615384615385,497.826945871197,63,12655,0,1,0,0,9 +"16362",2015,40141,"OK","40","141",7565,0.850363516192994,446,0.130337078651685,6.10031895202006,6.70318811324086,7.58222919427646,4.17692307692308,674.373795761079,28,4152,0,1,0,0,9 +"16363",2015,40143,"OK","40","143",640851,0.763793767974147,43926,0.120372754353196,10.6902616788747,11.3145842763212,12.1671654832147,4.03846153846154,435.928817762108,1642,376667,0,1,0,0,9 +"16364",2015,40145,"OK","40","145",76753,0.813271142496059,4175,0.130431383789559,8.33686963728496,9.22700081286929,10.0184666608598,4.1,407.922766622853,180,44126,0,1,0,0,9 +"16365",2015,40147,"OK","40","147",52144,0.814743786437558,3158,0.134991561828782,8.05769419481559,8.67846133901236,9.59947282546345,4.19230769230769,450.981752584472,130,28826,0,1,0,0,9 +"16366",2015,40149,"OK","40","149",11697,0.931264426776096,647,0.138326066512781,6.4723462945009,7.16239749735572,8.07090608878782,5.44615384615385,505.747126436782,33,6525,0,1,0,0,9 +"16367",2015,40151,"OK","40","151",9306,0.906297012679991,1195,0.110788738448313,7.08590146436561,6.8330317327862,7.79811262882979,2.67692307692308,364.896916621055,20,5481,0,1,0,0,9 +"16368",2015,40153,"OK","40","153",21619,0.928581340487534,1433,0.116055321707757,7.26752542782817,7.93701748951545,8.63621989783788,5.07692307692308,396.447827465905,50,12612,0,1,0,0,9 +"16369",2015,41001,"OR","41","001",15899,0.96106673375684,761,0.162651739103088,6.63463335786169,7.34665516317654,8.33423142973486,6.6,468.82325363338,40,8532,1,1,1,0,9 +"16370",2015,41003,"OR","41","003",88443,0.89783250228961,14855,0.12551586897776,9.60609178789671,9.08148374985118,10.2109722522841,4.11538461538461,200.232998398136,110,54936,1,1,1,0,9 +"16371",2015,41005,"OR","41","005",399852,0.919432690095335,22958,0.146389163990677,10.0414217386254,10.8395809117065,11.6918746751233,4.99230769230769,295.861728894565,702,237273,1,1,1,0,9 +"16372",2015,41007,"OR","41","007",37848,0.948768759247516,2214,0.164843584865779,7.70255611326858,8.34283980427146,9.30510494842061,5.33846153846154,440.248717832342,97,22033,1,1,1,0,9 +"16373",2015,41009,"OR","41","009",49671,0.952849751363975,2558,0.157355398522277,7.84698098213879,8.70167907103957,9.57803438239735,7,333.021126027682,96,28827,1,1,1,0,9 +"16374",2015,41011,"OR","41","011",62696,0.934828378205946,3279,0.168702947556463,8.09529377684465,8.76295892076673,9.77172602135387,7.26923076923077,592.669313539329,206,34758,1,1,1,0,9 +"16375",2015,41013,"OR","41","013",21465,0.966224085720941,1001,0.167481947356161,6.90875477931522,7.7621706071382,8.6941671418836,8.16923076923077,530.867368781574,62,11679,1,1,1,0,9 +"16376",2015,41015,"OR","41","015",22329,0.947870482332393,903,0.187155716780868,6.80572255341699,7.52671756135271,8.67948209445996,8.06153846153846,719.861231569818,83,11530,1,1,1,0,9 +"16377",2015,41017,"OR","41","017",174392,0.963541905592,8847,0.147707463645121,9.08783369748339,10.0253068758572,10.8569969948929,5.74615384615385,308.205732234001,314,101880,1,1,1,0,9 +"16378",2015,41019,"OR","41","019",107260,0.951566287525639,5483,0.160115606936416,8.60940767540405,9.31452019088585,10.2954620704618,7.33076923076923,603.539400552392,354,58654,1,1,1,0,9 +"16379",2015,41023,"OR","41","023",7209,0.965182410875295,263,0.174504092107088,5.57215403217776,6.54678541076052,7.53849499941346,8.52307692307692,323.362974939369,12,3711,1,1,1,0,9 +"16380",2015,41025,"OR","41","025",7154,0.935840089460442,367,0.161308358960022,5.90536184805457,6.64378973314767,7.58882987830781,7.03846153846154,610.22120518688,24,3933,1,1,1,0,9 +"16381",2015,41027,"OR","41","027",22925,0.955637949836423,1370,0.134612868047983,7.22256601882217,7.99496952269788,8.79785064893105,4.62307692307692,296.934154851162,40,13471,1,1,1,0,9 +"16382",2015,41029,"OR","41","029",211587,0.947033607924872,12047,0.147598860043386,9.39657094526685,10.0778189394389,11.01374839922,6.62307692307692,433.995777338383,518,119356,1,1,1,0,9 +"16383",2015,41031,"OR","41","031",22540,0.766770186335404,1337,0.139307897071872,7.19818357710194,7.82843635915759,8.6909784171879,7.15384615384615,412.207689258819,52,12615,1,1,1,0,9 +"16384",2015,41033,"OR","41","033",84606,0.955239581117178,4145,0.15963406850578,8.3296580675694,9.06889200839181,10.048583072154,7.54615384615385,557.534458726963,252,45199,1,1,1,0,9 +"16385",2015,41035,"OR","41","035",65742,0.912552097593624,4112,0.14806364272459,8.321664807135,8.86531163267185,9.82341567777057,7.62307692307692,499.40611165101,185,37044,1,1,1,0,9 +"16386",2015,41037,"OR","41","037",7789,0.943766850686866,365,0.168956220310695,5.89989735358249,6.81563999007433,7.58933582317062,7.5,501.024823502619,22,4391,1,1,1,0,9 +"16387",2015,41039,"OR","41","039",362257,0.924995238187254,35663,0.14061840074864,10.4818690157529,10.6482304817397,11.6046565200697,5.66153846153846,349.634264157887,760,217370,1,1,1,0,9 +"16388",2015,41041,"OR","41","041",47046,0.921693661522765,2121,0.187773668324618,7.65964295456468,8.44203851781548,9.50576737487541,6.50769230769231,629.244522886851,164,26063,1,1,1,0,9 +"16389",2015,41043,"OR","41","043",120303,0.952569761352585,6940,0.138940841043033,8.84505705350085,9.56493314971059,10.4514066284392,6.55384615384615,405.287623474724,279,68840,1,1,1,0,9 +"16390",2015,41045,"OR","41","045",30228,0.93826915442636,2164,0.119028715098584,7.67971363996637,8.20958048347558,8.86432272251144,6.20769230769231,375.785332628736,64,17031,1,1,1,0,9 +"16391",2015,41047,"OR","41","047",329106,0.913392645530619,22535,0.12251068044946,10.0228249351247,10.6275760743356,11.4453851094995,5.86923076923077,336.986214679731,639,189622,1,1,1,0,9 +"16392",2015,41049,"OR","41","049",11130,0.949505840071878,669,0.140251572327044,6.50578406012823,7.18538701558042,7.99900721324395,5.60769230769231,389.736927573888,24,6158,1,1,1,0,9 +"16393",2015,41051,"OR","41","051",790723,0.823837171803527,49445,0.12063643020375,10.8086162197041,11.7563029231152,12.4727200320131,4.79230769230769,298.295128611092,1560,522972,1,1,1,0,9 +"16394",2015,41053,"OR","41","053",79012,0.92649217840328,7343,0.126588366324103,8.90150275745161,9.10542420202662,10.0377998901437,5.49230769230769,270.239837856097,120,44405,1,1,1,0,9 +"16395",2015,41057,"OR","41","057",25554,0.957110432808954,1228,0.17277138608437,7.11314210870709,7.85399308722424,8.8447688275297,5.49230769230769,517.620364461462,73,14103,1,1,1,0,9 +"16396",2015,41059,"OR","41","059",76491,0.922030042750127,5240,0.12253729196899,8.56407677731509,9.16209505934819,9.9076787571546,6.22307692307692,337.05306308358,148,43910,1,1,1,0,9 +"16397",2015,41061,"OR","41","061",25720,0.947822706065319,2218,0.140902021772939,7.70436116791031,7.8898337513943,8.87961160998204,6,383.890556292315,55,14327,1,1,1,0,9 +"16398",2015,41063,"OR","41","063",6810,0.973274596182085,218,0.1928046989721,5.38449506278909,6.45204895443723,7.54062152865715,7.67692307692308,410.396716826265,15,3655,1,1,1,0,9 +"16399",2015,41065,"OR","41","065",25469,0.924535710078919,1523,0.148612038164043,7.32843735289516,7.90507284949867,8.86163359768663,5.51538461538462,421.614784625114,60,14231,1,1,1,0,9 +"16400",2015,41067,"OR","41","067",572955,0.838331108027681,34863,0.117066785349635,10.459181373891,11.3602636761944,12.0872722175056,4.57692307692308,198.512427499195,703,354134,1,1,1,0,9 +"16401",2015,41071,"OR","41","071",101447,0.936321428923477,7074,0.131891529567163,8.86418136976543,9.45289431681022,10.2645130192121,5.14615384615385,335.121777837957,198,59083,1,1,1,0,9 +"16402",2015,44001,"RI","44","001",49159,0.960251429036392,3608,0.15075571106003,8.19090888118251,8.56978564153541,9.58582725656466,5.3,282.03772254539,80,28365,1,1,1,0,9 +"16403",2015,44003,"RI","44","003",163801,0.943144425247709,9115,0.153765850025336,9.11767668711276,9.89847501071258,10.8464591629916,5.54615384615385,358.896864374764,361,100586,1,1,1,0,9 +"16404",2015,44005,"RI","44","005",83496,0.918678739101274,5438,0.147899300565297,8.60116662519242,9.13981060578566,10.0986019311288,5.43846153846154,264.135369376806,128,48460,1,1,1,0,9 +"16405",2015,44007,"RI","44","007",634146,0.805398125983606,50633,0.126054567875537,10.8323588166156,11.2565482423469,12.1937469958395,6.38461538461539,338.451718511121,1315,388534,1,1,1,0,9 +"16406",2015,44009,"RI","44","009",126284,0.948156536061575,12282,0.156686516106553,9.41589005488934,9.4012086347386,10.5398262580204,5.63846153846154,305.979403677145,227,74188,1,1,1,0,9 +"16407",2015,45001,"SC","45","001",24814,0.704320141855404,1694,0.14798097847989,7.434847875212,7.90948949267376,8.8771028978649,6.80769230769231,545.9377918253,76,13921,0,1,0,0,9 +"16408",2015,45003,"SC","45","003",165827,0.722916051065267,10313,0.14144861813818,9.24116051431607,9.8536143020404,10.8078676333844,5.84615384615385,454.203733867936,435,95772,0,1,0,0,9 +"16409",2015,45005,"SC","45","005",9435,0.246210916799152,701,0.14308426073132,6.55250788703459,7.04053639021596,7.83518375526675,11.2,688.112850507483,40,5813,0,1,0,0,9 +"16410",2015,45007,"SC","45","007",193806,0.816202800738883,11648,0.132735828612117,9.36288977043647,10.0783648024408,10.9550606431985,5.34615384615385,518.363196213069,576,111119,0,1,0,0,9 +"16411",2015,45009,"SC","45","009",14676,0.371354592532025,1244,0.14636140637776,7.12608727329912,7.28756064030972,8.34877453979127,10.3769230769231,623.127621330138,52,8345,0,1,0,0,9 +"16412",2015,45011,"SC","45","011",21791,0.534716167225001,1398,0.141618099215272,7.24279792279376,7.82803803212583,8.77199043653224,8.89230769230769,540.009818360334,66,12222,0,1,0,0,9 +"16413",2015,45013,"SC","45","013",180070,0.781529405231299,12532,0.132320764147276,9.43604065207208,9.82525570426655,10.7866970858082,5.41538461538462,292.61617809589,278,95005,0,1,0,0,9 +"16414",2015,45015,"SC","45","015",203313,0.704293380157688,15108,0.120607142681481,9.62297968383235,10.1910321155339,11.0298122797708,5.44615384615385,373.834827040175,458,122514,0,1,0,0,9 +"16415",2015,45017,"SC","45","017",14758,0.566540181596422,836,0.161675023715951,6.7286286130847,7.36707705988101,8.3841188371909,7.06153846153846,674.476393326234,57,8451,0,1,0,0,9 +"16416",2015,45019,"SC","45","019",389885,0.689434063890634,27310,0.129884453107968,10.2150082144678,10.7922426342158,11.7373402079778,4.78461538461538,345.30755365406,841,243551,0,1,0,0,9 +"16417",2015,45021,"SC","45","021",56534,0.773216117734461,3857,0.128312166130116,8.25764495820823,8.85166342536678,9.72489901933128,7.06153846153846,661.237984448662,216,32666,0,1,0,0,9 +"16418",2015,45023,"SC","45","023",32420,0.609685379395435,1984,0.144663787785318,7.59287028784482,8.21419441485256,9.18142636181154,8.28461538461539,679.907917982761,127,18679,0,1,0,0,9 +"16419",2015,45025,"SC","45","025",46161,0.648534477156041,2912,0.138883473061675,7.97659540931658,8.62065189978447,9.51451076193277,5.99230769230769,570.0871898055,153,26838,0,1,0,0,9 +"16420",2015,45027,"SC","45","027",34037,0.498663219437671,2415,0.150542057173076,7.78945456608667,8.13827263853019,9.17781718027062,7.62307692307692,550.68967325746,105,19067,0,1,0,0,9 +"16421",2015,45029,"SC","45","029",37444,0.594033757077235,2192,0.146218352740092,7.69256964806791,8.32796785830549,9.30973311585422,6.9,648.858577247324,137,21114,0,1,0,0,9 +"16422",2015,45031,"SC","45","031",67539,0.56844193725107,4534,0.143072891218407,8.41935983106747,9.00331620254186,9.93163759595247,7.31538461538462,633.577016801334,247,38985,0,1,0,0,9 +"16423",2015,45033,"SC","45","033",31138,0.483974564840388,2026,0.134305350375747,7.61381868480863,8.20930841164694,9.13873695311649,8.53076923076923,759.206798866855,134,17650,0,1,0,0,9 +"16424",2015,45035,"SC","45","035",152946,0.703293973036235,9555,0.119453924914676,9.16481985667437,9.92245649908373,10.7609196024039,5.41538461538462,395.183765894444,363,91856,0,1,0,0,9 +"16425",2015,45037,"SC","45","037",26789,0.616633692933667,1790,0.148195154727687,7.4899708988348,8.14351740579748,8.87038206607014,6.28461538461538,382.32795242141,63,16478,0,1,0,0,9 +"16426",2015,45039,"SC","45","039",22899,0.399231407485043,1385,0.171885235163108,7.23345541862144,7.82404601085629,8.86700463533357,7.98461538461538,730.688935281837,98,13412,0,1,0,0,9 +"16427",2015,45041,"SC","45","041",138781,0.54799288086986,9663,0.131091431824241,9.17605943799931,9.76157830635344,10.6774310029242,6.46923076923077,513.575724574908,415,80806,0,1,0,0,9 +"16428",2015,45043,"SC","45","043",61506,0.663577537150847,3166,0.160293304718239,8.06022424044096,8.7579408766788,9.77343581317585,8.35384615384615,552.267040947092,181,32774,0,1,0,0,9 +"16429",2015,45045,"SC","45","045",491218,0.777742265145007,32668,0.124551624736879,10.3941512844782,11.0689014246834,11.9159609572842,4.89230769230769,388.516053196288,1137,292652,0,1,0,0,9 +"16430",2015,45047,"SC","45","047",69992,0.652788890158875,4704,0.125300034289633,8.45616848957846,9.01115745810682,9.96029312635758,6.26923076923077,434.058446474537,172,39626,0,1,0,0,9 +"16431",2015,45049,"SC","45","049",19969,0.441985076869147,1286,0.134708798637889,7.15929190479756,7.85127199710988,8.61667646990119,8.29230769230769,685.221216479147,81,11821,0,1,0,0,9 +"16432",2015,45051,"SC","45","051",309350,0.835509940197188,17516,0.149736544367222,9.77087002792129,10.48971745075,11.4352449650857,7.07692307692308,521.261385001632,926,177646,0,1,0,0,9 +"16433",2015,45053,"SC","45","053",27490,0.537650054565296,1929,0.136049472535467,7.56475701290573,8.08886878916199,8.96992349199152,5.07692307692308,518.853695324284,86,16575,0,1,0,0,9 +"16434",2015,45055,"SC","45","055",63677,0.730609168145484,3552,0.143960927807529,8.17526610411206,8.93274063486591,9.84823907830565,5.90769230769231,571.334845958284,209,36581,0,1,0,0,9 +"16435",2015,45057,"SC","45","057",86346,0.753480184374493,4588,0.128448335765409,8.43119947824926,9.3615151997733,10.1183166342463,6.23076923076923,485.347422743749,237,48831,0,1,0,0,9 +"16436",2015,45059,"SC","45","059",66459,0.723483651574655,4583,0.14052272829865,8.43010908450912,8.93892527198827,9.89389165886268,6.48461538461538,647.534189805222,250,38608,0,1,0,0,9 +"16437",2015,45061,"SC","45","061",17813,0.346095548195138,1339,0.148936170212766,7.19967834569117,7.61381868480863,8.50065722277614,8.34615384615385,689.398174026458,74,10734,0,1,0,0,9 +"16438",2015,45063,"SC","45","063",281855,0.816526228025048,16856,0.131620868886484,9.73246195548403,10.5168336628925,11.3650285230306,4.78461538461538,393.983445575103,664,168535,0,1,0,0,9 +"16439",2015,45065,"SC","45","065",9671,0.505945610588357,433,0.164822665701582,6.07073772800249,6.87212810133899,7.69757534680234,7.06923076923077,616.822429906542,33,5350,0,1,0,0,9 +"16440",2015,45067,"SC","45","067",31769,0.41112405174856,2080,0.148226258302118,7.64012317269536,8.19395302356374,9.19227822915777,9.88461538461539,734.434985812051,132,17973,0,1,0,0,9 +"16441",2015,45069,"SC","45","069",27594,0.42128723635573,1802,0.133942161339422,7.49665243816828,8.21066803116298,8.9159693113736,9.94615384615385,753.118380795481,128,16996,0,1,0,0,9 +"16442",2015,45071,"SC","45","071",37787,0.660438775240162,2581,0.143038611162569,7.85593219971861,8.35772841676521,9.28822691063325,5.25384615384615,645.640763621162,139,21529,0,1,0,0,9 +"16443",2015,45073,"SC","45","073",75908,0.903725562523054,4369,0.151762660062181,8.38228942895144,9.02425172861298,9.96730706524908,5.73846153846154,519.039305431039,220,42386,0,1,0,0,9 +"16444",2015,45075,"SC","45","075",89174,0.351604727835468,6775,0.138078363648597,8.8209946457479,9.1248914101437,10.2029623170569,10.7615384615385,640.7720908156,324,50564,0,1,0,0,9 +"16445",2015,45077,"SC","45","077",121637,0.903639517580999,15004,0.120686962026357,9.61607211120178,9.48895647241422,10.4841097247542,5.70769230769231,421.538546590375,305,72354,0,1,0,0,9 +"16446",2015,45079,"SC","45","079",406455,0.478508075924764,47784,0.112524141663899,10.7744461344121,10.8239097381897,11.774981989783,5.6,370.767108451356,938,252989,0,1,0,0,9 +"16447",2015,45081,"SC","45","081",20155,0.699578268419747,1224,0.13758372612255,7.10987946307227,7.75233516330229,8.62980733578537,5.19230769230769,480.391300550266,55,11449,0,1,0,0,9 +"16448",2015,45083,"SC","45","083",296741,0.754573853966927,20345,0.126874951557082,9.92059046043579,10.5029008103456,11.3951211790881,5.65384615384615,523.949079058734,910,173681,0,1,0,0,9 +"16449",2015,45085,"SC","45","085",107346,0.493208875971159,8675,0.1243921524789,9.06820060481506,9.39565743774994,10.3697655000408,6.77692307692308,542.553533018716,338,62298,0,1,0,0,9 +"16450",2015,45087,"SC","45","087",27731,0.667123435865998,1568,0.150661714326927,7.35755620091035,8.09101504171053,9.02135667230868,7.83076923076923,748.804429901837,119,15892,0,1,0,0,9 +"16451",2015,45089,"SC","45","089",32515,0.329940027679533,2085,0.15048439181916,7.6425241342329,8.24485939591126,9.15175741454389,9.13076923076923,761.732275075907,143,18773,0,1,0,0,9 +"16452",2015,45091,"SC","45","091",250785,0.769555595430349,15428,0.124951651813306,9.64393931932812,10.4487146030195,11.2562897609238,5.42307692307692,388.361236316806,579,149088,0,1,0,0,9 +"16453",2015,46005,"SD","46","005",18146,0.8825085418274,984,0.140030860795768,6.89162589705225,7.53369370984863,8.47261414801827,2.59230769230769,403.26645831233,40,9919,0,1,0,0,9 +"16454",2015,46011,"SD","46","011",33861,0.940226218953959,6324,0.098254629219456,8.75210719832936,8.11132800328673,9.18799250831228,2.89230769230769,178.571428571429,37,20720,0,1,0,0,9 +"16455",2015,46013,"SD","46","013",38434,0.919004006868918,2673,0.132721028256231,7.89095671613892,8.3380665255188,9.29743507882712,2.63076923076923,341.082488106992,76,22282,0,1,0,0,9 +"16456",2015,46019,"SD","46","019",10219,0.960857226734514,564,0.153439671200705,6.33505425149806,6.94119005506837,7.92804560087478,3.32307692307692,391.180654338549,22,5624,0,1,0,0,9 +"16457",2015,46023,"SD","46","023",9359,0.649107810663532,555,0.124799658083129,6.31896811374643,6.81563999007433,7.73236922228439,3.39230769230769,880.962612806188,41,4654,0,1,0,0,9 +"16458",2015,46027,"SD","46","027",13798,0.918538918683867,3233,0.0929120162342369,8.08116577772543,7.06902342657826,8.34545542816193,3.03076923076923,242.943081906525,21,8644,0,1,0,0,9 +"16459",2015,46029,"SD","46","029",27907,0.954563371197191,1855,0.135414053821622,7.52563997504154,8.08240225392624,8.96635615479012,3.04615384615385,254.674203366669,41,16099,0,1,0,0,9 +"16460",2015,46031,"SD","46","031",4172,0.308724832214765,270,0.109300095877277,5.59842195899838,6.07764224334903,6.97260625130175,4.99230769230769,881.26159554731,19,2156,0,1,0,0,9 +"16461",2015,46033,"SD","46","033",8456,0.943826868495743,279,0.215941343424787,5.63121178182137,6.64378973314767,7.7828072628397,4.2,361.548277328796,17,4702,0,1,0,0,9 +"16462",2015,46035,"SD","46","035",19922,0.948147776327678,1478,0.136381889368537,7.29844510150815,7.71868549519847,8.60171814648593,2.5,357.270453733476,40,11196,0,1,0,0,9 +"16463",2015,46041,"SD","46","041",5702,0.218519817607857,399,0.099614170466503,5.98896141688986,6.3456363608286,7.3185395485679,11.2153846153846,1227.41220593249,36,2933,0,1,0,0,9 +"16464",2015,46047,"SD","46","047",6809,0.897194889117345,275,0.182405639594654,5.61677109766657,6.48920493132532,7.4899708988348,4.38461538461539,577.240241891149,21,3638,0,1,0,0,9 +"16465",2015,46065,"SD","46","065",17579,0.861709994880255,991,0.141987598839524,6.89871453432999,7.6314316645769,8.56674497024549,2.36153846153846,292.056074766355,30,10272,0,1,0,0,9 +"16466",2015,46071,"SD","46","071",3281,0.430356598597988,234,0.106065224017068,5.4553211153577,5.73979291217923,6.71417052990947,4.29230769230769,788.834951456311,13,1648,0,1,0,0,9 +"16467",2015,46079,"SD","46","079",12350,0.968097165991903,853,0.178056680161943,6.74875954749168,7.06987412845857,8.10319175228579,3.56153846153846,385.328956757528,27,7007,0,1,0,0,9 +"16468",2015,46081,"SD","46","081",24862,0.949762690049071,2092,0.164347196524817,7.64587582518481,7.82644313545601,8.88364023250367,3.21538461538462,348.90880481631,51,14617,0,1,0,0,9 +"16469",2015,46083,"SD","46","083",52997,0.962148800875521,2663,0.108496707360794,7.88720858581393,8.96979630598181,9.65297280442579,2.21538461538462,162.548764629389,50,30760,0,1,0,0,9 +"16470",2015,46093,"SD","46","093",26794,0.930693438829589,2383,0.135366126744794,7.77611547709874,8.03915739047324,8.93326847863642,3.11538461538462,198.449612403101,32,16125,0,1,0,0,9 +"16471",2015,46099,"SD","46","099",183563,0.889340444425075,12653,0.121658504164783,9.44564962018926,10.0405502029245,10.8994024429659,2.66153846153846,288.819708121142,321,111142,0,1,0,0,9 +"16472",2015,46103,"SD","46","103",108212,0.853472812627065,6780,0.14249805936495,8.82173238093444,9.42931524641817,10.3455417088749,3.10769230769231,342.857142857143,216,63000,0,1,0,0,9 +"16473",2015,46109,"SD","46","109",10210,0.595298726738492,608,0.133398628795299,6.41017488196617,6.90173720665657,7.86018505747217,4.28461538461538,518.931385738997,27,5203,0,1,0,0,9 +"16474",2015,46113,"SD","46","113",14364,0.0496379838485102,1196,0.0806878306878307,7.08673793451058,7.30720231476474,8.25400859056484,NA,1143.70290635091,85,7432,0,1,0,0,9 +"16475",2015,46115,"SD","46","115",6555,0.958810068649886,364,0.154996186117468,5.89715386763674,6.42486902390539,7.4599147662411,3.03076923076923,341.588385994876,12,3513,0,1,0,0,9 +"16476",2015,46121,"SD","46","121",10050,0.0925373134328358,721,0.0796019900497512,6.58063913728495,6.93147180559945,7.85010354517558,7.21538461538462,1111.56854672705,54,4858,0,1,0,0,9 +"16477",2015,46125,"SD","46","125",8133,0.981064797737612,370,0.153571867699496,5.91350300563827,6.84374994900622,7.67229245562876,2.63076923076923,270.209412294528,12,4441,0,1,0,0,9 +"16478",2015,46127,"SD","46","127",14934,0.965715816258203,794,0.14302932904781,6.67708346124714,7.51207124583547,8.33399124719497,3.32307692307692,280.93175699403,24,8543,0,1,0,0,9 +"16479",2015,46135,"SD","46","135",22702,0.933309840542684,1505,0.142806801162893,7.31654817718298,7.87549929244521,8.70317470904168,2.55384615384615,390.918658848293,52,13302,0,1,0,0,9 +"16480",2015,47001,"TN","47","001",75500,0.933099337748344,4404,0.145801324503311,8.39026849784257,9.09918532261002,10.0073519495664,5.78461538461538,493.297097311988,216,43787,0,1,0,0,9 +"16481",2015,47003,"TN","47","003",46954,0.886122588064915,3021,0.118775823146058,8.01334318138667,8.70863965598719,9.51760445915569,6.40769230769231,496.120561026559,133,26808,0,1,0,0,9 +"16482",2015,47005,"TN","47","005",16224,0.960798816568047,848,0.147250986193294,6.7428806357919,7.51316354523408,8.41648848729461,7.63076923076923,714.844186306266,64,8953,0,1,0,0,9 +"16483",2015,47007,"TN","47","007",14611,0.917117240435289,819,0.14119499007597,6.70808408385307,7.70345904786717,8.15363748638528,7.87692307692308,542.299349240781,50,9220,0,1,0,0,9 +"16484",2015,47009,"TN","47","009",127047,0.951317229056963,7497,0.141514557604666,8.92225821950306,9.64529955531205,10.5394822015918,5.13846153846154,440.391338518659,325,73798,0,1,0,0,9 +"16485",2015,47011,"TN","47","011",103846,0.926805076748262,7296,0.124309073050479,8.89508153175417,9.4938638092791,10.3420650120945,5.2,462.826677133418,283,61146,0,1,0,0,9 +"16486",2015,47013,"TN","47","013",39805,0.98613239542771,2269,0.138324331114182,7.72709448477984,8.53464010501996,9.36074117264371,7.87692307692308,827.097282394643,189,22851,0,1,0,0,9 +"16487",2015,47015,"TN","47","015",13746,0.97082787720064,770,0.140695475047286,6.64639051484773,7.4265490723973,8.30226579487337,5.71538461538462,652.387986213688,53,8124,0,1,0,0,9 +"16488",2015,47017,"TN","47","017",27986,0.879261059100979,1943,0.133102265418423,7.57198844937744,8.03947991910045,8.98318879926443,8.21538461538461,827.889528491042,128,15461,0,1,0,0,9 +"16489",2015,47019,"TN","47","019",56385,0.975667287399131,3182,0.145286867074577,8.06526520889773,8.821437352167,9.72322387685162,6.4,551.503827376288,183,33182,0,1,0,0,9 +"16490",2015,47021,"TN","47","021",39597,0.96780059095386,2311,0.141248074349067,7.74543561027438,8.55429627936774,9.40162167014161,4.80769230769231,570.861255894763,138,24174,0,1,0,0,9 +"16491",2015,47023,"TN","47","023",17130,0.890251021599533,1553,0.121833041447752,7.34794382314869,7.6246189861594,8.52078672692637,5.81538461538462,406.008932196508,40,9852,0,1,0,0,9 +"16492",2015,47025,"TN","47","025",31585,0.975241412062688,2132,0.146082000949818,7.66481578528574,8.25192471380136,9.15419321135318,7.19230769230769,627.211321968479,117,18654,0,1,0,0,9 +"16493",2015,47027,"TN","47","027",7668,0.975221700573813,392,0.143322900365154,5.97126183979046,6.73696695800186,7.64204440287326,8.79230769230769,830.761927367672,35,4213,0,1,0,0,9 +"16494",2015,47029,"TN","47","029",35157,0.964445202946782,1947,0.152828739653554,7.5740450053722,8.34569287325387,9.26188863385676,7.70769230769231,800.395256916996,162,20240,0,1,0,0,9 +"16495",2015,47031,"TN","47","031",54130,0.940753740993904,3282,0.129281359689636,8.09620827165004,8.78431534990266,9.65777881156177,5.5,642.898889538282,198,30798,0,1,0,0,9 +"16496",2015,47033,"TN","47","033",14588,0.843981354537976,820,0.129215793803126,6.7093043402583,7.44541755670169,8.33567131479285,6.35384615384615,355.17452541335,29,8165,0,1,0,0,9 +"16497",2015,47035,"TN","47","035",58259,0.980397878439383,2887,0.145986027909851,7.96797317966293,8.62532985002082,9.63003706233107,7.01538461538462,681.856540084388,202,29625,0,1,0,0,9 +"16498",2015,47037,"TN","47","037",680397,0.665355667353031,51282,0.115253300646534,10.8450950923941,11.4408922620704,12.3285955413914,4.33846153846154,374.593204524248,1646,439410,0,1,0,0,9 +"16499",2015,47039,"TN","47","039",11596,0.957399103139013,591,0.151948947913073,6.3818160174061,7.17395831975679,8.05134093329298,7.80769230769231,582.127123977344,37,6356,0,1,0,0,9 +"16500",2015,47041,"TN","47","041",19281,0.964887713292879,1038,0.139048804522587,6.94505106372583,7.77443551030296,8.62497078358967,6.8,586.272210697213,65,11087,0,1,0,0,9 +"16501",2015,47043,"TN","47","043",51357,0.939385088692875,3051,0.133496894288997,8.02322468471667,8.78523362361273,9.65104391551037,5.39230769230769,598.467659728388,182,30411,0,1,0,0,9 +"16502",2015,47045,"TN","47","045",37784,0.839191192038958,2310,0.12799068388736,7.74500280351584,8.42814337458273,9.30828344630615,7.11538461538461,502.629496905105,108,21487,0,1,0,0,9 +"16503",2015,47047,"TN","47","047",39291,0.706904889160368,2021,0.162963528543432,7.61134771740362,8.43119947824926,9.36734412078585,6.13846153846154,451.754385964912,103,22800,0,1,0,0,9 +"16504",2015,47049,"TN","47","049",17974,0.987927005674864,932,0.14860353844442,6.83733281468559,7.63964228785801,8.5358186555394,7.23846153846154,812.437311935807,81,9970,0,1,0,0,9 +"16505",2015,47051,"TN","47","051",41385,0.931496919173614,3248,0.141258910233176,8.08579470128157,8.48694014824522,9.38664385644458,5.13846153846154,542.758237531518,127,23399,0,1,0,0,9 +"16506",2015,47053,"TN","47","053",49327,0.801548847487177,2784,0.12891519857279,7.93164402145431,8.72599438101457,9.56724528946897,7.31538461538462,628.88509215166,173,27509,0,1,0,0,9 +"16507",2015,47055,"TN","47","055",28982,0.87926989165689,1778,0.148436960872266,7.48324441607385,8.081784206935,9.04227668692893,4.94615384615385,596.313697144922,99,16602,0,1,0,0,9 +"16508",2015,47057,"TN","47","057",22847,0.983411388803782,1247,0.144439094848339,7.12849594568004,7.94200680848986,8.79724623670353,6.58461538461538,671.090333283064,89,13262,0,1,0,0,9 +"16509",2015,47059,"TN","47","059",68621,0.96613281648475,4061,0.143556637181038,8.3091845276863,9.0273786102948,9.90068362520339,6.42307692307692,590.601293213177,232,39282,0,1,0,0,9 +"16510",2015,47061,"TN","47","061",13339,0.982232551165755,764,0.136891820976085,6.63856778916652,7.38770923908104,8.22040309993373,7.7,767.987065481002,57,7422,0,1,0,0,9 +"16511",2015,47063,"TN","47","063",63379,0.928225437447735,3794,0.125325423247448,8.24117615049496,9.00072983494456,9.8027828484145,6.16153846153846,576.216456964703,207,35924,0,1,0,0,9 +"16512",2015,47065,"TN","47","065",353985,0.767956269333446,23531,0.135709140217806,10.0660739797559,10.6955293900703,11.5972482308821,5.26923076923077,417.315536652725,887,212549,0,1,0,0,9 +"16513",2015,47067,"TN","47","067",6577,0.985859814505094,381,0.155846130454615,5.9427993751267,6.65286302935335,7.55381085200823,9.63076923076923,914.315569487983,35,3828,0,1,0,0,9 +"16514",2015,47069,"TN","47","069",25823,0.566007047980483,1769,0.130968516438834,7.47816969415979,8.11880299698004,8.77986510086385,7.43846153846154,532.656943563729,84,15770,0,1,0,0,9 +"16515",2015,47071,"TN","47","071",25760,0.951436335403727,1405,0.145186335403727,7.24779258176785,7.99023818572036,8.88682384651519,7.13076923076923,760.16458609387,109,14339,0,1,0,0,9 +"16516",2015,47073,"TN","47","073",56397,0.974626309910102,3189,0.144883593098924,8.06746266701006,8.83826168288565,9.7111762641128,6.33076923076923,617.682308472389,201,32541,0,1,0,0,9 +"16517",2015,47075,"TN","47","075",18040,0.48270509977827,1160,0.153436807095344,7.05617528410041,7.64300363556072,8.62425226370964,8.3,654.160654160654,68,10395,0,1,0,0,9 +"16518",2015,47077,"TN","47","077",28092,0.905311120603731,1599,0.12964545066211,7.37713371283395,8.18618599422608,9.01760477683336,7.89230769230769,738.717487119002,119,16109,0,1,0,0,9 +"16519",2015,47079,"TN","47","079",32133,0.90620234649737,1620,0.14757414496001,7.39018142822643,8.19229373114764,9.11482017011877,6.48461538461538,661.502798665687,117,17687,0,1,0,0,9 +"16520",2015,47081,"TN","47","081",24395,0.937897110063538,1453,0.139044886247182,7.28138566357028,8.04302088529828,8.80971354050827,5.64615384615385,653.105653445813,96,14699,0,1,0,0,9 +"16521",2015,47083,"TN","47","083",8127,0.954964931709118,477,0.145318075550634,6.16751649088834,6.84268328223842,7.74500280351584,8.55384615384615,608.960417572858,28,4598,0,1,0,0,9 +"16522",2015,47085,"TN","47","085",18153,0.95659119704732,1029,0.145044896160414,6.93634273583405,7.68708015578313,8.56197533418813,6.70769230769231,659.681800543267,68,10308,0,1,0,0,9 +"16523",2015,47087,"TN","47","087",11541,0.98587644051642,635,0.166883285677151,6.45362499889269,7.22402480828583,8.11132800328673,7.78461538461538,763.016157989228,51,6684,0,1,0,0,9 +"16524",2015,47089,"TN","47","089",53049,0.965032328601859,3300,0.139455974664932,8.10167774745457,8.74782860848874,9.64368001685033,6.33846153846154,564.545245675649,172,30467,0,1,0,0,9 +"16525",2015,47091,"TN","47","091",17851,0.967340765223237,969,0.140552350008403,6.87626461189077,7.74586822979227,8.42376124662369,5.58461538461538,593.276203032301,63,10619,0,1,0,0,9 +"16526",2015,47093,"TN","47","093",451551,0.87558880392248,41408,0.125673511962104,10.6312293778606,10.9415356342295,11.8514741157792,4.62307692307692,451.486187583583,1239,274427,0,1,0,0,9 +"16527",2015,47095,"TN","47","095",7603,0.696304090490596,687,0.124161515191372,6.53233429222235,7.05703698169789,7.34342622914737,8.46153846153846,583.43057176196,30,5142,0,1,0,0,9 +"16528",2015,47097,"TN","47","097",26907,0.629241461329765,1870,0.122273014457204,7.53369370984863,8.17751582384608,8.91004576147356,8.78461538461539,643.421778295239,105,16319,0,1,0,0,9 +"16529",2015,47099,"TN","47","099",42607,0.968315065599549,2536,0.127303025324477,7.83834331555712,8.51177855871474,9.38907215991958,6.53076923076923,547.74744172222,129,23551,0,1,0,0,9 +"16530",2015,47101,"TN","47","101",11884,0.965668125210367,661,0.152978795018512,6.49375383985169,7.27447955877387,8.13153071060425,7.26153846153846,701.283199045061,47,6702,0,1,0,0,9 +"16531",2015,47103,"TN","47","103",33634,0.91133971576381,1863,0.147321163108759,7.52994337060159,8.25582842728183,9.17243079890296,4.76923076923077,567.324207567793,109,19213,0,1,0,0,9 +"16532",2015,47105,"TN","47","105",50950,0.966045142296369,2485,0.150225711481845,7.81802793853073,8.59507973007331,9.53618490552231,5.56923076923077,554.963431217612,151,27209,0,1,0,0,9 +"16533",2015,47107,"TN","47","107",52519,0.941849616329328,3230,0.142938745977646,8.0802374162167,8.72566970568704,9.63971730013066,6.26153846153846,585.0869319504,176,30081,0,1,0,0,9 +"16534",2015,47109,"TN","47","109",25874,0.92772667542707,1484,0.136353095771817,7.30249642372733,8.06996814905984,8.90490157793514,8.40769230769231,674.652347514801,98,14526,0,1,0,0,9 +"16535",2015,47111,"TN","47","111",23075,0.97421451787649,1445,0.127020585048754,7.27586460054653,7.94413749111411,8.82570677344795,5.25384615384615,555.430458605419,74,13323,0,1,0,0,9 +"16536",2015,47113,"TN","47","113",97613,0.604192064581562,7458,0.134613217501767,8.91704256073877,9.34049105644123,10.310950663307,5.83076923076923,511.711331504537,291,56868,0,1,0,0,9 +"16537",2015,47115,"TN","47","115",28407,0.947301721406696,1555,0.147182032597599,7.34923082461333,8.146419323098,9.03049574505712,6.70769230769231,716.019417475728,118,16480,0,1,0,0,9 +"16538",2015,47117,"TN","47","117",31597,0.91388422951546,1846,0.136342057790297,7.5207764150628,8.31041499418829,9.14867771158408,5.55384615384615,559.862187769165,104,18576,0,1,0,0,9 +"16539",2015,47119,"TN","47","119",87547,0.857722137823112,5028,0.14112419614607,8.52277756971014,9.32509660927437,10.1992121966311,5.08461538461538,436.311914967229,227,52027,0,1,0,0,9 +"16540",2015,47121,"TN","47","121",11813,0.968847879454838,600,0.147041395073224,6.39692965521615,7.29979736675816,8.1199938277251,7.57692307692308,933.333333333333,63,6750,0,1,0,0,9 +"16541",2015,47123,"TN","47","123",45645,0.96194544857049,2591,0.141987074159273,7.85979918056211,8.59230066390304,9.46622213187817,6.23846153846154,631.111457399977,162,25669,0,1,0,0,9 +"16542",2015,47125,"TN","47","125",192749,0.743894909960622,17658,0.0904492370907242,9.77894421746153,10.143094829881,10.9852757735917,5.78461538461538,349.139263132397,418,119723,0,1,0,0,9 +"16543",2015,47127,"TN","47","127",6261,0.958153649576745,309,0.154767609008146,5.73334127689775,6.64768837356333,7.48885295573346,4.48461538461538,473.142220985249,17,3593,0,1,0,0,9 +"16544",2015,47129,"TN","47","129",21514,0.955331412103746,1340,0.136794645347216,7.20042489294496,7.97693875695943,8.63799389156194,7.41538461538462,633.197648123021,84,13266,0,1,0,0,9 +"16545",2015,47131,"TN","47","131",30580,0.879267495094833,1747,0.142282537606279,7.46565531013406,8.24038511551633,9.08636319215647,8.56923076923077,552.486187845304,96,17376,0,1,0,0,9 +"16546",2015,47133,"TN","47","133",22062,0.982957120841266,1244,0.139379929290182,7.12608727329912,7.92262357421729,8.73681053295389,7.06153846153846,695.174197720475,86,12371,0,1,0,0,9 +"16547",2015,47135,"TN","47","135",7855,0.958625079567155,421,0.144493952896244,6.04263283368238,6.78105762593618,7.64539769942863,6.68461538461538,948.415452232246,41,4323,0,1,0,0,9 +"16548",2015,47139,"TN","47","139",16778,0.981225414232924,898,0.142686851829777,6.8001700683022,7.65775527113487,8.48404997282298,6.54615384615385,679.851668726823,66,9708,0,1,0,0,9 +"16549",2015,47141,"TN","47","141",75091,0.94920829393669,8232,0.117377581867334,9.01578427751389,9.03396112463786,9.99738764772918,5.79230769230769,505.466355610448,221,43722,0,1,0,0,9 +"16550",2015,47143,"TN","47","143",32402,0.962224554039874,2112,0.134991667181038,7.65539064482615,8.25634777291802,9.12771934328785,7.33846153846154,616.374843178967,113,18333,0,1,0,0,9 +"16551",2015,47145,"TN","47","145",52799,0.958010568381977,2743,0.160912138487471,7.9168074909376,8.69030580912488,9.63194126199375,6.40769230769231,687.33108671716,206,29971,0,1,0,0,9 +"16552",2015,47147,"TN","47","147",68709,0.90723194923518,3907,0.132035104571454,8.27052509505507,9.10819689830748,9.93333757450501,4.84615384615385,471.162859539198,191,40538,0,1,0,0,9 +"16553",2015,47149,"TN","47","149",298401,0.806736572598617,29724,0.104242278008452,10.2997100792774,10.6568592748912,11.4525914259305,4.44615384615385,300.554247887233,558,185657,0,1,0,0,9 +"16554",2015,47151,"TN","47","151",21896,0.989724150529777,1292,0.128470953598831,7.16394668434255,7.9672801789422,8.75809807230909,9.23846153846154,603.653693407466,76,12590,0,1,0,0,9 +"16555",2015,47153,"TN","47","153",14641,0.979714500375657,842,0.142954716207909,6.73578001424233,7.50384074669895,8.34474275441755,6.44615384615385,538.599640933573,45,8355,0,1,0,0,9 +"16556",2015,47155,"TN","47","155",95492,0.96691869475977,5741,0.142902023206132,8.65538869016764,9.3698196865215,10.2652445608817,6.01538461538462,521.49150129038,293,56185,0,1,0,0,9 +"16557",2015,47157,"TN","47","157",937598,0.421914295892269,68891,0.124151288718619,11.1402808243768,11.6849272893573,12.5944085495596,6.36153846153846,494.319937215686,2784,563198,0,1,0,0,9 +"16558",2015,47159,"TN","47","159",19316,0.965054876786084,1115,0.139314557879478,7.01660968389422,7.75405263903576,8.6417090661138,5.56923076923077,476.737000088285,54,11327,0,1,0,0,9 +"16559",2015,47161,"TN","47","161",13193,0.959145001136967,727,0.149245812173122,6.58892647753352,7.33302301438648,8.23244015847034,7.6,574.562548968399,44,7658,0,1,0,0,9 +"16560",2015,47163,"TN","47","163",156336,0.962241582233139,8817,0.145846126292089,9.08443695508703,9.83793518429589,10.7313404359484,5.73076923076923,584.224821240508,527,90205,0,1,0,0,9 +"16561",2015,47165,"TN","47","165",175467,0.905024876472499,10009,0.128656670485048,9.21123996721902,10.0773568225151,10.871725365033,4.56923076923077,392.605446067644,405,103157,0,1,0,0,9 +"16562",2015,47167,"TN","47","167",61570,0.794299171674517,3913,0.127286015916843,8.27205962221041,8.96661138705286,9.81727585571706,7.03076923076923,605.560143132397,220,36330,0,1,0,0,9 +"16563",2015,47169,"TN","47","169",8053,0.891096485781696,480,0.141810505401714,6.17378610390194,6.88141130364254,7.7848892956551,5.85384615384615,566.512798992866,27,4766,0,1,0,0,9 +"16564",2015,47171,"TN","47","171",17830,0.987156477846326,932,0.158104318564218,6.83733281468559,7.62851762657506,8.53464010501996,7.90769230769231,647.312671635936,66,10196,0,1,0,0,9 +"16565",2015,47173,"TN","47","173",19159,0.987682029333472,1020,0.146354193851454,6.92755790627832,7.7596141506969,8.64047220757641,6.75384615384615,741.998927230467,83,11186,0,1,0,0,9 +"16566",2015,47175,"TN","47","175",5697,0.982446901878182,279,0.168509741969458,5.63121178182137,6.52356230614951,7.37588214821501,7.92307692307692,582.82208588957,19,3260,0,1,0,0,9 +"16567",2015,47177,"TN","47","177",40271,0.947455985696903,2277,0.133147922822875,7.73061406606374,8.56541176368671,9.35227386786485,5.6,593.536088727147,137,23082,0,1,0,0,9 +"16568",2015,47179,"TN","47","179",126238,0.931407341687923,11597,0.130689649709279,9.3585017229567,9.63475807300103,10.5565416395296,5.51538461538462,480.133326279033,363,75604,0,1,0,0,9 +"16569",2015,47181,"TN","47","181",16765,0.925022368028631,1060,0.134566060244557,6.96602418710611,7.71601526664259,8.35467426191846,7.32307692307692,503.095975232198,52,10336,0,1,0,0,9 +"16570",2015,47183,"TN","47","183",33875,0.901166051660517,4152,0.124428044280443,8.33134542484572,8.18144069571937,9.20733586295588,6.73846153846154,453.286325862503,90,19855,0,1,0,0,9 +"16571",2015,47185,"TN","47","185",26363,0.969199256533778,1417,0.139513712399954,7.25629723969068,8.03106018024062,8.92399074475818,6,702.670146556916,105,14943,0,1,0,0,9 +"16572",2015,47187,"TN","47","187",211713,0.907965028127701,10943,0.128400239947476,9.30045526141844,10.3377668491603,11.0485857653489,3.98461538461538,192.738277821975,235,121927,0,1,0,0,9 +"16573",2015,47189,"TN","47","189",128610,0.906484721250292,7018,0.132711297721795,8.85623355614316,9.77798101729641,10.5641631929491,4.53076923076923,385.932560590095,293,75920,0,1,0,0,9 +"16574",2015,48001,"TX","48","001",57665,0.759334084800139,3453,0.11828665568369,8.14699869738999,9.13345932764022,9.41499403397655,3.96923076923077,551.303323877322,206,37366,0,1,0,0,9 +"16575",2015,48003,"TX","48","003",18058,0.953150958024144,1333,0.0989035330601395,7.19518732017871,7.69984240739699,8.48446336679332,3.51538461538462,500.098058442832,51,10198,0,1,0,0,9 +"16576",2015,48005,"TX","48","005",87837,0.819905051402029,5747,0.120894383915662,8.65643325850774,9.27303344131461,10.1254704305296,5.61538461538462,502.147740335169,249,49587,0,1,0,0,9 +"16577",2015,48007,"TX","48","007",24812,0.944019023053361,1339,0.154038368531356,7.19967834569117,7.79934339821592,8.80447518384668,5.10769230769231,747.169811320755,99,13250,0,1,0,0,9 +"16578",2015,48009,"TX","48","009",8762,0.968272083999087,489,0.148710340104999,6.19236248947487,6.85540879860993,7.81318726752142,4.46153846153846,500.700981373923,25,4993,0,1,0,0,9 +"16579",2015,48013,"TX","48","013",48382,0.964945640940846,3073,0.116179570914803,8.03040956213048,8.68270762989381,9.5009930278728,4.79230769230769,439.037094913867,118,26877,0,1,0,0,9 +"16580",2015,48015,"TX","48","015",29477,0.884655833361604,1727,0.146317467856295,7.45414107814668,8.10952565975287,9.01042494678118,4.61538461538461,431.61094224924,71,16450,0,1,0,0,9 +"16581",2015,48019,"TX","48","019",21127,0.970227670753065,930,0.190609173096038,6.8351845861473,7.5595594960077,8.69868106746161,3.99230769230769,406.917599186165,48,11796,0,1,0,0,9 +"16582",2015,48021,"TX","48","021",80109,0.88437004581258,4601,0.140071652373641,8.43402895015547,9.20943996673302,10.0186003596366,3.90769230769231,374.555883737854,175,46722,0,1,0,0,9 +"16583",2015,48023,"TX","48","023",3610,0.954847645429363,181,0.141274238227147,5.19849703126583,5.91079664404053,6.84161547647759,3.56153846153846,849.707912904939,16,1883,0,1,0,0,9 +"16584",2015,48025,"TX","48","025",32620,0.89435928877989,2843,0.10340282035561,7.952615111651,8.46168048148598,8.866581653304,6.21538461538462,326.611758023289,69,21126,0,1,0,0,9 +"16585",2015,48027,"TX","48","027",336434,0.691978218610485,31704,0.0930880945445466,10.3641981348703,10.6561764158044,11.5006909273019,4.69230769230769,333.264636248938,663,198941,0,1,0,0,9 +"16586",2015,48029,"TX","48","029",1894811,0.861824213602307,146024,0.104556074458086,11.8915262707426,12.4389566046752,13.2509184084553,3.83846153846154,332.351506427027,3754,1129527,0,1,0,0,9 +"16587",2015,48031,"TX","48","031",11030,0.961831368993654,519,0.178603807796918,6.25190388316589,7.04664727784876,8.02715010683277,3.15384615384615,391.708829769871,24,6127,0,1,0,0,9 +"16588",2015,48035,"TX","48","035",17860,0.960862262038074,876,0.150223964165733,6.77536609093639,7.50933526601659,8.45701846838017,4.52307692307692,567.816584529676,53,9334,0,1,0,0,9 +"16589",2015,48037,"TX","48","037",93146,0.71866746827561,6083,0.123526506774311,8.7132532743207,9.39955478502731,10.1715279847326,4.83846153846154,514.999356250805,280,54369,0,1,0,0,9 +"16590",2015,48039,"TX","48","039",345295,0.781772107907731,20992,0.11614995873094,9.95189669174382,10.8267538981467,11.5208241877636,4.60769230769231,319.246558802222,661,207050,0,1,0,0,9 +"16591",2015,48041,"TX","48","041",216339,0.811416341944818,45488,0.0803091444445985,10.7252038338908,10.0289300682266,11.1209489750426,3.35384615384615,224.062277822862,312,139247,0,1,0,0,9 +"16592",2015,48043,"TX","48","043",9140,0.95,530,0.148687089715536,6.27287700654617,6.93439720992856,7.8739783796045,3.97692307692308,449.522382468627,24,5339,0,1,0,0,9 +"16593",2015,48047,"TX","48","047",7203,0.969873663751215,523,0.1130084686936,6.25958146406492,6.56807791141198,7.48773376143644,10,674.581759309228,25,3706,0,1,0,0,9 +"16594",2015,48049,"TX","48","049",37729,0.938164276816242,2321,0.132259005009409,7.74975340627444,8.36637030168165,9.25263328416643,4.33846153846154,610.899995189764,127,20789,0,1,0,0,9 +"16595",2015,48051,"TX","48","051",17612,0.851919146036793,1007,0.151203724733137,6.91473089271856,7.50218648660292,8.50592999913753,4.40769230769231,555.727076258104,54,9717,0,1,0,0,9 +"16596",2015,48053,"TX","48","053",44738,0.956614064106576,2441,0.150789038401359,7.80016307039296,8.5016733797582,9.4343635363174,3.67692307692308,420.643908752629,104,24724,0,1,0,0,9 +"16597",2015,48055,"TX","48","055",40386,0.89850443222899,3325,0.123508146387362,8.10922495308995,8.52416880515266,9.37509180757667,4.37692307692308,376.97914048756,90,23874,0,1,0,0,9 +"16598",2015,48057,"TX","48","057",21873,0.902299638824121,1433,0.12737164540758,7.26752542782817,7.80384330353877,8.67948209445996,4.02307692307692,455.432661027977,56,12296,0,1,0,0,9 +"16599",2015,48059,"TX","48","059",13595,0.963295329165134,625,0.149172489885987,6.4377516497364,7.32317071794347,8.2409125416889,4.29230769230769,665.601703940362,50,7512,0,1,0,0,9 +"16600",2015,48061,"TX","48","061",419062,0.976581030969164,31643,0.0962077210532093,10.3622722340745,10.8640822099668,11.6578047262883,7.17692307692308,323.219263868127,720,222759,0,1,0,0,9 +"16601",2015,48063,"TX","48","063",12691,0.794184855409345,804,0.127334331415964,6.68959926917897,7.22183582528845,8.16621626859214,6.18461538461538,484.652665589661,33,6809,0,1,0,0,9 +"16602",2015,48065,"TX","48","065",6014,0.966411706019288,315,0.145493847688726,5.75257263882563,6.53958595561767,7.40488757561612,3.22307692307692,389.338125187182,13,3339,0,1,0,0,9 +"16603",2015,48067,"TX","48","067",30137,0.809901450044795,1650,0.142781298735773,7.40853056689463,8.10046489102936,9.03990785957464,6.83846153846154,646.989956251155,105,16229,0,1,0,0,9 +"16604",2015,48069,"TX","48","069",7774,0.950347311551325,544,0.125932595832261,6.29894924685594,6.80350525760834,7.60140233458373,3.41538461538462,441.284628585438,18,4079,0,1,0,0,9 +"16605",2015,48071,"TX","48","071",39025,0.88709801409353,2397,0.118078155028828,7.78197323443438,8.60098271714592,9.33432635175717,5.36153846153846,401.939796408755,92,22889,0,1,0,0,9 +"16606",2015,48073,"TX","48","073",51567,0.824984971008591,3336,0.123179552814785,8.11252776347864,8.72907355045174,9.51554305814595,5.20769230769231,489.988719684151,139,28368,0,1,0,0,9 +"16607",2015,48077,"TX","48","077",10363,0.968252436553122,494,0.167229566727782,6.20253551718792,7.04403289727469,7.97315543344413,4.4,551.629029477676,32,5801,0,1,0,0,9 +"16608",2015,48083,"TX","48","083",8317,0.943128531922568,367,0.154382589876157,5.90536184805457,6.78105762593618,7.68063742756094,5.56923076923077,706.794345645235,31,4386,0,1,0,0,9 +"16609",2015,48085,"TX","48","085",915014,0.74418096335138,51787,0.106408207961845,10.8548944314996,11.909060516482,12.5523714429691,3.67692307692308,192.493129114857,1066,553786,0,1,0,0,9 +"16610",2015,48089,"TX","48","089",20946,0.843932015659314,1225,0.150100257805786,7.11069612297883,7.64156444126097,8.61195776786066,3.97692307692308,570.918822479929,64,11210,0,1,0,0,9 +"16611",2015,48091,"TX","48","091",128870,0.950849693489563,7034,0.147319003647086,8.85851081303393,9.63861013273761,10.5290515817723,3.70769230769231,297.404837242147,219,73637,0,1,0,0,9 +"16612",2015,48093,"TX","48","093",13392,0.969235364396655,693,0.136648745519713,6.5410299991899,7.2115567333138,8.14467918344776,4.26923076923077,503.307448950244,35,6954,0,1,0,0,9 +"16613",2015,48097,"TX","48","097",39179,0.934684397253631,2561,0.140534469996682,7.84815308619953,8.34450508359052,9.30301070681749,3.73076923076923,461.925451635033,101,21865,0,1,0,0,9 +"16614",2015,48099,"TX","48","099",76242,0.762099630125128,8342,0.0829332913617166,9.02905827475689,9.3101857069459,10.0945623543248,4.80769230769231,370.600414078675,179,48300,0,1,0,0,9 +"16615",2015,48111,"TX","48","111",7301,0.939734282974935,500,0.0972469524722641,6.21460809842219,6.80350525760834,7.56112158953024,2.18461538461538,295.057782149004,12,4067,0,1,0,0,9 +"16616",2015,48113,"TX","48","113",2557615,0.682795104032468,184707,0.105513144081498,12.1265260647653,12.7870976127031,13.5722931175657,4.31538461538462,316.072465017753,4912,1554074,0,1,0,0,9 +"16617",2015,48115,"TX","48","115",13000,0.913230769230769,1044,0.104461538461538,6.95081476844258,7.34794382314869,8.03008409426756,4.56923076923077,572.59193281588,45,7859,0,1,0,0,9 +"16618",2015,48117,"TX","48","117",18819,0.955736224028907,1358,0.105265954620331,7.21376830811864,7.72134861261795,8.50875771259514,3.17692307692308,257.298367144978,26,10105,0,1,0,0,9 +"16619",2015,48119,"TX","48","119",5154,0.891928599146294,257,0.145518044237485,5.54907608489522,6.31716468674728,7.24136628332232,4.56923076923077,500.35739814153,14,2798,0,1,0,0,9 +"16620",2015,48121,"TX","48","121",778799,0.801033386021297,52076,0.10407563440631,10.8604594690173,11.7059314065662,12.4176617000047,3.59230769230769,203.509564538818,991,486955,0,1,0,0,9 +"16621",2015,48123,"TX","48","123",20632,0.887165568049632,1049,0.136923226056611,6.9555926083963,7.82843635915759,8.54675199365778,4.00769230769231,427.642832706124,50,11692,0,1,0,0,9 +"16622",2015,48127,"TX","48","127",10914,0.96637346527396,762,0.110591900311526,6.63594655568665,7.12849594568004,7.9561263512135,4.71538461538462,417.101147028154,24,5754,0,1,0,0,9 +"16623",2015,48131,"TX","48","131",11313,0.971979139043578,867,0.10731017413595,6.76503897678054,7.14913159855741,7.94165125293056,8.16153846153846,892.712222041876,55,6161,0,1,0,0,9 +"16624",2015,48133,"TX","48","133",18151,0.956035480138835,1189,0.140763594292325,7.08086789669078,7.5234813125735,8.46779284112111,4.79230769230769,568.828213879408,55,9669,0,1,0,0,9 +"16625",2015,48135,"TX","48","135",159859,0.914731106787857,13298,0.0966726928105393,9.4953689269624,9.87565376160669,10.7084444081481,4.67692307692308,435.592926490985,402,92288,0,1,0,0,9 +"16626",2015,48139,"TX","48","139",163331,0.878045196564033,10571,0.121403775155972,9.26586968176866,9.97301361518474,10.7855180477252,3.97692307692308,338.498412631667,322,95126,0,1,0,0,9 +"16627",2015,48141,"TX","48","141",831382,0.92959193246907,72005,0.100975243630485,11.1844908400315,11.5565499289022,12.3984187878461,5.20769230769231,291.01900366584,1398,480381,0,1,0,0,9 +"16628",2015,48143,"TX","48","143",41200,0.955558252427185,5849,0.104223300970874,8.67402598544303,8.3059782109673,9.38479775371334,3.94615384615385,252.249222231565,60,23786,0,1,0,0,9 +"16629",2015,48145,"TX","48","145",17215,0.726517571884984,1202,0.129886726691839,7.09174211509515,7.62900388965296,8.62748154531036,4.26923076923077,419.594067135051,43,10248,0,1,0,0,9 +"16630",2015,48147,"TX","48","147",33501,0.905286409360915,2107,0.136324288827199,7.65302041380419,8.31409733540581,9.07222706984655,4.13846153846154,620.067643742954,121,19514,0,1,0,0,9 +"16631",2015,48149,"TX","48","149",24923,0.914496649681018,1291,0.158287525578783,7.16317239084664,7.83636976054512,8.80971354050827,3.34615384615385,375.093773443361,50,13330,0,1,0,0,9 +"16632",2015,48157,"TX","48","157",715260,0.57684198752901,42281,0.120071023124458,10.6520930915493,11.6083447297337,12.3025684857976,4.3,216.630406141204,929,428841,0,1,0,0,9 +"16633",2015,48159,"TX","48","159",10600,0.93622641509434,515,0.140471698113208,6.24416690066374,6.98749024700099,7.94697135769359,4.90769230769231,528.262017960909,30,5679,0,1,0,0,9 +"16634",2015,48161,"TX","48","161",19745,0.813167890605217,926,0.132995695112687,6.83087423464618,7.86672228513673,8.5179928715868,5.47692307692308,461.538461538462,51,11050,0,1,0,0,9 +"16635",2015,48163,"TX","48","163",19348,0.922472606987802,2065,0.0891048170353525,7.63288550539513,7.76259604854007,8.34141021146186,3.88461538461538,324.760818046169,37,11393,0,1,0,0,9 +"16636",2015,48165,"TX","48","165",20204,0.960106909522867,1379,0.0900316768956642,7.2291138777933,7.76302130901852,8.54383512236266,3.26923076923077,340.941377024339,36,10559,0,1,0,0,9 +"16637",2015,48167,"TX","48","167",321074,0.814908712633225,20214,0.132770015635025,9.91413071263461,10.6428024139411,11.4843304980901,5.02307692307692,455.461653652243,879,192991,0,1,0,0,9 +"16638",2015,48171,"TX","48","171",25913,0.974877474626635,1232,0.156600933894184,7.11639414409346,7.77863014732581,8.80851861878282,2.9,364.397581020313,47,12898,0,1,0,0,9 +"16639",2015,48177,"TX","48","177",20492,0.897960179582276,1310,0.128293968377904,7.1777824161952,7.75233516330229,8.60940767540405,3.7,443.852640923214,50,11265,0,1,0,0,9 +"16640",2015,48179,"TX","48","179",23262,0.918450692115897,1394,0.116971885478463,7.23993259132047,8.01168672912785,8.65538869016764,5.66923076923077,502.135951435209,67,13343,0,1,0,0,9 +"16641",2015,48181,"TX","48","181",125672,0.896826659876504,7900,0.135575148004329,8.97461803845511,9.5694822704787,10.4943251142715,4.07692307692308,509.376190543382,361,70871,0,1,0,0,9 +"16642",2015,48183,"TX","48","183",123887,0.758594525656445,9050,0.120803635571125,9.11052003669397,9.59171768455526,10.4873498605461,4.99230769230769,571.500964231922,406,71041,0,1,0,0,9 +"16643",2015,48185,"TX","48","185",27302,0.818987619954582,1707,0.143579224965204,7.44249272279444,8.1199938277251,8.8376812155932,5.37692307692308,504.832851074309,82,16243,0,1,0,0,9 +"16644",2015,48187,"TX","48","187",150608,0.88093593965792,9411,0.114236959524062,9.14963449685879,9.94357327607541,10.6995297118141,3.56923076923077,316.711667065404,278,87777,0,1,0,0,9 +"16645",2015,48189,"TX","48","189",34010,0.912907968244634,2764,0.106968538665099,7.92443418488756,8.28979058318164,9.07658038179666,6.4,431.527503379432,83,19234,0,1,0,0,9 +"16646",2015,48193,"TX","48","193",8084,0.96301335972291,425,0.142256308758041,6.05208916892442,6.70563909486,7.63046126178363,4.69230769230769,1003.58422939068,42,4185,0,1,0,0,9 +"16647",2015,48199,"TX","48","199",55767,0.930406871447272,3190,0.134631592160238,8.06777619577889,8.8373908555447,9.69356866855007,5.67692307692308,476.947535771065,153,32079,0,1,0,0,9 +"16648",2015,48201,"TX","48","201",4556559,0.710382769102737,327065,0.105863876666581,12.6979142068843,13.3864139116272,14.1424957920934,4.67692307692308,303.964423781489,8421,2770390,0,1,0,0,9 +"16649",2015,48203,"TX","48","203",66710,0.759361415080198,4204,0.132139109578774,8.34379173199684,8.97714648480847,9.86692729722433,5.25384615384615,504.543533389687,191,37856,0,1,0,0,9 +"16650",2015,48207,"TX","48","207",5819,0.930744114108953,444,0.137480666781234,6.09582456243222,6.49072353450251,7.27031288607902,3.51538461538462,490.79754601227,16,3260,0,1,0,0,9 +"16651",2015,48209,"TX","48","209",194588,0.921855407322137,25036,0.103988940736325,10.1280700680446,10.1330901989111,11.0054608533364,3.46153846153846,230.106580051338,277,120379,0,1,0,0,9 +"16652",2015,48213,"TX","48","213",79509,0.912437585682124,4352,0.14459998239193,8.37839078853578,9.04981944514108,10.0024727892205,4.91538461538462,644.386447097951,279,43297,0,1,0,0,9 +"16653",2015,48215,"TX","48","215",838741,0.974164849458891,66240,0.0805421459067817,11.1010397890591,11.5934173025391,12.3382668945765,7.96923076923077,247.037575834005,1097,444062,0,1,0,0,9 +"16654",2015,48217,"TX","48","217",34841,0.910364226055509,1951,0.135242960879424,7.57609734062311,8.19450550976564,9.1465482388884,4.58461538461538,548.239720505241,102,18605,0,1,0,0,9 +"16655",2015,48219,"TX","48","219",23291,0.931733287535958,1970,0.116396891503156,7.58578882173203,7.85127199710988,8.76966250811227,4.18461538461538,551.048522883821,72,13066,0,1,0,0,9 +"16656",2015,48221,"TX","48","221",55246,0.970459399775549,2685,0.151739492451942,7.89543600694297,8.60538720215215,9.61447125707121,4.54615384615385,513.780197346036,151,29390,0,1,0,0,9 +"16657",2015,48223,"TX","48","223",35970,0.9007784264665,2218,0.127467333889352,7.70436116791031,8.33110454805304,9.21830854162536,4.23846153846154,425.489312709616,85,19977,0,1,0,0,9 +"16658",2015,48225,"TX","48","225",22743,0.725981620718463,1249,0.140131029327705,7.13009851012558,7.9402277651457,8.64558640618464,4.49230769230769,478.287276040085,63,13172,0,1,0,0,9 +"16659",2015,48227,"TX","48","227",37114,0.893113110955435,2884,0.114134827827774,7.96693349840484,8.43663368355782,9.12183697338478,4.61538461538461,490.97041369594,115,23423,0,1,0,0,9 +"16660",2015,48231,"TX","48","231",89708,0.881816560395951,6179,0.131080840058858,8.72891172506098,9.25521813075427,10.1662748044549,4.78461538461538,491.907637107197,255,51839,0,1,0,0,9 +"16661",2015,48233,"TX","48","233",21798,0.935498669602716,1341,0.136342783741628,7.20117088328168,7.89394513823596,8.69734573092535,4.46153846153846,610.50061050061,75,12285,0,1,0,0,9 +"16662",2015,48237,"TX","48","237",8886,0.939905469277515,659,0.120414134593743,6.49072353450251,6.95081476844258,7.64012317269536,4.26153846153846,452.915644461219,24,5299,0,1,0,0,9 +"16663",2015,48239,"TX","48","239",14807,0.909637333693523,870,0.133585466333491,6.76849321164863,7.45414107814668,8.2960476427647,3.79230769230769,441.068365596667,36,8162,0,1,0,0,9 +"16664",2015,48241,"TX","48","241",35268,0.815441760235908,1979,0.138652602926165,7.59034694560257,8.24275634571448,9.18142636181154,7.53846153846154,722.18807621389,141,19524,0,1,0,0,9 +"16665",2015,48245,"TX","48","245",255115,0.598326245026753,18712,0.124755502420477,9.83692030826401,10.3764243757593,11.1793809384204,7.01538461538462,490.446109781457,750,152922,0,1,0,0,9 +"16666",2015,48249,"TX","48","249",41540,0.970654790563312,2904,0.113143957631199,7.97384437594469,8.4885879344059,9.35470042248302,7.97692307692308,623.893805309734,141,22600,0,1,0,0,9 +"16667",2015,48251,"TX","48","251",159346,0.939891807764236,9868,0.12334165903129,9.19705247764925,9.92749700499648,10.7329777942734,4.40769230769231,389.269147176177,360,92481,0,1,0,0,9 +"16668",2015,48253,"TX","48","253",19965,0.841021788129226,1568,0.117806160781367,7.35755620091035,7.99564360428727,8.30003171177957,5.53076923076923,379.939209726444,50,13160,0,1,0,0,9 +"16669",2015,48255,"TX","48","255",15407,0.891218277406374,1272,0.112935678587655,7.14834574390007,7.63433723562832,8.12829017160705,4.27692307692308,302.277879736586,28,9263,0,1,0,0,9 +"16670",2015,48257,"TX","48","257",114083,0.864020055573574,6420,0.11822094440013,8.76717339668401,9.681343501555,10.4232332736767,4.1,398.02195151369,264,66328,0,1,0,0,9 +"16671",2015,48259,"TX","48","259",39959,0.966540704221827,2091,0.142571135413799,7.64539769942863,8.45489216521886,9.32901190169368,3.30769230769231,307.664464754321,68,22102,0,1,0,0,9 +"16672",2015,48265,"TX","48","265",50869,0.95236784682223,3034,0.146375985374196,8.01763715990848,8.43315919580623,9.5128864260765,3.7,553.625291130541,145,26191,0,1,0,0,9 +"16673",2015,48273,"TX","48","273",31406,0.9170859071515,4914,0.0897599184869133,8.49984355308112,8.05165955684195,9.06681636189014,5.95384615384615,354.532562452274,65,18334,0,1,0,0,9 +"16674",2015,48277,"TX","48","277",49399,0.831595781291119,3097,0.128079515779672,8.0381891799732,8.60575336839572,9.5496656775798,4.83076923076923,641.566154635774,175,27277,0,1,0,0,9 +"16675",2015,48279,"TX","48","279",13267,0.925906384261702,793,0.118037235245346,6.67582322163485,7.2737863178449,8.16280135349207,8.97692307692308,382.707299787385,27,7055,0,1,0,0,9 +"16676",2015,48281,"TX","48","281",20362,0.921815145859935,1083,0.13628327276299,6.98749024700099,7.78155595923534,8.66112036022288,4.42307692307692,452.685644641769,52,11487,0,1,0,0,9 +"16677",2015,48283,"TX","48","283",7635,0.97576948264571,1173,0.0850032743942371,7.06731984865348,6.77422388635761,7.48436864328613,4.20769230769231,206.654267410622,10,4839,0,1,0,0,9 +"16678",2015,48285,"TX","48","285",19920,0.917570281124498,1030,0.139206827309237,6.93731408122368,7.6177595766085,8.54907938027856,3.8,423.647217408049,44,10386,0,1,0,0,9 +"16679",2015,48287,"TX","48","287",16859,0.862862565988493,972,0.149593688830892,6.87935580446044,7.54750168281497,8.47637119689598,3.57692307692308,425.487754254878,41,9636,0,1,0,0,9 +"16680",2015,48289,"TX","48","289",17030,0.908220786846741,836,0.147328244274809,6.7286286130847,7.45298232946546,8.39026849784257,5.37692307692308,687.323943661972,61,8875,0,1,0,0,9 +"16681",2015,48291,"TX","48","291",79537,0.870148484353194,5460,0.124432653984938,8.60520406873895,9.23581316794921,10.0899256248419,6.96153846153846,506.094217873561,240,47422,0,1,0,0,9 +"16682",2015,48293,"TX","48","293",23433,0.792344130072974,1435,0.137157000810822,7.26892012819372,7.9098566672694,8.74528448245438,5.06153846153846,558.617045368763,74,13247,0,1,0,0,9 +"16683",2015,48297,"TX","48","297",12177,0.928553830992855,754,0.133858914346719,6.62539236800796,7.2841348061952,8.00703401219341,4.02307692307692,509.265808459471,36,7069,0,1,0,0,9 +"16684",2015,48299,"TX","48","299",20080,0.969173306772908,761,0.178286852589641,6.63463335786169,7.34665516317654,8.52575642207673,4.3,599.421248449773,58,9676,0,1,0,0,9 +"16685",2015,48303,"TX","48","303",298509,0.878077377901504,38054,0.103440767280049,10.5467614826003,10.4176575775525,11.3956160671297,3.42307692307692,400.462806946597,713,178044,0,1,0,0,9 +"16686",2015,48307,"TX","48","307",8253,0.953229128801648,457,0.14152429419605,6.1246833908942,6.75809450442773,7.69120009752286,4.84615384615385,569.605832763728,25,4389,0,1,0,0,9 +"16687",2015,48309,"TX","48","309",245471,0.811321907679522,26554,0.111825836860566,10.1869356744558,10.2105309784665,11.1778722211024,4.10769230769231,398.279093542341,561,140856,0,1,0,0,9 +"16688",2015,48313,"TX","48","313",13954,0.771391715637093,1279,0.103052888060771,7.15383380157884,7.49609734517596,8.0624327915832,4.33076923076923,464.900046490005,40,8604,0,1,0,0,9 +"16689",2015,48315,"TX","48","315",10152,0.753250591016548,478,0.172675334909377,6.16961073249146,6.90575327631146,7.96380795323145,6.52307692307692,765.260722548496,43,5619,0,1,0,0,9 +"16690",2015,48321,"TX","48","321",36747,0.845375132663891,2403,0.137888807249571,7.78447323573647,8.28172399041139,9.23669014729897,6.79230769230769,575.490859851049,119,20678,0,1,0,0,9 +"16691",2015,48323,"TX","48","323",57643,0.969536630640321,4910,0.0918932047256388,8.49902922078857,8.84404789894249,9.64121328401888,10.7153846153846,283.775849696653,87,30658,0,1,0,0,9 +"16692",2015,48325,"TX","48","325",48419,0.95008157954522,3444,0.131084904686177,8.14438886554762,8.62837672037685,9.48181684008103,4.40769230769231,326.281821441377,91,27890,0,1,0,0,9 +"16693",2015,48329,"TX","48","329",162381,0.892709122372691,12343,0.109920495624488,9.42084437974393,9.8965636374633,10.7674107290004,3.48461538461538,332.946106293822,321,96412,0,1,0,0,9 +"16694",2015,48331,"TX","48","331",24364,0.875964537842719,1384,0.137867345263504,7.23273313617761,7.8804263442924,8.79966169681513,5.29230769230769,500.616142945163,65,12984,0,1,0,0,9 +"16695",2015,48335,"TX","48","335",8863,0.853097145436083,883,0.108541126029561,6.78332520060396,7.06133436691044,7.54327334670545,5.68461538461538,380.556997059332,22,5781,0,1,0,0,9 +"16696",2015,48337,"TX","48","337",19254,0.969616703022748,942,0.139399605276826,6.84800527457636,7.6377164326648,8.55024104546244,4.29230769230769,603.230200428099,62,10278,0,1,0,0,9 +"16697",2015,48339,"TX","48","339",535913,0.906454965638079,32265,0.122909875296923,10.3817383303699,11.2035974673922,11.9710525969948,4.28461538461538,323.405821939546,1019,315084,0,1,0,0,9 +"16698",2015,48341,"TX","48","341",21709,0.865401446404717,1558,0.103597586254549,7.35115822643069,7.86057078553866,8.63817111796914,3.13846153846154,355.756791720569,44,12368,0,1,0,0,9 +"16699",2015,48343,"TX","48","343",12360,0.745226537216829,700,0.146521035598705,6.5510803350434,7.1785454837637,8.16223106548118,8.86923076923077,757.238307349666,51,6735,0,1,0,0,9 +"16700",2015,48347,"TX","48","347",65456,0.783885358103153,8742,0.110975311659741,9.07589427542326,8.77678438370149,9.86811940869834,4.71538461538462,435.21213253945,163,37453,0,1,0,0,9 +"16701",2015,48349,"TX","48","349",48167,0.822762472232026,2982,0.125521622687732,8.00034949532468,8.6195692580331,9.50338305067006,4.23846153846154,635.737531219254,168,26426,0,1,0,0,9 +"16702",2015,48351,"TX","48","351",14161,0.778970411694089,911,0.142292211002048,6.81454289725996,7.38212436573751,8.2419665602318,7.56923076923077,603.076923076923,49,8125,0,1,0,0,9 +"16703",2015,48353,"TX","48","353",15128,0.921205711263882,962,0.126189846641988,6.86901445066571,7.42237370098682,8.30622521603216,4.07692307692308,647.684223389955,53,8183,0,1,0,0,9 +"16704",2015,48355,"TX","48","355",360587,0.92046579604922,27156,0.120653268143333,10.2093532954215,10.7074379105626,11.5743591711543,4.98461538461538,421.319820903691,893,211953,0,1,0,0,9 +"16705",2015,48357,"TX","48","357",10690,0.962394761459308,712,0.102151543498597,6.56807791141198,7.20489251020467,7.95155933115525,4.3,451.958486776029,27,5974,0,1,0,0,9 +"16706",2015,48361,"TX","48","361",84026,0.888962940042368,5353,0.131935353343013,8.58541243039338,9.23366619727968,10.102871056286,6.59230769230769,592.519442044192,288,48606,0,1,0,0,9 +"16707",2015,48363,"TX","48","363",27963,0.95072059507206,1695,0.138397167685871,7.43543801981455,8.02027047281924,8.96916013317582,5.23076923076923,644.363447019005,99,15364,0,1,0,0,9 +"16708",2015,48365,"TX","48","365",23661,0.819745572883648,1432,0.143400532521871,7.26682734752059,7.9402277651457,8.80732226751107,5.29230769230769,504.252276661398,67,13287,0,1,0,0,9 +"16709",2015,48367,"TX","48","367",125691,0.964969647787033,7214,0.139182598594967,8.88377886146348,9.65085082182715,10.5088685258392,4.19230769230769,387.883771929825,283,72960,0,1,0,0,9 +"16710",2015,48371,"TX","48","371",16022,0.92965921857446,1101,0.109911371863687,7.00397413672268,7.68845535654994,8.24879073369641,5.19230769230769,315.93966571545,31,9812,0,1,0,0,9 +"16711",2015,48373,"TX","48","373",46617,0.852650320698458,2781,0.158397151253834,7.93056585423396,8.61504559158374,9.40285975374658,6.08461538461538,631.378019235005,172,27242,0,1,0,0,9 +"16712",2015,48375,"TX","48","375",121214,0.810368439289191,8534,0.110837032026004,9.05181346374795,9.63991255542758,10.4052320675659,3.35384615384615,491.780244485036,350,71170,0,1,0,0,9 +"16713",2015,48379,"TX","48","379",11121,0.949375056199982,515,0.163474507688158,6.24416690066374,7.03174125876313,8.02059914989697,4.59230769230769,578.990901571547,35,6045,0,1,0,0,9 +"16714",2015,48381,"TX","48","381",130463,0.934847428006408,9178,0.123644251626898,9.12456459495478,9.69977891386053,10.5648086124296,2.91538461538462,346.828346046026,266,76695,0,1,0,0,9 +"16715",2015,48387,"TX","48","387",12344,0.802333117303953,643,0.151409591704472,6.46614472423762,7.18462915271731,8.13827263853019,6.35384615384615,633.937785640572,43,6783,0,1,0,0,9 +"16716",2015,48389,"TX","48","389",15556,0.915659552584212,1660,0.0862046798662895,7.41457288135059,7.80425138352811,8.04076899436758,4.83076923076923,409.747681690748,38,9274,0,1,0,0,9 +"16717",2015,48391,"TX","48","391",7331,0.905197108170782,473,0.130950757059064,6.15909538849193,6.58479139238572,7.57095858316901,5.36923076923077,816.326530612245,32,3920,0,1,0,0,9 +"16718",2015,48395,"TX","48","395",16688,0.770134228187919,1030,0.140879674017258,6.93731408122368,7.5234813125735,8.45083969086622,4.81538461538462,390.879478827362,36,9210,0,1,0,0,9 +"16719",2015,48397,"TX","48","397",90258,0.893084269538434,4907,0.117064415342684,8.4984180360899,9.50703173858555,10.1888168594043,3.79230769230769,216.998191681736,114,52535,0,1,0,0,9 +"16720",2015,48399,"TX","48","399",10387,0.944834889766054,561,0.136613074034851,6.3297209055227,7.00669522683704,7.91205688817901,3.74615384615385,553.472594179611,31,5601,0,1,0,0,9 +"16721",2015,48401,"TX","48","401",52897,0.804658109155529,3536,0.131481936593758,8.17075142375753,8.81581520390635,9.55037767476189,4.78461538461538,463.629096722622,145,31275,0,1,0,0,9 +"16722",2015,48403,"TX","48","403",10451,0.910247823174816,467,0.159506267342838,6.1463292576689,6.75809450442773,7.86825426552061,9.37692307692308,695.652173913043,36,5175,0,1,0,0,9 +"16723",2015,48405,"TX","48","405",8346,0.755212077641984,430,0.154085789599808,6.06378520868761,6.64898455002478,7.71646080017636,9.12307692307692,675.98017124831,30,4438,0,1,0,0,9 +"16724",2015,48407,"TX","48","407",27376,0.87719170075979,1472,0.160432495616598,7.29437729928882,7.97039490719143,8.93708703617652,5.64615384615385,641.746609328482,97,15115,0,1,0,0,9 +"16725",2015,48409,"TX","48","409",67121,0.95210142876298,4435,0.113228348802908,8.39728289474368,9.01310820244647,9.83140061364123,6.57692307692308,479.169439637961,180,37565,0,1,0,0,9 +"16726",2015,48415,"TX","48","415",17565,0.921263877028181,1280,0.118531169940222,7.15461535691366,7.68982866873648,8.36660283278374,4.2,471.744471744472,48,10175,0,1,0,0,9 +"16727",2015,48419,"TX","48","419",25366,0.790428132145391,1565,0.126034849798943,7.35564110297425,7.98344006300654,8.85137709751944,5.30769230769231,660.919540229885,92,13920,0,1,0,0,9 +"16728",2015,48423,"TX","48","423",222450,0.788446841986963,15871,0.120076421667791,9.67224882350756,10.1701885535992,11.0872831594232,4.5,380.35468073979,480,126198,0,1,0,0,9 +"16729",2015,48425,"TX","48","425",8619,0.957419654252233,494,0.141547743357698,6.20253551718792,6.94215670569947,7.8164169836918,5.05384615384615,389.90355017443,19,4873,0,1,0,0,9 +"16730",2015,48427,"TX","48","427",63406,0.990616030028704,5255,0.0824054505882724,8.56693528331105,8.94076013488838,9.74196812337144,13.5692307692308,267.45199386964,89,33277,0,1,0,0,9 +"16731",2015,48429,"TX","48","429",9378,0.948389848581787,667,0.13105139688633,6.50279004591562,6.93925394604151,7.77904864492556,4.2,511.266805529256,27,5281,0,1,0,0,9 +"16732",2015,48439,"TX","48","439",1985664,0.758971306323728,135281,0.110396320827693,11.8151093756208,12.5182119370158,13.317796928389,4.20769230769231,300.444486301312,3573,1189238,0,1,0,0,9 +"16733",2015,48441,"TX","48","441",136210,0.876528889215182,14999,0.107635269069819,9.61573881119536,9.5760246100725,10.5841825251568,3.69230769230769,459.324282943758,360,78376,0,1,0,0,9 +"16734",2015,48445,"TX","48","445",12761,0.928453882924536,886,0.110571271843899,6.78671695060508,7.24850407237061,8.03008409426756,4.70769230769231,463.939266132434,33,7113,0,1,0,0,9 +"16735",2015,48449,"TX","48","449",32605,0.855788989418801,2307,0.107314829013955,7.74370325817375,8.29429960885724,9.09492952046486,5.79230769230769,392.003136025088,70,17857,0,1,0,0,9 +"16736",2015,48451,"TX","48","451",117574,0.921981050232194,10296,0.114600166703523,9.23951074927596,9.44975089575427,10.4311702933685,4.12307692307692,368.144580417036,253,68723,0,1,0,0,9 +"16737",2015,48453,"TX","48","453",1180003,0.818948765384495,82507,0.10334295760265,11.3206384172082,12.1310365504959,12.8509745134621,3.3,209.348311476235,1623,775263,0,1,0,0,9 +"16738",2015,48455,"TX","48","455",14541,0.888590880957293,669,0.156522935148889,6.50578406012823,7.29776828253138,8.29254851397576,5.94615384615385,680.450143941377,52,7642,0,1,0,0,9 +"16739",2015,48457,"TX","48","457",21372,0.869361781770541,1468,0.136674153097511,7.29165620917446,7.7944112057266,8.55082137239622,7.06153846153846,567.352893499757,70,12338,0,1,0,0,9 +"16740",2015,48459,"TX","48","459",40343,0.893513124953524,2308,0.144287732692165,7.74413662762799,8.43185314424922,9.35331454092729,5.28461538461538,550.362540403599,126,22894,0,1,0,0,9 +"16741",2015,48463,"TX","48","463",26948,0.963856315867597,2086,0.104868635891346,7.64300363556072,8.02910705461974,8.87444796721998,5.08461538461538,403.197775460549,58,14385,0,1,0,0,9 +"16742",2015,48465,"TX","48","465",48860,0.959209987720016,4214,0.0913426115431846,8.34616759436413,8.66181288102618,9.45618430881117,6.03846153846154,282.283864654296,75,26569,0,1,0,0,9 +"16743",2015,48467,"TX","48","467",53431,0.95010387228388,2836,0.143268888847298,7.95014988765202,8.7059937143079,9.6071010394542,4.52307692307692,485.951883919099,142,29221,0,1,0,0,9 +"16744",2015,48469,"TX","48","469",92130,0.905524801910344,6304,0.122359709106697,8.74893963153771,9.28674570317859,10.1780083947101,4.23076923076923,436.581320420186,229,52453,0,1,0,0,9 +"16745",2015,48471,"TX","48","471",70825,0.738962230850688,10766,0.109565831274268,9.2841482991209,9.12978086411777,9.79823814181703,5.11538461538461,352.975374776795,170,48162,0,1,0,0,9 +"16746",2015,48473,"TX","48","473",48663,0.708073895978464,7260,0.109384953660892,8.89013510781884,8.49208049060116,9.53351023735752,4.82307692307692,334.845538993303,93,27774,0,1,0,0,9 +"16747",2015,48475,"TX","48","475",11630,0.917798796216681,764,0.109286328460877,6.63856778916652,7.20934025660291,8.04141290939305,4.31538461538462,606.626224918339,39,6429,0,1,0,0,9 +"16748",2015,48477,"TX","48","477",34820,0.791901206203331,2280,0.139977024698449,7.73193072194849,8.19174002127746,9.1483585796203,4.8,363.753075853215,68,18694,0,1,0,0,9 +"16749",2015,48479,"TX","48","479",269598,0.979962759367651,22071,0.0816586176455315,10.0020198086004,10.4804660187216,11.2229474254688,4.76923076923077,267.09438482243,388,145267,0,1,0,0,9 +"16750",2015,48481,"TX","48","481",41369,0.842587444704972,2722,0.130629215112766,7.90912218321141,8.42354163533478,9.35010231435134,4.43846153846154,417.137394629356,96,23014,0,1,0,0,9 +"16751",2015,48483,"TX","48","483",5665,0.936275375110327,351,0.134157105030891,5.86078622346587,6.50279004591562,7.32514895795557,3.90769230769231,521.342456826328,16,3069,0,1,0,0,9 +"16752",2015,48485,"TX","48","485",131050,0.844937046928653,12121,0.119145364364746,9.40269476447051,9.59614684242116,10.4974219480245,4.32307692307692,477.082104291174,372,77974,0,1,0,0,9 +"16753",2015,48487,"TX","48","487",13059,0.870587334405391,912,0.135155831227506,6.81563999007433,7.26542972325395,8.21527695893663,4.86153846153846,550.55727138445,41,7447,0,1,0,0,9 +"16754",2015,48489,"TX","48","489",21852,0.958264689730917,2167,0.0971078162181951,7.68109900153636,7.96276393016811,8.58091888229678,13.1230769230769,272.628135223555,35,12838,0,1,0,0,9 +"16755",2015,48491,"TX","48","491",507728,0.846754561497495,28302,0.102710506412882,10.2506877525123,11.3242920301186,11.9470622505495,3.49230769230769,222.770727399152,676,303451,0,1,0,0,9 +"16756",2015,48493,"TX","48","493",47181,0.963989741633285,2792,0.137449397003031,7.93451346388226,8.67180090964268,9.5239825460975,3.82307692307692,408.520571928801,112,27416,0,1,0,0,9 +"16757",2015,48495,"TX","48","495",8028,0.943572496263079,562,0.102765321375187,6.33150184989369,6.87523208727658,7.6506445514369,5.73846153846154,650.37003812514,29,4459,0,1,0,0,9 +"16758",2015,48497,"TX","48","497",62813,0.96397242609014,3643,0.134016843647016,8.20056279700856,8.92065629685373,9.80117793371156,4.67692307692308,375.424750630275,137,36492,0,1,0,0,9 +"16759",2015,48499,"TX","48","499",43142,0.926452181169162,2448,0.150595707199481,7.80302664363222,8.30770596654951,9.3101857069459,5.33846153846154,589.824403421882,131,22210,0,1,0,0,9 +"16760",2015,48501,"TX","48","501",8635,0.958772437753329,643,0.103184713375796,6.46614472423762,6.83195356556585,7.71646080017636,3.79230769230769,467.497773820125,21,4492,0,1,0,0,9 +"16761",2015,48503,"TX","48","503",18154,0.961000330505674,1002,0.143439462377437,6.90975328164481,7.59890045687141,8.50491816054062,4.30769230769231,587.163393399474,58,9878,0,1,0,0,9 +"16762",2015,48505,"TX","48","505",14474,0.988807516926903,1091,0.0835290866381097,6.99484998583307,7.44249272279444,8.23110984032815,7.77692307692308,175.675675675676,13,7400,0,1,0,0,9 +"16763",2015,48507,"TX","48","507",12322,0.975085213439377,1127,0.097467943515663,7.02731451403978,7.25488481007734,8.05388708361822,11.2615384615385,565.058032987172,37,6548,0,1,0,0,9 +"16764",2015,49001,"UT","49","001",6351,0.95780192095733,375,0.118721461187215,5.92692602597041,6.63725803128446,7.36581283720947,3.71538461538462,429.316160686906,14,3261,0,1,0,0,9 +"16765",2015,49003,"UT","49","003",51839,0.965720789367079,3181,0.109377109897953,8.06495089174914,8.78752562553291,9.51738379790658,3.60769230769231,324.42678525863,89,27433,0,1,0,0,9 +"16766",2015,49005,"UT","49","005",119777,0.946592417575995,17629,0.0770682184392663,9.77730055228574,9.50450141052567,10.4067748342638,3,183.809904982138,124,67461,0,1,0,0,9 +"16767",2015,49007,"UT","49","007",20400,0.962254901960784,1326,0.133970588235294,7.18992217074581,7.79110951061003,8.62425226370964,5.56153846153846,632.967816706784,71,11217,0,1,0,0,9 +"16768",2015,49011,"UT","49","011",334814,0.941540676315805,22676,0.0926693626909269,10.0290623754442,10.7591361624407,11.4268118666749,3.30769230769231,219.255505749367,405,184716,0,1,0,0,9 +"16769",2015,49013,"UT","49","013",20743,0.930675408571566,1271,0.0971894132960517,7.14755927118945,7.86672228513673,8.57054436691323,7.41538461538462,433.339479992624,47,10846,0,1,0,0,9 +"16770",2015,49015,"UT","49","015",10360,0.978378378378378,541,0.131756756756757,6.29341927884648,7.11639414409346,7.90100705199242,5.94615384615385,389.61038961039,21,5390,0,1,0,0,9 +"16771",2015,49019,"UT","49","019",9530,0.92308499475341,464,0.158866736621196,6.13988455222626,7.13648320859025,7.94307271727793,6.15384615384615,337.777777777778,19,5625,0,1,0,0,9 +"16772",2015,49021,"UT","49","021",48166,0.949217290204709,5467,0.0990947971598223,8.606485298895,8.61268517287546,9.48683509878739,4.36153846153846,332.784923721208,89,26744,0,1,0,0,9 +"16773",2015,49023,"UT","49","023",10560,0.971875,661,0.0948863636363636,6.49375383985169,7.22329567956231,7.89020821310996,3.9,206.146926536732,11,5336,0,1,0,0,9 +"16774",2015,49025,"UT","49","025",7045,0.968630234208659,348,0.157274662881476,5.85220247977447,6.56103066589657,7.54644627374602,4.41538461538462,478.468899521531,18,3762,0,1,0,0,9 +"16775",2015,49027,"UT","49","027",12621,0.954361777989066,693,0.123841217019254,6.5410299991899,7.23777819192344,8.03138533062553,3.43076923076923,320.256204963971,20,6245,0,1,0,0,9 +"16776",2015,49035,"UT","49","035",1102690,0.898641503958502,78682,0.101390236603216,11.2731696916004,11.9650005846635,12.6881654058732,3.31538461538462,286.681749851952,1888,658570,0,1,0,0,9 +"16777",2015,49037,"UT","49","037",15254,0.481578602333814,1093,0.107381670381539,6.99668148817654,7.45182223652793,8.28752842311176,7.74615384615385,399.225744011614,33,8266,0,1,0,0,9 +"16778",2015,49039,"UT","49","039",28663,0.952482294246939,3055,0.0989079998604473,8.0245348716057,8.15017926968233,8.86967937473351,4.05384615384615,253.968253968254,40,15750,0,1,0,0,9 +"16779",2015,49041,"UT","49","041",20872,0.971636642391721,1169,0.113980452280567,7.06390396147207,7.87587915949631,8.57583938684897,4.36923076923077,305.555555555556,33,10800,0,1,0,0,9 +"16780",2015,49043,"UT","49","043",39675,0.964284814114682,2182,0.145381222432262,7.68799716639302,8.579980179515,9.38429367909962,3.25384615384615,210.205259253153,51,24262,0,1,0,0,9 +"16781",2015,49045,"UT","49","045",62676,0.95795838917608,3685,0.0911034526772608,8.21202580462344,9.17159954365975,9.73595608121481,4.06153846153846,309.443876806306,106,34255,0,1,0,0,9 +"16782",2015,49047,"UT","49","047",37815,0.897553880735158,2574,0.0930318656617744,7.85321638815607,8.49637805170232,9.21632244365373,6.71538461538462,309.238500193274,64,20696,0,1,0,0,9 +"16783",2015,49049,"UT","49","049",573289,0.950569433566665,73574,0.0659248651203843,11.2060469814361,11.1682214399555,11.9375197710576,3.2,191.468719279872,596,311278,0,1,0,0,9 +"16784",2015,49051,"UT","49","051",29131,0.969173732449967,1672,0.110123236414816,7.42177579364465,8.35913488675796,8.978786553302,3.45384615384615,242.446848190974,39,16086,0,1,0,0,9 +"16785",2015,49053,"UT","49","053",154839,0.949754260877428,9577,0.109236045182415,9.16711966952162,9.74829466313043,10.5822568651501,4,290.430069884736,224,77127,0,1,0,0,9 +"16786",2015,49057,"UT","49","057",242916,0.941440662615884,17360,0.104801659833029,9.76192398821434,10.3779499765658,11.1380865504038,4.00769230769231,366.948806341334,512,139529,0,1,0,0,9 +"16787",2015,51001,"VA","51","001",32930,0.689887640449438,1684,0.162131794716064,7.42892719480227,8.14525956651686,9.15271125913955,5.37692307692308,684.894276240691,126,18397,0,1,0,0,9 +"16788",2015,51003,"VA","51","003",105221,0.836857661493428,7254,0.133414432480208,8.88930831984285,9.38193796540716,10.3504784074728,3.84615384615385,218.311722677957,132,60464,0,1,0,0,9 +"16789",2015,51005,"VA","51","005",15432,0.94018921721099,856,0.153900984966304,6.75227037614174,7.40549566319947,8.36869318309779,4.97692307692308,423.878488166726,36,8493,0,1,0,0,9 +"16790",2015,51007,"VA","51","007",12784,0.761498748435544,656,0.159339799749687,6.48616078894409,7.2115567333138,8.2358907259285,4.40769230769231,466.853408029879,35,7497,0,1,0,0,9 +"16791",2015,51009,"VA","51","009",31855,0.781666928268718,1961,0.15058860461466,7.58120982619635,8.16621626859214,9.15292310110623,4.71538461538462,393.128332166514,73,18569,0,1,0,0,9 +"16792",2015,51011,"VA","51","011",15485,0.788246690345496,834,0.145366483693897,6.72623340235875,7.47079377419506,8.42354163533478,4.81538461538462,434.18647166362,38,8752,0,1,0,0,9 +"16793",2015,51013,"VA","51","013",228887,0.777798651736446,14724,0.0985813960600646,9.59723409449891,10.5421521477963,11.3052491764334,2.78461538461538,119.931815414587,197,164260,0,1,0,0,9 +"16794",2015,51015,"VA","51","015",74324,0.944822668317098,4191,0.149399924654217,8.34069464792507,9.0811424335045,9.95712310170204,4.03846153846154,349.216560216882,152,43526,0,1,0,0,9 +"16795",2015,51021,"VA","51","021",6536,0.953488372093023,341,0.147796817625459,5.83188247728352,6.81124437860129,7.42714413340862,5.62307692307692,726.634928589326,29,3991,0,1,0,0,9 +"16796",2015,51023,"VA","51","023",33391,0.95253211943338,1679,0.163157737114791,7.42595365707754,8.21229713822977,9.17087162806582,4.11538461538461,364.678301641052,70,19195,0,1,0,0,9 +"16797",2015,51025,"VA","51","025",16838,0.426357049530823,1160,0.148414300985865,7.05617528410041,7.61480536471107,8.40088406901585,6.7,527.549824150059,54,10236,0,1,0,0,9 +"16798",2015,51027,"VA","51","027",22767,0.962577414679141,1210,0.160187991391048,7.09837563859079,7.93701748951545,8.78017265122765,10.7076923076923,867.283725675971,119,13721,0,1,0,0,9 +"16799",2015,51029,"VA","51","029",17022,0.635412994947715,1035,0.142403947832217,6.94215670569947,7.69484807238461,8.38320455141292,5.82307692307692,377.643504531722,40,10592,0,1,0,0,9 +"16800",2015,51031,"VA","51","031",55374,0.832773503810453,3510,0.142088344710514,8.16337131645991,8.77909581088053,9.71842223507111,4.66923076923077,458.295142071494,150,32730,0,1,0,0,9 +"16801",2015,51033,"VA","51","033",29907,0.68482295114856,1540,0.134650750660381,7.33953769540767,8.24800570160062,9.08636319215647,5.01538461538462,436.310063463282,77,17648,0,1,0,0,9 +"16802",2015,51035,"VA","51","035",29882,0.982932869285858,1458,0.155043169801218,7.2848209125686,8.15133333790043,9.03455739202181,5.26923076923077,492.46469680788,83,16854,0,1,0,0,9 +"16803",2015,51036,"VA","51","036",7043,0.440579298594349,379,0.185858299020304,5.93753620508243,6.48157712927643,7.67415292128168,5.24615384615385,539.906103286385,23,4260,0,1,0,0,9 +"16804",2015,51037,"VA","51","037",12182,0.697504514857987,718,0.149893285174848,6.57646956904822,7.13648320859025,8.11522197256233,5.61538461538461,472.74338897917,32,6769,0,1,0,0,9 +"16805",2015,51041,"VA","51","041",335093,0.709776092010278,21064,0.132461734503556,9.95532070117615,10.7232453573551,11.5559945329289,4.24615384615385,320.064914574224,639,199647,0,1,0,0,9 +"16806",2015,51043,"VA","51","043",14252,0.928080269435869,778,0.164678641594162,6.65672652417839,7.27447955877387,8.32044811395656,3.92307692307692,411.273738962139,34,8267,0,1,0,0,9 +"16807",2015,51045,"VA","51","045",5140,0.989105058365759,266,0.168482490272374,5.5834963087817,6.38012253689976,7.3132203870903,5.42307692307692,466.355762824783,14,3002,0,1,0,0,9 +"16808",2015,51047,"VA","51","047",49559,0.809580500010089,2736,0.129320607760447,7.91425227874244,8.7649903301691,9.5579644803945,4.28461538461538,423.449376974072,122,28811,0,1,0,0,9 +"16809",2015,51049,"VA","51","049",9758,0.661713465874155,586,0.143984423037508,6.37331978957701,6.93925394604151,7.95822719232231,5.06153846153846,359.841669665347,20,5558,0,1,0,0,9 +"16810",2015,51051,"VA","51","051",15200,0.989013157894737,790,0.150921052631579,6.67203294546107,7.55799495853081,8.35655484545343,9.96153846153846,818.46083892236,72,8797,0,1,0,0,9 +"16811",2015,51053,"VA","51","053",28146,0.650998365664748,1703,0.147765224188162,7.44014668066269,8.10076824307173,9.06543020018037,5.33846153846154,388.430739811163,65,16734,0,1,0,0,9 +"16812",2015,51057,"VA","51","057",11091,0.580560815075286,620,0.157515102335227,6.42971947803914,7.05358572719368,8.11880299698004,5.29230769230769,486.885503376787,31,6367,0,1,0,0,9 +"16813",2015,51059,"VA","51","059",1141040,0.681448503119961,67812,0.125725653789525,11.1244944494178,12.0181997082979,12.7796082446624,3.51538461538462,156.816276087144,1109,707197,0,1,0,0,9 +"16814",2015,51061,"VA","51","061",68449,0.889406711566276,3855,0.143654399625999,8.25712628599743,8.99379997179554,9.91916403192114,3.89230769230769,357.737311504733,144,40253,0,1,0,0,9 +"16815",2015,51063,"VA","51","063",15565,0.969225827176357,704,0.156440732412464,6.55677835615804,7.50604217851812,8.37885024179449,3.91538461538462,486.150367439231,43,8845,0,1,0,0,9 +"16816",2015,51065,"VA","51","065",26144,0.826231640146879,1332,0.138655140758874,7.19443685110033,8.15478757276852,9.06091185848425,3.70769230769231,373.623492396434,57,15256,0,1,0,0,9 +"16817",2015,51067,"VA","51","067",56234,0.903652594515773,3305,0.157733755379308,8.10319175228579,8.68287710705717,9.6801564836416,4.60769230769231,459.365069376711,146,31783,0,1,0,0,9 +"16818",2015,51069,"VA","51","069",83525,0.928943430110745,5012,0.130703382220892,8.51959031601596,9.24859908409327,10.1088743822611,3.9,298.660120691419,146,48885,0,1,0,0,9 +"16819",2015,51071,"VA","51","071",16768,0.972328244274809,878,0.140147900763359,6.77764659363512,7.61677580869837,8.46337038471873,5.10769230769231,682.271439067912,65,9527,0,1,0,0,9 +"16820",2015,51073,"VA","51","073",37032,0.894334629509613,2082,0.156108230719378,7.64108424917491,8.34569287325387,9.31677031559203,4.01538461538462,429.203939640372,95,22134,0,1,0,0,9 +"16821",2015,51075,"VA","51","075",22344,0.804332259219477,1093,0.174767275331185,6.99668148817654,7.86672228513673,8.81507308884446,4.10769230769231,385.545811914122,51,13228,0,1,0,0,9 +"16822",2015,51077,"VA","51","077",15960,0.936215538847118,853,0.161215538847118,6.74875954749168,7.54802896993501,8.35936910622267,5.83076923076923,396.825396825397,37,9324,0,1,0,0,9 +"16823",2015,51079,"VA","51","079",19205,0.904035407445978,998,0.133142410830513,6.90575327631146,7.79729127354747,8.64541048921699,3.66923076923077,415.387393895611,46,11074,0,1,0,0,9 +"16824",2015,51081,"VA","51","081",11792,0.389162143826323,816,0.129240162822252,6.70441435496411,7.5076900778199,7.79152281915073,5.32307692307692,819.672131147541,65,7930,0,1,0,0,9 +"16825",2015,51083,"VA","51","083",35104,0.616368505013674,1982,0.153258887876026,7.59186171488993,8.22067217029725,9.18563775933581,6.24615384615385,559.41862288911,107,19127,0,1,0,0,9 +"16826",2015,51085,"VA","51","085",103095,0.879538289926767,6457,0.145555070565983,8.77292009262647,9.43244338211515,10.3353349019184,3.83076923076923,317.129973737674,192,60543,0,1,0,0,9 +"16827",2015,51087,"VA","51","087",324424,0.597733213325771,19190,0.127623110497374,9.86214458900175,10.6898973635558,11.5479160900568,4.21538461538462,330.8330284181,651,196776,0,1,0,0,9 +"16828",2015,51089,"VA","51","089",51944,0.760607577391036,2657,0.150065455105498,7.88495294575981,8.61974977974133,9.59967609815446,6.31538461538462,451.148534628233,131,29037,0,1,0,0,9 +"16829",2015,51093,"VA","51","093",36185,0.7437335912671,1986,0.159237253005389,7.59387784460512,8.32239411311117,9.29311779843375,4.50769230769231,340.612168719672,73,21432,0,1,0,0,9 +"16830",2015,51095,"VA","51","095",72920,0.822490400438837,3777,0.141072408118486,8.23668532271246,8.97815607600982,9.92715524983631,4.26923076923077,326.2931579613,129,39535,0,1,0,0,9 +"16831",2015,51097,"VA","51","097",7089,0.703484271406404,392,0.172097616024827,5.97126183979046,6.61338421837956,7.61628356158038,4.73846153846154,383.417205847112,16,4173,0,1,0,0,9 +"16832",2015,51099,"VA","51","099",25442,0.792508450593507,1573,0.123693105887902,7.36073990305828,8.13914867888407,8.92105701815743,4.69230769230769,413.738753529914,63,15227,0,1,0,0,9 +"16833",2015,51101,"VA","51","101",16287,0.793209308037085,863,0.139190765641309,6.76041469108343,7.6231530684769,8.51479030679993,4.16923076923077,422.680412371134,41,9700,0,1,0,0,9 +"16834",2015,51103,"VA","51","103",10828,0.701052826006649,461,0.17537864794976,6.13339804299665,6.65801104587075,7.92226105835325,6.49230769230769,553.435114503817,29,5240,0,1,0,0,9 +"16835",2015,51105,"VA","51","105",24624,0.94659681611436,1294,0.149610136452242,7.16549347506085,8.10772006191053,8.80672355472564,7.10769230769231,607.94379897325,90,14804,0,1,0,0,9 +"16836",2015,51107,"VA","51","107",374176,0.718958458051826,18486,0.0964118489694689,9.82476896782472,11.087237241173,11.6442870051668,3.51538461538462,139.611905328154,317,227058,0,1,0,0,9 +"16837",2015,51109,"VA","51","109",34475,0.811428571428571,1783,0.159709934735315,7.48605261786314,8.28803156777646,9.24936875894366,4.17692307692308,365.550519081737,75,20517,0,1,0,0,9 +"16838",2015,51111,"VA","51","111",12348,0.637998056365403,682,0.162212504049239,6.52502965784346,7.3031700512368,8.07775756373692,5.03076923076923,331.080148986067,24,7249,0,1,0,0,9 +"16839",2015,51113,"VA","51","113",13054,0.884939482151065,699,0.159567948521526,6.54965074223381,7.25770767716004,8.22790983759748,3.36923076923077,419.31556878128,31,7393,0,1,0,0,9 +"16840",2015,51115,"VA","51","115",8833,0.891882712555191,421,0.17083663534473,6.04263283368238,6.67329796776765,7.77485576666552,4.14615384615385,711.513583441138,33,4638,0,1,0,0,9 +"16841",2015,51117,"VA","51","117",30934,0.629598500032327,1613,0.15908062326243,7.38585107812521,8.07246736935477,9.05298456119998,6.03076923076923,588.68546535586,100,16987,0,1,0,0,9 +"16842",2015,51119,"VA","51","119",10683,0.805017317232987,522,0.177197416456052,6.25766758788264,6.78445706263764,7.95085485771999,4.18461538461538,408.816210451475,23,5626,0,1,0,0,9 +"16843",2015,51121,"VA","51","121",97427,0.882968786886592,18645,0.0979810524803186,9.83333329261292,9.20653313363323,10.2901435396572,4.26153846153846,242.961269115335,153,62973,0,1,0,0,9 +"16844",2015,51125,"VA","51","125",14764,0.859861826063397,665,0.174952587374695,6.49978704065585,7.32251043399739,8.33782726244791,4.01538461538462,492.24710804824,40,8126,0,1,0,0,9 +"16845",2015,51127,"VA","51","127",20382,0.836914924933765,1115,0.160337552742616,7.01660968389422,7.84893372636407,8.71948076085107,3.76153846153846,446.144040790312,56,12552,0,1,0,0,9 +"16846",2015,51131,"VA","51","131",12073,0.620226952704382,605,0.170794334465336,6.40522845803084,7.02464903045364,8.12651816878071,6.03846153846154,526.071483831038,34,6463,0,1,0,0,9 +"16847",2015,51133,"VA","51","133",12243,0.742138364779874,470,0.17095483133219,6.1527326947041,6.75809450442773,8.01102337918644,6.03846153846154,391.689373297003,23,5872,0,1,0,0,9 +"16848",2015,51135,"VA","51","135",15613,0.580734003714853,968,0.133798757445718,6.87523208727658,7.54802896993501,8.26178467951475,4.45384615384615,492.347211816333,46,9343,0,1,0,0,9 +"16849",2015,51137,"VA","51","137",35173,0.843402609956501,1838,0.138231029482842,7.51643330291563,8.31090675716845,9.21413317021488,4.52307692307692,406.667336077919,81,19918,0,1,0,0,9 +"16850",2015,51139,"VA","51","139",23667,0.967253982338277,1224,0.144166983563612,7.10987946307227,7.9373746961633,8.82305893430165,6.8,446.591990628889,61,13659,0,1,0,0,9 +"16851",2015,51141,"VA","51","141",17972,0.931337636323169,816,0.157578455375028,6.70441435496411,7.6177595766085,8.49984355308112,5.32307692307692,690.552441953563,69,9992,0,1,0,0,9 +"16852",2015,51143,"VA","51","143",62027,0.770841730214262,3199,0.159156496364486,8.07059353994952,8.86064104177388,9.78802058272741,5.21538461538462,483.078297777281,173,35812,0,1,0,0,9 +"16853",2015,51145,"VA","51","145",28068,0.87487530283597,1611,0.153199372951404,7.38461038317697,8.20001364817543,9.01237711919227,3.92307692307692,336.758985078093,58,17223,0,1,0,0,9 +"16854",2015,51147,"VA","51","147",23139,0.644971692813,4165,0.114914214097411,8.33447155460094,7.61726781362835,8.78889830934488,6.16923076923077,355.845503743791,48,13489,0,1,0,0,9 +"16855",2015,51149,"VA","51","149",38306,0.623635983918968,2634,0.119928992847074,7.87625888230323,8.68067166040871,9.23902500583609,5.31538461538462,240.594018334923,58,24107,0,1,0,0,9 +"16856",2015,51153,"VA","51","153",451242,0.658959050797576,28616,0.105284969041002,10.2617212809389,11.1484487375394,11.8362618021983,4.06923076923077,189.888096480547,524,275952,0,1,0,0,9 +"16857",2015,51155,"VA","51","155",34357,0.934016357656373,1934,0.151846785225718,7.56734567601324,8.33663008763715,9.19085169539232,4.99230769230769,495.221116228396,100,20193,0,1,0,0,9 +"16858",2015,51159,"VA","51","159",8779,0.678209363253218,471,0.134183847818658,6.15485809401642,7.04141166379481,7.60936653795421,4.50769230769231,494.053064958829,27,5465,0,1,0,0,9 +"16859",2015,51161,"VA","51","161",93439,0.900405612217597,5374,0.143462579864939,8.58932778917544,9.3292782960477,10.2205585098817,3.86923076923077,384.98735307246,207,53768,0,1,0,0,9 +"16860",2015,51163,"VA","51","163",22410,0.954930834448907,1112,0.163052208835341,7.01391547481053,7.73455884435476,8.74321260347591,4.63846153846154,454.545454545455,57,12540,0,1,0,0,9 +"16861",2015,51165,"VA","51","165",78469,0.95956364933923,4981,0.137646713988964,8.51338595307328,9.11943049661634,10.0190458931704,4.05384615384615,298.641517907264,133,44535,0,1,0,0,9 +"16862",2015,51167,"VA","51","167",27863,0.982844632666978,1498,0.159925349029178,7.31188616407716,8.14467918344776,9.01978501025513,6.46923076923077,554.810388976954,91,16402,0,1,0,0,9 +"16863",2015,51169,"VA","51","169",22298,0.984931383980626,1141,0.149295900977666,7.03966034986208,7.88419993367604,8.7212762399917,5.06923076923077,608.070757324489,77,12663,0,1,0,0,9 +"16864",2015,51171,"VA","51","171",42863,0.955299442409537,2382,0.141427338263771,7.77569574991525,8.46926265765869,9.4054136126953,4.2,412.643393579269,100,24234,0,1,0,0,9 +"16865",2015,51173,"VA","51","173",31444,0.966003053046686,1827,0.145019717593182,7.51043055637801,8.26075135470051,9.10486873903395,6.41538461538462,651.969722084093,118,18099,0,1,0,0,9 +"16866",2015,51175,"VA","51","175",18139,0.622801697998787,974,0.166326699377033,6.88141130364254,7.59538727885397,8.5249629286806,3.96153846153846,437.636761487965,48,10968,0,1,0,0,9 +"16867",2015,51177,"VA","51","177",130042,0.789429568908506,8151,0.12398302087018,9.00589589809446,9.73002662417437,10.5785725902777,4.56923076923077,322.214775480744,250,77588,0,1,0,0,9 +"16868",2015,51179,"VA","51","179",141035,0.755238061474102,10347,0.112759244159251,9.24445190160495,9.86026685008157,10.6606418630704,4.39230769230769,225.422091364954,196,86948,0,1,0,0,9 +"16869",2015,51181,"VA","51","181",6674,0.54210368594546,391,0.178753371291579,5.96870755998537,6.45362499889269,7.61332497954064,4.99230769230769,520.57511155181,21,4034,0,1,0,0,9 +"16870",2015,51183,"VA","51","183",11692,0.400017105713308,946,0.131029763941156,6.85224256905188,7.29573507274928,7.88495294575981,6.74615384615385,520.629962254328,40,7683,0,1,0,0,9 +"16871",2015,51185,"VA","51","185",42930,0.954134637782437,2491,0.155648730491498,7.82043951526218,8.5921151179335,9.40837122247532,7.28461538461538,637.805947540461,160,25086,0,1,0,0,9 +"16872",2015,51187,"VA","51","187",38742,0.925971813535698,2426,0.142816581487791,7.793999089504,8.41338702269065,9.35599794439855,4.7,456.465167868265,107,23441,0,1,0,0,9 +"16873",2015,51191,"VA","51","191",54309,0.975271133697914,3068,0.154946693918135,8.02878116248715,8.78599820809833,9.66599149499752,4.72307692307692,421.446225996578,133,31558,0,1,0,0,9 +"16874",2015,51193,"VA","51","193",17553,0.699139748191192,915,0.167036973736683,6.81892406527552,7.45124168498768,8.50714285556274,5.31538461538462,500.817661488144,49,9784,0,1,0,0,9 +"16875",2015,51195,"VA","51","195",39596,0.933074047883625,2814,0.141731488029094,7.94236223767433,8.53306654057253,9.32116592706507,8.16923076923077,579.602910346529,141,24327,0,1,0,0,9 +"16876",2015,51197,"VA","51","197",29106,0.958290386861815,1522,0.148045076616505,7.32778053842163,8.19229373114764,9.06357899058078,5.35384615384615,680.272108843537,115,16905,0,1,0,0,9 +"16877",2015,51199,"VA","51","199",67900,0.785670103092784,4511,0.127967599410898,8.4142741374084,9.03990785957464,9.90038273758265,4.23076923076923,235.323886639676,93,39520,0,1,0,0,9 +"16878",2015,51510,"VA","51","510",153859,0.679290779219935,7089,0.107877992187652,8.86629956585502,10.2491318823258,10.9287223713995,3.23846153846154,166.228009419587,180,108285,0,1,0,0,9 +"16879",2015,51520,"VA","51","520",17185,0.91987198137911,983,0.135176025603724,6.89060912014717,7.66293785046154,8.52654928634026,5.27692307692308,780,78,10000,0,1,0,0,9 +"16880",2015,51530,"VA","51","530",6541,0.920654334199664,624,0.119400703256383,6.43615036836943,6.49072353450251,7.55276208421415,5.00769230769231,570.497147514262,21,3681,0,1,0,0,9 +"16881",2015,51540,"VA","51","540",46357,0.713592337726773,8146,0.10302651163794,9.00528228820836,8.58690580382754,9.73955586085376,3.64615384615385,240.06721882127,80,33324,0,1,0,0,9 +"16882",2015,51550,"VA","51","550",235253,0.643928026422617,15578,0.127165222122566,9.65361494147989,10.3408388495066,11.2011146209399,4.47692307692308,342.874593964297,494,144076,0,1,0,0,9 +"16883",2015,51570,"VA","51","570",17457,0.802314257890817,1101,0.123675316491952,7.00397413672268,7.58426481838906,8.53601494565683,4.66923076923077,619.578686493185,60,9684,0,1,0,0,9 +"16884",2015,51580,"VA","51","580",5671,0.840239816610827,342,0.13948157291483,5.8348107370626,6.46146817635372,7.37963215260955,5.93846153846154,890.11663597299,29,3258,0,1,0,0,9 +"16885",2015,51590,"VA","51","590",41984,0.47117949695122,2810,0.145936547256098,7.94093976232779,8.33495163142245,9.43428360346096,7.12307692307692,662.619699042408,155,23392,0,1,0,0,9 +"16886",2015,51600,"VA","51","600",23247,0.743837914569622,1586,0.128188583473136,7.36897040219479,8.04269949689764,8.86629956585502,3.44615384615385,392.486683487525,56,14268,0,1,0,0,9 +"16887",2015,51620,"VA","51","620",8339,0.391054083223408,514,0.140424511332294,6.24222326545517,6.75460409948796,7.86557175768479,6.62307692307692,709.830070983007,33,4649,0,1,0,0,9 +"16888",2015,51630,"VA","51","630",28075,0.70026714158504,3928,0.093926981300089,8.27588566947436,8.12444685571585,9.16450583563238,5.26923076923077,317.046934269377,56,17663,0,1,0,0,9 +"16889",2015,51640,"VA","51","640",6791,0.906493888970696,369,0.134589898394934,5.91079664404053,6.65801104587075,7.54855597916987,5.37692307692308,1052.3475445224,39,3706,0,1,0,0,9 +"16890",2015,51650,"VA","51","650",136379,0.440573695363656,12091,0.13076060097229,9.40021665317425,9.6175373129291,10.6684901701965,5.92307692307692,453.099968916625,379,83646,0,1,0,0,9 +"16891",2015,51660,"VA","51","660",52739,0.851134833804206,11391,0.0770018392460987,9.34057884889991,8.59100111856096,9.73352925472557,5.23076923076923,172.577957629136,58,33608,0,1,0,0,9 +"16892",2015,51670,"VA","51","670",22241,0.554606357627805,1472,0.11991367294636,7.29437729928882,7.84502441724148,8.82232217747174,7.47692307692308,708.940527766837,90,12695,0,1,0,0,9 +"16893",2015,51680,"VA","51","680",79263,0.668268927494543,14136,0.0997438905920795,9.55648001399953,8.85936344915209,10.1129377767183,5.5,360.421481120275,170,47167,0,1,0,0,9 +"16894",2015,51683,"VA","51","683",41409,0.755995073534739,2873,0.112270279407858,7.96311205897929,8.70582811026678,9.44935727244668,4.08461538461538,262.406421239484,68,25914,0,1,0,0,9 +"16895",2015,51690,"VA","51","690",13289,0.507186394762586,739,0.138911882007676,6.6052979209482,7.27309259599952,8.28677323113125,8.66923076923077,1127.56418964815,83,7361,0,1,0,0,9 +"16896",2015,51700,"VA","51","700",181121,0.514843668045119,16416,0.113531837832167,9.7060117479705,9.96133184222057,10.9482418573016,5.35384615384615,376.242224923143,421,111896,0,1,0,0,9 +"16897",2015,51710,"VA","51","710",246667,0.504124994425683,36332,0.104853912359578,10.5004541746221,10.2291515904407,11.2236154013931,5.5,398.579829407833,650,163079,0,1,0,0,9 +"16898",2015,51730,"VA","51","730",31895,0.184292208810158,2637,0.138924596331713,7.87739718635329,8.05134093329298,9.26122358229075,9.05384615384615,935.529794590197,184,19668,0,1,0,0,9 +"16899",2015,51735,"VA","51","735",12018,0.954900981860543,706,0.139956731569313,6.55961523749324,7.27517231945277,8.13827263853019,3.82307692307692,275.721956174721,19,6891,0,1,0,0,9 +"16900",2015,51740,"VA","51","740",96407,0.421504662524505,7647,0.124129990560851,8.94206869304423,9.32071827944579,10.3076184376312,6.13076923076923,581.865757716607,338,58089,0,1,0,0,9 +"16901",2015,51750,"VA","51","750",17301,0.872897520374545,4592,0.0845615860354893,8.4320709379994,7.3065313989395,8.65469170460187,5.58461538461538,229.459006265996,26,11331,0,1,0,0,9 +"16902",2015,51760,"VA","51","760",221084,0.45200466790903,20690,0.123790052649672,9.93740577073959,10.1437635025906,11.2413004518331,5.14615384615385,389.511880112343,570,146337,0,1,0,0,9 +"16903",2015,51770,"VA","51","770",99741,0.65502651868339,6257,0.133836636889544,8.74145611599836,9.44541249415567,10.3453167333802,4.81538461538462,511.487920003947,311,60803,0,1,0,0,9 +"16904",2015,51775,"VA","51","775",25378,0.896445740405075,2059,0.140397194420364,7.62997570702779,7.90838715929004,8.93405972224884,4.36923076923077,479.017676426933,71,14822,0,1,0,0,9 +"16905",2015,51790,"VA","51","790",24192,0.850983796296296,1651,0.138020833333333,7.40913644392013,7.95191138185419,8.93944986216424,4.28461538461538,538.472438713334,76,14114,0,1,0,0,9 +"16906",2015,51800,"VA","51","800",88190,0.534731829005556,5344,0.125467740106588,8.58372971521648,9.34836166987356,10.2137258107013,4.9,378.2335164313,199,52613,0,1,0,0,9 +"16907",2015,51810,"VA","51","810",450635,0.702683990369146,34782,0.117898077157788,10.4568552905678,10.9642248887753,11.8610580264311,4.23846153846154,298.049932213109,842,282503,0,1,0,0,9 +"16908",2015,51820,"VA","51","820",21543,0.844311377245509,1290,0.123891751380959,7.16239749735572,7.85399308722424,8.76639427704974,4.70769230769231,530.395756833945,65,12255,0,1,0,0,9 +"16909",2015,51840,"VA","51","840",27500,0.830763636363636,2021,0.121127272727273,7.61134771740362,8.1146238864201,9.00944742959679,4.31538461538462,405.679513184584,66,16269,0,1,0,0,9 +"16910",2015,50001,"VT","50","001",36955,0.963496143958869,3446,0.15694763902043,8.14496941708788,8.27893600229198,9.30383071506352,3.42307692307692,258.327668252889,57,22065,1,1,1,0,9 +"16911",2015,50003,"VT","50","003",36198,0.972042654290292,2415,0.160367976131278,7.78945456608667,8.17385745477362,9.2580823679616,4.18461538461538,357.685334901269,73,20409,1,1,1,0,9 +"16912",2015,50005,"VT","50","005",30658,0.973579489855829,1897,0.161295583534477,7.54802896993501,8.16422565226583,9.09223228349585,4.61538461538462,386.576278783125,69,17849,1,1,1,0,9 +"16913",2015,50007,"VT","50","007",161535,0.92468505277494,18251,0.131556628594422,9.81197515203002,9.82827897493837,10.8452705771712,2.7,261.762072053455,266,101619,1,1,1,0,9 +"16914",2015,50011,"VT","50","011",49002,0.968531896657279,2776,0.144912452552957,7.9287663216267,8.74719318352693,9.60918360377546,3.51538461538462,381.795452241781,113,29597,1,1,1,0,9 +"16915",2015,50013,"VT","50","013",6873,0.967845191328386,342,0.193365342645133,5.8348107370626,6.62007320653036,7.64969262371151,3.95384615384615,427.756653992395,18,4208,1,1,1,0,9 +"16916",2015,50015,"VT","50","015",25265,0.97656837522264,1679,0.143241638630517,7.42595365707754,8.090708716084,8.93049418529218,4.57692307692308,329.489291598023,50,15175,1,1,1,0,9 +"16917",2015,50017,"VT","50","017",28900,0.980865051903114,1683,0.174532871972318,7.42833319419081,8.07682603129881,9.06218833095232,3.39230769230769,318.434460398333,55,17272,1,1,1,0,9 +"16918",2015,50019,"VT","50","019",27043,0.977813112450542,1464,0.157970639352143,7.28892769452126,8.03398273468322,8.92943528380342,5.5,464.067031904608,72,15515,1,1,1,0,9 +"16919",2015,50021,"VT","50","021",59582,0.97846665100198,3751,0.167533818938606,8.22977775008189,8.72192834304709,9.77372049447706,4.22307692307692,436.121087737301,153,35082,1,1,1,0,9 +"16920",2015,50023,"VT","50","023",58707,0.972405334968573,3738,0.155756553732945,8.22630598801551,8.87472776576685,9.78086783898822,3.43846153846154,310.718358038769,109,35080,1,1,1,0,9 +"16921",2015,50025,"VT","50","025",43309,0.967373986931123,2644,0.174836639035766,7.88004820097158,8.42704964156327,9.47990938900104,3.52307692307692,378.728720912072,97,25612,1,1,1,0,9 +"16922",2015,50027,"VT","50","027",55590,0.975391257420399,2770,0.17326857348444,7.92660259918138,8.69349667588463,9.70978143687554,3.18461538461538,384.639054711059,125,32498,1,1,1,0,9 +"16923",2015,53001,"WA","53","001",19208,0.911026655560183,1432,0.0980841316118284,7.26682734752059,7.68202151082687,8.47386806667786,6.83076923076923,293.641150263264,29,9876,1,1,1,0,9 +"16924",2015,53003,"WA","53","003",22167,0.957910407362295,1181,0.157215680967204,7.07411681619736,7.76259604854007,8.75463404743127,4.62307692307692,458.678683511708,57,12427,1,1,1,0,9 +"16925",2015,53005,"WA","53","005",190282,0.924144164976193,12086,0.12693791320251,9.3998030369215,10.0434233928336,10.8976278196075,6.49230769230769,296.301749284551,322,108673,1,1,1,0,9 +"16926",2015,53007,"WA","53","007",75030,0.950086632013861,4612,0.141170198587232,8.43641688138895,9.03670101556506,9.94645125196824,5.46153846153846,324.559948828504,137,42211,1,1,1,0,9 +"16927",2015,53009,"WA","53","009",73261,0.89622036281241,3638,0.169448956470701,8.19918935907807,8.86248357648833,9.88144642165925,7.86153846153846,466.606845276247,182,39005,1,1,1,0,9 +"16928",2015,53011,"WA","53","011",457320,0.893827079506691,27181,0.128408991515788,10.210273478787,11.0228334075911,11.817317150985,6.23076923076923,299.159751307198,805,269087,1,1,1,0,9 +"16929",2015,53015,"WA","53","015",103031,0.936999543826615,5996,0.145325193388398,8.69884785922249,9.39814685900071,10.2831219006098,7.48461538461538,439.068559615943,257,58533,1,1,1,0,9 +"16930",2015,53017,"WA","53","017",40521,0.946250092544606,2454,0.127514128476592,7.80547462527086,8.48198043566049,9.30410390178835,6.24615384615385,336.096795877213,75,22315,1,1,1,0,9 +"16931",2015,53019,"WA","53","019",7526,0.793515811852246,398,0.190938081318097,5.98645200528444,6.58340922215876,7.65586401761606,9.90769230769231,494.001411432604,21,4251,1,1,1,0,9 +"16932",2015,53021,"WA","53","021",88681,0.916881857444097,6053,0.091372447311149,8.70830929589169,9.38965741974984,10.0530706740756,7.41538461538462,185.338141380769,92,49639,1,1,1,0,9 +"16933",2015,53025,"WA","53","025",93517,0.938503159853289,6744,0.109488114460472,8.81640849968169,9.29789326898404,10.1113143997384,7.14615384615385,340.149507574259,172,50566,1,1,1,0,9 +"16934",2015,53027,"WA","53","027",71027,0.897644557703409,3925,0.156686893716474,8.27512163021651,9.00577320623491,9.8669791577196,8.8,550.499119201409,225,40872,1,1,1,0,9 +"16935",2015,53029,"WA","53","029",80135,0.88453235165658,6076,0.150633306295626,8.71210186371566,8.96021095557699,10.0257936769201,5.92307692307692,334.256938030523,152,45474,1,1,1,0,9 +"16936",2015,53031,"WA","53","031",30376,0.933697656044245,1100,0.205030287068738,7.00306545878646,7.84306401669205,8.99628043939502,6.90769230769231,384.155173499591,61,15879,1,1,1,0,9 +"16937",2015,53033,"WA","53","033",2127372,0.717040555201441,133944,0.122308651237301,11.8051770811364,12.6602961712721,13.4265426201436,4.12307692307692,223.279966646734,3058,1369581,1,1,1,0,9 +"16938",2015,53035,"WA","53","035",259467,0.862849610933182,21594,0.141887022241749,9.98017077730709,10.2754648164833,11.2285180250521,5.38461538461539,309.457845105864,487,157372,1,1,1,0,9 +"16939",2015,53037,"WA","53","037",43120,0.94100185528757,7377,0.125417439703154,8.9061223308843,8.33615081612066,9.47792177272096,6.02307692307692,286.960086460701,77,26833,1,1,1,0,9 +"16940",2015,53039,"WA","53","039",21009,0.946070731591223,945,0.17425865105431,6.85118492749374,7.79605797431612,8.67470962929122,7,254.496097726502,30,11788,1,1,1,0,9 +"16941",2015,53041,"WA","53","041",75474,0.947597848265628,4237,0.1480244852532,8.35161075062656,9.04852707581358,9.95750214084237,8.16153846153846,484.461774784355,205,42315,1,1,1,0,9 +"16942",2015,53043,"WA","53","043",10287,0.962865752892,409,0.172159035676096,6.0137151560428,6.92362862813843,7.86825426552061,5.66153846153846,355.871886120996,19,5339,1,1,1,0,9 +"16943",2015,53045,"WA","53","045",60999,0.905080411154281,3259,0.16629780816079,8.08917567883756,8.78232285939751,9.70302239150588,7.58461538461538,497.684186300739,173,34761,1,1,1,0,9 +"16944",2015,53047,"WA","53","047",41345,0.833643729592454,2157,0.158205345265449,7.67647364638916,8.41405243249672,9.32634404773249,6.83846153846154,536.466415428951,121,22555,1,1,1,0,9 +"16945",2015,53049,"WA","53","049",20890,0.921828626136908,899,0.186069889899473,6.80128303447162,7.55328660560042,8.62011072542292,8.73076923076923,584.269662921348,65,11125,1,1,1,0,9 +"16946",2015,53051,"WA","53","051",13095,0.92905689194349,534,0.183046964490263,6.2803958389602,7.09174211509515,8.15248607578024,9.36923076923077,591.299450936224,42,7103,1,1,1,0,9 +"16947",2015,53053,"WA","53","053",844317,0.789415586799745,62398,0.124330079815993,11.0412885025618,11.5863989501654,12.4521511681269,6.21538461538462,334.690026744014,1717,513012,1,1,1,0,9 +"16948",2015,53055,"WA","53","055",16155,0.960569483132157,598,0.206994738471062,6.39359075395063,7.30451594646016,8.42704964156327,4.73076923076923,319.015608978011,28,8777,1,1,1,0,9 +"16949",2015,53057,"WA","53","057",121589,0.924721808716249,7324,0.143927493441019,8.8989119057944,9.53285855926342,10.4422882007576,6.55384615384615,367.641695236706,252,68545,1,1,1,0,9 +"16950",2015,53059,"WA","53","059",11386,0.949850693834534,527,0.184349200772879,6.26720054854136,7.20117088328168,8.11701408773731,7.16153846153846,501.696916039545,34,6777,1,1,1,0,9 +"16951",2015,53061,"WA","53","061",770022,0.818929848757568,47456,0.133488393838098,10.7675582449377,11.5692112759808,12.3761276076686,4.51538461538462,277.981040905294,1341,482407,1,1,1,0,9 +"16952",2015,53063,"WA","53","063",488970,0.9176268482729,35455,0.132832280098984,10.4760195657381,10.974523073434,11.8944120388067,6.31538461538462,381.206973564422,1118,293279,1,1,1,0,9 +"16953",2015,53065,"WA","53","065",43576,0.913507435285478,2138,0.177138791995594,7.66762609158499,8.40380050406115,9.39307850865535,8.63846153846154,488.832701222082,116,23730,1,1,1,0,9 +"16954",2015,53067,"WA","53","067",268175,0.855706162021068,16997,0.136985177589261,9.74079213687735,10.4584927279139,11.3194742021335,5.78461538461538,319.088530094307,517,162024,1,1,1,0,9 +"16955",2015,53071,"WA","53","071",59970,0.934800733700183,5560,0.126579956644989,8.62335338724463,8.81892608709068,9.69227257208719,5.7,299.08262157421,104,34773,1,1,1,0,9 +"16956",2015,53073,"WA","53","073",211942,0.891979881288277,23536,0.128322843041964,10.0662864428412,10.1022154529026,11.0721077529191,5.76923076923077,254.326268714758,327,128575,1,1,1,0,9 +"16957",2015,53075,"WA","53","075",48224,0.86886197743862,12195,0.0857871599203716,9.40878131065002,8.3039999709552,9.60272024053569,4.72307692307692,189.930466134432,59,31064,1,1,1,0,9 +"16958",2015,53077,"WA","53","077",247648,0.889871914976095,17805,0.108133318258173,9.78723459571188,10.2880013738914,11.1094733294726,7.89230769230769,341.617432841118,462,135239,1,1,1,0,9 +"16959",2015,55001,"WI","55","001",20027,0.946622060218705,834,0.184550856343936,6.72623340235875,7.59538727885397,8.5016733797582,7.09230769230769,490.283472989838,55,11218,0,1,0,0,9 +"16960",2015,55003,"WI","55","003",15808,0.856718117408907,1006,0.153972672064777,6.91373735065968,7.40367029001237,8.39321601159653,6.11538461538462,433.477825941981,39,8997,0,1,0,0,9 +"16961",2015,55005,"WI","55","005",45375,0.966743801652893,2466,0.150721763085399,7.81035268372429,8.50916101971897,9.42464497462319,4.88461538461539,306.242638398115,78,25470,0,1,0,0,9 +"16962",2015,55007,"WI","55","007",14980,0.873497997329773,650,0.196194926568758,6.47697236288968,7.20785987143248,8.3133619511344,8.13846153846154,433.839479392625,36,8298,0,1,0,0,9 +"16963",2015,55009,"WI","55","009",257916,0.896512818126832,17507,0.12792537105104,9.77035607993293,10.3766424612808,11.2463915194526,3.97692307692308,296.795515666008,458,154315,0,1,0,0,9 +"16964",2015,55011,"WI","55","011",13245,0.984748961872405,697,0.157568893922235,6.54678541076052,7.2211050981825,8.18590748148232,4.79230769230769,254.794153144696,19,7457,0,1,0,0,9 +"16965",2015,55013,"WI","55","013",15140,0.931902245706737,636,0.183025099075297,6.45519856334012,7.22402480828583,8.28500889544988,6.83846153846154,483.391175012395,39,8068,0,1,0,0,9 +"16966",2015,55015,"WI","55","015",49823,0.959336049615639,2745,0.136402866146157,7.91753635394363,8.79543080504002,9.58658262140744,3.49230769230769,210.891526922684,62,29399,0,1,0,0,9 +"16967",2015,55017,"WI","55","017",63438,0.958022005737886,3423,0.143510198934393,8.13827263853019,8.95751051029161,9.76319046699741,4.60769230769231,280.959006743016,105,37372,0,1,0,0,9 +"16968",2015,55019,"WI","55","019",34350,0.979505094614265,1799,0.13391557496361,7.49498623395053,8.21770840684531,9.06392635352065,4.27692307692308,267.827251422832,48,17922,0,1,0,0,9 +"16969",2015,55021,"WI","55","021",56683,0.963957447559233,3032,0.147910308205282,8.01697774676226,8.87066300440602,9.68146836888363,4.27692307692308,364.048698973502,122,33512,0,1,0,0,9 +"16970",2015,55023,"WI","55","023",16315,0.966288691388293,897,0.158381857186638,6.7990558620588,7.4265490723973,8.36520683441836,5.70769230769231,360.576923076923,33,9152,0,1,0,0,9 +"16971",2015,55025,"WI","55","025",523399,0.868318433928991,55790,0.119599005729854,10.9293499208396,11.1143267292793,12.0181514399257,3.11538461538462,218.487142061784,726,332285,0,1,0,0,9 +"16972",2015,55027,"WI","55","027",87838,0.952503472301282,5204,0.145381270065348,8.5571828396324,9.31262616551693,10.0830553211335,4.32307692307692,337.359278312085,181,53652,0,1,0,0,9 +"16973",2015,55029,"WI","55","029",27320,0.977086383601757,1236,0.184443631039531,7.11963563801764,7.90322680873073,8.91166475804954,6.63076923076923,374.606997123553,56,14949,0,1,0,0,9 +"16974",2015,55031,"WI","55","031",43553,0.94856841090166,2826,0.153031938098409,7.94661756324447,8.53738789870176,9.47523988153072,4.83076923076923,365.923384791309,96,26235,0,1,0,0,9 +"16975",2015,55033,"WI","55","033",44300,0.953386004514673,5831,0.12196388261851,8.67094379122216,8.46632086104248,9.45563672793152,4.4,269.931186556667,71,26303,0,1,0,0,9 +"16976",2015,55035,"WI","55","035",102142,0.934591059505394,12813,0.120234575395038,9.45821555950958,9.31388924760474,10.3448344725321,3.72307692307692,267.353841198261,166,62090,0,1,0,0,9 +"16977",2015,55039,"WI","55","039",101970,0.954525840933608,6358,0.144218887908208,8.75746914147075,9.40640045488065,10.3087193000845,4,282.764736392993,169,59767,0,1,0,0,9 +"16978",2015,55041,"WI","55","041",9015,0.821075984470327,566,0.160843039378813,6.33859407820318,6.79122146272619,7.80791662892641,7.30769230769231,562.700964630225,28,4976,0,1,0,0,9 +"16979",2015,55043,"WI","55","043",52103,0.971556340325893,6359,0.129570274264438,8.75762641126741,8.53306654057253,9.53032021072713,4.3,282.695025913711,84,29714,0,1,0,0,9 +"16980",2015,55045,"WI","55","045",36928,0.980069324090121,1976,0.151483968804159,7.58882987830781,8.41161042884117,9.27040012840385,3.73076923076923,274.469668775586,59,21496,0,1,0,0,9 +"16981",2015,55047,"WI","55","047",18703,0.977864513714377,876,0.158156445490028,6.77536609093639,7.56682847920833,8.50855599802057,5.31538461538462,481.194147107925,49,10183,0,1,0,0,9 +"16982",2015,55049,"WI","55","049",23597,0.980294105182862,1189,0.155189218968513,7.08086789669078,7.9391588179568,8.81239690526686,4.14615384615385,307.399546219717,42,13663,0,1,0,0,9 +"16983",2015,55053,"WI","55","053",20526,0.897447140212414,1138,0.143232972814966,7.03702761468628,7.78405700263993,8.56902634005625,4.66153846153846,370.588730733597,44,11873,0,1,0,0,9 +"16984",2015,55055,"WI","55","055",84501,0.971574300895847,5295,0.140377036958143,8.57451825803551,9.26027274072439,10.1113143997384,4.13846153846154,313.007885390959,156,49839,0,1,0,0,9 +"16985",2015,55057,"WI","55","057",26319,0.950150081690034,1344,0.153311296021885,7.2034055210831,8.04044688130311,8.83229585944401,5.01538461538462,415.287781454805,64,15411,0,1,0,0,9 +"16986",2015,55059,"WI","55","059",168044,0.88909452286306,11578,0.130073076099117,9.35686202463895,9.97357316010282,10.8363797149077,5.00769230769231,351.274230050182,357,101630,0,1,0,0,9 +"16987",2015,55061,"WI","55","061",20329,0.980864774460131,1066,0.152491514585076,6.97166860472579,7.78696700261487,8.62801874650512,4.01538461538462,173.175166681098,20,11549,0,1,0,0,9 +"16988",2015,55063,"WI","55","063",117782,0.927781834236131,14131,0.126666213852711,9.55612624458275,9.4511666581427,10.481279996733,3.78461538461538,261.964451705586,186,71002,0,1,0,0,9 +"16989",2015,55065,"WI","55","065",16785,0.981888591003872,995,0.150670241286863,6.90274273715859,7.47760424319759,8.42989086301344,3.58461538461538,308.281067290316,29,9407,0,1,0,0,9 +"16990",2015,55067,"WI","55","067",19051,0.969555403915805,946,0.166815390268227,6.85224256905188,7.56423847517049,8.55429627936774,5.93076923076923,506.756756756757,54,10656,0,1,0,0,9 +"16991",2015,55069,"WI","55","069",27864,0.97584697100201,1461,0.167527993109388,7.2868764117507,8.05102220819068,8.97840831462889,4.88461538461539,370.888307898097,61,16447,0,1,0,0,9 +"16992",2015,55071,"WI","55","071",79488,0.951388888888889,4466,0.15889190821256,8.4042484324001,9.08307502093031,10.0254396632869,4.9,415.674388395757,192,46190,0,1,0,0,9 +"16993",2015,55073,"WI","55","073",135361,0.92134366619632,8003,0.140380168586225,8.98757175036705,9.70094288005314,10.5638532435717,3.93846153846154,298.601885240716,236,79035,0,1,0,0,9 +"16994",2015,55075,"WI","55","075",40676,0.978488543612941,2080,0.170272396499164,7.64012317269536,8.33423142973486,9.32972212899626,5.67692307692308,407.190816547542,94,23085,0,1,0,0,9 +"16995",2015,55077,"WI","55","077",15112,0.974325039703547,607,0.17423239809423,6.4085287910595,7.29233717617388,8.30795254527102,5.99230769230769,430.622009569378,36,8360,0,1,0,0,9 +"16996",2015,55079,"WI","55","079",958606,0.657618458469903,69574,0.119405678662558,11.150146213312,11.699048121755,12.6035559838967,5.62307692307692,395.280113785437,2290,579336,0,1,0,0,9 +"16997",2015,55081,"WI","55","081",45314,0.956349031204484,2336,0.142053228582778,7.75619534394812,8.58354257195777,9.43643955111603,4.35384615384615,349.609602610418,90,25743,0,1,0,0,9 +"16998",2015,55083,"WI","55","083",37474,0.972834498585686,1827,0.167449431605913,7.51043055637801,8.36938899664784,9.27444129738271,5.03846153846154,319.037418531516,70,21941,0,1,0,0,9 +"16999",2015,55085,"WI","55","085",35307,0.974197751154162,1725,0.180672387911746,7.45298232946546,8.13035354743124,9.20210656704908,5.64615384615385,417.536534446764,84,20118,0,1,0,0,9 +"17000",2015,55087,"WI","55","087",183311,0.92590188259297,11915,0.129850363589746,9.38555338953284,10.0509156866026,10.9083567661829,3.87692307692308,280.536742142248,309,110146,0,1,0,0,9 +"17001",2015,55089,"WI","55","089",87991,0.952324669568479,5379,0.155209055471582,8.59025776227324,9.18563775933581,10.1430161330997,3.60769230769231,256.277813095995,129,50336,0,1,0,0,9 +"17002",2015,55093,"WI","55","093",41117,0.971423012379308,4576,0.136318311160834,8.42858053305963,8.44612674298238,9.43516251366895,3.83846153846154,249.276294628498,62,24872,0,1,0,0,9 +"17003",2015,55095,"WI","55","095",43240,0.975185013876041,2245,0.160222016651249,7.71646080017636,8.50734485536142,9.41017435385477,4.72307692307692,409.984324128783,102,24879,0,1,0,0,9 +"17004",2015,55097,"WI","55","097",70544,0.950328872760263,8387,0.132938308006351,9.03443816698441,8.92970011431345,9.94774364379067,4.49230769230769,225.061540264916,96,42655,0,1,0,0,9 +"17005",2015,55099,"WI","55","099",13577,0.969580908890035,618,0.189806290049348,6.42648845745769,7.23128700432762,8.21121136179302,4.33846153846154,419.287211740042,32,7632,0,1,0,0,9 +"17006",2015,55101,"WI","55","101",194725,0.84841699833098,11951,0.14124534600077,9.38857023586688,10.0582237751854,10.9556020475447,5.49230769230769,383.3921491744,440,114765,0,1,0,0,9 +"17007",2015,55103,"WI","55","103",17568,0.97893897996357,931,0.165698998178506,6.83625927727707,7.53315880745556,8.45361420977337,4.1,310.945273631841,30,9648,0,1,0,0,9 +"17008",2015,55105,"WI","55","105",161095,0.918011111455973,10334,0.135907383841832,9.24319470884713,9.89646293759916,10.7685060424327,5.06923076923077,350.14377115452,330,94247,0,1,0,0,9 +"17009",2015,55107,"WI","55","107",14119,0.977123025710036,707,0.170125362986047,6.56103066589657,7.26122509197192,8.23190824356418,5.33846153846154,491.591203104787,38,7730,0,1,0,0,9 +"17010",2015,55109,"WI","55","109",87207,0.970472553808754,4533,0.133452589815038,8.41913925094085,9.41082923272559,10.1594080233643,3.74615384615385,250.51065633792,130,51894,0,1,0,0,9 +"17011",2015,55111,"WI","55","111",63290,0.964717964923369,3490,0.142613367040607,8.15765701519647,8.94049821765273,9.80156556281074,4.01538461538462,359.898574038226,132,36677,0,1,0,0,9 +"17012",2015,55113,"WI","55","113",16297,0.795851997300117,745,0.180462661839602,6.61338421837956,7.34213173058472,8.3670677328386,7.74615384615385,619.22990317496,55,8882,0,1,0,0,9 +"17013",2015,55115,"WI","55","115",41058,0.900141263578353,2143,0.148351113059574,7.66996199547358,8.41516046585109,9.3345030145966,4.76153846153846,363.243243243243,84,23125,0,1,0,0,9 +"17014",2015,55117,"WI","55","117",115209,0.914494527337274,7103,0.145717782464912,8.86827250899781,9.51782507172414,10.3987628949538,3.68461538461538,352.248172157594,238,67566,0,1,0,0,9 +"17015",2015,55119,"WI","55","119",20314,0.985428768337107,986,0.156148469036133,6.89365635460264,7.75319426988434,8.61013693705898,4.29230769230769,219.182886200245,25,11406,0,1,0,0,9 +"17016",2015,55121,"WI","55","121",29444,0.973848661866594,1623,0.141387039804374,7.39203156751459,8.13798045445214,8.99504097468502,3.82307692307692,342.054728756601,57,16664,0,1,0,0,9 +"17017",2015,55123,"WI","55","123",30331,0.983746002439748,1517,0.154033826777884,7.32448997934853,8.05674377497531,8.98969370086056,4.00769230769231,302.282541640962,49,16210,0,1,0,0,9 +"17018",2015,55125,"WI","55","125",21455,0.870333255651363,877,0.178792822185971,6.77650699237218,7.49443021503157,8.59803557926034,6.92307692307692,485.480535826665,54,11123,0,1,0,0,9 +"17019",2015,55127,"WI","55","127",102508,0.967017208413002,9650,0.139920786670309,9.17471319433303,9.35530614222637,10.3104848196224,4.53076923076923,306.374567616538,186,60710,0,1,0,0,9 +"17020",2015,55129,"WI","55","129",15515,0.969964550435063,668,0.181179503706091,6.50428817353665,7.32974968904151,8.35113860708615,5.26153846153846,437.507390327539,37,8457,0,1,0,0,9 +"17021",2015,55131,"WI","55","131",133920,0.966494922341697,6928,0.145698924731183,8.84332645024227,9.71147923015263,10.5682866975806,3.66923076923077,269.148247362474,212,78767,0,1,0,0,9 +"17022",2015,55133,"WI","55","133",396377,0.941646462837147,21860,0.152819159537511,9.99241376173053,10.7664407968196,11.6654576929534,3.72307692307692,233.008703306566,540,231751,0,1,0,0,9 +"17023",2015,55135,"WI","55","135",51684,0.980071201919356,2836,0.155463973376674,7.95014988765202,8.67863153729377,9.5823865705389,4.51538461538462,451.345616221496,134,29689,0,1,0,0,9 +"17024",2015,55137,"WI","55","137",23966,0.960318784945339,1100,0.167904531419511,7.00306545878646,7.82564473221999,8.71456755083648,6.13076923076923,420.664206642066,57,13550,0,1,0,0,9 +"17025",2015,55139,"WI","55","139",169383,0.936127002119457,15361,0.131288263875359,9.63958710874915,9.91115805884035,10.8168138949463,4.13076923076923,259.609423434594,268,103232,0,1,0,0,9 +"17026",2015,55141,"WI","55","141",73360,0.957619956379498,4026,0.151063249727372,8.30052860619974,8.99069070991623,9.94783931010663,5.36153846153846,377.250370087388,158,41882,0,1,0,0,9 +"17027",2015,54001,"WV","54","001",16980,0.974676089517079,1403,0.137279151943463,7.24636808010246,7.58069975222456,8.50653661122771,7.19230769230769,523.724730281764,50,9547,1,1,1,0,9 +"17028",2015,54003,"WV","54","003",111824,0.901425454285306,6336,0.12973959078552,8.75400293349426,9.62152244041358,10.4382542870735,4.77692307692308,448.430493273543,303,67569,1,1,1,0,9 +"17029",2015,54005,"WV","54","005",23252,0.987872011009806,1231,0.156244624118355,7.11558212618445,8.090708716084,8.83112763501208,9.51538461538462,667.840892411566,91,13626,1,1,1,0,9 +"17030",2015,54007,"WV","54","007",14378,0.983864237028794,805,0.155932674920017,6.69084227741856,7.42297125104942,8.30424746507847,8.74615384615385,616.835994194485,51,8268,1,1,1,0,9 +"17031",2015,54009,"WV","54","009",23213,0.975057080084435,1647,0.161547408779563,7.40671073017764,7.87815533650332,8.80537513890967,7.14615384615385,545.753588516746,73,13376,1,1,1,0,9 +"17032",2015,54011,"WV","54","011",96617,0.92660711883002,9984,0.128165850730203,9.20873909060921,9.34364673928441,10.2662191180574,5.3,685.947672490531,393,57293,1,1,1,0,9 +"17033",2015,54013,"WV","54","013",7472,0.990497858672377,346,0.163008565310493,5.84643877505772,6.72743172485086,7.6506445514369,12.2076923076923,420.560747663551,18,4280,1,1,1,0,9 +"17034",2015,54015,"WV","54","015",8886,0.990659464325906,452,0.154512716632906,6.11368217983223,6.99117688712121,7.82724090175281,10.8923076923077,560.785099138794,28,4993,1,1,1,0,9 +"17035",2015,54017,"WV","54","017",8706,0.968872042269699,633,0.150011486331266,6.45047042214418,7.01301578963963,7.74802852443238,5.4,352.319436288902,18,5109,1,1,1,0,9 +"17036",2015,54019,"WV","54","019",44726,0.945333810311676,2370,0.155949559540312,7.77064523412918,8.64944877053671,9.43316387207947,8.38461538461539,722.286597141754,187,25890,1,1,1,0,9 +"17037",2015,54021,"WV","54","021",8315,0.865183403487673,948,0.120384846662658,6.85435450225502,7.08170858610557,7.56371966841437,7.63076923076923,511.10327811068,29,5674,1,1,1,0,9 +"17038",2015,54023,"WV","54","023",11648,0.983001373626374,611,0.147063873626374,6.4150969591716,7.18538701558042,8.08147504013705,7.39230769230769,459.558823529412,30,6528,1,1,1,0,9 +"17039",2015,54025,"WV","54","025",35603,0.955762154874589,1935,0.15425666376429,7.56786260546388,8.30721262662831,9.23464266449915,6.40769230769231,562.440893932607,113,20091,1,1,1,0,9 +"17040",2015,54027,"WV","54","027",23314,0.978853907523377,1216,0.154799691172686,7.10332206252611,7.9124231214737,8.78859343129374,5.45384615384615,571.131879543095,77,13482,1,1,1,0,9 +"17041",2015,54029,"WV","54","029",30014,0.963650296528287,1515,0.162857333244486,7.32317071794347,8.19229373114764,9.07520769798469,7.61538461538461,583.511468022416,101,17309,1,1,1,0,9 +"17042",2015,54031,"WV","54","031",13833,0.950842188968409,690,0.148774669269139,6.5366915975913,7.44014668066269,8.26950076718061,7.31538461538462,478.288231592196,38,7945,1,1,1,0,9 +"17043",2015,54033,"WV","54","033",68573,0.969769442783603,3851,0.143000889562948,8.25608813381491,9.05520587502619,9.90488657344983,6.15384615384615,499.987500312492,200,40001,1,1,1,0,9 +"17044",2015,54035,"WV","54","035",29179,0.985914527571198,1627,0.148154494670825,7.39449310721904,8.16961956172385,9.03240916348352,7.02307692307692,527.040785769899,88,16697,1,1,1,0,9 +"17045",2015,54037,"WV","54","037",56164,0.904191296916174,3375,0.136475322270494,8.12415060330663,8.89137400948464,9.74455043597491,4,409.653575563274,138,33687,1,1,1,0,9 +"17046",2015,54039,"WV","54","039",188399,0.901268053439774,10909,0.153780009448033,9.29734341559776,10.0543614409703,10.9419074176433,5.83846153846154,667.377090633241,739,110732,1,1,1,0,9 +"17047",2015,54041,"WV","54","041",16436,0.983085908980287,933,0.144804088586031,6.83840520084734,7.63094658089046,8.46168048148598,8.04615384615385,673.117374842238,64,9508,1,1,1,0,9 +"17048",2015,54043,"WV","54","043",21284,0.991542943055817,1136,0.14818643112197,7.0352685992811,7.90838715929004,8.73133636053315,9.51538461538462,606.845214014079,75,12359,1,1,1,0,9 +"17049",2015,54045,"WV","54","045",34444,0.974364185344327,1871,0.163337591452793,7.53422832627409,8.45595588194505,9.23239536275701,10.9692307692308,1033.62934925025,213,20607,1,1,1,0,9 +"17050",2015,54047,"WV","54","047",19768,0.905402670983408,1088,0.173360987454472,6.99209642741589,7.79852305362521,8.68744216697592,12.4307692307692,1186.99466712541,138,11626,1,1,1,0,9 +"17051",2015,54049,"WV","54","049",56815,0.951333274663381,4878,0.139505412303089,8.49249057877587,8.83840674707681,9.71763978596561,6.7,436.024657946174,145,33255,1,1,1,0,9 +"17052",2015,54051,"WV","54","051",32218,0.984139301011857,1845,0.161090073871749,7.52023455647463,8.24328252304838,9.13010597926558,8.27692307692308,490.01130795326,91,18571,1,1,1,0,9 +"17053",2015,54053,"WV","54","053",27117,0.983147103293137,1417,0.155732566286831,7.25629723969068,8.12651816878071,9.00993630763146,8.30769230769231,568.908207619535,89,15644,1,1,1,0,9 +"17054",2015,54055,"WV","54","055",61187,0.923137267720267,3836,0.147433278310752,8.25218543600333,8.89288614119073,9.80090096376103,7.09230769230769,791.36690647482,275,34750,1,1,1,0,9 +"17055",2015,54057,"WV","54","057",27431,0.959206736903503,1664,0.143414385184645,7.41697962138115,8.04462627976734,8.9595686535445,7.16923076923077,563.070351433564,87,15451,1,1,1,0,9 +"17056",2015,54059,"WV","54","059",25321,0.973579242525967,1346,0.157102800047391,7.20489251020467,8.10409905614358,8.94871583384369,12.8846153846154,841.449678658981,127,15093,1,1,1,0,9 +"17057",2015,54061,"WV","54","061",104871,0.915629678366755,17265,0.107207903042786,9.75643660982409,9.39648793360367,10.411749893899,4.6,257.363454389477,180,69940,1,1,1,0,9 +"17058",2015,54063,"WV","54","063",13586,0.982849992639482,675,0.147136758427793,6.51471269087253,7.33171496972647,8.22255363839696,5.46153846153846,552.858683926645,41,7416,1,1,1,0,9 +"17059",2015,54065,"WV","54","065",17513,0.979558042596928,837,0.165191571975104,6.72982407048948,7.61134771740362,8.52516136106541,5.35384615384615,526.73424766448,53,10062,1,1,1,0,9 +"17060",2015,54067,"WV","54","067",25547,0.98629976122441,1392,0.156261009120445,7.23849684089437,8.03365842788615,8.91958692099992,8.83846153846154,734.394124847001,108,14706,1,1,1,0,9 +"17061",2015,54069,"WV","54","069",43018,0.946603747268585,3018,0.155586033753313,8.0123496393278,8.46168048148598,9.43244338211515,5.46923076923077,424.431060269211,105,24739,1,1,1,0,9 +"17062",2015,54071,"WV","54","071",7106,0.96819589079651,397,0.169012102448635,5.98393628068719,6.56244409369372,7.54380286750151,4.55384615384615,404.755881608905,16,3953,1,1,1,0,9 +"17063",2015,54073,"WV","54","073",7499,0.977997066275503,468,0.142685691425523,6.14846829591765,6.90975328164481,7.60090245954208,8.3,502.952110212115,23,4573,1,1,1,0,9 +"17064",2015,54075,"WV","54","075",8576,0.980060634328358,404,0.170475746268657,6.00141487796115,6.85751406254539,7.75233516330229,8.00769230769231,545.89567327133,27,4946,1,1,1,0,9 +"17065",2015,54077,"WV","54","077",33855,0.981036774479397,1884,0.147038842120809,7.54115245513631,8.40020983593042,9.17657674182337,6.09230769230769,400.443865489458,83,20727,1,1,1,0,9 +"17066",2015,54079,"WV","54","079",56601,0.974329075458031,2774,0.142576986272327,7.92804560087478,8.95583514421896,9.72208557280156,5.46153846153846,394.17828987265,130,32980,1,1,1,0,9 +"17067",2015,54081,"WV","54","081",77416,0.899206882298233,4350,0.147153043298543,8.37793112408273,9.23581316794921,9.99131526290165,7.20769230769231,710.921532035902,320,45012,1,1,1,0,9 +"17068",2015,54083,"WV","54","083",29209,0.975760895614365,1836,0.145674278475812,7.51534457118044,8.13123654969612,8.97765140781844,6.84615384615385,513.759300814929,87,16934,1,1,1,0,9 +"17069",2015,54085,"WV","54","085",10089,0.990484686292001,539,0.15739914758648,6.289715570909,7.05531284333975,7.94342776787637,6.82307692307692,417.536534446764,24,5748,1,1,1,0,9 +"17070",2015,54087,"WV","54","087",14379,0.98692537728632,671,0.158912302663607,6.50876913697168,7.49387388678356,8.31188955823036,11.2,674.59830737152,55,8153,1,1,1,0,9 +"17071",2015,54089,"WV","54","089",13150,0.945171102661597,618,0.165475285171103,6.42648845745769,7.43897159239586,8.36892517474713,6.88461538461539,789.205702647658,62,7856,1,1,1,0,9 +"17072",2015,54091,"WV","54","091",16920,0.97789598108747,887,0.147754137115839,6.78784498230958,7.67786350067821,8.48797033273933,5.83846153846154,475.106404038404,48,10103,1,1,1,0,9 +"17073",2015,54093,"WV","54","093",7088,0.987584650112867,408,0.156461625282167,6.01126717440416,6.6682282484174,7.60688453121963,5.96923076923077,275.482093663912,11,3993,1,1,1,0,9 +"17074",2015,54095,"WV","54","095",8959,0.991182051568255,458,0.166648063399933,6.12686918411419,6.96979066990159,7.84776253747361,9.13076923076923,485.531171101185,25,5149,1,1,1,0,9 +"17075",2015,54097,"WV","54","097",24756,0.980691549523348,1986,0.140006463079657,7.59387784460512,7.92226105835325,8.86756833320644,7.83076923076923,423.429781227946,60,14170,1,1,1,0,9 +"17076",2015,54099,"WV","54","099",41272,0.987279511533243,2295,0.142324093816631,7.73848812249465,8.5567984460086,9.39856116070113,6.94615384615385,626.242965345068,148,23633,1,1,1,0,9 +"17077",2015,54101,"WV","54","101",8635,0.989693109438332,462,0.163057324840764,6.13556489108174,6.90775527898214,7.80506704425849,7.39230769230769,654.530578850481,32,4889,1,1,1,0,9 +"17078",2015,54103,"WV","54","103",15783,0.987835012355066,884,0.150161566242159,6.78445706263764,7.44775128004791,8.38867776918081,9.76153846153846,554.173263967428,49,8842,1,1,1,0,9 +"17079",2015,54107,"WV","54","107",86410,0.973834046985303,4866,0.143536627705127,8.49002752334347,9.25598272985488,10.1441959350298,6.14615384615385,530.732410726803,265,49931,1,1,1,0,9 +"17080",2015,54109,"WV","54","109",22179,0.98724018215429,1100,0.166328508949908,7.00306545878646,7.99260665240021,8.78370269863522,9.41538461538462,906.625339015885,117,12905,1,1,1,0,9 +"17081",2015,56001,"WY","56","001",38054,0.929573763599096,8615,0.101461081620855,9.06126014896203,8.20083725837985,9.38647616968305,3.11538461538462,125.568984460838,32,25484,0,1,0,0,9 +"17082",2015,56003,"WY","56","003",11965,0.96916005014626,589,0.141161721688257,6.37842618365159,7.1420365747068,8.02059914989697,4.36923076923077,429.594272076372,27,6285,0,1,0,0,9 +"17083",2015,56005,"WY","56","005",49336,0.963292524728393,3219,0.129884871088049,8.07682603129881,8.80312373082921,9.5800401236376,3.87692307692308,306.149035956227,94,30704,0,1,0,0,9 +"17084",2015,56007,"WY","56","007",15630,0.953358925143954,895,0.141842610364683,6.79682371827486,7.52994337060159,8.32190796823042,3.70769230769231,460.286876471848,43,9342,0,1,0,0,9 +"17085",2015,56009,"WY","56","009",14303,0.969237222960218,791,0.139481227714465,6.67329796776765,7.4489161025442,8.28475659319044,3.6,458.107293550331,38,8295,0,1,0,0,9 +"17086",2015,56011,"WY","56","011",7441,0.975137750302379,326,0.164494019621019,5.78689738136671,6.64378973314767,7.59538727885397,3.46923076923077,340.466926070039,14,4112,0,1,0,0,9 +"17087",2015,56013,"WY","56","013",40261,0.753682223491717,2301,0.144233873972331,7.74109909003537,8.38206051742474,9.31289696030128,5.46923076923077,675.826880902296,151,22343,0,1,0,0,9 +"17088",2015,56015,"WY","56","015",13566,0.968081969629957,877,0.145068553737284,6.77650699237218,7.31654817718298,8.13064796816058,3.23846153846154,505.992010652463,38,7510,0,1,0,0,9 +"17089",2015,56017,"WY","56","017",4722,0.970563320626853,199,0.169631512071156,5.29330482472449,6.15697898558556,7.13009851012558,4.10769230769231,873.362445414847,22,2519,0,1,0,0,9 +"17090",2015,56019,"WY","56","019",8622,0.964625376942705,375,0.159243794943169,5.92692602597041,6.86484777797086,7.7484600238997,4.83846153846154,384.69758495405,18,4679,0,1,0,0,9 +"17091",2015,56021,"WY","56","021",97090,0.93290761149449,7163,0.129591101040272,8.87668416661445,9.35824300189968,10.2414230038507,3.88461538461538,390.233794937321,226,57914,0,1,0,0,9 +"17092",2015,56023,"WY","56","023",18788,0.975782414307005,823,0.152065147966787,6.71295620067707,7.77611547709874,8.53168763756669,4.65384615384615,346.987951807229,36,10375,0,1,0,0,9 +"17093",2015,56025,"WY","56","025",82218,0.954912549563356,5372,0.135335328030358,8.58895555764313,9.24416192045169,10.0882644259051,4.82307692307692,442.104417025039,220,49762,0,1,0,0,9 +"17094",2015,56029,"WY","56","029",28973,0.971939391847582,1575,0.163704138335692,7.36201055125973,8.02224091680654,9.00429972856164,4.27692307692308,364.121859448962,60,16478,0,1,0,0,9 +"17095",2015,56031,"WY","56","031",8803,0.973758945813927,440,0.160967851868681,6.08677472691231,6.76157276880406,7.74975340627444,3.87692307692308,373.909430826755,18,4814,0,1,0,0,9 +"17096",2015,56033,"WY","56","033",29925,0.964511278195489,1727,0.159097744360902,7.45414107814668,8.15219801586179,9.04840950482996,4.2,449.845183151253,77,17117,0,1,0,0,9 +"17097",2015,56035,"WY","56","035",10064,0.970091414944356,466,0.145667726550079,6.14418563412565,7.23273313617761,7.90654723236804,5.15384615384615,216.450216450216,13,6006,0,1,0,0,9 +"17098",2015,56037,"WY","56","037",44780,0.955069227333631,2857,0.132492184010719,7.95752740223077,8.70814407490825,9.46195475526609,4.63846153846154,339.608711701735,92,27090,0,1,0,0,9 +"17099",2015,56039,"WY","56","039",23083,0.966035610622536,1112,0.135770913659403,7.01391547481053,8.21365270303,8.89384721767028,3.90769230769231,206.97238212276,32,15461,0,1,0,0,9 +"17100",2015,56041,"WY","56","041",20777,0.967800933724792,1110,0.140973191509843,7.01211529430638,7.88570539124302,8.67162954472066,4.93076923076923,458.715596330275,54,11772,0,1,0,0,9 +"17101",2015,56043,"WY","56","043",8282,0.961482733639218,389,0.144651050470901,5.96357934361845,6.88653164253051,7.67461749736436,4.12307692307692,356.585691999109,16,4487,0,1,0,0,9 +"17102",2016,2020,"AK","02","020",298072,0.686213398105156,24077,0.120353471644435,10.0890123069438,10.5386877731412,11.4204921430391,5.29230769230769,374.412151618281,703,187761,0,1,0,0,9 +"17103",2016,2050,"AK","02","050",18018,0.116494616494616,1347,0.0996780996780997,7.20563517641036,7.52994337060159,8.43620003220671,13.7153846153846,558.83266066439,54,9663,0,1,0,0,9 +"17104",2016,2070,"AK","02","070",4968,0.197262479871176,397,0.123590982286634,5.98393628068719,6.16120732169508,7.22620901010067,9.40769230769231,497.512437810945,14,2814,0,1,0,0,9 +"17105",2016,2090,"AK","02","090",100877,0.797714047800787,11373,0.110976734042448,9.33899740418445,9.4097648366698,10.2702118323279,5.63076923076923,310.125600868352,200,64490,0,1,0,0,9 +"17106",2016,2110,"AK","02","110",32456,0.739216169583436,2154,0.14539684495933,7.67508185771633,8.35090245169481,9.21671997894022,4.30769230769231,376.429708990879,78,20721,0,1,0,0,9 +"17107",2016,2122,"AK","02","122",58515,0.869623173545245,3313,0.164539007092199,8.1056094022999,8.81744592104187,9.71099444042068,8.20769230769231,527.286348181871,183,34706,0,1,0,0,9 +"17108",2016,2130,"AK","02","130",13760,0.721584302325581,837,0.156976744186047,6.72982407048948,7.42416528104203,8.31041499418829,6.32307692307692,318.208603417796,27,8485,0,1,0,0,9 +"17109",2016,2150,"AK","02","150",13722,0.597289024923481,970,0.126002040518875,6.87729607149743,7.50328963067508,8.27410200229233,4.94615384615385,212.715670054361,18,8462,0,1,0,0,9 +"17110",2016,2170,"AK","02","170",104258,0.872335935851445,6554,0.132354351704426,8.78783082925876,9.52098184856287,10.2954958559577,7.87692307692308,333.620662133257,209,62646,0,1,0,0,9 +"17111",2016,2180,"AK","02","180",9983,0.172493238505459,744,0.0984673945707703,6.61204103483309,6.98841318199959,7.83042561782033,12.2615384615385,615.901455767077,33,5358,0,1,0,0,9 +"17112",2016,2185,"AK","02","185",9292,0.317585019371502,579,0.143564356435644,6.361302477573,7.06646697013696,7.61085279039525,6.53846153846154,543.731551965201,35,6437,0,1,0,0,9 +"17113",2016,2188,"AK","02","188",7709,0.136463873394733,559,0.0932676092878454,6.3261494731551,6.67834211465433,7.50549227473742,15.3923076923077,607.09082078679,25,4118,0,1,0,0,9 +"17114",2016,2220,"AK","02","220",8744,0.700937785910339,507,0.148215919487649,6.22851100359118,7.11558212618445,7.86748856869913,4.46153846153846,296.406076324565,16,5398,0,1,0,0,9 +"17115",2016,2261,"AK","02","261",9440,0.791419491525424,521,0.175847457627119,6.25575004175337,7.00397413672268,7.90948949267376,8.51538461538462,338.696020321761,20,5905,0,1,0,0,9 +"17116",2016,2270,"AK","02","270",8180,0.0440097799511002,641,0.0836185819070905,6.46302945692067,6.56244409369372,7.5422134631934,NA,625.156289072268,25,3999,0,1,0,0,9 +"17117",2016,2290,"AK","02","290",5418,0.237356958287191,320,0.144518272425249,5.76832099579377,6.37842618365159,7.22693601849329,17.1846153846154,963.135171039522,29,3011,0,1,0,0,9 +"17118",2016,1001,"AL","01","001",55302,0.783425554229503,3366,0.124317384543055,8.12148037475075,8.90517298518338,9.71709773156622,5.10769230769231,462.050271069492,150,32464,0,1,0,0,9 +"17119",2016,1003,"AL","01","003",207787,0.883885902390429,11048,0.141365917983319,9.31000469508913,10.1334478171773,11.0085125689764,5.36923076923077,391.567288417762,461,117732,0,1,0,0,9 +"17120",2016,1005,"AL","01","005",25828,0.501045377110113,1665,0.127961901811987,7.41758040241454,8.05420489706441,8.78844095740459,8.34615384615385,476.75026123302,73,15312,0,1,0,0,9 +"17121",2016,1007,"AL","01","007",22590,0.772465692784418,1402,0.123550243470562,7.24565506759454,8.01895468315572,8.72339402200014,6.46923076923077,528.231850952959,74,14009,0,1,0,0,9 +"17122",2016,1009,"AL","01","009",57487,0.970810792005149,3289,0.130899159810044,8.09833884618906,8.87626525995469,9.69922708822342,5.40769230769231,562.364375439347,184,32719,0,1,0,0,9 +"17123",2016,1011,"AL","01","011",10397,0.2683466384534,671,0.139944214677311,6.50876913697168,7.20191631753163,7.88720858581393,6.83846153846154,528,33,6250,0,1,0,0,9 +"17124",2016,1013,"AL","01","013",20040,0.531836327345309,1196,0.143463073852295,7.08673793451058,7.7553388128465,8.71489585024849,6.93846153846154,796.452167616979,88,11049,0,1,0,0,9 +"17125",2016,1015,"AL","01","015",115036,0.766047150457248,7474,0.138600090406481,8.91918561004543,9.52741132932175,10.4537165650769,6.56923076923077,681.486772014404,458,67206,0,1,0,0,9 +"17126",2016,1017,"AL","01","017",33742,0.579870784185881,2147,0.144449054590718,7.67182679787878,8.26126815057765,9.21900274505484,5.49230769230769,665.949490292506,130,19521,0,1,0,0,9 +"17127",2016,1019,"AL","01","019",25769,0.941945748767899,1333,0.153440180061314,7.19518732017871,7.97143099776935,8.87961160998204,5.07692307692308,739.665422369695,107,14466,0,1,0,0,9 +"17128",2016,1021,"AL","01","021",43854,0.880603821772244,2620,0.135358234140557,7.87092959675514,8.62962862074603,9.45493225449626,5.49230769230769,558.637239859947,142,25419,0,1,0,0,9 +"17129",2016,1023,"AL","01","023",13049,0.575523028584566,727,0.150356349145528,6.58892647753352,7.27239839257005,8.24170315972982,8.53846153846154,745.85635359116,54,7240,0,1,0,0,9 +"17130",2016,1025,"AL","01","025",24342,0.541574233834525,1590,0.140374661079615,7.37148929521428,7.97039490719143,8.89192414015454,10.8923076923077,622.376610218555,86,13818,0,1,0,0,9 +"17131",2016,1027,"AL","01","027",13393,0.842007018591802,779,0.13940117972075,6.65801104587075,7.35372233039963,8.25945819533241,5.96153846153846,632.661130881771,48,7587,0,1,0,0,9 +"17132",2016,1029,"AL","01","029",14871,0.95541658261045,807,0.136709030999933,6.69332366826995,7.48099216286952,8.33950090300594,6,740.652251821766,62,8371,0,1,0,0,9 +"17133",2016,1031,"AL","01","031",51281,0.776661921569392,3036,0.125270568046645,8.01829613851552,8.8034242116007,9.60251758575741,5.90769230769231,491.908945957865,145,29477,0,1,0,0,9 +"17134",2016,1033,"AL","01","033",54483,0.820439403116568,3102,0.139511407227943,8.03980234373648,8.75258146914688,9.68115617132248,6.96923076923077,561.77971814709,175,31151,0,1,0,0,9 +"17135",2016,1035,"AL","01","035",12495,0.514205682272909,734,0.151420568227291,6.59850902861452,7.2034055210831,8.17835816560584,8.43076923076923,554.501678097184,38,6853,0,1,0,0,9 +"17136",2016,1037,"AL","01","037",10812,0.673603403625601,603,0.175083240843507,6.40191719672719,7.07834157955767,8.0381891799732,5.98461538461538,608.804246019357,39,6406,0,1,0,0,9 +"17137",2016,1039,"AL","01","039",37400,0.856149732620321,1996,0.144625668449198,7.59890045687141,8.34260168068419,9.27415988468914,6.78461538461538,671.462829736211,140,20850,0,1,0,0,9 +"17138",2016,1041,"AL","01","041",13911,0.735173603623032,817,0.142405290777083,6.70563909486,7.38832785957711,8.29654652030061,5.88461538461539,548.889456216492,43,7834,0,1,0,0,9 +"17139",2016,1043,"AL","01","043",82434,0.970558264793653,4675,0.134180071329791,8.44998444172279,9.21313645927818,10.0616444823308,4.99230769230769,597.964376590331,282,47160,0,1,0,0,9 +"17140",2016,1045,"AL","01","045",49476,0.760692052712426,3294,0.129436494461961,8.09985791073758,8.68253812400308,9.57692604202343,5.80769230769231,552.217552877436,159,28793,0,1,0,0,9 +"17141",2016,1047,"AL","01","047",40105,0.282209200847775,2600,0.143124298715871,7.86326672400957,8.40290404501411,9.41491253770496,9.23846153846154,809.843400447427,181,22350,0,1,0,0,9 +"17142",2016,1049,"AL","01","049",71116,0.94507565104899,4225,0.127749029754204,8.34877453979127,9.10886120302633,9.90912165115322,6.08461538461538,634.385686672944,256,40354,0,1,0,0,9 +"17143",2016,1051,"AL","01","051",81258,0.768072066750351,5329,0.129021142533658,8.58091888229678,9.29944954704796,10.1523768202688,4.75384615384615,481.644877969806,238,49414,0,1,0,0,9 +"17144",2016,1053,"AL","01","053",37500,0.627413333333333,2261,0.129466666666667,7.72356247227797,8.49310539588715,9.20693457884135,6.66153846153846,743.123838869002,164,22069,0,1,0,0,9 +"17145",2016,1055,"AL","01","055",102931,0.820607980103176,6300,0.13796621037394,8.74830491237962,9.44762348684411,10.3239726274007,5.92307692307692,703.061775020232,417,59312,0,1,0,0,9 +"17146",2016,1057,"AL","01","057",16581,0.867619564561848,981,0.143115614257282,6.88857245956536,7.5076900778199,8.44505251363855,6.76923076923077,648.648648648649,60,9250,0,1,0,0,9 +"17147",2016,1059,"AL","01","059",31674,0.926785376018185,1958,0.121803371850729,7.57967882309046,8.30696586536857,9.0831885863157,5.9,659.097202990861,119,18055,0,1,0,0,9 +"17148",2016,1061,"AL","01","061",26497,0.884628448503604,1402,0.142770879722233,7.24565506759454,8.02878116248715,8.92917038313962,5.81538461538462,562.248995983936,84,14940,0,1,0,0,9 +"17149",2016,1063,"AL","01","063",8485,0.181143193871538,532,0.160989982321744,6.27664348934164,6.72623340235875,7.79770203551669,9.98461538461538,705.580500320718,33,4677,0,1,0,0,9 +"17150",2016,1065,"AL","01","065",14845,0.409632873021219,962,0.144088918827888,6.86901445066571,7.40427911803727,8.39525152061099,7.65384615384615,737.160120845921,61,8275,0,1,0,0,9 +"17151",2016,1067,"AL","01","067",17062,0.715625366311101,900,0.14400421990388,6.80239476332431,7.63819824428578,8.49433389727015,6.53846153846154,538.315389487017,51,9474,0,1,0,0,9 +"17152",2016,1069,"AL","01","069",104355,0.706607254084615,6007,0.13188634948014,8.70068073485016,9.46653177733659,10.3557090119861,5.78461538461538,484.870701146361,291,60016,0,1,0,0,9 +"17153",2016,1071,"AL","01","071",52058,0.935187675285259,2872,0.147662222905221,7.96276393016811,8.77431295828538,9.62258246436337,6.30769230769231,678.362573099415,203,29925,0,1,0,0,9 +"17154",2016,1073,"AL","01","073",660507,0.540372774247661,43095,0.133280949331347,10.6711622600815,11.3282691848296,12.2387527849188,5.74615384615385,548.640890062767,2152,392242,0,1,0,0,9 +"17155",2016,1075,"AL","01","075",13926,0.884963377854373,664,0.143544449231653,6.49828214947643,7.39203156751459,8.25842246245888,5.65384615384615,714.471291244479,55,7698,0,1,0,0,9 +"17156",2016,1077,"AL","01","077",92521,0.880491996411625,7899,0.137514726386442,8.97449144816442,9.21761385594268,10.2237215162816,6.36923076923077,565.585437111394,302,53396,0,1,0,0,9 +"17157",2016,1079,"AL","01","079",33196,0.815339197493674,1967,0.141221833955898,7.58426481838906,8.24407127029579,9.1988748938669,6.92307692307692,662.591812625199,129,19469,0,1,0,0,9 +"17158",2016,1081,"AL","01","081",159446,0.714818810130075,22494,0.104110482545815,10.021003885964,9.85235214042136,10.8310149163363,5.24615384615385,293.67251004801,293,99771,0,1,0,0,9 +"17159",2016,1083,"AL","01","083",92896,0.831919565966242,5109,0.129295125732001,8.5387589693308,9.43946599496794,10.213945768177,5.26153846153846,406.343978232851,227,55864,0,1,0,0,9 +"17160",2016,1085,"AL","01","085",10245,0.252220595412396,597,0.145339189848707,6.3919171133926,7.01121398735037,8.03268487596762,10.5692307692308,668.26593557231,39,5836,0,1,0,0,9 +"17161",2016,1087,"AL","01","087",19077,0.169628348272789,2383,0.139330083346438,7.77611547709874,7.4730690880322,8.69717868841264,7.62307692307692,611.345859929875,68,11123,0,1,0,0,9 +"17162",2016,1089,"AL","01","089",356985,0.704301301175119,24439,0.134252139445635,10.1039354959181,10.6667436482412,11.6105783530348,5.12307692307692,425.541724296911,923,216900,0,1,0,0,9 +"17163",2016,1091,"AL","01","091",19536,0.46990171990172,1222,0.140612203112203,7.10824413973154,7.70436116791031,8.65921345143667,7.16923076923077,551.419906258616,60,10881,0,1,0,0,9 +"17164",2016,1093,"AL","01","093",29958,0.950030042058882,1633,0.136123906802857,7.39817409297047,8.15133333790043,9.02401079378469,6.62307692307692,557.301239105947,94,16867,0,1,0,0,9 +"17165",2016,1095,"AL","01","095",95123,0.944902915172987,5693,0.12728782733934,8.64699262895108,9.33229248272693,10.192793306104,5.35384615384615,605.799973823458,324,53483,0,1,0,0,9 +"17166",2016,1097,"AL","01","097",415169,0.603424147756697,28073,0.132138960278826,10.2425635393131,10.8064295856406,11.7515407099848,6.63846153846154,556.073109804859,1349,242594,0,1,0,0,9 +"17167",2016,1099,"AL","01","099",21553,0.562520298798311,1351,0.148842388530599,7.2086003379602,7.81480342948936,8.76060984757,9.08461538461538,536.436411653049,65,12117,0,1,0,0,9 +"17168",2016,1101,"AL","01","101",227398,0.376551244953781,17043,0.125322122446108,9.74349484122524,10.2573786250982,11.1793251005734,5.69230769230769,476.407534296931,648,136018,0,1,0,0,9 +"17169",2016,1103,"AL","01","103",119090,0.845662943991939,6889,0.135175077672349,8.8376812155932,9.60157132005652,10.4530241441727,5.53076923076923,518.478935890585,359,69241,0,1,0,0,9 +"17170",2016,1105,"AL","01","105",9538,0.308450408890753,857,0.131474103585657,6.75343791859778,6.9177056098353,7.92044650514261,10.3384615384615,716.360116166505,37,5165,0,1,0,0,9 +"17171",2016,1107,"AL","01","107",20337,0.580370752815066,1282,0.140876235432955,7.15617663748062,7.7591874385078,8.69483715865908,6.86923076923077,520.145310435931,63,12112,0,1,0,0,9 +"17172",2016,1109,"AL","01","109",33540,0.584764460345856,5895,0.10778175313059,8.68185981297147,8.11432470915534,9.24570751581347,6.5,514.794082367053,103,20008,0,1,0,0,9 +"17173",2016,1111,"AL","01","111",22515,0.787563846324672,1310,0.144126138130135,7.1777824161952,7.84031298332016,8.75951172211649,5.59230769230769,511.918093105103,64,12502,0,1,0,0,9 +"17174",2016,1113,"AL","01","113",58290,0.520140675930691,3844,0.124704065877509,8.25426877009018,8.90639340705837,9.7913261856478,5.56923076923077,613.214337123938,213,34735,0,1,0,0,9 +"17175",2016,1115,"AL","01","115",87342,0.891358109500584,4631,0.132685306038332,8.44052810648075,9.34224544285612,10.1554129052758,5.2,550.497565106924,286,51953,0,1,0,0,9 +"17176",2016,1117,"AL","01","117",211538,0.845370571717611,12057,0.128766462763191,9.39740068311731,10.2947185006165,11.0762637641736,4.31538461538462,298.138626489697,374,125445,0,1,0,0,9 +"17177",2016,1119,"AL","01","119",12973,0.256918214753719,1906,0.143220534957219,7.55276208421415,7.04315991598834,8.32724260745779,7.70769230769231,750.69142631371,57,7593,0,1,0,0,9 +"17178",2016,1121,"AL","01","121",80598,0.656554753219683,5026,0.142125114767116,8.52237971810354,9.18901458526143,10.0969962987206,6.60769230769231,674.461382328689,319,47297,0,1,0,0,9 +"17179",2016,1123,"AL","01","123",40607,0.713522299110991,2343,0.153150934567932,7.7591874385078,8.37216741936598,9.37407356395878,5.58461538461538,650.683435957902,149,22899,0,1,0,0,9 +"17180",2016,1125,"AL","01","125",206737,0.656873225402323,25159,0.114739983650725,10.1329709643965,10.107774429,11.089774886806,5.66923076923077,413.441169290377,525,126983,0,1,0,0,9 +"17181",2016,1127,"AL","01","127",64559,0.921420715934262,3699,0.140631050666832,8.21581779183245,8.93392789178263,9.82698440655001,7.46923076923077,909.806903669102,335,36821,0,1,0,0,9 +"17182",2016,1129,"AL","01","129",16607,0.667188534955139,1039,0.141988318179081,6.94601399109923,7.52940645783701,8.47574600150206,8.65384615384615,619.682806427896,59,9521,0,1,0,0,9 +"17183",2016,1131,"AL","01","131",10860,0.278453038674033,713,0.138397790055249,6.5694814204143,7.09754885061479,8.04846874366888,14.4461538461538,641.025641025641,38,5928,0,1,0,0,9 +"17184",2016,1133,"AL","01","133",23911,0.97348500690059,1233,0.143072226172055,7.11720550316434,7.91790058632792,8.79830371848498,7.11538461538461,642.750373692078,86,13380,0,1,0,0,9 +"17185",2016,5001,"AR","05","001",18204,0.73560755877829,1068,0.149692375302131,6.97354301952014,7.68248244653451,8.5855992240803,3.40769230769231,746.775288526816,77,10311,0,1,0,0,9 +"17186",2016,5003,"AR","05","003",20544,0.731843847352025,1131,0.137899143302181,7.03085747611612,7.78447323573647,8.6711152736885,6.14615384615385,628.986534372785,71,11288,0,1,0,0,9 +"17187",2016,5005,"AR","05","005",41159,0.980198741466022,1693,0.155640321679341,7.43425738213314,8.21932609390609,9.28256800597306,4.3,553.962777588804,114,20579,0,1,0,0,9 +"17188",2016,5007,"AR","05","007",259497,0.906484468028532,15087,0.105006994300512,9.62158872484008,10.5075302580133,11.226136327067,2.92307692307692,283.306940351862,424,149661,0,1,0,0,9 +"17189",2016,5009,"AR","05","009",37307,0.976599565765138,2126,0.134398370279036,7.66199755890189,8.36310917603352,9.24936875894366,3.66923076923077,554.016620498615,114,20577,0,1,0,0,9 +"17190",2016,5011,"AR","05","011",10961,0.695739439832132,621,0.133017060487182,6.43133108193348,7.17548971362422,8.04398443122155,5.02307692307692,507.115982332734,31,6113,0,1,0,0,9 +"17191",2016,5013,"AR","05","013",5147,0.770351661161842,310,0.155041771905965,5.73657229747919,6.2709884318583,7.25417784645652,4.59230769230769,696.748506967485,21,3014,0,1,0,0,9 +"17192",2016,5015,"AR","05","015",27730,0.954165164082221,1396,0.153443923548503,7.24136628332232,8.00034949532468,8.92145757894788,3.57692307692308,489.637131933731,73,14909,0,1,0,0,9 +"17193",2016,5017,"AR","05","017",10929,0.434806478177326,682,0.152438466465367,6.52502965784346,7.09007683577609,7.97487690055888,6.58461538461538,640.394088669951,39,6090,0,1,0,0,9 +"17194",2016,5019,"AR","05","019",22643,0.73563573731396,3395,0.114693282692223,8.1300590399928,7.70706265537047,8.82084703337772,4.34615384615385,469.122510189956,61,13003,0,1,0,0,9 +"17195",2016,5021,"AR","05","021",15059,0.983199415631848,854,0.133607809283485,6.74993119378857,7.45066079621154,8.32457884513685,5.66153846153846,664.572257129048,55,8276,0,1,0,0,9 +"17196",2016,5023,"AR","05","023",25171,0.9801755989035,1125,0.149696078820865,7.02553831463852,7.86940171257709,8.80537513890967,5.94615384615385,585.102392918761,78,13331,0,1,0,0,9 +"17197",2016,5025,"AR","05","025",8253,0.872773536895674,428,0.138495092693566,6.0591231955818,6.87419849545329,7.74196789982069,4.5,827.526132404181,38,4592,0,1,0,0,9 +"17198",2016,5027,"AR","05","027",24015,0.618363522798251,2752,0.123297938788257,7.92008319905323,7.78779687818117,8.84721610435754,5.70769230769231,578.420467185762,78,13485,0,1,0,0,9 +"17199",2016,5029,"AR","05","029",20877,0.864923121138095,1174,0.140489533936868,7.06817200038804,7.77401507725073,8.67948209445996,5.70769230769231,492.861998640381,58,11768,0,1,0,0,9 +"17200",2016,5031,"AR","05","031",106039,0.821725968747348,7966,0.108441233885646,8.98293776374159,9.50226343868522,10.3629672489505,3.26923076923077,412.18116574532,255,61866,0,1,0,0,9 +"17201",2016,5033,"AR","05","033",62312,0.931971369880601,3438,0.13119463345744,8.1426451859428,8.93577193866978,9.78992684031296,3.92307692307692,566.037735849057,201,35510,0,1,0,0,9 +"17202",2016,5035,"AR","05","035",49296,0.449569944823109,3343,0.122910580980201,8.1146238864201,8.68084148294457,9.61233279060538,4.51538461538462,632.05256391944,177,28004,0,1,0,0,9 +"17203",2016,5037,"AR","05","037",17029,0.751541488049797,1040,0.133478184273886,6.94697599213542,7.64778604544093,8.5016733797582,4.42307692307692,662.460567823344,63,9510,0,1,0,0,9 +"17204",2016,5039,"AR","05","039",7401,0.562896905823537,384,0.157816511282259,5.95064255258773,6.68085467879022,7.61381868480863,4.85384615384615,809.220205983325,33,4078,0,1,0,0,9 +"17205",2016,5041,"AR","05","041",11904,0.50823252688172,675,0.145245295698925,6.51471269087253,7.15773548424991,8.12740456269308,5.45384615384615,805.078185477628,52,6459,0,1,0,0,9 +"17206",2016,5043,"AR","05","043",18574,0.70184128351459,1922,0.126467104554754,7.56112158953024,7.59034694560257,8.60904284504612,5.67692307692308,610.443275732532,65,10648,0,1,0,0,9 +"17207",2016,5045,"AR","05","045",122213,0.854868140050567,14569,0.105913446196395,9.586651262654,9.61939901559448,10.5493334599781,3.8,372.630988473816,279,74873,0,1,0,0,9 +"17208",2016,5047,"AR","05","047",17676,0.960398280153881,1029,0.134758995247794,6.93634273583405,7.6506445514369,8.48838210956212,4.05384615384615,692.32335573203,68,9822,0,1,0,0,9 +"17209",2016,5049,"AR","05","049",12112,0.978533685601057,582,0.150924702774108,6.36647044773144,7.05358572719368,8.05864371221562,4.34615384615385,563.063063063063,35,6216,0,1,0,0,9 +"17210",2016,5051,"AR","05","051",98356,0.887215828215869,5241,0.144627679043475,8.56426759880217,9.2869309741379,10.2323235644084,4.31538461538462,610.507449311079,327,53562,0,1,0,0,9 +"17211",2016,5053,"AR","05","053",18080,0.959236725663717,989,0.137278761061947,6.89669433162271,7.74413662762799,8.55910259449345,3.60769230769231,657.518582046884,69,10494,0,1,0,0,9 +"17212",2016,5055,"AR","05","055",44733,0.968166677844097,2719,0.119352603223571,7.90801944463247,8.6652683094816,9.47116499025808,4.29230769230769,593.897989286546,153,25762,0,1,0,0,9 +"17213",2016,5057,"AR","05","057",22047,0.67106635823468,1245,0.137297591509049,7.12689080889881,7.83834331555712,8.73825457652612,3.75384615384615,481.048353653479,58,12057,0,1,0,0,9 +"17214",2016,5059,"AR","05","059",33452,0.871128781537726,2031,0.13876599306469,7.61628356158038,8.33206770728955,9.12216468107246,3.93076923076923,683.025550215027,135,19765,0,1,0,0,9 +"17215",2016,5061,"AR","05","061",13347,0.765415449164606,766,0.126020828650633,6.64118216974059,7.27100853828099,8.24407127029579,3.27692307692308,576.447982432062,42,7286,0,1,0,0,9 +"17216",2016,5063,"AR","05","063",37121,0.954985048894157,2278,0.131919937501684,7.73105314400713,8.414717399827,9.25874951118387,4.95384615384615,513.164836218886,107,20851,0,1,0,0,9 +"17217",2016,5065,"AR","05","065",13500,0.96237037037037,634,0.149555555555556,6.45204895443723,7.29437729928882,8.12148037475075,5.62307692307692,635.306839686402,47,7398,0,1,0,0,9 +"17218",2016,5067,"AR","05","067",17314,0.804724500404297,1027,0.134746447961187,6.93439720992856,7.72841577984104,8.54519738782584,6.26153846153846,666.730164777598,70,10499,0,1,0,0,9 +"17219",2016,5069,"AR","05","069",70512,0.411504424778761,5112,0.138784887678693,8.53934599605737,8.9939241414114,9.92436803011548,5.60769230769231,636.927011607318,259,40664,0,1,0,0,9 +"17220",2016,5071,"AR","05","071",26160,0.941016819571865,1652,0.125649847094801,7.40974195408092,8.01730750768858,8.89535561699639,4.74615384615385,482.796137630899,71,14706,0,1,0,0,9 +"17221",2016,5073,"AR","05","073",6895,0.612907904278463,387,0.160261058738216,5.95842469302978,6.56526497003536,7.58882987830781,5.83076923076923,860.719874804382,33,3834,0,1,0,0,9 +"17222",2016,5075,"AR","05","075",16662,0.978814067939023,1134,0.131436802304645,7.0335064842877,7.53529670244409,8.44268513924118,4.34615384615385,658.67616888025,61,9261,0,1,0,0,9 +"17223",2016,5077,"AR","05","077",9330,0.435476956055734,603,0.135476956055734,6.40191719672719,7.10824413973154,7.67461749736436,4.71538461538462,578.034682080925,33,5709,0,1,0,0,9 +"17224",2016,5079,"AR","05","079",13745,0.681411422335395,1110,0.11422335394689,7.01211529430638,7.59940133341582,7.95402108727804,4.82307692307692,521.295474711624,47,9016,0,1,0,0,9 +"17225",2016,5081,"AR","05","081",12435,0.772416566143948,656,0.140731805388018,6.48616078894409,7.30787278076371,8.18227973925902,4.68461538461538,737.313864392077,51,6917,0,1,0,0,9 +"17226",2016,5083,"AR","05","083",21743,0.945499701053213,1249,0.13935519477533,7.13009851012558,7.81399567500279,8.72566970568704,4.6,507.822098451962,62,12209,0,1,0,0,9 +"17227",2016,5085,"AR","05","085",71845,0.915081077319229,4254,0.116486881480966,8.35561499576018,9.19003561863582,9.96505290819428,3.33846153846154,498.346717052433,211,42340,0,1,0,0,9 +"17228",2016,5087,"AR","05","087",16136,0.957176499752107,879,0.144645513138324,6.77878489768518,7.52131798019924,8.40447232135212,3.20769230769231,600.066674074897,54,8999,0,1,0,0,9 +"17229",2016,5089,"AR","05","089",16408,0.976413944417357,657,0.180704534373476,6.48768401848461,7.2848209125686,8.38045666784277,4.00769230769231,555.362721277334,48,8643,0,1,0,0,9 +"17230",2016,5091,"AR","05","091",43776,0.72436951754386,2609,0.127855445906433,7.86672228513673,8.58298093195424,9.45218790808416,4.2,623.077529773641,158,25358,0,1,0,0,9 +"17231",2016,5093,"AR","05","093",42863,0.62618108858456,2831,0.128199146116697,7.9483852851119,8.54441917766983,9.43452338286506,6.79230769230769,708.580790497645,173,24415,0,1,0,0,9 +"17232",2016,5095,"AR","05","095",7195,0.56997915218902,410,0.156914523974983,6.01615715969835,6.57368016696065,7.62070508683826,4.80769230769231,943.636827339964,37,3921,0,1,0,0,9 +"17233",2016,5097,"AR","05","097",8947,0.96456912931709,418,0.15681233933162,6.03548143252476,6.7093043402583,7.75747876658418,5.12307692307692,729.144327686039,34,4663,0,1,0,0,9 +"17234",2016,5099,"AR","05","099",8368,0.674115678776291,442,0.148781070745698,6.0913098820777,6.8134445995109,7.76556908109732,3.7,838.168923275306,39,4653,0,1,0,0,9 +"17235",2016,5101,"AR","05","101",7855,0.974283895607893,340,0.160661998726926,5.82894561761021,6.6682282484174,7.61529833982581,3.89230769230769,385.17091959557,16,4154,0,1,0,0,9 +"17236",2016,5103,"AR","05","103",24021,0.579368052953666,1282,0.157112526539278,7.15617663748062,7.85554467791566,8.86432272251144,5.03076923076923,629.62962962963,85,13500,0,1,0,0,9 +"17237",2016,5105,"AR","05","105",10266,0.965419832456653,558,0.146113383985973,6.32435896238131,7.09090982207998,7.96623977655947,4.78461538461538,549.261929282527,32,5826,0,1,0,0,9 +"17238",2016,5107,"AR","05","107",19041,0.361903261383331,1243,0.140538837245943,7.12528309151071,7.59085212368858,8.6213730103259,5.9,825.715128280743,84,10173,0,1,0,0,9 +"17239",2016,5109,"AR","05","109",10836,0.940107050572167,633,0.140088593576966,6.45047042214418,7.19593722647557,8.00969535774292,4.25384615384615,460.374876685301,28,6082,0,1,0,0,9 +"17240",2016,5111,"AR","05","111",23993,0.905972575334473,1388,0.131079898303672,7.23561914106675,7.95682712209011,8.83200393125627,4.29230769230769,745.222459971962,101,13553,0,1,0,0,9 +"17241",2016,5113,"AR","05","113",20164,0.959035905574291,1025,0.140349137075977,6.93244789157251,7.65822752616135,8.58447793822183,4.88461538461538,550.336844102856,58,10539,0,1,0,0,9 +"17242",2016,5115,"AR","05","115",63916,0.936651229739032,5663,0.118733963326867,8.6417090661138,8.86644061952617,9.82010594359708,4.61538461538461,465.695565062002,172,36934,0,1,0,0,9 +"17243",2016,5117,"AR","05","117",8267,0.870811660820128,429,0.144671585823152,6.06145691892802,6.72982407048948,7.74413662762799,3.83846153846154,597.345132743363,27,4520,0,1,0,0,9 +"17244",2016,5119,"AR","05","119",394322,0.591387241898753,26445,0.129860875122362,10.1828223835001,10.8249051197021,11.7224892269079,3.56923076923077,489.57265538934,1151,235103,0,1,0,0,9 +"17245",2016,5121,"AR","05","121",17452,0.977538391015356,939,0.133566353426541,6.84481547920826,7.59538727885397,8.46695197497949,4.63076923076923,665.073261976515,64,9623,0,1,0,0,9 +"17246",2016,5123,"AR","05","123",26306,0.445525735573633,1617,0.130768645936288,7.38832785957711,8.23774380389093,8.79512791241314,5.19230769230769,582.159624413146,93,15975,0,1,0,0,9 +"17247",2016,5125,"AR","05","125",117707,0.904534139855743,6015,0.124478578164425,8.70201162840878,9.67809146616862,10.4406824313222,3.12307692307692,450.02227833061,303,67330,0,1,0,0,9 +"17248",2016,5127,"AR","05","127",10318,0.926729986431479,567,0.136072882341539,6.34035930372775,6.98749024700099,7.92226105835325,3.68461538461538,776.287932251235,44,5668,0,1,0,0,9 +"17249",2016,5129,"AR","05","129",7960,0.972361809045226,353,0.155653266331658,5.8664680569333,6.67203294546107,7.65681009148038,4.59230769230769,705.716302046577,30,4251,0,1,0,0,9 +"17250",2016,5131,"AR","05","131",127578,0.845365188355359,8468,0.126667607267711,9.04404963225476,9.64736874454047,10.5285164790198,3.72307692307692,509.138908718667,378,74243,0,1,0,0,9 +"17251",2016,5133,"AR","05","133",16959,0.900819623798573,1151,0.11014800400967,7.04838640872188,7.62657020629066,8.42376124662369,4.86153846153846,494.783263418307,46,9297,0,1,0,0,9 +"17252",2016,5135,"AR","05","135",17016,0.971379877762106,773,0.145216267042783,6.65027904858742,7.46908388492123,8.40380050406115,5.45384615384615,873.213880698571,77,8818,0,1,0,0,9 +"17253",2016,5137,"AR","05","137",12525,0.978363273453094,601,0.160319361277445,6.39859493453521,7.13249755166004,8.09009578318096,5.13846153846154,599.446664617276,39,6506,0,1,0,0,9 +"17254",2016,5139,"AR","05","139",39920,0.65060120240481,2306,0.142585170340681,7.743269700829,8.45446636150793,9.35487352270848,5.46923076923077,625.63783999645,141,22537,0,1,0,0,9 +"17255",2016,5141,"AR","05","141",16682,0.97716101186908,729,0.156695839827359,6.59167373200866,7.44366368311559,8.37976851550457,6.87692307692308,500.284252416146,44,8795,0,1,0,0,9 +"17256",2016,5143,"AR","05","143",228612,0.886515143562018,24617,0.0996404388221091,10.1111925401611,10.2943126839048,11.1215259706868,2.76923076923077,334.509228218556,458,136917,0,1,0,0,9 +"17257",2016,5145,"AR","05","145",78941,0.933139939955156,6335,0.119228284414943,8.75384509275524,9.13529349765327,10.0420748922922,5.2,482.343570227454,218,45196,0,1,0,0,9 +"17258",2016,5147,"AR","05","147",6616,0.719014510278114,362,0.149032648125756,5.89164421182577,6.56244409369372,7.50878717063428,5.48461538461538,723.226703755216,26,3595,0,1,0,0,9 +"17259",2016,5149,"AR","05","149",21520,0.954089219330855,1209,0.129553903345725,7.09754885061479,7.84854348245668,8.67914195840225,4.46923076923077,576.778400066873,69,11963,0,1,0,0,9 +"17260",2016,4001,"AZ","04","001",71418,0.22985801898681,5178,0.123050211431292,8.55217416031148,8.9368241549973,9.87596218147138,11.6307692307692,652.751423149905,258,39525,0,1,0,0,9 +"17261",2016,4003,"AZ","04","003",125885,0.896238630496088,7717,0.133931763117131,8.9511809664576,9.522958929718,10.4008023142742,6.33076923076923,407.275079764163,277,68013,0,1,0,0,9 +"17262",2016,4005,"AZ","04","005",140609,0.672474734903171,19657,0.119110441010177,9.8861887879578,9.63082544684073,10.6761157445863,6.12307692307692,366.818144647843,314,85601,0,1,0,0,9 +"17263",2016,4007,"AZ","04","007",53400,0.798838951310861,2640,0.158595505617978,7.87853419614036,8.39457347786833,9.51044496442652,7.33846153846154,857.999250655676,229,26690,0,1,0,0,9 +"17264",2016,4009,"AZ","04","009",37859,0.821152169893552,2723,0.102168572862463,7.90948949267376,8.48260174664662,9.12891337328045,6.85384615384615,413.773423380576,87,21026,0,1,0,0,9 +"17265",2016,4011,"AZ","04","011",9642,0.919622484961626,613,0.113254511512134,6.41836493593621,7.10496544826984,7.86249719723055,7.67692307692308,255.148532895936,14,5487,0,1,0,0,9 +"17266",2016,4012,"AZ","04","012",20670,0.779680696661829,928,0.131349782293179,6.8330317327862,7.36391350140582,8.40380050406115,6.12307692307692,921.501706484642,81,8790,0,1,0,0,9 +"17267",2016,4013,"AZ","04","013",4258019,0.849220494319072,287316,0.11303683708316,12.5683379343321,13.2259447112565,14.0370392060239,4.66153846153846,324.971226084465,8030,2470988,0,1,0,0,9 +"17268",2016,4015,"AZ","04","015",205899,0.933715073895454,9573,0.160816711105931,9.16670191494635,9.82763190023259,10.8671197807193,6.70769230769231,708.169885334943,751,106048,0,1,0,0,9 +"17269",2016,4017,"AZ","04","017",108569,0.508377161068077,6685,0.128766038187696,8.80762148953604,9.35201353029233,10.2598674529538,8.40769230769231,598.751176118382,350,58455,0,1,0,0,9 +"17270",2016,4019,"AZ","04","019",1017083,0.865293196327143,92126,0.126215854556609,11.4309124842495,11.6519741095307,12.5792727930511,5.03076923076923,391.096375828642,2246,574283,0,1,0,0,9 +"17271",2016,4021,"AZ","04","021",417312,0.842511118779235,23381,0.117930948546891,10.059679005711,10.9123574657034,11.5689843857002,5.62307692307692,357.196207481349,813,227606,0,1,0,0,9 +"17272",2016,4023,"AZ","04","023",46412,0.964599672498492,3126,0.122403688701198,8.04750951098142,8.54090971803355,9.46172146470163,10.2076923076923,217.109932779425,52,23951,0,1,0,0,9 +"17273",2016,4025,"AZ","04","025",224828,0.948405002935577,10343,0.174987101250734,9.2440652413778,9.88669738322865,10.9934122128067,5.00769230769231,483.284599967029,557,115253,0,1,0,0,9 +"17274",2016,4027,"AZ","04","027",207162,0.923475347795445,18281,0.0966538264739672,9.81361754810709,10.0144026131073,10.8635080472716,19.0384615384615,307.054017746991,336,109427,0,1,0,0,9 +"17275",2016,6001,"CA","06","001",1650765,0.52907894218741,103170,0.12144975208464,11.5441333920944,12.4066842483373,13.1795260134576,4.32307692307692,232.992546338409,2441,1047673,0,1,0,0,9 +"17276",2016,6005,"CA","06","005",37443,0.922121624869802,1621,0.171433912880912,7.39079852173568,8.30819906320645,9.14152605597582,5.96923076923077,406.484851349435,86,21157,0,1,0,0,9 +"17277",2016,6007,"CA","06","007",226222,0.88699153928442,25137,0.130725570457338,10.1320961432814,10.0786586053012,11.0983489739936,6.63846153846154,441.398011449232,586,132760,0,1,0,0,9 +"17278",2016,6009,"CA","06","009",45307,0.939744410356016,2071,0.18930849537599,7.63578686139558,8.3030093814735,9.43388384331172,5.69230769230769,449.902723735409,111,24672,0,1,0,0,9 +"17279",2016,6011,"CA","06","011",21476,0.926150121065375,1479,0.121577574967405,7.2991214627108,7.82923253754359,8.66733584984596,15.6307692307692,321.914981427982,39,12115,0,1,0,0,9 +"17280",2016,6013,"CA","06","013",1137259,0.687352661091273,68183,0.130603494894303,11.1299505458972,11.9262529170224,12.7500206174716,4.48461538461538,251.5513563118,1705,677794,0,1,0,0,9 +"17281",2016,6015,"CA","06","015",27415,0.80988509939814,1563,0.144592376436258,7.35436233042148,8.15593633797239,8.84735987547417,7.54615384615385,586.740866198887,97,16532,0,1,0,0,9 +"17282",2016,6017,"CA","06","017",186027,0.914507033925183,9926,0.170835416364291,9.20291285614739,9.9157125221587,10.8957758986367,5.14615384615385,316.792797132192,342,107957,0,1,0,0,9 +"17283",2016,6019,"CA","06","019",976231,0.782563757963023,73470,0.103551311113865,11.2046324386143,11.6911134904826,12.5260198063817,9.52307692307692,340.828564131526,1895,555998,0,1,0,0,9 +"17284",2016,6021,"CA","06","021",27796,0.910526694488416,1843,0.127716218160886,7.51914995766982,8.06211758275474,8.92611897115338,8.36923076923077,393.015913923072,61,15521,0,1,0,0,9 +"17285",2016,6023,"CA","06","023",136477,0.86420422488771,13055,0.139012434329594,9.47692648113323,9.74443320268052,10.6166824283999,4.94615384615385,505.068812604971,418,82761,0,1,0,0,9 +"17286",2016,6025,"CA","06","025",179881,0.910168389101684,13741,0.102317643330869,9.52813934333177,9.98086517355747,10.7745298409371,24.1846153846154,316.095086158206,319,100919,0,1,0,0,9 +"17287",2016,6027,"CA","06","027",17897,0.821254958931665,842,0.169134491814271,6.73578001424233,7.55276208421415,8.49290049884719,5.29230769230769,565.770862800566,56,9898,0,1,0,0,9 +"17288",2016,6029,"CA","06","029",881094,0.840619729563475,68537,0.103676792714512,11.1351290244094,11.6071623417181,12.3947489679621,10.4230769230769,385.50818323392,1968,510495,0,1,0,0,9 +"17289",2016,6031,"CA","06","031",149269,0.832865497859569,12763,0.0937301114096028,9.45430563898269,9.91353688838913,10.5245209251208,9.98461538461538,284.818192900602,257,90233,0,1,0,0,9 +"17290",2016,6033,"CA","06","033",63912,0.898219426711729,3114,0.166181624734009,8.04366335239394,8.76139348525606,9.78689755492675,6.74615384615385,680.405994320578,242,35567,0,1,0,0,9 +"17291",2016,6035,"CA","06","035",30715,0.835487546801237,2466,0.124271528569103,7.81035268372429,8.39276311303806,8.79346036105272,6.95384615384615,397.884419428405,82,20609,0,1,0,0,9 +"17292",2016,6037,"CA","06","037",10094865,0.723332109939063,736878,0.116794132462395,13.5101776215123,14.1367465966909,14.9637459971057,5.32307692307692,256.550695862859,16188,6309864,0,1,0,0,9 +"17293",2016,6039,"CA","06","039",153694,0.874425807123245,10898,0.110986765911486,9.29633456514304,9.8514044726659,10.7283425890878,9.27692307692308,347.895975658763,303,87095,0,1,0,0,9 +"17294",2016,6041,"CA","06","041",260722,0.87852195058338,11963,0.154171876558173,9.3895738321709,10.3663092030036,11.218299338284,3.28461538461538,199.087961904249,296,148678,0,1,0,0,9 +"17295",2016,6043,"CA","06","043",17498,0.919305063435821,838,0.189507372271117,6.73101810048208,7.38585107812521,8.46989191829822,6.92307692307692,573.770491803279,56,9760,0,1,0,0,9 +"17296",2016,6045,"CA","06","045",87319,0.882866271945396,4643,0.151501964062804,8.44311598801992,9.23288433641108,10.0933224798066,5.29230769230769,437.084461955183,213,48732,0,1,0,0,9 +"17297",2016,6047,"CA","06","047",267370,0.836462579945394,20622,0.0985899689568762,9.93411374607789,10.3872399823752,11.2001170192008,10.6,350.640503319397,525,149726,0,1,0,0,9 +"17298",2016,6049,"CA","06","049",8957,0.903762420453277,417,0.158870157418779,6.0330862217988,6.82437367004309,7.76556908109732,7.86923076923077,670.157068062827,32,4775,0,1,0,0,9 +"17299",2016,6051,"CA","06","051",14256,0.920524691358025,982,0.156776094276094,6.88959130835447,7.49164547360513,8.35725915349991,5.4,264.900662251656,24,9060,0,1,0,0,9 +"17300",2016,6053,"CA","06","053",433436,0.846351018374108,32020,0.110980629204773,10.3741159865507,10.9269631349568,11.6925015898458,7.76153846153846,247.81872021029,626,252604,0,1,0,0,9 +"17301",2016,6055,"CA","06","055",140778,0.859899984372558,8799,0.135241301907969,9.08239335764556,9.780924360113,10.6164373603923,4.30769230769231,269.858173193281,223,82636,0,1,0,0,9 +"17302",2016,6057,"CA","06","057",98939,0.955730298466732,4455,0.179777438623798,8.40178233990491,9.24936875894366,10.2320356185402,4.8,319.576333089847,175,54760,0,1,0,0,9 +"17303",2016,6059,"CA","06","059",3164277,0.74266917845688,217446,0.123004401953432,12.2897058228233,12.9296180817173,13.7827197684741,4.04615384615385,216.018662358696,4180,1935018,0,1,0,0,9 +"17304",2016,6061,"CA","06","061",379046,0.874751349440437,20145,0.134751454968526,9.91071139762545,10.7784770083863,11.5994517243093,4.48461538461538,256.345721822944,550,214554,0,1,0,0,9 +"17305",2016,6063,"CA","06","063",18691,0.930394307420684,810,0.194960141244449,6.69703424766648,7.44775128004791,8.53758388106397,9.84615384615385,432.857845548451,44,10165,0,1,0,0,9 +"17306",2016,6065,"CA","06","065",2378282,0.817572937103338,169446,0.111516632594453,12.0402895709732,12.6137353371818,13.4323038827212,6.13076923076923,298.345340920342,4098,1373576,0,1,0,0,9 +"17307",2016,6067,"CA","06","067",1511401,0.66312712509784,99794,0.121727456843022,11.5108633402518,12.1874146628783,13.0462552524318,5.43076923076923,334.925813548084,3051,910948,0,1,0,0,9 +"17308",2016,6069,"CA","06","069",59270,0.901771553905855,4049,0.121714189303189,8.30622521603216,8.92439013236916,9.74981175993208,6.7,251.88195895469,88,34937,0,1,0,0,9 +"17309",2016,6071,"CA","06","071",2130726,0.785307918521668,168728,0.111106730757498,12.0360432298655,12.5110210433466,13.3583852460603,5.78461538461538,330.651226815389,4194,1268406,0,1,0,0,9 +"17310",2016,6073,"CA","06","073",3305462,0.780925631575858,262829,0.116956116875644,12.4792589095806,12.9817532754435,13.8150954718279,4.73846153846154,241.42669733052,4956,2052797,0,1,0,0,9 +"17311",2016,6075,"CA","06","075",871343,0.556120838751215,49113,0.116801305570826,10.8018790445225,11.8207262912155,12.5770877757424,3.3,226.459895608711,1381,609821,0,1,0,0,9 +"17312",2016,6077,"CA","06","077",732662,0.697150937267116,51761,0.111058032216766,10.8543922489263,11.4464864724137,12.2515143527267,8.14615384615385,377.975787706765,1592,421191,0,1,0,0,9 +"17313",2016,6079,"CA","06","079",281884,0.91111592002384,30720,0.140596841253849,10.3326691872616,10.3087859800872,11.2851085102984,4.33076923076923,279.255479559464,463,165798,0,1,0,0,9 +"17314",2016,6081,"CA","06","081",767928,0.631746726255586,42809,0.129242585242366,10.6645036398379,11.6061698761795,12.3724468837655,3.06923076923077,182.511502247517,862,472299,0,1,0,0,9 +"17315",2016,6083,"CA","06","083",444112,0.876609954245776,50892,0.112735075836726,10.8374610192626,10.8111410910146,11.7501770286226,5.07692307692308,233.640385315127,610,261085,0,1,0,0,9 +"17316",2016,6085,"CA","06","085",1928144,0.564549639446016,121900,0.115283402069555,11.7109563154694,12.5435550860093,13.2777384502136,3.78461538461538,185.140781350909,2216,1196927,0,1,0,0,9 +"17317",2016,6087,"CA","06","087",274476,0.895641148952914,28399,0.137957417041927,10.2541092122618,10.3669070539048,11.3250404608633,6.99230769230769,255.170964546246,425,166555,0,1,0,0,9 +"17318",2016,6089,"CA","06","089",178592,0.907033909693603,10248,0.148231723705429,9.23483784357657,9.84918974912828,10.8398553838395,7,557.393663000388,561,100647,0,1,0,0,9 +"17319",2016,6093,"CA","06","093",43402,0.894659232293443,2093,0.172042763006313,7.646353722446,8.34188696951619,9.36794223247967,8.55384615384615,623.931623931624,146,23400,0,1,0,0,9 +"17320",2016,6095,"CA","06","095",438834,0.626717619874486,29774,0.135126266424206,10.301390808437,10.8871004276744,11.7887601332626,5.50769230769231,326.803523467874,870,266215,0,1,0,0,9 +"17321",2016,6097,"CA","06","097",502445,0.892967389465514,30006,0.14655534436605,10.309152640647,11.0212813606202,11.9195831949555,4,283.976611324196,847,298264,0,1,0,0,9 +"17322",2016,6099,"CA","06","099",538986,0.85768647052057,37481,0.112041871217434,10.5315894168929,11.1154434073529,11.9542788166409,8.63076923076923,380.421488986444,1182,310708,0,1,0,0,9 +"17323",2016,6101,"CA","06","101",95769,0.756768891812591,6279,0.117887834267874,8.74496601111411,9.34949343336876,10.2011075795269,9.73846153846154,400.610103460316,218,54417,0,1,0,0,9 +"17324",2016,6103,"CA","06","103",63468,0.924324068822084,3599,0.138494989601059,8.18841130807903,8.84419212624497,9.76497233267938,7.15384615384615,487.371348298501,170,34881,0,1,0,0,9 +"17325",2016,6105,"CA","06","105",12827,0.904108521088329,566,0.197629999220394,6.33859407820318,7.1800698743028,8.17159948034546,7.12307692307692,640.84703259961,46,7178,0,1,0,0,9 +"17326",2016,6107,"CA","06","107",458991,0.896806255460347,33896,0.097749193339303,10.4310522923064,10.9440469097556,11.7384022920781,11.2153846153846,356.765693537478,902,252827,0,1,0,0,9 +"17327",2016,6109,"CA","06","109",53729,0.926575964562899,2863,0.171769435500382,7.95962530509811,8.62479120201426,9.55180015010843,6.23076923076923,448.474531884248,137,30548,0,1,0,0,9 +"17328",2016,6111,"CA","06","111",846921,0.86270974506477,59207,0.12930485842245,10.9887950571252,11.5563297225775,12.4314975924812,5.23076923076923,235.891708416386,1187,503197,0,1,0,0,9 +"17329",2016,6113,"CA","06","113",215569,0.772388423196285,30547,0.103553850507262,10.3270217601052,10.1264310838477,11.1121642760665,5.90769230769231,231.573174075993,304,131276,0,1,0,0,9 +"17330",2016,6115,"CA","06","115",74920,0.822183662573412,5728,0.114722370528564,8.65312170864048,9.10586835037947,9.96594578637574,8.63846153846154,487.079807912188,213,43730,0,1,0,0,9 +"17331",2016,8001,"CO","08","001",497735,0.878513666911107,31898,0.106717429957708,10.3702985908827,11.1867520133365,11.9015224359512,3.42307692307692,302.074600449785,908,300588,0,1,0,0,9 +"17332",2016,8003,"CO","08","003",16047,0.895556801894435,1810,0.114600859973827,7.50108212425987,7.45356187164337,8.42945427710823,3.86923076923077,565.393641988479,53,9374,0,1,0,0,9 +"17333",2016,8005,"CO","08","005",639605,0.790042291726925,39842,0.123207292000532,10.5926769112417,11.4123202913963,12.194971252459,2.97692307692308,267.325591816355,1044,390535,0,1,0,0,9 +"17334",2016,8007,"CO","08","007",12834,0.9361072152096,505,0.192145862552595,6.22455842927536,7.19368581839511,8.19007704971905,3.16153846153846,347.608453837597,25,7192,0,1,0,0,9 +"17335",2016,8011,"CO","08","011",5832,0.865740740740741,437,0.128772290809328,6.07993319509559,6.75227037614174,6.92067150424868,2.92307692307692,512.820512820513,20,3900,0,1,0,0,9 +"17336",2016,8013,"CO","08","013",321761,0.91953344252411,33815,0.127672402808296,10.428659770009,10.6147447522684,11.5035819499671,2.55384615384615,203.666997026759,411,201800,0,1,0,0,9 +"17337",2016,8014,"CO","08","014",66596,0.898567481530422,3580,0.117004024265722,8.18311807939475,9.21652123105126,9.91689723944605,2.77692307692308,196.189028128602,80,40777,0,1,0,0,9 +"17338",2016,8015,"CO","08","015",19140,0.950626959247649,928,0.172622779519331,6.8330317327862,7.73017479524622,8.51879191277993,2.53846153846154,408.018449529892,46,11274,0,1,0,0,9 +"17339",2016,8019,"CO","08","019",9355,0.960769641902726,395,0.206199893105291,5.97888576490112,7.12205988162914,7.9561263512135,3.03846153846154,281.643472498343,17,6036,0,1,0,0,9 +"17340",2016,8021,"CO","08","021",8044,0.93299353555445,485,0.141596220785679,6.18414889093748,6.70318811324086,7.63191651307125,4.65384615384615,567.241786811628,24,4231,0,1,0,0,9 +"17341",2016,8029,"CO","08","029",30352,0.961023985239852,1457,0.166249341064839,7.2841348061952,8.0245348716057,8.97309789628247,4.72307692307692,414.886370673107,67,16149,0,1,0,0,9 +"17342",2016,8031,"CO","08","031",696273,0.821921861109077,43383,0.101982986558433,10.6778229382829,11.6009271847419,12.3311666684484,2.99230769230769,290.557845061817,1341,461526,0,1,0,0,9 +"17343",2016,8035,"CO","08","035",328680,0.92102653036388,16113,0.121519410977242,9.68738167857357,10.8220955973654,11.4956775715607,2.54615384615385,172.360726377347,336,194940,0,1,0,0,9 +"17344",2016,8037,"CO","08","037",54578,0.954816959214335,3044,0.126662757887794,8.02092771898158,9.0594011964109,9.71275068614083,2.63076923076923,126.326427488631,45,35622,0,1,0,0,9 +"17345",2016,8039,"CO","08","039",25130,0.961201750895344,1255,0.188221249502587,7.13489085156588,7.93522953981691,8.94936514235297,2.47692307692308,299.713317696117,46,15348,0,1,0,0,9 +"17346",2016,8041,"CO","08","041",688671,0.858054136155,57460,0.117144471017365,10.9588443325333,11.3601471763166,12.2231853838067,3.59230769230769,350.329184487481,1458,416180,0,1,0,0,9 +"17347",2016,8043,"CO","08","043",47047,0.924479775543605,2454,0.148319765341042,7.80547462527086,8.71243097347674,9.27659616775325,4.95384615384615,456.763209799647,132,28899,0,1,0,0,9 +"17348",2016,8045,"CO","08","045",58839,0.953517224969833,3385,0.134366661568008,8.12710918534638,8.99850761180784,9.75411709588186,3.33076923076923,275.544058932689,98,35566,0,1,0,0,9 +"17349",2016,8049,"CO","08","049",15198,0.968680089485459,765,0.186537702329254,6.63987583382654,7.54433210805369,8.42814337458273,2.57692307692308,266.366151009118,26,9761,0,1,0,0,9 +"17350",2016,8051,"CO","08","051",16447,0.953851766279565,2242,0.126710038304858,7.7151236036321,7.64969262371151,8.49678638163858,2.19230769230769,222.572567931002,24,10783,0,1,0,0,9 +"17351",2016,8055,"CO","08","055",6583,0.909767583168768,262,0.195199756949719,5.5683445037611,6.28226674689601,7.43779512167193,6.06923076923077,933.216681248177,32,3429,0,1,0,0,9 +"17352",2016,8059,"CO","08","059",571823,0.934039029559846,32594,0.147542159024733,10.3918835013359,11.2216101335527,12.0786028442842,2.82307692307692,274.995200289112,974,354188,0,1,0,0,9 +"17353",2016,8065,"CO","08","065",7591,0.949150309577131,543,0.13726781715189,6.29710931993394,6.94793706861497,7.68202151082687,2.73076923076923,391.107451626184,19,4858,0,1,0,0,9 +"17354",2016,8067,"CO","08","067",55459,0.899024504588976,3634,0.157089020718008,8.19808924895612,8.87234697898303,9.74437458087906,2.73076923076923,290.309469894908,100,34446,0,1,0,0,9 +"17355",2016,8069,"CO","08","069",339394,0.944486349198866,37303,0.127804262892096,10.5268290313521,10.6289809091353,11.5467663481389,2.69230769230769,254.951015029697,534,209452,0,1,0,0,9 +"17356",2016,8071,"CO","08","071",14085,0.91792687255946,873,0.159176428824991,6.7719355558396,7.30518821539304,8.19505769089508,4.83846153846154,614.832842320994,48,7807,0,1,0,0,9 +"17357",2016,8075,"CO","08","075",22427,0.924599812725732,1727,0.129754313996522,7.45414107814668,7.95822719232231,8.5769703954521,2.82307692307692,519.343670028602,69,13286,0,1,0,0,9 +"17358",2016,8077,"CO","08","077",149882,0.955585060247395,9847,0.139823327684445,9.1949221192478,9.76795415724093,10.6673261612186,5.1,441.831379378865,378,85553,0,1,0,0,9 +"17359",2016,8081,"CO","08","081",13155,0.960167236792094,726,0.146788293424553,6.5875500148248,7.32580750259577,8.20958048347558,3.79230769230769,405.175794013854,31,7651,0,1,0,0,9 +"17360",2016,8083,"CO","08","083",26063,0.839734489506197,1282,0.161646778958677,7.15617663748062,7.92660259918138,8.89370997756851,4.76923076923077,427.553444180523,63,14735,0,1,0,0,9 +"17361",2016,8085,"CO","08","085",41183,0.957215355850715,2023,0.153412815967754,7.61233683716775,8.39049553837028,9.32197118814737,3.97692307692308,415.349887133183,92,22150,0,1,0,0,9 +"17362",2016,8087,"CO","08","087",28178,0.927603094612819,1795,0.125416991979559,7.49276030092238,8.07806788181544,8.95467362895641,3.31538461538462,429.267042542286,67,15608,0,1,0,0,9 +"17363",2016,8089,"CO","08","089",18279,0.925542972810329,1156,0.137370753323486,7.05272104923232,7.58375630070711,8.50956416425175,4.52307692307692,541.756107533476,53,9783,0,1,0,0,9 +"17364",2016,8093,"CO","08","093",17372,0.961892700897997,634,0.233766981349298,6.45204895443723,7.59789795052178,8.56655462095396,2.66153846153846,379.643857904727,42,11063,0,1,0,0,9 +"17365",2016,8097,"CO","08","097",18009,0.959298128713421,1018,0.164417791104448,6.92559519711047,7.77946696745832,8.63426486300208,3.23846153846154,128.084706686022,15,11711,0,1,0,0,9 +"17366",2016,8099,"CO","08","099",11937,0.962888497947558,768,0.140655105973025,6.64378973314767,7.19593722647557,8.06211758275474,3.08461538461538,509.967547519703,33,6471,0,1,0,0,9 +"17367",2016,8101,"CO","08","101",164883,0.918809094933983,10573,0.134956302347725,9.26605886073253,9.865370230423,10.7630597737987,4.57692307692308,493.650011779068,461,93386,0,1,0,0,9 +"17368",2016,8105,"CO","08","105",11354,0.941694556984323,688,0.145147084727849,6.53378883793334,7.13009851012558,8.05102220819068,4.75384615384615,577.293136626042,36,6236,0,1,0,0,9 +"17369",2016,8107,"CO","08","107",24737,0.970812952257752,1422,0.163237255932409,7.25981961036319,8.16308637558322,8.95312284032822,2.51538461538462,204.018547140649,33,16175,0,1,0,0,9 +"17370",2016,8117,"CO","08","117",30573,0.962385111045694,1977,0.142609492035456,7.58933582317062,8.45510499910282,9.1756454021793,1.99230769230769,121.02592747754,26,21483,0,1,0,0,9 +"17371",2016,8119,"CO","08","119",24098,0.959540210805876,1088,0.212050792596896,6.99209642741589,7.79770203551669,8.88806685475478,3.53846153846154,384.826827927433,56,14552,0,1,0,0,9 +"17372",2016,8123,"CO","08","123",296330,0.940724867546317,19161,0.116269024398475,9.8606322422297,10.5867359009168,11.3563652177992,3.26153846153846,298.850176829304,518,173331,0,1,0,0,9 +"17373",2016,8125,"CO","08","125",10057,0.976434324351198,568,0.125385303768519,6.34212141872115,7.01750614294126,7.86288203464149,2.03076923076923,375.798571965427,20,5322,0,1,0,0,9 +"17374",2016,9001,"CT","09","001",945096,0.802531171436553,60287,0.135433860687168,11.0068717707496,11.6823390714634,12.5570569283272,4.61538461538461,241.144929709198,1351,560244,0,1,0,0,9 +"17375",2016,9003,"CT","09","003",894282,0.772378287833144,58474,0.137164786946399,10.9763374899808,11.5925680926224,12.5067252359503,5.04615384615385,312.525177200651,1668,533717,0,1,0,0,9 +"17376",2016,9005,"CT","09","005",182837,0.950551584197947,10062,0.171808769559772,9.21652123105126,9.86188400268105,10.9023163376563,4.46923076923077,320.610265056245,348,108543,0,1,0,0,9 +"17377",2016,9007,"CT","09","007",163403,0.903428945612994,10090,0.160798761344651,9.21930011334766,9.78521064494507,10.8106568099607,4.19230769230769,319.224885262621,313,98050,0,1,0,0,9 +"17378",2016,9009,"CT","09","009",858159,0.793403087306665,60191,0.13790684476886,11.0052781184593,11.5153425414858,12.4804376886542,5.18461538461538,334.442307729701,1720,514289,0,1,0,0,9 +"17379",2016,9011,"CT","09","011",268639,0.85624574242757,20466,0.145797892338789,9.9265202516467,10.2948199290672,11.279516908298,4.83846153846154,316.59160909526,516,162986,0,1,0,0,9 +"17380",2016,9013,"CT","09","013",151223,0.905060738115234,19689,0.137459248923775,9.88781538314183,9.64264213403791,10.7294596262086,4.22307692307692,252.019386106624,234,92850,0,1,0,0,9 +"17381",2016,9015,"CT","09","015",116191,0.937576920759783,7843,0.148935803977933,8.96737669321267,9.53502917005706,10.4710431650478,5.26923076923077,379.557512134552,269,70872,0,1,0,0,9 +"17382",2016,11001,"DC","11","001",687576,0.453272074650657,54570,0.102550118096036,10.9072395601803,11.5059612711686,12.3931453974996,6.22307692307692,379.338947057572,1747,460538,1,1,1,0,9 +"17383",2016,10001,"DE","10","001",174776,0.686844875726644,12813,0.123655421797043,9.45821555950958,9.90673228270102,10.8620328523071,4.91538461538462,424.170780891454,427,100667,1,1,1,0,9 +"17384",2016,10003,"DE","10","003",555582,0.670367290516971,36709,0.132126310787607,10.5107772355859,11.1265274195793,12.0567718526322,4.41538461538462,360.80764035358,1218,337576,1,1,1,0,9 +"17385",2016,10005,"DE","10","005",219631,0.836157008801126,10684,0.159881801749298,9.27650257422985,9.95579533215947,11.0059424489217,4.5,451.991828396323,531,117480,1,1,1,0,9 +"17386",2016,12001,"FL","12","001",264127,0.71569358679726,42621,0.110636171235807,10.6601023685402,10.2416012982866,11.3592729943495,4.33846153846154,309.430755142715,517,167081,0,1,0,0,9 +"17387",2016,12003,"FL","12","003",27903,0.844962907214278,1699,0.12471777228255,7.43779512167193,8.19284713459287,8.93102321585603,4.91538461538461,520.023909145248,87,16730,0,1,0,0,9 +"17388",2016,12005,"FL","12","005",183765,0.837732974178979,11674,0.135384866541507,9.36511942576374,9.9945614994355,10.9091252650862,4.81538461538462,546.835259065475,602,110088,0,1,0,0,9 +"17389",2016,12007,"FL","12","007",26756,0.785655553894454,1603,0.135296755867843,7.37963215260955,8.12769985281777,8.80597465931132,4.29230769230769,539.869686627366,87,16115,0,1,0,0,9 +"17390",2016,12009,"FL","12","009",577380,0.851577817035574,31232,0.15983407807683,10.3491984892128,10.9781998310882,12.0167385583184,5.16923076923077,516.275572062186,1682,325795,0,1,0,0,9 +"17391",2016,12011,"FL","12","011",1913780,0.649634231729875,114397,0.130541650555445,11.6474301338078,12.446513728222,13.2881879372808,4.53076923076923,347.653060429289,4015,1154887,0,1,0,0,9 +"17392",2016,12013,"FL","12","013",14346,0.838630977275896,762,0.129792276592778,6.63594655568665,7.52779398772144,8.18423477409482,5.8,768.514205868654,66,8588,0,1,0,0,9 +"17393",2016,12015,"FL","12","015",178046,0.915381418285162,6941,0.169450591420195,8.84520113533958,9.4895617535101,10.6761157445863,5.37692307692308,490.091372967841,413,84270,0,1,0,0,9 +"17394",2016,12017,"FL","12","017",142988,0.943212017791703,5765,0.162775897278093,8.65956043270316,9.31488055125011,10.4828779561709,6.78461538461538,761.214449975257,523,68706,0,1,0,0,9 +"17395",2016,12019,"FL","12","019",207401,0.835020081870386,11924,0.133321440108775,9.38630845479796,10.1828223835001,11.0376921849074,4.55384615384615,422.402875934474,517,122395,0,1,0,0,9 +"17396",2016,12021,"FL","12","021",365894,0.901545256276408,17914,0.13269416825638,9.79333780903514,10.4880189247176,11.4278685404299,4.72307692307692,280.320713383107,508,181221,0,1,0,0,9 +"17397",2016,12023,"FL","12","023",69300,0.791962481962482,4536,0.138066378066378,8.41980084540759,8.98944429320245,9.8372409067172,4.91538461538462,533.532784841685,214,40110,0,1,0,0,9 +"17398",2016,12027,"FL","12","027",36228,0.847052003974826,2456,0.11946560671304,7.80628928926703,8.37170488466763,9.00134624376639,5.33846153846154,443.924093858237,91,20499,0,1,0,0,9 +"17399",2016,12029,"FL","12","029",16455,0.887997569127925,793,0.149680948040109,6.67582322163485,7.54908271081229,8.27435700675629,5.49230769230769,771.952396268897,72,9327,0,1,0,0,9 +"17400",2016,12031,"FL","12","031",927038,0.626306580744263,64072,0.126109177833055,11.0677627300035,11.6661700201048,12.5870230418893,4.95384615384615,472.454748652321,2695,570425,0,1,0,0,9 +"17401",2016,12033,"FL","12","033",311975,0.709034377754628,26155,0.133347223335203,10.1717956558047,10.4272688874623,11.4329402556436,4.99230769230769,515.028388450879,957,185815,0,1,0,0,9 +"17402",2016,12035,"FL","12","035",107608,0.852752583451045,4877,0.155583228012787,8.49228555571005,9.27350294693382,10.2820952064744,5.55384615384615,432.047434831339,239,55318,0,1,0,0,9 +"17403",2016,12037,"FL","12","037",11834,0.839276660469833,687,0.142132837586615,6.53233429222235,7.24494154633701,7.93379687481541,4.36923076923077,626.043405676127,45,7188,0,1,0,0,9 +"17404",2016,12039,"FL","12","039",46069,0.417916603355836,2869,0.143176539538518,7.96171881598136,8.67128672675364,9.5673852474818,6.33076923076923,502.936857562408,137,27240,0,1,0,0,9 +"17405",2016,12041,"FL","12","041",17607,0.925029817686148,1480,0.14329528028625,7.29979736675816,7.49443021503157,8.44505251363855,5.04615384615385,374.14258989815,36,9622,0,1,0,0,9 +"17406",2016,12043,"FL","12","043",13421,0.795693316444378,640,0.125251471574398,6.46146817635372,7.42237370098682,7.98956044933387,6.30769230769231,475.059382422803,36,7578,0,1,0,0,9 +"17407",2016,12045,"FL","12","045",16082,0.80089541101853,912,0.144633752020893,6.81563999007433,7.67275789664251,8.16479480424477,4.67692307692308,472.162108990753,48,10166,0,1,0,0,9 +"17408",2016,12047,"FL","12","047",14309,0.63533440491998,1363,0.13739604444755,7.21744343169653,7.43543801981455,8.11102783819368,5.71538461538462,427.542754275428,38,8888,0,1,0,0,9 +"17409",2016,12049,"FL","12","049",27228,0.893345085940943,2025,0.105663287791979,7.61332497954064,8.06054004653864,8.82202732268558,6.73846153846154,404.697140582499,61,15073,0,1,0,0,9 +"17410",2016,12051,"FL","12","051",40097,0.837469137341946,2710,0.10773873357109,7.90470391387375,8.51218064959269,9.2753787681554,8.65384615384615,482.444384883409,108,22386,0,1,0,0,9 +"17411",2016,12053,"FL","12","053",182668,0.916071780497953,8832,0.143703330632623,9.08613676851688,9.81241338813673,10.8083532667408,6.10769230769231,542.736534738312,513,94521,0,1,0,0,9 +"17412",2016,12055,"FL","12","055",102058,0.865311881479159,4666,0.132953810578299,8.44805745258138,9.06149227523977,10.078070913235,6.60769230769231,581.90531202533,272,46743,0,1,0,0,9 +"17413",2016,12057,"FL","12","057",1398093,0.762666002905386,92964,0.119399067157907,11.4399676004199,12.1513471520908,12.9882969845498,4.46923076923077,355.115759367822,2970,836347,0,1,0,0,9 +"17414",2016,12059,"FL","12","059",19426,0.909348296098013,1276,0.138216822814784,7.15148546390474,7.74802852443238,8.51919119407891,5.45384615384615,589.47738870315,67,11366,0,1,0,0,9 +"17415",2016,12061,"FL","12","061",151281,0.87832576463667,6971,0.151512747800451,8.8495139654864,9.50747760319872,10.574746933338,6.08461538461538,436.379117662711,328,75164,0,1,0,0,9 +"17416",2016,12063,"FL","12","063",48325,0.704418003103983,3076,0.134443869632695,8.03138533062553,8.80507524387068,9.38252741428954,5.26153846153846,491.256999553403,143,29109,0,1,0,0,9 +"17417",2016,12065,"FL","12","065",13985,0.636038612799428,653,0.161744726492671,6.48157712927643,7.38212436573751,8.23110984032815,5.30769230769231,707.835001220405,58,8194,0,1,0,0,9 +"17418",2016,12067,"FL","12","067",8760,0.83527397260274,714,0.109360730593607,6.57088296233958,7.1929342212158,7.56060116276856,4.4,500.834724540902,27,5391,0,1,0,0,9 +"17419",2016,12069,"FL","12","069",335209,0.852393581317924,16366,0.133630063631943,9.70296129108733,10.4970629856979,11.4118778575606,4.89230769230769,441.718353054265,772,174772,0,1,0,0,9 +"17420",2016,12071,"FL","12","071",723467,0.88035114248473,36194,0.140042323976076,10.4966486382201,11.2230676940688,12.1776217293562,4.65384615384615,380.024296202398,1439,378660,0,1,0,0,9 +"17421",2016,12073,"FL","12","073",286960,0.632387789238918,47583,0.109802759966546,10.7702308335717,10.3273490709224,11.4634200450664,4.58461538461538,266.360580830825,485,182084,0,1,0,0,9 +"17422",2016,12075,"FL","12","075",39885,0.883665538422966,1994,0.157853829760562,7.59789795052178,8.28551330907974,9.33069786863992,5.20769230769231,549.853372434018,120,21824,0,1,0,0,9 +"17423",2016,12077,"FL","12","077",8307,0.785482123510293,552,0.11965811965812,6.3135480462771,7.17472430983638,7.51697722460432,5.17692307692308,364.03349108118,20,5494,0,1,0,0,9 +"17424",2016,12079,"FL","12","079",18342,0.595191364082434,1058,0.142187329625995,6.96413561241824,7.68248244653451,8.49902922078857,5.3,499.583680266445,54,10809,0,1,0,0,9 +"17425",2016,12081,"FL","12","081",375538,0.873211232951126,18447,0.145359457631451,9.82265703462158,10.5599707487245,11.5406962619156,4.6,468.078267507734,932,199112,0,1,0,0,9 +"17426",2016,12083,"FL","12","083",347958,0.83511228366642,17560,0.136990671287914,9.77337886718911,10.4280681415345,11.4400859187933,5.88461538461539,622.348267440944,1106,177714,0,1,0,0,9 +"17427",2016,12085,"FL","12","085",158425,0.913435379517122,7252,0.154470569670191,8.88903257187474,9.58946150474475,10.6021942503013,4.9,417.044869121507,340,81526,0,1,0,0,9 +"17428",2016,12086,"FL","12","086",2689890,0.788352311804572,172407,0.118950217295131,12.0576132396357,12.8321928780516,13.6346503329048,5.54615384615385,274.004669783857,4565,1666030,0,1,0,0,9 +"17429",2016,12087,"FL","12","087",76968,0.905623116100198,3902,0.167368256937948,8.26924452118306,9.13475438501959,10.0363124456486,3.21538461538462,495.333224168986,242,48856,0,1,0,0,9 +"17430",2016,12089,"FL","12","089",80168,0.918408841432991,3943,0.154937132022752,8.27969713387763,9.1109619279959,10.0546623803332,4.53076923076923,515.948492599637,236,45741,0,1,0,0,9 +"17431",2016,12091,"FL","12","091",200912,0.838755275941706,14772,0.129852870908657,9.60048877597245,10.047111592619,10.9749341731315,4.05384615384615,407.741295178232,493,120910,0,1,0,0,9 +"17432",2016,12093,"FL","12","093",40767,0.880172688694287,2327,0.124119999018814,7.75233516330229,8.53464010501996,9.23776096755218,5.21538461538462,539.670104887496,124,22977,0,1,0,0,9 +"17433",2016,12095,"FL","12","095",1327775,0.696374762290298,105791,0.110031443580426,11.5692207286254,12.1384306469177,12.9619903790426,4.39230769230769,291.81302350716,2430,832725,0,1,0,0,9 +"17434",2016,12097,"FL","12","097",338182,0.812198756882389,23105,0.107616608808275,10.0478043233044,10.7922220756392,11.5364368924311,5.00769230769231,323.074307090631,646,199954,0,1,0,0,9 +"17435",2016,12099,"FL","12","099",1451469,0.762957390064824,79983,0.129657608946522,11.2895693910747,12.0235430671012,12.915041500683,4.73846153846154,374.449090363616,2983,796637,0,1,0,0,9 +"17436",2016,12101,"FL","12","101",510319,0.901896656797023,25910,0.133079505172255,10.1623842735562,11.0216573404198,11.8763386558465,5.19230769230769,522.701394819243,1469,281040,0,1,0,0,9 +"17437",2016,12103,"FL","12","103",960527,0.84081967503256,48941,0.15734487422009,10.7983707699714,11.5580804584771,12.5624245372932,4.39230769230769,490.811921520562,2723,554795,0,1,0,0,9 +"17438",2016,12105,"FL","12","105",666271,0.805615132581187,40370,0.123157093735132,10.605842213847,11.261523890035,12.1375046837563,5.59230769230769,453.16603840344,1665,367415,0,1,0,0,9 +"17439",2016,12107,"FL","12","107",72410,0.814127882889104,3879,0.153846153846154,8.26333266743997,8.88999735728484,9.89837450314931,6.43076923076923,751.173708920188,296,39405,0,1,0,0,9 +"17440",2016,12109,"FL","12","109",235192,0.905375182829348,11626,0.142547365556652,9.3609992482613,10.2999455514843,11.1346766116553,3.81538461538462,318.75624920123,424,133017,0,1,0,0,9 +"17441",2016,12111,"FL","12","111",305775,0.75682119205298,16342,0.138023056168752,9.70149375994465,10.4219241393035,11.3545743088149,5.83076923076923,461.852099081708,768,166287,0,1,0,0,9 +"17442",2016,12113,"FL","12","113",170224,0.891965880251903,9954,0.133318450982235,9.2057297594185,9.98575854496892,10.8018790445225,4.54615384615385,386.411518558433,398,102999,0,1,0,0,9 +"17443",2016,12115,"FL","12","115",413395,0.925828807798836,17486,0.154111684950229,9.76915583974084,10.4734496325257,11.5566456556598,4.58461538461538,429.317540045481,859,200085,0,1,0,0,9 +"17444",2016,12117,"FL","12","117",456266,0.812686020873788,28894,0.130349401445648,10.2713892400893,11.022653820152,11.8825215699975,4.31538461538462,295.284376350114,827,280069,0,1,0,0,9 +"17445",2016,12119,"FL","12","119",122249,0.906322342105048,2970,0.149923516756783,7.99631723179675,8.89918494333876,9.95465583911053,7.23076923076923,516.11165963558,230,44564,0,1,0,0,9 +"17446",2016,12121,"FL","12","121",43849,0.846290679376953,2523,0.138543638395402,7.83320394864106,8.49023300983345,9.33007705357852,4.93846153846154,520.371117386043,129,24790,0,1,0,0,9 +"17447",2016,12123,"FL","12","123",22098,0.774051950402751,1364,0.136301927776269,7.21817683840341,7.9035962896143,8.57281709516423,5.44615384615385,680.323531635044,90,13229,0,1,0,0,9 +"17448",2016,12125,"FL","12","125",15256,0.748426848453068,977,0.15174357629785,6.88448665204278,7.6314316645769,7.93522953981691,4.36153846153846,1117.14975845411,111,9936,0,1,0,0,9 +"17449",2016,12127,"FL","12","127",529100,0.854611604611605,31249,0.151587601587602,10.3497426546525,10.9131046796327,11.9206347197632,5.11538461538461,542.032927992854,1602,295554,0,1,0,0,9 +"17450",2016,12129,"FL","12","129",31894,0.837430237662256,1647,0.136169812503919,7.40671073017764,8.42814337458273,9.05310159554969,4.17692307692308,430.991279943871,86,19954,0,1,0,0,9 +"17451",2016,12131,"FL","12","131",65488,0.914335450769607,3027,0.154440508184706,8.01532730902172,8.98807143807263,9.83686686519423,4.33846153846154,436.974789915966,169,38675,0,1,0,0,9 +"17452",2016,12133,"FL","12","133",24469,0.816461645347174,1590,0.13388368956639,7.37148929521428,8.06871619271478,8.75115798136203,5.17692307692308,662.878787878788,98,14784,0,1,0,0,9 +"17453",2016,13001,"GA","13","001",18443,0.784850620831752,1078,0.134088814184243,6.98286275146894,7.68982866873648,8.52991196382401,6.46923076923077,483.886576986354,50,10333,0,1,0,0,9 +"17454",2016,13003,"GA","13","003",8293,0.786687567828289,528,0.116604365127216,6.26909628370626,6.98749024700099,7.74240202181578,5.3,618.073316283035,29,4692,0,1,0,0,9 +"17455",2016,13005,"GA","13","005",11268,0.813631522896699,692,0.124689385871495,6.53958595561767,7.34342622914737,8.06934236681164,5.29230769230769,711.523588553751,46,6465,0,1,0,0,9 +"17456",2016,13009,"GA","13","009",45260,0.545802032699956,5697,0.125497127706584,8.6476949994804,8.46252579007393,9.45657525451379,6.93076923076923,413.65431914735,111,26834,0,1,0,0,9 +"17457",2016,13011,"GA","13","011",18292,0.948338071287995,1013,0.136781106494642,6.92067150424868,7.77988511507052,8.55641390456952,4.93076923076923,468.735352020249,50,10667,0,1,0,0,9 +"17458",2016,13013,"GA","13","013",77108,0.829096851169788,4482,0.111518908543861,8.40782465436087,9.29880901996379,10.0536302109658,4.78461538461538,458.855919241358,210,45766,0,1,0,0,9 +"17459",2016,13015,"GA","13","015",103418,0.865352259761357,6361,0.126341642654083,8.7579408766788,9.49867223326946,10.3442876289318,5.2,457.070870211254,283,61916,0,1,0,0,9 +"17460",2016,13017,"GA","13","017",17267,0.618289222215787,1014,0.137777262987201,6.92165818415113,7.59186171488993,8.53405030848266,8.31538461538462,624.349635796046,60,9610,0,1,0,0,9 +"17461",2016,13019,"GA","13","019",18968,0.87610712779418,1068,0.131959088991986,6.97354301952014,7.70571282389443,8.59396903021829,6.22307692307692,761.162164670937,82,10773,0,1,0,0,9 +"17462",2016,13021,"GA","13","021",153212,0.41517635694332,11300,0.127346421951283,9.33255800470043,9.7883572452825,10.7524625771254,6.03076923076923,567.228569145962,497,87619,0,1,0,0,9 +"17463",2016,13023,"GA","13","023",12868,0.715806652160398,1093,0.122241218526578,6.99668148817654,7.24422751560335,8.22924441673591,8.02307692307692,582.6859045505,42,7208,0,1,0,0,9 +"17464",2016,13025,"GA","13","025",18425,0.954084124830394,1067,0.135522388059701,6.97260625130175,7.74022952476318,8.59822003005861,6.83076923076923,665.043087298614,71,10676,0,1,0,0,9 +"17465",2016,13027,"GA","13","027",15732,0.624141876430206,906,0.145372489194,6.80903930604298,7.43543801981455,8.41847721847708,5.30769230769231,536.672629695885,48,8944,0,1,0,0,9 +"17466",2016,13029,"GA","13","029",35916,0.813843412406727,1888,0.103268738166834,7.54327334670545,8.61159386683772,9.2775316215165,4.93076923076923,396.541015718313,83,20931,0,1,0,0,9 +"17467",2016,13031,"GA","13","031",74660,0.676520225020091,12433,0.0999866059469595,9.42810950695294,8.94663520890585,10.0529415057045,5.8,391.783371934457,181,46199,0,1,0,0,9 +"17468",2016,13033,"GA","13","033",22638,0.50106016432547,1440,0.14135524339606,7.27239839257005,7.86403565907245,8.81981313623223,7.81538461538462,654.052791403878,84,12843,0,1,0,0,9 +"17469",2016,13035,"GA","13","035",23738,0.699005813463645,1663,0.126211138259331,7.41637847919293,8.04622910107538,8.7533714210009,5.73076923076923,614.250614250614,90,14652,0,1,0,0,9 +"17470",2016,13037,"GA","13","037",6359,0.357446139330083,439,0.133039786129895,6.08449941307517,6.89871453432999,7.24279792279376,5.75384615384615,597.228858098423,25,4186,0,1,0,0,9 +"17471",2016,13039,"GA","13","039",52602,0.767898558990152,5274,0.113493783506331,8.57054436691323,8.65956043270316,9.635281256585,5.83076923076923,409.099361557057,132,32266,0,1,0,0,9 +"17472",2016,13043,"GA","13","043",10837,0.728984036172372,613,0.129463873765802,6.41836493593621,7.12205988162914,8.02224091680654,4.85384615384615,677.910052910053,41,6048,0,1,0,0,9 +"17473",2016,13045,"GA","13","045",116180,0.781674987089,10690,0.113367188844896,9.27706400401909,9.56927276595613,10.4605286000991,6.09230769230769,465.245570657342,318,68351,0,1,0,0,9 +"17474",2016,13047,"GA","13","047",66350,0.947354935945742,3671,0.126254709871891,8.20821938349683,9.07669468710627,9.88527266411522,4.91538461538462,501.292394454453,192,38301,0,1,0,0,9 +"17475",2016,13049,"GA","13","049",12850,0.662645914396887,1015,0.119766536964981,6.92264389147589,7.48773376143644,8.00603417874901,5.72307692307692,483.750930290251,39,8062,0,1,0,0,9 +"17476",2016,13051,"GA","13","051",289055,0.547809240455969,23752,0.11907076507931,10.0754220164436,10.4659848990766,11.4132045722573,5.32307692307692,429.793710419362,754,175433,0,1,0,0,9 +"17477",2016,13053,"GA","13","053",10065,0.723795330352707,2548,0.0389468455042226,7.84306401669205,6.90575327631146,7.61035761831284,8.38461538461539,224.097020827841,17,7586,0,1,0,0,9 +"17478",2016,13055,"GA","13","055",24847,0.880951422706967,1545,0.135992272708979,7.34277918933185,8.05896001776942,8.8321499060029,6.39230769230769,734.73872141729,107,14563,0,1,0,0,9 +"17479",2016,13057,"GA","13","057",241929,0.898561148105436,13630,0.12268475461809,9.52002852469058,10.4447356831134,11.1977488582091,4.30769230769231,290.250506372286,417,143669,0,1,0,0,9 +"17480",2016,13059,"GA","13","059",124873,0.657091605070752,24055,0.0884258406541046,10.0880981541336,9.53885243891622,10.6386400272411,5.58461538461538,304.930742450804,247,81002,0,1,0,0,9 +"17481",2016,13063,"GA","13","063",279346,0.209761371202738,20313,0.108507012808488,9.91901635415375,10.534785924769,11.4182630753046,6.7,394.541873211023,663,168043,0,1,0,0,9 +"17482",2016,13065,"GA","13","065",6762,0.703342206447797,453,0.125554569653949,6.11589212548303,6.71780469502369,7.58222919427646,6.24615384615385,623.862750194957,24,3847,0,1,0,0,9 +"17483",2016,13067,"GA","13","067",748767,0.647569938311918,48991,0.118900806258823,10.7993918867533,11.5831322660131,12.386241887756,4.66153846153846,258.880062339012,1196,461990,0,1,0,0,9 +"17484",2016,13069,"GA","13","069",42924,0.695881092162893,3116,0.11483086385239,8.04430540699064,8.62479120201426,9.39424400995279,5.91538461538462,509.054169581099,131,25734,0,1,0,0,9 +"17485",2016,13071,"GA","13","071",45471,0.734534098656286,2883,0.113940753447252,7.9665866976384,8.6557370008643,9.46094343618654,5.33846153846154,510.920436817473,131,25640,0,1,0,0,9 +"17486",2016,13073,"GA","13","073",147622,0.765847908848275,8612,0.121756919700316,9.06091185848425,9.92353524783991,10.7129277703671,4.71538461538462,289.10616114823,254,87857,0,1,0,0,9 +"17487",2016,13075,"GA","13","075",17175,0.710684133915575,1001,0.119475982532751,6.90875477931522,7.70210434005105,8.52098598965493,5.48461538461538,557.542604670734,53,9506,0,1,0,0,9 +"17488",2016,13077,"GA","13","077",140561,0.785858097196235,8288,0.125276570314668,9.02256396449926,9.85581925883463,10.6665105480071,5.03846153846154,375.520389677388,313,83351,0,1,0,0,9 +"17489",2016,13079,"GA","13","079",12250,0.769142857142857,646,0.157387755102041,6.4707995037826,7.20117088328168,8.17723488551019,5.95384615384615,687.568756875688,50,7272,0,1,0,0,9 +"17490",2016,13081,"GA","13","081",22882,0.532383532907963,1405,0.137662791714011,7.24779258176785,7.8659554139335,8.82408948279182,6.11538461538461,580.984533249588,74,12737,0,1,0,0,9 +"17491",2016,13083,"GA","13","083",16249,0.968921164379346,1368,0.145485876053911,7.2211050981825,7.53101633207792,8.47657950853094,5.11538461538461,460.202907645644,44,9561,0,1,0,0,9 +"17492",2016,13085,"GA","13","085",23664,0.975447937795808,1276,0.142875253549696,7.15148546390474,7.92117272158701,8.83797149135721,4.73846153846154,439.818208473831,60,13642,0,1,0,0,9 +"17493",2016,13087,"GA","13","087",26682,0.554043924743273,1756,0.128850910726332,7.47079377419506,8.06054004653864,8.95531908176395,6.73846153846154,680.721697177979,103,15131,0,1,0,0,9 +"17494",2016,13089,"GA","13","089",747299,0.36368441547493,49400,0.115841182712676,10.807705703176,11.5803691370672,12.4201229785653,5.46923076923077,309.08915290254,1440,465885,0,1,0,0,9 +"17495",2016,13091,"GA","13","091",20866,0.684318987827087,1332,0.135627336336624,7.19443685110033,7.89469085042562,8.66871183905515,7.36923076923077,704.113924050633,89,12640,0,1,0,0,9 +"17496",2016,13093,"GA","13","093",13870,0.487238644556597,812,0.154001441961067,6.69950034016168,7.52940645783701,8.17526610411206,5.87692307692308,603.038385712629,52,8623,0,1,0,0,9 +"17497",2016,13095,"GA","13","095",90365,0.277950533945665,7192,0.124605765506557,8.88072457615146,9.25052216160901,10.2426703978503,6.93076923076923,601.576949284532,309,51365,0,1,0,0,9 +"17498",2016,13097,"GA","13","097",141824,0.507206114620939,9385,0.116277921931408,9.14686794902061,9.9001820955274,10.7203556600858,5.62307692307692,397.318393849183,339,85322,0,1,0,0,9 +"17499",2016,13099,"GA","13","099",10310,0.479825412221144,603,0.129388942774006,6.40191719672719,7.06133436691044,7.98070782086967,6.97692307692308,635.439360929557,35,5508,0,1,0,0,9 +"17500",2016,13103,"GA","13","103",58705,0.838105783153053,3424,0.119001788604037,8.13856473726163,9.0079793598445,9.77832107624323,4.9,434.198874510812,152,35007,0,1,0,0,9 +"17501",2016,13105,"GA","13","105",19122,0.688578600564794,1083,0.143865704424223,6.98749024700099,7.64921631982063,8.61450137388324,6.56923076923077,560.328726186029,60,10708,0,1,0,0,9 +"17502",2016,13107,"GA","13","107",22405,0.636643606337871,1426,0.126935951796474,7.26262860097424,7.91278922069068,8.75416074932352,7.83846153846154,703.839837334793,90,12787,0,1,0,0,9 +"17503",2016,13109,"GA","13","109",10633,0.662277814351547,594,0.124423963133641,6.38687931936265,7.16317239084664,8.00770001288403,4.98461538461538,453.781512605042,27,5950,0,1,0,0,9 +"17504",2016,13111,"GA","13","111",25051,0.979441938445571,1122,0.177837212087342,7.02286808608264,7.79152281915073,8.84692850009902,5.43846153846154,611.164940001491,82,13417,0,1,0,0,9 +"17505",2016,13113,"GA","13","113",111294,0.704494402213956,6998,0.150448361996154,8.85337967292763,9.42035815607147,10.3946715360468,4.79230769230769,229.892346963043,145,63073,0,1,0,0,9 +"17506",2016,13115,"GA","13","115",96730,0.818350046521245,6573,0.125586684585961,8.79072562826358,9.37075709338209,10.2443074671508,6.09230769230769,522.197962154294,287,54960,0,1,0,0,9 +"17507",2016,13117,"GA","13","117",220856,0.82792407722679,10604,0.104443619371898,9.26898656740892,10.4800166436263,11.0734277621179,4.23076923076923,183.974634986495,235,127735,0,1,0,0,9 +"17508",2016,13119,"GA","13","119",22333,0.883849012671831,1453,0.136166211435992,7.28138566357028,7.79234892411304,8.74639833410904,5.3,647.326780148645,81,12513,0,1,0,0,9 +"17509",2016,13121,"GA","13","121",1023816,0.466472491150754,74606,0.110606788719848,11.219976211912,11.9058455455761,12.7154321951344,5.45384615384615,320.28568435453,2079,649108,0,1,0,0,9 +"17510",2016,13123,"GA","13","123",29897,0.968023547513128,1483,0.154965381141921,7.30182234213793,8.09894674894334,8.98744678941718,5.75384615384615,531.028095091077,86,16195,0,1,0,0,9 +"17511",2016,13127,"GA","13","127",84211,0.701381054731567,5092,0.139316716343471,8.5354259596773,9.1783335758411,10.1376501703328,5.37692307692308,520.494469746259,248,47647,0,1,0,0,9 +"17512",2016,13129,"GA","13","129",57015,0.928966061562747,3499,0.120810313075506,8.16023249236769,8.92678311410135,9.72597441673448,5.67692307692308,491.680407734972,164,33355,0,1,0,0,9 +"17513",2016,13131,"GA","13","131",24895,0.676320546294437,1379,0.1329985940952,7.2291138777933,7.95822719232231,8.8758461777386,5.5,595.583962812318,82,13768,0,1,0,0,9 +"17514",2016,13133,"GA","13","133",16892,0.626095192990765,779,0.156642197489936,6.65801104587075,7.42892719480227,8.41759382619348,6.13076923076923,597.701149425287,52,8700,0,1,0,0,9 +"17515",2016,13135,"GA","13","135",905291,0.575556368062866,59458,0.111688948636405,10.9930254599285,11.8037799998373,12.5511435219467,4.83846153846154,240.692700503019,1324,550079,0,1,0,0,9 +"17516",2016,13137,"GA","13","137",44166,0.920640311551872,2967,0.125435855635557,7.99530662029082,8.57319538153152,9.49874718174242,5.36923076923077,442.548441113149,111,25082,0,1,0,0,9 +"17517",2016,13139,"GA","13","139",196176,0.882681877497757,12882,0.112766087594813,9.46358626710684,10.1264310838477,10.9343026831384,4.55384615384615,373.741957873942,420,112377,0,1,0,0,9 +"17518",2016,13141,"GA","13","141",8644,0.260874595094863,578,0.155367885238316,6.35957386867238,6.88243747099785,7.68386398025643,8.5,606.980273141123,32,5272,0,1,0,0,9 +"17519",2016,13143,"GA","13","143",28860,0.936105336105336,1644,0.123665973665974,7.40488757561612,8.1519098729409,9.04192172035122,5.87692307692308,736.615163492634,123,16698,0,1,0,0,9 +"17520",2016,13145,"GA","13","145",33615,0.808359363379444,1875,0.150974267440131,7.53636393840451,8.30003171177957,9.19156521664985,4.94615384615385,311.574215956686,61,19578,0,1,0,0,9 +"17521",2016,13147,"GA","13","147",25459,0.789190463097529,1417,0.14065752778978,7.25629723969068,7.94200680848986,8.86191700423521,5.45384615384615,443.693217832242,63,14199,0,1,0,0,9 +"17522",2016,13149,"GA","13","149",11578,0.880376576265331,704,0.146139229573329,6.55677835615804,7.22329567956231,8.13827263853019,5.98461538461538,680.876258140912,46,6756,0,1,0,0,9 +"17523",2016,13151,"GA","13","151",221040,0.51478013029316,14476,0.116304741223308,9.58024738468363,10.3489102817014,11.159673228309,5.56153846153846,343.754249709131,455,132362,0,1,0,0,9 +"17524",2016,13153,"GA","13","153",151287,0.638085228737433,10076,0.118450362555937,9.2179116374725,9.88461049676644,10.7522058322215,5.40769230769231,375.019302464097,340,90662,0,1,0,0,9 +"17525",2016,13155,"GA","13","155",9307,0.703771354894166,601,0.11990974535296,6.39859493453521,7.10824413973154,7.81359155295243,7.92307692307692,605.393505778756,33,5451,0,1,0,0,9 +"17526",2016,13157,"GA","13","157",65091,0.898495951821296,3538,0.118925811556129,8.17131687471973,9.10086027135736,9.84686428959504,4.31538461538462,410.617781074494,155,37748,0,1,0,0,9 +"17527",2016,13159,"GA","13","159",13776,0.780778164924506,733,0.145325203252033,6.59714570188665,7.37775890822787,8.29729437026692,4.85384615384615,457.898753497838,36,7862,0,1,0,0,9 +"17528",2016,13161,"GA","13","161",14954,0.825397886853016,829,0.123110873344924,6.7202201551353,7.539027055824,8.3466420902212,6.42307692307692,724.812756704518,60,8278,0,1,0,0,9 +"17529",2016,13163,"GA","13","163",15773,0.452418690166741,935,0.137259874469029,6.84054652928869,7.49776170062257,8.42266270757,7.47692307692308,759.94635672776,68,8948,0,1,0,0,9 +"17530",2016,13165,"GA","13","165",8823,0.546526124900827,640,0.127847670860252,6.46146817635372,7.01481435127554,7.74196789982069,7.66923076923077,398.860398860399,21,5265,0,1,0,0,9 +"17531",2016,13167,"GA","13","167",9679,0.647484244240107,565,0.138960636429383,6.33682573114644,7.18992217074581,7.73236922228439,6.16923076923077,584.40474202705,35,5989,0,1,0,0,9 +"17532",2016,13169,"GA","13","169",28572,0.734040319193616,1612,0.134537309253815,7.38523092306657,8.18646442942209,9.03610602536485,4.87692307692308,370.888307898097,61,16447,0,1,0,0,9 +"17533",2016,13171,"GA","13","171",18462,0.678583035424114,1522,0.129346766330842,7.32778053842163,7.61726781362835,8.59822003005861,6.64615384615385,599.087105363256,63,10516,0,1,0,0,9 +"17534",2016,13173,"GA","13","173",10444,0.74798927613941,618,0.120451934124856,6.42648845745769,7.23705902612474,8.03883475778775,5.84615384615385,465.788628332798,29,6226,0,1,0,0,9 +"17535",2016,13175,"GA","13","175",47287,0.610929007972593,2844,0.129062955992133,7.95296679092313,8.64979915596426,9.54330646926811,6.73076923076923,596.451491128728,158,26490,0,1,0,0,9 +"17536",2016,13177,"GA","13","177",29203,0.758791904941273,1576,0.123583193507516,7.36264527041782,8.36124088964235,9.06265209907658,4.77692307692308,370.563372126686,64,17271,0,1,0,0,9 +"17537",2016,13179,"GA","13","179",61672,0.500048644441562,7174,0.0919542093656765,8.87821865809223,8.80612448326845,9.80829736553238,5.93846153846154,352.975265389985,134,37963,0,1,0,0,9 +"17538",2016,13181,"GA","13","181",7859,0.676930907240107,432,0.172541035755185,6.06842558824411,6.63594655568665,7.71646080017636,5.98461538461538,610.169491525424,27,4425,0,1,0,0,9 +"17539",2016,13183,"GA","13","183",18392,0.688179643323184,1189,0.106948673336233,7.08086789669078,7.87663846097546,8.61812390999468,5.46923076923077,301.178138010453,34,11289,0,1,0,0,9 +"17540",2016,13185,"GA","13","185",114457,0.593026201979783,14989,0.0992687210043947,9.6150718777306,9.45006568288207,10.4562801151234,5.35384615384615,436.084542256592,300,68794,0,1,0,0,9 +"17541",2016,13187,"GA","13","187",31422,0.960950926102731,3867,0.13662402138629,8.2602342916073,8.1056094022999,9.13927392354232,4.86153846153846,463.48693074643,86,18555,0,1,0,0,9 +"17542",2016,13189,"GA","13","189",21481,0.567012708905544,1267,0.133839206740841,7.14440718032114,7.75662333453886,8.74846362994206,7.38461538461539,640.431448554816,76,11867,0,1,0,0,9 +"17543",2016,13191,"GA","13","191",14068,0.639607620130793,751,0.176357691214103,6.62140565176413,7.26122509197192,8.31556648356428,5.91538461538462,475.832707237666,38,7986,0,1,0,0,9 +"17544",2016,13193,"GA","13","193",13483,0.368167321812653,1002,0.145590743899726,6.90975328164481,7.40853056689463,8.15937473677543,8.35384615384615,496.747486694264,42,8455,0,1,0,0,9 +"17545",2016,13195,"GA","13","195",28833,0.882183609059064,1720,0.139458259633059,7.4500795698075,8.17188200612782,9.05788824878451,5.01538461538462,515.18919879197,87,16887,0,1,0,0,9 +"17546",2016,13197,"GA","13","197",8490,0.652179034157833,495,0.154652532391048,6.20455776256869,6.80682936039218,7.79358680337158,7.40769230769231,469.387755102041,23,4900,0,1,0,0,9 +"17547",2016,13199,"GA","13","199",21052,0.586025080752423,1214,0.145164354930648,7.10167597161944,7.7341213033283,8.71882705924257,6.96153846153846,690.177594478579,82,11881,0,1,0,0,9 +"17548",2016,13201,"GA","13","201",5875,0.713531914893617,340,0.131234042553191,5.82894561761021,6.43294009273918,7.40610338123702,5.5,933.125972006221,30,3215,0,1,0,0,9 +"17549",2016,13205,"GA","13","205",22443,0.502606603395268,1402,0.129483580626476,7.24565506759454,7.96067260838812,8.69165057315339,6.65384615384615,543.145654834761,71,13072,0,1,0,0,9 +"17550",2016,13207,"GA","13","207",26880,0.748846726190476,1654,0.155394345238095,7.41095187558364,8.0727793331695,8.98532006064911,5.23076923076923,569.025235032162,92,16168,0,1,0,0,9 +"17551",2016,13209,"GA","13","209",8996,0.724433081369498,723,0.129724321920854,6.58340922215876,6.95844839329766,7.80994708647679,7.54615384615385,491.029272898961,26,5295,0,1,0,0,9 +"17552",2016,13211,"GA","13","211",18097,0.748577112228546,1013,0.145162181577057,6.92067150424868,7.63819824428578,8.57414047185799,5.10769230769231,620.995564317398,63,10145,0,1,0,0,9 +"17553",2016,13213,"GA","13","213",39322,0.966659885051625,2423,0.122577691877321,7.79276172081653,8.53188474015923,9.36142922633904,7.18461538461538,671.606222106677,155,23079,0,1,0,0,9 +"17554",2016,13215,"GA","13","215",196354,0.473812603766666,15334,0.115459832751052,9.63782786411884,10.1124510402765,10.9915948565591,6.89230769230769,570.212118908234,675,118377,0,1,0,0,9 +"17555",2016,13217,"GA","13","217",106529,0.525575195486675,6932,0.112870673713261,8.8439036508355,9.56366972566382,10.4046264107126,6.07692307692308,440.649958689066,272,61727,0,1,0,0,9 +"17556",2016,13219,"GA","13","219",36928,0.898315641247834,1964,0.130036828422877,7.58273848891441,8.52595469708481,9.27612811251419,4.15384615384615,241.732740282344,50,20684,0,1,0,0,9 +"17557",2016,13221,"GA","13","221",14710,0.807545887151598,836,0.143711760707002,6.7286286130847,7.46393660446893,8.37447688921464,4.91538461538462,472.84050282551,41,8671,0,1,0,0,9 +"17558",2016,13223,"GA","13","223",155415,0.783952642923785,9439,0.108136280281826,9.15260532132494,10.0449871148098,10.7821179532276,4.69230769230769,321.608468313046,302,93903,0,1,0,0,9 +"17559",2016,13225,"GA","13","225",27111,0.531776769576925,2381,0.135332521854598,7.77527584648686,8.0166478770578,9.00748952392973,7.07692307692308,704.940937380922,111,15746,0,1,0,0,9 +"17560",2016,13227,"GA","13","227",30654,0.972532132837476,1607,0.153911398186207,7.38212436573751,8.1341742721379,9.08045945112166,4.95384615384615,530.68758652515,92,17336,0,1,0,0,9 +"17561",2016,13229,"GA","13","229",19116,0.891609123247541,1060,0.122829043732999,6.96602418710611,7.82043951526218,8.5956346177228,5.36923076923077,611.054531987779,66,10801,0,1,0,0,9 +"17562",2016,13231,"GA","13","231",17916,0.891549453002902,1029,0.130888591203394,6.93634273583405,7.74022952476318,8.57904059474232,5.25384615384615,525.561395126613,55,10465,0,1,0,0,9 +"17563",2016,13233,"GA","13","233",41584,0.843569642170065,2469,0.122330704116968,7.81156848934518,8.51519118874556,9.37152340956757,6.20769230769231,621.380563892294,147,23657,0,1,0,0,9 +"17564",2016,13235,"GA","13","235",11296,0.657843484419263,687,0.138633144475921,6.53233429222235,7.21450441415114,8.27944348771267,5.92307692307692,574.018126888218,38,6620,0,1,0,0,9 +"17565",2016,13237,"GA","13","237",21502,0.714677704399591,1034,0.155287880197191,6.94119005506837,7.65349490966125,8.71292443512011,7.14615384615385,500.084760128835,59,11798,0,1,0,0,9 +"17566",2016,13241,"GA","13","241",16493,0.96168071302977,819,0.153034620748196,6.70808408385307,7.4599147662411,8.40491994893345,6.01538461538462,517.84307103456,46,8883,0,1,0,0,9 +"17567",2016,13243,"GA","13","243",7150,0.37034965034965,443,0.151188811188811,6.09356977004514,6.49677499018586,7.62559507213245,8.56923076923077,653.253200940685,25,3827,0,1,0,0,9 +"17568",2016,13245,"GA","13","245",202179,0.392543241385109,17307,0.124899222965788,9.758866322925,10.0377998901437,11.049285544311,6.85384615384615,567.915642747364,691,121673,0,1,0,0,9 +"17569",2016,13247,"GA","13","247",88995,0.421248384740716,5920,0.131827630765773,8.68609172787805,9.30692246982243,10.2365611632225,5.86923076923077,407.452750784299,213,52276,0,1,0,0,9 +"17570",2016,13251,"GA","13","251",14015,0.563039600428113,895,0.153621120228327,6.79682371827486,7.35755620091035,8.34474275441755,7.63076923076923,425.738961196935,35,8221,0,1,0,0,9 +"17571",2016,13253,"GA","13","253",8424,0.64292497625831,491,0.146367521367521,6.19644412779452,6.81234509417748,7.78072088611792,7.98461538461538,546.567555749891,25,4574,0,1,0,0,9 +"17572",2016,13255,"GA","13","255",64523,0.634920880926181,3944,0.127892379461587,8.27995071572253,8.95944014361693,9.84977027003014,6.96923076923077,671.469348919396,247,36785,0,1,0,0,9 +"17573",2016,13257,"GA","13","257",25680,0.862655763239875,1823,0.1375,7.50823877467866,7.92948652331429,8.92319149068606,5.95384615384615,679.658783549483,98,14419,0,1,0,0,9 +"17574",2016,13261,"GA","13","261",30334,0.440133183886068,2975,0.121480846574801,7.99799931797973,8.0870254706677,9.11679862756782,7.66923076923077,667.169461043105,115,17237,0,1,0,0,9 +"17575",2016,13263,"GA","13","263",6361,0.426819682439868,330,0.186605879578683,5.79909265446053,6.43615036836943,7.568895663407,6.77692307692308,599.781897491821,22,3668,0,1,0,0,9 +"17576",2016,13267,"GA","13","267",25352,0.683733038813506,1876,0.117032186809719,7.53689712956617,8.18283871076603,8.71440336070394,5.40769230769231,535.82554517134,86,16050,0,1,0,0,9 +"17577",2016,13269,"GA","13","269",8256,0.597383720930233,535,0.153221899224806,6.28226674689601,6.85751406254539,7.81439963380449,7.63076923076923,519.534497090607,25,4812,0,1,0,0,9 +"17578",2016,13271,"GA","13","271",15960,0.609649122807018,955,0.133082706766917,6.86171134048073,7.80016307039296,8.19753873972118,8.49230769230769,460.829493087558,47,10199,0,1,0,0,9 +"17579",2016,13273,"GA","13","273",8873,0.377775273301026,552,0.145835681280289,6.3135480462771,6.79682371827486,7.85593219971861,6.58461538461538,642.957604982921,32,4977,0,1,0,0,9 +"17580",2016,13275,"GA","13","275",44967,0.61055885427091,2611,0.134098338781773,7.86748856869913,8.56541176368671,9.49949635768396,6.31538461538462,574.102473359286,146,25431,0,1,0,0,9 +"17581",2016,13277,"GA","13","277",40562,0.66848281642917,2997,0.119619348158375,8.00536706731666,8.50572771330696,9.37644785490711,5.47692307692308,447.004212155076,104,23266,0,1,0,0,9 +"17582",2016,13279,"GA","13","279",27141,0.71356987583361,1627,0.122066246637928,7.39449310721904,8.0727793331695,8.96763166516713,7.91538461538462,603.986309643648,90,14901,0,1,0,0,9 +"17583",2016,13281,"GA","13","281",11416,0.974772249474422,767,0.138927820602663,6.64248680136726,6.76619171466035,7.90470391387375,6.90769230769231,730.769230769231,38,5200,0,1,0,0,9 +"17584",2016,13283,"GA","13","283",6720,0.664285714285714,453,0.130654761904762,6.11589212548303,6.6631326959908,7.48885295573346,7.81538461538462,419.067574646412,16,3818,0,1,0,0,9 +"17585",2016,13285,"GA","13","285",69990,0.603929132733248,5119,0.122946135162166,8.54071438645758,9.04876217632013,9.95982062587629,5.17692307692308,574.996298307092,233,40522,0,1,0,0,9 +"17586",2016,13287,"GA","13","287",7970,0.578168130489335,514,0.121329987452949,6.24222326545517,6.72142570079064,7.6586995582683,6.57692307692308,738.007380073801,32,4336,0,1,0,0,9 +"17587",2016,13289,"GA","13","289",8263,0.567348420670459,428,0.174633910202106,6.0591231955818,6.73578001424233,7.78239033558746,8.83076923076923,716.997047659215,34,4742,0,1,0,0,9 +"17588",2016,13291,"GA","13","291",22664,0.979085774797035,960,0.166475467702083,6.86693328446188,7.57967882309046,8.67385500142962,4.8,503.800601025278,57,11314,0,1,0,0,9 +"17589",2016,13293,"GA","13","293",26243,0.696528598102351,1628,0.1419426132683,7.39510754656249,8.01928379291679,8.96136606062745,6.52307692307692,659.736105557777,99,15006,0,1,0,0,9 +"17590",2016,13295,"GA","13","295",68509,0.940168445021822,3790,0.137281233122655,8.24012129807647,9.09054280852059,9.89716762379131,5.63846153846154,695.867810420304,275,39519,0,1,0,0,9 +"17591",2016,13297,"GA","13","297",89886,0.799000956767461,5437,0.120408072447322,8.60098271714592,9.33996413976969,10.1902441969114,4.98461538461538,459.4151143712,238,51805,0,1,0,0,9 +"17592",2016,13299,"GA","13","299",35675,0.673777154870357,2292,0.129446391030133,7.73718007783463,8.33758794211651,9.20140053040671,5.46153846153846,629.636860601328,129,20488,0,1,0,0,9 +"17593",2016,13301,"GA","13","301",5355,0.388608776844071,313,0.159290382819795,5.74620319054015,6.25958146406492,7.35244110024358,7.03846153846154,1027.85145888594,31,3016,0,1,0,0,9 +"17594",2016,13303,"GA","13","303",20349,0.44985011548479,1357,0.139859452552951,7.21303165983487,7.78364059622125,8.63887970967284,6.42307692307692,617.541517149295,74,11983,0,1,0,0,9 +"17595",2016,13305,"GA","13","305",30038,0.775218057127638,1741,0.12317730874226,7.46221493976819,8.25634777291802,9.01249900352419,6.93846153846154,625.430341978426,109,17428,0,1,0,0,9 +"17596",2016,13309,"GA","13","309",8012,0.608587119321018,640,0.109211183225162,6.46146817635372,7.10987946307227,7.31188616407716,9.1,279.017857142857,15,5376,0,1,0,0,9 +"17597",2016,13311,"GA","13","311",28793,0.963463341784461,1725,0.144375369013302,7.45298232946546,8.04974629095219,8.99156227817161,4.69230769230769,477.957361172253,76,15901,0,1,0,0,9 +"17598",2016,13313,"GA","13","313",104314,0.919310926625381,7061,0.110963053856625,8.86234196351635,9.4942403011325,10.3039066174221,6.2,413.119888057837,248,60031,0,1,0,0,9 +"17599",2016,13315,"GA","13","315",8834,0.635386008603124,593,0.122594521168214,6.38519439899773,7.10249935577465,7.5422134631934,7.3,549.148819330038,30,5463,0,1,0,0,9 +"17600",2016,13317,"GA","13","317",9808,0.55852365415987,525,0.147430668841762,6.26339826259162,6.92461239604856,7.91022370709734,6.71538461538462,583.91410811829,31,5309,0,1,0,0,9 +"17601",2016,13319,"GA","13","319",9021,0.592506374016184,498,0.150648486863984,6.21060007702465,6.87005341179813,7.86441990499457,6.40769230769231,859.710824540836,44,5118,0,1,0,0,9 +"17602",2016,13321,"GA","13","321",20732,0.699305421570519,1188,0.142243874204129,7.08002649992259,7.72709448477984,8.70234407522035,5.91538461538462,577.838205302515,68,11768,0,1,0,0,9 +"17603",2016,15001,"HI","15","001",198583,0.357100053881752,10607,0.158155531943822,9.26926943950547,10.0371439373488,10.9510345909881,3.50769230769231,372.490555019775,421,113023,1,1,1,0,9 +"17604",2016,15003,"HI","15","003",993044,0.208062281228224,74758,0.118798361401912,11.2220115089377,11.7303084560714,12.5620218261664,2.72307692307692,275.026668486696,1632,593397,1,1,1,0,9 +"17605",2016,15007,"HI","15","007",71574,0.352837622600386,3664,0.147902869757174,8.20631072579402,9.06969804217372,9.9257870600309,3.06153846153846,316.309399255456,130,41099,1,1,1,0,9 +"17606",2016,15009,"HI","15","009",165596,0.352430010386724,8519,0.144152032657794,9.05005424204284,9.98294547387084,10.798084670325,2.96923076923077,308.213585891574,302,97984,1,1,1,0,9 +"17607",2016,19005,"IA","19","005",13847,0.965696540766953,743,0.155773813822489,6.61069604471776,7.23633934275434,8.16848641712668,4.90769230769231,312.160694896851,23,7368,1,1,1,0,9 +"17608",2016,19007,"IA","19","007",12515,0.978905313623652,654,0.151178585697163,6.4831073514572,7.18690102041163,8.11910083763749,4.68461538461538,444.77390659748,30,6745,1,1,1,0,9 +"17609",2016,19011,"IA","19","011",25634,0.9829133182492,1425,0.144885698681439,7.26192709270275,8.02747653086048,8.87556669199055,3.56153846153846,337.18689788054,49,14532,1,1,1,0,9 +"17610",2016,19013,"IA","19","013",133144,0.86376404494382,15832,0.12476716938052,9.6697884872824,9.58266226149109,10.5840559508892,4.6,363.368399654419,286,78708,1,1,1,0,9 +"17611",2016,19015,"IA","19","015",26434,0.973897253537111,1418,0.155935537565257,7.25700270709207,8.07371464110986,8.94102198354136,2.76153846153846,277.777777777778,43,15480,1,1,1,0,9 +"17612",2016,19017,"IA","19","017",24796,0.972334247459268,1972,0.12776254234554,7.58680353516258,7.95752740223077,8.81951754060489,3.54615384615385,280.17400280174,38,13563,1,1,1,0,9 +"17613",2016,19019,"IA","19","019",20999,0.982808705176437,1091,0.135577884661174,6.99484998583307,7.79482315217939,8.64488255255713,4.07692307692308,289.017341040462,33,11418,1,1,1,0,9 +"17614",2016,19021,"IA","19","021",20327,0.846017612043095,1736,0.131155605844443,7.4593388952203,7.67415292128168,8.61486421858968,3.5,264.924055104203,30,11324,1,1,1,0,9 +"17615",2016,19023,"IA","19","023",14694,0.98332652783449,695,0.146250170137471,6.54391184556479,7.4151751096133,8.26539293085222,4.32307692307692,509.554140127389,40,7850,1,1,1,0,9 +"17616",2016,19025,"IA","19","025",9808,0.968597063621533,602,0.156402936378467,6.40025744530882,6.92755790627832,7.80220931624712,3.75384615384615,504.578583442347,27,5351,1,1,1,0,9 +"17617",2016,19027,"IA","19","027",20362,0.97780178764365,1197,0.146645712601906,7.08757370555797,7.67136092319064,8.60867788153842,2.53846153846154,461.371449249141,51,11054,1,1,1,0,9 +"17618",2016,19029,"IA","19","029",13198,0.979769662070011,664,0.148961963933929,6.49828214947643,7.2868764117507,8.14757773620177,3.22307692307692,470.353477765108,33,7016,1,1,1,0,9 +"17619",2016,19031,"IA","19","031",18351,0.981690371096943,928,0.154215029153725,6.8330317327862,7.72533003791713,8.53836742664764,3.29230769230769,268.019527136977,28,10447,1,1,1,0,9 +"17620",2016,19033,"IA","19","033",43107,0.960841626649964,2496,0.157631011204677,7.82244472948932,8.42945427710823,9.40738632416852,3.56153846153846,475.344107799777,115,24193,1,1,1,0,9 +"17621",2016,19035,"IA","19","035",11386,0.974090988933778,548,0.166081152292289,6.30627528694802,7.02642680869964,7.99530662029082,3.59230769230769,536.672629695885,33,6149,1,1,1,0,9 +"17622",2016,19039,"IA","19","039",9293,0.970085010222748,504,0.139029376950393,6.22257626807137,6.92067150424868,7.80669637252118,3.33846153846154,417.495029821074,21,5030,1,1,1,0,9 +"17623",2016,19041,"IA","19","041",16301,0.976872584504018,879,0.151585792282682,6.77878489768518,7.53422832627409,8.39931015075952,3.82307692307692,254.847645429363,23,9025,1,1,1,0,9 +"17624",2016,19043,"IA","19","043",17657,0.983122840799683,885,0.170017556776349,6.78558764500793,7.4759059693674,8.44805745258138,4.21538461538462,398.489932885906,38,9536,1,1,1,0,9 +"17625",2016,19045,"IA","19","045",47285,0.949328539706038,2747,0.148503753833139,7.91826468609527,8.56350409427949,9.49649628043192,4.9,408.163265306122,108,26460,1,1,1,0,9 +"17626",2016,19047,"IA","19","047",17107,0.924826094581166,1061,0.130472905828024,6.96696713861398,7.58324752430336,8.37632063253482,5.42307692307692,292.492687682808,27,9231,1,1,1,0,9 +"17627",2016,19049,"IA","19","049",84278,0.923040413868388,4130,0.100892285056598,8.32603268595508,9.48501318983432,10.118477957094,2.60769230769231,205.958522808377,101,49039,1,1,1,0,9 +"17628",2016,19053,"IA","19","053",8061,0.961543232849522,985,0.130753008311624,6.89264164117209,6.59167373200866,7.66011431917393,3.2,524.156791248861,23,4388,1,1,1,0,9 +"17629",2016,19055,"IA","19","055",17289,0.984209613048759,1000,0.156573543871826,6.90775527898214,7.51806418123308,8.45019832259196,3.43076923076923,271.059216013344,26,9592,1,1,1,0,9 +"17630",2016,19057,"IA","19","057",39719,0.914877011002291,2121,0.142853546161787,7.65964295456468,8.4156033356546,9.31208435585947,4.9,481.883893258172,106,21997,1,1,1,0,9 +"17631",2016,19059,"IA","19","059",17135,0.982491975488766,809,0.166326232856726,6.69579891705849,7.49886973397693,8.43032725839458,4.29230769230769,215.05376344086,20,9300,1,1,1,0,9 +"17632",2016,19061,"IA","19","061",96819,0.940187359919024,6880,0.135768805709623,8.83637393092739,9.2568422056276,10.214898358562,3.52307692307692,286.029797787795,158,55239,1,1,1,0,9 +"17633",2016,19063,"IA","19","063",9588,0.958385481852315,573,0.153942428035044,6.35088571671474,6.95939851213398,7.82963038915019,4.23076923076923,416.903543680121,22,5277,1,1,1,0,9 +"17634",2016,19065,"IA","19","065",19858,0.969684761808843,1267,0.153137274650015,7.14440718032114,7.58984151218266,8.57016507618234,4.38461538461539,465.243568691845,51,10962,1,1,1,0,9 +"17635",2016,19067,"IA","19","067",15870,0.952678008821676,930,0.141587901701323,6.8351845861473,7.41336733569524,8.3537326422632,3.59230769230769,341.296928327645,29,8497,1,1,1,0,9 +"17636",2016,19069,"IA","19","069",10173,0.973262557750909,565,0.158458665093876,6.33682573114644,6.99759598298193,7.90322680873073,3.43846153846154,343.766962185634,19,5527,1,1,1,0,9 +"17637",2016,19071,"IA","19","071",6945,0.982001439884809,346,0.16414686825054,5.84643877505772,6.61338421837956,7.52131798019924,3.26923076923077,478.341748604837,18,3763,1,1,1,0,9 +"17638",2016,19073,"IA","19","073",9011,0.980468316502053,458,0.154588835867273,6.12686918411419,6.81014245011514,7.77022320415879,3.08461538461538,581.87863674148,28,4812,1,1,1,0,9 +"17639",2016,19075,"IA","19","075",12303,0.986832479882955,587,0.144761440299114,6.3750248198281,7.25488481007734,8.09376775793108,3.41538461538462,270.108043217287,18,6664,1,1,1,0,9 +"17640",2016,19077,"IA","19","077",10661,0.983960228871588,516,0.154019322765219,6.24610676548156,7.03614849375054,7.93451346388226,3.56923076923077,298.927378231053,17,5687,1,1,1,0,9 +"17641",2016,19079,"IA","19","079",15090,0.956991385023194,746,0.147382372432074,6.61472560020376,7.42595365707754,8.30671904320269,3.73076923076923,351.899041378473,29,8241,1,1,1,0,9 +"17642",2016,19081,"IA","19","081",10887,0.980343528979517,575,0.158537705520345,6.35437004079735,7.06561336359772,7.97831096986772,2.67692307692308,305.084745762712,18,5900,1,1,1,0,9 +"17643",2016,19083,"IA","19","083",17193,0.967021462222998,1051,0.154714127842727,6.95749737087695,7.52563997504154,8.44440742169058,3.86153846153846,388.900567584612,37,9514,1,1,1,0,9 +"17644",2016,19085,"IA","19","085",14051,0.98605081488862,746,0.155077930396413,6.61472560020376,7.350516171834,8.25270667656764,3.36153846153846,357.964714906673,28,7822,1,1,1,0,9 +"17645",2016,19087,"IA","19","087",19842,0.936145549843766,1390,0.134311057353089,7.23705902612474,7.74370325817375,8.57224939716431,3.51538461538462,313.031034791164,35,11181,1,1,1,0,9 +"17646",2016,19091,"IA","19","091",9530,0.982581322140609,498,0.155508919202518,6.21060007702465,6.89669433162271,7.85205020726589,2.87692307692308,387.371683129963,20,5163,1,1,1,0,9 +"17647",2016,19095,"IA","19","095",16202,0.982718182940378,878,0.1555363535366,6.77764659363512,7.52886925664225,8.41005331585833,3.07692307692308,306.614104248795,28,9132,1,1,1,0,9 +"17648",2016,19097,"IA","19","097",19406,0.974698546841183,1070,0.156549520766773,6.97541392745595,7.59890045687141,8.57395152523485,4.13076923076923,278.914094458907,30,10756,1,1,1,0,9 +"17649",2016,19099,"IA","19","099",36722,0.966014922934481,2012,0.143183922444311,7.60688453121963,8.38890517111471,9.18553525305721,3.50769230769231,389.882084442754,82,21032,1,1,1,0,9 +"17650",2016,19101,"IA","19","101",18027,0.847783879735952,1913,0.161258112830754,7.55642796944025,7.5251007461258,8.43814998407578,3.63846153846154,304.196117026036,34,11177,1,1,1,0,9 +"17651",2016,19103,"IA","19","103",147167,0.84972174468461,23034,0.101041673744793,10.0447266642289,9.74782740069566,10.7429404356857,2.56153846153846,215.961835997937,201,93072,1,1,1,0,9 +"17652",2016,19105,"IA","19","105",20385,0.964091243561442,1070,0.147951925435369,6.97541392745595,7.79276172081653,8.58951385299586,4.23846153846154,257.554945054945,30,11648,1,1,1,0,9 +"17653",2016,19107,"IA","19","107",10171,0.985842100088487,537,0.154655392783404,6.28599809450886,6.98286275146894,7.88269220628903,4.25384615384615,455.041863851474,25,5494,1,1,1,0,9 +"17654",2016,19109,"IA","19","109",15104,0.976694915254237,864,0.160884533898305,6.76157276880406,7.26542972325395,8.27103686579295,2.59230769230769,248.292985723153,20,8055,1,1,1,0,9 +"17655",2016,19111,"IA","19","111",34441,0.951249963706048,2003,0.152783020237508,7.60240133566582,8.2602342916073,9.15482766204592,5.96923076923077,612.565179972662,121,19753,1,1,1,0,9 +"17656",2016,19113,"IA","19","113",222299,0.905019815653692,14939,0.12586201467393,9.61173052204232,10.2460838558653,11.085414114543,3.64615384615385,316.103639028058,412,130337,1,1,1,0,9 +"17657",2016,19115,"IA","19","115",11219,0.937160174703628,654,0.143684820393975,6.4831073514572,7.22329567956231,8.03786623470962,3.87692307692308,468.01872074883,30,6410,1,1,1,0,9 +"17658",2016,19117,"IA","19","117",8565,0.987157034442499,482,0.156684179801518,6.1779441140506,6.80239476332431,7.72312009226633,3.13846153846154,237.068965517241,11,4640,1,1,1,0,9 +"17659",2016,19119,"IA","19","119",11800,0.985338983050847,602,0.128728813559322,6.40025744530882,7.27031288607902,7.99631723179675,2.03076923076923,244.937949052907,15,6124,1,1,1,0,9 +"17660",2016,19121,"IA","19","121",15800,0.979556962025317,734,0.138544303797468,6.59850902861452,7.60787807327851,8.39298958795693,3.52307692307692,386.715195632393,34,8792,1,1,1,0,9 +"17661",2016,19123,"IA","19","123",22325,0.957849944008959,1502,0.139216125419933,7.31455283232408,7.86748856869913,8.70996000607173,3.66153846153846,339.723368114535,42,12363,1,1,1,0,9 +"17662",2016,19125,"IA","19","125",33157,0.970745242331936,2446,0.134390928009168,7.80220931624712,8.2398574110186,9.11272754310918,3,315.457413249211,58,18386,1,1,1,0,9 +"17663",2016,19127,"IA","19","127",40122,0.928243856238473,2554,0.136807736403968,7.84541603659248,8.3654396361887,9.27706400401909,4.85384615384615,364.713927513107,80,21935,1,1,1,0,9 +"17664",2016,19129,"IA","19","129",15041,0.978791303769696,757,0.158234159962768,6.62936325343745,7.50933526601659,8.34521792667643,3.60769230769231,398.359695371998,34,8535,1,1,1,0,9 +"17665",2016,19133,"IA","19","133",8779,0.972889850780271,489,0.154801230208452,6.19236248947487,6.76388490856244,7.72753511047545,4.04615384615385,609.357997823721,28,4595,1,1,1,0,9 +"17666",2016,19135,"IA","19","135",7835,0.976643267389917,428,0.144990427568602,6.0591231955818,6.77078942390898,7.64730883235624,4.57692307692308,741.942963134709,32,4313,1,1,1,0,9 +"17667",2016,19137,"IA","19","137",10135,0.981647755303404,542,0.158066107548101,6.29526600143965,6.99576615630485,7.91790058632792,3.50769230769231,398.478536497011,22,5521,1,1,1,0,9 +"17668",2016,19139,"IA","19","139",42942,0.94874481859252,2625,0.133226212100042,7.87283617502572,8.52674740422105,9.3915780082071,3.77692307692308,392.610654213332,95,24197,1,1,1,0,9 +"17669",2016,19141,"IA","19","141",13921,0.975001795847999,762,0.151354069391567,6.63594655568665,7.30720231476474,8.1934002319521,2.75384615384615,291.545189504373,22,7546,1,1,1,0,9 +"17670",2016,19145,"IA","19","145",15343,0.950987420973734,887,0.153816072476048,6.78784498230958,7.54486106865846,8.27205962221041,4.97692307692308,377.487989018531,33,8742,1,1,1,0,9 +"17671",2016,19147,"IA","19","147",9032,0.967670504871568,527,0.145593445527015,6.26720054854136,6.82546003625531,7.7596141506969,3.07692307692308,375.469336670839,18,4794,1,1,1,0,9 +"17672",2016,19149,"IA","19","149",25207,0.970563732296584,1433,0.143095171976038,7.26752542782817,7.98139158158007,8.82702806850915,2.53846153846154,261.5518744551,36,13764,1,1,1,0,9 +"17673",2016,19151,"IA","19","151",6845,0.971950328707085,337,0.16654492330168,5.82008293035236,6.45047042214418,7.47250074473756,2.81538461538462,500.695410292072,18,3595,1,1,1,0,9 +"17674",2016,19153,"IA","19","153",474593,0.867743519183806,30390,0.117637638987511,10.3218688859108,11.0594563835636,11.8735047769347,3.43076923076923,312.646937042521,891,284986,1,1,1,0,9 +"17675",2016,19155,"IA","19","155",93649,0.958472594475115,5651,0.141122702858546,8.63958779962984,9.32018083765571,10.2018869883291,3.36153846153846,438.850398700256,235,53549,1,1,1,0,9 +"17676",2016,19157,"IA","19","157",18297,0.955238563698967,1776,0.142919604306717,7.48211892355212,7.48549160803075,8.53522955390234,3.40769230769231,412.735849056604,42,10176,1,1,1,0,9 +"17677",2016,19161,"IA","19","161",9804,0.985924112607099,476,0.164830681354549,6.16541785423142,6.85856503479136,7.85438121065236,2.96923076923077,478.835472131776,25,5221,1,1,1,0,9 +"17678",2016,19163,"IA","19","163",172361,0.87451337599573,10375,0.133406048932183,9.2471543450989,9.98446828166841,10.8347654142185,4.46923076923077,337.375220782314,340,100778,1,1,1,0,9 +"17679",2016,19165,"IA","19","165",11662,0.978048362202024,630,0.154090207511576,6.44571981938558,7.06731984865348,8.04366335239394,2.89230769230769,351.045157172491,22,6267,1,1,1,0,9 +"17680",2016,19167,"IA","19","167",34955,0.973709054498641,3215,0.117636961808039,8.07558263667172,8.23536064375335,9.11007795003779,2.27692307692308,230.711449726366,43,18638,1,1,1,0,9 +"17681",2016,19169,"IA","19","169",97012,0.879489135364697,21597,0.0943697686884097,9.98030969513741,9.11624944857659,10.2467580570512,2.33076923076923,189.437617368959,115,60706,1,1,1,0,9 +"17682",2016,19171,"IA","19","171",17212,0.889030908668371,953,0.146641877759703,6.8596149036542,7.49220304261874,8.43533216493592,4.15384615384615,406.243318366474,38,9354,1,1,1,0,9 +"17683",2016,19175,"IA","19","175",12366,0.972343522561863,751,0.139657124373282,6.62140565176413,7.23128700432762,8.1376881849776,3.76923076923077,489.614243323442,33,6740,1,1,1,0,9 +"17684",2016,19179,"IA","19","179",35270,0.931868443436348,2328,0.140714488233626,7.75276480885133,8.31898612539206,9.21253795551967,5.73846153846154,504.525894049562,102,20217,1,1,1,0,9 +"17685",2016,19181,"IA","19","181",49383,0.976307636231092,3183,0.128728509811069,8.06557942728209,8.73632872133291,9.56106766364501,3.16923076923077,321.267937459842,90,28014,1,1,1,0,9 +"17686",2016,19183,"IA","19","183",22147,0.976204452070258,1195,0.13762586354811,7.08590146436561,7.79893331004122,8.69450220638665,2.90769230769231,333.527891269907,40,11993,1,1,1,0,9 +"17687",2016,19187,"IA","19","187",36813,0.925515442914188,2923,0.143590579414881,7.98036576511125,8.26075135470051,9.19227822915777,3.94615384615385,409.504309318604,86,21001,1,1,1,0,9 +"17688",2016,19189,"IA","19","189",10599,0.965091046325125,736,0.155769412208699,6.60123011872888,6.99025650049388,7.93343838762749,3.44615384615385,485.184543406689,28,5771,1,1,1,0,9 +"17689",2016,19191,"IA","19","191",20432,0.975675411119812,2124,0.150156617071261,7.66105638236183,7.58933582317062,8.64029538855022,3.5,231.699991418519,27,11653,1,1,1,0,9 +"17690",2016,19193,"IA","19","193",102654,0.893194614920023,7249,0.123054143043622,8.88861880730088,9.41319957998769,10.2677139126277,3.52307692307692,361.333838053615,210,58118,1,1,1,0,9 +"17691",2016,19197,"IA","19","197",12825,0.974269005847953,634,0.15625730994152,6.45204895443723,7.20042489294496,8.08147504013705,4.09230769230769,390.03900390039,26,6666,1,1,1,0,9 +"17692",2016,16001,"ID","16","001",444929,0.93845984415491,27127,0.120520352685485,10.2082848208435,11.0313997102491,11.7832655303154,3.20769230769231,268.16546830617,709,264389,0,1,0,0,9 +"17693",2016,16005,"ID","16","005",84762,0.924742219390765,5949,0.117906609093698,8.6909784171879,9.24744345992769,10.0932811241688,3.45384615384615,391.77277179236,188,47987,0,1,0,0,9 +"17694",2016,16009,"ID","16","009",9033,0.886195062548433,391,0.169378943872468,5.96870755998537,6.84374994900622,7.78364059622125,5.70769230769231,576.725025746653,28,4855,0,1,0,0,9 +"17695",2016,16011,"ID","16","011",45313,0.89855008496458,2740,0.118840067971664,7.91571319938212,8.58876938990546,9.38773313553338,3.4,375.036871602545,89,23731,0,1,0,0,9 +"17696",2016,16013,"ID","16","013",22069,0.959762562870995,1091,0.15474194571571,6.99484998583307,7.93379687481541,8.74687531957003,3.06153846153846,216.676029211139,27,12461,0,1,0,0,9 +"17697",2016,16015,"ID","16","015",7099,0.966333286378363,245,0.221157909564727,5.50125821054473,6.53813982376767,7.62021477057445,5.1,394.769306686405,16,4053,0,1,0,0,9 +"17698",2016,16017,"ID","16","017",42423,0.974966409730571,1821,0.18004384414115,7.50714107972761,8.42704964156327,9.37982994995476,5.25384615384615,375.57082497546,88,23431,0,1,0,0,9 +"17699",2016,16019,"ID","16","019",112162,0.961350546530911,6751,0.108227385388991,8.81744592104187,9.54574060563606,10.3151335197194,3.09230769230769,329.852478037461,199,60330,0,1,0,0,9 +"17700",2016,16021,"ID","16","021",11714,0.958767287007,590,0.163052757384326,6.38012253689976,7.16703787691222,8.05959232888755,5.06923076923077,336.376741950985,21,6243,0,1,0,0,9 +"17701",2016,16027,"ID","16","027",211573,0.95211109167994,13983,0.105164647662982,9.54559758504085,10.2013303297505,10.9758414200419,4.2,319.881038835287,370,115668,0,1,0,0,9 +"17702",2016,16031,"ID","16","031",23477,0.961664607914129,1487,0.112024534650935,7.30451594646016,7.9229859587112,8.66198593631778,2.89230769230769,407.857499583819,49,12014,0,1,0,0,9 +"17703",2016,16035,"ID","16","035",8660,0.952886836027714,409,0.167782909930716,6.0137151560428,6.77878489768518,7.63723438878947,7.06923076923077,486.052409129332,23,4732,0,1,0,0,9 +"17704",2016,16039,"ID","16","039",26178,0.897050958820384,2649,0.109748643899458,7.88193748927207,7.98139158158007,8.88253050843362,4,388.424936880948,60,15447,0,1,0,0,9 +"17705",2016,16043,"ID","16","043",12932,0.97077018249304,796,0.131534178781318,6.67959918584438,7.33693691370762,8.10046489102936,3.27692307692308,273.617511520737,19,6944,0,1,0,0,9 +"17706",2016,16045,"ID","16","045",17005,0.969655983534255,844,0.150955601293737,6.73815249459596,7.48099216286952,8.43272403478979,4.53846153846154,363.796714805424,33,9071,0,1,0,0,9 +"17707",2016,16047,"ID","16","047",15150,0.959207920792079,921,0.121386138613861,6.82546003625531,7.5005294853953,8.2534880283459,2.98461538461538,458.545048952782,37,8069,0,1,0,0,9 +"17708",2016,16049,"ID","16","049",16247,0.950206191912353,786,0.177140395149874,6.66695679242921,7.32712329225929,8.3059782109673,5.5,483.947119924457,41,8472,0,1,0,0,9 +"17709",2016,16051,"ID","16","051",27827,0.970963452761706,1482,0.10827613468933,7.30114780585603,8.20521842639541,8.85708813531495,3.00769230769231,306.214767903125,44,14369,0,1,0,0,9 +"17710",2016,16053,"ID","16","053",23438,0.961216827374349,1532,0.112424268282277,7.33432935030054,7.92044650514261,8.71259548774872,3.06153846153846,354.324367853116,44,12418,0,1,0,0,9 +"17711",2016,16055,"ID","16","055",153221,0.963386219904582,8728,0.137970643710719,9.07429152751291,9.80339093599784,10.6925583610662,4.49230769230769,307.91148693674,268,87038,0,1,0,0,9 +"17712",2016,16057,"ID","16","057",39157,0.946216513011722,6891,0.10565160763082,8.83797149135721,8.26616443661249,9.36228862824824,3.09230769230769,243.369219981025,59,24243,0,1,0,0,9 +"17713",2016,16059,"ID","16","059",7715,0.974076474400518,280,0.179779650032404,5.63478960316925,6.52941883826223,7.59337419312129,5.98461538461538,537.084398976982,21,3910,0,1,0,0,9 +"17714",2016,16065,"ID","16","065",39111,0.967374907315078,8945,0.0614149472015545,9.09884999594282,8.01466637046494,9.27528506061656,2.33846153846154,109.094082736952,25,22916,0,1,0,0,9 +"17715",2016,16067,"ID","16","067",20609,0.958125090979669,1418,0.12339269251298,7.25700270709207,7.74500280351584,8.58932778917544,3.1,293.604917882375,32,10899,0,1,0,0,9 +"17716",2016,16069,"ID","16","069",40200,0.9118407960199,2601,0.138930348258706,7.86365126544865,8.41094339157353,9.3425083355536,3.16923076923077,415.028396679773,95,22890,0,1,0,0,9 +"17717",2016,16073,"ID","16","073",11368,0.926988036593948,706,0.133972554539057,6.55961523749324,7.1770187659099,8.00503334463711,4.46153846153846,551.053484602917,34,6170,0,1,0,0,9 +"17718",2016,16075,"ID","16","075",22927,0.958956688620404,1292,0.125179918872945,7.16394668434255,7.87663846097546,8.72939712269206,4.48461538461538,367.647058823529,45,12240,0,1,0,0,9 +"17719",2016,16079,"ID","16","079",12428,0.960733826842613,622,0.169938847763116,6.43294009273918,7.13489085156588,8.1376881849776,6.86153846153846,682.346109175377,47,6888,0,1,0,0,9 +"17720",2016,16083,"ID","16","083",83847,0.952305985902895,5223,0.114506183882548,8.5608272284363,9.22916212621677,10.055092136668,3.29230769230769,380.64403220161,174,45712,0,1,0,0,9 +"17721",2016,16085,"ID","16","085",10438,0.976336462923932,387,0.19093696110366,5.95842469302978,7.11476944836646,7.97796809312855,5.25384615384615,333.9455668726,20,5989,0,1,0,0,9 +"17722",2016,16087,"ID","16","087",10030,0.963310069790628,484,0.14715852442672,6.18208490671663,6.93925394604151,7.83834331555712,5.34615384615385,314.218381775334,16,5092,0,1,0,0,9 +"17723",2016,17001,"IL","17","001",66490,0.939524740562491,3855,0.138156113701308,8.25712628599743,8.91045075641666,9.83563688562795,4.77692307692308,358.114111850077,133,37139,1,1,1,0,9 +"17724",2016,17003,"IL","17","003",6448,0.646401985111663,332,0.160669975186104,5.80513496891649,6.50727771238501,7.49942329059223,9.33846153846154,791.631325982471,28,3537,1,1,1,0,9 +"17725",2016,17005,"IL","17","005",16553,0.918081314565336,971,0.144807587748444,6.87832646829133,7.68156036255954,8.41781474743596,5.13076923076923,456.976178901313,47,10285,1,1,1,0,9 +"17726",2016,17007,"IL","17","007",53559,0.94329617804664,3382,0.123956757967849,8.12622252945853,8.81936971001847,9.62463306868703,6.38461538461538,312.171398527865,95,30432,1,1,1,0,9 +"17727",2016,17011,"IL","17","011",33393,0.970203336028509,1849,0.146407929805648,7.52240023138712,8.21689858091361,9.12815370098824,6.06923076923077,497.646995185806,92,18487,1,1,1,0,9 +"17728",2016,17015,"IL","17","015",14601,0.973221012259434,744,0.159304157249503,6.61204103483309,7.32052696227274,8.26462082941122,5.65384615384615,518.724696356275,41,7904,1,1,1,0,9 +"17729",2016,17017,"IL","17","017",12677,0.933107202019405,759,0.134495543109569,6.63200177739563,7.3375877435386,8.1763915966338,5.59230769230769,541.666666666667,39,7200,1,1,1,0,9 +"17730",2016,17019,"IL","17","019",210388,0.738996520714109,34542,0.106650569424112,10.4499312539039,10.0322325084267,11.0804642181915,5,239.7053079792,313,130577,1,1,1,0,9 +"17731",2016,17021,"IL","17","021",33268,0.970722616328003,1930,0.145244679571961,7.56527528189893,8.27792025817214,9.11537013438496,6.38461538461539,428.829759752002,83,19355,1,1,1,0,9 +"17732",2016,17023,"IL","17","023",15860,0.985245901639344,848,0.14249684741488,6.7428806357919,7.50549227473742,8.3850322878139,5.83846153846154,470.324748040314,42,8930,1,1,1,0,9 +"17733",2016,17025,"IL","17","025",13309,0.980464347434067,713,0.147419039747539,6.5694814204143,7.29844510150815,8.20930841164694,6.83846153846154,630.364806866953,47,7456,1,1,1,0,9 +"17734",2016,17027,"IL","17","027",37594,0.949140820343672,2314,0.141511943395223,7.74673290775362,8.45062594714412,9.25941620962278,4.46923076923077,294.97226380206,67,22714,1,1,1,0,9 +"17735",2016,17029,"IL","17","029",51820,0.937977614820533,6553,0.129834040910845,8.7876782390395,8.60813018640834,9.68930374259339,5.91538461538462,322.944754499279,103,31894,1,1,1,0,9 +"17736",2016,17031,"IL","17","031",5223386,0.663829362792641,351265,0.122052247335349,12.7692962033446,13.4606097535945,14.3074982569589,6.19230769230769,347.37439738635,11160,3212672,1,1,1,0,9 +"17737",2016,17033,"IL","17","033",19139,0.935890067401641,1088,0.141491195987251,6.99209642741589,7.77779262633883,8.52971447196991,6.26153846153846,410.086379897042,47,11461,1,1,1,0,9 +"17738",2016,17035,"IL","17","035",10884,0.983278206541713,544,0.149393605292172,6.29894924685594,7.17242457712485,8.00736706798333,5.24615384615385,372.28876659113,23,6178,1,1,1,0,9 +"17739",2016,17037,"IL","17","037",104219,0.882132816473004,15407,0.108818929369885,9.64257723058178,9.35166630806662,10.3710193793938,5.36153846153846,235.506963831745,151,64117,1,1,1,0,9 +"17740",2016,17039,"IL","17","039",16152,0.978207033184745,843,0.148897969291729,6.73696695800186,7.59387784460512,8.42879904065364,5.7,332.190312901843,31,9332,1,1,1,0,9 +"17741",2016,17041,"IL","17","041",19732,0.977954591526454,1078,0.134603689438476,6.98286275146894,7.7397944584087,8.59526472683639,4.71538461538462,337.191287706188,37,10973,1,1,1,0,9 +"17742",2016,17043,"IL","17","043",931408,0.814621519248278,59192,0.139073316956694,10.9885416766054,11.6840765301509,12.5510408320012,4.82307692307692,224.862613772969,1257,559008,1,1,1,0,9 +"17743",2016,17045,"IL","17","045",17538,0.985289086554909,955,0.157600638613297,6.86171134048073,7.62119516280984,8.50633444808136,5.99230769230769,433.38036686152,43,9922,1,1,1,0,9 +"17744",2016,17047,"IL","17","047",6546,0.983348609838069,339,0.147876565841735,5.82600010738045,6.62936325343745,7.48268182815465,5.79230769230769,331.858407079646,12,3616,1,1,1,0,9 +"17745",2016,17049,"IL","17","049",34184,0.981043763164053,2077,0.142201029721507,7.63867982387611,8.24722005274523,9.17294998275762,4.77692307692308,280.870186906343,55,19582,1,1,1,0,9 +"17746",2016,17051,"IL","17","051",21579,0.945641595996107,1338,0.136846007692664,7.19893124068817,7.90728360942635,8.63958779962984,6.52307692307692,473.78640776699,61,12875,1,1,1,0,9 +"17747",2016,17053,"IL","17","053",13346,0.975797991907688,717,0.153978720215795,6.57507584059962,7.350516171834,8.2190566610606,5.43846153846154,441.353484017654,33,7477,1,1,1,0,9 +"17748",2016,17055,"IL","17","055",39090,0.981325147096444,2089,0.139959068815554,7.64444076155657,8.45786772533142,9.30118605527576,8.09230769230769,581.368734264134,127,21845,1,1,1,0,9 +"17749",2016,17057,"IL","17","057",35498,0.946813905008733,2078,0.141247394219393,7.63916117165917,8.41803561988302,9.14366623870819,7.4,410.727228799227,85,20695,1,1,1,0,9 +"17750",2016,17059,"IL","17","059",5165,0.983736689254598,261,0.139787028073572,5.56452040732269,6.44094654063292,7.26752542782817,7.63076923076923,635.593220338983,18,2832,1,1,1,0,9 +"17751",2016,17061,"IL","17","061",13111,0.980245595301655,748,0.148043627488369,6.61740297797448,7.35819375273303,8.1958853913148,5.84615384615385,517.104216388226,39,7542,1,1,1,0,9 +"17752",2016,17063,"IL","17","063",50325,0.966398410332837,2889,0.124848484848485,7.96866570046623,8.84217104861172,9.59967609815446,6.85384615384615,327.569904092935,97,29612,1,1,1,0,9 +"17753",2016,17065,"IL","17","065",8197,0.980846651213859,423,0.146761010125656,6.04737217904628,6.85646198459459,7.71556953452021,6.23846153846154,510.54384017758,23,4505,1,1,1,0,9 +"17754",2016,17067,"IL","17","067",18206,0.982643084697353,919,0.155003844886301,6.82328612235569,7.58273848891441,8.49331025095291,6.51538461538462,444.444444444444,44,9900,1,1,1,0,9 +"17755",2016,17069,"IL","17","069",3997,0.974230673004754,175,0.161371028271203,5.16478597392351,6.07073772800249,6.98564181763921,9.39230769230769,486.080424215643,11,2263,1,1,1,0,9 +"17756",2016,17071,"IL","17","071",6889,0.984322833502685,334,0.172739149368559,5.8111409929767,6.48920493132532,7.54274354536855,6.09230769230769,527.148128624143,20,3794,1,1,1,0,9 +"17757",2016,17073,"IL","17","073",49511,0.966977035406273,2736,0.146735068974571,7.91425227874244,8.68067166040871,9.52544304000396,6.05384615384615,393.544427194281,109,27697,1,1,1,0,9 +"17758",2016,17075,"IL","17","075",28150,0.973641207815275,1536,0.150976909413854,7.33693691370762,8.05547514175727,8.96533457380484,5.53846153846154,564.428195753961,88,15591,1,1,1,0,9 +"17759",2016,17077,"IL","17","077",58768,0.792455077593248,9777,0.113003675469643,9.18778796750567,8.68135077758252,9.79779364797706,5.37692307692308,366.817922451974,135,36803,1,1,1,0,9 +"17760",2016,17079,"IL","17","079",9557,0.989013288688919,480,0.14962854452234,6.17378610390194,6.98193467715639,7.88231491898027,6.26153846153846,444.77390659748,24,5396,1,1,1,0,9 +"17761",2016,17081,"IL","17","081",38236,0.884506747567737,2297,0.135239041740768,7.7393592026891,8.45190772471761,9.23639790629547,6.4,428.758405921379,95,22157,1,1,1,0,9 +"17762",2016,17083,"IL","17","083",21965,0.976735715911678,1405,0.152378784429775,7.24779258176785,7.78696700261487,8.77168035901038,5.82307692307692,462.81769689363,59,12748,1,1,1,0,9 +"17763",2016,17085,"IL","17","085",21826,0.981444149179877,990,0.161687895170897,6.89770494312864,7.67693714581808,8.64997430265006,5.4,375.021803593232,43,11466,1,1,1,0,9 +"17764",2016,17087,"IL","17","087",12445,0.91876255524307,758,0.141261550823624,6.63068338564237,7.29165620917446,8.03138533062553,8.72307692307692,322.58064516129,25,7750,1,1,1,0,9 +"17765",2016,17089,"IL","17","089",530540,0.877507822218871,33833,0.121449843555623,10.4291919365306,11.180957070807,11.9468743640454,5.53076923076923,223.081355484808,693,310649,1,1,1,0,9 +"17766",2016,17091,"IL","17","091",111066,0.821898690868493,8527,0.130949165361137,9.05099287874205,9.4885022710438,10.3811802946412,6.47692307692308,452.917133523758,287,63367,1,1,1,0,9 +"17767",2016,17093,"IL","17","093",124549,0.882817204473741,6913,0.0970622004191122,8.84115897594526,9.92275081871697,10.5174021138789,5.22307692307692,217.210147402358,159,73201,1,1,1,0,9 +"17768",2016,17095,"IL","17","095",50931,0.889104867369578,3569,0.143566786436551,8.18004072349016,8.66716371799253,9.53748351330888,6.13846153846154,430.292598967298,125,29050,1,1,1,0,9 +"17769",2016,17097,"IL","17","097",704401,0.827204958539241,51845,0.133321786879916,10.8560137769924,11.3882575327125,12.2377166508646,5.23076923076923,250.58976457561,1041,415420,1,1,1,0,9 +"17770",2016,17099,"IL","17","099",110176,0.954019024106884,6524,0.148889050246878,8.7832429637409,9.45085221745148,10.3336777930311,6.74615384615385,420.796708434636,270,64164,1,1,1,0,9 +"17771",2016,17101,"IL","17","101",16176,0.887487636003957,1149,0.13223293768546,7.04664727784876,7.71912984090673,8.28878581042693,7.38461538461539,462.143559488692,47,10170,1,1,1,0,9 +"17772",2016,17103,"IL","17","103",34499,0.92762109046639,2050,0.150729006637874,7.62559507213245,8.31996102188653,9.11548009095222,5.13846153846154,362.247895046015,74,20428,1,1,1,0,9 +"17773",2016,17105,"IL","17","105",36104,0.94249944604476,2230,0.14505317970308,7.70975686445416,8.3250636936312,9.22581994282457,5.40769230769231,423.429781227946,90,21255,1,1,1,0,9 +"17774",2016,17107,"IL","17","107",29167,0.900572564884973,2131,0.133815613535845,7.66434663209862,8.21311069759668,9.01748351326684,5.33076923076923,508.877077914735,90,17686,1,1,1,0,9 +"17775",2016,17109,"IL","17","109",30938,0.912017583554205,4944,0.119076863404228,8.50592999913753,7.96866570046623,9.12227389310773,6.3,286.883068586304,54,18823,1,1,1,0,9 +"17776",2016,17111,"IL","17","111",307142,0.94441984489259,18754,0.140638532014508,9.83916234197957,10.5681580951035,11.4280100716895,5.34615384615385,294.245150102959,543,184540,1,1,1,0,9 +"17777",2016,17113,"IL","17","113",173157,0.849113810010568,22288,0.113538580594489,10.0118036960196,9.93822708634002,10.8918942738832,5.05384615384615,238.208218658062,251,105370,1,1,1,0,9 +"17778",2016,17115,"IL","17","115",106411,0.793433009745233,6726,0.143998270855457,8.81373589230022,9.40186940952105,10.3390614734146,6.60769230769231,460.32222555789,276,59958,1,1,1,0,9 +"17779",2016,17117,"IL","17","117",45708,0.979390916250985,2523,0.152533473352586,7.83320394864106,8.59100111856096,9.48242645680341,5.97692307692308,498.160637645616,130,26096,1,1,1,0,9 +"17780",2016,17119,"IL","17","119",265773,0.891196622681762,15858,0.142249212673974,9.67142938383234,10.3697968661936,11.2900693723358,5.9,431.38124346752,681,157865,1,1,1,0,9 +"17781",2016,17121,"IL","17","121",38057,0.938802322831542,2206,0.143863152639462,7.69893619981345,8.34972083747249,9.28070563463675,6.39230769230769,644.739301065221,138,21404,1,1,1,0,9 +"17782",2016,17123,"IL","17","123",11887,0.981492386640868,688,0.155043324640363,6.53378883793334,7.16239749735572,8.08425410630732,6.63076923076923,468.702751738736,31,6614,1,1,1,0,9 +"17783",2016,17125,"IL","17","125",13677,0.982744753966513,705,0.14835124661841,6.55819780281227,7.37588214821501,8.23536064375335,7.12307692307692,447.074293228139,34,7605,1,1,1,0,9 +"17784",2016,17127,"IL","17","127",14461,0.918539520088514,742,0.143420233732107,6.60934924316738,7.44658509915773,8.31947369244219,7.14615384615385,724.275724275724,58,8008,1,1,1,0,9 +"17785",2016,17129,"IL","17","129",12431,0.979004102646609,643,0.151395704287668,6.46614472423762,7.31055015853442,8.19174002127746,4.71538461538462,323.12447316662,23,7118,1,1,1,0,9 +"17786",2016,17131,"IL","17","131",15611,0.98353724937544,770,0.150919223624367,6.64639051484773,7.47873482556787,8.35913488675796,6.20769230769231,461.095100864553,40,8675,1,1,1,0,9 +"17787",2016,17133,"IL","17","133",34037,0.984311190762993,1744,0.155360343155977,7.46393660446893,8.34164861890131,9.20833836930551,4.05384615384615,261.437908496732,52,19890,1,1,1,0,9 +"17788",2016,17135,"IL","17","135",29057,0.954640878273738,1777,0.14413050211653,7.48268182815465,8.14786712992395,8.9343233310549,7.1,435.166127609527,74,17005,1,1,1,0,9 +"17789",2016,17137,"IL","17","137",34654,0.909303399318982,2483,0.140560974202112,7.81722278550817,8.30449489796357,9.17512761622044,4.93846153846154,379.867046533713,76,20007,1,1,1,0,9 +"17790",2016,17139,"IL","17","139",14610,0.985968514715948,761,0.135592060232717,6.63463335786169,7.43425738213314,8.30127348519135,4.58461538461538,414.833438089252,33,7955,1,1,1,0,9 +"17791",2016,17141,"IL","17","141",51174,0.97215382811584,2881,0.145151834916168,7.96589273508453,8.68185981297147,9.57997102707513,5.91538461538462,358.508604206501,105,29288,1,1,1,0,9 +"17792",2016,17143,"IL","17","143",185116,0.751242464184619,11923,0.128967782363491,9.38622458680613,10.0148052886681,10.9075876762347,6.87692307692308,421.723443137622,450,106705,1,1,1,0,9 +"17793",2016,17145,"IL","17","145",21407,0.894006633344233,1537,0.133974868033821,7.3375877435386,7.92334821193015,8.58653266949485,7.11538461538461,387.807337314822,50,12893,1,1,1,0,9 +"17794",2016,17147,"IL","17","147",16511,0.983344437041972,837,0.153412876264309,6.72982407048948,7.57814547241947,8.44955654270043,4.86923076923077,417.558886509636,39,9340,1,1,1,0,9 +"17795",2016,17149,"IL","17","149",15757,0.976962619788031,860,0.144443739290474,6.75693238924755,7.46851327149634,8.35042997353814,5.13076923076923,417.136414881623,37,8870,1,1,1,0,9 +"17796",2016,17153,"IL","17","153",5604,0.662919343326196,290,0.163454675231977,5.66988092298052,6.4377516497364,7.35564110297425,8.47692307692308,550.696469063816,17,3087,1,1,1,0,9 +"17797",2016,17157,"IL","17","157",32368,0.882661888284726,1895,0.142795353435492,7.54697411751653,8.34640487043596,8.97563018429051,5,371.262291792093,74,19932,1,1,1,0,9 +"17798",2016,17159,"IL","17","159",15819,0.975598963272015,838,0.143687970162463,6.73101810048208,7.49052940206071,8.38366179879172,5.93846153846154,454.287336740488,40,8805,1,1,1,0,9 +"17799",2016,17161,"IL","17","161",144977,0.846327348475965,9047,0.140098084523752,9.11018849002574,9.74490205341876,10.6193986576946,6.27692307692308,405.896435645971,334,82287,1,1,1,0,9 +"17800",2016,17163,"IL","17","163",263482,0.663335635830911,16689,0.137284520384694,9.7225050987434,10.4121408184405,11.2972663353656,6.06923076923077,440.036947708729,686,155896,1,1,1,0,9 +"17801",2016,17165,"IL","17","165",24217,0.939257546351736,1337,0.14002560184994,7.19818357710194,7.91022370709734,8.8446246833853,8.55384615384615,664.233576642336,91,13700,1,1,1,0,9 +"17802",2016,17167,"IL","17","167",198085,0.834540727465482,11960,0.140485145265921,9.38932302750462,10.0823447821389,10.9994129012788,4.99230769230769,390.34100744331,451,115540,1,1,1,0,9 +"17803",2016,17173,"IL","17","173",21734,0.987393024753842,1138,0.149213214318579,7.03702761468628,7.77191025643576,8.69047400355804,5.72307692307692,374.96875260395,45,12001,1,1,1,0,9 +"17804",2016,17177,"IL","17","177",45512,0.870803304622957,2499,0.153080506240112,7.82364593083495,8.43879912398823,9.44754460693873,5.86923076923077,461.01423130888,115,24945,1,1,1,0,9 +"17805",2016,17179,"IL","17","179",134004,0.969545685203427,7112,0.137361571296379,8.86953877719374,9.75411709588186,10.5513496688804,6.42307692307692,396.268579149777,305,76968,1,1,1,0,9 +"17806",2016,17181,"IL","17","181",17120,0.970502336448598,888,0.149123831775701,6.78897174299217,7.58933582317062,8.47365918939251,7.42307692307692,533.661740558292,52,9744,1,1,1,0,9 +"17807",2016,17183,"IL","17","183",78503,0.834681477141001,4608,0.138708074850643,8.43554920237573,9.10509096125709,9.98109653186311,7.26153846153846,552.852214835629,242,43773,1,1,1,0,9 +"17808",2016,17185,"IL","17","185",11518,0.971956936968224,631,0.152022920645945,6.44730586254121,7.1785454837637,8.0727793331695,6.29230769230769,462.60601387818,30,6485,1,1,1,0,9 +"17809",2016,17187,"IL","17","187",17283,0.932997743447318,1333,0.140079847248742,7.19518732017871,7.56734567601324,8.46463594067756,5.3,348.726619465286,33,9463,1,1,1,0,9 +"17810",2016,17189,"IL","17","189",14176,0.97926072234763,736,0.155474040632054,6.60123011872888,7.41938058291869,8.29354951506035,3.76923076923077,535.997076379583,44,8209,1,1,1,0,9 +"17811",2016,17191,"IL","17","191",16573,0.981898268267664,863,0.141374524829542,6.76041469108343,7.53743003658651,8.40559101483493,8.52307692307692,332.15234720992,30,9032,1,1,1,0,9 +"17812",2016,17193,"IL","17","193",14081,0.981038278531354,698,0.149421205880264,6.54821910276237,7.3356339819272,8.26255897301066,6.57692307692308,604.65714653287,47,7773,1,1,1,0,9 +"17813",2016,17195,"IL","17","195",56505,0.963224493407663,3140,0.147827625873816,8.0519780789023,8.74241458252541,9.65975856761281,5.80769230769231,412.868802998063,130,31487,1,1,1,0,9 +"17814",2016,17197,"IL","17","197",688330,0.810686734560458,44871,0.121387997036305,10.7115469853274,11.4635356210288,12.2301455539485,6.08461538461538,276.12325869313,1133,410324,1,1,1,0,9 +"17815",2016,17199,"IL","17","199",67504,0.930493007821759,3597,0.135088291064233,8.18785544369562,9.0663545214478,9.86516243821446,6.13846153846154,419.751202014806,165,39309,1,1,1,0,9 +"17816",2016,17201,"IL","17","201",286171,0.81875521978118,17681,0.13685174248963,9.78024589567809,10.4311702933685,11.3362837473074,6.66923076923077,457.008473446232,754,164986,1,1,1,0,9 +"17817",2016,17203,"IL","17","203",38934,0.97845071146042,2298,0.142317768531361,7.7397944584087,8.44333134281778,9.29523283899415,5.48461538461538,269.887013402864,59,21861,1,1,1,0,9 +"17818",2016,20001,"KS","20","001",12667,0.947738217415331,776,0.142812031262335,6.65415252018322,7.25770767716004,8.15017926968233,5.55384615384615,423.419477295956,29,6849,0,1,0,0,9 +"17819",2016,20003,"KS","20","003",7828,0.976877874297394,375,0.139115993868166,5.92692602597041,6.6945620585211,7.60290046220476,4.26153846153846,370.553359683794,15,4048,0,1,0,0,9 +"17820",2016,20005,"KS","20","005",16376,0.923485588666341,1469,0.129579872984856,7.29233717617388,7.41697962138115,8.43315919580623,6.21538461538462,495.97707483743,45,9073,0,1,0,0,9 +"17821",2016,20009,"KS","20","009",26904,0.961232530478739,1659,0.147784716027357,7.41397029019044,7.9287663216267,8.9099107267019,4.45384615384615,454.237288135593,67,14750,0,1,0,0,9 +"17822",2016,20011,"KS","20","011",14619,0.937205007182434,910,0.135919009508174,6.8134445995109,7.37274636640433,8.25478892614873,4.83846153846154,412.637008381689,32,7755,0,1,0,0,9 +"17823",2016,20013,"KS","20","013",9639,0.868139848532005,505,0.150326797385621,6.22455842927536,6.89162589705225,7.85748078694253,3.59230769230769,485.436893203883,25,5150,0,1,0,0,9 +"17824",2016,20015,"KS","20","015",66723,0.94657014822475,3899,0.135575438754253,8.2684753889826,9.03431892773071,9.82806332988929,4.16153846153846,441.23440577807,168,38075,0,1,0,0,9 +"17825",2016,20021,"KS","20","021",20280,0.924950690335306,1038,0.143540433925049,6.94505106372583,7.7397944584087,8.63533171943328,4.41538461538462,541.452156932363,61,11266,0,1,0,0,9 +"17826",2016,20027,"KS","20","027",8106,0.974586725882063,369,0.141376757957069,5.91079664404053,6.8351845861473,7.64156444126097,4.05384615384615,472.47814788566,20,4233,0,1,0,0,9 +"17827",2016,20029,"KS","20","029",9088,0.967099471830986,581,0.134022887323944,6.36475075685191,6.82219739062049,7.74673290775362,4.10769230769231,352.916753165871,17,4817,0,1,0,0,9 +"17828",2016,20031,"KS","20","031",8346,0.967529355379823,442,0.153366882338845,6.0913098820777,6.82546003625531,7.75619534394812,6.18461538461538,451.612903225807,21,4650,0,1,0,0,9 +"17829",2016,20035,"KS","20","035",35662,0.907464528069093,2449,0.130278728057877,7.80343505695217,8.28953948462414,9.16743287096491,4.4,552.542201044254,109,19727,0,1,0,0,9 +"17830",2016,20037,"KS","20","037",39082,0.930786551353564,5497,0.113658461695921,8.61195776786066,8.33399124719497,9.33158407926155,4.80769230769231,348.994459712952,80,22923,0,1,0,0,9 +"17831",2016,20041,"KS","20","041",18971,0.962574455748247,939,0.142375204259132,6.84481547920826,7.67182679787878,8.53777982502463,4.39230769230769,383.362085489745,40,10434,0,1,0,0,9 +"17832",2016,20045,"KS","20","045",119876,0.853423537655577,21796,0.0997530781807868,9.98948174570299,9.52310522479543,10.5476808055181,3.53076923076923,179.017104627004,137,76529,0,1,0,0,9 +"17833",2016,20051,"KS","20","051",28946,0.958059835555863,3909,0.118841981620949,8.27103686579295,8.0166478770578,9.04876217632013,3.07692307692308,328.511324995678,57,17351,0,1,0,0,9 +"17834",2016,20055,"KS","20","055",36827,0.896869144920846,2740,0.105058788388954,7.91571319938212,8.35608503102148,9.19796410090813,3.09230769230769,289.073983341499,59,20410,0,1,0,0,9 +"17835",2016,20057,"KS","20","057",34446,0.930325727225222,2713,0.104743656738083,7.90581031265893,8.33302993974291,9.11679862756782,3.15384615384615,227.224688226591,43,18924,0,1,0,0,9 +"17836",2016,20059,"KS","20","059",25546,0.96093321850779,1601,0.14119627338918,7.37838371299671,7.96311205897929,8.88308552440458,4.17692307692308,457.095366715146,66,14439,0,1,0,0,9 +"17837",2016,20061,"KS","20","061",35401,0.716618174627835,4807,0.0590661280754781,8.47782846789396,8.3170334764924,9.14952823257943,5.62307692307692,346.842780443769,73,21047,0,1,0,0,9 +"17838",2016,20073,"KS","20","073",6104,0.967562254259502,272,0.171363040629096,5.605802066296,6.42324696353352,7.36897040219479,4.86923076923077,676.506765067651,22,3252,0,1,0,0,9 +"17839",2016,20079,"KS","20","079",34777,0.951174626908589,2341,0.13287517612215,7.75833346749091,8.26950076718061,9.14206153122289,4.20769230769231,412.161438818114,77,18682,0,1,0,0,9 +"17840",2016,20085,"KS","20","085",13274,0.881045653156547,723,0.138390839234594,6.58340922215876,7.26892012819372,8.17723488551019,3.44615384615385,332.686443027447,24,7214,0,1,0,0,9 +"17841",2016,20087,"KS","20","087",18838,0.974678840641257,933,0.159199490391761,6.83840520084734,7.62364194651157,8.5657928612523,3.88461538461538,420.914788139557,45,10691,0,1,0,0,9 +"17842",2016,20091,"KS","20","091",586601,0.884253521558947,33882,0.124634973346448,10.4306391789009,11.3026117580941,12.0836846482947,3.25384615384615,200.641129125251,696,346888,0,1,0,0,9 +"17843",2016,20095,"KS","20","095",7407,0.979343863912515,351,0.161063858512218,5.86078622346587,6.60934924316738,7.58781721999343,4.4,779.09022367429,31,3979,0,1,0,0,9 +"17844",2016,20099,"KS","20","099",20323,0.909511391034788,1109,0.143630369532057,7.01121398735037,7.68156036255954,8.62891344102665,5.38461538461539,670.253108739748,76,11339,0,1,0,0,9 +"17845",2016,20103,"KS","20","103",80422,0.863246375369924,4822,0.127962497823979,8.48094405874112,9.35944979456402,9.97081904469641,4.29230769230769,343.897366199213,167,48561,0,1,0,0,9 +"17846",2016,20107,"KS","20","107",9604,0.975114535610162,390,0.14868804664723,5.96614673912369,6.99025650049388,7.83991936001258,6.4,567.070786077434,29,5114,0,1,0,0,9 +"17847",2016,20111,"KS","20","111",33367,0.919351455030419,4544,0.122036742889681,8.42156296040099,8.11731246160197,9.20994029195484,4.09230769230769,282.371924162969,56,19832,0,1,0,0,9 +"17848",2016,20113,"KS","20","113",28466,0.964659593901496,1784,0.145506920536781,7.48661331313996,8.04141290939305,8.95467362895641,3.14615384615385,369.638646357785,58,15691,0,1,0,0,9 +"17849",2016,20115,"KS","20","115",12008,0.970686209193871,826,0.150566289140573,6.71659477352098,7.04141166379481,8.0471895621705,3.92307692307692,532.748354747728,34,6382,0,1,0,0,9 +"17850",2016,20117,"KS","20","117",9805,0.978786333503315,462,0.163080061193269,6.13556489108174,6.92559519711047,7.8458075026378,3.00769230769231,307.101727447217,16,5210,0,1,0,0,9 +"17851",2016,20121,"KS","20","121",32960,0.967415048543689,1687,0.143567961165049,7.43070708254597,8.29479935899257,9.13486223080023,4.13076923076923,360.408821947284,67,18590,0,1,0,0,9 +"17852",2016,20125,"KS","20","125",32850,0.876712328767123,1819,0.138934550989346,7.50604217851812,8.14670905220332,9.08500388066489,6.11538461538461,576.825199344003,102,17683,0,1,0,0,9 +"17853",2016,20133,"KS","20","133",16131,0.957535180707954,955,0.137189262909925,6.86171134048073,7.4489161025442,8.35537989525363,7.15384615384615,475.307210758173,41,8626,0,1,0,0,9 +"17854",2016,20139,"KS","20","139",15836,0.972909825713564,814,0.159699419045213,6.70196036600254,7.48773376143644,8.38981426208641,4.39230769230769,606.199245110374,53,8743,0,1,0,0,9 +"17855",2016,20143,"KS","20","143",5898,0.974228552051543,317,0.154798236690404,5.75890177387728,6.51025834052315,7.3864708488299,3.79230769230769,550.45871559633,18,3270,0,1,0,0,9 +"17856",2016,20145,"KS","20","145",6716,0.919297200714711,349,0.154109589041096,5.85507192220243,6.74641212857337,7.41577697541539,3.29230769230769,448.095593726662,18,4017,0,1,0,0,9 +"17857",2016,20149,"KS","20","149",23646,0.958132453691956,1409,0.121035270235981,7.25063551189868,7.98752447984877,8.77012852753818,3.48461538461538,338.617823610897,44,12994,0,1,0,0,9 +"17858",2016,20155,"KS","20","155",63230,0.93922188834414,3933,0.139838684168907,8.27715777243181,8.85822643936501,9.73831805455974,4.39230769230769,403.11133821609,142,35226,0,1,0,0,9 +"17859",2016,20159,"KS","20","159",9773,0.953545482451652,772,0.144172720761281,6.64898455002478,6.88141130364254,7.83952558170468,3.99230769230769,692.494853078795,37,5343,0,1,0,0,9 +"17860",2016,20161,"KS","20","161",75374,0.850518746517367,19102,0.0745747870618516,9.85754832059468,8.85936344915209,10.0290623754442,3.4,163.422057892264,80,48953,0,1,0,0,9 +"17861",2016,20169,"KS","20","169",54975,0.916380172805821,3625,0.137171441564347,8.19560956728878,8.71850004812127,9.650979555092,3.70769230769231,423.863853655427,133,31378,0,1,0,0,9 +"17862",2016,20173,"KS","20","173",513324,0.827483226967763,35847,0.125973069640227,10.4870151605179,11.0292122878608,11.9135254240771,4.62307692307692,425.693857412765,1264,296927,0,1,0,0,9 +"17863",2016,20175,"KS","20","175",22907,0.887414327498145,1881,0.0912384860522984,7.53955882930103,7.91935619066062,8.69667739339003,4.33846153846154,322.606027224801,41,12709,0,1,0,0,9 +"17864",2016,20177,"KS","20","177",178413,0.859814027004759,10766,0.138857594457803,9.2841482991209,9.93212359907246,10.8567464625103,3.99230769230769,467.507717351385,471,100747,0,1,0,0,9 +"17865",2016,20181,"KS","20","181",5960,0.968456375838926,348,0.147651006711409,5.85220247977447,6.42971947803914,7.36010397298915,3.29230769230769,524.853349799321,17,3239,0,1,0,0,9 +"17866",2016,20191,"KS","20","191",23165,0.959551046837902,1333,0.153939132311677,7.19518732017871,7.86403565907245,8.74782860848874,4.2,419.026926359898,54,12887,0,1,0,0,9 +"17867",2016,20205,"KS","20","205",8709,0.963600872660466,441,0.156734412676542,6.08904487544685,6.83947643822884,7.75362354655975,5.99230769230769,515.685431886549,24,4654,0,1,0,0,9 +"17868",2016,20209,"KS","20","209",164924,0.681186485896534,10760,0.117945235381145,9.28359083371578,9.96199228190869,10.7746972329696,5.52307692307692,481.27948887698,458,95163,0,1,0,0,9 +"17869",2016,21001,"KY","21","001",19293,0.959933654693412,1526,0.136889027108278,7.3304052118444,7.66246781520024,8.63266244122235,6.50769230769231,424.724380986806,47,11066,1,1,1,0,9 +"17870",2016,21003,"KY","21","003",20706,0.979474548440066,1184,0.132425383946682,7.07665381544395,7.81480342948936,8.69533937679971,4.26153846153846,625.264047317279,74,11835,1,1,1,0,9 +"17871",2016,21005,"KY","21","005",22198,0.963915668078205,1258,0.132354266150104,7.13727843726039,7.98480338973441,8.80941494391005,3.97692307692308,519.996941194464,68,13077,1,1,1,0,9 +"17872",2016,21007,"KY","21","007",8043,0.950018649757553,404,0.148452070123088,6.00141487796115,6.88243747099785,7.71244383427499,8.80769230769231,640.459363957597,29,4528,1,1,1,0,9 +"17873",2016,21009,"KY","21","009",43789,0.940966909497819,2586,0.135536321907328,7.8578675593318,8.59174392268053,9.4552454150719,4.62307692307692,596.919893350312,150,25129,1,1,1,0,9 +"17874",2016,21011,"KY","21","011",12255,0.976336189310485,696,0.135046919624643,6.54534966033442,7.32514895795557,8.15363748638528,7.27692307692308,506.805676223574,35,6906,1,1,1,0,9 +"17875",2016,21013,"KY","21","013",27222,0.9643670560576,1662,0.142348100800823,7.41577697541539,8.0802374162167,8.98732181285012,9.07692307692308,905.717340713252,144,15899,1,1,1,0,9 +"17876",2016,21015,"KY","21","015",129649,0.929856767117371,7371,0.122445988785104,8.90530866118929,9.79406323525484,10.5476282955412,3.75384615384615,304.301231758464,230,75583,1,1,1,0,9 +"17877",2016,21017,"KY","21","017",20123,0.924862098096705,1199,0.137305570739949,7.08924315502751,7.78405700263993,8.67351294567119,4.7,579.303080839112,66,11393,1,1,1,0,9 +"17878",2016,21019,"KY","21","019",48175,0.95790347690711,2483,0.143829787234043,7.81722278550817,8.71160799589757,9.52558897214577,8,589.159465828751,165,28006,1,1,1,0,9 +"17879",2016,21021,"KY","21","021",29984,0.899079509071505,2582,0.127801494130203,7.85631957140659,8.16394095475501,9.02833876399315,4.87692307692308,584.45691800243,101,17281,1,1,1,0,9 +"17880",2016,21023,"KY","21","023",8366,0.986014821898159,449,0.143557255558212,6.10702288774225,6.89365635460264,7.77988511507052,5.93076923076923,578.990901571547,28,4836,1,1,1,0,9 +"17881",2016,21025,"KY","21","025",13164,0.984958979033728,802,0.148055302339714,6.68710860786651,7.46221493976819,8.29154650988391,9.70769230769231,1034.1390480937,83,8026,1,1,1,0,9 +"17882",2016,21027,"KY","21","027",19988,0.967430458274965,1051,0.152491494896938,6.95749737087695,7.72356247227797,8.62065189978447,6.19230769230769,551.846906987094,62,11235,1,1,1,0,9 +"17883",2016,21029,"KY","21","029",79273,0.974732885093285,4667,0.135115360841648,8.44827174594982,9.2620785673806,10.0905063931317,4.1,387.05649776298,186,48055,1,1,1,0,9 +"17884",2016,21031,"KY","21","031",12691,0.984949964541801,599,0.143329918840123,6.39526159811545,7.38585107812521,8.19201691453688,5.38461538461539,689.935064935065,51,7392,1,1,1,0,9 +"17885",2016,21033,"KY","21","033",12635,0.932568262762169,680,0.144440047487139,6.52209279817015,7.2868764117507,8.17131687471973,5.37692307692308,542.857142857143,38,7000,1,1,1,0,9 +"17886",2016,21035,"KY","21","035",38760,0.930908152734778,5732,0.118188854489164,8.65381978894806,8.2829886927426,9.37279929967389,4.46923076923077,315.98995757943,73,23102,1,1,1,0,9 +"17887",2016,21037,"KY","21","037",92821,0.951821247347044,6661,0.138772476056065,8.80402490241318,9.31452019088585,10.2535104203945,3.77692307692308,499.200568484633,281,56290,1,1,1,0,9 +"17888",2016,21039,"KY","21","039",4782,0.970932664157256,250,0.138644918444166,5.52146091786225,6.33859407820318,7.18690102041163,6.38461538461539,753.295668549906,20,2655,1,1,1,0,9 +"17889",2016,21041,"KY","21","041",10635,0.963140573577809,636,0.133897508227551,6.45519856334012,7.16780918431644,7.98684490116138,4.88461538461538,723.208415516108,44,6084,1,1,1,0,9 +"17890",2016,21043,"KY","21","043",27313,0.986782850657196,1726,0.136162267052319,7.45356187164337,8.07961802938984,8.96686655418872,10.4230769230769,584.044669790129,91,15581,1,1,1,0,9 +"17891",2016,21045,"KY","21","045",15785,0.980931263858093,915,0.133417801710485,6.81892406527552,7.53155238140729,8.40804774415544,4.76153846153846,805.810918170469,71,8811,1,1,1,0,9 +"17892",2016,21047,"KY","21","047",71966,0.73718144679432,9345,0.090278742739627,9.14259671988966,8.9126079636709,9.83327965749263,6.06153846153846,408.905043162199,171,41819,1,1,1,0,9 +"17893",2016,21049,"KY","21","049",35869,0.93777356491678,2049,0.137193676991274,7.6251071482389,8.43185314424922,9.27350294693382,4.73846153846154,610.832736816989,128,20955,1,1,1,0,9 +"17894",2016,21051,"KY","21","051",20627,0.952489455567945,1207,0.129199592766762,7.09589322109753,7.96623977655947,8.66768002469017,10.0076923076923,844.764783383709,109,12903,1,1,1,0,9 +"17895",2016,21053,"KY","21","053",10209,0.982074640023509,529,0.143402879811931,6.2709884318583,7.06304816338817,7.96589273508453,7.43846153846154,521.648408972353,30,5751,1,1,1,0,9 +"17896",2016,21055,"KY","21","055",9133,0.979853279316763,456,0.142559947443337,6.12249280951439,6.9782137426307,7.8188324438034,5.16923076923077,532.544378698225,27,5070,1,1,1,0,9 +"17897",2016,21057,"KY","21","057",6739,0.963347677696988,349,0.156254637186526,5.85507192220243,6.52502965784346,7.5522372875608,5.60769230769231,561.497326203209,21,3740,1,1,1,0,9 +"17898",2016,21059,"KY","21","059",100080,0.923571143085532,5980,0.133792965627498,8.69617584694468,9.385049695768,10.2730145538387,4.40769230769231,525.082374500027,298,56753,1,1,1,0,9 +"17899",2016,21061,"KY","21","061",12097,0.970736546251137,748,0.14466396627263,6.61740297797448,7.30854279753919,8.15536212032814,6.1,554.686388849381,39,7031,1,1,1,0,9 +"17900",2016,21063,"KY","21","063",7487,0.955255776679578,435,0.136236142647255,6.07534603108868,6.95749737087695,7.50108212425987,11.3384615384615,694.59518124593,32,4607,1,1,1,0,9 +"17901",2016,21065,"KY","21","065",14332,0.990371197320681,771,0.139757186715043,6.64768837356333,7.46622755621548,8.3243363327069,5.81538461538462,899.172761059825,75,8341,1,1,1,0,9 +"17902",2016,21067,"KY","21","067",318190,0.791313366227726,33600,0.115959018196675,10.4222813459513,10.6393349626281,11.5212903813019,3.52307692307692,390.10276364362,782,200460,1,1,1,0,9 +"17903",2016,21069,"KY","21","069",14489,0.976740975912761,820,0.13361860721927,6.7093043402583,7.47873482556787,8.3228800217699,6.14615384615385,661.116552399608,54,8168,1,1,1,0,9 +"17904",2016,21071,"KY","21","071",37002,0.984081941516675,2135,0.146883952218799,7.66622192566273,8.46421426662535,9.32500744695431,11.1538461538462,949.671973207322,207,21797,1,1,1,0,9 +"17905",2016,21073,"KY","21","073",50344,0.858275067535357,3303,0.138785158112188,8.10258642539079,8.7285879956959,9.63469265580283,4.01538461538462,541.631623212784,161,29725,1,1,1,0,9 +"17906",2016,21075,"KY","21","075",6181,0.738877204335868,367,0.147872512538424,5.90536184805457,6.50128967054039,7.45298232946546,6.83076923076923,903.189387524697,32,3543,1,1,1,0,9 +"17907",2016,21077,"KY","21","077",8725,0.970888252148997,522,0.138338108882521,6.25766758788264,6.95654544315157,7.84227877911735,4.78461538461538,788.461538461538,41,5200,1,1,1,0,9 +"17908",2016,21079,"KY","21","079",17388,0.969806763285024,887,0.153094087876697,6.78784498230958,7.65681009148038,8.54616929965275,4.8,528.530879906039,54,10217,1,1,1,0,9 +"17909",2016,21081,"KY","21","081",24915,0.978727674091913,1483,0.121131848284166,7.30182234213793,8.05610965954506,8.86220033048729,4.8,574.149278812491,82,14282,1,1,1,0,9 +"17910",2016,21083,"KY","21","083",37217,0.937797243195314,2054,0.132788779321278,7.6275443904885,8.39795910349254,9.26255324342312,6.13076923076923,579.458206576851,120,20709,1,1,1,0,9 +"17911",2016,21085,"KY","21","085",26105,0.979582455468301,1520,0.139436889484773,7.32646561384032,8.09346227450118,8.89836560695536,6.62307692307692,649.437600428495,97,14936,1,1,1,0,9 +"17912",2016,21087,"KY","21","087",10991,0.967063961422982,562,0.14966791010827,6.33150184989369,7.18690102041163,8.04366335239394,4.43846153846154,526.315789473684,33,6270,1,1,1,0,9 +"17913",2016,21089,"KY","21","089",35852,0.980196362824947,1885,0.142725649894009,7.54168309988211,8.39253658681668,9.24367843158669,8.53846153846154,544.446644228866,110,20204,1,1,1,0,9 +"17914",2016,21091,"KY","21","091",8743,0.975408898547409,480,0.129475008578291,6.17378610390194,6.98471632011827,7.77485576666552,5.29230769230769,452.302631578947,22,4864,1,1,1,0,9 +"17915",2016,21093,"KY","21","093",107106,0.82547196235505,7512,0.126977013425952,8.9242570208881,9.51995515442751,10.3628725026337,4.39230769230769,426.780474793278,272,63733,1,1,1,0,9 +"17916",2016,21095,"KY","21","095",26986,0.968353961313274,1476,0.147854443044542,7.29709100516042,8.07682603129881,8.99739464563842,12.9846153846154,919.409041912371,145,15771,1,1,1,0,9 +"17917",2016,21097,"KY","21","097",18590,0.966110812264658,1073,0.149757934373319,6.9782137426307,7.70481192293259,8.59895749321888,4.66153846153846,584.036340038936,63,10787,1,1,1,0,9 +"17918",2016,21099,"KY","21","099",18531,0.942906481031785,1092,0.145378015217743,6.99576615630485,7.66387725870347,8.57016507618234,4.66153846153846,486.344930789375,52,10692,1,1,1,0,9 +"17919",2016,21101,"KY","21","101",46254,0.903229990919704,2598,0.145284732131275,7.86249719723055,8.63194942871443,9.53322065507793,4.7,542.327550982504,146,26921,1,1,1,0,9 +"17920",2016,21103,"KY","21","103",15837,0.956873145166383,845,0.14485066616152,6.73933662735717,7.54380286750151,8.43533216493592,4.04615384615385,418.502202643172,38,9080,1,1,1,0,9 +"17921",2016,21105,"KY","21","105",4622,0.893552574643012,238,0.142146257031588,5.47227067367148,6.20253551718792,7.15617663748062,5.9,639.744102359056,16,2501,1,1,1,0,9 +"17922",2016,21107,"KY","21","107",45616,0.915380568221677,2589,0.145606804629954,7.85902697975154,8.61830469278465,9.50181524266666,5.63076923076923,683.449139993166,180,26337,1,1,1,0,9 +"17923",2016,21109,"KY","21","109",13351,0.990937008463786,727,0.14762939105685,6.58892647753352,7.48885295573346,8.29853954537488,7.8,756.238971514999,60,7934,1,1,1,0,9 +"17924",2016,21111,"KY","21","111",767770,0.738409940476966,48805,0.135126405043177,10.7955880456091,11.4705606141925,12.3726416125428,4.35384615384615,521.066664346949,2396,459826,1,1,1,0,9 +"17925",2016,21113,"KY","21","113",52259,0.935245603628083,3635,0.128781645266844,8.19836438996762,8.80851861878282,9.67237483157224,3.87692307692308,434.399189992488,133,30617,1,1,1,0,9 +"17926",2016,21115,"KY","21","115",22895,0.98698405765451,1257,0.140729416903254,7.13648320859025,7.9885429827377,8.8303968010981,10.1846153846154,645.597177389085,86,13321,1,1,1,0,9 +"17927",2016,21117,"KY","21","117",165144,0.926888049217652,9852,0.130770721309887,9.19542975924043,9.96015139965367,10.8126328162494,4.06923076923077,481.170916338672,478,99341,1,1,1,0,9 +"17928",2016,21119,"KY","21","119",15498,0.98548199767712,1143,0.152084139889018,7.04141166379481,7.51425465281641,8.4292359126571,11.4230769230769,937.023316626716,86,9178,1,1,1,0,9 +"17929",2016,21121,"KY","21","121",31481,0.977319653124107,2035,0.125885454718719,7.6182510978767,8.23642052726539,9.12085320547465,7.9,727.354109550719,130,17873,1,1,1,0,9 +"17930",2016,21123,"KY","21","123",14019,0.957058278051216,781,0.145302803338327,6.66057514983969,7.43307534889858,8.31849832050434,4.55384615384615,438.756855575868,36,8205,1,1,1,0,9 +"17931",2016,21125,"KY","21","125",60080,0.980126498002663,3431,0.134287616511318,8.14060704285845,8.96507901540835,9.80576446400751,6.13076923076923,648.179461165596,230,35484,1,1,1,0,9 +"17932",2016,21127,"KY","21","127",15843,0.988196679921732,847,0.14460645079846,6.74170069465205,7.59287028784482,8.44612674298238,10.7846153846154,599.389712292938,55,9176,1,1,1,0,9 +"17933",2016,21129,"KY","21","129",6885,0.975744371822803,363,0.149455337690632,5.89440283426485,6.69084227741856,7.56371966841437,9.65384615384615,1096.09992352791,43,3923,1,1,1,0,9 +"17934",2016,21131,"KY","21","131",10431,0.990221455277538,517,0.150992234685073,6.24804287450843,7.17165682276851,8.04750951098142,13.3307692307692,934.730056406124,58,6205,1,1,1,0,9 +"17935",2016,21133,"KY","21","133",22765,0.988447177685043,1121,0.15128486712058,7.02197642307216,7.94979721616185,8.8180382503943,12.2538461538462,829.437490574574,110,13262,1,1,1,0,9 +"17936",2016,21135,"KY","21","135",13514,0.989270386266094,760,0.147328696166938,6.63331843328038,7.4318919168078,8.28273588020175,9.69230769230769,711.201422402845,56,7874,1,1,1,0,9 +"17937",2016,21137,"KY","21","137",24367,0.96757910288505,1343,0.133705421266467,7.20266119652324,7.99023818572036,8.85708813531495,6.00769230769231,596.993454650075,83,13903,1,1,1,0,9 +"17938",2016,21139,"KY","21","139",9199,0.980650070659854,459,0.16240895749538,6.12905021006055,6.91572344863131,7.88720858581393,7.09230769230769,759.445604708563,40,5267,1,1,1,0,9 +"17939",2016,21141,"KY","21","141",26697,0.921564220698955,1448,0.139079297299322,7.27793857294566,8.01928379291679,8.9300972286214,4.33846153846154,540.468405951825,81,14987,1,1,1,0,9 +"17940",2016,21143,"KY","21","143",8248,0.932225994180407,420,0.160281280310378,6.04025471127741,6.92067150424868,7.5569505720129,5.82307692307692,549.915397631134,26,4728,1,1,1,0,9 +"17941",2016,21145,"KY","21","145",65348,0.867279794331885,3573,0.143891167288976,8.18116085802341,8.97221007835365,9.86031905713475,5.7,515.270248510547,192,37262,1,1,1,0,9 +"17942",2016,21147,"KY","21","147",17588,0.926029110757335,1036,0.122754150557198,6.94312242281943,7.84227877911735,8.43076346341785,7.95384615384615,738.386765118235,79,10699,1,1,1,0,9 +"17943",2016,21149,"KY","21","149",9333,0.982642237222758,472,0.139826422372228,6.15697898558556,7.00306545878646,7.86557175768479,4.76153846153846,789.220404234841,41,5195,1,1,1,0,9 +"17944",2016,21151,"KY","21","151",89653,0.93162526630453,11166,0.112812733539313,9.3206287258703,9.29789326898404,10.2247011081967,4.12307692307692,398.531338216572,216,54199,1,1,1,0,9 +"17945",2016,21153,"KY","21","153",12673,0.992188116468082,690,0.148110155448591,6.5366915975913,7.39203156751459,8.22710823434815,19.5,637.365555703094,48,7531,1,1,1,0,9 +"17946",2016,21155,"KY","21","155",19136,0.91116220735786,1164,0.134354096989967,7.05961762829138,7.78155595923534,8.59840444684106,4.17692307692308,511.322132943755,56,10952,1,1,1,0,9 +"17947",2016,21157,"KY","21","157",31277,0.987370911532436,1550,0.149279022924193,7.34601020991329,8.20685642839965,9.09661160664784,5.73076923076923,677.946789722555,119,17553,1,1,1,0,9 +"17948",2016,21159,"KY","21","159",11961,0.923166959284341,677,0.128584566507817,6.51767127291227,7.44190672805162,8.04109100370863,10.1923076923077,857.293590081773,65,7582,1,1,1,0,9 +"17949",2016,21161,"KY","21","161",17202,0.919427973491454,1018,0.141437042204395,6.92559519711047,7.59689443814454,8.51719319141624,6.30769230769231,601.917975923281,59,9802,1,1,1,0,9 +"17950",2016,21163,"KY","21","163",27967,0.941001895090643,1671,0.138198591196768,7.42117752859539,8.23429963569625,9.04452188728124,5.08461538461538,460.775736366288,79,17145,1,1,1,0,9 +"17951",2016,21165,"KY","21","165",6450,0.966201550387597,385,0.154728682170543,5.95324333428778,6.63987583382654,7.5109777520141,8.53076923076923,696.677384780279,26,3732,1,1,1,0,9 +"17952",2016,21167,"KY","21","167",21408,0.945394245142003,1263,0.147328101644245,7.14124512235049,7.78197323443438,8.73825457652612,4.79230769230769,686.218446205375,84,12241,1,1,1,0,9 +"17953",2016,21169,"KY","21","169",10010,0.973026973026973,524,0.143056943056943,6.26149168432104,7.028201432058,7.94165125293056,4.5,834.8134991119,47,5630,1,1,1,0,9 +"17954",2016,21171,"KY","21","171",10536,0.971146545178436,578,0.143602885345482,6.35957386867238,7.11963563801764,7.99193051985248,4.16923076923077,587.051325058705,35,5962,1,1,1,0,9 +"17955",2016,21173,"KY","21","173",27692,0.959193991044345,1577,0.126715296836632,7.36327958696304,8.23190824356418,9.024974184996,6.35384615384615,540.208717004297,88,16290,1,1,1,0,9 +"17956",2016,21175,"KY","21","175",13286,0.942119524311305,812,0.146319433990667,6.69950034016168,7.55066124310534,8.14409846333852,7.91538461538462,645.236977944627,55,8524,1,1,1,0,9 +"17957",2016,21177,"KY","21","177",31151,0.941703316105422,1993,0.136496420660653,7.5973963202128,8.26924452118306,9.05753878171822,7.21538461538462,531.120331950207,96,18075,1,1,1,0,9 +"17958",2016,21179,"KY","21","179",45517,0.934727684161962,2733,0.137003756838104,7.91315518592807,8.65294711239386,9.51664790855113,4.49230769230769,502.643532653213,135,26858,1,1,1,0,9 +"17959",2016,21181,"KY","21","181",7091,0.985333521365111,414,0.137357213369059,6.02586597382531,6.75925527066369,7.61726781362835,5.67692307692308,694.272253905281,28,4033,1,1,1,0,9 +"17960",2016,21183,"KY","21","183",24202,0.976861416411867,1353,0.132798942236179,7.21007962817079,8.02289686960146,8.81877816903701,6.6,646.802325581395,89,13760,1,1,1,0,9 +"17961",2016,21185,"KY","21","185",65487,0.926932062852169,3751,0.124589613205674,8.22977775008189,9.16534300604545,9.77377742101338,3.36153846153846,299.707976843076,117,39038,1,1,1,0,9 +"17962",2016,21187,"KY","21","187",10674,0.979482855536818,529,0.154581225407532,6.2709884318583,7.20191631753163,8.02551638648901,4.23846153846154,566.801619433198,35,6175,1,1,1,0,9 +"17963",2016,21189,"KY","21","189",4480,0.988392857142857,224,0.147321428571429,5.41164605185504,6.22653666928747,7.17395831975679,9.65384615384615,920.951650038373,24,2606,1,1,1,0,9 +"17964",2016,21191,"KY","21","191",14604,0.982607504793207,880,0.148041632429471,6.77992190747225,7.46565531013406,8.35396813031327,4.74615384615385,446.122168840082,39,8742,1,1,1,0,9 +"17965",2016,21193,"KY","21","193",27222,0.970758944970979,1472,0.148629784732937,7.29437729928882,8.15104494568502,9.02833876399315,10.6923076923077,1016.82381216491,165,16227,1,1,1,0,9 +"17966",2016,21195,"KY","21","195",60475,0.983679206283588,3566,0.151037618850765,8.17919979842309,8.96456770260161,9.80537845942581,10.7384615384615,723.994452149792,261,36050,1,1,1,0,9 +"17967",2016,21197,"KY","21","197",12256,0.983518276762402,718,0.13536227154047,6.57646956904822,7.3790081276283,8.18979961872823,7.09230769230769,943.920044419767,68,7204,1,1,1,0,9 +"17968",2016,21199,"KY","21","199",64061,0.973759385585614,3420,0.138914472143738,8.13739583005665,8.96533457380484,9.83370865792821,5.37692307692308,650.39761703058,238,36593,1,1,1,0,9 +"17969",2016,21203,"KY","21","203",16879,0.988387937674033,992,0.141951537413354,6.89972310728487,7.61332497954064,8.51298434664218,6.03076923076923,546.171740669566,54,9887,1,1,1,0,9 +"17970",2016,21205,"KY","21","205",24436,0.967343264036667,3872,0.109633327876903,8.26152644839647,7.80302664363222,8.9142228207033,5.86153846153846,525.740816605216,77,14646,1,1,1,0,9 +"17971",2016,21207,"KY","21","207",17769,0.978895829815972,944,0.143677190612865,6.8501261661455,7.63385355968177,8.52912176228151,8.30769230769231,704.012873378256,70,9943,1,1,1,0,9 +"17972",2016,21209,"KY","21","209",53454,0.920417555281176,3637,0.116343023908407,8.19891444498699,8.95763926841965,9.69393867348769,3.74615384615385,386.728461373193,126,32581,1,1,1,0,9 +"17973",2016,21211,"KY","21","211",46579,0.898666781167479,2976,0.130852959488181,7.99833539595298,8.73085190351923,9.57477513052635,3.53076923076923,411.627568118898,113,27452,1,1,1,0,9 +"17974",2016,21213,"KY","21","213",17995,0.884190052792442,1071,0.13148096693526,6.97634807044775,7.68109900153636,8.55236726642389,4.40769230769231,601.649684619117,62,10305,1,1,1,0,9 +"17975",2016,21215,"KY","21","215",18298,0.970160673297628,962,0.149141982730353,6.86901445066571,7.85476918349913,8.62873456614915,3.75384615384615,410.750959907135,46,11199,1,1,1,0,9 +"17976",2016,21217,"KY","21","217",25420,0.928599527930763,1996,0.131825334382376,7.59890045687141,7.88231491898027,8.87919392811032,4.87692307692308,485.197946698544,69,14221,1,1,1,0,9 +"17977",2016,21219,"KY","21","219",12364,0.906745389841475,713,0.125606599805888,6.5694814204143,7.28069719538474,8.13651825211529,4.38461538461539,456.755562104022,31,6787,1,1,1,0,9 +"17978",2016,21221,"KY","21","221",14309,0.914599203298623,676,0.153330071982668,6.51619307604296,7.33106030521863,8.28878581042693,5.55384615384615,461.716044632551,36,7797,1,1,1,0,9 +"17979",2016,21223,"KY","21","223",8593,0.975677877342023,508,0.138019318049575,6.23048144757848,6.96413561241824,7.81843027207066,5.31538461538462,631.786771964462,32,5065,1,1,1,0,9 +"17980",2016,21225,"KY","21","225",14795,0.850895572828658,1644,0.138154782020953,7.40488757561612,7.4489161025442,8.33423142973486,6.72307692307692,539.993250084374,48,8889,1,1,1,0,9 +"17981",2016,21227,"KY","21","227",126752,0.849895859631406,15288,0.109055478414542,9.63482348592011,9.64911129879082,10.5580498177805,3.86923076923077,372.326379720095,282,75740,1,1,1,0,9 +"17982",2016,21229,"KY","21","229",12095,0.925671765192228,785,0.13617197188921,6.66568371778241,7.2591161280971,8.14148104145742,4.23846153846154,642.148277875073,44,6852,1,1,1,0,9 +"17983",2016,21231,"KY","21","231",20726,0.968397182283123,1156,0.147737141754318,7.05272104923232,7.82043951526218,8.68794811183873,7.57692307692308,589.424048501179,70,11876,1,1,1,0,9 +"17984",2016,21233,"KY","21","233",13180,0.94165402124431,747,0.145827010622155,6.61606518513282,7.42595365707754,8.23721470334949,5.94615384615385,508.275772188192,39,7673,1,1,1,0,9 +"17985",2016,21235,"KY","21","235",36116,0.981393288293277,2849,0.122688005316203,7.95472333449791,8.34735341212434,9.24638296332311,6.50769230769231,894.129206583149,182,20355,1,1,1,0,9 +"17986",2016,21237,"KY","21","237",7203,0.988338192419825,347,0.143273635985006,5.84932477994686,6.77536609093639,7.63916117165917,10.0153846153846,921.544209215442,37,4015,1,1,1,0,9 +"17987",2016,21239,"KY","21","239",26147,0.933032470264275,1445,0.154013844800551,7.27586460054653,8.06683531441734,8.96033936649209,3.16923076923077,435.06921555702,66,15170,1,1,1,0,9 +"17988",2016,25001,"MA","25","001",213805,0.938710507237904,11278,0.17520170248591,9.33060920436713,9.81956231759837,10.9838510061474,5.15384615384615,386.747566458597,443,114545,1,1,1,0,9 +"17989",2016,25003,"MA","25","003",127182,0.93710587976286,8656,0.161618782532119,9.06600800108626,9.47623685235604,10.5290783293951,4.67692307692308,405.942894632533,297,73163,1,1,1,0,9 +"17990",2016,25005,"MA","25","005",558413,0.908222050704407,37467,0.137469937125389,10.5312158245312,11.1303024778607,12.0520119616532,5.09230769230769,384.977837762313,1295,336383,1,1,1,0,9 +"17991",2016,25007,"MA","25","007",17349,0.917401579341749,864,0.166003804253847,6.76157276880406,7.57507169950756,8.52615293278771,5.60769230769231,339.287496257858,34,10021,1,1,1,0,9 +"17992",2016,25009,"MA","25","009",780222,0.873334768822207,52034,0.14120596445627,10.8596526300531,11.4339147246352,12.3827449419254,4.12307692307692,314.557931446274,1454,462236,1,1,1,0,9 +"17993",2016,25011,"MA","25","011",70706,0.954190592028965,3826,0.175543801091845,8.2495751500002,8.99056613813158,9.98409932902852,3.63846153846154,383.069728090997,163,42551,1,1,1,0,9 +"17994",2016,25013,"MA","25","013",467874,0.844297823773067,35069,0.135908385590992,10.4650728283279,10.8807793059677,11.8621376315276,5.43846153846154,363.160217317389,1004,276462,1,1,1,0,9 +"17995",2016,25015,"MA","25","015",161613,0.897700061257448,24791,0.133398922116414,10.118235963062,9.64723954557388,10.8572089348183,3.76923076923077,217.45978518225,214,98409,1,1,1,0,9 +"17996",2016,25017,"MA","25","017",1595581,0.810222733913227,112208,0.128073096884458,11.6281095707767,12.2439559262578,13.1265645401489,3.27692307692308,234.235307539853,2320,990457,1,1,1,0,9 +"17997",2016,25021,"MA","25","021",697452,0.805638237470105,43489,0.137712702809656,10.6802633115356,11.372478788218,12.2806929864006,3.5,264.30620220982,1103,417319,1,1,1,0,9 +"17998",2016,25023,"MA","25","023",512535,0.864571200015609,31352,0.14602905167452,10.3530333398795,10.9844618693501,11.9354574354361,4.22307692307692,371.087878686663,1111,299390,1,1,1,0,9 +"17999",2016,25025,"MA","25","025",793020,0.630745756727447,77128,0.102790597967264,11.2532216583442,11.5225985296659,12.5150341953744,3.67692307692308,248.753397676537,1316,529038,1,1,1,0,9 +"18000",2016,25027,"MA","25","027",820447,0.87970581890116,56590,0.139463000047535,10.9435875701366,11.5066055362254,12.4272021700533,4.25384615384615,329.622564053029,1638,496932,1,1,1,0,9 +"18001",2016,24001,"MD","24","001",72084,0.898521169746407,6318,0.132581432772876,8.75115798136203,9.0295376611515,9.86146692327352,6.03076923076923,531.578577617498,227,42703,1,1,1,0,9 +"18002",2016,24003,"MD","24","003",567434,0.769347624569553,37108,0.130494471603746,10.5215878587732,11.2074866709292,12.0655741819899,3.67692307692308,349.166422594743,1216,348258,1,1,1,0,9 +"18003",2016,24005,"MD","24","005",828941,0.632852036514058,52120,0.136242507005927,10.8613040312388,11.5125053767455,12.4579941117485,4.47692307692308,421.42051631125,2074,492145,1,1,1,0,9 +"18004",2016,24009,"MD","24","009",91116,0.832729707186444,5465,0.144200798981518,8.60611940061064,9.27021176901357,10.2240118657919,3.74615384615385,361.974405850091,198,54700,1,1,1,0,9 +"18005",2016,24011,"MD","24","011",32834,0.82627763903271,1837,0.141316927575075,7.51588908521513,8.27359179819963,9.17595594511435,4.60769230769231,479.041916167665,92,19205,1,1,1,0,9 +"18006",2016,24013,"MD","24","013",167189,0.935791230284289,10336,0.145852897020737,9.24338822602238,9.82178930855162,10.8119678623183,3.51538461538462,351.673968088099,350,99524,1,1,1,0,9 +"18007",2016,24015,"MD","24","015",102609,0.902289272870801,6080,0.14331101560292,8.71275997496021,9.41385248134116,10.3388673865925,5.04615384615385,457.992951455995,282,61573,1,1,1,0,9 +"18008",2016,24017,"MD","24","017",157474,0.470668173793769,10246,0.126497072532609,9.23464266449915,9.92172032079719,10.8293919249263,4.10769230769231,355.63274715959,344,96729,1,1,1,0,9 +"18009",2016,24019,"MD","24","019",32268,0.682409817776125,1707,0.153712656501797,7.44249272279444,8.10228362448007,9.17398754251038,6.00769230769231,496.277915632754,90,18135,1,1,1,0,9 +"18010",2016,24021,"MD","24","021",247269,0.83835822525266,15226,0.132556042205048,9.63075977186616,10.359962581552,11.2252167254962,3.76153846153846,324.413637462723,483,148884,1,1,1,0,9 +"18011",2016,24023,"MD","24","023",29395,0.980779044055111,1693,0.156659295798605,7.43425738213314,8.10167774745457,9.05122740031911,5.46153846153846,400.541909642457,68,16977,1,1,1,0,9 +"18012",2016,24025,"MD","24","025",250448,0.816488851977257,14997,0.141853797993995,9.61560546008168,10.3147359054,11.2402108196402,4.07692307692308,366.258822901517,549,149894,1,1,1,0,9 +"18013",2016,24027,"MD","24","027",315581,0.603426695523495,18218,0.129443787807251,9.81016539530476,10.6885071925232,11.4866738878258,3.18461538461538,191.634246352386,365,190467,1,1,1,0,9 +"18014",2016,24029,"MD","24","029",19708,0.821595291252283,1485,0.152171706921047,7.3031700512368,7.41938058291869,8.60630236648801,4.69230769230769,405.775219401717,43,10597,1,1,1,0,9 +"18015",2016,24031,"MD","24","031",1039327,0.62587135713784,60211,0.130702849055206,11.0056103388574,11.8700473090342,12.6812907805784,3.33076923076923,188.996018611791,1182,625410,1,1,1,0,9 +"18016",2016,24033,"MD","24","033",909262,0.269822119477114,64001,0.126376116014966,11.0666539872197,11.7129150194176,12.5861036995815,4.3,343.062282266973,1938,564912,1,1,1,0,9 +"18017",2016,24035,"MD","24","035",49135,0.910104813269563,2598,0.151378854177267,7.86249719723055,8.57451825803551,9.56359948861374,3.77692307692308,342.091341915006,97,28355,1,1,1,0,9 +"18018",2016,24037,"MD","24","037",111886,0.806803353413296,7557,0.124448098957868,8.93022956502072,9.51856009564551,10.4203747676807,4.1,309.944800306993,210,67754,1,1,1,0,9 +"18019",2016,24039,"MD","24","039",25873,0.547984385266494,3202,0.130290263981757,8.07153089355666,7.9550742732627,8.8405801884888,7.03076923076923,393.430337850496,63,16013,1,1,1,0,9 +"18020",2016,24041,"MD","24","041",37170,0.843718052192628,1717,0.15394135055152,7.44833386089748,8.13681086367554,9.224539091376,4.05384615384615,320.479685723147,62,19346,1,1,1,0,9 +"18021",2016,24043,"MD","24","043",149715,0.850342317069098,8965,0.1320308586314,9.10108338603923,9.83274314801037,10.6460437533536,4.96153846153846,449.020931802836,399,88860,1,1,1,0,9 +"18022",2016,24045,"MD","24","045",102246,0.684770064354596,10294,0.126811806818849,9.2393164802127,9.32027043134838,10.3389644347123,6.02307692307692,516.133385059119,306,59287,1,1,1,0,9 +"18023",2016,24047,"MD","24","047",51508,0.839714219150423,2559,0.159489787994098,7.84737183615979,8.47949132423223,9.55435551776812,9,517.278540125009,144,27838,1,1,1,0,9 +"18024",2016,24510,"MD","24","510",616542,0.318362739278103,44780,0.126004392239296,10.7095168901527,11.2181919225717,12.2345386178408,6.37692307692308,673.185504568319,2623,389640,1,1,1,0,9 +"18025",2016,23001,"ME","23","001",107389,0.937312015197087,6538,0.14138319567181,8.78538658728416,9.46000900222975,10.3711133569959,3.56923076923077,434.231378763867,274,63100,0,1,0,0,9 +"18026",2016,23003,"ME","23","003",68319,0.960801533980298,3750,0.166220231560766,8.22951111896446,8.87304779897107,9.86401880862576,5.42307692307692,459.167790806268,177,38548,0,1,0,0,9 +"18027",2016,23005,"ME","23","005",291522,0.935963666550037,18483,0.146270264336825,9.82460666968268,10.4744953473105,11.415753553218,2.9,290.17190572512,515,177481,0,1,0,0,9 +"18028",2016,23007,"ME","23","007",29995,0.981663610601767,1964,0.166794465744291,7.58273848891441,8.00903068506973,9.08568376737663,4.45384615384615,316.948078142108,55,17353,0,1,0,0,9 +"18029",2016,23009,"ME","23","009",54540,0.971030436376971,2692,0.174129079574624,7.89803969076462,8.65451738227946,9.68738167857357,4.58461538461538,389.490151007247,122,31323,0,1,0,0,9 +"18030",2016,23011,"ME","23","011",121538,0.972058121739703,7409,0.159900607217496,8.91045075641666,9.53379973580348,10.5110768447344,3.63076923076923,428.286300382547,309,72148,0,1,0,0,9 +"18031",2016,23013,"ME","23","013",39769,0.97895345620961,1912,0.168699238100028,7.55590509361135,8.38206051742474,9.31370890495322,3.52307692307692,346.990524489524,78,22479,0,1,0,0,9 +"18032",2016,23015,"ME","23","015",33992,0.979230407154625,1639,0.170628383148976,7.40184157874383,8.13563990335439,9.15620092587553,3.70769230769231,387.701254644338,72,18571,0,1,0,0,9 +"18033",2016,23017,"ME","23","017",57353,0.978728226945408,2767,0.175753665893676,7.92551897978693,8.76997321185875,9.73246195548403,4.6,467.00993892947,156,33404,0,1,0,0,9 +"18034",2016,23019,"ME","23","019",151419,0.961253211287883,10837,0.14935377990873,9.290721483923,9.73990923855931,10.7358095466231,4.31538461538462,434.35082013729,398,91631,0,1,0,0,9 +"18035",2016,23021,"ME","23","021",16919,0.975175837815474,721,0.186181216383947,6.58063913728495,7.44541755670169,8.47093980689877,4.95384615384615,540.139800889642,51,9442,0,1,0,0,9 +"18036",2016,23023,"ME","23","023",35206,0.974265750156223,1642,0.165994432767142,7.40367029001237,8.27026911143662,9.25560050338105,2.96153846153846,317.89504572798,65,20447,0,1,0,0,9 +"18037",2016,23025,"ME","23","025",50562,0.977611645108975,2488,0.164570230607966,7.81923445385907,8.6711152736885,9.60804208946651,5.61538461538461,514.926126611248,153,29713,0,1,0,0,9 +"18038",2016,23027,"ME","23","027",39468,0.978108847674065,2019,0.166615992702949,7.61035761831284,8.43944784279138,9.35496006158613,4.19230769230769,426.955411769884,97,22719,0,1,0,0,9 +"18039",2016,23029,"ME","23","029",31608,0.926126297139965,1668,0.168818020754239,7.41938058291869,8.09040229659332,9.08443695508703,5.53076923076923,674.439871970736,118,17496,0,1,0,0,9 +"18040",2016,23031,"ME","23","031",202749,0.96918850401235,11202,0.160760349002954,9.32384761276978,10.0441621218189,11.0245297331704,3.38461538461538,377.016162591341,453,120154,0,1,0,0,9 +"18041",2016,26001,"MI","26","001",10355,0.981651376146789,383,0.197006277160792,5.94803498918065,6.63856778916652,7.85282781228174,7.73846153846154,613.379336783592,32,5217,1,1,1,0,9 +"18042",2016,26003,"MI","26","003",9138,0.861457649376231,479,0.176953381483913,6.17170059741091,6.91373735065968,7.6980291702728,8.36923076923077,279.589934762349,15,5365,1,1,1,0,9 +"18043",2016,26005,"MI","26","005",115018,0.962423272879028,6604,0.14427307030204,8.79543080504002,9.5214948006131,10.4042325369592,3.93076923076923,351.284525388976,233,66328,1,1,1,0,9 +"18044",2016,26007,"MI","26","007",28670,0.978444366934077,1549,0.170038367631671,7.34536484041687,8.02551638648901,9.00307016981826,5.99230769230769,431.619188555925,70,16218,1,1,1,0,9 +"18045",2016,26009,"MI","26","009",23090,0.976916414032049,1145,0.175833694239931,7.04315991598834,7.6511201757027,8.73020559553099,7.16153846153846,435.343437600774,54,12404,1,1,1,0,9 +"18046",2016,26011,"MI","26","011",15126,0.975009916699722,730,0.185508396139098,6.59304453414244,7.32052696227274,8.33230835221912,8.36153846153846,623.309420204634,53,8503,1,1,1,0,9 +"18047",2016,26013,"MI","26","013",8532,0.760314111579934,500,0.151664322550398,6.21460809842219,6.89770494312864,7.61874237767041,8.27692307692308,661.853188929001,33,4986,1,1,1,0,9 +"18048",2016,26015,"MI","26","015",59801,0.97908061738098,3349,0.153994080366549,8.1164170727942,8.81001204797317,9.73376627771791,4.02307692307692,355.301860966305,122,34337,1,1,1,0,9 +"18049",2016,26017,"MI","26","017",104421,0.959519636854656,6114,0.154078202660384,8.71833650245078,9.37712518962101,10.3239397904525,5.51538461538462,461.730585954188,281,60858,1,1,1,0,9 +"18050",2016,26019,"MI","26","019",17523,0.967585459110883,839,0.167779489813388,6.73221070646721,7.42595365707754,8.48011418317482,6.64615384615385,397.614314115308,38,9557,1,1,1,0,9 +"18051",2016,26021,"MI","26","021",154451,0.808573592919437,9328,0.146214657075707,9.14077590859027,9.76938456801265,10.6957331828816,5,480.126204602353,420,87477,1,1,1,0,9 +"18052",2016,26023,"MI","26","023",43451,0.960162021587535,2456,0.144277461968654,7.80628928926703,8.54966038155374,9.3527076132631,4.88461538461539,464.1963348672,115,24774,1,1,1,0,9 +"18053",2016,26025,"MI","26","025",134343,0.83327750608517,8846,0.139761654868508,9.08772065842827,9.6640875787024,10.5722908097066,4.83846153846154,528.212533989045,406,76863,1,1,1,0,9 +"18054",2016,26027,"MI","26","027",51326,0.908818142851576,2784,0.157464053306316,7.93164402145431,8.63301875692183,9.5758858560831,4.73846153846154,388.436286136606,113,29091,1,1,1,0,9 +"18055",2016,26029,"MI","26","029",26214,0.964599069199664,1274,0.174944686045624,7.14991683613211,7.82963038915019,8.89274876911826,5.60769230769231,410.846343467543,60,14604,1,1,1,0,9 +"18056",2016,26031,"MI","26","031",25452,0.948805594845199,1224,0.17951438000943,7.10987946307227,7.8164169836918,8.85008760668957,9.63846153846154,408.397220032958,57,13957,1,1,1,0,9 +"18057",2016,26033,"MI","26","033",37724,0.731285123528788,3435,0.136014208461457,8.14177220465645,8.45829208349608,9.16910162395959,7.72307692307692,285.023320089826,66,23156,1,1,1,0,9 +"18058",2016,26035,"MI","26","035",30382,0.977025870581265,1551,0.167467579487855,7.34665516317654,8.03138533062553,9.04144823549389,7.39230769230769,699.673880818263,118,16865,1,1,1,0,9 +"18059",2016,26037,"MI","26","037",77639,0.951351769085125,4885,0.143793711923131,8.49392456447688,9.13841463240459,10.0481072421461,3.73076923076923,293.861558554636,135,45940,1,1,1,0,9 +"18060",2016,26039,"MI","26","039",13754,0.972008143085648,623,0.177839174058456,6.43454651878745,7.13489085156588,8.2147358333823,7.65384615384615,598.643075695091,45,7517,1,1,1,0,9 +"18061",2016,26041,"MI","26","041",36217,0.954634563878841,1790,0.168594858767982,7.4899708988348,8.25868149626424,9.20220738874599,6.62307692307692,350.508236943568,70,19971,1,1,1,0,9 +"18062",2016,26043,"MI","26","043",25531,0.974658258587599,1372,0.168305197602914,7.22402480828583,7.87245515006398,8.87556669199055,5.23076923076923,461.846005376715,67,14507,1,1,1,0,9 +"18063",2016,26045,"MI","26","045",109220,0.889324299578832,7071,0.147656106940121,8.86375719160424,9.43620023078462,10.3926195622169,4.16923076923077,355.245321824216,228,64181,1,1,1,0,9 +"18064",2016,26047,"MI","26","047",32910,0.938103919781222,1866,0.166058948647827,7.53155238140729,8.18172045512811,9.15820461755565,6.63076923076923,393.28231292517,74,18816,1,1,1,0,9 +"18065",2016,26049,"MI","26","049",409054,0.763908921560479,26613,0.142037481603896,10.1891550971887,10.791234766593,11.7202810394838,5.77692307692308,541.965477599181,1287,237469,1,1,1,0,9 +"18066",2016,26051,"MI","26","051",25146,0.981229619024895,1152,0.169172035313768,7.04925484125584,7.80098207125774,8.80056599227992,7.04615384615385,605.109816225908,81,13386,1,1,1,0,9 +"18067",2016,26053,"MI","26","053",15331,0.917226534472637,837,0.16613397690953,6.72982407048948,7.41276401742656,8.23137604557397,6.18461538461538,441.226383075008,39,8839,1,1,1,0,9 +"18068",2016,26055,"MI","26","055",92076,0.95958773187367,5284,0.154231287197532,8.57243866564222,9.28581883315209,10.2055162186948,4.34615384615385,315.741165672327,172,54475,1,1,1,0,9 +"18069",2016,26057,"MI","26","057",40937,0.925690695458876,3174,0.12870996897672,8.06274790108635,8.52852870107998,9.27058845232154,5.23076923076923,339.954945730084,83,24415,1,1,1,0,9 +"18070",2016,26059,"MI","26","059",45789,0.978248050841905,2974,0.153049859136474,7.9976631270201,8.5173931714189,9.45461899582035,5.10769230769231,476.799627863705,123,25797,1,1,1,0,9 +"18071",2016,26061,"MI","26","061",36354,0.946140727292733,5461,0.118473895582329,8.60538720215215,8.09925056179696,9.11471014096093,6.19230769230769,334.740212487265,69,20613,1,1,1,0,9 +"18072",2016,26063,"MI","26","063",31471,0.980934828890089,1578,0.169838899304121,7.36391350140582,8.02289686960146,9.04097452634244,5.20769230769231,511.836212412028,88,17193,1,1,1,0,9 +"18073",2016,26065,"MI","26","065",289633,0.779268936896003,40829,0.115680878905373,10.6171478922184,10.3587581821798,11.4142867517396,4.33076923076923,310.406796275118,551,177509,1,1,1,0,9 +"18074",2016,26067,"MI","26","067",64215,0.932975161566612,4438,0.132430117573776,8.39795910349254,9.03812754933052,9.75027809628562,4.26923076923077,319.529652351738,125,39120,1,1,1,0,9 +"18075",2016,26069,"MI","26","069",25307,0.970719563757063,1134,0.182044493618366,7.0335064842877,7.68248244653451,8.80026465131034,7.36153846153846,731.070496083551,98,13405,1,1,1,0,9 +"18076",2016,26071,"MI","26","071",11168,0.973137535816619,454,0.195827363896848,6.11809719804135,6.8627579130514,7.96102146588337,6.54615384615385,679.463224052998,40,5887,1,1,1,0,9 +"18077",2016,26073,"MI","26","073",71247,0.896950047019524,14118,0.10616587365082,9.55520585795542,8.7984546960651,10.0163250457995,4.73076923076923,281.195869795064,125,44453,1,1,1,0,9 +"18078",2016,26075,"MI","26","075",158345,0.889576557516815,10346,0.14434304840696,9.24435525056346,9.82384892987591,10.6997777920129,4.89230769230769,483.516483516484,451,93275,1,1,1,0,9 +"18079",2016,26077,"MI","26","077",261584,0.831606673191021,32217,0.119946174077925,10.3802495425263,10.3011892700265,11.2895443854484,4.1,336.90464903132,533,158205,1,1,1,0,9 +"18080",2016,26079,"MI","26","079",17283,0.973442110744662,876,0.160215240409651,6.77536609093639,7.58731050602262,8.48570252432487,7.24615384615385,403.79567938623,40,9906,1,1,1,0,9 +"18081",2016,26081,"MI","26","081",644219,0.839933314602643,45343,0.123388164583783,10.7220110886128,11.27573369793,12.1782542778533,3.55384615384615,284.25419034368,1093,384515,1,1,1,0,9 +"18082",2016,26085,"MI","26","085",11861,0.87623303262794,519,0.194081443385887,6.25190388316589,7.02464903045364,8.05484022110102,7.56923076923077,487.80487804878,31,6355,1,1,1,0,9 +"18083",2016,26087,"MI","26","087",88227,0.971493987101454,5171,0.160563092930735,8.55082137239622,9.2058302164983,10.1448245940423,6.40769230769231,409.788977825438,214,52222,1,1,1,0,9 +"18084",2016,26089,"MI","26","089",21508,0.94341640319881,1045,0.18951087967268,6.95177216439891,7.48941208350872,8.65765054411149,4.94615384615385,238.705684731677,27,11311,1,1,1,0,9 +"18085",2016,26091,"MI","26","091",98595,0.949632334296871,6435,0.144135098128708,8.76950712003023,9.35617082018772,10.2195383990384,4.66153846153846,424.553955193769,242,57001,1,1,1,0,9 +"18086",2016,26093,"MI","26","093",188585,0.974982103560729,11229,0.156231937852958,9.32625499657254,9.98007815469784,10.9316773769077,4.06153846153846,298.040053024439,335,112401,1,1,1,0,9 +"18087",2016,26097,"MI","26","097",10713,0.771959301782881,538,0.185568934938859,6.28785856016178,6.96790920180188,7.9755646584952,10.8692307692308,523.82561676242,31,5918,1,1,1,0,9 +"18088",2016,26099,"MI","26","099",868329,0.831160769708256,54065,0.141227576183682,10.8979423053796,11.5745660411185,12.4900854946076,5.16153846153846,407.927082794444,2129,521907,1,1,1,0,9 +"18089",2016,26101,"MI","26","101",24452,0.929576312776051,1348,0.175813839358744,7.20637729147225,7.78364059622125,8.74766979009724,6.63076923076923,509.832483612527,70,13730,1,1,1,0,9 +"18090",2016,26103,"MI","26","103",66563,0.947283025104037,7638,0.146312515962321,8.94089106778546,8.87332798950246,9.88410083873594,5.76153846153846,379.601418510564,152,40042,1,1,1,0,9 +"18091",2016,26105,"MI","26","105",28846,0.96571448381058,1563,0.164944879706025,7.35436233042148,7.99159228206809,8.98557049891739,5.90769230769231,432.087168889724,69,15969,1,1,1,0,9 +"18092",2016,26107,"MI","26","107",43174,0.942789641914115,5525,0.134316950016213,8.61703852638595,8.29504914043511,9.4020345350168,5.68461538461538,406.553153805901,101,24843,1,1,1,0,9 +"18093",2016,26109,"MI","26","109",23217,0.95494680621958,1160,0.176422449067494,7.05617528410041,7.77275271646874,8.75668242126653,5.2,312.428560542559,41,13123,1,1,1,0,9 +"18094",2016,26111,"MI","26","111",83485,0.949487931963826,5121,0.142887943942026,8.54110501146255,9.17045543827727,10.1006156166471,4.76923076923077,313.537440059019,153,48798,1,1,1,0,9 +"18095",2016,26113,"MI","26","113",15028,0.97504657971786,842,0.149853606601011,6.73578001424233,7.32580750259577,8.29704514908183,6.00769230769231,435.308343409915,36,8270,1,1,1,0,9 +"18096",2016,26115,"MI","26","115",149278,0.958098313214271,8765,0.153418454159354,9.07852179735533,9.76726683262484,10.6908761601694,4.36153846153846,450.38384987205,396,87925,1,1,1,0,9 +"18097",2016,26117,"MI","26","117",62988,0.96032577633835,3709,0.14210643297136,8.21851757748959,8.95686647085414,9.75863517585665,5.35384615384615,418.126035133447,154,36831,1,1,1,0,9 +"18098",2016,26119,"MI","26","119",9210,0.982410423452769,352,0.210532030401737,5.8636311755981,6.62804137617953,7.78655180642871,10.2461538461538,962.128966223132,47,4885,1,1,1,0,9 +"18099",2016,26121,"MI","26","121",173342,0.823349217154527,11044,0.142665943625896,9.30964257305004,9.93343462890408,10.8172751541922,5.51538461538462,429.320407557622,434,101090,1,1,1,0,9 +"18100",2016,26123,"MI","26","123",47812,0.968062411110182,2598,0.154668284112775,7.86249719723055,8.52694548285892,9.507106063161,4.93076923076923,409.896602658789,111,27080,1,1,1,0,9 +"18101",2016,26125,"MI","26","125",1251563,0.769447482867423,76008,0.142775074047411,11.2385938768866,11.9596924524355,12.8557093249392,4.12307692307692,314.488885570839,2359,750106,1,1,1,0,9 +"18102",2016,26127,"MI","26","127",26327,0.963383598587002,1487,0.149998100809055,7.30451594646016,7.90544164906029,8.85337967292763,7.46153846153846,415.28823819244,59,14207,1,1,1,0,9 +"18103",2016,26129,"MI","26","129",20857,0.976266960732608,1013,0.180706717169296,6.92067150424868,7.61035761831284,8.65189889426853,7.86923076923077,645.893340315964,74,11457,1,1,1,0,9 +"18104",2016,26131,"MI","26","131",5935,0.973715248525695,178,0.213479359730413,5.18178355029209,6.13556489108174,7.32184971378836,8.60769230769231,622.134905042567,19,3054,1,1,1,0,9 +"18105",2016,26133,"MI","26","133",23179,0.973683075197377,1216,0.150222183873334,7.10332206252611,7.81843027207066,8.74145611599836,5.76153846153846,432.798237330815,55,12708,1,1,1,0,9 +"18106",2016,26135,"MI","26","135",8238,0.98045642146152,411,0.194343287205632,6.01859321449623,6.51174532964473,7.67461749736436,7.43076923076923,551.343900758098,24,4353,1,1,1,0,9 +"18107",2016,26137,"MI","26","137",24420,0.971580671580672,1404,0.153439803439803,7.24708058458576,7.85243908535751,8.83521046366409,6.01538461538462,509.646887513651,70,13735,1,1,1,0,9 +"18108",2016,26139,"MI","26","139",283686,0.938343802655048,26632,0.119544143877386,10.1898687792549,10.4001635406977,11.3071674063484,3.39230769230769,212.402057336207,344,161957,1,1,1,0,9 +"18109",2016,26141,"MI","26","141",12718,0.975782355716308,516,0.1944488127064,6.24610676548156,7.04925484125584,8.09773057366422,9.65384615384615,394.17828987265,26,6596,1,1,1,0,9 +"18110",2016,26143,"MI","26","143",23782,0.974728786477168,986,0.199899083340341,6.89365635460264,7.52725591937378,8.73841489716775,8.56923076923077,836.483551837851,104,12433,1,1,1,0,9 +"18111",2016,26145,"MI","26","145",192636,0.77339645756764,13411,0.142429244793289,9.50383054471094,9.95551058060328,10.9349623902167,5.4,472.46244879381,519,109850,1,1,1,0,9 +"18112",2016,26147,"MI","26","147",159477,0.952889758397763,9521,0.154479956357343,9.16125516428569,9.7990710356157,10.754727632156,6.04615384615385,487.25357443678,457,93791,1,1,1,0,9 +"18113",2016,26149,"MI","26","149",60761,0.948568983393953,3626,0.140978588239167,8.1958853913148,8.8408696240914,9.72615353725321,4.16153846153846,485.465458397081,165,33988,1,1,1,0,9 +"18114",2016,26151,"MI","26","151",41438,0.980621651624113,2270,0.160408320864907,7.72753511047545,8.36660283278374,9.33908532786674,6.26923076923077,464.995002390161,107,23011,1,1,1,0,9 +"18115",2016,26153,"MI","26","153",7952,0.886695171026157,381,0.195799798792757,5.9427993751267,6.64118216974059,7.70796153183549,9.20769230769231,431.916344623778,19,4399,1,1,1,0,9 +"18116",2016,26155,"MI","26","155",68589,0.976191517590284,4151,0.150505183046844,8.33110454805304,8.97297111339799,9.90553545415343,5.33076923076923,396.469180131658,159,40104,1,1,1,0,9 +"18117",2016,26157,"MI","26","157",53260,0.973582425835524,3041,0.156965828013519,8.01994168767737,8.67726913926287,9.62496341786911,6.33846153846154,442.492272653327,136,30735,1,1,1,0,9 +"18118",2016,26159,"MI","26","159",75283,0.929107501029449,4282,0.152956178685759,8.36217546914963,9.07130816328062,9.97799187470423,5.8,476.457399103139,204,42816,1,1,1,0,9 +"18119",2016,26161,"MI","26","161",366960,0.757717462393721,49023,0.115107913669065,10.8000448547199,10.6362880449727,11.6475612475316,3.7,248.60216187251,566,227673,1,1,1,0,9 +"18120",2016,26163,"MI","26","163",1760835,0.556043013683849,120129,0.133398643257318,11.6963214443654,12.2589449426365,13.1936323233342,6.20769230769231,565.418059232895,5862,1036755,1,1,1,0,9 +"18121",2016,26165,"MI","26","165",33086,0.973553768965726,1909,0.150305265066796,7.55433482372575,8.19533366716287,9.13744704645586,5.91538461538462,369.438346629544,69,18677,1,1,1,0,9 +"18122",2016,27001,"MN","27","001",15755,0.957791177403999,590,0.181085369723897,6.38012253689976,7.15773548424991,8.26642147298455,7.00769230769231,636.375206821942,50,7857,1,1,1,0,9 +"18123",2016,27003,"MN","27","003",346813,0.87293728897129,20309,0.137163255125961,9.91881941653311,10.7215257802118,11.5526460531652,3.73076923076923,268.911715238647,566,210478,1,1,1,0,9 +"18124",2016,27005,"MN","27","005",33728,0.893916034155598,1715,0.151565464895636,7.44716835960004,8.21365270303,9.09481728072064,4.56923076923077,343.795053787291,62,18034,1,1,1,0,9 +"18125",2016,27007,"MN","27","007",46054,0.745429278672862,4546,0.123311764450428,8.42200300441249,8.48322267184508,9.45946351224934,5.2,371.950980776007,95,25541,1,1,1,0,9 +"18126",2016,27009,"MN","27","009",39698,0.935765025945892,2433,0.118721346163535,7.79688034278352,8.5567984460086,9.34425918954197,4.40769230769231,315.524666353985,74,23453,1,1,1,0,9 +"18127",2016,27013,"MN","27","013",66398,0.925148347841802,10980,0.109958131269014,9.30383071506352,8.82966543267524,9.89353822168246,3.20769230769231,289.364623948601,118,40779,1,1,1,0,9 +"18128",2016,27015,"MN","27","015",25278,0.981288076588338,1798,0.147361341878313,7.49443021503157,7.84502441724148,8.83797149135721,4.18461538461538,216.669074100823,30,13846,1,1,1,0,9 +"18129",2016,27017,"MN","27","017",35550,0.908073136427567,1951,0.142925457102672,7.57609734062311,8.40737832540903,9.16303909885817,5.3,384.72636337405,80,20794,1,1,1,0,9 +"18130",2016,27019,"MN","27","019",100389,0.94015280558627,5602,0.127513970654155,8.63087895582005,9.55180015010843,10.3021965561473,3.3,179.97712440288,107,59452,1,1,1,0,9 +"18131",2016,27021,"MN","27","021",29030,0.85353083017568,1334,0.170444367895281,7.19593722647557,7.87891291229713,8.92038906008036,6.87692307692308,539.367230151944,82,15203,1,1,1,0,9 +"18132",2016,27023,"MN","27","023",12035,0.954133776485251,703,0.144412131283756,6.55535689181067,7.12044437239249,8.06965530688617,4.50769230769231,288.753799392097,19,6580,1,1,1,0,9 +"18133",2016,27025,"MN","27","025",54640,0.963158857979502,3054,0.140538067349927,8.02420748577858,8.821437352167,9.65123697191561,4.33846153846154,252.886871210505,83,32821,1,1,1,0,9 +"18134",2016,27027,"MN","27","027",63090,0.9270248850848,6793,0.110445395466793,8.8236479491913,8.94481110416553,9.82086652384779,3.43846153846154,298.030290715002,110,36909,1,1,1,0,9 +"18135",2016,27029,"MN","27","029",8838,0.879837067209776,425,0.145281737949762,6.05208916892442,6.88857245956536,7.73236922228439,9.53076923076923,490.509703561527,23,4689,1,1,1,0,9 +"18136",2016,27033,"MN","27","033",11382,0.938060094886663,633,0.141539272535582,6.45047042214418,7.05875815251866,7.96067260838812,7.18461538461538,307.692307692308,18,5850,1,1,1,0,9 +"18137",2016,27035,"MN","27","035",63757,0.971360007528585,3255,0.15152845962012,8.08794755464267,8.82834762005316,9.7605405432162,5.11538461538461,343.947949210353,120,34889,1,1,1,0,9 +"18138",2016,27037,"MN","27","037",417783,0.866234384836147,24684,0.134746985875443,10.113910539441,10.9095641422991,11.7505319224145,3.39230769230769,224.555683416443,562,250272,1,1,1,0,9 +"18139",2016,27039,"MN","27","039",20558,0.977283782469112,1116,0.12890358984337,7.01750614294126,7.89655270164304,8.65504025810836,3.71538461538462,204.900537863912,24,11713,1,1,1,0,9 +"18140",2016,27041,"MN","27","041",37162,0.981055917334912,1956,0.14948065227921,7.57865685059476,8.29804166137157,9.2098402469345,3.49230769230769,338.202137045388,69,20402,1,1,1,0,9 +"18141",2016,27043,"MN","27","043",13864,0.977495672244662,666,0.158972879399885,6.50128967054039,7.30787278076371,8.18979961872823,4.39230769230769,445.705024311183,33,7404,1,1,1,0,9 +"18142",2016,27045,"MN","27","045",20912,0.98311973986228,1082,0.146470925784239,6.98656645940643,7.7393592026891,8.60758219114392,4.02307692307692,269.88125224901,30,11116,1,1,1,0,9 +"18143",2016,27047,"MN","27","047",30441,0.953089583128018,1541,0.15193324792221,7.34018683532012,8.08394570229562,8.99442066575129,3.80769230769231,392.180523711838,65,16574,1,1,1,0,9 +"18144",2016,27049,"MN","27","049",46245,0.957703535517353,2443,0.153508487404044,7.80098207125774,8.5769703954521,9.4678467019179,3.72307692307692,279.190729337974,73,26147,1,1,1,0,9 +"18145",2016,27053,"MN","27","053",1236183,0.763831892203662,79131,0.127223072959262,11.2788599859555,11.9989193164636,12.8579784728179,3.33076923076923,246.549093730311,1894,768204,1,1,1,0,9 +"18146",2016,27055,"MN","27","055",18740,0.977748132337247,1004,0.169957310565635,6.91174730025167,7.62608275807238,8.56902634005625,3.91538461538462,264.475299896099,28,10587,1,1,1,0,9 +"18147",2016,27057,"MN","27","057",20709,0.955912888116278,915,0.166256217103675,6.81892406527552,7.6434829070772,8.58969988220299,6.53076923076923,386.882829771555,42,10856,1,1,1,0,9 +"18148",2016,27059,"MN","27","059",38763,0.968604081211465,2096,0.139566081056678,7.64778604544093,8.46505743699571,9.31370890495322,4.66923076923077,346.536825020836,79,22797,1,1,1,0,9 +"18149",2016,27061,"MN","27","061",45171,0.942994399061345,2209,0.166987669079719,7.70029520342012,8.49637805170232,9.40779681635441,8.55384615384615,427.798853821939,106,24778,1,1,1,0,9 +"18150",2016,27063,"MN","27","063",9962,0.967376028909857,529,0.163019474001205,6.2709884318583,7.02197642307216,7.86901937649902,4.50769230769231,237.226277372263,13,5480,1,1,1,0,9 +"18151",2016,27065,"MN","27","065",15896,0.975717161550075,849,0.16482133870156,6.74405918631135,7.49276030092238,8.37701116081637,6.47692307692308,467.445742904841,42,8985,1,1,1,0,9 +"18152",2016,27067,"MN","27","067",42672,0.925173415823022,2657,0.147286276715411,7.88495294575981,8.43337670532313,9.369052063131,3.8,256.690792795826,61,23764,1,1,1,0,9 +"18153",2016,27071,"MN","27","071",12607,0.953914491948917,606,0.182359006900928,6.40687998606931,7.16239749735572,8.14554963178358,8.48461538461538,579.833121199265,41,7071,1,1,1,0,9 +"18154",2016,27075,"MN","27","075",10501,0.979811446528902,451,0.183887248833444,6.11146733950268,6.98933526597456,7.9291264873068,6.40769230769231,453.673006456116,26,5731,1,1,1,0,9 +"18155",2016,27079,"MN","27","079",27752,0.977659267800519,1459,0.143413087345056,7.28550654852279,8.10892415597534,8.94806610345893,4.88461538461539,311.30876747141,49,15740,1,1,1,0,9 +"18156",2016,27083,"MN","27","083",25996,0.905831666410217,1809,0.125403908293584,7.5005294853953,8.0149968943483,8.88350158432321,3.56153846153846,270.701742208649,39,14407,1,1,1,0,9 +"18157",2016,27085,"MN","27","085",35746,0.976333016281542,2087,0.135539640798971,7.6434829070772,8.33278946841796,9.20623194393164,4.39230769230769,268.136451660956,54,20139,1,1,1,0,9 +"18158",2016,27087,"MN","27","087",5472,0.505665204678363,266,0.127741228070175,5.5834963087817,6.32435896238131,7.19593722647557,5.75384615384615,672.897196261682,18,2675,1,1,1,0,9 +"18159",2016,27091,"MN","27","091",19920,0.977058232931727,1058,0.159588353413655,6.96413561241824,7.60290046220476,8.5709235138372,4.11538461538461,364.758698092031,39,10692,1,1,1,0,9 +"18160",2016,27093,"MN","27","093",23081,0.982539751310602,1222,0.151509899917681,7.10824413973154,7.85476918349913,8.71028982137815,4.48461538461538,286.305073962144,36,12574,1,1,1,0,9 +"18161",2016,27095,"MN","27","095",25595,0.916194569251807,1276,0.138698964641532,7.15148546390474,8.00836557031292,8.85651849701986,5.94615384615385,481.07090566827,69,14343,1,1,1,0,9 +"18162",2016,27097,"MN","27","097",32907,0.981493299298022,1706,0.15200413285927,7.44190672805162,8.21419441485256,9.10052550596898,5.61538461538461,299.17319408181,55,18384,1,1,1,0,9 +"18163",2016,27099,"MN","27","099",39555,0.907268360510681,2303,0.129642270256605,7.74196789982069,8.41538192526955,9.26046298137939,3.16153846153846,349.846067730199,75,21438,1,1,1,0,9 +"18164",2016,27103,"MN","27","103",33766,0.939554581531718,2931,0.127791269324172,7.98309894071089,8.3228800217699,9.16440114003474,2.83846153846154,157.752786117755,31,19651,1,1,1,0,9 +"18165",2016,27105,"MN","27","105",21895,0.857684402831697,1441,0.123772550810687,7.27309259599952,7.80384330353877,8.6213730103259,3.76923076923077,291.20559114735,35,12019,1,1,1,0,9 +"18166",2016,27109,"MN","27","109",153446,0.861091198206535,8874,0.130488901633148,9.09088093193886,9.87796459530504,10.7303786031457,2.99230769230769,258.392176954091,232,89786,1,1,1,0,9 +"18167",2016,27111,"MN","27","111",57840,0.966908713692946,2933,0.163883125864454,7.98378106897745,8.63923381732526,9.61906682278672,4.36153846153846,376.733461076289,116,30791,1,1,1,0,9 +"18168",2016,27113,"MN","27","113",14242,0.949304872911108,851,0.138393484061227,6.74641212857337,7.44483327389219,8.28551330907974,5.75384615384615,292.290829375228,24,8211,1,1,1,0,9 +"18169",2016,27115,"MN","27","115",28873,0.927579399438922,1394,0.160114986319399,7.23993259132047,8.14293601043227,8.923591197573,5.83076923076923,431.238185255199,73,16928,1,1,1,0,9 +"18170",2016,27117,"MN","27","117",9249,0.944642664071792,487,0.138068980430317,6.18826412308259,6.84054652928869,7.76726399675731,3.8,481.372959397237,23,4778,1,1,1,0,9 +"18171",2016,27119,"MN","27","119",31692,0.941909630190584,2076,0.139814464218099,7.63819824428578,8.14148104145742,9.05298456119998,4.34615384615385,321.561548008575,57,17726,1,1,1,0,9 +"18172",2016,27121,"MN","27","121",10971,0.97949138638228,526,0.160422933187494,6.26530121273771,7.02019070831193,7.95717732345947,3.55384615384615,387.270584273447,23,5939,1,1,1,0,9 +"18173",2016,27123,"MN","27","123",541635,0.699611361895003,39961,0.123926629556805,10.5956592574744,11.0779955002075,12.0173003272408,3.58461538461538,305.682496140528,994,325174,1,1,1,0,9 +"18174",2016,27127,"MN","27","127",15222,0.907370910524241,791,0.141440021022205,6.67329796776765,7.35819375273303,8.26230094178745,4.10769230769231,288.256673768643,23,7979,1,1,1,0,9 +"18175",2016,27129,"MN","27","129",14598,0.966159747910673,779,0.160501438553226,6.65801104587075,7.32448997934853,8.24774388722552,5.26153846153846,386.340977068794,31,8024,1,1,1,0,9 +"18176",2016,27131,"MN","27","131",65862,0.911557499013088,6641,0.127402751207069,8.80101783354071,8.9300972286214,9.81033005404988,3.5,219.200960308969,84,38321,1,1,1,0,9 +"18177",2016,27135,"MN","27","135",15553,0.940783128656851,905,0.150710473863563,6.80793494369993,7.43897159239586,8.33327035325531,5.09230769230769,281.62667567872,25,8877,1,1,1,0,9 +"18178",2016,27137,"MN","27","137",200023,0.939062007869095,18458,0.153632332281788,9.82325315982552,9.98349949050551,10.9638093619159,5.71538461538462,373.610582815604,442,118305,1,1,1,0,9 +"18179",2016,27139,"MN","27","139",143393,0.874017560131945,7643,0.114391915923371,8.94154547524288,9.9607181859904,10.6601258308773,3.20769230769231,208.070323093468,178,85548,1,1,1,0,9 +"18180",2016,27141,"MN","27","141",93247,0.948373674220082,5610,0.116926013705535,8.63230599851674,9.47500967011889,10.1959332608369,4.06153846153846,192.527096406161,108,56096,1,1,1,0,9 +"18181",2016,27143,"MN","27","143",14832,0.976267529665588,805,0.143271305285868,6.69084227741856,7.46049030582534,8.29204763743135,4.26923076923077,301.350048216008,25,8296,1,1,1,0,9 +"18182",2016,27145,"MN","27","145",157279,0.905416489168929,17473,0.119698116086699,9.76841211133904,9.74870333873526,10.7071469558935,3.76153846153846,238.514644580356,218,91399,1,1,1,0,9 +"18183",2016,27147,"MN","27","147",36671,0.946851735703962,2033,0.135011316844373,7.61726781362835,8.35678966992321,9.21313645927818,3.57692307692308,195.093400965712,40,20503,1,1,1,0,9 +"18184",2016,27153,"MN","27","153",24408,0.973205506391347,1324,0.156751884627991,7.18841273649695,7.80994708647679,8.7509996908987,4.68461538461538,298.073983491287,39,13084,1,1,1,0,9 +"18185",2016,27157,"MN","27","157",21445,0.979016087666123,1149,0.153415714618792,7.04664727784876,7.76811037852599,8.69148257651293,3.69230769230769,317.592979523611,38,11965,1,1,1,0,9 +"18186",2016,27159,"MN","27","159",13552,0.972697756788666,755,0.13909386068477,6.62671774924902,7.2841348061952,8.14118979345769,5.9,633.535126003097,45,7103,1,1,1,0,9 +"18187",2016,27161,"MN","27","161",18808,0.955072309655466,1042,0.136856656741812,6.94889722231331,7.75491027202143,8.65381978894806,4.3,259.788457969939,28,10778,1,1,1,0,9 +"18188",2016,27163,"MN","27","163",252655,0.880417961251509,14609,0.138469454394332,9.58939305613251,10.3889953683178,11.2262828520931,3.33076923076923,226.142624193906,337,149021,1,1,1,0,9 +"18189",2016,27165,"MN","27","165",11002,0.9584620978004,727,0.144973641156153,6.58892647753352,7.08086789669078,7.96970358327866,4.86923076923077,290.498974709501,17,5852,1,1,1,0,9 +"18190",2016,27169,"MN","27","169",50912,0.946515556253928,7508,0.130676461345066,8.9237243977064,8.51258257885855,9.61226588978581,3.53846153846154,249.655081794889,76,30442,1,1,1,0,9 +"18191",2016,27171,"MN","27","171",132392,0.96253550063448,6899,0.116449634418998,8.83913175254611,9.84001512958056,10.5311357508634,3.86153846153846,213.07939180302,162,76028,1,1,1,0,9 +"18192",2016,29001,"MO","29","001",25313,0.937818512226919,5081,0.103464622921029,8.53326337159373,7.65444322647011,8.93721845085573,5.66923076923077,341.319769776469,51,14942,0,1,0,0,9 +"18193",2016,29003,"MO","29","003",17351,0.978560313526598,950,0.149616736787505,6.85646198459459,7.65775527113487,8.50065722277614,3.7,382.409177820268,38,9937,0,1,0,0,9 +"18194",2016,29007,"MO","29","007",25863,0.909484591888025,1612,0.132389900630244,7.38523092306657,8.07682603129881,9.05543941075822,4.24615384615385,319.02166688821,48,15046,0,1,0,0,9 +"18195",2016,29009,"MO","29","009",35204,0.958499034200659,1870,0.147199181911146,7.53369370984863,8.23959345430597,9.17554186643349,4.48461538461538,502.667213787444,98,19496,0,1,0,0,9 +"18196",2016,29011,"MO","29","011",11834,0.964593544025689,696,0.14661145850938,6.54534966033442,7.17472430983638,8.06934236681164,5.20769230769231,586.510263929619,38,6479,0,1,0,0,9 +"18197",2016,29013,"MO","29","013",16342,0.97172928650104,882,0.14386244033778,6.78219205600679,7.5109777520141,8.40760151478614,5.33846153846154,586.672570290016,53,9034,0,1,0,0,9 +"18198",2016,29015,"MO","29","015",18947,0.978994035995144,713,0.178550694041273,6.5694814204143,7.39510754656249,8.49125980938973,6.05384615384615,639.636851336016,62,9693,0,1,0,0,9 +"18199",2016,29017,"MO","29","017",12204,0.982464765650606,625,0.151098000655523,6.4377516497364,7.24850407237061,8.14815643992162,5.23076923076923,839.727812364268,58,6907,0,1,0,0,9 +"18200",2016,29019,"MO","29","019",176579,0.836130004134127,26469,0.108251830625386,10.1837295158902,9.91561373233397,10.9608958292802,3.29230769230769,238.976325293147,268,112145,0,1,0,0,9 +"18201",2016,29021,"MO","29","021",89072,0.903302945931381,6202,0.12909780851446,8.7326270996604,9.28748658115284,10.1373732003822,4.06923076923077,450.126716344517,238,52874,0,1,0,0,9 +"18202",2016,29023,"MO","29","023",42804,0.916830202784786,2498,0.133749182319409,7.82324569068552,8.52753948347038,9.42011495555144,5.68461538461538,608.231961339777,146,24004,0,1,0,0,9 +"18203",2016,29025,"MO","29","025",9043,0.97733053190313,482,0.13933429171735,6.1779441140506,6.93537044601511,7.79276172081653,4.69230769230769,506.688285366842,25,4934,0,1,0,0,9 +"18204",2016,29027,"MO","29","027",45082,0.930482232376558,3448,0.132868994277095,8.14554963178358,8.61685751452918,9.45704418769941,4.09230769230769,406.816932380429,111,27285,0,1,0,0,9 +"18205",2016,29029,"MO","29","029",44979,0.976855866070833,1942,0.177705151292826,7.57147364885127,8.32603268595508,9.41311793733752,5.86153846153846,493.202917771883,119,24128,0,1,0,0,9 +"18206",2016,29031,"MO","29","031",78540,0.890285204991087,8283,0.126037687802394,9.02196050059826,9.08227970190866,10.0640746171841,4.31538461538462,435.140284031867,201,46192,0,1,0,0,9 +"18207",2016,29033,"MO","29","033",8849,0.96779297095717,476,0.140467849474517,6.16541785423142,6.90975328164481,7.77401507725073,5.36153846153846,607.457059069962,29,4774,0,1,0,0,9 +"18208",2016,29035,"MO","29","035",6210,0.975684380032206,332,0.145571658615137,5.80513496891649,6.58479139238572,7.46565531013406,7.07692307692308,819.9121522694,28,3415,0,1,0,0,9 +"18209",2016,29037,"MO","29","037",102645,0.934482926591651,5733,0.135135661746797,8.65399423290838,9.46389672969859,10.3007188557172,4.13076923076923,378.47790507365,222,58656,0,1,0,0,9 +"18210",2016,29039,"MO","29","039",13884,0.979184673004898,663,0.137064246614808,6.49677499018586,7.24064969425547,8.16905314992734,4.96153846153846,538.625088589653,38,7055,0,1,0,0,9 +"18211",2016,29041,"MO","29","041",7512,0.965122470713525,361,0.158679446219382,5.88887795833288,6.62007320653036,7.5740450053722,4.33076923076923,637.429882712902,25,3922,0,1,0,0,9 +"18212",2016,29043,"MO","29","043",84271,0.971817113835127,4380,0.125048949223339,8.38480400337049,9.34285875167633,10.116095801935,3.9,275.699094131548,133,48241,0,1,0,0,9 +"18213",2016,29045,"MO","29","045",6734,0.986486486486487,327,0.151024651024651,5.78996017089725,6.62936325343745,7.48155570190952,7.33076923076923,488.732011946783,18,3683,0,1,0,0,9 +"18214",2016,29047,"MO","29","047",238837,0.889958423527343,14076,0.122975083425097,9.55222649844148,10.3943349335865,11.1913556338511,3.87692307692308,307.636373806161,440,143026,0,1,0,0,9 +"18215",2016,29049,"MO","29","049",20535,0.967859751643535,1076,0.144582420258096,6.98100574072173,7.78779687818117,8.66423293406555,4.2,405.697022011221,47,11585,0,1,0,0,9 +"18216",2016,29051,"MO","29","051",76748,0.850028665242091,4791,0.132785219158805,8.47449443688312,9.19299073364107,9.99030724448869,3.54615384615385,356.634941472487,163,45705,0,1,0,0,9 +"18217",2016,29053,"MO","29","053",17697,0.909193648641013,1327,0.133751483302255,7.19067603433221,7.63433723562832,8.45126704130007,4.93076923076923,328.185328185328,34,10360,0,1,0,0,9 +"18218",2016,29055,"MO","29","055",24269,0.980674935102394,1278,0.146112324364416,7.15305163493748,7.91461770904068,8.8155184239665,5.32307692307692,626.936126272312,85,13558,0,1,0,0,9 +"18219",2016,29057,"MO","29","057",7598,0.975914714398526,387,0.161489865754146,5.95842469302978,6.70441435496411,7.61972421378267,4.46923076923077,484.848484848485,20,4125,0,1,0,0,9 +"18220",2016,29059,"MO","29","059",16418,0.977037397977829,841,0.156961871117067,6.73459165997295,7.46565531013406,8.40737832540903,5.47692307692308,577.71358737918,52,9001,0,1,0,0,9 +"18221",2016,29061,"MO","29","061",8227,0.983225963291601,444,0.1399051902273,6.09582456243222,6.77536609093639,7.65964295456468,3.86153846153846,350.877192982456,15,4275,0,1,0,0,9 +"18222",2016,29063,"MO","29","063",12520,0.867571884984026,788,0.126038338658147,6.66949808985788,7.55066124310534,7.8188324438034,4.36923076923077,376.762275157997,31,8228,0,1,0,0,9 +"18223",2016,29065,"MO","29","065",15457,0.972116193310474,724,0.150676069094908,6.58479139238572,7.39694860262101,8.33351070898294,5.37692307692308,550.370902129696,46,8358,0,1,0,0,9 +"18224",2016,29067,"MO","29","067",13368,0.978007181328546,579,0.165394973070018,6.361302477573,7.16239749735572,8.17919979842309,6.06153846153846,730.439668492766,52,7119,0,1,0,0,9 +"18225",2016,29069,"MO","29","069",30622,0.877147149108484,1767,0.132094572529554,7.4770384723197,8.17695386822578,9.06519898630651,8.19230769230769,723.938223938224,120,16576,0,1,0,0,9 +"18226",2016,29071,"MO","29","071",102758,0.976001868467662,5962,0.147132096771054,8.69316127423802,9.36237452783168,10.3034709970751,4.34615384615385,445.80244439992,267,59892,0,1,0,0,9 +"18227",2016,29073,"MO","29","073",14751,0.981899532235103,725,0.160192529320046,6.58617165485467,7.31588350450979,8.28778002708843,4.30769230769231,554.11895086812,45,8121,0,1,0,0,9 +"18228",2016,29075,"MO","29","075",6623,0.980522421863204,359,0.136192057979767,5.88332238848828,6.49375383985169,7.49220304261874,3.70769230769231,449.943757030371,16,3556,0,1,0,0,9 +"18229",2016,29077,"MO","29","077",288114,0.925258751744101,30690,0.119654025836995,10.3316921476138,10.419181307699,11.3748580860111,3.76923076923077,424.76710048776,735,173036,0,1,0,0,9 +"18230",2016,29079,"MO","29","079",10107,0.973483724151578,605,0.129019491441575,6.40522845803084,6.87212810133899,7.88004820097158,4.55384615384615,507.61421319797,27,5319,0,1,0,0,9 +"18231",2016,29081,"MO","29","081",8587,0.98113427273786,419,0.141842319785723,6.03787091992214,6.80793494369993,7.7066129139642,4.22307692307692,540.05400540054,24,4444,0,1,0,0,9 +"18232",2016,29083,"MO","29","083",21634,0.969215124341315,1028,0.147591753720995,6.93537044601511,7.77443551030296,8.68828526625864,4.97692307692308,577.200577200577,68,11781,0,1,0,0,9 +"18233",2016,29085,"MO","29","085",9367,0.977901142308103,329,0.167289420305327,5.79605775076537,6.65286302935335,7.75619534394812,5.63076923076923,593.798108643061,27,4547,0,1,0,0,9 +"18234",2016,29089,"MO","29","089",10033,0.930628924548988,806,0.144921758197947,6.69208374250663,6.90675477864855,7.94093976232779,4.42307692307692,443.734469293575,25,5634,0,1,0,0,9 +"18235",2016,29091,"MO","29","091",40131,0.97401011686726,2263,0.133188806658194,7.72444664563354,8.42332197580617,9.32803451479283,6.32307692307692,505.050505050505,111,21978,0,1,0,0,9 +"18236",2016,29093,"MO","29","093",10127,0.972548632368915,508,0.155722326454034,6.23048144757848,7.07834157955767,7.94093976232779,7.13076923076923,911.960715538407,52,5702,0,1,0,0,9 +"18237",2016,29095,"MO","29","095",692812,0.715433624128912,43358,0.129071089992668,10.6772465095885,11.3581412511694,12.2646056697158,5.11538461538461,439.920287121146,1819,413484,0,1,0,0,9 +"18238",2016,29097,"MO","29","097",119304,0.929071950647086,8105,0.121219741165426,9.00023643416978,9.60689927061335,10.4555318921181,4.15384615384615,485.239423523942,334,68832,0,1,0,0,9 +"18239",2016,29099,"MO","29","099",223439,0.972569694637015,12227,0.142437085737047,9.41140190014419,10.2734291045752,11.1162169061345,4.27692307692308,486.173059768064,654,134520,0,1,0,0,9 +"18240",2016,29101,"MO","29","101",53722,0.910558058151223,8418,0.105413052380775,9.03812754933052,8.61013693705898,9.6567554664133,4.89230769230769,320.852377637195,106,33037,0,1,0,0,9 +"18241",2016,29105,"MO","29","105",35486,0.97111536944147,1964,0.133122921715606,7.58273848891441,8.32869258354557,9.20230820027892,5.44615384615385,536.65451599838,106,19752,0,1,0,0,9 +"18242",2016,29107,"MO","29","107",32532,0.956012541497602,1881,0.142567318332719,7.53955882930103,8.20467182895081,9.12249228140299,4.30769230769231,501.225824026151,92,18355,0,1,0,0,9 +"18243",2016,29109,"MO","29","109",38201,0.971283474254601,2115,0.131776655061386,7.65681009148038,8.41316512099219,9.25052216160901,4.36153846153846,532.144398101539,111,20859,0,1,0,0,9 +"18244",2016,29111,"MO","29","111",10091,0.951441878901992,868,0.131404221583589,6.76619171466035,6.95177216439891,7.92153563213355,4.50769230769231,445.235975066785,25,5615,0,1,0,0,9 +"18245",2016,29113,"MO","29","113",55146,0.963551300184964,3286,0.134715119863635,8.09742629859721,8.83331693749932,9.69670935530818,4.47692307692308,459.770114942529,150,32625,0,1,0,0,9 +"18246",2016,29115,"MO","29","115",12123,0.978800626907531,681,0.151365173636889,6.52356230614951,7.16780918431644,8.10137467122858,6.70769230769231,567.658791040196,37,6518,0,1,0,0,9 +"18247",2016,29117,"MO","29","117",15119,0.948938421853297,872,0.124545274158344,6.77078942390898,7.5963923040642,8.54461378699223,3.9,488.691896806455,43,8799,0,1,0,0,9 +"18248",2016,29119,"MO","29","119",22773,0.901330522987749,1301,0.130549334738506,7.1708884785125,7.93236215433975,8.75621009188674,4.32307692307692,474.81902389663,61,12847,0,1,0,0,9 +"18249",2016,29121,"MO","29","121",15145,0.961439418950149,760,0.138593595245956,6.63331843328038,7.40123126441302,8.28223006329669,4.76923076923077,389.790016346033,31,7953,0,1,0,0,9 +"18250",2016,29123,"MO","29","123",12209,0.974445081497256,659,0.144237857318372,6.49072353450251,7.24136628332232,8.15219801586179,5.48461538461538,576.701268742791,40,6936,0,1,0,0,9 +"18251",2016,29125,"MO","29","125",8823,0.978918735124107,459,0.152555820015868,6.12905021006055,6.88653164253051,7.80343505695217,5.01538461538462,482.606072793083,24,4973,0,1,0,0,9 +"18252",2016,29127,"MO","29","127",28721,0.928101389227395,1881,0.136346227499043,7.53955882930103,8.09468364869882,9.01821087419114,4.28461538461538,428.711415972563,70,16328,0,1,0,0,9 +"18253",2016,29131,"MO","29","131",24981,0.977743084744406,1316,0.142748488851527,7.18235211188526,7.93092537248339,8.84563325634019,5.17692307692308,480.665757945333,67,13939,0,1,0,0,9 +"18254",2016,29133,"MO","29","133",13755,0.738785896037804,850,0.121701199563795,6.74523634948436,7.47420480649612,8.14670905220332,6.61538461538461,586.868810368016,48,8179,0,1,0,0,9 +"18255",2016,29135,"MO","29","135",15990,0.946841776110069,904,0.117448405253283,6.80682936039218,7.67461749736436,8.29729437026692,4.31538461538462,346.39532366313,32,9238,0,1,0,0,9 +"18256",2016,29137,"MO","29","137",8629,0.954687681075443,423,0.158651060377796,6.04737217904628,6.79570577517351,7.72753511047545,4.83076923076923,408.338706211047,19,4653,0,1,0,0,9 +"18257",2016,29139,"MO","29","139",11459,0.96971812549088,546,0.154027402042063,6.3026189757449,7.12528309151071,8.04974629095219,4.56923076923077,658.307210031348,42,6380,0,1,0,0,9 +"18258",2016,29141,"MO","29","141",20106,0.973938127922013,939,0.154729931363772,6.84481547920826,7.54908271081229,8.56159277871292,5.87692307692308,629.891200610804,66,10478,0,1,0,0,9 +"18259",2016,29143,"MO","29","143",17851,0.823427258977088,976,0.144585737493698,6.88346258641309,7.6657534318617,8.55082137239622,9.26153846153846,711.532760154165,72,10119,0,1,0,0,9 +"18260",2016,29145,"MO","29","145",58221,0.928170247848714,3383,0.134109685508665,8.12651816878071,8.79421868367949,9.69738546707677,4.35384615384615,474.254742547425,154,32472,0,1,0,0,9 +"18261",2016,29147,"MO","29","147",22486,0.948101040647514,4594,0.10513208218447,8.43250638324904,7.61233683716775,8.78354947715327,4.64615384615385,226.326932905016,31,13697,0,1,0,0,9 +"18262",2016,29149,"MO","29","149",10753,0.970612852227285,541,0.154282525806752,6.29341927884648,6.94601399109923,7.95682712209011,5.98461538461538,548.187444739169,31,5655,0,1,0,0,9 +"18263",2016,29151,"MO","29","151",13612,0.988319130179254,815,0.139803114898619,6.70318811324086,7.37086016653672,8.20549161312024,3.39230769230769,232.318017552917,18,7748,0,1,0,0,9 +"18264",2016,29153,"MO","29","153",9204,0.980877879182964,356,0.172750977835724,5.87493073085203,6.77078942390898,7.77863014732581,7.27692307692308,505.050505050505,24,4752,0,1,0,0,9 +"18265",2016,29155,"MO","29","155",17092,0.71150245728996,1006,0.13374678212029,6.91373735065968,7.54644627374602,8.51398806046729,8.86153846153846,869.196523213907,82,9434,0,1,0,0,9 +"18266",2016,29157,"MO","29","157",19224,0.978984602580108,1141,0.139773200166459,7.03966034986208,7.73718007783463,8.59877317840866,3.55384615384615,493.962678375412,54,10932,0,1,0,0,9 +"18267",2016,29159,"MO","29","159",42274,0.938425509769598,2604,0.1324454747599,7.86480400332846,8.49269555981584,9.39474309497396,4.92307692307692,528.880189897139,127,24013,0,1,0,0,9 +"18268",2016,29161,"MO","29","161",44772,0.92267488608952,5377,0.12534619851693,8.58988587680968,8.44870019497094,9.41474952523414,4.73846153846154,457.055798895448,120,26255,0,1,0,0,9 +"18269",2016,29163,"MO","29","163",18508,0.909714717959801,1205,0.133239680138319,7.09423484592476,7.72046169459972,8.40110871239544,4.48461538461538,411.334552102377,45,10940,0,1,0,0,9 +"18270",2016,29165,"MO","29","165",98771,0.881048080914438,5776,0.130169786678276,8.66146668057266,9.51605880691406,10.3032698775088,3.6,258.354299994934,153,59221,0,1,0,0,9 +"18271",2016,29167,"MO","29","167",31415,0.970046156294764,2871,0.123412382619768,7.96241568012106,8.12118324207883,9.081711229379,4.84615384615385,375.700826541818,65,17301,0,1,0,0,9 +"18272",2016,29169,"MO","29","169",52554,0.800548007763443,7767,0.0781862465273814,8.95763926841965,8.72599438101457,9.52850315168155,5.41538461538462,377.277467640022,123,32602,0,1,0,0,9 +"18273",2016,29171,"MO","29","171",4825,0.985906735751295,234,0.146735751295337,5.4553211153577,6.17378610390194,7.10578612948127,4.56923076923077,514.037168841439,13,2529,0,1,0,0,9 +"18274",2016,29173,"MO","29","173",10240,0.97548828125,514,0.15634765625,6.24222326545517,7.08086789669078,7.9585769038139,4.02307692307692,643.814163911606,37,5747,0,1,0,0,9 +"18275",2016,29175,"MO","29","175",24992,0.916773367477593,1710,0.124119718309859,7.4442486494967,8.0684029585697,8.80911625812527,5.23076923076923,419.888029858704,63,15004,0,1,0,0,9 +"18276",2016,29177,"MO","29","177",22740,0.968557607739666,1248,0.148548812664908,7.12929754892937,7.89020821310996,8.77261030328074,4.90769230769231,523.237919359803,68,12996,0,1,0,0,9 +"18277",2016,29179,"MO","29","179",6359,0.970592860512659,310,0.160245321591445,5.73657229747919,6.56667242980324,7.46164039220858,6.45384615384615,506.471581316826,18,3554,0,1,0,0,9 +"18278",2016,29181,"MO","29","181",13773,0.974660567777536,691,0.141871778116605,6.53813982376767,7.38770923908104,8.2630748358026,7.03076923076923,710.245955543864,54,7603,0,1,0,0,9 +"18279",2016,29183,"MO","29","183",390724,0.914655869616404,24262,0.132305668451388,10.0966666193309,10.8485795182159,11.6727457564177,3.5,285.10947087289,664,232893,0,1,0,0,9 +"18280",2016,29185,"MO","29","185",9310,0.97765843179377,416,0.158539205155747,6.03068526026126,6.76041469108343,7.7698009960039,6.25384615384615,721.649484536082,35,4850,0,1,0,0,9 +"18281",2016,29186,"MO","29","186",17867,0.974701964515587,1002,0.163765601388034,6.90975328164481,7.59538727885397,8.51998927871824,4.63846153846154,519.930675909879,54,10386,0,1,0,0,9 +"18282",2016,29187,"MO","29","187",66395,0.940537691091197,4230,0.126636041870623,8.34995727204032,9.09211974058875,9.76864100976636,5.48461538461538,518.339339487585,210,40514,0,1,0,0,9 +"18283",2016,29189,"MO","29","189",998393,0.700606875248524,63505,0.142058287668283,11.0588739219384,11.6639283385068,12.6240952439519,4.18461538461538,383.388784498957,2224,580090,0,1,0,0,9 +"18284",2016,29195,"MO","29","195",23126,0.904523047651993,1797,0.132361843812159,7.49387388678356,7.86172707782398,8.76405326934776,4.64615384615385,343.186958895562,44,12821,0,1,0,0,9 +"18285",2016,29201,"MO","29","201",38781,0.867125654315257,2361,0.133415847966788,7.76684053708551,8.41205487329293,9.32963337816417,5.7,608.289073494031,134,22029,0,1,0,0,9 +"18286",2016,29203,"MO","29","203",8225,0.972036474164134,431,0.158662613981763,6.06610809010375,6.68710860786651,7.69666708152646,7.31538461538462,528.517947588637,24,4541,0,1,0,0,9 +"18287",2016,29205,"MO","29","205",6035,0.977630488815244,311,0.150952775476388,5.73979291217923,6.49526555593701,7.38087903556412,4.2,307.314074984634,10,3254,0,1,0,0,9 +"18288",2016,29207,"MO","29","207",29504,0.976918383947939,1606,0.136286605206074,7.38150189450671,8.15822991695949,9.03300635669327,6.38461538461539,530.408052558616,88,16591,0,1,0,0,9 +"18289",2016,29209,"MO","29","209",31503,0.978319525124591,1337,0.178713138431261,7.19818357710194,7.94661756324447,9.03312575255037,7.07692307692308,601.042624961668,98,16305,0,1,0,0,9 +"18290",2016,29213,"MO","29","213",54663,0.9549786875949,3845,0.133417485319137,8.25452888193974,8.70996000607173,9.65194452670022,7.46923076923077,500.978733286885,151,30141,0,1,0,0,9 +"18291",2016,29215,"MO","29","215",25844,0.944203683640303,1444,0.142857142857143,7.27517231945277,7.97522083865341,8.78874588193814,6.25384615384615,494.981438196068,72,14546,0,1,0,0,9 +"18292",2016,29217,"MO","29","217",20689,0.969984049494901,1206,0.136739330078786,7.09506437728713,7.74109909003537,8.6557370008643,4.83076923076923,539.727481861617,61,11302,0,1,0,0,9 +"18293",2016,29219,"MO","29","219",33875,0.957638376383764,1829,0.145594095940959,7.51152464839087,8.24905227417129,9.16941420536354,4.16923076923077,422.11683777164,81,19189,0,1,0,0,9 +"18294",2016,29221,"MO","29","221",24847,0.963214875035216,1330,0.140218134986115,7.1929342212158,8.05293303679757,8.83593778931984,6.33076923076923,651.041666666667,95,14592,0,1,0,0,9 +"18295",2016,29223,"MO","29","223",13229,0.979817068561494,602,0.15964925542369,6.40025744530882,7.16549347506085,8.20138595523861,5.33076923076923,688.515560451666,50,7262,0,1,0,0,9 +"18296",2016,29225,"MO","29","225",38158,0.971067666020232,2139,0.124901724409036,7.66809370908241,8.42485858021344,9.23727437321626,4.90769230769231,382.093494976178,81,21199,0,1,0,0,9 +"18297",2016,29229,"MO","29","229",18181,0.979594081733678,888,0.144656509542929,6.78897174299217,7.5422134631934,8.49658223751211,5.91538461538462,513.347022587269,50,9740,0,1,0,0,9 +"18298",2016,29510,"MO","29","510",312926,0.47449556764219,23094,0.131254673628909,10.0473281225118,10.6081185410374,11.5568275112574,5.41538461538462,594.59829193457,1217,204676,0,1,0,0,9 +"18299",2016,28001,"MS","28","001",31604,0.446842171876978,1914,0.153493228705227,7.5569505720129,8.27512163021651,9.07211225269274,8.43076923076923,664.5056726094,123,18510,0,1,0,0,9 +"18300",2016,28003,"MS","28","003",37266,0.863119197123383,2148,0.127810873181989,7.67229245562876,8.45595588194505,9.27565983809682,5.3,635.114791117802,135,21256,0,1,0,0,9 +"18301",2016,28005,"MS","28","005",12442,0.588249477575952,662,0.169104645555377,6.49526555593701,7.12367278520461,8.15908865466791,7.48461538461538,670.456201719866,46,6861,0,1,0,0,9 +"18302",2016,28007,"MS","28","007",18556,0.556316016382841,1065,0.1289070920457,6.97073007814353,7.61628356158038,8.56178407474411,6.83076923076923,759.92400759924,76,10001,0,1,0,0,9 +"18303",2016,28009,"MS","28","009",8246,0.631457676449187,491,0.135217074945428,6.19644412779452,6.88448665204278,7.76174498465891,6.86153846153846,696.643445218493,33,4737,0,1,0,0,9 +"18304",2016,28011,"MS","28","011",32533,0.341253496449759,2514,0.124857836658162,7.82963038915019,8.19973896063079,9.20049203592137,7.37692307692308,701.510121023883,131,18674,0,1,0,0,9 +"18305",2016,28013,"MS","28","013",14552,0.704301814183617,821,0.138056624518966,6.71052310945243,7.41457288135059,8.35279013512463,5.49230769230769,530.536705737199,43,8105,0,1,0,0,9 +"18306",2016,28015,"MS","28","015",10199,0.657025198548877,559,0.155407392881655,6.3261494731551,7.06646697013696,7.93522953981691,7.40769230769231,536.053951236383,31,5783,0,1,0,0,9 +"18307",2016,28017,"MS","28","017",17208,0.54044630404463,1193,0.128893537889354,7.08422642209792,7.57198844937744,8.49943646982698,6.69230769230769,626.862604048916,61,9731,0,1,0,0,9 +"18308",2016,28019,"MS","28","019",8297,0.696396287814873,437,0.142340605037966,6.07993319509559,6.83625927727707,7.73455884435476,5.79230769230769,575.858250276855,26,4515,0,1,0,0,9 +"18309",2016,28021,"MS","28","021",9173,0.125476943202878,1247,0.125694974381337,7.12849594568004,6.84587987526405,7.90396563403217,11.5692307692308,695.517774343122,36,5176,0,1,0,0,9 +"18310",2016,28023,"MS","28","023",15897,0.646159652764673,921,0.144241051770774,6.82546003625531,7.46908388492123,8.45169420918354,6.90769230769231,695.145195649736,62,8919,0,1,0,0,9 +"18311",2016,28025,"MS","28","025",19853,0.402911398781041,1294,0.138820329421246,7.16549347506085,7.73105314400713,8.70001462325184,8.28461538461539,585.469706378071,66,11273,0,1,0,0,9 +"18312",2016,28027,"MS","28","027",23876,0.222482827944379,1829,0.127868989780533,7.51152464839087,7.87321705486274,8.89384721767028,8.86923076923077,711.689884918231,94,13208,0,1,0,0,9 +"18313",2016,28029,"MS","28","029",28666,0.467069001604689,2045,0.14180562338659,7.6231530684769,8.07682603129881,9.04357715409808,6.65384615384615,650.557620817844,105,16140,0,1,0,0,9 +"18314",2016,28031,"MS","28","031",19171,0.625997600542486,1217,0.127275572479266,7.10414409298753,7.69938940625674,8.6294498737619,5.53846153846154,569.852941176471,62,10880,0,1,0,0,9 +"18315",2016,28033,"MS","28","033",175950,0.709792554703041,10797,0.113935777209434,9.28702359674714,10.1422288244734,10.8953680153599,4.30769230769231,399.095512349735,413,103484,0,1,0,0,9 +"18316",2016,28035,"MS","28","035",75593,0.598732686888998,8618,0.108316907650179,9.06160831817578,9.07680897935166,10.0765160624185,5.84615384615385,475.283089121055,217,45657,0,1,0,0,9 +"18317",2016,28037,"MS","28","037",7723,0.644956623073935,394,0.153567266606241,5.97635090929793,6.74641212857337,7.68294316987829,7.31538461538462,563.115908024402,24,4262,0,1,0,0,9 +"18318",2016,28039,"MS","28","039",23651,0.906092765633588,1543,0.118853325440785,7.34148385236316,7.96485088744731,8.77307495131822,7.56923076923077,499.254843517139,67,13420,0,1,0,0,9 +"18319",2016,28041,"MS","28","041",13547,0.740828227651879,1009,0.120764744961984,6.91671502035361,7.57967882309046,8.09651291750159,7.43076923076923,549.643316571161,47,8551,0,1,0,0,9 +"18320",2016,28043,"MS","28","043",21225,0.560471142520612,1377,0.135736160188457,7.22766249872865,7.81963630236759,8.75557997214314,5.23076923076923,662.800331400166,80,12070,0,1,0,0,9 +"18321",2016,28045,"MS","28","045",46708,0.894300762182067,2550,0.152179498158774,7.84384863815247,8.59248617545167,9.53827627757511,6.20769230769231,608.631501291036,165,27110,0,1,0,0,9 +"18322",2016,28047,"MS","28","047",202740,0.701247903719049,14710,0.125771924632534,9.59628281359548,10.1263110526394,11.0215756177049,5.62307692307692,538.719415581167,646,119914,0,1,0,0,9 +"18323",2016,28049,"MS","28","049",242263,0.262838320337815,19669,0.123601210254971,9.88679907124989,10.2681653877435,11.2492984035101,5.55384615384615,592.940846256403,845,142510,0,1,0,0,9 +"18324",2016,28051,"MS","28","051",18002,0.163815131652039,1536,0.126430396622598,7.33693691370762,7.54009032014532,8.58298093195424,11.2,621.803229365159,62,9971,0,1,0,0,9 +"18325",2016,28053,"MS","28","053",8569,0.233049363986463,532,0.140623176566694,6.27664348934164,6.79234442747081,7.83636976054512,11.6307692307692,621.517359622803,29,4666,0,1,0,0,9 +"18326",2016,28057,"MS","28","057",23426,0.920985230086229,1625,0.122769572270127,7.39326309476384,7.95014988765202,8.79890749208823,5.16923076923077,630.583289542827,84,13321,0,1,0,0,9 +"18327",2016,28059,"MS","28","059",141680,0.744219367588933,8554,0.13440146809712,9.05415428878685,9.79255599182885,10.6578474172641,6.70769230769231,452.145889200207,376,83159,0,1,0,0,9 +"18328",2016,28061,"MS","28","061",16587,0.456080062699705,1008,0.144269608729728,6.91572344863131,7.50494206839617,8.45892828328426,7.80769230769231,564.787661561855,52,9207,0,1,0,0,9 +"18329",2016,28063,"MS","28","063",7302,0.134483703095042,526,0.148726376335251,6.26530121273771,6.77992190747225,7.66902828858968,15.1153846153846,757.575757575758,33,4356,0,1,0,0,9 +"18330",2016,28065,"MS","28","065",11455,0.393539938891314,748,0.144391095591445,6.61740297797448,7.17395831975679,8.11402544235676,8.4,867.410161090459,56,6456,0,1,0,0,9 +"18331",2016,28067,"MS","28","067",68517,0.688938511610257,4139,0.130274238510151,8.32820949174873,8.97537724385663,9.87503663636211,6.24615384615385,545.406407201483,206,37770,0,1,0,0,9 +"18332",2016,28069,"MS","28","069",10041,0.34877004282442,816,0.13086345981476,6.70441435496411,7.02286808608264,7.92334821193015,8.89230769230769,621.338540742056,35,5633,0,1,0,0,9 +"18333",2016,28071,"MS","28","071",53614,0.729809378147499,8560,0.10314470101093,9.05485546913579,8.70863965598719,9.7291936874294,4.99230769230769,327.474838515848,109,33285,0,1,0,0,9 +"18334",2016,28073,"MS","28","073",61461,0.773124420364133,4064,0.113454060298401,8.30992298925832,9.05567289196404,9.86214458900175,4.62307692307692,337.277301781586,124,36765,0,1,0,0,9 +"18335",2016,28075,"MS","28","075",77497,0.547647005690543,5171,0.129734054221454,8.55082137239622,9.12923877053914,10.0291505705318,6.02307692307692,570.555730266409,254,44518,0,1,0,0,9 +"18336",2016,28077,"MS","28","077",12813,0.668929992975884,789,0.143916334972294,6.67076632084587,7.29979736675816,8.21527695893663,7.25384615384615,744.006613392119,54,7258,0,1,0,0,9 +"18337",2016,28079,"MS","28","079",22780,0.5013608428446,1451,0.12396839332748,7.28000825288419,7.92768504561578,8.75668242126653,6.2,639.658848614072,81,12663,0,1,0,0,9 +"18338",2016,28081,"MS","28","081",84859,0.686421004254116,5155,0.122120222958083,8.54772239645106,9.30109473524465,10.1517528926241,4.97692307692308,539.813815159602,265,49091,0,1,0,0,9 +"18339",2016,28083,"MS","28","083",29797,0.241030976272779,2497,0.119340873242273,7.82284529027977,8.12563098847706,9.10030226676725,9.24615384615385,818.241983033512,136,16621,0,1,0,0,9 +"18340",2016,28085,"MS","28","085",34385,0.684542678493529,2058,0.134651737676312,7.629489916394,8.38913252134872,9.2299469016151,5.8,599.136836760599,118,19695,0,1,0,0,9 +"18341",2016,28087,"MS","28","087",59552,0.541140515851693,4463,0.128962923159592,8.40357646462927,8.84159284680318,9.81109810324278,6.26153846153846,517.645712978322,181,34966,0,1,0,0,9 +"18342",2016,28089,"MS","28","089",103921,0.58230771451391,6692,0.129636935749271,8.80866806210672,9.54959444997195,10.3935388770856,4.4,354.347195825146,220,62086,0,1,0,0,9 +"18343",2016,28091,"MS","28","091",25120,0.669864649681529,1493,0.133678343949045,7.30854279753919,8.02812905943176,8.88253050843362,6.69230769230769,764.107956536979,109,14265,0,1,0,0,9 +"18344",2016,28093,"MS","28","093",35794,0.506341845001956,2477,0.147482818349444,7.81480342948936,8.34164861890131,9.25177018173932,6.15384615384615,561.824276474199,119,21181,0,1,0,0,9 +"18345",2016,28095,"MS","28","095",35906,0.682170110844984,2159,0.136411741770178,7.67740043051481,8.3478273457825,9.25282498358234,6.43076923076923,546.878849090999,111,20297,0,1,0,0,9 +"18346",2016,28097,"MS","28","097",10230,0.532062561094819,601,0.143792766373412,6.39859493453521,6.96790920180188,7.9755646584952,6.52307692307692,709.7232079489,40,5636,0,1,0,0,9 +"18347",2016,28099,"MS","28","099",29474,0.605482798398589,1756,0.122141548483409,7.47079377419506,8.155649270366,9.03085479000144,5.86153846153846,899.427636958299,143,15899,0,1,0,0,9 +"18348",2016,28101,"MS","28","101",21504,0.630208333333333,1448,0.118024553571429,7.27793857294566,7.86057078553866,8.71882705924257,6.02307692307692,721.868365180467,85,11775,0,1,0,0,9 +"18349",2016,28103,"MS","28","103",10891,0.272518593333945,813,0.138738407859701,6.70073110954781,7.0833878476253,8.08917567883756,8.42307692307692,710.823909531502,44,6190,0,1,0,0,9 +"18350",2016,28105,"MS","28","105",49612,0.584394904458599,11654,0.0908248004515037,9.36340474770302,8.399535147948,9.65117262392164,5.57692307692308,333.406724750731,106,31793,0,1,0,0,9 +"18351",2016,28107,"MS","28","107",34238,0.48767451369823,2313,0.13222150826567,7.74630066223144,8.29529885950246,9.23669014729897,7.49230769230769,595.207552978603,116,19489,0,1,0,0,9 +"18352",2016,28109,"MS","28","109",55110,0.857394302304482,3419,0.136599528216295,8.1371033896393,8.74878098951311,9.66026883679087,6.09230769230769,583.231294709029,181,31034,0,1,0,0,9 +"18353",2016,28111,"MS","28","111",12077,0.795561811708206,769,0.140266622505589,6.64509096950564,7.30114780585603,8.16479480424477,7.28461538461538,606.235565819861,42,6928,0,1,0,0,9 +"18354",2016,28113,"MS","28","113",39637,0.44869692459066,2638,0.127179150793451,7.87777633327726,8.44160720445964,9.34504607482847,6.92307692307692,742.046192375475,160,21562,0,1,0,0,9 +"18355",2016,28115,"MS","28","115",31516,0.831514151542074,1914,0.119939078563269,7.5569505720129,8.26204284396694,9.10264379652081,4.83076923076923,507.472674548294,91,17932,0,1,0,0,9 +"18356",2016,28117,"MS","28","117",25404,0.84644150527476,1856,0.12411431270666,7.52617891334615,7.97453284413023,8.88253050843362,5.56923076923077,595.980595980596,86,14430,0,1,0,0,9 +"18357",2016,28119,"MS","28","119",7361,0.277951365303627,479,0.140198342616492,6.17170059741091,6.7428806357919,7.72179177681754,9.93076923076923,808.176848110292,34,4207,0,1,0,0,9 +"18358",2016,28121,"MS","28","121",152093,0.773119078458575,8570,0.121498030810096,9.05602301159183,9.98326868754098,10.757051454502,4.03846153846154,379.230196065348,341,89919,0,1,0,0,9 +"18359",2016,28123,"MS","28","123",28378,0.584325886249912,1807,0.127211219959123,7.49942329059223,8.15421269491423,9.01018065705235,4.67692307692308,605.002182997568,97,16033,0,1,0,0,9 +"18360",2016,28125,"MS","28","125",4513,0.275204963438954,264,0.157544870374474,5.57594910314632,6.19847871649231,7.22766249872865,8.97692307692308,1036.26943005181,26,2509,0,1,0,0,9 +"18361",2016,28127,"MS","28","127",27001,0.630050738861524,1620,0.138809673715788,7.39018142822643,8.06337782236703,8.97322466309509,5.54615384615385,557.08480796959,85,15258,0,1,0,0,9 +"18362",2016,28129,"MS","28","129",15943,0.761086370193815,927,0.141692278743022,6.83195356556585,7.5005294853953,8.43098149459717,5.37692307692308,603.486812695574,54,8948,0,1,0,0,9 +"18363",2016,28131,"MS","28","131",18189,0.785749628896586,1426,0.129034031557535,7.26262860097424,7.67182679787878,8.5519810169019,6.86923076923077,728.387962430516,76,10434,0,1,0,0,9 +"18364",2016,28133,"MS","28","133",26519,0.251253818017271,1983,0.121837173347411,7.5923661285198,8.11132800328673,8.87528712810838,9.47692307692308,742.20682830282,120,16168,0,1,0,0,9 +"18365",2016,28135,"MS","28","135",14383,0.412222762984078,1272,0.117916985329903,7.14834574390007,7.59438124255182,8.20193435119422,6.92307692307692,545.018530630041,50,9174,0,1,0,0,9 +"18366",2016,28137,"MS","28","137",28310,0.670717061109149,2053,0.129282938890851,7.62705741701893,8.08856180527623,9.02244330084904,5.96923076923077,583.254938852305,93,15945,0,1,0,0,9 +"18367",2016,28139,"MS","28","139",22079,0.819874088500385,1450,0.126726753929073,7.27931883541462,7.90248743716286,8.75809807230909,5.66923076923077,662.145991224571,83,12535,0,1,0,0,9 +"18368",2016,28141,"MS","28","141",19455,0.964687740940632,1158,0.136417373425855,7.05444965813294,7.69893619981345,8.62497078358967,5.58461538461538,706.22764376777,77,10903,0,1,0,0,9 +"18369",2016,28143,"MS","28","143",10138,0.216512132570527,663,0.11521010061156,6.49677499018586,7.16317239084664,8.04846874366888,7.26153846153846,673.807878369039,39,5788,0,1,0,0,9 +"18370",2016,28145,"MS","28","145",28298,0.830447381440384,1715,0.118524277334087,7.44716835960004,8.20603776277881,8.99689959612336,4.52307692307692,510.712506228201,82,16056,0,1,0,0,9 +"18371",2016,28147,"MS","28","147",14568,0.545030203185063,879,0.135982976386601,6.77878489768518,7.46908388492123,8.32336569443608,7.86923076923077,609.225413402959,49,8043,0,1,0,0,9 +"18372",2016,28149,"MS","28","149",47017,0.491588148967395,2935,0.142161345896165,7.9844627322622,8.66077391989376,9.56731527092391,6.47692307692308,711.613234538919,194,27262,0,1,0,0,9 +"18373",2016,28151,"MS","28","151",47214,0.26276104545262,3418,0.138687677383827,8.13681086367554,8.5769703954521,9.58162802828276,9.18461538461538,760.271150893225,203,26701,0,1,0,0,9 +"18374",2016,28153,"MS","28","153",20476,0.589958976362571,1286,0.134205899589764,7.15929190479756,7.77569574991525,8.69617584694468,7.46153846153846,560.538116591928,65,11596,0,1,0,0,9 +"18375",2016,28155,"MS","28","155",9768,0.799140049140049,558,0.138820638820639,6.32435896238131,7.00850518208228,7.94129557090653,6.40769230769231,720.461095100865,40,5552,0,1,0,0,9 +"18376",2016,28157,"MS","28","157",9032,0.287090345438441,613,0.142050487156776,6.41836493593621,6.94889722231331,7.75405263903576,10.3769230769231,775.480059084195,42,5416,0,1,0,0,9 +"18377",2016,28159,"MS","28","159",18357,0.515552650215177,1028,0.13994661437054,6.93537044601511,7.6889133368648,8.54694614956558,7.23846153846154,636.693113919091,65,10209,0,1,0,0,9 +"18378",2016,28161,"MS","28","161",12469,0.596439169139466,721,0.147886759162724,6.58063913728495,7.28344822875663,8.20631072579402,6.39230769230769,802.522212668386,56,6978,0,1,0,0,9 +"18379",2016,28163,"MS","28","163",28003,0.40749205442274,1856,0.113523551048102,7.52617891334615,8.3351915834332,8.81892608709068,7.51538461538462,682.861977278221,113,16548,0,1,0,0,9 +"18380",2016,37001,"NC","37","001",160358,0.758627570810312,10603,0.128075930106387,9.2688922589258,9.83953552604361,10.7804551660138,4.73076923076923,447.246705646217,410,91672,0,1,0,0,9 +"18381",2016,37003,"NC","37","003",37120,0.918022629310345,2070,0.138820043103448,7.63530388625941,8.44009614103127,9.23004495525052,4.27692307692308,482.352395528964,104,21561,0,1,0,0,9 +"18382",2016,37005,"NC","37","005",10928,0.964677891654466,522,0.164165446559297,6.25766758788264,7.04228617193974,7.97349996402463,5.50769230769231,505.22061300101,30,5938,0,1,0,0,9 +"18383",2016,37007,"NC","37","007",25173,0.483851745918246,1702,0.138163905772057,7.43955930913332,8.05356916913454,8.82585367025321,5.8,581.50680554668,91,15649,0,1,0,0,9 +"18384",2016,37009,"NC","37","009",26595,0.978567399887197,1200,0.162323745064862,7.09007683577609,8.02256894698825,8.90082160491523,4.80769230769231,461.291616526274,69,14958,0,1,0,0,9 +"18385",2016,37011,"NC","37","011",17450,0.940343839541547,1157,0.140744985673352,7.05358572719368,7.74066440191724,8.38822281011928,5.04615384615385,360.702420503085,38,10535,0,1,0,0,9 +"18386",2016,37013,"NC","37","013",47407,0.724766384711119,2404,0.155462273503913,7.7848892956551,8.58821067865152,9.51170343148383,5.70769230769231,640.8276714021,166,25904,0,1,0,0,9 +"18387",2016,37015,"NC","37","015",19414,0.362676419079015,1210,0.16199649737303,7.09837563859079,7.64204440287326,8.60940767540405,6.61538461538461,666.948079358379,79,11845,0,1,0,0,9 +"18388",2016,37017,"NC","37","017",33657,0.611135870695546,1858,0.156757880975726,7.52725591937378,8.2872767558146,9.20008799551183,6.92307692307692,624.573557969873,119,19053,0,1,0,0,9 +"18389",2016,37019,"NC","37","019",126422,0.869279081172581,5143,0.179525715460917,8.54539184577492,9.44169015983749,10.4740150195482,6.46923076923077,527.264332206318,354,67139,0,1,0,0,9 +"18390",2016,37021,"NC","37","021",255222,0.908413067838979,14672,0.140634428066546,9.59369619449625,10.4267356963007,11.2783922975285,3.86923076923077,401.451753985143,615,153194,0,1,0,0,9 +"18391",2016,37023,"NC","37","023",89444,0.872154644246679,5563,0.147678994678234,8.62389281007529,9.24638296332311,10.1694223581052,4.87692307692308,567.310640907697,296,52176,0,1,0,0,9 +"18392",2016,37025,"NC","37","025",201737,0.766264988574233,11573,0.115987647283344,9.35643007784808,10.2774963926861,11.0178583543708,4.57692307692308,307.63525415729,365,118647,0,1,0,0,9 +"18393",2016,37027,"NC","37","027",81829,0.931197986044068,4561,0.146195114201567,8.4252971767117,9.18255799096373,10.0735256421632,5.19230769230769,563.988594431399,269,47696,0,1,0,0,9 +"18394",2016,37031,"NC","37","031",68875,0.911927404718693,3429,0.16670780399274,8.14002395246292,8.92252495730139,9.89907784404743,5.16923076923077,462.418885085075,181,39142,0,1,0,0,9 +"18395",2016,37033,"NC","37","033",22749,0.649654929887028,1257,0.161853268275529,7.13648320859025,7.85554467791566,8.74941540666365,5.45384615384615,537.875392200807,72,13386,0,1,0,0,9 +"18396",2016,37035,"NC","37","035",156517,0.853721959914897,9610,0.136483576863855,9.17055950196434,9.85608143013886,10.7347431352137,4.72307692307692,465.715418152992,423,90828,0,1,0,0,9 +"18397",2016,37037,"NC","37","037",69680,0.831199770378875,3106,0.150990241102181,8.04109100370863,9.00270100719794,9.87519095338101,4.23846153846154,338.378406736091,129,38123,0,1,0,0,9 +"18398",2016,37039,"NC","37","039",27860,0.952692031586504,1250,0.165721464465183,7.13089883029635,7.95892649305011,8.93274063486591,5.67692307692308,560.848705993648,83,14799,0,1,0,0,9 +"18399",2016,37041,"NC","37","041",14209,0.633119853613907,725,0.160813568864804,6.58617165485467,7.28824440102012,8.29229810706322,6.40769230769231,514.204910656897,40,7779,0,1,0,0,9 +"18400",2016,37043,"NC","37","043",10785,0.975428836346778,474,0.168103847936949,6.16120732169508,6.9782137426307,7.94767857130157,5.46153846153846,595.023440317346,33,5546,0,1,0,0,9 +"18401",2016,37045,"NC","37","045",97037,0.769077774457166,6380,0.138874862165978,8.76092337633884,9.29587566008245,10.2655579149918,5.48461538461538,587.052529532153,327,55702,0,1,0,0,9 +"18402",2016,37047,"NC","37","047",56324,0.639407712520418,3547,0.136424969817485,8.17385745477362,8.79543080504002,9.66262545072824,6.42307692307692,692.243792880657,225,32503,0,1,0,0,9 +"18403",2016,37049,"NC","37","049",102784,0.732594567247821,10506,0.125797789539228,9.25970180151391,9.30601412204446,10.2481050973116,5.25384615384615,523.665998753978,311,59389,0,1,0,0,9 +"18404",2016,37051,"NC","37","051",333723,0.539216655729452,35427,0.104263116416909,10.4752295202694,10.5648860347815,11.5171664592275,6.4,435.3369670678,857,196859,0,1,0,0,9 +"18405",2016,37053,"NC","37","053",25668,0.919744428860838,1283,0.156498363721365,7.15695636461564,8.05674377497531,8.9557061535706,5.07692307692308,444.530344027832,69,15522,0,1,0,0,9 +"18406",2016,37055,"NC","37","055",35905,0.953293413173653,1650,0.176326416933575,7.40853056689463,8.36497397843873,9.27837278236801,6.97692307692308,438.451746735185,93,21211,0,1,0,0,9 +"18407",2016,37057,"NC","37","057",164497,0.874271263305714,9191,0.139741150294534,9.12598002335811,9.89257826202809,10.7865730419792,4.81538461538462,465.701699181875,444,95340,0,1,0,0,9 +"18408",2016,37059,"NC","37","059",41927,0.913731008657905,2210,0.148901662413242,7.7007477945118,8.47574600150206,9.39996850395258,4.5,591.266154236,140,23678,0,1,0,0,9 +"18409",2016,37061,"NC","37","061",59284,0.707003576007017,3361,0.135618379326631,8.1199938277251,8.8758461777386,9.73512807075823,5.33076923076923,447.319107779726,148,33086,0,1,0,0,9 +"18410",2016,37063,"NC","37","063",308105,0.539069473069246,21961,0.115356777721881,9.99702343192729,10.6880737934129,11.5289267586972,4.51538461538462,282.970728765598,549,194013,0,1,0,0,9 +"18411",2016,37065,"NC","37","065",53281,0.398397177230157,3328,0.149809500572437,8.1101268019411,8.66475075577385,9.6982453123576,8.69230769230769,643.364064469059,194,30154,0,1,0,0,9 +"18412",2016,37067,"NC","37","067",371437,0.679523041592518,24804,0.129157838341361,10.1187602094698,10.7189851003735,11.644120380156,4.87692307692308,373.440539967359,810,216902,0,1,0,0,9 +"18413",2016,37069,"NC","37","069",64681,0.710023036131167,3874,0.143457893353535,8.26204284396694,9.00220857828241,9.85045590598432,5.22307692307692,428.530115413939,163,38037,0,1,0,0,9 +"18414",2016,37071,"NC","37","071",216727,0.803204030877556,12904,0.131280366544085,9.46529261980504,10.2292959895602,11.0984700650239,5.32307692307692,538.532673313491,693,128683,0,1,0,0,9 +"18415",2016,37073,"NC","37","073",11570,0.654969749351772,617,0.15885911840968,6.42486902390539,7.09090982207998,8.12769985281777,5.13076923076923,506.630904485174,34,6711,0,1,0,0,9 +"18416",2016,37075,"NC","37","075",8540,0.905737704918033,413,0.142505854800937,6.02344759296103,6.78558764500793,7.74673290775362,8.84615384615385,542.534722222222,25,4608,0,1,0,0,9 +"18417",2016,37077,"NC","37","077",58719,0.650641189393552,3718,0.144774263866891,8.22094116828139,8.90842413949658,9.743612184572,4.32307692307692,420.686560466682,150,35656,0,1,0,0,9 +"18418",2016,37079,"NC","37","079",21087,0.586807037511263,1310,0.142220325318917,7.1777824161952,7.95787735848981,8.58671925406485,5.29230769230769,417.730331863541,54,12927,0,1,0,0,9 +"18419",2016,37081,"NC","37","081",524520,0.58163463738275,38798,0.123564401738733,10.5661239778911,11.0782272015918,12.0065540639077,5.24615384615385,360.404965293741,1121,311039,0,1,0,0,9 +"18420",2016,37083,"NC","37","083",51814,0.405701161848149,3113,0.149920870807118,8.04334217044161,8.62694405537536,9.62364136585212,7.93076923076923,526.727155333537,155,29427,0,1,0,0,9 +"18421",2016,37085,"NC","37","085",130822,0.733187078625919,8292,0.106786320343673,9.02304647355567,9.78261851005514,10.5513758266905,5.78461538461538,373.04702732212,287,76934,0,1,0,0,9 +"18422",2016,37087,"NC","37","087",60493,0.971186748880036,3018,0.151521663663564,8.0123496393278,8.79664145894091,9.76146305250671,4.53846153846154,541.56432186085,183,33791,0,1,0,0,9 +"18423",2016,37089,"NC","37","089",113711,0.939478150750587,5349,0.146203973230382,8.58466490653125,9.46265430059017,10.3557726312882,4.27692307692308,391.459655189287,240,61309,0,1,0,0,9 +"18424",2016,37091,"NC","37","091",24211,0.364379827351204,1695,0.154888273925075,7.43543801981455,7.86863689418417,8.83608319099221,6.57692307692308,488.330341113106,68,13925,0,1,0,0,9 +"18425",2016,37093,"NC","37","093",53086,0.514542440568135,3273,0.105451531477226,8.09346227450118,8.9169084675438,9.70363319044987,6.6,360.999691453255,117,32410,0,1,0,0,9 +"18426",2016,37097,"NC","37","097",172600,0.838470451911935,10191,0.131234067207416,9.22926025682869,10.0110855631341,10.8478991601269,4.80769230769231,373.945219962018,382,102154,0,1,0,0,9 +"18427",2016,37099,"NC","37","099",42645,0.86162504396764,5121,0.129792472740063,8.54110501146255,8.35396813031327,9.42923490900098,5.44615384615385,429.828474108917,106,24661,0,1,0,0,9 +"18428",2016,37101,"NC","37","101",190937,0.80989541052808,10606,0.120196714099415,9.26917515769708,10.2083216838055,10.9561606092628,4.68461538461538,396.670452931989,447,112688,0,1,0,0,9 +"18429",2016,37103,"NC","37","103",9571,0.670985267997074,500,0.173545084108244,6.21460809842219,6.880384082186,7.93808872689695,5.26923076923077,396.539293439077,22,5548,0,1,0,0,9 +"18430",2016,37105,"NC","37","105",59653,0.757866326924044,3547,0.129783916986572,8.17385745477362,8.89288614119073,9.76094424575059,5.88461538461539,504.295305948925,172,34107,0,1,0,0,9 +"18431",2016,37107,"NC","37","107",57264,0.562150740430288,3465,0.150059374126851,8.150467911624,8.74846362994206,9.71872301409103,5.86923076923077,554.540103472846,179,32279,0,1,0,0,9 +"18432",2016,37109,"NC","37","109",81235,0.925967870991568,4282,0.144802117313966,8.36217546914963,9.24319470884713,10.0949753044463,4.71538461538462,449.08940397351,217,48320,0,1,0,0,9 +"18433",2016,37111,"NC","37","111",44876,0.937828683483376,2459,0.148364381852215,7.80751004221619,8.59415423255237,9.46506010672514,4.80769230769231,555.830509765104,146,26267,0,1,0,0,9 +"18434",2016,37113,"NC","37","113",34299,0.961806466660836,1580,0.155194028980437,7.36518012602101,8.10591119798651,9.11537013438496,5.4,534.428442844284,95,17776,0,1,0,0,9 +"18435",2016,37115,"NC","37","115",21402,0.971731613867863,1443,0.149892533408093,7.27447955877387,7.82604401351897,8.71899052471085,4.88461538461539,443.714050944947,54,12170,0,1,0,0,9 +"18436",2016,37117,"NC","37","117",23121,0.554517538168764,1257,0.164179750010813,7.13648320859025,7.743269700829,8.81892608709068,6.77692307692308,559.353635798633,72,12872,0,1,0,0,9 +"18437",2016,37119,"NC","37","119",1058056,0.591101983259865,70126,0.108080290646242,11.1580489029729,11.9633256970721,12.7508387202153,4.73846153846154,275.398489837886,1824,662313,0,1,0,0,9 +"18438",2016,37121,"NC","37","121",15003,0.973138705592215,734,0.157968406318736,6.59850902861452,7.36707705988101,8.33639048059155,6.13076923076923,645.778521884717,54,8362,0,1,0,0,9 +"18439",2016,37123,"NC","37","123",27288,0.776238639695104,1595,0.145448548812665,7.37462901521894,8.05832730658096,8.950662495934,5.17692307692308,419.534578826614,64,15255,0,1,0,0,9 +"18440",2016,37125,"NC","37","125",95458,0.839143916696348,4402,0.133524691487356,8.38981426208641,9.29578385379365,10.1771721153441,5.01538461538462,429.319784158494,218,50778,0,1,0,0,9 +"18441",2016,37127,"NC","37","127",94060,0.564979800127578,6038,0.142409100574102,8.70582811026678,9.30801139914963,10.2437383556607,6.57692307692308,553.43405833195,300,54207,0,1,0,0,9 +"18442",2016,37129,"NC","37","129",224922,0.828131530041526,21940,0.12798659090707,9.99606673382922,10.2403882687754,11.1738518476904,4.71538461538462,369.661460235824,506,136882,0,1,0,0,9 +"18443",2016,37131,"NC","37","131",20135,0.405314129625031,1122,0.171989073752173,7.02286808608264,7.56216163122565,8.63266244122235,7.26923076923077,513.097488522819,57,11109,0,1,0,0,9 +"18444",2016,37133,"NC","37","133",192745,0.786272017432359,34606,0.0770914939427741,10.4517823564166,9.88593439328854,10.8442757560107,5.52307692307692,345.402264111841,400,115807,0,1,0,0,9 +"18445",2016,37135,"NC","37","135",142849,0.781447542509923,17944,0.121939950577183,9.79501107620004,9.69812252257356,10.7391754198782,4.23076923076923,227.464003821395,200,87926,0,1,0,0,9 +"18446",2016,37137,"NC","37","137",12771,0.783885365280714,606,0.175162477488059,6.40687998606931,7.07242190053737,8.09315669772264,5.28461538461538,501.360836556367,35,6981,0,1,0,0,9 +"18447",2016,37139,"NC","37","139",39418,0.598457557461058,2722,0.135775534019991,7.90912218321141,8.42178300661158,9.36400521952033,6.29230769230769,530.958294082384,124,23354,0,1,0,0,9 +"18448",2016,37141,"NC","37","141",58829,0.815312175967635,3016,0.147257305070628,8.01168672912785,8.93353229607628,9.73737393458638,5.3,483.993235757187,166,34298,0,1,0,0,9 +"18449",2016,37143,"NC","37","143",13425,0.751657355679702,580,0.158435754189944,6.36302810354046,7.18462915271731,8.20056279700856,6.43846153846154,561.009817671809,40,7130,0,1,0,0,9 +"18450",2016,37145,"NC","37","145",39315,0.707465344016279,2201,0.15403789902073,7.69666708152646,8.45062594714412,9.3637479186055,5.47692307692308,526.223469566743,120,22804,0,1,0,0,9 +"18451",2016,37147,"NC","37","147",177291,0.6063533963935,23338,0.111071628001421,10.0578382123661,9.93933720542983,10.9673358487679,5.56153846153846,307.864796809234,335,108814,0,1,0,0,9 +"18452",2016,37149,"NC","37","149",20418,0.936771476148496,944,0.168772651581937,6.8501261661455,7.54274354536855,8.59618919764273,4.65384615384615,509.433962264151,54,10600,0,1,0,0,9 +"18453",2016,37151,"NC","37","151",143070,0.903299084364297,8149,0.136898021947299,9.00565049932022,9.7599058240581,10.6330148771888,4.92307692307692,484.091541710538,400,82629,0,1,0,0,9 +"18454",2016,37153,"NC","37","153",45034,0.627903361904339,3028,0.13589732202336,8.01565761455734,8.60428789826717,9.4801384753294,6.91538461538461,637.090235144214,165,25899,0,1,0,0,9 +"18455",2016,37155,"NC","37","155",133344,0.319864410847132,9341,0.125817434605232,9.14216859187285,9.69029433207509,10.5809117726308,7.93846153846154,666.341835995628,506,75937,0,1,0,0,9 +"18456",2016,37157,"NC","37","157",91326,0.788680113001774,5051,0.154972297045748,8.52734152246805,9.25311246382005,10.2095373998461,5.66923076923077,608.871043752003,323,53049,0,1,0,0,9 +"18457",2016,37159,"NC","37","159",139417,0.809442177065925,8866,0.138189747304848,9.089979015305,9.71577147142487,10.6118188684211,5.56923076923077,541.132196135824,440,81311,0,1,0,0,9 +"18458",2016,37161,"NC","37","161",66318,0.882792002171356,3611,0.148436321963871,8.19174002127746,8.93590352627442,9.86219669811825,6.68461538461538,567.455242966752,213,37536,0,1,0,0,9 +"18459",2016,37163,"NC","37","163",63200,0.674240506329114,3796,0.13246835443038,8.24170315972982,8.96392819372262,9.78069825644351,5.46153846153846,527.31015424527,187,35463,0,1,0,0,9 +"18460",2016,37165,"NC","37","165",35315,0.462183208268441,2618,0.133965736938978,7.87016594646984,8.33230835221912,9.20291285614739,9.13076923076923,721.070167586653,145,20109,0,1,0,0,9 +"18461",2016,37167,"NC","37","167",60829,0.850794851140081,3742,0.136382317644545,8.22737550683403,8.8509474519704,9.75510354676987,4.63846153846154,425.641318631092,149,35006,0,1,0,0,9 +"18462",2016,37169,"NC","37","169",45895,0.945680357337401,2511,0.156160801830265,7.82843635915759,8.5571828396324,9.51125944745996,4.76923076923077,548.814635056935,147,26785,0,1,0,0,9 +"18463",2016,37171,"NC","37","171",72024,0.941033544374097,4010,0.140494835054982,8.29654652030061,9.04546572878595,9.92793623293844,4.79230769230769,550.598530098567,224,40683,0,1,0,0,9 +"18464",2016,37173,"NC","37","173",14189,0.658397350059906,870,0.133906547325393,6.76849321164863,7.40000951716269,8.32820949174873,6.12307692307692,587.940955716788,47,7994,0,1,0,0,9 +"18465",2016,37175,"NC","37","175",33433,0.945742230730117,1831,0.15682110489636,7.51261754467451,8.08764028777898,9.09346942024477,4.87692307692308,538.836342791631,94,17445,0,1,0,0,9 +"18466",2016,37179,"NC","37","179",226501,0.835342890318365,13321,0.114193756318957,9.49709701635146,10.3585044394735,11.0963488521073,4.4,297.984762840993,388,130208,0,1,0,0,9 +"18467",2016,37181,"NC","37","181",44558,0.460680461421069,2958,0.138403878091476,7.99226864327075,8.51218064959269,9.50151633368222,7.14615384615385,674.861412388527,168,24894,0,1,0,0,9 +"18468",2016,37183,"NC","37","183",1048933,0.698029330758018,67097,0.111508552023818,11.1138946125713,11.9723735802764,12.7182044159152,4.31538461538462,222.283796681137,1444,649620,0,1,0,0,9 +"18469",2016,37185,"NC","37","185",19874,0.412146523095502,1118,0.168712891214652,7.01929665371504,7.63046126178363,8.58615939588096,7.31538461538462,602.943784358929,68,11278,0,1,0,0,9 +"18470",2016,37187,"NC","37","187",12081,0.48787352040394,688,0.164721463455012,6.53378883793334,7.03262426102801,8.15679704667565,7.42307692307692,452.556946749133,30,6629,0,1,0,0,9 +"18471",2016,37189,"NC","37","189",54176,0.960886739515653,11176,0.118668783225044,9.3215239009368,8.48838210956212,9.7279429800212,4.49230769230769,195.820546543913,67,34215,0,1,0,0,9 +"18472",2016,37191,"NC","37","191",124368,0.641587868261932,9117,0.130338993953429,9.1178960815849,9.58266226149109,10.5023240536248,5.83076923076923,516.61026313972,374,72395,0,1,0,0,9 +"18473",2016,37193,"NC","37","193",68573,0.93864932261969,3716,0.147813279279017,8.22040309993373,8.98155594077189,9.86666795439759,4.8,569.250186744971,221,38823,0,1,0,0,9 +"18474",2016,37195,"NC","37","195",81298,0.565585869271077,5011,0.139302319860267,8.51939077495972,9.14782646658694,10.1020104886681,8.16153846153846,502.90302389329,233,46331,0,1,0,0,9 +"18475",2016,37197,"NC","37","197",37650,0.948313413014608,2160,0.140478087649402,7.67786350067821,8.3719361787591,9.28284706276293,4.38461538461538,385.27595970849,83,21543,0,1,0,0,9 +"18476",2016,37199,"NC","37","199",17590,0.971859010801592,893,0.150028425241615,6.7945865808765,7.56475701290573,8.49412925181769,5.18461538461538,568.123127776056,55,9681,0,1,0,0,9 +"18477",2016,38003,"ND","38","003",10910,0.948945921173236,719,0.152703941338222,6.57786135772105,7.02731451403978,7.95682712209011,3.2,414.800066368011,25,6027,1,1,1,0,9 +"18478",2016,38005,"ND","38","005",6848,0.427278037383178,420,0.122079439252336,6.04025471127741,6.4393503711001,7.42117752859539,4.00769230769231,829.138288421676,28,3377,1,1,1,0,9 +"18479",2016,38015,"ND","38","015",94642,0.91932757126857,6294,0.130808731852666,8.74735207762435,9.37966111659289,10.2157402789221,2.59230769230769,271.351042559269,152,56016,1,1,1,0,9 +"18480",2016,38017,"ND","38","017",174562,0.894324079696612,20215,0.106752901547874,9.91418018207487,9.9866331336228,10.8835790334609,2.24615384615385,254.951595488899,281,110217,1,1,1,0,9 +"18481",2016,38035,"ND","38","035",70666,0.893796167888376,11421,0.109218011490674,9.34320904505061,8.8509474519704,9.94664282285006,2.36923076923077,247.368894485922,110,44468,1,1,1,0,9 +"18482",2016,38053,"ND","38","053",12604,0.84013011742304,797,0.11480482386544,6.68085467879022,7.36201055125973,8.09681747057232,3.78461538461538,256.271917992986,19,7414,1,1,1,0,9 +"18483",2016,38055,"ND","38","055",9650,0.919896373056995,402,0.172331606217617,5.99645208861902,6.96318998587024,7.82604401351897,3.49230769230769,550.389068134371,29,5269,1,1,1,0,9 +"18484",2016,38057,"ND","38","057",8634,0.956219596942321,434,0.176048181607598,6.0730445341004,6.81673588059497,7.7367436824535,4.40769230769231,239.139099242726,12,5018,1,1,1,0,9 +"18485",2016,38059,"ND","38","059",30775,0.935857026807474,1836,0.135402112103981,7.51534457118044,8.2537483433285,9.08296144264635,3.26153846153846,378.600823045267,69,18225,1,1,1,0,9 +"18486",2016,38061,"ND","38","061",10239,0.683855845297392,751,0.127551518702998,6.62140565176413,7.10249935577465,7.91132401896335,2.98461538461538,403.030791552475,25,6203,1,1,1,0,9 +"18487",2016,38067,"ND","38","067",7043,0.96067016896209,333,0.175209427800653,5.80814248998044,6.59578051396131,7.50163445788341,5,309.917355371901,12,3872,1,1,1,0,9 +"18488",2016,38071,"ND","38","071",11561,0.873280858057262,735,0.147997578064181,6.59987049921284,7.06219163228656,8.04846874366888,2.9,313.038034121146,20,6389,1,1,1,0,9 +"18489",2016,38077,"ND","38","077",16316,0.944594263299828,1553,0.151262564354008,7.34794382314869,7.39878627541995,8.39615486303918,2.73846153846154,266.269038236234,25,9389,1,1,1,0,9 +"18490",2016,38079,"ND","38","079",14732,0.195832202009232,946,0.11478414336139,6.85224256905188,7.3664451483276,8.28248300373056,10.7307692307692,678.319853900339,52,7666,1,1,1,0,9 +"18491",2016,38085,"ND","38","085",4455,0.143434343434343,314,0.0918069584736251,5.74939298590825,6.14846829591765,7.04664727784876,4.39230769230769,1230.76923076923,28,2275,1,1,1,0,9 +"18492",2016,38089,"ND","38","089",30937,0.931699906261111,2123,0.116300869509002,7.66058546170326,8.20166019080868,9.04298624230401,3.9,280.323450134771,52,18550,1,1,1,0,9 +"18493",2016,38093,"ND","38","093",21124,0.951666351069873,1619,0.152338572240106,7.38956395367764,7.76811037852599,8.64857226947262,2.47692307692308,372.771474878444,46,12340,1,1,1,0,9 +"18494",2016,38099,"ND","38","099",10813,0.960418015351891,554,0.154073800055489,6.31716468674728,7.00850518208228,7.94093976232779,3.80769230769231,442.402586353582,26,5877,1,1,1,0,9 +"18495",2016,38101,"ND","38","101",70164,0.896513881762727,7878,0.103714155407331,8.97182934353085,8.99355158629998,9.87693821730259,4.11538461538461,249.734079452435,108,43246,1,1,1,0,9 +"18496",2016,38105,"ND","38","105",34286,0.888759260339497,2453,0.112582395146707,7.80506704425849,8.35443894011481,9.12205545710861,4.35384615384615,285.523936423337,60,21014,1,1,1,0,9 +"18497",2016,31001,"NE","31","001",31723,0.958169151719573,2449,0.13687230085427,7.80343505695217,8.12207437536222,9.05508908670489,3.12307692307692,301.273306048204,53,17592,0,1,0,0,9 +"18498",2016,31013,"NE","31","013",11168,0.928904011461318,625,0.162696991404011,6.4377516497364,7.15539630189673,8.01730750768858,3.57692307692308,275.392839786166,17,6173,0,1,0,0,9 +"18499",2016,31019,"NE","31","019",49171,0.961155965914869,5753,0.114417034430864,8.65747673686329,8.62837672037685,9.56696531466487,2.48461538461538,271.68305935759,79,29078,0,1,0,0,9 +"18500",2016,31023,"NE","31","023",7985,0.982717595491547,415,0.152911709455229,6.0282785202307,6.74405918631135,7.63288550539513,3.19230769230769,278.422273781903,12,4310,0,1,0,0,9 +"18501",2016,31025,"NE","31","025",25629,0.977642514339225,1299,0.152990752662999,7.1693500166706,8.04846874366888,8.88100262425557,3.34615384615385,377.203209656402,55,14581,0,1,0,0,9 +"18502",2016,31033,"NE","31","033",10069,0.965041215612275,491,0.137650213526666,6.19644412779452,7.0833878476253,7.9298464297425,2.8,435.388366422849,25,5742,0,1,0,0,9 +"18503",2016,31037,"NE","31","037",10726,0.894462054820063,666,0.115793399216856,6.50128967054039,7.22037383672395,7.85631957140659,2.83076923076923,321.027287319422,18,5607,0,1,0,0,9 +"18504",2016,31041,"NE","31","041",10828,0.983376431473956,551,0.147765053564832,6.31173480915291,7.02997291170639,7.93808872689695,2.31538461538462,419.287211740042,24,5724,0,1,0,0,9 +"18505",2016,31043,"NE","31","043",20295,0.857994579945799,1474,0.11529933481153,7.29573507274928,7.7484600238997,8.61250337122056,4.14615384615385,275.482093663912,31,11253,0,1,0,0,9 +"18506",2016,31045,"NE","31","045",8922,0.904281551221699,1464,0.122169917058955,7.28892769452126,6.69826805411541,7.81802793853073,2.93846153846154,256.511444356748,13,5068,0,1,0,0,9 +"18507",2016,31047,"NE","31","047",23742,0.903377979951141,1490,0.122230646112375,7.3065313989395,7.92044650514261,8.71111388405354,2.93846153846154,305.498981670061,39,12766,0,1,0,0,9 +"18508",2016,31053,"NE","31","053",36702,0.957904201405918,2430,0.130401612991118,7.79564653633459,8.33710912956247,9.19502366786429,3.05384615384615,345.570190814844,69,19967,0,1,0,0,9 +"18509",2016,31055,"NE","31","055",555880,0.817509174642009,36771,0.117028855148593,10.5124647700093,11.1924860136136,12.0183083036175,3.3,308.34813929938,1017,329822,0,1,0,0,9 +"18510",2016,31067,"NE","31","067",21622,0.975996670058274,1172,0.153177319396911,7.06646697013696,7.7848892956551,8.68794811183873,3.27692307692308,466.239280659396,56,12011,0,1,0,0,9 +"18511",2016,31079,"NE","31","079",61404,0.921047488762947,3867,0.119764184743665,8.2602342916073,8.92532141694389,9.73240262766816,3.64615384615385,372.352804282057,128,34376,0,1,0,0,9 +"18512",2016,31081,"NE","31","081",9167,0.986800479982546,510,0.143667502999891,6.23441072571837,6.91671502035361,7.83002808253384,2.76923076923077,277.83290335384,14,5039,0,1,0,0,9 +"18513",2016,31089,"NE","31","089",10229,0.981523120539642,521,0.162674748264738,6.25575004175337,6.89162589705225,7.87092959675514,2.46923076923077,188.253012048193,10,5312,0,1,0,0,9 +"18514",2016,31095,"NE","31","095",7167,0.9792102692898,320,0.161713408678666,5.76832099579377,6.59030104819669,7.52671756135271,2.39230769230769,500.263296471827,19,3798,0,1,0,0,9 +"18515",2016,31101,"NE","31","101",8121,0.972047777367319,386,0.161310183474941,5.95583736946483,6.63725803128446,7.64012317269536,2.87692307692308,302.67753201397,13,4295,0,1,0,0,9 +"18516",2016,31107,"NE","31","107",8502,0.884380145848036,396,0.15266996000941,5.98141421125448,6.6682282484174,7.61184239958042,3.04615384615385,569.395017793594,24,4215,0,1,0,0,9 +"18517",2016,31109,"NE","31","109",310561,0.887996239064145,35838,0.114576524418713,10.4867640619604,10.5358225936993,11.4215664689482,2.76153846153846,249.458166133774,465,186404,0,1,0,0,9 +"18518",2016,31111,"NE","31","111",35528,0.96273361855438,1911,0.142845079936951,7.55538194424027,8.37170488466763,9.19278721272859,3.06923076923077,414.581121391375,82,19779,0,1,0,0,9 +"18519",2016,31119,"NE","31","119",34951,0.938370862064033,2377,0.13959543360705,7.77359446736019,8.25919936266628,9.18696938565294,2.73076923076923,444.2200908632,88,19810,0,1,0,0,9 +"18520",2016,31121,"NE","31","121",7852,0.97159959246052,434,0.144676515537443,6.0730445341004,6.7945865808765,7.65396918047877,3.59230769230769,276.43400138217,12,4341,0,1,0,0,9 +"18521",2016,31131,"NE","31","131",15930,0.972065285624608,858,0.142498430634024,6.75460409948796,7.49831587076698,8.36170828857584,3.36923076923077,206.138341731562,18,8732,0,1,0,0,9 +"18522",2016,31137,"NE","31","137",9199,0.980432655723448,559,0.135232090444614,6.3261494731551,6.88141130364254,7.78239033558746,2.48461538461538,322.515621850433,16,4961,0,1,0,0,9 +"18523",2016,31141,"NE","31","141",32986,0.95679985448372,2010,0.13542108773419,7.60589000105312,8.23668532271246,9.07474971766984,3.45384615384615,286.706732094613,52,18137,0,1,0,0,9 +"18524",2016,31145,"NE","31","145",10782,0.971526618438138,704,0.147560749397143,6.55677835615804,7.01301578963963,7.98378106897745,2.8,523.737117756378,31,5919,0,1,0,0,9 +"18525",2016,31147,"NE","31","147",8013,0.951578684637464,398,0.160489205041807,5.98645200528444,6.63331843328038,7.64587582518481,3.20769230769231,351.205806602669,15,4271,0,1,0,0,9 +"18526",2016,31151,"NE","31","151",14228,0.926553275231937,1223,0.120466685409053,7.10906213568717,7.42476176182321,8.23695004806146,3.06923076923077,427.726758082778,34,7949,0,1,0,0,9 +"18527",2016,31153,"NE","31","153",178457,0.908538191272968,11312,0.109432524361611,9.33361938813635,10.1391918858952,10.8640822099668,2.9,237.786219767519,251,105557,0,1,0,0,9 +"18528",2016,31155,"NE","31","155",20977,0.981265195213806,1109,0.142680078180865,7.01121398735037,7.74413662762799,8.65416864644332,3.06923076923077,325.593351041042,38,11671,0,1,0,0,9 +"18529",2016,31157,"NE","31","157",36439,0.937155245753177,2181,0.137078405005626,7.68753876620163,8.34188696951619,9.21900274505484,3.48461538461538,383.199717642313,76,19833,0,1,0,0,9 +"18530",2016,31159,"NE","31","159",17095,0.97800526469728,1439,0.128751096811933,7.27170370688737,7.53315880745556,8.4211227226655,2.83076923076923,309.036658141517,29,9384,0,1,0,0,9 +"18531",2016,31173,"NE","31","173",7141,0.384820053213836,506,0.105587452737712,6.22653666928747,6.50727771238501,7.48661331313996,4.75384615384615,775.193798449612,27,3483,0,1,0,0,9 +"18532",2016,31177,"NE","31","177",20217,0.980016817529802,1047,0.147301775733294,6.95368421087054,7.7848892956551,8.63657494843632,3.18461538461538,321.767110183494,37,11499,0,1,0,0,9 +"18533",2016,31185,"NE","31","185",13741,0.963466996579579,949,0.143512117022051,6.85540879860993,7.24921505711439,8.2495751500002,2.68461538461538,409.727729315358,31,7566,0,1,0,0,9 +"18534",2016,34001,"NJ","34","001",267212,0.724376150771672,18128,0.145951529122944,9.80521298326779,10.3157627525728,11.2999302447078,7.37692307692308,494.543722303358,789,159541,1,1,1,0,9 +"18535",2016,34003,"NJ","34","003",928381,0.749614651743196,54811,0.139126070007895,10.9116461827196,11.709453956977,12.5495098560241,4.13846153846154,224.455295096364,1260,561359,1,1,1,0,9 +"18536",2016,34005,"NJ","34","005",447092,0.75044509854795,28857,0.142194447675199,10.2701078768207,10.9123939281197,11.8072653250861,4.43846153846154,354.47273102447,962,271389,1,1,1,0,9 +"18537",2016,34007,"NJ","34","007",507119,0.707711602207766,31692,0.133471630918976,10.3638195620851,11.059487858313,11.9574638394645,5.46153846153846,409.515166803718,1250,305239,1,1,1,0,9 +"18538",2016,34009,"NJ","34","009",93825,0.926586730615508,5464,0.166330935251799,8.60593640125063,9.05310159554969,10.1624614608512,10.1307692307692,521.302489602699,272,52177,1,1,1,0,9 +"18539",2016,34011,"NJ","34","011",153003,0.72829290928936,9515,0.120291758985118,9.16062477973025,9.90927079729186,10.655893716971,7.42307692307692,486.066458144883,446,91757,1,1,1,0,9 +"18540",2016,34013,"NJ","34","013",793073,0.49938278065197,52526,0.120973731295858,10.869063564085,11.6112674079689,12.418345322421,5.96153846153846,376.301849755558,1825,484983,1,1,1,0,9 +"18541",2016,34015,"NJ","34","015",290795,0.847156931859213,18831,0.139637889234684,9.84325972698564,10.4955428715348,11.4039807559809,5.03076923076923,366.317060804074,643,175531,1,1,1,0,9 +"18542",2016,34017,"NJ","34","017",668673,0.663937380453525,42506,0.105743764141815,10.6574005214186,11.5589212523124,12.290620574054,4.63846153846154,238.039352887251,1075,451606,1,1,1,0,9 +"18543",2016,34019,"NJ","34","019",124976,0.924169440532582,8015,0.171456919728588,8.98907006504365,9.49371317283986,10.5417560715861,3.73076923076923,242.769965508092,183,75380,1,1,1,0,9 +"18544",2016,34021,"NJ","34","021",367929,0.654205023251769,28943,0.130397440810591,10.2730836575634,10.7566467729702,11.6227838500305,4.29230769230769,305.628094651286,687,224783,1,1,1,0,9 +"18545",2016,34023,"NJ","34","023",825298,0.621385245087229,54417,0.128799536652215,10.9044318840261,11.6404387852692,12.4363904005924,4.40769230769231,260.122718555811,1332,512066,1,1,1,0,9 +"18546",2016,34025,"NJ","34","025",623055,0.857059168131224,38418,0.15280031457897,10.5562813787469,11.1785849546052,12.142243206268,4.40769230769231,293.054684703837,1089,371603,1,1,1,0,9 +"18547",2016,34027,"NJ","34","027",493831,0.848193005299384,30036,0.143393185117986,10.3101519412198,11.0079327963967,11.9057375265106,3.87692307692308,222.699167737551,662,297262,1,1,1,0,9 +"18548",2016,34029,"NJ","34","029",591142,0.937737464094921,32364,0.132289703658343,10.3848019729277,10.9996802496855,11.9579189312118,5.17692307692308,408.506781471531,1262,308930,1,1,1,0,9 +"18549",2016,34031,"NJ","34","031",504001,0.762175075049454,35864,0.124158483812532,10.4874892858353,11.0609660551823,11.929910628365,6.10769230769231,285.413103146505,861,301668,1,1,1,0,9 +"18550",2016,34033,"NJ","34","033",63256,0.82566080687998,3936,0.146974200075882,8.27792025817214,8.90041269057708,9.83370865792821,6.35384615384615,477.750477750478,175,36630,1,1,1,0,9 +"18551",2016,34035,"NJ","34","035",330003,0.709335975733554,19404,0.142732035769372,9.87323450936511,10.6689088819661,11.5212308793333,4.03846153846154,221.13669229202,445,201233,1,1,1,0,9 +"18552",2016,34037,"NJ","34","037",142004,0.948367651615447,8788,0.166093912847525,9.0811424335045,9.67526864335514,10.6753072717474,4.66923076923077,374.437195626206,326,87064,1,1,1,0,9 +"18553",2016,34039,"NJ","34","039",552814,0.688929730433744,34203,0.127192871381694,10.4400686385018,11.2373827448568,12.0327722751971,5.12307692307692,273.499180694175,918,335650,1,1,1,0,9 +"18554",2016,34041,"NJ","34","041",106102,0.912904563533204,6512,0.154643644794632,8.78140190768238,9.38143244681859,10.3738973492847,4.55384615384615,351.397782289552,225,64030,1,1,1,0,9 +"18555",2016,35001,"NM","35","001",677883,0.858034498578663,45890,0.129827713631998,10.7340025073889,11.3516058160479,12.2338823461694,5.87692307692308,409.699594740256,1661,405419,1,1,1,0,9 +"18556",2016,35005,"NM","35","005",65684,0.93149016503258,4454,0.121018817368004,8.40155784781731,8.9169084675438,9.80813237171927,6.79230769230769,490.223385883795,176,35902,1,1,1,0,9 +"18557",2016,35006,"NM","35","006",27061,0.52932264143971,1802,0.130963379032556,7.49665243816828,8.1285852003745,8.9082888855571,8.3,538.61088495021,86,15967,1,1,1,0,9 +"18558",2016,35007,"NM","35","007",12261,0.946904820161488,683,0.171601011336759,6.52649485957079,7.05012252026906,8.08332860878638,6.1,675.574238102387,45,6661,1,1,1,0,9 +"18559",2016,35009,"NM","35","009",50334,0.875054635037947,4849,0.0995549727818175,8.48652777710535,8.6438258423496,9.52588077255636,5.12307692307692,427.408412483039,126,29480,1,1,1,0,9 +"18560",2016,35013,"NM","35","013",214664,0.929885774978571,23807,0.110372489099243,10.0777349340625,10.0494044274363,11.0252465440445,7.23846153846154,330.58679155501,396,119787,1,1,1,0,9 +"18561",2016,35015,"NM","35","015",57669,0.939135410705925,3865,0.125873519568572,8.25971696102152,8.80732226751107,9.67092477930543,6.59230769230769,485.911619094187,159,32722,1,1,1,0,9 +"18562",2016,35017,"NM","35","017",28061,0.944050461494601,1602,0.1508499340722,7.3790081276283,7.92588031673756,8.90299966186122,6.51538461538462,522.393257644355,75,14357,1,1,1,0,9 +"18563",2016,35025,"NM","35","025",70275,0.922205620775525,4898,0.105755958733547,8.49658223751211,9.06843112579349,9.83585090382032,9.33076923076923,435.406208380289,170,39044,1,1,1,0,9 +"18564",2016,35027,"NM","35","027",19423,0.935282912011533,886,0.174689800751686,6.78671695060508,7.43070708254597,8.55910259449345,6.02307692307692,692.794932699921,70,10104,1,1,1,0,9 +"18565",2016,35028,"NM","35","028",18241,0.898306013924675,888,0.156734828134422,6.78897174299217,7.68386398025643,8.54071438645758,4.29230769230769,297.704792086815,31,10413,1,1,1,0,9 +"18566",2016,35029,"NM","35","029",24373,0.939646329955278,1733,0.11471710499323,7.45760928971561,7.77863014732581,8.71308886823731,14.6538461538462,462.512171372931,57,12324,1,1,1,0,9 +"18567",2016,35031,"NM","35","031",73040,0.176820920043812,5532,0.112582146768894,8.61830469278465,9.03193115200214,9.96307634394778,9.46923076923077,784.398388025331,327,41688,1,1,1,0,9 +"18568",2016,35035,"NM","35","035",65723,0.843312082528186,5434,0.120855712612023,8.60043078998629,8.88405606174246,9.79400745191731,6.12307692307692,515.765406497581,194,37614,1,1,1,0,9 +"18569",2016,35037,"NM","35","037",8391,0.932665951614825,420,0.154570373018711,6.04025471127741,6.68461172766793,7.72356247227797,6.87692307692308,776.432975565198,34,4379,1,1,1,0,9 +"18570",2016,35039,"NM","35","039",39225,0.778508604206501,2300,0.146437221159975,7.74066440191724,8.38708450606922,9.30792070031505,7.53846153846154,673.219334859297,150,22281,1,1,1,0,9 +"18571",2016,35041,"NM","35","041",19163,0.925846683713406,2573,0.10243698794552,7.85282781228174,7.59789795052178,8.59285709533723,5.78461538461538,385.285753600587,42,10901,1,1,1,0,9 +"18572",2016,35043,"NM","35","043",140583,0.80022477824488,7799,0.138629848559214,8.9617507993305,9.77690340042668,10.6271396895343,6.67692307692308,369.877200769345,300,81108,1,1,1,0,9 +"18573",2016,35045,"NM","35","045",128011,0.561287701838123,8061,0.126301645952301,8.9947928972836,9.65033572298117,10.498029129342,8.88461538461539,538.382710573408,352,65381,1,1,1,0,9 +"18574",2016,35047,"NM","35","047",27999,0.923997285617344,1974,0.153755491267545,7.58781721999343,7.96346006663897,8.98306328938037,7.77692307692308,596.508853447193,95,15926,1,1,1,0,9 +"18575",2016,35049,"NM","35","049",148884,0.919299588941726,8129,0.160594825501733,9.00319319374657,9.73642892240809,10.6787215040942,5.34615384615385,422.325273269294,357,84532,1,1,1,0,9 +"18576",2016,35051,"NM","35","051",11129,0.944020127594573,451,0.166681642555486,6.11146733950268,6.72503364216684,7.89319886954461,8.53846153846154,1094.33962264151,58,5300,1,1,1,0,9 +"18577",2016,35053,"NM","35","053",16989,0.810759903466949,1294,0.139855200423804,7.16549347506085,7.47760424319759,8.43706714693695,7.43076923076923,626.659585767393,59,9415,1,1,1,0,9 +"18578",2016,35055,"NM","35","055",32925,0.889810174639332,1592,0.165132877752468,7.37274636640433,8.19808924895612,9.12956406194889,8.53076923076923,506.3012492433,92,18171,1,1,1,0,9 +"18579",2016,35057,"NM","35","057",15466,0.913940256045519,905,0.156924867451183,6.80793494369993,7.4759059693674,8.30696586536857,9.22307692307692,556.199304750869,48,8630,1,1,1,0,9 +"18580",2016,35061,"NM","35","061",75639,0.903634368513597,4765,0.139557635611259,8.4690528160883,9.06981313683921,9.96397098791564,7.27692307692308,464.576074332172,200,43050,1,1,1,0,9 +"18581",2016,32001,"NV","32","001",23957,0.869975372542472,1494,0.139124264306883,7.30921236569276,7.84345640437612,8.79860565085442,5.63076923076923,465.872957184057,63,13523,1,1,1,0,9 +"18582",2016,32003,"NV","32","003",2140240,0.730357810339027,134240,0.116523847792771,11.807384521701,12.5959570016713,13.3695343445048,5.90769230769231,363.830488733041,4723,1298132,1,1,1,0,9 +"18583",2016,32005,"NV","32","005",47805,0.937056793222466,1981,0.183014329045079,7.59135704669855,8.43923164994653,9.47983301522775,5.69230769230769,276.137148116898,72,26074,1,1,1,0,9 +"18584",2016,32007,"NV","32","007",52022,0.897408788589443,3300,0.123774556918227,8.10167774745457,8.78691493849102,9.59301439178353,4.53076923076923,372.116896031822,116,31173,1,1,1,0,9 +"18585",2016,32013,"NV","32","013",16814,0.911859164981563,989,0.133222314737719,6.89669433162271,7.6192334162268,8.41935983106747,5.56923076923077,540.595675234598,53,9804,1,1,1,0,9 +"18586",2016,32015,"NV","32","015",5700,0.910701754385965,302,0.125614035087719,5.71042701737487,6.45833828334479,7.32448997934853,6.33846153846154,340.346534653465,11,3232,1,1,1,0,9 +"18587",2016,32019,"NV","32","019",52770,0.918021603183627,2549,0.149630471859011,7.84345640437612,8.66423293406555,9.57129614009839,7.60769230769231,555.631306244887,163,29336,1,1,1,0,9 +"18588",2016,32021,"NV","32","021",4382,0.715883158375171,221,0.17001369237791,5.39816270151775,5.91620206260743,7.08422642209792,6.43846153846154,862.422997946612,21,2435,1,1,1,0,9 +"18589",2016,32023,"NV","32","023",43295,0.912969165030604,2026,0.17265273126227,7.61381868480863,8.24275634571448,9.3064683990704,7.43846153846154,711.853915196534,161,22617,1,1,1,0,9 +"18590",2016,32031,"NV","32","031",449990,0.870688237516389,29973,0.133296295473233,10.3080522554011,10.9009526591993,11.8027926483273,5.08461538461538,407.570315967879,1111,272591,1,1,1,0,9 +"18591",2016,32033,"NV","32","033",9746,0.876256925918325,583,0.13574799917915,6.36818718635049,7.15226885603254,7.71199650704767,4.71538461538462,336.304018833025,20,5947,1,1,1,0,9 +"18592",2016,32510,"NV","32","510",54323,0.910295823132007,3267,0.146530935331259,8.09162741160107,8.70450228972123,9.59240037163802,6.16923076923077,620.544806517312,195,31424,1,1,1,0,9 +"18593",2016,36001,"NY","36","001",307810,0.780163087618986,33179,0.131958026055034,10.4096724246525,10.4494100133395,11.4678862571599,4.13846153846154,306.795520785396,580,189051,1,1,1,0,9 +"18594",2016,36003,"NY","36","003",47063,0.964855619063808,4335,0.142022395512398,8.37447688921464,8.44139147799996,9.46575748384069,6.43076923076923,364.008645205324,96,26373,1,1,1,0,9 +"18595",2016,36005,"NY","36","005",1443678,0.454987885110115,113409,0.107735935575662,11.6387560322059,12.1084984046728,13.0376134414283,7.05384615384615,357.098458123904,3131,876789,1,1,1,0,9 +"18596",2016,36007,"NY","36","007",194575,0.88164461004754,19755,0.141719131440319,9.89116190284549,9.86433083733493,10.938840501565,5.51538461538462,398.95142854621,452,113297,1,1,1,0,9 +"18597",2016,36009,"NY","36","009",77711,0.93239052386406,4911,0.150802331716231,8.49923286603924,9.03049574505712,9.99515474106195,6.06923076923077,372.557928214448,164,44020,1,1,1,0,9 +"18598",2016,36011,"NY","36","011",77696,0.935955518945634,4860,0.152285831960461,8.48879371689454,9.07474971766984,9.99419625266159,5.13076923076923,337.155864794056,157,46566,1,1,1,0,9 +"18599",2016,36013,"NY","36","013",129310,0.949818266182043,8495,0.15091640244374,9.04723303410603,9.51296031679217,10.5030929886877,5.89230769230769,475.701389264285,352,73996,1,1,1,0,9 +"18600",2016,36015,"NY","36","015",85692,0.901286001026934,5282,0.143957428931522,8.57206009285708,9.19907717969747,10.1036899565488,5.81538461538462,406.034791608614,204,50242,1,1,1,0,9 +"18601",2016,36017,"NY","36","017",48325,0.975809622348681,2755,0.15840662183135,7.92117272158701,8.54985397365579,9.52500511575785,5.13076923076923,446.685878962536,124,27760,1,1,1,0,9 +"18602",2016,36019,"NY","36","019",80521,0.931868705058308,7842,0.140733473255424,8.96724918285228,9.14984699154722,10.0616444823308,5.45384615384615,330.315391503333,166,50255,1,1,1,0,9 +"18603",2016,36021,"NY","36","021",60801,0.917287544612753,3313,0.165424910774494,8.1056094022999,8.7558950816463,9.76846934085804,3.74615384615385,378.434861193482,134,35409,1,1,1,0,9 +"18604",2016,36023,"NY","36","023",47950,0.959144942648592,5891,0.128508863399374,8.68118104152169,8.48094405874112,9.56920292136033,5.8,343.265623894118,97,28258,1,1,1,0,9 +"18605",2016,36025,"NY","36","025",45399,0.961276680103086,2826,0.163549857926386,7.94661756324447,8.36776467792431,9.42205890562093,5.59230769230769,449.250586411164,113,25153,1,1,1,0,9 +"18606",2016,36027,"NY","36","027",293065,0.830583658915258,22273,0.147496289219115,10.0111304615515,10.4132526141048,11.3760513488082,4.23076923076923,290.58699693176,519,178604,1,1,1,0,9 +"18607",2016,36029,"NY","36","029",918992,0.809313900447447,62073,0.143462619913993,11.0360663907675,11.5151729375107,12.5370153366399,5.00769230769231,405.371996975161,2230,550112,1,1,1,0,9 +"18608",2016,36031,"NY","36","031",37695,0.952938055445019,2042,0.166096299243932,7.62168499872461,8.35302584520232,9.24869532585265,5.43846153846154,344.842831248066,78,22619,1,1,1,0,9 +"18609",2016,36033,"NY","36","033",51073,0.843341883186811,3781,0.137567795116794,8.23774380389093,8.74687531957003,9.48280727862148,5.76923076923077,348.911651728553,109,31240,1,1,1,0,9 +"18610",2016,36035,"NY","36","035",53643,0.962418209272412,3059,0.148537553828086,8.0258433441509,8.73327184500832,9.65342234365565,5.80769230769231,400.126023944549,127,31740,1,1,1,0,9 +"18611",2016,36037,"NY","36","037",58024,0.941782710602509,3624,0.152023300703157,8.19533366716287,8.74830491237962,9.72782378340624,4.66923076923077,391.849529780564,135,34452,1,1,1,0,9 +"18612",2016,36039,"NY","36","039",47481,0.912512373370401,3193,0.158063225290116,8.06871619271478,8.55120807000351,9.48508916901606,5.13076923076923,398.870455347688,113,28330,1,1,1,0,9 +"18613",2016,36043,"NY","36","043",62434,0.972370823589711,3719,0.150639074863055,8.22121009392507,8.81120518756289,9.78436612162827,5.55384615384615,421.881591899873,150,35555,1,1,1,0,9 +"18614",2016,36045,"NY","36","045",113280,0.892010946327684,11571,0.107238700564972,9.35625724687634,9.47654341275084,10.3441910960703,6.35384615384615,311.336126629423,214,68736,1,1,1,0,9 +"18615",2016,36047,"NY","36","047",2608146,0.503479483127095,169952,0.110797478362024,12.0432713232221,12.7916401833234,13.6503269047712,5.26923076923077,264.307252894765,4316,1632948,1,1,1,0,9 +"18616",2016,36049,"NY","36","049",26656,0.979404261704682,1541,0.155499699879952,7.34018683532012,8.00770001288403,8.9165060800392,6.82307692307692,423.314881146206,65,15355,1,1,1,0,9 +"18617",2016,36051,"NY","36","051",64013,0.946042210176058,6673,0.14572040054364,8.80582481290361,8.78691493849102,9.83102438080241,5.01538461538462,336.343173527205,130,38651,1,1,1,0,9 +"18618",2016,36053,"NY","36","053",71426,0.959048525746927,5873,0.151275445916053,8.67812085552252,8.91502927235991,9.95327721703864,5.35384615384615,360.493709265405,151,41887,1,1,1,0,9 +"18619",2016,36055,"NY","36","055",744150,0.784742323456292,52917,0.136757374185312,10.8764799272796,11.3199109416375,12.3335595570297,4.77692307692308,313.191443339387,1390,443818,1,1,1,0,9 +"18620",2016,36057,"NY","36","057",49242,0.947118313634702,2839,0.143008001299704,7.95120715647297,8.61812390999468,9.55180015010843,5.81538461538462,435.916675599385,122,27987,1,1,1,0,9 +"18621",2016,36059,"NY","36","059",1356067,0.761265483195152,87294,0.141555690094958,11.3770370109434,11.9899791838284,12.9104564580161,3.99230769230769,248.988717933319,1990,799233,1,1,1,0,9 +"18622",2016,36061,"NY","36","061",1636721,0.660939158231611,114770,0.113120684588271,11.6506854046747,12.3633883115006,13.2573102677391,4.5,186.365490061991,2093,1123062,1,1,1,0,9 +"18623",2016,36063,"NY","36","063",211555,0.893365791401763,12965,0.156692113162062,9.47000869797276,10.0551780657766,11.0570140720816,5.90769230769231,469.550822907713,590,125652,1,1,1,0,9 +"18624",2016,36065,"NY","36","065",230372,0.877137846613304,15824,0.139374576771483,9.66928305386249,10.1337655927509,11.0834954794082,4.94615384615385,383.133161222734,512,133635,1,1,1,0,9 +"18625",2016,36067,"NY","36","067",464139,0.818601755077682,33033,0.138833409819041,10.4052623407817,10.8434557477646,11.8536244704906,4.58461538461538,358.589620156588,987,275245,1,1,1,0,9 +"18626",2016,36069,"NY","36","069",109348,0.948906244284303,7115,0.151342502834986,8.86996051052395,9.37177871785371,10.3697027647836,4.38461538461538,355.502422450135,226,63572,1,1,1,0,9 +"18627",2016,36071,"NY","36","071",377894,0.826599522617454,28924,0.125424060715439,10.2724269792948,10.707258871554,11.5926881334364,4.4,307.312400985942,677,220297,1,1,1,0,9 +"18628",2016,36073,"NY","36","073",41270,0.911485340440998,2737,0.15146595590017,7.91461770904068,8.43511508038063,9.4180859811103,5.8,401.782162463203,101,25138,1,1,1,0,9 +"18629",2016,36075,"NY","36","075",118907,0.971742622385562,8858,0.144087396032193,9.08907628448314,9.46296505261256,10.4601561446104,6.57692307692308,381.99681434391,271,70943,1,1,1,0,9 +"18630",2016,36077,"NY","36","077",60135,0.953255175854328,6893,0.147933815581608,8.83826168288565,8.63408694288774,9.78211056636953,4.99230769230769,322.672758423758,113,35020,1,1,1,0,9 +"18631",2016,36079,"NY","36","079",98753,0.932953935576641,6184,0.156218038945652,8.72972059026726,9.34189481171648,10.3023643385674,4.05384615384615,274.248707231245,166,60529,1,1,1,0,9 +"18632",2016,36081,"NY","36","081",2306249,0.493251595989852,140679,0.127754201736239,11.8542359782317,12.6756949520817,13.5132399213331,4.49230769230769,223.367500062554,3303,1478729,1,1,1,0,9 +"18633",2016,36083,"NY","36","083",159311,0.882594422230731,11039,0.143405037944649,9.30918973601835,9.82709235128242,10.7952191629096,4.34615384615385,324.995886128024,316,97232,1,1,1,0,9 +"18634",2016,36085,"NY","36","085",474160,0.776921292390754,29711,0.135977307238063,10.299272626591,10.9923524897494,11.8932163445297,5.17692307692308,319.298587704393,917,287192,1,1,1,0,9 +"18635",2016,36087,"NY","36","087",323231,0.789308574981979,21508,0.121411622028828,9.97618023792957,10.4756246210252,11.3882801879005,4.24615384615385,232.283442316278,411,176939,1,1,1,0,9 +"18636",2016,36089,"NY","36","089",109506,0.947226635983416,9565,0.136321297463153,9.16586588187435,9.37737907190562,10.3201892925703,6.70769230769231,359.41000746826,231,64272,1,1,1,0,9 +"18637",2016,36091,"NY","36","091",227189,0.944513158647646,13586,0.142203187654332,9.51679512975125,10.2482113653551,11.1259533033712,3.88461538461538,292.834343611819,400,136596,1,1,1,0,9 +"18638",2016,36093,"NY","36","093",154473,0.808626750305879,10259,0.137726334051906,9.23591064808771,9.82844067821322,10.7437392181247,4.4,378.544078021534,347,91667,1,1,1,0,9 +"18639",2016,36095,"NY","36","095",31318,0.968803882751133,2101,0.158598888817932,7.650168700845,8.0845624152353,9.0980671294934,5.50769230769231,353.727961089924,64,18093,1,1,1,0,9 +"18640",2016,36097,"NY","36","097",17976,0.975912327547842,981,0.16805740987984,6.88857245956536,7.56320059235807,8.56693528331105,6.13846153846154,435.771125426298,46,10556,1,1,1,0,9 +"18641",2016,36099,"NY","36","099",34725,0.926537077033837,2427,0.150007199424046,7.7944112057266,8.23695004806146,9.14899674173513,4.83076923076923,452.728411115927,94,20763,1,1,1,0,9 +"18642",2016,36101,"NY","36","101",96975,0.959680329981954,5578,0.149533384893014,8.62658556818743,9.2983512492989,10.2226319541778,5.93076923076923,411.47087361196,229,55654,1,1,1,0,9 +"18643",2016,36103,"NY","36","103",1486699,0.858460253218708,98318,0.139515127137369,11.4959624022918,12.0858635443553,13.00335233806,4.41538461538462,306.716130016239,2735,891704,1,1,1,0,9 +"18644",2016,36105,"NY","36","105",74913,0.86493665985877,4396,0.148558995100984,8.38845031552351,9.03812754933052,9.94645125196824,4.86923076923077,475.691915513474,209,43936,1,1,1,0,9 +"18645",2016,36107,"NY","36","107",48858,0.974886405501658,2663,0.158582013181055,7.88720858581393,8.58802437217683,9.54666974124948,5.21538461538462,364.441903673003,102,27988,1,1,1,0,9 +"18646",2016,36109,"NY","36","109",103042,0.834019137827294,18761,0.11419615302498,9.83953552604361,9.24106354461902,10.3956195338549,4.23076923076923,241.174519911971,160,66342,1,1,1,0,9 +"18647",2016,36111,"NY","36","111",179045,0.891831662431232,11820,0.153453042531207,9.37754829096009,9.9312972531754,10.8813436400684,4.49230769230769,383.735517673972,416,108408,1,1,1,0,9 +"18648",2016,36113,"NY","36","113",64525,0.969903138318481,3579,0.159085625726463,8.18283871076603,8.82350072799118,9.86125831831839,5.35384615384615,388.919755536154,147,37797,1,1,1,0,9 +"18649",2016,36115,"NY","36","115",61812,0.952937940852909,3705,0.151572510192196,8.21743853773019,8.8967249174979,9.76583338723733,4.73846153846154,370.430020937349,138,37254,1,1,1,0,9 +"18650",2016,36117,"NY","36","117",90823,0.948779494180989,5282,0.154234059654493,8.57206009285708,9.19998695989669,10.1856921509795,5.06153846153846,381.335236878687,203,53234,1,1,1,0,9 +"18651",2016,36119,"NY","36","119",970461,0.750559785504003,60830,0.133449978927541,11.0158383673148,11.7208985240663,12.5779396042074,4.36153846153846,222.961538259605,1274,571399,1,1,1,0,9 +"18652",2016,36121,"NY","36","121",40450,0.929443757725587,2409,0.147688504326329,7.78696700261487,8.5143892640835,9.28581883315209,5.41538461538462,355.704960325216,91,25583,1,1,1,0,9 +"18653",2016,36123,"NY","36","123",25080,0.97603668261563,1975,0.152711323763955,7.58832367733522,7.75362354655975,8.8685540405312,4.49230769230769,343.391539416965,47,13687,1,1,1,0,9 +"18654",2016,39001,"OH","39","001",27817,0.982312974080598,1464,0.143509364776935,7.28892769452126,8.13593277200489,8.97752520096524,7.56153846153846,671.523598352867,106,15785,1,1,1,0,9 +"18655",2016,39003,"OH","39","003",103691,0.844933504354283,7348,0.137032143580446,8.90218344633502,9.38706295036966,10.258746494417,5.04615384615385,496.831432192649,294,59175,1,1,1,0,9 +"18656",2016,39005,"OH","39","005",53487,0.977078542449567,4010,0.139622712060875,8.29654652030061,8.66613030419061,9.62125725876259,5.1,434.042269039431,130,29951,1,1,1,0,9 +"18657",2016,39007,"OH","39","007",98172,0.943364706841054,5595,0.149401051216233,8.62962862074603,9.31352852977235,10.2200485845383,6.13846153846154,529.334702404136,299,56486,1,1,1,0,9 +"18658",2016,39009,"OH","39","009",66402,0.925182976416373,12268,0.109575012800819,9.41474952523414,8.78201596972194,9.9127445737988,6.46923076923077,309.882341548443,128,41306,1,1,1,0,9 +"18659",2016,39011,"OH","39","011",45772,0.980228087040112,2674,0.143581228698768,7.89133075766189,8.56712556016445,9.44406771683004,3.75384615384615,319.588432457713,82,25658,1,1,1,0,9 +"18660",2016,39013,"OH","39","013",68642,0.945470703068092,4074,0.157775123102474,8.31238059678675,8.98857087621512,9.85613385615266,7.51538461538462,556.672715680024,227,40778,1,1,1,0,9 +"18661",2016,39015,"OH","39","015",43660,0.980852038479157,2387,0.144182317911131,7.77779262633883,8.58578598288185,9.43308384326905,5.81538461538462,618.984864821692,155,25041,1,1,1,0,9 +"18662",2016,39017,"OH","39","017",378527,0.867311975103493,33277,0.128207499068759,10.4126217466411,10.7233114359226,11.627949141539,4.52307692307692,461.877064775773,1022,221271,1,1,1,0,9 +"18663",2016,39019,"OH","39","019",27630,0.982120883098082,1512,0.160224393774882,7.32118855673948,8.03915739047324,8.95622201636254,6.88461538461539,409.050236482168,64,15646,1,1,1,0,9 +"18664",2016,39021,"OH","39","021",38760,0.957301341589267,2410,0.142053663570691,7.7873820264847,8.39162996844089,9.30792070031505,4.52307692307692,498.227029938507,111,22279,1,1,1,0,9 +"18665",2016,39023,"OH","39","023",134805,0.882118615778346,8265,0.140350877192982,9.01978501025513,9.59696239228287,10.5636723953932,5.26923076923077,653.646660315444,494,75576,1,1,1,0,9 +"18666",2016,39025,"OH","39","025",203332,0.962804674129011,11642,0.144232093325202,9.36237452783168,10.1379666135141,11.0131386883195,4.47692307692308,466.369055041524,561,120291,1,1,1,0,9 +"18667",2016,39027,"OH","39","027",41923,0.95773203253584,2822,0.141807599646972,7.94520113241276,8.49739856408806,9.3998030369215,5.86923076923077,428.274428274428,103,24050,1,1,1,0,9 +"18668",2016,39029,"OH","39","029",103926,0.962492542770818,5606,0.157535169255047,8.63159273172473,9.43300380805352,10.2711815629573,6.73076923076923,513.857578570481,310,60328,1,1,1,0,9 +"18669",2016,39031,"OH","39","031",36651,0.975116640746501,1970,0.145071075823306,7.58578882173203,8.32579052588609,9.23552067050648,7.12307692307692,435.783185624051,89,20423,1,1,1,0,9 +"18670",2016,39033,"OH","39","033",42096,0.975318320030407,2395,0.144004180919802,7.78113850984502,8.51117511909067,9.37982994995476,6.07692307692308,433.102628338499,102,23551,1,1,1,0,9 +"18671",2016,39035,"OH","39","035",1254324,0.646987540699213,83746,0.143932508666023,11.3355436873527,11.869648407757,12.8610427681392,5.56153846153846,489.746813198697,3623,739770,1,1,1,0,9 +"18672",2016,39037,"OH","39","037",51653,0.982169477087488,2903,0.140630747488045,7.97349996402463,8.67709870892586,9.55506418479516,4.13846153846154,476.728582527015,135,28318,1,1,1,0,9 +"18673",2016,39039,"OH","39","039",38162,0.964257638488549,2443,0.144096221372046,7.80098207125774,8.4211227226655,9.2819165704654,4.96923076923077,412.763194508858,89,21562,1,1,1,0,9 +"18674",2016,39041,"OH","39","041",197442,0.889380172405061,10266,0.119751623261515,9.23659274312025,10.306015016657,10.9608089867864,3.63076923076923,217.013126219051,247,113818,1,1,1,0,9 +"18675",2016,39043,"OH","39","043",75004,0.881219668284358,4492,0.155965015199189,8.41005331585833,8.9737315697084,9.98081889547245,5.55384615384615,563.759022503184,239,42394,1,1,1,0,9 +"18676",2016,39045,"OH","39","045",152829,0.896079932473549,9334,0.130786696242205,9.14141892650976,9.87945097470789,10.6988979570944,4.33076923076923,341.8975876603,305,89208,1,1,1,0,9 +"18677",2016,39047,"OH","39","047",28695,0.953894406691061,1621,0.137550095835511,7.39079852173568,8.14699869738999,9.01930092456251,4.46153846153846,513.510209072014,84,16358,1,1,1,0,9 +"18678",2016,39049,"OH","39","049",1275212,0.694702527893401,91011,0.11394027032368,11.4187356573146,12.0387126049764,12.9102586732053,4.16153846153846,372.435936453832,2937,788592,1,1,1,0,9 +"18679",2016,39051,"OH","39","051",42337,0.978245978694759,2497,0.148144648888679,7.82284529027977,8.50512061018197,9.4038491181607,4.67692307692308,374.189256610677,90,24052,1,1,1,0,9 +"18680",2016,39053,"OH","39","053",30213,0.954191904147221,1830,0.144077052924238,7.51207124583547,8.14351740579748,9.05275045140141,6.86153846153846,752.277402292095,128,17015,1,1,1,0,9 +"18681",2016,39055,"OH","39","055",93858,0.975867800294061,5655,0.157248183426027,8.64029538855022,9.18029345062389,10.1597176568381,4.48461538461538,313.418975390806,162,51688,1,1,1,0,9 +"18682",2016,39057,"OH","39","057",165494,0.879318887693814,13903,0.137322198992108,9.53985992316954,9.81022028456569,10.8039740528653,4.36923076923077,327.680838862947,320,97656,1,1,1,0,9 +"18683",2016,39059,"OH","39","059",39237,0.967275785610521,2360,0.146698269490532,7.76641689801966,8.37262974022488,9.32098689206325,7.13076923076923,531.748514232093,119,22379,1,1,1,0,9 +"18684",2016,39061,"OH","39","061",811766,0.692130490806464,54012,0.133378338092504,10.8969615230809,11.4552221968418,12.4212041862342,4.45384615384615,445.492226254286,2141,480592,1,1,1,0,9 +"18685",2016,39063,"OH","39","063",75829,0.94972899550304,5024,0.136728692189004,8.52198170814803,9.07738024471995,9.99897953399535,3.69230769230769,366.467120387863,161,43933,1,1,1,0,9 +"18686",2016,39065,"OH","39","065",31374,0.974023076432715,3479,0.124721106648817,8.15450017515194,8.15450017515194,9.09728364968389,5.03846153846154,534.461641242623,96,17962,1,1,1,0,9 +"18687",2016,39067,"OH","39","067",15237,0.966922622563497,777,0.168405854170769,6.65544035036765,7.42237370098682,8.37493814383537,7.69230769230769,506.737302775538,44,8683,1,1,1,0,9 +"18688",2016,39069,"OH","39","069",27268,0.978436262285463,1509,0.147388880739328,7.31920245876785,8.0727793331695,8.94806610345893,5.39230769230769,342.045821232656,53,15495,1,1,1,0,9 +"18689",2016,39071,"OH","39","071",43011,0.969589174862244,2335,0.13784845737137,7.755767170103,8.54655780004614,9.40968291310444,6.38461538461539,510.013683293942,123,24117,1,1,1,0,9 +"18690",2016,39073,"OH","39","073",28403,0.980847093616872,1493,0.149596873569693,7.30854279753919,8.1185050675871,9.00871366412422,5.61538461538462,492.944728572309,80,16229,1,1,1,0,9 +"18691",2016,39075,"OH","39","075",43866,0.990220216112707,3057,0.107873979847718,8.02518932189084,8.47261414801827,9.33158407926155,3.63076923076923,289.880534082923,66,22768,1,1,1,0,9 +"18692",2016,39077,"OH","39","077",58386,0.971020450107903,3611,0.139074435652382,8.19174002127746,8.83695515733143,9.72010543354485,6.55384615384615,450.937950937951,150,33264,1,1,1,0,9 +"18693",2016,39079,"OH","39","079",32565,0.980132043605098,1847,0.138492246276677,7.52131798019924,8.30276158070405,9.1557785839835,7.9,744.270721781966,139,18676,1,1,1,0,9 +"18694",2016,39081,"OH","39","081",66993,0.926723687549445,4441,0.158747928888093,8.3986348552921,8.8848872018374,9.87611635574,8.40769230769231,576.541792758009,221,38332,1,1,1,0,9 +"18695",2016,39083,"OH","39","083",60953,0.975784620937444,4865,0.140977474447525,8.4898219946201,8.79118193673602,9.76100190423937,4.65384615384615,429.28481733493,147,34243,1,1,1,0,9 +"18696",2016,39085,"OH","39","085",229499,0.934256794147251,13083,0.155037712582626,9.47906895651088,10.1777803878689,11.1179996231696,4.90769230769231,427.23870842452,572,133883,1,1,1,0,9 +"18697",2016,39087,"OH","39","087",60817,0.964697370800927,3417,0.139993751747044,8.13651825211529,8.92771217382708,9.79277943055171,6.55384615384615,736.815257743645,260,35287,1,1,1,0,9 +"18698",2016,39089,"OH","39","089",172166,0.935811948933007,10720,0.138267718364834,9.27986643462479,9.93914422974416,10.8321415433937,4.41538461538462,370.82694408531,370,99777,1,1,1,0,9 +"18699",2016,39091,"OH","39","091",45145,0.959375346106989,2574,0.148543581792004,7.85321638815607,8.59025776227324,9.46769209462013,4.22307692307692,480.806514152772,124,25790,1,1,1,0,9 +"18700",2016,39093,"OH","39","093",306676,0.87762002895564,19111,0.143320638067537,9.85801936448898,10.5279007566643,11.3919097097018,5.99230769230769,459.719418480381,813,176847,1,1,1,0,9 +"18701",2016,39095,"OH","39","095",433113,0.759291455116794,29242,0.137465280423354,10.2833613109774,10.8251637566866,11.7816234750102,5.21538461538462,524.017809550685,1337,255144,1,1,1,0,9 +"18702",2016,39097,"OH","39","097",43400,0.915345622119816,2627,0.135184331797235,7.87359778968554,8.73327184500832,9.35763905899706,3.96923076923077,496.480177843646,134,26990,1,1,1,0,9 +"18703",2016,39099,"OH","39","099",230263,0.815702045052831,14604,0.155235535018653,9.58905074277553,10.1600271944688,11.1022618681032,6.43846153846154,492.048615310195,651,132304,1,1,1,0,9 +"18704",2016,39101,"OH","39","101",65481,0.91399031780211,4135,0.14086528916785,8.32724260745779,9.01566279297264,9.75481351515439,5.11538461538461,500.597159047595,197,39353,1,1,1,0,9 +"18705",2016,39103,"OH","39","103",177001,0.966469115993695,9880,0.14338337071542,9.19826779074191,10.0032423856731,10.8575556487443,4.4,294.633597922058,304,103179,1,1,1,0,9 +"18706",2016,39105,"OH","39","105",23189,0.980723618957264,1173,0.153650437707534,7.06731984865348,7.95331834656043,8.8071726229167,8.59230769230769,708.637923317917,95,13406,1,1,1,0,9 +"18707",2016,39107,"OH","39","107",40768,0.979420133437991,2469,0.146291208791209,7.81156848934518,8.37309184744198,9.30428598481871,3.28461538461538,351.235995020452,79,22492,1,1,1,0,9 +"18708",2016,39109,"OH","39","109",104553,0.949518426061423,5586,0.141612387975477,8.62801874650512,9.42875274891449,10.3048777026023,4.39230769230769,429.479759088698,256,59607,1,1,1,0,9 +"18709",2016,39111,"OH","39","111",14095,0.98588151826889,695,0.153316778999645,6.54391184556479,7.34277918933185,8.24249315318763,11.1692307692308,375.842405391394,29,7716,1,1,1,0,9 +"18710",2016,39113,"OH","39","113",532274,0.746286686931919,36140,0.135779692414057,10.4951555641462,11.0097703475085,11.9728345654668,4.96153846153846,571.21480734512,1756,307415,1,1,1,0,9 +"18711",2016,39115,"OH","39","115",14746,0.944934219449342,788,0.153872236538722,6.66949808985788,7.4151751096133,8.32385113133882,8.35384615384615,446.698056259809,37,8283,1,1,1,0,9 +"18712",2016,39117,"OH","39","117",34928,0.98262139257902,1793,0.151654832798901,7.49164547360513,8.38160253710989,9.20472463319055,5.09230769230769,346.654781359877,70,20193,1,1,1,0,9 +"18713",2016,39119,"OH","39","119",85958,0.93678308010889,5875,0.13897484818167,8.67846133901236,9.20763672040187,10.133686158324,6.07692307692308,467.564011739702,231,49405,1,1,1,0,9 +"18714",2016,39121,"OH","39","121",14459,0.963690435023169,633,0.197385711321668,6.45047042214418,7.07411681619736,8.05737748855799,8.78461538461539,558.801117602235,44,7874,1,1,1,0,9 +"18715",2016,39123,"OH","39","123",40531,0.977794774370235,1949,0.174681108287484,7.57507169950756,8.31849832050434,9.32331185063534,6.55384615384615,460.870335903572,104,22566,1,1,1,0,9 +"18716",2016,39125,"OH","39","125",18827,0.97466404631646,1073,0.147660275136772,6.9782137426307,7.66762609158499,8.5539107743514,4.61538461538462,451.509735678676,48,10631,1,1,1,0,9 +"18717",2016,39127,"OH","39","127",36015,0.985117312231015,2074,0.144245453283354,7.63723438878947,8.37586001529959,9.2422265608385,6.42307692307692,476.780776199104,100,20974,1,1,1,0,9 +"18718",2016,39129,"OH","39","129",57513,0.947177159946447,3793,0.129675029993219,8.2409125416889,8.96392819372262,9.66116118180515,4.86153846153846,490.097732939727,171,34891,1,1,1,0,9 +"18719",2016,39131,"OH","39","131",28101,0.972171808832426,1521,0.140244119426355,7.32712329225929,8.14786712992395,8.98594603876032,7.56153846153846,646.524928509263,104,16086,1,1,1,0,9 +"18720",2016,39133,"OH","39","133",162564,0.923193326935853,19213,0.138253241800153,9.8633424122317,9.76077125033453,10.8159710460673,5.06153846153846,375.638331353618,370,98499,1,1,1,0,9 +"18721",2016,39135,"OH","39","135",41148,0.979172742296102,2167,0.147419072615923,7.68109900153636,8.48632152774915,9.3689667352586,4.80769230769231,555.579298260609,130,23399,1,1,1,0,9 +"18722",2016,39137,"OH","39","137",34004,0.985207622632632,2036,0.144630043524291,7.61874237767041,8.24669594371856,9.14109746923402,3.70769230769231,320.968166272034,61,19005,1,1,1,0,9 +"18723",2016,39139,"OH","39","139",121324,0.88269427318585,7553,0.140590484982361,8.92970011431345,9.5682245844549,10.3906555279514,5.58461538461538,543.92402331103,378,69495,1,1,1,0,9 +"18724",2016,39141,"OH","39","141",76888,0.919441265216939,4521,0.143533451253772,8.41648848729461,9.22503192071917,9.95882764756929,5.55384615384615,571.820187180091,267,46693,1,1,1,0,9 +"18725",2016,39143,"OH","39","143",59311,0.947041864072432,3389,0.149719276356831,8.12829017160705,8.85280791762332,9.73932020632222,4.75384615384615,447.453635560789,152,33970,1,1,1,0,9 +"18726",2016,39145,"OH","39","145",76451,0.957135943283933,4792,0.136950465003728,8.47470313979528,9.14601516141962,10.0014759608643,7.78461538461538,645.627342092194,286,44298,1,1,1,0,9 +"18727",2016,39147,"OH","39","147",55517,0.952212835707981,3974,0.144388205414558,8.28752842311176,8.77369414638444,9.64982035867162,4.93076923076923,322.264699377587,102,31651,1,1,1,0,9 +"18728",2016,39149,"OH","39","149",48760,0.952214930270714,2967,0.138330598851518,7.99530662029082,8.64206217346211,9.51922115556896,4.18461538461538,421.634195987206,116,27512,1,1,1,0,9 +"18729",2016,39151,"OH","39","151",373553,0.895254488653551,23363,0.145668753831451,10.058908853354,10.6443290589587,11.5975423106901,5.49230769230769,509.87741444014,1091,213973,1,1,1,0,9 +"18730",2016,39153,"OH","39","153",541226,0.800863225343941,34303,0.145408757155052,10.4429880928862,11.0436895409634,12.0046844705189,5.13846153846154,484.517918728445,1551,320112,1,1,1,0,9 +"18731",2016,39155,"OH","39","155",201854,0.896524220476186,11903,0.153066077461928,9.38454574816788,10.0172179428631,10.9657297278945,6.81538461538462,552.47172182656,633,114576,1,1,1,0,9 +"18732",2016,39157,"OH","39","157",92602,0.973531889160061,5292,0.144942873804022,8.57395152523485,9.27893316344179,10.1630787448214,5.79230769230769,396.566918272731,207,52198,1,1,1,0,9 +"18733",2016,39159,"OH","39","159",55601,0.925217172353015,3323,0.119853959461161,8.1086232683546,9.01869548772134,9.80438519149292,3.83846153846154,215.345585415499,73,33899,1,1,1,0,9 +"18734",2016,39161,"OH","39","161",28210,0.977100319035803,1669,0.143105281814959,7.41997992366183,8.10288913464087,8.97474461272273,4.06923076923077,479.283597149524,76,15857,1,1,1,0,9 +"18735",2016,39163,"OH","39","163",13015,0.982481751824818,746,0.155359200922013,6.61472560020376,7.40062057737113,8.23429963569625,7.06923076923077,551.615445232467,42,7614,1,1,1,0,9 +"18736",2016,39165,"OH","39","165",226858,0.900519267559442,12648,0.128904424794365,9.44525437888931,10.3397081575643,11.0876657295339,4.18461538461538,304.335084199373,405,133077,1,1,1,0,9 +"18737",2016,39167,"OH","39","167",60673,0.971865574472995,3799,0.155044253621875,8.24249315318763,8.83112763501208,9.76698030788146,7.01538461538462,502.757986669731,175,34808,1,1,1,0,9 +"18738",2016,39169,"OH","39","169",116657,0.962839778153047,8223,0.134608296115964,9.0146903849709,9.45930760329985,10.382419951415,4.00769230769231,407.847983933261,264,64730,1,1,1,0,9 +"18739",2016,39171,"OH","39","171",36964,0.974867438588897,2126,0.148631100530246,7.66199755890189,8.37770121259764,9.23863624113103,4.54615384615385,428.877769835597,90,20985,1,1,1,0,9 +"18740",2016,39173,"OH","39","173",129888,0.94279687115053,16362,0.124222406996797,9.70271685207364,9.57630206030665,10.5680294760857,4.20769230769231,314.052565191649,244,77694,1,1,1,0,9 +"18741",2016,39175,"OH","39","175",22070,0.982147711826008,1250,0.142727684639782,7.13089883029635,7.89692465626886,8.72485755588199,3.73846153846154,417.704233271749,52,12449,1,1,1,0,9 +"18742",2016,40001,"OK","40","001",22301,0.473028115331151,1377,0.120846598807228,7.22766249872865,7.89469085042562,8.72583205652757,5.62307692307692,604.427019521359,74,12243,0,1,0,0,9 +"18743",2016,40003,"OK","40","003",5926,0.895713803577455,257,0.133142085723928,5.54907608489522,6.78332520060396,7.11476944836646,3.2,371.216447744146,13,3502,0,1,0,0,9 +"18744",2016,40005,"OK","40","005",13882,0.772583201267829,845,0.130528742256159,6.73933662735717,7.40367029001237,8.18423477409482,6.35384615384615,651.590647757762,51,7827,0,1,0,0,9 +"18745",2016,40007,"OK","40","007",5437,0.956225859849182,283,0.13518484458341,5.64544689764324,6.40357419793482,7.24850407237061,3.02307692307692,383.008356545961,11,2872,0,1,0,0,9 +"18746",2016,40009,"OK","40","009",22467,0.899408020652513,1539,0.120888414118485,7.33888813383888,7.96102146588337,8.65591111072806,6.94615384615385,523.521053025204,70,13371,0,1,0,0,9 +"18747",2016,40011,"OK","40","011",9649,0.832210591771168,500,0.142398175976785,6.21460809842219,6.92362862813843,7.82883452758809,3.56923076923077,654.891843619766,33,5039,0,1,0,0,9 +"18748",2016,40013,"OK","40","013",45679,0.79647102607325,3095,0.118128680575319,8.0375431851187,8.56293108309009,9.4725507784543,4.14615384615385,605.658018130666,155,25592,0,1,0,0,9 +"18749",2016,40015,"OK","40","015",29696,0.668776939655172,1816,0.122205010775862,7.50439155916124,8.14931284363534,8.91637191488169,5.12307692307692,772.014475271411,128,16580,0,1,0,0,9 +"18750",2016,40017,"OK","40","017",136508,0.86737041052539,7396,0.117436340727283,8.90869459250701,9.86993076900728,10.5990318576958,3.83846153846154,287.08490753629,231,80464,0,1,0,0,9 +"18751",2016,40019,"OK","40","019",48501,0.783839508463743,2887,0.131461206985423,7.96797317966293,8.69550672681265,9.52944843442782,4.99230769230769,583.036925671959,159,27271,0,1,0,0,9 +"18752",2016,40021,"OK","40","021",48868,0.564070557419989,5592,0.117786690676926,8.62909228391365,8.5816692106006,9.55881175856423,5.29230769230769,516.952476024101,145,28049,0,1,0,0,9 +"18753",2016,40023,"OK","40","023",14874,0.667742369234907,763,0.146430012101654,6.63725803128446,7.38461038317697,8.3296580675694,7.37692307692308,784.069695084007,63,8035,0,1,0,0,9 +"18754",2016,40027,"OK","40","027",278062,0.825966870697902,30890,0.113460307413455,10.3381877859126,10.4741280586033,11.3515940653737,3.7,325.376452989214,559,171801,0,1,0,0,9 +"18755",2016,40029,"OK","40","029",5643,0.760233918128655,329,0.142831827042353,5.79605775076537,6.45204895443723,7.32514895795557,7.09230769230769,620.915032679738,19,3060,0,1,0,0,9 +"18756",2016,40031,"OK","40","031",121554,0.684987742073482,11174,0.111761028020468,9.3213449300191,9.61119486752666,10.4525911375121,4.44615384615385,411.55595136893,305,74109,0,1,0,0,9 +"18757",2016,40033,"OK","40","033",5924,0.832207967589467,316,0.144834571235652,5.75574221358691,6.45676965557216,7.39939808333135,4.62307692307692,938.824954572986,31,3302,0,1,0,0,9 +"18758",2016,40035,"OK","40","035",14467,0.70788691504804,855,0.135549872122762,6.75110146893676,7.42177579364465,8.24117615049496,4.66153846153846,696.65118552921,57,8182,0,1,0,0,9 +"18759",2016,40037,"OK","40","037",71161,0.834347465606161,4082,0.137294304464524,8.31434234336979,9.05625635659347,9.90971810228676,5.60769230769231,589.292848581702,236,40048,0,1,0,0,9 +"18760",2016,40039,"OK","40","039",29224,0.85532439091158,3744,0.108746235970435,8.22790983759748,8.02975852044082,9.02135667230868,4.38461538461538,349.153746005444,59,16898,0,1,0,0,9 +"18761",2016,40041,"OK","40","041",41967,0.703314509018991,2162,0.149760526127672,7.67878899819915,8.36660283278374,9.33670867079099,4.73076923076923,572.61373371207,127,22179,0,1,0,0,9 +"18762",2016,40047,"OK","40","047",62585,0.874474714388432,4211,0.122761044978829,8.34545542816193,8.89192414015454,9.74899514766085,4.20769230769231,525.792241011795,185,35185,0,1,0,0,9 +"18763",2016,40049,"OK","40","049",27944,0.854959919839679,1548,0.13376753507014,7.34471905414967,8.12385426310591,8.95389853526046,5.16153846153846,720.077846253649,111,15415,0,1,0,0,9 +"18764",2016,40051,"OK","40","051",54677,0.888710060903122,3103,0.138449439435229,8.04012466444838,8.83956650365795,9.66833467709619,4.79230769230769,497.512437810945,158,31758,0,1,0,0,9 +"18765",2016,40055,"OK","40","055",5958,0.861195031889896,389,0.115307150050352,5.96357934361845,6.67582322163485,7.1708884785125,7.12307692307692,386.42009384488,14,3623,0,1,0,0,9 +"18766",2016,40061,"OK","40","061",12706,0.773965055879112,692,0.132378403903668,6.53958595561767,7.26403014289953,8.14060704285845,8,630.68348489293,43,6818,0,1,0,0,9 +"18767",2016,40063,"OK","40","063",13417,0.700678244018782,856,0.124170828053961,6.75227037614174,7.40000951716269,8.0959035329611,7.02307692307692,733.779608650875,57,7768,0,1,0,0,9 +"18768",2016,40065,"OK","40","065",25488,0.861817325800377,2000,0.115819209039548,7.60090245954208,8.00670084544037,8.88917045536341,4.21538461538462,483.420712194458,71,14687,0,1,0,0,9 +"18769",2016,40067,"OK","40","067",6239,0.894694662606187,319,0.14457445103382,5.76519110278484,6.51619307604296,7.39449310721904,6.90769230769231,568.692008380724,19,3341,0,1,0,0,9 +"18770",2016,40069,"OK","40","069",11125,0.772943820224719,675,0.131865168539326,6.51471269087253,7.09920174355309,8.02617019494643,5.67692307692308,564.128090260494,34,6027,0,1,0,0,9 +"18771",2016,40071,"OK","40","071",44937,0.835414024078154,2799,0.129403386963972,7.93701748951545,8.52018870039604,9.38806805975991,6.08461538461538,568.771536513472,137,24087,0,1,0,0,9 +"18772",2016,40073,"OK","40","073",15661,0.927846242257838,906,0.131792350424622,6.80903930604298,7.53689712956617,8.35113860708615,3.19230769230769,466.798926362469,40,8569,0,1,0,0,9 +"18773",2016,40075,"OK","40","075",9034,0.851007305733894,491,0.152424175337613,6.19644412779452,6.87212810133899,7.79688034278352,5.13076923076923,624.11918663177,31,4967,0,1,0,0,9 +"18774",2016,40077,"OK","40","077",10553,0.71211977636691,708,0.129062825736757,6.56244409369372,6.98193467715639,7.94520113241276,8.32307692307692,530.035335689046,30,5660,0,1,0,0,9 +"18775",2016,40079,"OK","40","079",50154,0.803106432188858,2962,0.13129560952267,7.99361999482774,8.69734573092535,9.52303207993199,6.66923076923077,626.274916794904,175,27943,0,1,0,0,9 +"18776",2016,40081,"OK","40","081",34907,0.880482424728564,1907,0.141776721001518,7.55328660560042,8.26049285657318,9.18080856937014,5.13076923076923,681.666752088565,133,19511,0,1,0,0,9 +"18777",2016,40083,"OK","40","083",46032,0.851820472714633,3045,0.138816475495308,8.021256180144,8.65434302956347,9.50836873648211,3.91538461538462,414.734381480225,110,26523,0,1,0,0,9 +"18778",2016,40085,"OK","40","085",10034,0.864560494319314,575,0.128363563882798,6.35437004079735,7.01301578963963,7.90211754627645,3.03076923076923,515.463917525773,28,5432,0,1,0,0,9 +"18779",2016,40087,"OK","40","087",38625,0.899313915857605,2124,0.130537216828479,7.66105638236183,8.5356223268846,9.31515073632853,3.97692307692308,426.091292325824,94,22061,0,1,0,0,9 +"18780",2016,40089,"OK","40","089",33099,0.690685519199976,1964,0.128342245989305,7.58273848891441,8.23853693017177,9.12510922761352,6.89230769230769,882.385792471797,158,17906,0,1,0,0,9 +"18781",2016,40091,"OK","40","091",19761,0.733920348160518,985,0.157583118263246,6.89264164117209,7.5740450053722,8.58223158759546,8.62307692307692,762.413037262937,80,10493,0,1,0,0,9 +"18782",2016,40093,"OK","40","093",7760,0.944974226804124,379,0.147809278350515,5.93753620508243,6.77878489768518,7.62217459481762,3.96923076923077,461.053142441155,19,4121,0,1,0,0,9 +"18783",2016,40095,"OK","40","095",16265,0.839901629265294,880,0.138456809099293,6.77992190747225,7.48661331313996,8.37355374121463,4.87692307692308,596.14260666277,51,8555,0,1,0,0,9 +"18784",2016,40097,"OK","40","097",41031,0.724695961590017,2381,0.14174648436548,7.77527584648686,8.4675826908629,9.34487126493379,4.91538461538462,633.132477512881,145,22902,0,1,0,0,9 +"18785",2016,40099,"OK","40","099",13922,0.808073552650481,744,0.142867404108605,6.61204103483309,7.38585107812521,8.26152644839647,4.34615384615385,727.650727650728,56,7696,0,1,0,0,9 +"18786",2016,40101,"OK","40","101",69028,0.639088485831836,4352,0.12988932027583,8.37839078853578,9.02581639162703,9.89772095764179,5.25384615384615,764.569002991792,299,39107,0,1,0,0,9 +"18787",2016,40103,"OK","40","103",11420,0.864098073555166,602,0.139492119089317,6.40025744530882,7.11801620446533,8.05038445306702,3.42307692307692,508.501509613857,32,6293,0,1,0,0,9 +"18788",2016,40105,"OK","40","105",10405,0.738491110043248,619,0.140605478135512,6.4281052726846,7.05444965813294,7.96901178110648,5.89230769230769,565.843621399177,33,5832,0,1,0,0,9 +"18789",2016,40107,"OK","40","107",12089,0.669203408056911,740,0.130449168665729,6.60665018619822,7.31055015853442,8.00168997809913,5.88461538461539,692.740655217203,48,6929,0,1,0,0,9 +"18790",2016,40109,"OK","40","109",784684,0.734486748805889,53107,0.118655407781986,10.8800640252836,11.50491345436,12.3664765900231,4.12307692307692,469.135641957412,2165,461487,0,1,0,0,9 +"18791",2016,40111,"OK","40","111",39061,0.69299301093162,2673,0.133278717902767,7.89095671613892,8.38022733634308,9.29477342795101,6.93076923076923,747.50830564784,162,21672,0,1,0,0,9 +"18792",2016,40113,"OK","40","113",47364,0.698927455451398,2529,0.14755932775948,7.83557924666997,8.58410389669886,9.47792177272096,5.56153846153846,450.535010324761,120,26635,0,1,0,0,9 +"18793",2016,40115,"OK","40","115",31617,0.730967517474776,2106,0.125059303539235,7.65254569269392,8.16961956172385,9.06589246761031,4.86153846153846,630.450153193495,107,16972,0,1,0,0,9 +"18794",2016,40117,"OK","40","117",16461,0.822732519288014,863,0.141728935058623,6.76041469108343,7.54802896993501,8.42222295382501,6.4,517.564144917961,47,9081,0,1,0,0,9 +"18795",2016,40119,"OK","40","119",81924,0.838301352473024,16955,0.0936965968458571,9.73831805455974,8.98004631663313,10.1031577476647,3.59230769230769,339.37097983505,172,50682,0,1,0,0,9 +"18796",2016,40121,"OK","40","121",44397,0.766988760501836,2576,0.13404058832804,7.85399308722424,8.55967780302239,9.3811795916611,5.92307692307692,667.540827273811,168,25167,0,1,0,0,9 +"18797",2016,40123,"OK","40","123",38499,0.727940985480142,3043,0.118756331333281,8.02059914989697,8.38640090116621,9.31578088443418,3.93076923076923,560.584478242889,122,21763,0,1,0,0,9 +"18798",2016,40125,"OK","40","125",72051,0.794423394539979,4834,0.125022553469071,8.48342956126343,9.0860235374688,9.98552826287234,4.46153846153846,666.957702755142,275,41232,0,1,0,0,9 +"18799",2016,40127,"OK","40","127",11047,0.769620711505386,545,0.143206300353037,6.30078579466324,7.0343879299155,7.99564360428727,7.05384615384615,928.426738690074,55,5924,0,1,0,0,9 +"18800",2016,40131,"OK","40","131",91061,0.808238433577492,5877,0.133789437849354,8.67880170661265,9.2944976799829,10.1822928426752,4.83846153846154,410.349937307648,216,52638,0,1,0,0,9 +"18801",2016,40133,"OK","40","133",25157,0.706841038279604,1510,0.130699208967683,7.31986492980897,7.9550742732627,8.85109068766498,6.68461538461538,665.49656281995,91,13674,0,1,0,0,9 +"18802",2016,40135,"OK","40","135",41887,0.709528015852174,2504,0.129348007735097,7.82564473221999,8.50875771259514,9.38092667255172,6.04615384615385,665.435967887348,155,23293,0,1,0,0,9 +"18803",2016,40137,"OK","40","137",44044,0.894855144855145,2422,0.142902551993461,7.79234892411304,8.54927308487965,9.42995771351383,9.20769230769231,555.487481109341,136,24483,0,1,0,0,9 +"18804",2016,40139,"OK","40","139",21242,0.876800677902269,1641,0.106910837020996,7.40306109109009,7.91132401896335,8.60098271714592,3.26153846153846,449.78737324174,55,12228,0,1,0,0,9 +"18805",2016,40141,"OK","40","141",7520,0.846675531914894,407,0.135239361702128,6.0088131854426,6.72142570079064,7.56734567601324,4.27692307692308,686.274509803922,28,4080,0,1,0,0,9 +"18806",2016,40143,"OK","40","143",646328,0.761514277580424,42952,0.120545605327326,10.6678384921024,11.3159368711329,12.1697820354291,4.50769230769231,447.525866782751,1686,376738,0,1,0,0,9 +"18807",2016,40145,"OK","40","145",77688,0.810601379878488,4116,0.131294408402842,8.32263709695394,9.22305914438396,10.0232242341385,4.60769230769231,395.043993535644,176,44552,0,1,0,0,9 +"18808",2016,40147,"OK","40","147",52099,0.812357242941323,3019,0.136336589953742,8.01268092970684,8.68372406230387,9.5909661900707,4.70769230769231,474.771278070419,137,28856,0,1,0,0,9 +"18809",2016,40149,"OK","40","149",11428,0.928333916695835,603,0.142982149107455,6.40191719672719,7.16780918431644,8.04462627976734,6.69230769230769,537.209669774056,34,6329,0,1,0,0,9 +"18810",2016,40151,"OK","40","151",9152,0.910511363636364,1155,0.110795454545455,7.05185562295589,6.82654522355659,7.77779262633883,3.09230769230769,409.75973179363,22,5369,0,1,0,0,9 +"18811",2016,40153,"OK","40","153",20991,0.926778143013673,1306,0.120670763660616,7.17472430983638,7.93487156594518,8.60006266923853,6,447.167936402782,54,12076,0,1,0,0,9 +"18812",2016,41001,"OR","41","001",15971,0.961805772963496,801,0.160854047961931,6.68586094706836,7.35755620091035,8.32796785830549,6.20769230769231,342.789598108747,29,8460,1,1,1,0,9 +"18813",2016,41003,"OR","41","003",90053,0.89221902657324,15088,0.122605576715934,9.62165500487324,9.09761950191206,10.2233584608028,3.87692307692308,214.105793450882,119,55580,1,1,1,0,9 +"18814",2016,41005,"OR","41","005",407055,0.916158750046063,22723,0.144690520936974,10.0311329063718,10.865726318313,11.7047599632472,4.28461538461538,307.004023960477,737,240062,1,1,1,0,9 +"18815",2016,41007,"OR","41","007",38732,0.948724568831974,2188,0.162217288030569,7.69074316354187,8.38981426208641,9.32044959465621,4.63846153846154,456.805051726454,102,22329,1,1,1,0,9 +"18816",2016,41009,"OR","41","009",50939,0.951922888160349,2618,0.156108286381751,7.87016594646984,8.72761617832107,9.60116550334483,6.00769230769231,381.911585778018,113,29588,1,1,1,0,9 +"18817",2016,41011,"OR","41","011",63386,0.934370365695895,3153,0.167387120184268,8.05610965954506,8.77678438370149,9.77258128268833,6.28461538461538,577.37052250596,201,34813,1,1,1,0,9 +"18818",2016,41013,"OR","41","013",22310,0.964948453608247,1027,0.168713581353653,6.93439720992856,7.77191025643576,8.73052880173936,6.81538461538462,443.932916803683,54,12164,1,1,1,0,9 +"18819",2016,41015,"OR","41","015",22629,0.946838128065756,839,0.18860753899863,6.73221070646721,7.54591815120932,8.6921543938039,6.64615384615385,541.702493551161,63,11630,1,1,1,0,9 +"18820",2016,41017,"OR","41","017",180819,0.962470758050869,9131,0.146842975572257,9.11943049661634,10.0549202562963,10.8919687049508,4.77692307692308,270.760695047454,285,105259,1,1,1,0,9 +"18821",2016,41019,"OR","41","019",108244,0.950066516388899,5409,0.1587432097853,8.59581951187143,9.31937413300031,10.2968463406492,6.16923076923077,549.019607843137,322,58650,1,1,1,0,9 +"18822",2016,41023,"OR","41","023",7167,0.962606390400446,259,0.172457095018836,5.55682806169954,6.5424719605068,7.51914995766982,7.50769230769231,327.958458595245,12,3659,1,1,1,0,9 +"18823",2016,41025,"OR","41","025",7252,0.934225041367899,376,0.163816878102592,5.9295891433899,6.65415252018322,7.5973963202128,6.14615384615385,655.407108646332,26,3967,1,1,1,0,9 +"18824",2016,41027,"OR","41","027",23090,0.953876136855782,1340,0.134863577306193,7.20042489294496,8.01433573729942,8.80732226751107,4.07692307692308,148.997988527155,20,13423,1,1,1,0,9 +"18825",2016,41029,"OR","41","029",214600,0.944846225535881,11943,0.145871388630009,9.38790061166843,10.0968726816861,11.023388292222,5.64615384615385,397.852753124509,481,120899,1,1,1,0,9 +"18826",2016,41031,"OR","41","031",23022,0.76613673877161,1320,0.138693423681696,7.18538701558042,7.84031298332016,8.70084719344397,6.5,407.779171894605,52,12752,1,1,1,0,9 +"18827",2016,41033,"OR","41","033",85599,0.95457890863211,4111,0.158109323707053,8.32142158689788,9.07452064883365,10.0552639875019,6.36153846153846,556.019515625687,253,45502,1,1,1,0,9 +"18828",2016,41035,"OR","41","035",66287,0.90998234948029,3954,0.146650172733719,8.28248300373056,8.85893722196655,9.82271124250884,6.64615384615385,564.727498716528,209,37009,1,1,1,0,9 +"18829",2016,41037,"OR","41","037",7837,0.940283271660074,353,0.169324996810004,5.8664680569333,6.7900972355139,7.58629630715272,6.26153846153846,572.737686139748,25,4365,1,1,1,0,9 +"18830",2016,41039,"OR","41","039",369201,0.922199560672913,35607,0.138128011570933,10.4802975267246,10.6748681126145,11.6183299796601,5.00769230769231,344.061194715002,757,220019,1,1,1,0,9 +"18831",2016,41041,"OR","41","041",47855,0.920426287744227,2034,0.184870964371539,7.6177595766085,8.47845236309981,9.50836873648211,5.52307692307692,578.98773006135,151,26080,1,1,1,0,9 +"18832",2016,41043,"OR","41","043",122871,0.951046219205508,6966,0.138551814504643,8.84879645092595,9.57637141083894,10.471723225146,5.6,384.379063486847,269,69983,1,1,1,0,9 +"18833",2016,41045,"OR","41","045",30397,0.936638484060927,2084,0.118564332006448,7.64204440287326,8.20631072579402,8.86120833720818,5.43076923076923,417.991286942188,71,16986,1,1,1,0,9 +"18834",2016,41047,"OR","41","047",335592,0.910373310448402,22585,0.122434384609883,10.0250412480887,10.6454010874582,11.4636406784954,4.97692307692308,353.533252921848,680,192344,1,1,1,0,9 +"18835",2016,41049,"OR","41","049",11246,0.945491730393029,696,0.138715987906811,6.54534966033442,7.15695636461564,7.99699040583765,4.78461538461538,293.733681462141,18,6128,1,1,1,0,9 +"18836",2016,41051,"OR","41","051",803630,0.820897676791558,48931,0.118528427261302,10.7981664214338,11.7749589054907,12.4884732957922,4.15384615384615,296.580335985585,1567,528356,1,1,1,0,9 +"18837",2016,41053,"OR","41","053",81496,0.923628153529008,7449,0.12389565132031,8.91583507417628,9.1381996941985,10.0653087386676,4.95384615384615,287.028921998247,131,45640,1,1,1,0,9 +"18838",2016,41057,"OR","41","057",26116,0.955008423954664,1217,0.171082861081329,7.10414409298753,7.86863689418417,8.85723049420195,4.83846153846154,434.20407591568,62,14279,1,1,1,0,9 +"18839",2016,41059,"OR","41","059",76700,0.92013037809648,5109,0.120704041720991,8.5387589693308,9.15883652910907,9.90508627389982,5.23846153846154,433.257685166082,189,43623,1,1,1,0,9 +"18840",2016,41061,"OR","41","061",26082,0.945556322367917,2202,0.139943255885285,7.69712131728263,7.91607809630279,8.89384721767028,5.8,396.218545808425,57,14386,1,1,1,0,9 +"18841",2016,41063,"OR","41","063",6912,0.972945601851852,224,0.187210648148148,5.41164605185504,6.51323011091231,7.54168309988211,6.64615384615385,412.427825130602,15,3637,1,1,1,0,9 +"18842",2016,41065,"OR","41","065",25791,0.923345353030127,1492,0.146795393742003,7.30787278076371,7.95752740223077,8.86785006302941,4.79230769230769,412.673987549836,59,14297,1,1,1,0,9 +"18843",2016,41067,"OR","41","067",585358,0.831463822139614,35749,0.116894276664879,10.484277575703,11.381893802558,12.107742911457,4.03846153846154,207.360317080367,745,359278,1,1,1,0,9 +"18844",2016,41071,"OR","41","071",104143,0.934801186829648,7392,0.130340013251011,8.90815361332152,9.4776156346503,10.2905850032861,4.52307692307692,309.777026803167,187,60366,1,1,1,0,9 +"18845",2016,44001,"RI","44","001",48866,0.95821225391888,3497,0.154360905332951,8.15966073706338,8.55737498104907,9.57941808263196,4.63846153846154,285.563194077208,81,28365,1,1,1,0,9 +"18846",2016,44003,"RI","44","003",163842,0.940735586723795,8832,0.155533990063598,9.08613676851688,9.88384591228084,10.8427718935357,4.74615384615385,384.231536926148,385,100200,1,1,1,0,9 +"18847",2016,44005,"RI","44","005",83454,0.915845855201668,5579,0.148752606226184,8.62676482784553,9.12434665880921,10.0916669188142,4.72307692307692,319.116293341516,156,48885,1,1,1,0,9 +"18848",2016,44007,"RI","44","007",635384,0.801935522455712,49335,0.127925789758634,10.8063890472913,11.2535846253441,12.1920751358863,5.53846153846154,340.43782367384,1320,387736,1,1,1,0,9 +"18849",2016,44009,"RI","44","009",126270,0.94760433990655,12265,0.15816108339273,9.41450495669259,9.3888212293842,10.5339345212321,4.76153846153846,262.975966165566,194,73771,1,1,1,0,9 +"18850",2016,45001,"SC","45","001",24688,0.704188269604666,1623,0.146143875567077,7.39203156751459,7.87359778968554,8.85950548451913,5.37692307692308,544.860152560843,75,13765,0,1,0,0,9 +"18851",2016,45003,"SC","45","003",167328,0.722162459361255,9955,0.142618091413272,9.2058302164983,9.85953566500694,10.8128342301759,4.87692307692308,489.654741316442,470,95986,0,1,0,0,9 +"18852",2016,45005,"SC","45","005",9071,0.244625730349465,636,0.140668063058097,6.45519856334012,6.94022246911964,7.78945456608667,8.36923076923077,605.949320602277,33,5446,0,1,0,0,9 +"18853",2016,45007,"SC","45","007",195672,0.815885768019952,11575,0.133667566131076,9.35660287895444,10.0642449314142,10.9608263558885,4.49230769230769,569.00401965163,637,111950,0,1,0,0,9 +"18854",2016,45009,"SC","45","009",14478,0.37815996684625,1165,0.144771377262053,7.0604763659998,7.26052259808985,8.3187422526924,8.82307692307692,621.813207312523,50,8041,0,1,0,0,9 +"18855",2016,45011,"SC","45","011",21610,0.535122628412772,1347,0.142063859324387,7.20563517641036,7.81237820598861,8.75825524323279,7.21538461538462,761.841669426963,92,12076,0,1,0,0,9 +"18856",2016,45013,"SC","45","013",183808,0.783393541086351,12431,0.133846187325905,9.42794863179171,9.82989483223276,10.7969599143296,4.66153846153846,309.410453281105,297,95989,0,1,0,0,9 +"18857",2016,45015,"SC","45","015",208798,0.705739518577764,14881,0.121749250471748,9.60784051043005,10.219939280984,11.0524760485293,4.47692307692308,401.34410929151,510,127073,0,1,0,0,9 +"18858",2016,45017,"SC","45","017",14754,0.565744882743663,813,0.161651077673851,6.70073110954781,7.34536484041687,8.37401542173991,6.03846153846154,441.211543047937,37,8386,0,1,0,0,9 +"18859",2016,45019,"SC","45","019",397433,0.693148279081002,26502,0.130394305455259,10.1849754808246,10.8213370688743,11.7505161520313,3.97692307692308,368.34278165661,909,246781,0,1,0,0,9 +"18860",2016,45021,"SC","45","021",56730,0.772695222986074,3701,0.128609201480698,8.21635833238616,8.8349193852164,9.72382246420338,5.83846153846154,617.888168359232,202,32692,0,1,0,0,9 +"18861",2016,45023,"SC","45","023",32299,0.60992600390105,1888,0.145484380321372,7.54327334670545,8.18896686364888,9.17315758084847,7.03846153846154,690.361900652608,128,18541,0,1,0,0,9 +"18862",2016,45025,"SC","45","025",46134,0.645272467160879,2876,0.139831794338232,7.96415571884094,8.5991417740634,9.51266472116483,4.86923076923077,631.964699723282,169,26742,0,1,0,0,9 +"18863",2016,45027,"SC","45","027",34283,0.501327188402415,2351,0.148995128781028,7.76259604854007,8.14409846333852,9.17502402684861,6.51538461538462,576.187732439369,110,19091,0,1,0,0,9 +"18864",2016,45029,"SC","45","029",37603,0.595005717628913,2176,0.146504268276467,7.68524360797583,8.32069157104845,9.3064683990704,5.47692307692308,683.630839346753,144,21064,0,1,0,0,9 +"18865",2016,45031,"SC","45","031",67310,0.566899420591294,4364,0.141895706432922,8.38114434695296,8.96839619119826,9.91669988400826,6.10769230769231,746.502401336396,286,38312,0,1,0,0,9 +"18866",2016,45033,"SC","45","033",30695,0.481609382635608,1905,0.136667209643264,7.5522372875608,8.20330402679528,9.11986846881211,6.61538461538462,793.559516963772,138,17390,0,1,0,0,9 +"18867",2016,45035,"SC","45","035",156418,0.701178892454833,9383,0.122198212481939,9.14665482029005,9.94568460123592,10.780767149294,4.47692307692308,371.787506639063,343,92257,0,1,0,0,9 +"18868",2016,45037,"SC","45","037",26637,0.620828171340616,1686,0.147914554942373,7.4301141385618,8.13827263853019,8.85651849701986,5.54615384615385,411.017728973683,67,16301,0,1,0,0,9 +"18869",2016,45039,"SC","45","039",22651,0.398878636704781,1316,0.171912939826056,7.18235211188526,7.78904040165748,8.84822206837138,7.06153846153846,678.528347406514,90,13264,0,1,0,0,9 +"18870",2016,45041,"SC","45","041",138665,0.546605127465474,9245,0.130775610283777,9.13183814382123,9.75463945579971,10.6699084287665,5.16923076923077,594.190415558801,476,80109,0,1,0,0,9 +"18871",2016,45043,"SC","45","043",61609,0.666964242237335,3122,0.160479800029217,8.04622910107538,8.72323127482751,9.76502975938856,6.67692307692308,583.233569696412,190,32577,0,1,0,0,9 +"18872",2016,45045,"SC","45","045",499595,0.776104644762257,32406,0.125583722815481,10.3860988698209,11.0714082184696,11.929864495152,4.15384615384615,397.692302489635,1176,295706,0,1,0,0,9 +"18873",2016,45047,"SC","45","047",70175,0.652796579978625,4572,0.127167794798717,8.4277060249147,8.99044155082686,9.95930061735534,5.05384615384615,523.28226907326,207,39558,0,1,0,0,9 +"18874",2016,45049,"SC","45","049",19804,0.440870531205817,1208,0.135982629771763,7.09672137849476,7.82564473221999,8.60153433984999,5.71538461538462,598.597571404139,70,11694,0,1,0,0,9 +"18875",2016,45051,"SC","45","051",321542,0.836413283490182,17059,0.151995695741147,9.74443320268052,10.5058617446542,11.4654144822992,5.73076923076923,549.942657419038,1007,183110,0,1,0,0,9 +"18876",2016,45053,"SC","45","053",28122,0.53939975819643,1957,0.138610340658559,7.57916796739608,8.09498875930377,8.97979449089521,4.27692307692308,418.410041841004,70,16730,0,1,0,0,9 +"18877",2016,45055,"SC","45","055",64337,0.731305469636446,3463,0.144287113169716,8.14989054440242,8.93721845085573,9.8536143020404,5.1,524.146214954547,192,36631,0,1,0,0,9 +"18878",2016,45057,"SC","45","057",89953,0.755450068369037,4467,0.125187597967828,8.40447232135212,9.38328476695754,10.1488621526917,5.20769230769231,451.328137426435,227,50296,0,1,0,0,9 +"18879",2016,45059,"SC","45","059",66651,0.72453526578746,4446,0.141843333183298,8.39976009452414,8.92052268739398,9.8967650067753,5.1,601.722170349621,232,38556,0,1,0,0,9 +"18880",2016,45061,"SC","45","061",17508,0.345613433858807,1285,0.147132739319168,7.15851399732932,7.57455848420248,8.48714627006394,6.91538461538462,783.714039950301,82,10463,0,1,0,0,9 +"18881",2016,45063,"SC","45","063",286521,0.813654147514493,16446,0.13329214961556,9.70783756553084,10.5226652128959,11.3773806181351,3.99230769230769,412.102426825402,702,170346,0,1,0,0,9 +"18882",2016,45065,"SC","45","065",9597,0.513910597061582,414,0.164843180160467,6.02586597382531,6.85540879860993,7.67089483136212,5.45384615384615,653.846153846154,34,5200,0,1,0,0,9 +"18883",2016,45067,"SC","45","067",31772,0.408567291955181,1949,0.145820219060808,7.57507169950756,8.19284713459287,9.17574892720656,8.54615384615385,775.978407557355,138,17784,0,1,0,0,9 +"18884",2016,45069,"SC","45","069",27023,0.421899863079599,1703,0.133441882840543,7.44014668066269,8.1656479252975,8.89768231345422,8.23076923076923,751.78852916212,124,16494,0,1,0,0,9 +"18885",2016,45071,"SC","45","071",37957,0.658587348842111,2504,0.14229259425139,7.82564473221999,8.32869258354557,9.28107838648152,4.35384615384615,543.936978336303,116,21326,0,1,0,0,9 +"18886",2016,45073,"SC","45","073",76508,0.902716055837298,4156,0.153173524337324,8.33230835221912,9.00822418785405,9.97394601618469,5.03076923076923,489.584559256208,208,42485,0,1,0,0,9 +"18887",2016,45075,"SC","45","075",88421,0.352020447631219,6441,0.138790558803904,8.77043908654689,9.10609035060238,10.1824063393178,8.67692307692308,596.68284789644,295,49440,0,1,0,0,9 +"18888",2016,45077,"SC","45","077",123180,0.90279266114629,14978,0.122357525572333,9.61433773680931,9.48963738789352,10.4946850605603,4.87692307692308,453.221996374224,330,72812,0,1,0,0,9 +"18889",2016,45079,"SC","45","079",409569,0.474271734433026,47460,0.113221459631955,10.7676425299898,10.8214369081332,11.7781548518211,4.70769230769231,371.332500266082,942,253681,0,1,0,0,9 +"18890",2016,45081,"SC","45","081",20171,0.699568687719994,1176,0.139705517822617,7.06987412845857,7.74283595543075,8.6213730103259,4.43846153846154,419.397116644823,48,11445,0,1,0,0,9 +"18891",2016,45083,"SC","45","083",301027,0.753533736176489,19986,0.127008540762124,9.90278730742173,10.5007568922027,11.4044378427851,4.62307692307692,498.022724423627,874,175494,0,1,0,0,9 +"18892",2016,45085,"SC","45","085",107257,0.490569380087081,8344,0.125754030039997,9.02929799668061,9.3868953338758,10.363630221935,5.74615384615385,463.314230365647,287,61945,0,1,0,0,9 +"18893",2016,45087,"SC","45","087",27651,0.664641423456656,1566,0.151314599833641,7.35627987655075,8.0624327915832,9.01687697476338,6.07692307692308,701.687843732221,111,15819,0,1,0,0,9 +"18894",2016,45089,"SC","45","089",31876,0.330436692182206,1985,0.148983561300038,7.59337419312129,8.20712916807133,9.13637085177601,7.55384615384615,680.757617348339,124,18215,0,1,0,0,9 +"18895",2016,45091,"SC","45","091",258140,0.767486635159216,15418,0.125614007902688,9.64329093701921,10.4762451784185,11.2812960100057,4.51538461538462,370.759600258487,568,153199,0,1,0,0,9 +"18896",2016,46005,"SD","46","005",18154,0.872700231353972,981,0.1415115126143,6.88857245956536,7.56527528189893,8.47303229563047,2.60769230769231,433.526011560694,42,9688,0,1,0,0,9 +"18897",2016,46011,"SD","46","011",34371,0.936458060574321,6294,0.0976404527072241,8.74735207762435,8.14525956651686,9.191972714618,2.76153846153846,226.9544642426,47,20709,0,1,0,0,9 +"18898",2016,46013,"SD","46","013",38884,0.908574220759181,2672,0.133036724616809,7.89058253465654,8.36310917603352,9.30392178559771,2.68461538461538,281.049250535332,63,22416,0,1,0,0,9 +"18899",2016,46019,"SD","46","019",10130,0.956071076011846,538,0.155873642645607,6.28785856016178,6.97914527506881,7.91935619066062,3.5,342.960288808664,19,5540,0,1,0,0,9 +"18900",2016,46023,"SD","46","023",9363,0.650325750293709,594,0.12688240948414,6.38687931936265,6.79570577517351,7.74370325817375,3.22307692307692,574.345883854499,27,4701,0,1,0,0,9 +"18901",2016,46027,"SD","46","027",13980,0.912231759656652,3242,0.0933476394849785,8.08394570229562,7.09754885061479,8.36427508499152,3.04615384615385,286.368843069874,25,8730,0,1,0,0,9 +"18902",2016,46029,"SD","46","029",28069,0.954041825501443,1757,0.136948234707328,7.4713630881871,8.0805469658245,8.96622851422578,3.11538461538462,311.779011036977,50,16037,0,1,0,0,9 +"18903",2016,46031,"SD","46","031",4098,0.312591508052709,278,0.118106393362616,5.62762111369064,6.01126717440416,6.94312242281943,4.52307692307692,1041.66666666667,22,2112,0,1,0,0,9 +"18904",2016,46033,"SD","46","033",8614,0.941722776874855,327,0.214302298583701,5.78996017089725,6.69579891705849,7.80547462527086,4.03846153846154,314.465408805031,15,4770,0,1,0,0,9 +"18905",2016,46035,"SD","46","035",20034,0.945243086752521,1420,0.135220125786164,7.25841215059531,7.71868549519847,8.6031873845831,2.4,368.43997124371,41,11128,0,1,0,0,9 +"18906",2016,46041,"SD","46","041",5787,0.217556592362191,407,0.104026265768101,6.0088131854426,6.40025744530882,7.32514895795557,9.02307692307692,580.79945336522,17,2927,0,1,0,0,9 +"18907",2016,46047,"SD","46","047",6779,0.892904558194424,287,0.181295176279687,5.65948221575962,6.49072353450251,7.48717369421374,4.43076923076923,723.62927915391,26,3593,0,1,0,0,9 +"18908",2016,46065,"SD","46","065",17615,0.857451036048822,983,0.142776043145047,6.89060912014717,7.62608275807238,8.5650305208304,2.4,235.686929195718,24,10183,0,1,0,0,9 +"18909",2016,46071,"SD","46","071",3271,0.424335065729135,232,0.112809538367472,5.44673737166631,5.74939298590825,6.71538338633468,4.29230769230769,609.38452163315,10,1641,0,1,0,0,9 +"18910",2016,46079,"SD","46","079",12621,0.963632041835037,840,0.176214246097774,6.73340189183736,7.10414409298753,8.10591119798651,3.43076923076923,285.755107872553,20,6999,0,1,0,0,9 +"18911",2016,46081,"SD","46","081",25389,0.946591043365237,2120,0.162668872346292,7.65917136766606,7.8578675593318,8.89521858376562,3.32307692307692,331.30493576741,49,14790,0,1,0,0,9 +"18912",2016,46083,"SD","46","083",54568,0.959903239994136,2742,0.109459756633925,7.91644286012226,9.00134624376639,9.67852985665631,2.16923076923077,158.564044017379,50,31533,0,1,0,0,9 +"18913",2016,46093,"SD","46","093",27374,0.926645722218163,2334,0.13399576240228,7.7553388128465,8.0734029689864,8.95001402953426,3.17692307692308,236.808549395835,39,16469,0,1,0,0,9 +"18914",2016,46099,"SD","46","099",186562,0.881862329949293,12686,0.12165392738071,9.44825430219384,10.0693832742482,10.9075143987144,2.6,312.438275484369,348,111382,0,1,0,0,9 +"18915",2016,46103,"SD","46","103",109240,0.851675210545588,6761,0.144434273160015,8.81892608709068,9.43635978403586,10.3417102248825,3.11538461538462,378.83008356546,238,62825,0,1,0,0,9 +"18916",2016,46109,"SD","46","109",10192,0.592523547880691,642,0.131475667189953,6.46458830368996,6.87005341179813,7.84149292446001,4.16923076923077,505.344995140914,26,5145,0,1,0,0,9 +"18917",2016,46113,"SD","46","113",14426,0.052128102037987,1193,0.0823513101344794,7.08422642209792,7.3125534981026,8.25842246245888,NA,1264.30662762843,95,7514,0,1,0,0,9 +"18918",2016,46115,"SD","46","115",6483,0.960820607743329,384,0.156871818602499,5.95064255258773,6.46146817635372,7.45066079621154,3.11538461538462,430.416068866571,15,3485,0,1,0,0,9 +"18919",2016,46121,"SD","46","121",10253,0.0909002243245879,742,0.0813420462303716,6.60934924316738,6.94408720822953,7.8578675593318,6.5,976.006506710045,48,4918,0,1,0,0,9 +"18920",2016,46125,"SD","46","125",8258,0.979534996367159,406,0.152458222329862,6.00635315960173,6.86589107488344,7.68478394352278,2.80769230769231,335.871025526198,15,4466,0,1,0,0,9 +"18921",2016,46127,"SD","46","127",15174,0.959470146302887,777,0.140635297218927,6.65544035036765,7.53636393840451,8.33182700443606,3.14615384615385,293.392794272973,25,8521,0,1,0,0,9 +"18922",2016,46135,"SD","46","135",22653,0.931223237540282,1489,0.143513000485587,7.30586003268401,7.87207397986687,8.6928257600594,2.59230769230769,272.582721284168,36,13207,0,1,0,0,9 +"18923",2016,47001,"TN","47","001",75567,0.932496989426602,4275,0.146876281974936,8.36053938137086,9.08409664540193,10.0007957350031,4.88461538461539,533.632595103406,233,43663,0,1,0,0,9 +"18924",2016,47003,"TN","47","003",47454,0.884245795928689,2942,0.119252328570826,7.98684490116138,8.69834740045819,9.52828488255485,4.97692307692308,598.780262428387,162,27055,0,1,0,0,9 +"18925",2016,47005,"TN","47","005",16094,0.960357897353051,807,0.148564682490369,6.69332366826995,7.4667994750186,8.399535147948,7.14615384615385,895.4885513489,79,8822,0,1,0,0,9 +"18926",2016,47007,"TN","47","007",14741,0.917034122515433,813,0.143545214028899,6.70073110954781,7.70841066725737,8.17075142375753,6.97692307692308,289.32704672096,27,9332,0,1,0,0,9 +"18927",2016,47009,"TN","47","009",128356,0.951026831624544,7476,0.142930599270778,8.91945316857545,9.62549174967377,10.5479170662986,4.38461538461539,483.851457602516,360,74403,0,1,0,0,9 +"18928",2016,47011,"TN","47","011",104469,0.92546114158267,7014,0.125711933683677,8.85566343070012,9.4837206597171,10.3433218807238,4.46153846153846,436.502746534136,267,61168,0,1,0,0,9 +"18929",2016,47013,"TN","47","013",39829,0.985864571041201,2195,0.138617590198097,7.69393732550927,8.49964003216865,9.35452729228868,6.93846153846154,835.532102022867,190,22740,0,1,0,0,9 +"18930",2016,47015,"TN","47","015",13884,0.970829732065687,776,0.14203399596658,6.65415252018322,7.41397029019044,8.30350479887278,4.63846153846154,595.96205302846,49,8222,0,1,0,0,9 +"18931",2016,47017,"TN","47","017",27956,0.878773787380169,1891,0.134067820861354,7.54486106865846,8.01268092970684,8.97398492668974,6.72307692307692,648.382286195941,100,15423,0,1,0,0,9 +"18932",2016,47019,"TN","47","019",56481,0.974876507143995,3011,0.144915989447779,8.01002752848173,8.78660945506113,9.71456425210761,5.68461538461538,592.165198906772,195,32930,0,1,0,0,9 +"18933",2016,47021,"TN","47","021",39793,0.967205287362099,2183,0.143869524790792,7.68845535654994,8.54383512236266,9.41017435385477,3.99230769230769,574.261516215658,139,24205,0,1,0,0,9 +"18934",2016,47023,"TN","47","023",17132,0.890497314966145,1530,0.120826523464861,7.33302301438648,7.62900388965296,8.5197898172635,5.00769230769231,477.302731796486,47,9847,0,1,0,0,9 +"18935",2016,47025,"TN","47","025",31672,0.973951755493812,2103,0.144733518565294,7.6511201757027,8.23721470334949,9.15271125913955,6.23076923076923,705.542786894008,132,18709,0,1,0,0,9 +"18936",2016,47027,"TN","47","027",7660,0.973498694516971,387,0.143080939947781,5.95842469302978,6.69703424766648,7.629489916394,6.59230769230769,741.449414015786,31,4181,0,1,0,0,9 +"18937",2016,47029,"TN","47","029",35243,0.963879351928042,1868,0.152881423261357,7.53262361878879,8.30176976311717,9.25703309996817,6.34615384615385,863.309352517986,174,20155,0,1,0,0,9 +"18938",2016,47031,"TN","47","031",54593,0.938856629970875,3199,0.130804315571593,8.07059353994952,8.7830896717961,9.66135229504032,4.73076923076923,581.526831001842,180,30953,0,1,0,0,9 +"18939",2016,47033,"TN","47","033",14464,0.842298119469027,826,0.12935564159292,6.71659477352098,7.41336733569524,8.31752199628717,5.26923076923077,559.492726594554,45,8043,0,1,0,0,9 +"18940",2016,47035,"TN","47","035",58599,0.979675421082271,2762,0.148313111145241,7.92371033396924,8.61213966872519,9.63259704272418,5.94615384615385,572.005383580081,170,29720,0,1,0,0,9 +"18941",2016,47037,"TN","47","037",686420,0.664330876139973,50830,0.115368141953906,10.8362420104409,11.4401827143235,12.3362408891036,3.60769230769231,396.193286209487,1751,441956,0,1,0,0,9 +"18942",2016,47039,"TN","47","039",11728,0.955491132332879,583,0.150068212824011,6.36818718635049,7.18159194461187,8.05896001776942,6.90769230769231,645.872715816005,41,6348,0,1,0,0,9 +"18943",2016,47041,"TN","47","041",19414,0.962861852271557,1065,0.139486968167302,6.97073007814353,7.75705114203201,8.63550941823428,5.57692307692308,668.80684858213,75,11214,0,1,0,0,9 +"18944",2016,47043,"TN","47","043",51936,0.940118607516944,2974,0.135012322858903,7.9976631270201,8.78124833323686,9.65975856761281,4.36923076923077,634.290732849754,195,30743,0,1,0,0,9 +"18945",2016,47045,"TN","47","045",37588,0.840773651165265,2272,0.127434287538576,7.72841577984104,8.4040244933106,9.30219002560606,6.22307692307692,688.589094997189,147,21348,0,1,0,0,9 +"18946",2016,47047,"TN","47","047",39712,0.708173851732474,2032,0.16450946817083,7.61677580869837,8.4292359126571,9.37007543009734,5.05384615384615,528.015360446849,121,22916,0,1,0,0,9 +"18947",2016,47049,"TN","47","049",18069,0.986606895788367,944,0.149427195749626,6.8501261661455,7.60837447438078,8.536211197252,6.18461538461538,670.939315041058,67,9986,0,1,0,0,9 +"18948",2016,47051,"TN","47","051",41579,0.92868996368359,3247,0.142139060583468,8.08548677210285,8.47699600166482,9.39057642227912,4.87692307692308,509.381101961117,120,23558,0,1,0,0,9 +"18949",2016,47053,"TN","47","053",49252,0.801063916186145,2784,0.130512466498822,7.93164402145431,8.71177264560569,9.5620530240851,5.88461538461538,663.047834165179,182,27449,0,1,0,0,9 +"18950",2016,47055,"TN","47","055",29167,0.878355675935132,1775,0.149381149929715,7.48155570190952,8.06589354696427,9.03990785957464,4.03076923076923,586.966938188788,98,16696,0,1,0,0,9 +"18951",2016,47057,"TN","47","057",23092,0.981768577862463,1225,0.146674172873723,7.11069612297883,7.93056585423396,8.80177044891454,5.44615384615385,539.204673107167,72,13353,0,1,0,0,9 +"18952",2016,47059,"TN","47","059",68582,0.965661543845324,4001,0.144819340351696,8.29429960885724,9.00429972856164,9.89474948659284,5.46923076923077,691.27362701834,271,39203,0,1,0,0,9 +"18953",2016,47061,"TN","47","061",13284,0.979524239686841,755,0.13550135501355,6.62671774924902,7.36010397298915,8.20849175174038,6.49230769230769,924.289792034797,68,7357,0,1,0,0,9 +"18954",2016,47063,"TN","47","063",63674,0.928039702233251,3697,0.127508873323492,8.21527695893663,8.98469369044386,9.80245100835836,5.11538461538461,610.670071614945,220,36026,0,1,0,0,9 +"18955",2016,47065,"TN","47","065",358165,0.768517303477448,22908,0.135404073541524,10.0392414735137,10.6946684733674,11.6042367507541,4.62307692307692,457.263618554243,978,213881,0,1,0,0,9 +"18956",2016,47067,"TN","47","067",6596,0.983929654335961,356,0.156306852637962,5.87493073085203,6.63856778916652,7.54380286750151,7.93846153846154,766.587364525509,29,3783,0,1,0,0,9 +"18957",2016,47069,"TN","47","069",25590,0.565377100429855,1711,0.131457600625244,7.44483327389219,8.08917567883756,8.75731184693641,6.18461538461538,599.342656441322,93,15517,0,1,0,0,9 +"18958",2016,47071,"TN","47","071",25746,0.949429037520392,1374,0.14468266915249,7.2254814727823,7.95120715647297,8.88266929130804,5.98461538461538,751.246226216387,107,14243,0,1,0,0,9 +"18959",2016,47073,"TN","47","073",56599,0.97379812364176,3089,0.146645700454072,8.03560269291858,8.79769958011892,9.70753349401088,5.4,647.588503762181,210,32428,0,1,0,0,9 +"18960",2016,47075,"TN","47","075",17820,0.479573512906846,1095,0.153254769921437,6.9985096422506,7.64108424917491,8.61341204915678,6.51538461538462,515.063168124393,53,10290,0,1,0,0,9 +"18961",2016,47077,"TN","47","077",27860,0.905958363244795,1538,0.132842785355348,7.33823815006559,8.1605182474775,9.00883599576545,6.86923076923077,565.113650634183,90,15926,0,1,0,0,9 +"18962",2016,47079,"TN","47","079",32213,0.906311116629932,1630,0.148045820010555,7.39633529380081,8.1786387885907,9.11668881589473,5.9,592.083004398331,105,17734,0,1,0,0,9 +"18963",2016,47081,"TN","47","081",24656,0.936810512654121,1459,0.137978585334199,7.28550654852279,8.05102220819068,8.81328976246904,4.63076923076923,595.732889997229,86,14436,0,1,0,0,9 +"18964",2016,47083,"TN","47","083",8110,0.953267570900123,439,0.145129469790382,6.08449941307517,6.81563999007433,7.7336835707759,7.53846153846154,683.27088384395,31,4537,0,1,0,0,9 +"18965",2016,47085,"TN","47","085",18378,0.955762324518446,1008,0.146153009032539,6.91572344863131,7.68202151082687,8.57187075270693,6.02307692307692,480.723007403134,50,10401,0,1,0,0,9 +"18966",2016,47087,"TN","47","087",11621,0.984080543843043,596,0.170123053093538,6.39024066706535,7.20042489294496,8.12148037475075,7.00769230769231,548.635824436536,37,6744,0,1,0,0,9 +"18967",2016,47089,"TN","47","089",53193,0.964469009080142,3227,0.142744346060572,8.07930819205196,8.73584667745758,9.63939178989049,5.29230769230769,489.652020630672,150,30634,0,1,0,0,9 +"18968",2016,47091,"TN","47","091",17782,0.96783263974806,968,0.143515914970195,6.87523208727658,7.72885582385254,8.41626727282628,4.82307692307692,653.96644867785,69,10551,0,1,0,0,9 +"18969",2016,47093,"TN","47","093",456410,0.874976446615981,41282,0.125674284086676,10.6281818485942,10.9466928339325,11.8575926029047,4.01538461538462,456.647440675636,1262,276362,0,1,0,0,9 +"18970",2016,47095,"TN","47","095",7528,0.700584484590861,658,0.123671625929862,6.48920493132532,7.01391547481053,7.3375877435386,7.79230769230769,564.20233463035,29,5140,0,1,0,0,9 +"18971",2016,47097,"TN","47","097",25319,0.64240293850468,1596,0.129546980528457,7.37525577800975,8.04910772132641,8.8963143241848,7.76153846153846,628.620732158265,102,16226,0,1,0,0,9 +"18972",2016,47099,"TN","47","099",43087,0.968041404599995,2434,0.128043261308515,7.79729127354747,8.49882553405805,9.39756654810359,5.77692307692308,560.141509433962,133,23744,0,1,0,0,9 +"18973",2016,47101,"TN","47","101",11894,0.965612914074323,640,0.153522784597276,6.46146817635372,7.24064969425547,8.13064796816058,5.96923076923077,540.784136998648,36,6657,0,1,0,0,9 +"18974",2016,47103,"TN","47","103",33616,0.909775107091861,1754,0.150166587339362,7.46965417293213,8.24590926477409,9.16711966952162,4.11538461538461,581.060566403183,111,19103,0,1,0,0,9 +"18975",2016,47105,"TN","47","105",51427,0.965348941217648,2455,0.150524043790227,7.80588204022862,8.56407677731509,9.5366901200688,4.69230769230769,599.02245415457,163,27211,0,1,0,0,9 +"18976",2016,47107,"TN","47","107",52697,0.941837296240773,3146,0.143271913012126,8.05388708361822,8.7160440501614,9.63874045136684,5.44615384615385,615.558661076729,185,30054,0,1,0,0,9 +"18977",2016,47109,"TN","47","109",25845,0.927800348229832,1415,0.137937705552331,7.25488481007734,8.0519780789023,8.89329814421792,7.05384615384615,738.521563436216,106,14353,0,1,0,0,9 +"18978",2016,47111,"TN","47","111",23364,0.972350624892998,1424,0.127803458311933,7.26122509197192,7.93343838762749,8.84072491676172,4.38461538461538,564.342466770624,76,13467,0,1,0,0,9 +"18979",2016,47113,"TN","47","113",97535,0.601425129440714,7167,0.136556108063772,8.87724243599392,9.32286516281803,10.3014915624127,4.88461538461539,491.38741551507,277,56371,0,1,0,0,9 +"18980",2016,47115,"TN","47","115",28375,0.946008810572687,1527,0.146607929515419,7.33106030521863,8.12177741916107,9.02569611981258,6.30769230769231,714.024166971805,117,16386,0,1,0,0,9 +"18981",2016,47117,"TN","47","117",32076,0.913393191170969,1783,0.135989524878414,7.48605261786314,8.321664807135,9.15967845717396,4.63076923076923,575.355601726067,108,18771,0,1,0,0,9 +"18982",2016,47119,"TN","47","119",89719,0.858770160166743,5039,0.141842864944995,8.5249629286806,9.34224544285612,10.2217958185297,4.04615384615385,469.580570634309,250,53239,0,1,0,0,9 +"18983",2016,47121,"TN","47","121",11974,0.968348087522966,575,0.143059963253716,6.35437004079735,7.29097477814298,8.12207437536222,6.86153846153846,896.531452087008,61,6804,0,1,0,0,9 +"18984",2016,47123,"TN","47","123",45905,0.961943143448426,2539,0.14146607123407,7.83952558170468,8.56693528331105,9.45993109330524,5.31538461538462,667.421256000937,171,25621,0,1,0,0,9 +"18985",2016,47125,"TN","47","125",194823,0.7414319664516,17210,0.0929356390159273,9.75324588920559,10.1437635025906,10.9953772954434,5.09230769230769,345.476085929927,417,120703,0,1,0,0,9 +"18986",2016,47127,"TN","47","127",6287,0.955463655161444,325,0.155400031811675,5.78382518232974,6.64639051484773,7.49387388678356,3.77692307692308,332.871012482663,12,3605,0,1,0,0,9 +"18987",2016,47129,"TN","47","129",21761,0.952437847525389,1348,0.135609576765774,7.20637729147225,7.96762673933382,8.63568708546403,6.46923076923077,605.326876513317,80,13216,0,1,0,0,9 +"18988",2016,47131,"TN","47","131",30572,0.878058354049457,1697,0.142025382703127,7.43661726523423,8.20357773693795,9.07600865918089,7.07692307692308,477.465936881332,82,17174,0,1,0,0,9 +"18989",2016,47133,"TN","47","133",21951,0.982643159764931,1225,0.140995854402988,7.11069612297883,7.9002660367677,8.73117490093806,5.36153846153846,655.97667638484,81,12348,0,1,0,0,9 +"18990",2016,47135,"TN","47","135",7888,0.955882352941177,433,0.143128803245436,6.07073772800249,6.77422388635761,7.650168700845,6.36153846153846,808.500808500808,35,4329,0,1,0,0,9 +"18991",2016,47139,"TN","47","139",16787,0.980520640972181,890,0.141121105617442,6.79122146272619,7.62851762657506,8.48218758221742,5.73076923076923,609.189468249871,59,9685,0,1,0,0,9 +"18992",2016,47141,"TN","47","141",75984,0.947357338387029,8183,0.11773531269741,9.00981411052738,9.04463991619846,10.0032876376133,4.91538461538462,521.864315278028,232,44456,0,1,0,0,9 +"18993",2016,47143,"TN","47","143",32530,0.960774669535813,2050,0.132400860743929,7.62559507213245,8.2398574110186,9.121071904218,7.12307692307692,609.45478504365,111,18213,0,1,0,0,9 +"18994",2016,47145,"TN","47","145",52988,0.957462066883068,2740,0.16145164943006,7.91571319938212,8.6741969402259,9.63443094420751,5.57692307692308,632.405804819598,190,30044,0,1,0,0,9 +"18995",2016,47147,"TN","47","147",69439,0.905442186667435,3898,0.13588905370181,8.26821888006751,9.1109619279959,9.94294862141704,4.16923076923077,488.78244293465,200,40918,0,1,0,0,9 +"18996",2016,47149,"TN","47","149",307724,0.800873510028467,29752,0.105211163250185,10.3006516356049,10.681251578816,11.4824043999023,3.7,322.722375069304,617,191186,0,1,0,0,9 +"18997",2016,47151,"TN","47","151",21899,0.989999543358144,1209,0.128316361477693,7.09754885061479,7.9536697786498,8.75352933651643,7.41538461538462,653.751096228972,82,12543,0,1,0,0,9 +"18998",2016,47153,"TN","47","153",14748,0.978166531055058,803,0.14557906156767,6.68835471394676,7.5005294853953,8.35490952835879,5.86153846153846,546.513009385767,46,8417,0,1,0,0,9 +"18999",2016,47155,"TN","47","155",96613,0.965387680746897,5681,0.143966132922071,8.64488255255713,9.34757739028127,10.2660799537389,4.99230769230769,559.671659293215,315,56283,0,1,0,0,9 +"19000",2016,47157,"TN","47","157",936716,0.419495343305762,66890,0.124985587947681,11.1108047581125,11.6700403187186,12.5894012048651,5.36153846153846,494.613019074859,2760,558012,0,1,0,0,9 +"19001",2016,47159,"TN","47","159",19542,0.963156278784157,1117,0.139954968785181,7.0184017990692,7.7553388128465,8.64347335732657,4.58461538461538,599.171733192352,68,11349,0,1,0,0,9 +"19002",2016,47161,"TN","47","161",13191,0.959821090137215,700,0.149647486922902,6.5510803350434,7.33106030521863,8.22121009392507,6.8,579.633776840996,44,7591,0,1,0,0,9 +"19003",2016,47163,"TN","47","163",156372,0.961380554063387,8678,0.144923643619062,9.0685463663583,9.80840734628586,10.7244341040279,5.19230769230769,607.120577488637,545,89768,0,1,0,0,9 +"19004",2016,47165,"TN","47","165",179474,0.901690495559245,9996,0.129701238062338,9.20994029195484,10.0828463914793,10.8901249058308,3.90769230769231,385.262977654747,405,105123,0,1,0,0,9 +"19005",2016,47167,"TN","47","167",61242,0.793475066131087,3801,0.129633258221482,8.24301946898925,8.93853164868069,9.8070317167185,5.70769230769231,548.99119384684,197,35884,0,1,0,0,9 +"19006",2016,47169,"TN","47","169",9955,0.877749874434957,681,0.115821195379206,6.52356230614951,7.13169851046691,7.86134179559999,4.84615384615385,692.887711432647,34,4907,0,1,0,0,9 +"19007",2016,47171,"TN","47","171",17736,0.985284167794317,898,0.156123139377537,6.8001700683022,7.60140233458373,8.52277756971014,7.12307692307692,597.43104650005,60,10043,0,1,0,0,9 +"19008",2016,47173,"TN","47","173",19222,0.986942045572781,985,0.150452606388513,6.89264164117209,7.75405263903576,8.6436496153688,5.81538461538462,571.224562656194,64,11204,0,1,0,0,9 +"19009",2016,47175,"TN","47","175",5721,0.981122181436812,299,0.163957350113617,5.70044357339069,6.48920493132532,7.36960072052641,6.17692307692308,987.654320987654,32,3240,0,1,0,0,9 +"19010",2016,47177,"TN","47","177",40424,0.945477933900653,2202,0.133410845042549,7.69712131728263,8.55795118388841,9.34740302236452,4.82307692307692,677.142113030645,156,23038,0,1,0,0,9 +"19011",2016,47179,"TN","47","179",127439,0.928907163427208,11653,0.132196580324704,9.36331893657326,9.62674542012268,10.5638532435717,4.8,461.270327999895,352,76311,0,1,0,0,9 +"19012",2016,47181,"TN","47","181",16754,0.924435955592694,1046,0.135310970514504,6.95272864462487,7.7106533235012,8.35537989525363,6.6,579.9342741156,60,10346,0,1,0,0,9 +"19013",2016,47183,"TN","47","183",33591,0.900598374564616,4016,0.125360959780894,8.29804166137157,8.15421269491423,9.19400771735529,5.87692307692308,528.01558414928,103,19507,0,1,0,0,9 +"19014",2016,47185,"TN","47","185",26473,0.968042911645828,1329,0.138367393193065,7.19218205871325,8.03171037532204,8.92598608961708,5,640.768922707249,96,14982,0,1,0,0,9 +"19015",2016,47187,"TN","47","187",219105,0.905045526117615,11294,0.128563930535588,9.33202689023278,10.357075935826,11.0782272015918,3.41538461538462,199.269609399809,251,125960,0,1,0,0,9 +"19016",2016,47189,"TN","47","189",132649,0.904695851457606,7095,0.132062812384564,8.86714558959414,9.8072519446553,10.5912452358116,3.85384615384615,366.892446633826,286,77952,0,1,0,0,9 +"19017",2016,48001,"TX","48","001",57595,0.759753450820384,3442,0.118430419307232,8.14380797677148,9.12150915826957,9.41556432198744,4.32307692307692,580.442318544595,216,37213,0,1,0,0,9 +"19018",2016,48003,"TX","48","003",17775,0.954036568213783,1216,0.100759493670886,7.10332206252611,7.69393732550927,8.4767877767812,4.73076923076923,291.193894969374,29,9959,0,1,0,0,9 +"19019",2016,48005,"TX","48","005",87661,0.820387629618645,5593,0.122369126521486,8.62927109482159,9.25817770139034,10.1185989321531,5.90769230769231,514.792658609042,253,49146,0,1,0,0,9 +"19020",2016,48007,"TX","48","007",25216,0.944083121827411,1348,0.156646573604061,7.20637729147225,7.79358680337158,8.81818627792769,5.57692307692308,678.952473326867,91,13403,0,1,0,0,9 +"19021",2016,48009,"TX","48","009",8780,0.967767653758542,470,0.153644646924829,6.1527326947041,6.83733281468559,7.81197342962202,4.33846153846154,400.881940268591,20,4989,0,1,0,0,9 +"19022",2016,48013,"TX","48","013",48689,0.964673745609891,3100,0.117459795847111,8.03915739047324,8.70383871969025,9.50822026940441,5.34615384615385,478.52214555976,129,26958,0,1,0,0,9 +"19023",2016,48015,"TX","48","015",29650,0.885362563237774,1730,0.145868465430017,7.45587668749182,8.11222795834972,9.01030280937645,5.33076923076923,323.131325448116,53,16402,0,1,0,0,9 +"19024",2016,48019,"TX","48","019",21678,0.969277608635483,989,0.193652550973337,6.89669433162271,7.59387784460512,8.72225423517968,4.11538461538461,439.287194363862,53,12065,0,1,0,0,9 +"19025",2016,48021,"TX","48","021",82642,0.886002274872341,4818,0.138997120108419,8.48011418317482,9.22325659724273,10.0435972605208,3.73846153846154,449.324962731224,214,47627,0,1,0,0,9 +"19026",2016,48023,"TX","48","023",3636,0.952970297029703,172,0.13971397139714,5.14749447681345,5.87773578177964,6.85435450225502,3.59230769230769,743.494423791822,14,1883,0,1,0,0,9 +"19027",2016,48025,"TX","48","025",32823,0.892788593364409,2832,0.103128903512781,7.94873845481361,8.47407690034261,8.85509298002864,7.54615384615385,392.194375358714,82,20908,0,1,0,0,9 +"19028",2016,48027,"TX","48","027",341477,0.684930463837974,30444,0.0943870304588596,10.3236442093873,10.680585180216,11.5149134875432,4.5,321.918354329453,646,200672,0,1,0,0,9 +"19029",2016,48029,"TX","48","029",1927409,0.859801941362731,145449,0.105008848666785,11.8875807886849,12.4585885739429,13.264966497201,3.76153846153846,332.117955159708,3802,1144774,0,1,0,0,9 +"19030",2016,48031,"TX","48","031",11291,0.95855105836507,535,0.1809405721371,6.28226674689601,7.06731984865348,8.0471895621705,3.09230769230769,492.845786963434,31,6290,0,1,0,0,9 +"19031",2016,48035,"TX","48","035",18035,0.958469642362074,863,0.150596063210424,6.76041469108343,7.51860721681525,8.47052078321781,4.3,544.930013890373,51,9359,0,1,0,0,9 +"19032",2016,48037,"TX","48","037",93575,0.716687149345445,5993,0.124071600320598,8.69834740045819,9.38664385644458,10.173858142213,4.71538461538462,435.133844967503,237,54466,0,1,0,0,9 +"19033",2016,48039,"TX","48","039",353361,0.777527797351717,20996,0.116823871338376,9.95208722237219,10.8459916912262,11.5449375660912,5.2,328.30998526632,693,211081,0,1,0,0,9 +"19034",2016,48041,"TX","48","041",219881,0.809315038589055,44437,0.0821944597304906,10.7018277347242,10.0670509364015,11.1377082420198,3.48461538461538,171.226843859439,243,141917,0,1,0,0,9 +"19035",2016,48043,"TX","48","043",9213,0.946922826440899,491,0.14609790513405,6.19644412779452,6.97447891102505,7.86403565907245,3.77692307692308,528.900642236494,28,5294,0,1,0,0,9 +"19036",2016,48047,"TX","48","047",7220,0.967728531855956,518,0.113019390581717,6.24997524225948,6.63594655568665,7.4899708988348,11.8076923076923,296.096904441454,11,3715,0,1,0,0,9 +"19037",2016,48049,"TX","48","049",38056,0.938905822997688,2297,0.132278747109523,7.7393592026891,8.3696208269491,9.2588447810358,4.35384615384615,569.541495166076,119,20894,0,1,0,0,9 +"19038",2016,48051,"TX","48","051",17862,0.849177023849513,982,0.15373418430187,6.88959130835447,7.51860721681525,8.52416880515266,4.66923076923077,558.092338914257,55,9855,0,1,0,0,9 +"19039",2016,48053,"TX","48","053",45836,0.955820752247142,2500,0.153002007155947,7.82404601085629,8.50126704086598,9.45006568288207,3.46153846153846,447.105788423154,112,25050,0,1,0,0,9 +"19040",2016,48055,"TX","48","055",41095,0.899914831488016,3347,0.122691324978708,8.11581970121133,8.53050420547591,9.38479775371334,4.34615384615385,441.546651260678,107,24233,0,1,0,0,9 +"19041",2016,48057,"TX","48","057",21939,0.904416792014221,1401,0.12821915310634,7.24494154633701,7.82763954636642,8.68033192879342,5.59230769230769,375.020381542475,46,12266,0,1,0,0,9 +"19042",2016,48059,"TX","48","059",13789,0.962578867212996,625,0.152440351004424,6.4377516497364,7.35308192051543,8.26436332973167,4.26153846153846,593.589236248516,45,7581,0,1,0,0,9 +"19043",2016,48061,"TX","48","061",420894,0.976036721834951,31551,0.0963591783204322,10.3593605631881,10.8617452232316,11.657406688781,7.18461538461538,328.048851829019,729,222223,0,1,0,0,9 +"19044",2016,48063,"TX","48","063",12751,0.798996157164144,816,0.129872166888871,6.70441435496411,7.21376830811864,8.16251625014018,6.85384615384615,714.806710430343,49,6855,0,1,0,0,9 +"19045",2016,48065,"TX","48","065",6093,0.964385360249467,320,0.143443295585098,5.76832099579377,6.55819780281227,7.4121603349452,3.26153846153846,326.119181737326,11,3373,0,1,0,0,9 +"19046",2016,48067,"TX","48","067",30048,0.812666400425985,1591,0.143071086261981,7.37211802833779,8.09468364869882,9.02893839224161,7.21538461538462,650.27559298941,105,16147,0,1,0,0,9 +"19047",2016,48069,"TX","48","069",7730,0.948512289780078,548,0.130012936610608,6.30627528694802,6.7945865808765,7.5923661285198,3.08461538461538,367.197062423501,15,4085,0,1,0,0,9 +"19048",2016,48071,"TX","48","071",40160,0.88722609561753,2412,0.116658366533865,7.78821155784708,8.63781663373998,9.35677565020573,6.1,458.32262486079,107,23346,0,1,0,0,9 +"19049",2016,48073,"TX","48","073",51870,0.824484287642182,3282,0.122575669944091,8.09620827165004,8.72176535714501,9.5128864260765,5.1,515.755263529744,146,28308,0,1,0,0,9 +"19050",2016,48077,"TX","48","077",10268,0.967471756914686,491,0.169555901830931,6.19644412779452,7.04141166379481,7.96241568012106,4.37692307692308,523.012552301255,30,5736,0,1,0,0,9 +"19051",2016,48083,"TX","48","083",8415,0.941770647653,373,0.157932263814617,5.92157841964382,6.75227037614174,7.67971363996637,5.83076923076923,568.44020009095,25,4398,0,1,0,0,9 +"19052",2016,48085,"TX","48","085",944313,0.734342320819474,53629,0.108421677981771,10.8898452455231,11.9247834284973,12.5810304350307,3.54615384615385,192.772187286542,1095,568028,0,1,0,0,9 +"19053",2016,48089,"TX","48","089",21091,0.844009293063392,1201,0.152007965482907,7.09090982207998,7.65444322647011,8.60904284504612,4.72307692307692,428.877769835597,48,11192,0,1,0,0,9 +"19054",2016,48091,"TX","48","091",134408,0.949653294446759,7335,0.148287304327123,8.90041269057708,9.67098786879789,10.568878056051,3.61538461538462,333.968220836486,256,76654,0,1,0,0,9 +"19055",2016,48093,"TX","48","093",13554,0.967832374206876,741,0.137081304411982,6.60800062529609,7.20711885620776,8.15219801586179,4.31538461538462,374.531835205993,26,6942,0,1,0,0,9 +"19056",2016,48097,"TX","48","097",39334,0.933594345858545,2468,0.141684039253572,7.81116338502528,8.34924780056679,9.30546871706776,3.98461538461538,412.806164572058,90,21802,0,1,0,0,9 +"19057",2016,48099,"TX","48","099",74924,0.761291441994554,7939,0.0852063424269927,8.97954260172511,9.30301070681749,10.0864339140989,4.67692307692308,300.783289817232,144,47875,0,1,0,0,9 +"19058",2016,48111,"TX","48","111",7321,0.939762327550881,478,0.0973910667941538,6.16961073249146,6.75925527066369,7.54433210805369,2.23076923076923,325.40675844806,13,3995,0,1,0,0,9 +"19059",2016,48113,"TX","48","113",2591488,0.679538164946162,184504,0.10696055702361,12.1254264224445,12.7912030078044,13.5834322099675,4.01538461538462,326.69192093825,5102,1561716,0,1,0,0,9 +"19060",2016,48115,"TX","48","115",13000,0.912,1022,0.104538461538462,6.92951677076365,7.40062057737113,8.02158453345511,5.00769230769231,418.015102481122,31,7416,0,1,0,0,9 +"19061",2016,48117,"TX","48","117",18823,0.953939329543643,1300,0.105349837964193,7.17011954344963,7.70481192293259,8.5016733797582,3.13076923076923,399.281293671391,40,10018,0,1,0,0,9 +"19062",2016,48119,"TX","48","119",5131,0.894562463457416,266,0.147534593646463,5.5834963087817,6.30444880242198,7.24565506759454,3.77692307692308,716.845878136201,20,2790,0,1,0,0,9 +"19063",2016,48121,"TX","48","121",807566,0.792889992892222,53624,0.106757837749484,10.8897520080378,11.7320288658567,12.4526748777223,3.42307692307692,204.124265122803,1026,502635,0,1,0,0,9 +"19064",2016,48123,"TX","48","123",20598,0.88707641518594,1026,0.135644237304593,6.93342302573071,7.82684209815829,8.54032360880509,5.46923076923077,569.505565622573,66,11589,0,1,0,0,9 +"19065",2016,48127,"TX","48","127",10676,0.966185837392282,704,0.109123267141251,6.55677835615804,7.09090982207998,7.9298464297425,7.15384615384615,409.982174688057,23,5610,0,1,0,0,9 +"19066",2016,48131,"TX","48","131",11411,0.971168171063009,906,0.106300937691701,6.80903930604298,7.1693500166706,7.93379687481541,10.9307692307692,572.0823798627,35,6118,0,1,0,0,9 +"19067",2016,48133,"TX","48","133",18233,0.955684747435968,1173,0.141337135962266,7.06731984865348,7.54697411751653,8.47407690034261,5.46153846153846,617.919670442842,60,9710,0,1,0,0,9 +"19068",2016,48135,"TX","48","135",157748,0.913881633998529,12293,0.0984735147196795,9.41678527366734,9.88359092082167,10.6950310549523,6.37692307692308,430.136135869806,388,90204,0,1,0,0,9 +"19069",2016,48139,"TX","48","139",168367,0.872878889568621,10872,0.122268615583814,9.29394595583098,9.98948174570299,10.8125522393185,3.74615384615385,362.007608295496,354,97788,0,1,0,0,9 +"19070",2016,48141,"TX","48","141",834112,0.928386116013197,71131,0.102205698994859,11.1722785263944,11.5534818242126,12.3979979384668,4.95384615384615,280.672115048519,1349,480632,0,1,0,0,9 +"19071",2016,48143,"TX","48","143",41375,0.953861027190332,5831,0.105305135951662,8.67094379122216,8.31016902198191,9.39065992609946,4.06923076923077,316.429344658173,76,24018,0,1,0,0,9 +"19072",2016,48145,"TX","48","145",17279,0.72753052838706,1191,0.129637131778459,7.0825485693553,7.61184239958042,8.61884684514274,4.4,584.624378836598,60,10263,0,1,0,0,9 +"19073",2016,48147,"TX","48","147",33937,0.904234316527684,2077,0.137666853286973,7.63867982387611,8.32044811395656,9.0808010006212,3.78461538461538,674.613238650773,133,19715,0,1,0,0,9 +"19074",2016,48149,"TX","48","149",24999,0.912916516660666,1335,0.160446417856714,7.19668657083435,7.86057078553866,8.81403320165278,3.65384615384615,332.225913621262,44,13244,0,1,0,0,9 +"19075",2016,48157,"TX","48","157",744489,0.571151487799014,43302,0.119328828229833,10.6759541023003,11.6472727746439,12.3350066111641,4.99230769230769,209.824033935177,924,440369,0,1,0,0,9 +"19076",2016,48159,"TX","48","159",10686,0.933557926258656,477,0.140370578326783,6.16751649088834,7.00124562206948,7.93164402145431,4.93846153846154,535.905680600214,30,5598,0,1,0,0,9 +"19077",2016,48161,"TX","48","161",19658,0.811934072642181,935,0.13231254451114,6.84054652928869,7.87929148508227,8.51278348292754,6.69230769230769,519.598906107566,57,10970,0,1,0,0,9 +"19078",2016,48163,"TX","48","163",19547,0.919322658208421,2034,0.0890162173223513,7.6177595766085,7.77064523412918,8.34164861890131,4.87692307692308,296.064089167537,34,11484,0,1,0,0,9 +"19079",2016,48165,"TX","48","165",20477,0.959613224593446,1398,0.0942520877081604,7.24279792279376,7.81278281857758,8.56674497024549,3.72307692307692,335.164323619775,36,10741,0,1,0,0,9 +"19080",2016,48167,"TX","48","167",329038,0.814477355199096,20240,0.133811292312742,9.9154161234014,10.6685832324087,11.5037737151663,5.33076923076923,431.027878924065,844,195811,0,1,0,0,9 +"19081",2016,48171,"TX","48","171",26225,0.973727359389895,1285,0.155042897998093,7.15851399732932,7.79852305362521,8.81373589230022,2.84615384615385,492.648756831653,64,12991,0,1,0,0,9 +"19082",2016,48177,"TX","48","177",20784,0.897372979214781,1267,0.127742494226328,7.14440718032114,7.73630709654828,8.62011072542292,4.23076923076923,521.063322441049,59,11323,0,1,0,0,9 +"19083",2016,48179,"TX","48","179",22713,0.916655659754326,1259,0.118566459736715,7.13807303404435,7.98718474823347,8.62479120201426,6.89230769230769,523.479599692071,68,12990,0,1,0,0,9 +"19084",2016,48181,"TX","48","181",128309,0.895658137776773,7748,0.137309152124948,8.95519002452689,9.59069277926927,10.5143394903692,3.87692307692308,483.587135750807,349,72169,0,1,0,0,9 +"19085",2016,48183,"TX","48","183",123493,0.756706857878584,8538,0.121496764998826,9.05228206731791,9.58280007847036,10.4786673054405,6.09230769230769,462.996041669644,324,69979,0,1,0,0,9 +"19086",2016,48185,"TX","48","185",27479,0.81786091196914,1716,0.142399650642309,7.44775128004791,8.11072758297449,8.83971137870348,6.62307692307692,600.210383020853,97,16161,0,1,0,0,9 +"19087",2016,48187,"TX","48","187",154510,0.877528962526697,9583,0.115455310335901,9.16774597434376,9.97016441080041,10.7228487942303,3.59230769230769,329.626423386828,297,90102,0,1,0,0,9 +"19088",2016,48189,"TX","48","189",34062,0.912189536727145,2793,0.107891491985203,7.93487156594518,8.28020423327997,9.0825070004663,5.61538461538461,396.514843220118,76,19167,0,1,0,0,9 +"19089",2016,48193,"TX","48","193",8245,0.959369314736204,434,0.142995755003032,6.0730445341004,6.7202201551353,7.646353722446,4.90769230769231,712.419852766564,30,4211,0,1,0,0,9 +"19090",2016,48199,"TX","48","199",56310,0.928609483217901,3104,0.135180252175457,8.04044688130311,8.84735987547417,9.6952941881746,6.09230769230769,551.745635910224,177,32080,0,1,0,0,9 +"19091",2016,48201,"TX","48","201",4622836,0.708461212987006,323436,0.10646732871337,12.686756537184,13.3973917281325,14.1534773914047,5.33076923076923,314.448826735683,8766,2787735,0,1,0,0,9 +"19092",2016,48203,"TX","48","203",66657,0.760340249336154,4114,0.132244175405434,8.3221510702129,8.97157543975902,9.85508481330796,6.02307692307692,537.821421882107,201,37373,0,1,0,0,9 +"19093",2016,48207,"TX","48","207",5749,0.925900156548965,428,0.137415202643938,6.0591231955818,6.48157712927643,7.25488481007734,4.23846153846154,558.83266066439,18,3221,0,1,0,0,9 +"19094",2016,48209,"TX","48","209",204581,0.918819440710525,25959,0.103733973340633,10.1642736492748,10.1888168594043,11.0551349510834,3.34615384615385,230.877492607176,292,126474,0,1,0,0,9 +"19095",2016,48213,"TX","48","213",80099,0.912395910061299,4326,0.146918188741432,8.372398606513,9.03824633533766,10.0068560855132,4.67692307692308,615.164850355966,267,43403,0,1,0,0,9 +"19096",2016,48215,"TX","48","215",847759,0.973977274201748,66449,0.0810985197444085,11.1041900151192,11.5977260666627,12.3476242897809,7.82307692307692,266.658911485796,1192,447013,0,1,0,0,9 +"19097",2016,48217,"TX","48","217",35101,0.910059542463178,1964,0.137061622176006,7.58273848891441,8.20083725837985,9.1446278286108,4.41538461538462,513.149454778704,96,18708,0,1,0,0,9 +"19098",2016,48219,"TX","48","219",23051,0.934146024033665,1816,0.11860656804477,7.50439155916124,7.8578675593318,8.7579408766788,4.66153846153846,511.310814998451,66,12908,0,1,0,0,9 +"19099",2016,48221,"TX","48","221",56595,0.969467267426451,2769,0.151426804488029,7.92624152317096,8.63177109612367,9.62924805578084,4.69230769230769,470.313542361574,141,29980,0,1,0,0,9 +"19100",2016,48223,"TX","48","223",36163,0.899593507175843,2154,0.129054558526671,7.67508185771633,8.31164394850298,9.22286165252985,3.99230769230769,460.161056369729,92,19993,0,1,0,0,9 +"19101",2016,48225,"TX","48","225",22892,0.724619954569282,1178,0.142320461296523,7.07157336421153,7.944846711002,8.6417090661138,4.62307692307692,602.501525320317,79,13112,0,1,0,0,9 +"19102",2016,48227,"TX","48","227",36202,0.892547373073311,2661,0.117783547870283,7.88645727097769,8.41272116981953,9.10397935598477,5.52307692307692,476.851049072308,110,23068,0,1,0,0,9 +"19103",2016,48231,"TX","48","231",91920,0.881103133159269,6375,0.132027850304613,8.76013937002663,9.27874640464024,10.1874627630566,4.29230769230769,532.326569136385,282,52975,0,1,0,0,9 +"19104",2016,48233,"TX","48","233",21540,0.934540389972145,1280,0.135051067780873,7.15461535691366,7.87131120332341,8.67145815042767,5.63076923076923,566.147697943552,68,12011,0,1,0,0,9 +"19105",2016,48237,"TX","48","237",8785,0.937734775184974,616,0.127034718269778,6.42324696353352,6.94697599213542,7.63240112660145,4.93076923076923,480.215136381099,25,5206,0,1,0,0,9 +"19106",2016,48239,"TX","48","239",14871,0.908681326070876,849,0.135969336292112,6.74405918631135,7.45587668749182,8.29254851397576,4.67692307692308,429.97542997543,35,8140,0,1,0,0,9 +"19107",2016,48241,"TX","48","241",35443,0.815873374150044,1993,0.139576220974522,7.5973963202128,8.25218543600333,9.18039649560311,7.68461538461538,564.218301189988,110,19496,0,1,0,0,9 +"19108",2016,48245,"TX","48","245",255696,0.597619829797885,18317,0.125406732995432,9.81558486936022,10.3813663411533,11.1793809384204,7,486.434324801586,741,152333,0,1,0,0,9 +"19109",2016,48249,"TX","48","249",41206,0.970344124642042,2762,0.112944716788817,7.92371033396924,8.47969898698866,9.33846969968671,10.5692307692308,489.821597088033,109,22253,0,1,0,0,9 +"19110",2016,48251,"TX","48","251",162816,0.936971796383648,9958,0.124410377358491,9.20613152720213,9.94270826568941,10.750985392926,4.36153846153846,424.219871351869,399,94055,0,1,0,0,9 +"19111",2016,48253,"TX","48","253",19968,0.840444711538462,1582,0.116686698717949,7.3664451483276,7.99530662029082,8.29329935871132,5.81538461538462,403.348554033486,53,13140,0,1,0,0,9 +"19112",2016,48255,"TX","48","255",15513,0.889898794559402,1258,0.111841681170631,7.13727843726039,7.64491934495886,8.13914867888407,4.88461538461539,251.889168765743,24,9528,0,1,0,0,9 +"19113",2016,48257,"TX","48","257",118040,0.859445950525246,6702,0.117900711623179,8.81016126829726,9.70692507345183,10.4546102330667,3.8,390.1056353462,267,68443,0,1,0,0,9 +"19114",2016,48259,"TX","48","259",41916,0.96407099914114,2260,0.142928714572001,7.72312009226633,8.50835424274903,9.37670190919141,3.2,293.141354485494,68,23197,0,1,0,0,9 +"19115",2016,48265,"TX","48","265",51442,0.95227635006415,3036,0.145289840985965,8.01829613851552,8.44827174594982,9.51856009564551,3.58461538461538,496.752006113871,130,26170,0,1,0,0,9 +"19116",2016,48273,"TX","48","273",31309,0.915072343415631,4866,0.0887604203264237,8.49002752334347,8.04654935728308,9.06900719585954,6.72307692307692,363.19612590799,66,18172,0,1,0,0,9 +"19117",2016,48277,"TX","48","277",49555,0.828856825749168,2928,0.127837756028655,7.9820748750812,8.59433940059289,9.54766938431738,4.62307692307692,479.783181951362,131,27304,0,1,0,0,9 +"19118",2016,48279,"TX","48","279",13205,0.921166224914805,782,0.122302158273381,6.66185474054531,7.28276117960559,8.15536212032814,6.50769230769231,544.724770642202,38,6976,0,1,0,0,9 +"19119",2016,48281,"TX","48","281",20532,0.919588934346386,1069,0.139294759399961,6.97447891102505,7.80139132029149,8.66112036022288,4.14615384615385,414.615185281161,48,11577,0,1,0,0,9 +"19120",2016,48283,"TX","48","283",7600,0.972368421052632,1141,0.0844736842105263,7.03966034986208,6.76157276880406,7.45587668749182,5.16153846153846,355.425465189212,17,4783,0,1,0,0,9 +"19121",2016,48285,"TX","48","285",19886,0.917027054208991,1019,0.139997988534647,6.92657703322272,7.62021477057445,8.54051901671973,4.22307692307692,398.561290949742,41,10287,0,1,0,0,9 +"19122",2016,48287,"TX","48","287",16961,0.862920818347975,1014,0.15305701314781,6.92165818415113,7.57558465155779,8.48466999971068,3.76923076923077,411.692054343351,40,9716,0,1,0,0,9 +"19123",2016,48289,"TX","48","289",17200,0.904593023255814,807,0.149593023255814,6.69332366826995,7.49331724886215,8.39276311303806,6.48461538461538,743.913435527502,66,8872,0,1,0,0,9 +"19124",2016,48291,"TX","48","291",81381,0.872537815952126,5486,0.123579213821408,8.60995467149755,9.24096656551794,10.103239644393,7.53846153846154,528.398847883296,255,48259,0,1,0,0,9 +"19125",2016,48293,"TX","48","293",23466,0.793531066223472,1447,0.134918605642206,7.27724772663148,7.91169052070834,8.73536440110389,5.62307692307692,551.651175092572,73,13233,0,1,0,0,9 +"19126",2016,48297,"TX","48","297",12038,0.925153680013291,713,0.136152184748297,6.5694814204143,7.27724772663148,7.97899637085411,5.93846153846154,345.921014701643,24,6938,0,1,0,0,9 +"19127",2016,48299,"TX","48","299",20621,0.969060666311042,759,0.174530818098055,6.63200177739563,7.35244110024358,8.54169066301663,4.18461538461538,579.916573405229,57,9829,0,1,0,0,9 +"19128",2016,48303,"TX","48","303",302326,0.87705655484477,37810,0.103464472126116,10.540328896885,10.4458699812063,11.4078760120385,3.39230769230769,380.242932984963,684,179885,0,1,0,0,9 +"19129",2016,48307,"TX","48","307",8121,0.95148380741288,455,0.14320896441325,6.12029741895095,6.7202201551353,7.67740043051481,4.5,326.26427406199,14,4291,0,1,0,0,9 +"19130",2016,48309,"TX","48","309",247573,0.810831552713745,26384,0.112560739660625,10.1805130447994,10.2282847575768,11.1865718618702,3.96923076923077,351.264055863,497,141489,0,1,0,0,9 +"19131",2016,48313,"TX","48","313",14127,0.770298010901111,1307,0.0988886529340978,7.17548971362422,7.50163445788341,8.06902932877496,5.09230769230769,469.814423302795,40,8514,0,1,0,0,9 +"19132",2016,48315,"TX","48","315",10134,0.751924215512137,462,0.17298204065522,6.13556489108174,6.87109129461055,7.95120715647297,7.02307692307692,935.083618054307,52,5561,0,1,0,0,9 +"19133",2016,48321,"TX","48","321",37143,0.847373663947446,2387,0.13701101149611,7.77779262633883,8.29379960884682,9.24290436284945,7.33846153846154,553.177160998605,115,20789,0,1,0,0,9 +"19134",2016,48323,"TX","48","323",57901,0.968342515673304,4911,0.0914837394863647,8.49923286603924,8.84534519642173,9.6457525564523,11.2615384615385,392.182495587947,120,30598,0,1,0,0,9 +"19135",2016,48325,"TX","48","325",49239,0.947561891996182,3462,0.133897926440423,8.14960173573616,8.62658556818743,9.49597034030183,4.4,324.82434770328,92,28323,0,1,0,0,9 +"19136",2016,48329,"TX","48","329",163928,0.89147064564931,11500,0.109737201698307,9.35010231435134,9.92788743935966,10.7680638487236,4.41538461538462,334.118477166841,322,96373,0,1,0,0,9 +"19137",2016,48331,"TX","48","331",24678,0.87657022449145,1416,0.138868627927709,7.25559127425367,7.87283617502572,8.81314100828505,5.14615384615385,531.027158246093,70,13182,0,1,0,0,9 +"19138",2016,48335,"TX","48","335",8481,0.855677396533428,790,0.108713595094918,6.67203294546107,7.02019070831193,7.52456122628536,7.03076923076923,577.513084280816,32,5541,0,1,0,0,9 +"19139",2016,48337,"TX","48","337",19387,0.969309330994997,979,0.141538144117192,6.88653164253051,7.62608275807238,8.55891078476811,4.95384615384615,569.938176197836,59,10352,0,1,0,0,9 +"19140",2016,48339,"TX","48","339",555338,0.902291937522734,33129,0.123513968069896,10.4081643107152,11.234388118431,12.0042624121524,4.89230769230769,316.801566459057,1029,324809,0,1,0,0,9 +"19141",2016,48341,"TX","48","341",21638,0.871245031888345,1513,0.104122377299196,7.32184971378836,7.8804263442924,8.62891344102665,2.97692307692308,353.647503906571,43,12159,0,1,0,0,9 +"19142",2016,48343,"TX","48","343",12420,0.742834138486312,699,0.148228663446055,6.54965074223381,7.21303165983487,8.16308637558322,10.9384615384615,784.023668639053,53,6760,0,1,0,0,9 +"19143",2016,48347,"TX","48","347",65532,0.782228529573338,8651,0.111441738387353,9.06543020018037,8.78706764521805,9.86459078690618,4.68461538461538,367.953159831332,137,37233,0,1,0,0,9 +"19144",2016,48349,"TX","48","349",48403,0.823895213106626,3008,0.129020928454848,8.00903068506973,8.60904284504612,9.50502288407271,4.18461538461538,578.493647912886,153,26448,0,1,0,0,9 +"19145",2016,48351,"TX","48","351",14162,0.7775031775173,860,0.144612342889422,6.75693238924755,7.35755620091035,8.23456499326713,7.92307692307692,640.709709216363,52,8116,0,1,0,0,9 +"19146",2016,48353,"TX","48","353",15082,0.918711046280334,919,0.123723644079035,6.82328612235569,7.42297125104942,8.29079434738136,4.8,534.559920437593,43,8044,0,1,0,0,9 +"19147",2016,48355,"TX","48","355",361753,0.919964727313941,26619,0.121043916705597,10.1893805255034,10.712304426105,11.5744061908132,5.64615384615385,422.156112763848,894,211770,0,1,0,0,9 +"19148",2016,48357,"TX","48","357",10259,0.96071741885174,690,0.10926990934789,6.5366915975913,7.14677217945264,7.90801944463247,5.24615384615385,355.113636363636,20,5632,0,1,0,0,9 +"19149",2016,48361,"TX","48","361",84652,0.888319236403156,5193,0.132400888342863,8.55506684384432,9.234545060673,10.1056117366263,6.70769230769231,639.246880845204,311,48651,0,1,0,0,9 +"19150",2016,48363,"TX","48","363",28131,0.949379687888806,1702,0.141552024457005,7.43955930913332,8.00869818298853,8.97891260107428,5.47692307692308,605.670103092784,94,15520,0,1,0,0,9 +"19151",2016,48365,"TX","48","365",23407,0.820780108514547,1342,0.14367496902636,7.20191631753163,7.92660259918138,8.79209392950328,7.17692307692308,650.892105061643,85,13059,0,1,0,0,9 +"19152",2016,48367,"TX","48","367",129016,0.964035468469027,7210,0.139455571401997,8.88322423027899,9.67105095431033,10.5307619889454,4.07692307692308,403.441990135106,301,74608,0,1,0,0,9 +"19153",2016,48371,"TX","48","371",15852,0.926760030280091,1058,0.110963916225082,6.96413561241824,7.70841066725737,8.23004431012611,5.9,302.083333333333,29,9600,0,1,0,0,9 +"19154",2016,48373,"TX","48","373",47654,0.855772862718764,2740,0.163784781970034,7.91571319938212,8.63070043220983,9.42955621995241,6.33076923076923,652.516850709881,182,27892,0,1,0,0,9 +"19155",2016,48375,"TX","48","375",120440,0.809498505479907,8293,0.111424775821986,9.0231670644512,9.64827267022185,10.390225380773,3.35384615384615,534.622129079167,375,70143,0,1,0,0,9 +"19156",2016,48379,"TX","48","379",11283,0.9484179739431,506,0.166267836568289,6.22653666928747,7.05012252026906,8.04398443122155,4.01538461538462,582.901554404145,36,6176,0,1,0,0,9 +"19157",2016,48381,"TX","48","381",132465,0.933016268448269,9167,0.123066470388404,9.12336535796178,9.72106599074184,10.5806069720189,2.95384615384615,339.314174078454,264,77804,0,1,0,0,9 +"19158",2016,48387,"TX","48","387",12175,0.803860369609856,622,0.152032854209446,6.43294009273918,7.16006920759613,8.12326131912175,5.80769230769231,557.901085645356,37,6632,0,1,0,0,9 +"19159",2016,48389,"TX","48","389",15203,0.918042491613497,1547,0.0880747220943235,7.34407285057307,7.75233516330229,8.04462627976734,5.31538461538462,372.5782414307,35,9394,0,1,0,0,9 +"19160",2016,48391,"TX","48","391",7275,0.905429553264605,437,0.129347079037801,6.07993319509559,6.59441345974978,7.55851674304564,6.63076923076923,747.80814853017,29,3878,0,1,0,0,9 +"19161",2016,48395,"TX","48","395",16821,0.769573747101837,1036,0.13596100112954,6.94312242281943,7.55066124310534,8.45169420918354,5.08461538461538,586.12829697167,54,9213,0,1,0,0,9 +"19162",2016,48397,"TX","48","397",93579,0.889633357911497,5120,0.120005556802274,8.54090971803355,9.54344981789221,10.2248824088481,3.5,204.273173963452,111,54339,0,1,0,0,9 +"19163",2016,48399,"TX","48","399",10290,0.944509232264334,569,0.134499514091351,6.34388043412633,7.02019070831193,7.90470391387375,3.96923076923077,414.713306887847,23,5546,0,1,0,0,9 +"19164",2016,48401,"TX","48","401",52836,0.802350669997729,3403,0.132371867665985,8.1324126745009,8.81966534934065,9.54079453627183,5.82307692307692,407.832982683282,126,30895,0,1,0,0,9 +"19165",2016,48403,"TX","48","403",10389,0.908557127731254,476,0.160361921262874,6.16541785423142,6.76041469108343,7.85360481309784,9.40769230769231,874.97569511958,45,5143,0,1,0,0,9 +"19166",2016,48405,"TX","48","405",8280,0.758333333333333,411,0.16231884057971,6.01859321449623,6.58892647753352,7.71154897962915,8.93076923076923,865.406513322706,38,4391,0,1,0,0,9 +"19167",2016,48407,"TX","48","407",27743,0.877770969253505,1515,0.161734491583463,7.32317071794347,7.97693875695943,8.94897560784178,6.28461538461538,731.97830207176,112,15301,0,1,0,0,9 +"19168",2016,48409,"TX","48","409",67325,0.951875232083179,4346,0.114860750092833,8.37701116081637,9.0212358628854,9.83242110410227,7.47692307692308,440.552016985138,166,37680,0,1,0,0,9 +"19169",2016,48415,"TX","48","415",17417,0.918642705402767,1234,0.117126944938853,7.11801620446533,7.70571282389443,8.3513747067213,5.90769230769231,382.563173260848,38,9933,0,1,0,0,9 +"19170",2016,48419,"TX","48","419",25583,0.792753000039088,1509,0.126802955087363,7.31920245876785,7.96970358327866,8.85209276347713,6.02307692307692,566.064775007165,79,13956,0,1,0,0,9 +"19171",2016,48423,"TX","48","423",225181,0.787899511948166,15673,0.120840568253982,9.65969476565407,10.1782743370022,11.0954535629374,4.52307692307692,372.104756949372,472,126846,0,1,0,0,9 +"19172",2016,48425,"TX","48","425",8663,0.956250721459079,493,0.139789911116241,6.20050917404269,6.94601399109923,7.8164169836918,4.82307692307692,287.0028700287,14,4878,0,1,0,0,9 +"19173",2016,48427,"TX","48","427",63697,0.990046626999702,5304,0.0827040519961694,8.5762165318657,8.93485034028976,9.74665828850311,13.3846153846154,302.485774183887,101,33390,0,1,0,0,9 +"19174",2016,48429,"TX","48","429",9383,0.947991047639348,651,0.133006501119045,6.47850964220857,6.95939851213398,7.77233157516961,5.28461538461538,629.590766002099,36,5718,0,1,0,0,9 +"19175",2016,48439,"TX","48","439",2023942,0.754055699224582,136372,0.11201556171076,11.8231417247266,12.5281815066965,13.3357232239825,3.98461538461538,316.564734257903,3822,1207336,0,1,0,0,9 +"19176",2016,48441,"TX","48","441",136330,0.87429032494682,14759,0.108677473776865,9.59960834518178,9.59512646887595,10.5809879582699,3.74615384615385,499.450731931635,391,78286,0,1,0,0,9 +"19177",2016,48445,"TX","48","445",12767,0.928722487663508,881,0.109657711286912,6.78105762593618,7.24779258176785,8.02975852044082,4.78461538461538,506.186726659168,36,7112,0,1,0,0,9 +"19178",2016,48449,"TX","48","449",32455,0.855954398397782,2249,0.106455091665383,7.71824095195932,8.2725706084249,9.08681588569068,6.17692307692308,374.255741423306,66,17635,0,1,0,0,9 +"19179",2016,48451,"TX","48","451",117742,0.921650727862615,9786,0.115829525572863,9.18870807184907,9.47408829413233,10.4231738047343,4.49230769230769,371.120107962213,253,68172,0,1,0,0,9 +"19180",2016,48453,"TX","48","453",1206283,0.816819104637966,81573,0.103827211359192,11.3092536038456,12.1542213007246,12.8709978049584,3.18461538461538,203.525064251063,1606,789092,0,1,0,0,9 +"19181",2016,48455,"TX","48","455",14535,0.889232886136911,710,0.158169934640523,6.56526497003536,7.28138566357028,8.29928590689727,6.09230769230769,972.532527270338,74,7609,0,1,0,0,9 +"19182",2016,48457,"TX","48","457",21416,0.868322749346283,1470,0.13891483003362,7.29301767977278,7.77401507725073,8.54597499284169,7.31538461538462,554.604029035152,68,12261,0,1,0,0,9 +"19183",2016,48459,"TX","48","459",40807,0.893596686842944,2289,0.144043914034357,7.73587031995257,8.44912846050211,9.35703475112699,6.41538461538462,533.715178338974,123,23046,0,1,0,0,9 +"19184",2016,48463,"TX","48","463",27082,0.962410457130197,2063,0.102983531496935,7.63191651307125,8.02027047281924,8.87668416661445,5.32307692307692,404.604115800488,58,14335,0,1,0,0,9 +"19185",2016,48465,"TX","48","465",48901,0.958160364818715,4153,0.0898345637103536,8.33158624363075,8.66354208775137,9.44667651707638,6.25384615384615,343.889350767138,91,26462,0,1,0,0,9 +"19186",2016,48467,"TX","48","467",54407,0.951329792122337,2865,0.141691326483725,7.96032362914884,8.71078434046842,9.62099200677165,4.30769230769231,524.801083460301,155,29535,0,1,0,0,9 +"19187",2016,48469,"TX","48","469",92423,0.904796425132272,6219,0.122566893522175,8.73536440110389,9.29458960442108,10.1796029886164,5.43846153846154,394.711630580571,206,52190,0,1,0,0,9 +"19188",2016,48471,"TX","48","471",71811,0.73625210622328,10721,0.110484466168136,9.27995971385624,9.15059036757041,9.81416441457593,5.26153846153846,341.346054985503,166,48631,0,1,0,0,9 +"19189",2016,48473,"TX","48","473",50062,0.710658783108945,7276,0.109424313850825,8.89233653963801,8.52337405049132,9.56724528946897,5.59230769230769,350.164577351355,100,28558,0,1,0,0,9 +"19190",2016,48475,"TX","48","475",11573,0.917653158213082,731,0.112762464356692,6.59441345974978,7.23345541862144,8.03463103292311,5.7,501.803355809942,32,6377,0,1,0,0,9 +"19191",2016,48477,"TX","48","477",34688,0.793646217712177,2251,0.141057426199262,7.71912984090673,8.17554759602103,9.14281071518258,5.08461538461538,348.376031729017,65,18658,0,1,0,0,9 +"19192",2016,48479,"TX","48","479",272053,0.980128871947745,22123,0.0832925937225467,10.00437307031,10.4768089875277,11.2293549285582,4.90769230769231,279.694456031895,409,146231,0,1,0,0,9 +"19193",2016,48481,"TX","48","481",41619,0.842067325019823,2740,0.130204954467911,7.91571319938212,8.43446354381724,9.35227386786485,5.04615384615385,474.325500435161,109,22980,0,1,0,0,9 +"19194",2016,48483,"TX","48","483",5526,0.937205935577271,320,0.136626854867897,5.76832099579377,6.42648845745769,7.29165620917446,4.75384615384615,506.928016221697,15,2959,0,1,0,0,9 +"19195",2016,48485,"TX","48","485",131386,0.842502245292497,12130,0.120842403300199,9.4034370019381,9.59987932953409,10.4911353189034,4.35384615384615,484.66099510183,376,77580,0,1,0,0,9 +"19196",2016,48487,"TX","48","487",12893,0.864267431939812,868,0.137438920344373,6.76619171466035,7.25347038268453,8.1978140322212,4.7,504.293307891509,37,7337,0,1,0,0,9 +"19197",2016,48489,"TX","48","489",21749,0.957285392431836,2162,0.0970159547565405,7.67878899819915,7.94590959861313,8.56445838388335,12.2538461538462,397.66081871345,51,12825,0,1,0,0,9 +"19198",2016,48491,"TX","48","491",528207,0.840270954379628,29375,0.103703661632655,10.2878992514465,11.3567276912753,11.9858124333955,3.36153846153846,221.608407149887,698,314970,0,1,0,0,9 +"19199",2016,48493,"TX","48","493",48202,0.962989087589727,2832,0.138873905647069,7.94873845481361,8.68777949199177,9.54373645350864,3.9,373.321846507287,104,27858,0,1,0,0,9 +"19200",2016,48495,"TX","48","495",7917,0.939876215738285,556,0.104206138688897,6.32076829425058,6.85751406254539,7.62413058566129,7.72307692307692,503.547722590982,22,4369,0,1,0,0,9 +"19201",2016,48497,"TX","48","497",64428,0.962718072887564,3598,0.136741789284162,8.18813341451048,8.94754601503218,9.82585028280898,4.73076923076923,476.585718493132,178,37349,0,1,0,0,9 +"19202",2016,48499,"TX","48","499",43790,0.92498287280201,2439,0.151541447819137,7.79934339821592,8.3296580675694,9.32170283982964,5.28461538461538,468.073832023315,106,22646,0,1,0,0,9 +"19203",2016,48501,"TX","48","501",8626,0.956990493855785,606,0.103987943426849,6.40687998606931,6.87626461189077,7.69530313496357,4.76923076923077,358.824848620767,16,4459,0,1,0,0,9 +"19204",2016,48503,"TX","48","503",18095,0.95998894722299,942,0.144294003868472,6.84800527457636,7.5999019592085,8.49964003216865,4.37692307692308,614.502253174928,60,9764,0,1,0,0,9 +"19205",2016,48505,"TX","48","505",14420,0.987933425797503,1075,0.0864771151178918,6.98007594056176,7.44190672805162,8.23297179059344,10.8,462.83691805064,34,7346,0,1,0,0,9 +"19206",2016,48507,"TX","48","507",12125,0.974185567010309,1084,0.0976494845360825,6.98841318199959,7.25205395185281,8.03106018024062,13.9230769230769,451.010886469673,29,6430,0,1,0,0,9 +"19207",2016,49001,"UT","49","001",6463,0.954819743153334,390,0.116664087884883,5.96614673912369,6.68835471394676,7.37838371299671,4.80769230769231,395.256916996047,13,3289,0,1,0,0,9 +"19208",2016,49003,"UT","49","003",52995,0.967581847344089,3224,0.111180300028305,8.07837810362652,8.8236479491913,9.53942826848658,3.4,307.868547290041,86,27934,0,1,0,0,9 +"19209",2016,49005,"UT","49","005",122347,0.945891603390357,17876,0.0770840314842211,9.79121431005334,9.54115377038857,10.4251937673983,2.96923076923077,196.942288615277,135,68548,0,1,0,0,9 +"19210",2016,49007,"UT","49","007",20349,0.960980883581503,1263,0.132979507592511,7.14124512235049,7.80547462527086,8.61667646990119,5.76153846153846,623.926213943394,69,11059,0,1,0,0,9 +"19211",2016,49011,"UT","49","011",341255,0.94041699022725,22328,0.0935869071515436,10.0135967752162,10.7934548427408,11.4436718452057,3.06153846153846,225.119993203925,424,188344,0,1,0,0,9 +"19212",2016,49013,"UT","49","013",20226,0.930139424503115,1114,0.0998220112726194,7.01571242048723,7.88570539124302,8.55101473989175,8.61538461538461,467.378863029378,49,10484,0,1,0,0,9 +"19213",2016,49015,"UT","49","015",10221,0.976616769396341,541,0.132081009685941,6.29341927884648,7.11558212618445,7.87891291229713,6.06153846153846,495.238095238095,26,5250,0,1,0,0,9 +"19214",2016,49019,"UT","49","019",9616,0.920965058236273,459,0.157861896838602,6.12905021006055,7.15305163493748,7.94378269245863,5.92307692307692,390.001772735331,22,5641,0,1,0,0,9 +"19215",2016,49021,"UT","49","021",49755,0.947723846849563,5497,0.0982815797407296,8.61195776786066,8.64962397859673,9.51922115556896,4.22307692307692,320.011636786792,88,27499,0,1,0,0,9 +"19216",2016,49023,"UT","49","023",11045,0.973110004526935,711,0.092258940697148,6.56667242980324,7.26822302115957,7.92768504561578,3.53076923076923,379.746835443038,21,5530,0,1,0,0,9 +"19217",2016,49025,"UT","49","025",7306,0.966876539830276,354,0.14919244456611,5.86929691313377,6.62007320653036,7.54960916515453,3.75384615384615,366.204551399425,14,3823,0,1,0,0,9 +"19218",2016,49027,"UT","49","027",12641,0.952456293014793,722,0.125622972866071,6.58202513889283,7.26262860097424,8.03106018024062,3.23846153846154,413.157476561259,26,6293,0,1,0,0,9 +"19219",2016,49035,"UT","49","035",1120751,0.895532549156771,78263,0.101651481908113,11.2678302287889,11.9916038594058,12.7046789161578,3.09230769230769,296.903209553685,1980,666884,0,1,0,0,9 +"19220",2016,49037,"UT","49","037",15346,0.481298058125896,1071,0.111429688518181,6.97634807044775,7.44073370738926,8.28626945278307,7.87692307692308,449.994375070312,40,8889,0,1,0,0,9 +"19221",2016,49039,"UT","49","039",29244,0.952468882505813,2933,0.100191492271919,7.98378106897745,8.18144069571937,8.89467026298423,3.86923076923077,217.377802620955,35,16101,0,1,0,0,9 +"19222",2016,49041,"UT","49","041",21145,0.970584062426106,1191,0.11638685268385,7.0825485693553,7.91059061225648,8.59192953753026,4.25384615384615,411.522633744856,45,10935,0,1,0,0,9 +"19223",2016,49043,"UT","49","043",40564,0.961912040232719,2341,0.145843605167143,7.75833346749091,8.59267165259214,9.40244722950493,3.06153846153846,248.401677729364,61,24557,0,1,0,0,9 +"19224",2016,49045,"UT","49","045",64643,0.957149265968473,3822,0.092539022013211,8.24852912480022,9.19695113485717,9.7751995322346,3.67692307692308,298.029071892485,106,35567,0,1,0,0,9 +"19225",2016,49047,"UT","49","047",36261,0.897934419900168,2139,0.097404925401947,7.66809370908241,8.47969898698866,9.17035136375982,9.03076923076923,366.822906052578,72,19628,0,1,0,0,9 +"19226",2016,49049,"UT","49","049",591107,0.949105661073207,75549,0.0661859866318619,11.2325367313459,11.2085311849521,11.969729866408,3.00769230769231,188.387144908884,606,321678,0,1,0,0,9 +"19227",2016,49051,"UT","49","051",30433,0.967403805080012,1705,0.113166628331088,7.44132038971762,8.39276311303806,9.01396045793119,3.29230769230769,244.222063378604,41,16788,0,1,0,0,9 +"19228",2016,49053,"UT","49","053",159537,0.949347173382977,9692,0.109855394046522,9.17905608193642,9.80095636388846,10.6099704162811,3.62307692307692,274.75643724084,218,79343,0,1,0,0,9 +"19229",2016,49057,"UT","49","057",247153,0.939863161685272,17341,0.105841320963128,9.76082891879855,10.4131625145447,11.1561933765416,3.73076923076923,332.162653916134,471,141798,0,1,0,0,9 +"19230",2016,51001,"VA","51","001",32903,0.688782177916907,1600,0.16427073519132,7.37775890822787,8.12296471523406,9.13841463240459,4.81538461538462,538.55031049074,98,18197,0,1,0,0,9 +"19231",2016,51003,"VA","51","003",106662,0.834073990737095,7325,0.134302750745345,8.89904843388527,9.39648793360367,10.357075935826,3.49230769230769,212.380638788278,129,60740,0,1,0,0,9 +"19232",2016,51005,"VA","51","005",15393,0.939842785681803,799,0.154875592801923,6.68336094576627,7.36581283720947,8.36310917603352,5.02307692307692,583.680762358547,49,8395,0,1,0,0,9 +"19233",2016,51007,"VA","51","007",12805,0.763451776649746,635,0.162280359234674,6.45362499889269,7.2086003379602,8.22764270790443,4.19230769230769,723.278864184302,54,7466,0,1,0,0,9 +"19234",2016,51009,"VA","51","009",31903,0.783217879196314,2007,0.152023320690844,7.60439634879634,8.14235427684983,9.15207546384421,4.3,492.934604009201,90,18258,0,1,0,0,9 +"19235",2016,51011,"VA","51","011",15535,0.791824911490183,832,0.149726424203412,6.72383244082121,7.44541755670169,8.41958036254924,4.6,571.820677035682,50,8744,0,1,0,0,9 +"19236",2016,51013,"VA","51","013",231805,0.77354673108863,15407,0.0988287569293156,9.64257723058178,10.5536489409199,11.3070936962746,2.56923076923077,125.22295794952,205,163708,0,1,0,0,9 +"19237",2016,51015,"VA","51","015",74875,0.943692821368948,4152,0.150771285475793,8.33134542484572,9.07107830464268,9.95565296651681,3.59230769230769,354.577480898568,155,43714,0,1,0,0,9 +"19238",2016,51021,"VA","51","021",6483,0.95202838192195,331,0.143606355082524,5.80211837537706,6.79122146272619,7.40000951716269,5.16923076923077,535.714285714286,21,3920,0,1,0,0,9 +"19239",2016,51023,"VA","51","023",33298,0.95330049852844,1661,0.163523334734819,7.4151751096133,8.17131687471973,9.15503905619109,3.56923076923077,258.534268981164,49,18953,0,1,0,0,9 +"19240",2016,51025,"VA","51","025",16607,0.426928403685193,1139,0.150418498223641,7.03790596344718,7.58426481838906,8.38228942895144,5.85384615384615,458.762361096952,45,9809,0,1,0,0,9 +"19241",2016,51027,"VA","51","027",22229,0.960771964550812,1126,0.16051104413154,7.02642680869964,7.88344635413774,8.73969653784302,10.5384615384615,755.229967525111,100,13241,0,1,0,0,9 +"19242",2016,51029,"VA","51","029",17044,0.638347805679418,1009,0.143276226237972,6.91671502035361,7.68753876620163,8.37216741936598,5.32307692307692,427.026001138736,45,10538,0,1,0,0,9 +"19243",2016,51031,"VA","51","031",55391,0.832608185445289,3352,0.145095773681645,8.11731246160197,8.75416074932352,9.71553014412354,4.36923076923077,405.866617470713,132,32523,0,1,0,0,9 +"19244",2016,51033,"VA","51","033",30091,0.684457146655146,1565,0.136918015353428,7.35564110297425,8.2380082492184,9.08794672376212,4.37692307692308,439.585211902615,78,17744,0,1,0,0,9 +"19245",2016,51035,"VA","51","035",29788,0.98341614072781,1394,0.157445951389821,7.23993259132047,8.11132800328673,9.03181161342092,5.06153846153846,485.146142788692,81,16696,0,1,0,0,9 +"19246",2016,51036,"VA","51","036",7026,0.44378024480501,365,0.185027042413891,5.89989735358249,6.5206211275587,7.65775527113487,4.47692307692308,642.704118067127,27,4201,0,1,0,0,9 +"19247",2016,51037,"VA","51","037",12113,0.698340625773962,673,0.151655246429456,6.51174532964473,7.10987946307227,8.10228362448007,4.92307692307692,479.185384845762,32,6678,0,1,0,0,9 +"19248",2016,51041,"VA","51","041",338677,0.707077835223532,21044,0.133259713532363,9.9543707628507,10.7204881952631,11.5606579271129,3.80769230769231,322.877540359693,649,201005,0,1,0,0,9 +"19249",2016,51043,"VA","51","043",14309,0.923055419665945,744,0.16597945349081,6.61204103483309,7.28756064030972,8.31996102188653,3.5,438.169425511198,36,8216,0,1,0,0,9 +"19250",2016,51045,"VA","51","045",5138,0.987738419618529,268,0.168937329700272,5.59098698051086,6.35088571671474,7.29505641646263,4.66923076923077,506.756756756757,15,2960,0,1,0,0,9 +"19251",2016,51047,"VA","51","047",50337,0.811013767209011,2786,0.130937481375529,7.93236215433975,8.76342807395385,9.57080811415361,3.82307692307692,319.653536811714,93,29094,0,1,0,0,9 +"19252",2016,51049,"VA","51","049",9742,0.659104906590023,559,0.14678710737015,6.3261494731551,6.89871453432999,7.96276393016811,4.51538461538462,470.332850940666,26,5528,0,1,0,0,9 +"19253",2016,51051,"VA","51","051",15019,0.988747586390572,742,0.151008722285106,6.60934924316738,7.56579328242851,8.32893404195553,9.76153846153846,826.636050516648,72,8710,0,1,0,0,9 +"19254",2016,51053,"VA","51","053",28458,0.647972450628997,1714,0.148640101201771,7.44658509915773,8.06274790108635,9.06543020018037,4.8,444.945420028476,75,16856,0,1,0,0,9 +"19255",2016,51057,"VA","51","057",11073,0.582227038742888,582,0.159848279599025,6.36647044773144,7.02197642307216,8.1101268019411,4.74615384615385,506.088881859877,32,6323,0,1,0,0,9 +"19256",2016,51059,"VA","51","059",1144957,0.675641093945013,68599,0.1264309489352,11.1360332363483,12.0141067310685,12.7752879248469,3.17692307692308,161.928957246178,1132,699072,0,1,0,0,9 +"19257",2016,51061,"VA","51","061",68831,0.888422367828449,3876,0.14538507358603,8.26255897301066,8.9799204116912,9.92024633635108,3.41538461538462,378.118858678077,152,40199,0,1,0,0,9 +"19258",2016,51063,"VA","51","063",15685,0.968951227287217,736,0.155626394644565,6.60123011872888,7.50933526601659,8.37976851550457,4.01538461538462,360.929393187458,32,8866,0,1,0,0,9 +"19259",2016,51065,"VA","51","065",26227,0.82765851984596,1340,0.143287451862584,7.20042489294496,8.14467918344776,9.05275045140141,3.30769230769231,314.919301928881,48,15242,0,1,0,0,9 +"19260",2016,51067,"VA","51","067",56167,0.903608880659462,3108,0.158794309826054,8.04173471148754,8.64576229221094,9.66484958026327,4.21538461538462,487.727127829136,153,31370,0,1,0,0,9 +"19261",2016,51069,"VA","51","069",84722,0.926465380892802,4908,0.132421330941196,8.4986218058308,9.25349564229011,10.1141940837467,3.43846153846154,306.773394010808,151,49222,0,1,0,0,9 +"19262",2016,51071,"VA","51","071",16855,0.973242361317117,871,0.137466627113616,6.7696419768525,7.57712193087668,8.46252579007393,5.27692307692308,608.604407135362,58,9530,0,1,0,0,9 +"19263",2016,51073,"VA","51","073",37121,0.894103068344064,2055,0.161768271328897,7.62803112693033,8.34474275441755,9.31784857969147,3.60769230769231,511.752185136543,113,22081,0,1,0,0,9 +"19264",2016,51075,"VA","51","075",22665,0.808338848444739,1116,0.176836532097948,7.01750614294126,7.83636976054512,8.82379514872053,3.71538461538462,353.542951707537,47,13294,0,1,0,0,9 +"19265",2016,51077,"VA","51","077",15870,0.935034656584751,840,0.160491493383743,6.73340189183736,7.50163445788341,8.34735341212434,5.03846153846154,557.995963433456,47,8423,0,1,0,0,9 +"19266",2016,51079,"VA","51","079",19313,0.900895769688811,920,0.13519391083726,6.82437367004309,7.77569574991525,8.64223868039046,3.21538461538462,324.26589803639,36,11102,0,1,0,0,9 +"19267",2016,51081,"VA","51","081",11515,0.38454190186713,775,0.12922275293096,6.65286302935335,7.4713630881871,7.76302130901852,4.98461538461538,568.842921784098,44,7735,0,1,0,0,9 +"19268",2016,51083,"VA","51","083",35003,0.616261463303145,1968,0.152758334999857,7.5847730776122,8.17751582384608,9.17709377818255,5.74615384615385,695.249130938586,132,18986,0,1,0,0,9 +"19269",2016,51085,"VA","51","085",104345,0.878719631990033,6407,0.147232737553309,8.76514642163902,9.41694795465029,10.3426130721369,3.43846153846154,299.046993098916,182,60860,0,1,0,0,9 +"19270",2016,51087,"VA","51","087",326178,0.593203710857262,18985,0.128678206378113,9.8514044726659,10.6868410009822,11.5484084322156,3.83076923076923,331.264206138071,650,196218,0,1,0,0,9 +"19271",2016,51089,"VA","51","089",51654,0.757327602896194,2557,0.15282456344136,7.84658997529119,8.58690580382754,9.58843428328822,5.49230769230769,594.135532799776,170,28613,0,1,0,0,9 +"19272",2016,51093,"VA","51","093",36450,0.74323731138546,1949,0.163017832647462,7.57507169950756,8.31188955823036,9.29366997956319,4.24615384615385,386.838180462342,83,21456,0,1,0,0,9 +"19273",2016,51095,"VA","51","095",74075,0.820506243671954,3707,0.141680728990888,8.21797820315073,8.99031694799822,9.9327550502167,3.81538461538462,321.462655080617,128,39818,0,1,0,0,9 +"19274",2016,51097,"VA","51","097",7059,0.693440997308401,379,0.173820654483638,5.93753620508243,6.57228254269401,7.6004023345004,4.10769230769231,483.90999274135,20,4133,0,1,0,0,9 +"19275",2016,51099,"VA","51","099",25982,0.796051112308521,1570,0.124778692941267,7.35883089834235,8.15737044118677,8.93458687038968,4.20769230769231,413.757434703905,64,15468,0,1,0,0,9 +"19276",2016,51101,"VA","51","101",16416,0.793859649122807,873,0.140289961013645,6.7719355558396,7.60589000105312,8.5173931714189,3.73076923076923,463.39202965709,45,9711,0,1,0,0,9 +"19277",2016,51103,"VA","51","103",10776,0.699146250927988,431,0.173440979955457,6.06610809010375,6.65801104587075,7.9098566672694,5.53846153846154,639.906922629436,33,5157,0,1,0,0,9 +"19278",2016,51105,"VA","51","105",24198,0.949086701380279,1152,0.150880238036201,7.04925484125584,8.05896001776942,8.78737298873188,6.67692307692308,508.321147552399,73,14361,0,1,0,0,9 +"19279",2016,51107,"VA","51","107",385750,0.710631237848347,19662,0.0989760207388205,9.88644311792687,11.105182765118,11.6710823947649,3.13846153846154,155.848839505749,363,232918,0,1,0,0,9 +"19280",2016,51109,"VA","51","109",35202,0.814840065905346,1775,0.161695358218283,7.48155570190952,8.28248300373056,9.25989215080543,3.75384615384615,520.030816640986,108,20768,0,1,0,0,9 +"19281",2016,51111,"VA","51","111",12340,0.640113452188007,637,0.158427876823339,6.45676965557216,7.31588350450979,8.05990833457828,4.53076923076923,544.388609715243,39,7164,0,1,0,0,9 +"19282",2016,51113,"VA","51","113",13097,0.886615255402,703,0.163090784149042,6.55535689181067,7.25205395185281,8.22977775008189,3.07692307692308,474.640629237863,35,7374,0,1,0,0,9 +"19283",2016,51115,"VA","51","115",8781,0.893520100216376,390,0.167862430247124,5.96614673912369,6.64509096950564,7.74975340627444,3.95384615384615,527.3566249176,24,4551,0,1,0,0,9 +"19284",2016,51117,"VA","51","117",30815,0.631932500405647,1556,0.15985721239656,7.34987370473834,8.0532511535491,9.04192172035122,5.53846153846154,609.137055837563,102,16745,0,1,0,0,9 +"19285",2016,51119,"VA","51","119",10750,0.809488372093023,490,0.179813953488372,6.19440539110467,6.7719355558396,7.95331834656043,3.76153846153846,673.520028358738,38,5642,0,1,0,0,9 +"19286",2016,51121,"VA","51","121",98302,0.882006469858192,18606,0.0992146650119021,9.8312393883285,9.19563274310391,10.2953944960454,4.06153846153846,227.099479100495,143,62968,0,1,0,0,9 +"19287",2016,51125,"VA","51","125",14802,0.860289150114849,643,0.17207134171058,6.46614472423762,7.3132203870903,8.32142158689788,3.55384615384615,685.016814049072,55,8029,0,1,0,0,9 +"19288",2016,51127,"VA","51","127",21015,0.83673566500119,1137,0.160266476326434,7.03614849375054,7.84384863815247,8.74751094647845,3.32307692307692,324.876237623762,42,12928,0,1,0,0,9 +"19289",2016,51131,"VA","51","131",12003,0.621761226360077,572,0.172456885778555,6.3491389913798,7.00940893270864,8.10288913464087,5.71538461538462,613.786591123702,39,6354,0,1,0,0,9 +"19290",2016,51133,"VA","51","133",12174,0.740019714144899,460,0.175291605059964,6.13122648948314,6.78105762593618,8.01002752848173,5.39230769230769,475.54347826087,28,5888,0,1,0,0,9 +"19291",2016,51135,"VA","51","135",15502,0.580699264611018,958,0.136950070958586,6.86484777797086,7.51806418123308,8.2495751500002,3.91538461538462,507.723884627849,47,9257,0,1,0,0,9 +"19292",2016,51137,"VA","51","137",35369,0.840594871214906,1877,0.141564647007266,7.53743003658651,8.29154650988391,9.22365138603585,4.00769230769231,500.250125062531,100,19990,0,1,0,0,9 +"19293",2016,51139,"VA","51","139",23633,0.967841577455253,1226,0.147082469428342,7.11151211649616,7.91022370709734,8.82614739914356,5.48461538461538,596.509315855365,81,13579,0,1,0,0,9 +"19294",2016,51141,"VA","51","141",17830,0.931407739764442,812,0.160964666292765,6.69950034016168,7.57507169950756,8.48301573961465,4.76923076923077,630.593978844589,62,9832,0,1,0,0,9 +"19295",2016,51143,"VA","51","143",61744,0.77131381186836,3163,0.1608901269759,8.05927622330565,8.81388455802561,9.77394818118114,4.67692307692308,458.832526127963,162,35307,0,1,0,0,9 +"19296",2016,51145,"VA","51","145",28463,0.879422408038506,1601,0.155359589642694,7.37838371299671,8.19395302356374,9.02208122251547,3.5,267.56233633155,47,17566,0,1,0,0,9 +"19297",2016,51147,"VA","51","147",23049,0.647099657251942,4033,0.115623237450649,8.30226579487337,7.61283103040736,8.77847995250849,5.24615384615385,448.991609009274,61,13586,0,1,0,0,9 +"19298",2016,51149,"VA","51","149",38026,0.627439120601694,2548,0.120864671540525,7.84306401669205,8.65084957622891,9.23659274312025,4.78461538461538,282.057758693273,67,23754,0,1,0,0,9 +"19299",2016,51153,"VA","51","153",456805,0.654826457678878,28988,0.107566686003875,10.2746372302292,11.1554644979105,11.8455761229386,3.58461538461538,221.735095176359,614,276907,0,1,0,0,9 +"19300",2016,51155,"VA","51","155",34268,0.934341076222715,1871,0.151394887358469,7.53422832627409,8.28803156777646,9.17201525765451,5.84615384615385,631.389055923031,126,19956,0,1,0,0,9 +"19301",2016,51159,"VA","51","159",8755,0.681781838949172,476,0.135237007424329,6.16541785423142,7.02642680869964,7.60090245954208,3.64615384615385,264.101112997548,14,5301,0,1,0,0,9 +"19302",2016,51161,"VA","51","161",93520,0.898235671514115,5346,0.142985457656116,8.58410389669886,9.29725174396548,10.2144588142159,3.52307692307692,384.362988656605,205,53335,0,1,0,0,9 +"19303",2016,51163,"VA","51","163",22467,0.953709885610006,1089,0.162772065696355,6.99301512293296,7.743269700829,8.73600738456922,4.30769230769231,392.659668242648,49,12479,0,1,0,0,9 +"19304",2016,51165,"VA","51","165",79401,0.95774612410423,4990,0.138612863817836,8.51519118874556,9.12260145766818,10.0267223668708,3.46153846153846,299.573939286348,135,45064,0,1,0,0,9 +"19305",2016,51167,"VA","51","167",27423,0.983371622360792,1422,0.163658243080626,7.25981961036319,8.10621290261996,8.99801311309582,6.36153846153846,665.961287110226,107,16067,0,1,0,0,9 +"19306",2016,51169,"VA","51","169",22070,0.984594472134119,1111,0.152560036248301,7.01301578963963,7.85282781228174,8.71028982137815,4.8,643.265565438374,81,12592,0,1,0,0,9 +"19307",2016,51171,"VA","51","171",42962,0.954075694800056,2324,0.14298682556678,7.7510451179718,8.46294817656384,9.39996850395258,3.7,349.694017734482,84,24021,0,1,0,0,9 +"19308",2016,51173,"VA","51","173",31143,0.966605657772212,1689,0.145393828468677,7.4318919168078,8.23137604557397,9.08681588569068,5.70769230769231,522.736214940138,93,17791,0,1,0,0,9 +"19309",2016,51175,"VA","51","175",18090,0.62636815920398,920,0.167716970702045,6.82437367004309,7.57147364885127,8.5131851700187,3.87692307692308,380.087141930101,41,10787,0,1,0,0,9 +"19310",2016,51177,"VA","51","177",131401,0.785990974193499,8021,0.12620147487462,8.98981838136693,9.72758534754436,10.58258651737,4.02307692307692,342.162931067625,267,78033,0,1,0,0,9 +"19311",2016,51179,"VA","51","179",143641,0.75131752076357,10503,0.115350074143176,9.25941620962278,9.88338688082912,10.6748912310618,3.85384615384615,259.307908325029,229,88312,0,1,0,0,9 +"19312",2016,51181,"VA","51","181",6560,0.544359756097561,374,0.182774390243902,5.92425579741453,6.39526159811545,7.59186171488993,5.19230769230769,613.496932515337,24,3912,0,1,0,0,9 +"19313",2016,51183,"VA","51","183",11425,0.405164113785558,881,0.135929978118162,6.78105762593618,7.24351297466548,7.86710550031674,6.17692307692308,680.090678757168,51,7499,0,1,0,0,9 +"19314",2016,51185,"VA","51","185",42226,0.954033060199877,2304,0.154738786529626,7.74240202181578,8.56159277871292,9.37797121336013,7.38461538461539,664.506337421551,162,24379,0,1,0,0,9 +"19315",2016,51187,"VA","51","187",39197,0.924432992320841,2414,0.1460315840498,7.78904040165748,8.42485858021344,9.359966545932,3.99230769230769,376.911023588701,89,23613,0,1,0,0,9 +"19316",2016,51191,"VA","51","191",54178,0.974676067776588,2905,0.15631806268227,7.97418866928601,8.76997321185875,9.65464150386955,4.43076923076923,481.819349865091,150,31132,0,1,0,0,9 +"19317",2016,51193,"VA","51","193",17645,0.7016718617172,861,0.165826013034854,6.75809450442773,7.43955930913332,8.50248556254396,4.52307692307692,494.030465212021,48,9716,0,1,0,0,9 +"19318",2016,51195,"VA","51","195",39059,0.93353644486546,2662,0.142195140684605,7.88683299895506,8.50106380948635,9.29394595583098,8.33076923076923,749.505242325993,178,23749,0,1,0,0,9 +"19319",2016,51197,"VA","51","197",28898,0.957436500795903,1481,0.147934113087411,7.3004728142678,8.14815643992162,9.04782144247841,5.59230769230769,566.96108856529,95,16756,0,1,0,0,9 +"19320",2016,51199,"VA","51","199",67914,0.780516535618576,4398,0.131239508790529,8.38890517111471,9.04817432138579,9.90178610589637,3.81538461538462,205.578538615771,81,39401,0,1,0,0,9 +"19321",2016,51510,"VA","51","510",156621,0.677380427911966,7324,0.107852714514656,8.8989119057944,10.2709738426865,10.9397455994573,2.86923076923077,177.911466118871,194,109043,0,1,0,0,9 +"19322",2016,51520,"VA","51","520",17140,0.922462077012835,936,0.134072345390898,6.84161547647759,7.63675211243578,8.51919119407891,5,885.225885225885,87,9828,0,1,0,0,9 +"19323",2016,51530,"VA","51","530",6488,0.921085080147966,590,0.121763255240444,6.38012253689976,6.46458830368996,7.53529670244409,5.00769230769231,413.223140495868,15,3630,0,1,0,0,9 +"19324",2016,51540,"VA","51","540",46976,0.714641519073569,8040,0.103031335149864,8.99218436217301,8.6294498737619,9.74501923176433,3.31538461538462,212.721335051083,71,33377,0,1,0,0,9 +"19325",2016,51550,"VA","51","550",237656,0.641671154946646,15188,0.12970848621537,9.62826092135169,10.3548497550313,11.2085176268251,4.20769230769231,318.524148414289,461,144730,0,1,0,0,9 +"19326",2016,51570,"VA","51","570",17400,0.795747126436782,1120,0.126666666666667,7.02108396428914,7.57044325205737,8.53993267838573,4.4,584.615384615385,57,9750,0,1,0,0,9 +"19327",2016,51580,"VA","51","580",5682,0.840021119324182,339,0.138683562126012,5.82600010738045,6.42648845745769,7.37775890822787,5.77692307692308,1226.61760196259,40,3261,0,1,0,0,9 +"19328",2016,51590,"VA","51","590",41682,0.467204068902644,2593,0.144426850918862,7.86057078553866,8.34093322600088,9.42399908407918,5.96923076923077,781.046602447279,180,23046,0,1,0,0,9 +"19329",2016,51600,"VA","51","600",23305,0.735593220338983,1582,0.1260673675177,7.3664451483276,8.02780284837031,8.86403999703599,3.00769230769231,281.392894829406,40,14215,0,1,0,0,9 +"19330",2016,51620,"VA","51","620",8210,0.390499390986602,464,0.145554202192448,6.13988455222626,6.71052310945243,7.85438121065236,5.95384615384615,870.132695236023,40,4597,0,1,0,0,9 +"19331",2016,51630,"VA","51","630",28469,0.700691980750992,3994,0.0997225051810741,8.29254851397576,8.11910083763749,9.16272451803452,4.70769230769231,345.922649427243,61,17634,0,1,0,0,9 +"19332",2016,51640,"VA","51","640",6615,0.906575963718821,354,0.135903250188964,5.86929691313377,6.62539236800796,7.53743003658651,4.86923076923077,958.378970427163,35,3652,0,1,0,0,9 +"19333",2016,51650,"VA","51","650",135525,0.436546762589928,11863,0.13353255856853,9.3811795916611,9.60925071111367,10.6578003849999,5.61538461538462,444.471357635945,367,82570,0,1,0,0,9 +"19334",2016,51660,"VA","51","660",53685,0.847368911241501,11305,0.0765390705038651,9.33300038471207,8.6383483129727,9.74443320268052,4.73846153846154,198.353958197643,67,33778,0,1,0,0,9 +"19335",2016,51670,"VA","51","670",22565,0.54309771770441,1484,0.119344116995347,7.30249642372733,7.85593219971861,8.8337542234184,6.43846153846154,858.302122347066,110,12816,0,1,0,0,9 +"19336",2016,51680,"VA","51","680",79871,0.669654818394661,14066,0.0992099760864394,9.55151581686796,8.85893722196655,10.1175903591982,5.09230769230769,302.703160390339,143,47241,0,1,0,0,9 +"19337",2016,51683,"VA","51","683",41245,0.752406352285125,2831,0.114632076615347,7.9483852851119,8.70797882662232,9.44462166770085,3.56153846153846,288.296711859124,74,25668,0,1,0,0,9 +"19338",2016,51690,"VA","51","690",13027,0.501727182006602,707,0.140938051738697,6.56103066589657,7.23561914106675,8.26333266743997,6.96153846153846,774.122200718828,56,7234,0,1,0,0,9 +"19339",2016,51700,"VA","51","700",180472,0.511320315616827,15854,0.116184228024292,9.6711771133971,9.95745476880607,10.9410042751777,5.03846153846154,446.821900566394,497,111230,0,1,0,0,9 +"19340",2016,51710,"VA","51","710",246042,0.50439355882329,35357,0.107286560831078,10.4732516715234,10.225317396349,11.215273861481,5.20769230769231,417.75327837447,676,161818,0,1,0,0,9 +"19341",2016,51730,"VA","51","730",31379,0.184263360846426,2499,0.140412377704834,7.82364593083495,8.03851202097681,9.24290436284945,7.72307692307692,959.643116505862,185,19278,0,1,0,0,9 +"19342",2016,51735,"VA","51","735",11940,0.952261306532663,677,0.142294807370184,6.51767127291227,7.26752542782817,8.12799505577195,3.44615384615385,380.005846243788,26,6842,0,1,0,0,9 +"19343",2016,51740,"VA","51","740",95287,0.416699025050636,7061,0.12541060165605,8.86234196351635,9.32107641357085,10.2905510514637,6.03076923076923,587.54612062182,336,57187,0,1,0,0,9 +"19344",2016,51750,"VA","51","750",17321,0.870734946019283,4521,0.0898331505109405,8.41648848729461,7.30249642372733,8.66250492257629,5.31538461538462,270.034843205575,31,11480,0,1,0,0,9 +"19345",2016,51760,"VA","51","760",225669,0.459327599271499,20425,0.123526049213671,9.9245149197282,10.1589046644006,11.2562251301272,4.57692307692308,443.192336015458,656,148017,0,1,0,0,9 +"19346",2016,51770,"VA","51","770",99383,0.651650684724752,5961,0.134187939587253,8.69299353121993,9.42512911890764,10.3356270480585,4.23846153846154,583.20179446706,351,60185,0,1,0,0,9 +"19347",2016,51775,"VA","51","775",25268,0.895401298084534,2008,0.141047965806554,7.60489448081162,7.91717198884578,8.9226582995244,3.88461538461538,559.751820879417,83,14828,0,1,0,0,9 +"19348",2016,51790,"VA","51","790",24218,0.851515401767281,1581,0.137996531505492,7.36581283720947,7.96554557312999,8.94494150776486,3.83846153846154,553.50553505535,78,14092,0,1,0,0,9 +"19349",2016,51800,"VA","51","800",89360,0.533683974932856,5216,0.128357206803939,8.55948610360649,9.35010231435134,10.2241932914351,4.60769230769231,335.330243773784,178,53082,0,1,0,0,9 +"19350",2016,51810,"VA","51","810",451510,0.699636774379305,33850,0.120384930566322,10.4296942783404,10.9666453602198,11.8568200874071,3.89230769230769,269.301739062289,756,280726,0,1,0,0,9 +"19351",2016,51820,"VA","51","820",21759,0.839147019624064,1236,0.126062778620341,7.11963563801764,7.87625888230323,8.77632145644996,4.08461538461538,613.645538958417,76,12385,0,1,0,0,9 +"19352",2016,51840,"VA","51","840",27789,0.83018460541941,2063,0.12224261398395,7.63191651307125,8.11581970121133,9.01639147894125,3.94615384615385,400.443568260227,65,16232,0,1,0,0,9 +"19353",2016,50001,"VT","50","001",36973,0.961809969437157,3402,0.156276201552484,8.13211877295581,8.27180403115471,9.29954101743449,2.88461538461538,255.1950419249,56,21944,1,1,1,0,9 +"19354",2016,50003,"VT","50","003",35977,0.969730661255802,2435,0.16321538760875,7.79770203551669,8.14728825870662,9.24802143894387,3.62307692307692,430.778371954842,87,20196,1,1,1,0,9 +"19355",2016,50005,"VT","50","005",30176,0.973720837751856,1875,0.163606839872747,7.53636393840451,8.13856473726163,9.06681636189014,4.01538461538462,395.053246307111,69,17466,1,1,1,0,9 +"19356",2016,50007,"VT","50","007",161839,0.922293143185511,18326,0.132464980628897,9.81607609552516,9.82368648233257,10.8408937750144,2.42307692307692,245.929860803699,250,101655,1,1,1,0,9 +"19357",2016,50011,"VT","50","011",48998,0.968223192783379,2807,0.147495816155761,7.93987157636188,8.73052880173936,9.60501412900613,3,338.730438317187,100,29522,1,1,1,0,9 +"19358",2016,50013,"VT","50","013",6921,0.968646149400376,338,0.19187978615807,5.82304589548302,6.59987049921284,7.64396194900253,3.61538461538462,405.727923627685,17,4190,1,1,1,0,9 +"19359",2016,50015,"VT","50","015",25360,0.974329652996845,1617,0.14518927444795,7.38832785957711,8.09193345597989,8.93181623730917,4.1,381.930725668379,58,15186,1,1,1,0,9 +"19360",2016,50017,"VT","50","017",28910,0.979937737806987,1657,0.175544794188862,7.41276401742656,8.06871619271478,9.05064099321851,3.02307692307692,326.625838436862,56,17145,1,1,1,0,9 +"19361",2016,50019,"VT","50","019",26748,0.977456258411844,1428,0.158591296545536,7.26403014289953,8.00803284696931,8.91206909797013,5.07692307692308,511.408339889851,78,15252,1,1,1,0,9 +"19362",2016,50021,"VT","50","021",59145,0.97837517964325,3694,0.168467326063065,8.21446516075919,8.69081030758005,9.75301343918129,3.63846153846154,432.661594749985,149,34438,1,1,1,0,9 +"19363",2016,50023,"VT","50","023",58434,0.972019714549748,3756,0.155765479001951,8.23110984032815,8.8405801884888,9.77024183338877,3.1,362.266754837411,126,34781,1,1,1,0,9 +"19364",2016,50025,"VT","50","025",43251,0.965434325217914,2562,0.174446833599223,7.84854348245668,8.41294317004244,9.46141032593123,3.21538461538462,456.005392759427,115,25219,1,1,1,0,9 +"19365",2016,50027,"VT","50","027",55409,0.974607013301088,2782,0.173383385370608,7.93092537248339,8.69081030758005,9.70363319044987,2.82307692307692,346.366274534278,111,32047,1,1,1,0,9 +"19366",2016,53001,"WA","53","001",19311,0.909067370928486,1427,0.0960074568898555,7.26332961747684,7.68753876620163,8.47010158388239,6.44615384615385,318.242480238169,31,9741,1,1,1,0,9 +"19367",2016,53003,"WA","53","003",22362,0.955907342813702,1108,0.158214828727305,7.01031186730723,7.77233157516961,8.75746914147075,4.89230769230769,394.556727594814,49,12419,1,1,1,0,9 +"19368",2016,53005,"WA","53","005",193573,0.922675166474663,12056,0.126851368734276,9.39731774030633,10.0649258984137,10.9097103919109,6.21538461538462,298.458570674626,328,109898,1,1,1,0,9 +"19369",2016,53007,"WA","53","007",75809,0.94875278660845,4452,0.141579495838225,8.40110871239544,9.06102796878917,9.95432324223862,5.67692307692308,266.798885583416,113,42354,1,1,1,0,9 +"19370",2016,53009,"WA","53","009",74351,0.895495689365308,3450,0.16962784629662,8.1461295100254,8.8794724020748,9.88476334353785,7.49230769230769,433.872696646419,170,39182,1,1,1,0,9 +"19371",2016,53011,"WA","53","011",465911,0.8922047343806,27179,0.128891569419911,10.2101998952697,11.0348090156139,11.8319535765553,6,267.755293668871,730,272637,1,1,1,0,9 +"19372",2016,53015,"WA","53","015",104760,0.93590110729286,5871,0.144406261932035,8.67778025606419,9.40013394360884,10.2958336481511,7.06153846153846,460.448642266824,273,59290,1,1,1,0,9 +"19373",2016,53017,"WA","53","017",41312,0.945100697134005,2514,0.126016653756778,7.82963038915019,8.48797033273933,9.30792070031505,6.81538461538462,230.486237312176,52,22561,1,1,1,0,9 +"19374",2016,53019,"WA","53","019",7534,0.78709848685957,401,0.184629678789488,5.99396142730657,6.61069604471776,7.63385355968177,10.1846153846154,479.846449136276,20,4168,1,1,1,0,9 +"19375",2016,53021,"WA","53","021",90132,0.916233967958106,6069,0.0894909688013136,8.71094912583585,9.41213770527079,10.0673905238061,7.33846153846154,207.825426641621,104,50042,1,1,1,0,9 +"19376",2016,53025,"WA","53","025",94144,0.936448419442556,6569,0.110384092454113,8.79011689289247,9.30100340687343,10.1158936633076,7.06923076923077,334.34890990385,169,50546,1,1,1,0,9 +"19377",2016,53027,"WA","53","027",71555,0.896834602753127,3776,0.157962406540423,8.23642052726539,9.00257792270028,9.87199688544476,8.19230769230769,545.579096736312,223,40874,1,1,1,0,9 +"19378",2016,53029,"WA","53","029",81826,0.883545572311979,6008,0.14822916921272,8.70084719344397,8.98832118832368,10.0362686637699,5.81538461538462,265.721877767936,123,46289,1,1,1,0,9 +"19379",2016,53031,"WA","53","031",30949,0.933503505767553,1109,0.20236518142751,7.01121398735037,7.84384863815247,9.00515952103614,6.96923076923077,406.758448060075,65,15980,1,1,1,0,9 +"19380",2016,53033,"WA","53","033",2167863,0.710430963580263,133014,0.121446788842284,11.798209664822,12.6777810707851,13.4404665016129,3.8,221.990951596885,3078,1386543,1,1,1,0,9 +"19381",2016,53035,"WA","53","035",263419,0.861418500563741,21277,0.141303398767743,9.96538195607372,10.2962388482242,11.2365525357414,5.49230769230769,313.048933500627,499,159400,1,1,1,0,9 +"19382",2016,53037,"WA","53","037",44922,0.939717732959352,7479,0.125439650950536,8.91985437219167,8.3774712482411,9.51753091081601,5.86153846153846,198.048323791005,55,27771,1,1,1,0,9 +"19383",2016,53039,"WA","53","039",21295,0.945057525240667,980,0.172763559521014,6.88755257166462,7.80710329012598,8.68626063253178,6.72307692307692,411.937788986969,49,11895,1,1,1,0,9 +"19384",2016,53041,"WA","53","041",76709,0.946746796334198,4156,0.148509301385757,8.33230835221912,9.06079573469617,9.9671194127809,7.69230769230769,423.828033531588,181,42706,1,1,1,0,9 +"19385",2016,53043,"WA","53","043",10339,0.961504981139375,439,0.171970209884902,6.08449941307517,6.94215670569947,7.8770178956224,5.51538461538462,450.196961170512,24,5331,1,1,1,0,9 +"19386",2016,53045,"WA","53","045",62166,0.904208088022392,3199,0.165749766753531,8.07059353994952,8.80777106698004,9.71087320625674,7.43076923076923,447.255220351537,157,35103,1,1,1,0,9 +"19387",2016,53047,"WA","53","047",41516,0.83054725888814,2172,0.157625975527507,7.68340368105383,8.41205487329293,9.32456151606621,6.63846153846154,467.935291234012,105,22439,1,1,1,0,9 +"19388",2016,53049,"WA","53","049",21298,0.921354117757536,893,0.183209691050803,6.7945865808765,7.57916796739608,8.62909228391365,7.93076923076923,525.752985207628,59,11222,1,1,1,0,9 +"19389",2016,53051,"WA","53","051",13128,0.930225472273004,560,0.183500914076782,6.3279367837292,7.09007683577609,8.15392513200786,8.79230769230769,478.266985511324,34,7109,1,1,1,0,9 +"19390",2016,53053,"WA","53","053",864004,0.785457011773094,62100,0.12482002398137,11.0365012679216,11.6106055615747,12.4712445034775,5.94615384615385,342.594294818764,1789,522192,1,1,1,0,9 +"19391",2016,53055,"WA","53","055",16256,0.959645669291339,603,0.205708661417323,6.40191719672719,7.32514895795557,8.42507790250843,4.62307692307692,413.935839944809,36,8697,1,1,1,0,9 +"19392",2016,53057,"WA","53","057",123661,0.924543712245575,7243,0.143755913343738,8.88779076419533,9.55754057195237,10.455503103127,6.43076923076923,340.062224151653,235,69105,1,1,1,0,9 +"19393",2016,53059,"WA","53","059",11590,0.949956859361519,559,0.186971527178602,6.3261494731551,7.20637729147225,8.12917499691179,6.82307692307692,551.844321812373,38,6886,1,1,1,0,9 +"19394",2016,53061,"WA","53","061",787886,0.813150633467278,46985,0.134878649956973,10.7575836808172,11.5928266241647,12.396453306992,4.2,275.919169754528,1353,490361,1,1,1,0,9 +"19395",2016,53063,"WA","53","063",497163,0.916228681539053,34886,0.132634568541907,10.4598408815781,10.9898248103286,11.9042172713555,5.97692307692308,374.079112176595,1111,296996,1,1,1,0,9 +"19396",2016,53065,"WA","53","065",44187,0.913322923031661,2122,0.175345689908797,7.66011431917393,8.39976009452414,9.40327210788215,8.07692307692308,434.782608695652,104,23920,1,1,1,0,9 +"19397",2016,53067,"WA","53","067",273827,0.853831068521366,16805,0.135432225456219,9.72943174015921,10.4793984229581,11.3336911377751,5.56923076923077,278.943425644524,458,164191,1,1,1,0,9 +"19398",2016,53071,"WA","53","071",60112,0.932592494011179,5520,0.127761511844557,8.61613313927114,8.8206993992149,9.69634037430652,5.32307692307692,334.872979214781,116,34640,1,1,1,0,9 +"19399",2016,53073,"WA","53","073",216486,0.890103748048373,23492,0.126798037748399,10.0644152166424,10.1249496910678,11.0869310656096,5.74615384615385,265.077224810002,346,130528,1,1,1,0,9 +"19400",2016,53075,"WA","53","075",48912,0.866658488714426,12221,0.0864409551848217,9.410911062438,8.3380665255188,9.62357521734871,4.96923076923077,130.059637101891,41,31524,1,1,1,0,9 +"19401",2016,53077,"WA","53","077",249332,0.888036834421574,17486,0.108036673992909,9.76915583974084,10.2921455423279,11.1126419094025,7.49230769230769,388.327888327888,523,134680,1,1,1,0,9 +"19402",2016,55001,"WI","55","001",19984,0.946957566052842,848,0.189201361088871,6.7428806357919,7.56268124672188,8.49780647761605,5.87692307692308,458.921983262845,51,11113,0,1,0,0,9 +"19403",2016,55003,"WI","55","003",15637,0.856558163330562,1009,0.156743620899149,6.91671502035361,7.40974195408092,8.37655086161377,5.30769230769231,408.024481468888,36,8823,0,1,0,0,9 +"19404",2016,55005,"WI","55","005",45271,0.964635196925184,2444,0.153188575467739,7.80139132029149,8.49964003216865,9.41368929596221,4.42307692307692,345.63585078066,87,25171,0,1,0,0,9 +"19405",2016,55007,"WI","55","007",14926,0.871968377328152,659,0.195832775023449,6.49072353450251,7.19668657083435,8.29729437026692,6.73846153846154,391.054625442992,32,8183,0,1,0,0,9 +"19406",2016,55009,"WI","55","009",259588,0.894074456446369,17487,0.130071497912076,9.76921302671366,10.3780744127147,11.2480480451717,3.53076923076923,306.63535622101,474,154581,0,1,0,0,9 +"19407",2016,55011,"WI","55","011",13148,0.984180103437785,689,0.161089139032552,6.53524127101366,7.21450441415114,8.17131687471973,4.35384615384615,380.848748639826,28,7352,0,1,0,0,9 +"19408",2016,55013,"WI","55","013",15235,0.932655070561208,645,0.187659993436167,6.46925031679577,7.23921497377981,8.29354951506035,5.83846153846154,408.820614469772,33,8072,0,1,0,0,9 +"19409",2016,55015,"WI","55","015",49606,0.957908317542233,2801,0.140265290489054,7.93773177526011,8.77338459677665,9.58038553485309,3.13076923076923,208.596929179633,61,29243,0,1,0,0,9 +"19410",2016,55017,"WI","55","017",63577,0.957201503688441,3347,0.145398493165768,8.11581970121133,8.96162256954254,9.75747863840049,4.13076923076923,322.372662798195,120,37224,0,1,0,0,9 +"19411",2016,55019,"WI","55","019",34512,0.979340519239685,1860,0.13586578581363,7.52833176670725,8.21093973337902,9.06762406977459,3.82307692307692,356.307760828416,64,17962,0,1,0,0,9 +"19412",2016,55021,"WI","55","021",56907,0.962675944962834,3036,0.150719595128895,8.01829613851552,8.85922139360813,9.68352643191322,3.50769230769231,395.397924904123,133,33637,0,1,0,0,9 +"19413",2016,55023,"WI","55","023",16241,0.96459577612216,888,0.158056769903331,6.78897174299217,7.41878088275079,8.34402957240705,4.76153846153846,333.926981300089,30,8984,0,1,0,0,9 +"19414",2016,55025,"WI","55","025",531775,0.86509143904847,57234,0.118414743077429,10.9549034063733,11.1329234042986,12.0281294895348,2.8,232.30293017791,779,335338,0,1,0,0,9 +"19415",2016,55027,"WI","55","027",87365,0.951422194242546,5143,0.149441996222744,8.54539184577492,9.30655922971673,10.077566902136,3.54615384615385,379.157594413995,202,53276,0,1,0,0,9 +"19416",2016,55029,"WI","55","029",27354,0.975615997660306,1215,0.185201433062806,7.10249935577465,7.89989532313973,8.89494446095689,4.91538461538462,495.789187720728,73,14724,0,1,0,0,9 +"19417",2016,55031,"WI","55","031",43471,0.946677095074878,2726,0.154470796623036,7.91059061225648,8.54032360880509,9.46288737365964,5.13076923076923,395.135612076572,103,26067,0,1,0,0,9 +"19418",2016,55033,"WI","55","033",44389,0.952533285273379,5825,0.123791930433215,8.6699142784339,8.47345026846832,9.45383541953829,3.99230769230769,288.907473580172,76,26306,0,1,0,0,9 +"19419",2016,55035,"WI","55","035",102989,0.932497645379604,12844,0.120051656002097,9.4606320552094,9.32402613638,10.3476283535061,3.33076923076923,273.101143811849,170,62248,0,1,0,0,9 +"19420",2016,55039,"WI","55","039",102189,0.952578066132363,6263,0.145837614616055,8.74241458252541,9.40236470423152,10.3036385658205,3.43076923076923,312.846906852356,186,59454,0,1,0,0,9 +"19421",2016,55041,"WI","55","041",9040,0.81825221238938,546,0.165044247787611,6.3026189757449,6.77764659363512,7.80710329012598,6.07692307692308,384.459732901659,19,4942,0,1,0,0,9 +"19422",2016,55043,"WI","55","043",52044,0.970313580816232,6272,0.131369610329721,8.74385056203024,8.53070154144103,9.52690140397834,3.81538461538462,250.558678133676,74,29534,0,1,0,0,9 +"19423",2016,55045,"WI","55","045",36782,0.978494915991518,1943,0.156380838453591,7.57198844937744,8.38822281011928,9.26378634768181,3.24615384615385,299.079396233469,64,21399,0,1,0,0,9 +"19424",2016,55047,"WI","55","047",18616,0.977009024495058,871,0.161957455951869,6.7696419768525,7.52994337060159,8.50329708622413,4.76923076923077,377.13378324732,38,10076,0,1,0,0,9 +"19425",2016,55049,"WI","55","049",23471,0.978015423288313,1170,0.158834306165055,7.0647590277918,7.91425227874244,8.80492526261806,3.41538461538462,361.837247083149,49,13542,0,1,0,0,9 +"19426",2016,55053,"WI","55","053",20484,0.895821128685804,1113,0.146162858816637,7.01481435127554,7.75705114203201,8.5571828396324,4.27692307692308,347.870354658069,41,11786,0,1,0,0,9 +"19427",2016,55055,"WI","55","055",84494,0.970897341823088,5328,0.143134423746065,8.58073121222023,9.25397440899624,10.1120046569882,3.8,306.619371129682,153,49899,0,1,0,0,9 +"19428",2016,55057,"WI","55","057",26345,0.95057885746821,1307,0.156386411083697,7.17548971362422,8.04141290939305,8.82878708391433,4.31538461538462,461.06890057796,71,15399,0,1,0,0,9 +"19429",2016,55059,"WI","55","059",168012,0.888323453086684,11423,0.134490393543318,9.34338414573395,9.95446579730076,10.8353760050333,4.57692307692308,338.491295938104,343,101332,0,1,0,0,9 +"19430",2016,55061,"WI","55","061",20378,0.979438610265973,1082,0.15398959662381,6.98656645940643,7.76937860951398,8.62515033292133,3.58461538461538,338.424158278376,39,11524,0,1,0,0,9 +"19431",2016,55063,"WI","55","063",117804,0.925129876744423,13933,0.127160368068996,9.54201540611359,9.45735668770195,10.4790048107173,3.51538461538462,293.176217318641,207,70606,0,1,0,0,9 +"19432",2016,55065,"WI","55","065",16751,0.981672735956062,924,0.154378843054146,6.82871207164168,7.4593388952203,8.42376124662369,3.10769230769231,397.892246478116,37,9299,0,1,0,0,9 +"19433",2016,55067,"WI","55","067",19087,0.965211924346414,956,0.168805993608215,6.8627579130514,7.55118686729615,8.55043452519604,5.06923076923077,454.330336015144,48,10565,0,1,0,0,9 +"19434",2016,55069,"WI","55","069",27844,0.974716276397069,1417,0.171814394483551,7.25629723969068,8.04622910107538,8.97714648480847,4.27692307692308,343.389747363257,56,16308,0,1,0,0,9 +"19435",2016,55071,"WI","55","071",79363,0.950493302924537,4460,0.161687436210829,8.40290404501411,9.07669468710627,10.0198473536523,4.19230769230769,333.485908585627,153,45879,0,1,0,0,9 +"19436",2016,55073,"WI","55","073",135132,0.919708137228784,7785,0.143696533759583,8.9599540842681,9.69146938400534,10.5562813787469,3.47692307692308,299.34399082861,235,78505,0,1,0,0,9 +"19437",2016,55075,"WI","55","075",40298,0.977641570301256,1955,0.174078118020745,7.57814547241947,8.33038156934942,9.31343832997975,5.34615384615385,410.541650112568,93,22653,0,1,0,0,9 +"19438",2016,55077,"WI","55","077",15115,0.973403903407211,566,0.179887528944757,6.33859407820318,7.3031700512368,8.3030093814735,4.93846153846154,492.610837438424,41,8323,0,1,0,0,9 +"19439",2016,55079,"WI","55","079",955121,0.655496005218187,67583,0.120734440976588,11.1211117511149,11.69801817856,12.5955743470937,4.85384615384615,426.912955447936,2448,573419,0,1,0,0,9 +"19440",2016,55081,"WI","55","081",45505,0.955543346884958,2330,0.143412811778925,7.75362354655975,8.60337088765729,9.42939557738179,3.70769230769231,367.675819447704,94,25566,0,1,0,0,9 +"19441",2016,55083,"WI","55","083",37477,0.971689302772367,1790,0.171865410785282,7.4899708988348,8.35655484545343,9.26823185039196,4.31538461538462,403.410653708627,88,21814,0,1,0,0,9 +"19442",2016,55085,"WI","55","085",35358,0.972594603767181,1723,0.183126873691951,7.45182223652793,8.11581970121133,9.19948162864131,4.74615384615385,410.451496646311,82,19978,0,1,0,0,9 +"19443",2016,55087,"WI","55","087",184606,0.923967801696586,11792,0.133489702393205,9.37517661442912,10.060918560485,10.9097103919109,3.44615384615385,264.327548905123,292,110469,0,1,0,0,9 +"19444",2016,55089,"WI","55","089",88413,0.950459774015133,5522,0.154649203171479,8.6164953924901,9.18224949180966,10.1372940520186,3.25384615384615,249.063521160437,125,50188,0,1,0,0,9 +"19445",2016,55093,"WI","55","093",41528,0.970236948564824,4632,0.137040069350799,8.44074401925283,8.46294817656384,9.44232472795587,3.93846153846154,236.084990596615,59,24991,0,1,0,0,9 +"19446",2016,55095,"WI","55","095",43261,0.973995053281246,2263,0.163033679295439,7.72444664563354,8.50431056558522,9.40631825521762,4.46153846153846,358.899911283168,89,24798,0,1,0,0,9 +"19447",2016,55097,"WI","55","097",70483,0.949661620532611,8415,0.133947192940142,9.0377711066249,8.92345797969497,9.94102415606485,3.70769230769231,247.390618005325,105,42443,0,1,0,0,9 +"19448",2016,55099,"WI","55","099",13417,0.967727509875531,598,0.190951777595588,6.39359075395063,7.22766249872865,8.18618599422608,4.20769230769231,414.549344744584,31,7478,0,1,0,0,9 +"19449",2016,55101,"WI","55","101",194915,0.846512582407716,11902,0.143955057332683,9.3844617322048,10.0516489035166,10.953784564258,4.81538461538462,384.544795098802,440,114421,0,1,0,0,9 +"19450",2016,55103,"WI","55","103",17545,0.976973496722713,891,0.165118267312625,6.79234442747081,7.51588908521513,8.44376191333035,3.66153846153846,433.357995983511,41,9461,0,1,0,0,9 +"19451",2016,55105,"WI","55","105",161363,0.916771502760856,10207,0.137739134745884,9.2308290384035,9.88791695754517,10.7643289974159,4.3,384.930297842476,362,94043,0,1,0,0,9 +"19452",2016,55107,"WI","55","107",14084,0.975291110479977,714,0.173601249644987,6.57088296233958,7.24779258176785,8.21770840684531,5,508.540878862955,39,7669,0,1,0,0,9 +"19453",2016,55109,"WI","55","109",87643,0.969900619558892,4608,0.137090241091702,8.43554920237573,9.40467284143627,10.1610711771639,3.66923076923077,228.758169934641,119,52020,0,1,0,0,9 +"19454",2016,55111,"WI","55","111",63627,0.963458908953746,3589,0.141810866456064,8.18562889114761,8.93892527198827,9.79757132694458,3.46923076923077,381.752242794426,140,36673,0,1,0,0,9 +"19455",2016,55113,"WI","55","113",16327,0.794389661297238,756,0.180988546579286,6.62804137617953,7.31121838441963,8.36380888451688,6.11538461538462,558.340929808569,49,8776,0,1,0,0,9 +"19456",2016,55115,"WI","55","115",40927,0.897866933808977,2112,0.151513670681946,7.65539064482615,8.4042484324001,9.32794561405045,4.04615384615385,440.355772584583,101,22936,0,1,0,0,9 +"19457",2016,55117,"WI","55","117",115043,0.911685195970202,7039,0.147492676651339,8.85922139360813,9.50992631143079,10.3901946488933,3.33076923076923,334.138846624303,224,67038,0,1,0,0,9 +"19458",2016,55119,"WI","55","119",20295,0.983345651638335,987,0.159793052475979,6.89467003943348,7.75233516330229,8.60410456340553,4.01538461538462,336.015562826068,38,11309,0,1,0,0,9 +"19459",2016,55121,"WI","55","121",29531,0.971081236666554,1612,0.140970505570418,7.38523092306657,8.11790894238315,8.98707181284882,3.59230769230769,331.965234186383,55,16568,0,1,0,0,9 +"19460",2016,55123,"WI","55","123",30554,0.983799175230739,1538,0.1563461412581,7.33823815006559,8.05896001776942,8.99143781491923,3.55384615384615,338.003933136676,55,16272,0,1,0,0,9 +"19461",2016,55125,"WI","55","125",21488,0.871835443037975,858,0.183358153387937,6.75460409948796,7.47363710849621,8.59396903021829,5.56923076923077,558.156283759453,62,11108,0,1,0,0,9 +"19462",2016,55127,"WI","55","127",102668,0.966250438305996,9687,0.142186465110843,9.17854005942639,9.33361938813635,10.305245798713,3.9,344.456404736276,208,60385,0,1,0,0,9 +"19463",2016,55129,"WI","55","129",15587,0.969590042984538,665,0.181818181818182,6.49978704065585,7.31188616407716,8.35514473946184,4.86923076923077,569.05749851808,48,8435,0,1,0,0,9 +"19464",2016,55131,"WI","55","131",134324,0.964823858729639,6926,0.149429737053691,8.84303772496237,9.69677083890745,10.565763069429,3.26923076923077,274.819649604947,216,78597,0,1,0,0,9 +"19465",2016,55133,"WI","55","133",398664,0.938976180442678,22137,0.155022776072081,10.0050056957265,10.7744879885505,11.6670532873934,3.36923076923077,246.1779897045,571,231946,0,1,0,0,9 +"19466",2016,55135,"WI","55","135",51301,0.979279156351728,2722,0.160445215492875,7.90912218321141,8.6675079520751,9.57373270366244,3.85384615384615,319.033396687483,94,29464,0,1,0,0,9 +"19467",2016,55137,"WI","55","137",24104,0.96042150680385,1132,0.171174908728842,7.03174125876313,7.81237820598861,8.7220913023891,4.87692307692308,434.046935922902,59,13593,0,1,0,0,9 +"19468",2016,55139,"WI","55","139",169809,0.934237879028791,15124,0.132843371081627,9.62403816501082,9.90573502507661,10.8163122847671,3.49230769230769,319.476408269487,329,102981,0,1,0,0,9 +"19469",2016,55141,"WI","55","141",73224,0.955957063257948,3996,0.154798973014312,8.29304913976844,8.9760094750214,9.94068699352523,4.6,404.936367142306,168,41488,0,1,0,0,9 +"19470",2016,54001,"WV","54","001",16752,0.974570200573066,1312,0.140042979942693,7.17930796950403,7.54960916515453,8.49269555981584,6.79230769230769,468.896530165677,45,9597,1,1,1,0,9 +"19471",2016,54003,"WV","54","003",113621,0.899886464650021,6256,0.130864892933525,8.74129628222515,9.61860156738635,10.4475835288135,3.96153846153846,548.620381100468,374,68171,1,1,1,0,9 +"19472",2016,54005,"WV","54","005",22803,0.987326229004955,1148,0.155198877340701,7.04577657687951,8.0487882835342,8.80146947073318,9.09230769230769,786.567841476327,104,13222,1,1,1,0,9 +"19473",2016,54007,"WV","54","007",14316,0.982956132998044,735,0.153464654931545,6.59987049921284,7.42177579364465,8.29254851397576,8.76153846153846,584.083718666342,48,8218,1,1,1,0,9 +"19474",2016,54009,"WV","54","009",22674,0.975831348681309,1515,0.162829672752933,7.32317071794347,7.83161727635261,8.76966250811227,7.04615384615385,613.402852323263,80,13042,1,1,1,0,9 +"19475",2016,54011,"WV","54","011",95708,0.926484724369959,9818,0.126238141012246,9.191972714618,9.32670017309238,10.2484592802153,4.80769230769231,709.144605372522,401,56547,1,1,1,0,9 +"19476",2016,54013,"WV","54","013",7387,0.989305536753757,327,0.166644104507919,5.78996017089725,6.72982407048948,7.63916117165917,12.8538461538462,383.417205847112,16,4173,1,1,1,0,9 +"19477",2016,54015,"WV","54","015",8842,0.989821307396517,449,0.153811354897082,6.10702288774225,6.95749737087695,7.80628928926703,10.3692307692308,713.848664083214,35,4903,1,1,1,0,9 +"19478",2016,54017,"WV","54","017",8577,0.969453188760639,605,0.151101783840504,6.40522845803084,6.96413561241824,7.72797554210556,5.19230769230769,499.807766243752,26,5202,1,1,1,0,9 +"19479",2016,54019,"WV","54","019",44184,0.945681694731124,2355,0.154694006880319,7.76429600645052,8.6195692580331,9.41507552360704,7.92307692307692,827.325375251152,210,25383,1,1,1,0,9 +"19480",2016,54021,"WV","54","021",8153,0.869127928369925,898,0.118238685146572,6.8001700683022,7.04577657687951,7.53476265703754,8.23076923076923,501.579045142114,27,5383,1,1,1,0,9 +"19481",2016,54023,"WV","54","023",11594,0.983094704157323,616,0.148266344661032,6.42324696353352,7.15070145759253,8.07153089355666,5.94615384615385,387.056819941167,25,6459,1,1,1,0,9 +"19482",2016,54025,"WV","54","025",35538,0.955962631549327,1857,0.153469525578254,7.52671756135271,8.31360713931756,9.22424327714517,5.40769230769231,525.996358486749,104,19772,1,1,1,0,9 +"19483",2016,54027,"WV","54","027",23338,0.97801868197789,1173,0.15558316908047,7.06731984865348,7.86441990499457,8.7827830173932,4.35384615384615,561.671534486632,75,13353,1,1,1,0,9 +"19484",2016,54029,"WV","54","029",29679,0.963678021496681,1460,0.16267394453991,7.28619171470238,8.16451026874704,9.05310159554969,7.01538461538462,650.530387387915,111,17063,1,1,1,0,9 +"19485",2016,54031,"WV","54","031",13837,0.947242899472429,654,0.149743441497434,6.4831073514572,7.41997992366183,8.25426877009018,5.7,479.495268138801,38,7925,1,1,1,0,9 +"19486",2016,54033,"WV","54","033",68392,0.969104573634343,3728,0.143817990408235,8.22362717580548,9.04876217632013,9.89751978075634,5.82307692307692,537.865205424106,213,39601,1,1,1,0,9 +"19487",2016,54035,"WV","54","035",29192,0.985578240613867,1571,0.147643189915045,7.35946763825562,8.16507925880507,9.02749867993534,6.48461538461538,483.675937122128,80,16540,1,1,1,0,9 +"19488",2016,54037,"WV","54","037",56112,0.904155973766752,3158,0.137653264898774,8.05769419481559,8.89439598980643,9.7371968128147,3.37692307692308,418.347527267294,140,33465,1,1,1,0,9 +"19489",2016,54039,"WV","54","039",186400,0.900284334763949,10595,0.152768240343348,9.2681374707024,10.0297236490813,10.9221724046645,5.46153846153846,677.180133595863,736,108686,1,1,1,0,9 +"19490",2016,54041,"WV","54","041",16290,0.982750153468386,893,0.144444444444444,6.7945865808765,7.61035761831284,8.44095988541665,8.49230769230769,700.711328166472,66,9419,1,1,1,0,9 +"19491",2016,54043,"WV","54","043",21107,0.991045624674279,1097,0.147770881698015,7.00033446027523,7.89020821310996,8.71555212590782,8.52307692307692,740.862693447481,90,12148,1,1,1,0,9 +"19492",2016,54045,"WV","54","045",33662,0.974570732576793,1770,0.159319113540491,7.47873482556787,8.4211227226655,9.19563274310391,10.1923076923077,844.073793277736,167,19785,1,1,1,0,9 +"19493",2016,54047,"WV","54","047",19186,0.906754925466486,968,0.173199207755655,6.87523208727658,7.75619534394812,8.6429443967218,12.1461538461538,1120.34694615107,124,11068,1,1,1,0,9 +"19494",2016,54049,"WV","54","049",56557,0.951517937655816,4812,0.137100624149089,8.47886807709457,8.81507308884446,9.70619447981203,6.53846153846154,487.195883194787,160,32841,1,1,1,0,9 +"19495",2016,54051,"WV","54","051",31736,0.984118981598185,1755,0.160511721704058,7.47022413589997,8.21121136179302,9.10819689830748,7.96923076923077,512.988430473696,94,18324,1,1,1,0,9 +"19496",2016,54053,"WV","54","053",26956,0.983343225997923,1350,0.156848197061879,7.20785987143248,8.10500553754725,8.99850761180784,7.13076923076923,712.619849701995,110,15436,1,1,1,0,9 +"19497",2016,54055,"WV","54","055",60638,0.923232956232066,3641,0.144529832778126,8.20001364817543,8.86770920803939,9.781658844171,6.70769230769231,763.336367106074,260,34061,1,1,1,0,9 +"19498",2016,54057,"WV","54","057",27404,0.958838125821048,1602,0.142205517442709,7.3790081276283,8.00336305862995,8.95312284032822,5.97692307692308,527.446766946669,81,15357,1,1,1,0,9 +"19499",2016,54059,"WV","54","059",24700,0.973886639676113,1226,0.156599190283401,7.11151211649616,8.0774471493312,8.9132811377118,12.6,930.26460859978,135,14512,1,1,1,0,9 +"19500",2016,54061,"WV","54","061",105866,0.912946555079062,16849,0.107125989458372,9.73204658683838,9.42100640177928,10.416071629317,4.34615384615385,290.029864461291,202,69648,1,1,1,0,9 +"19501",2016,54063,"WV","54","063",13506,0.982452243447357,641,0.145490892936473,6.46302945692067,7.29369772060144,8.1969879272589,4.56923076923077,563.961485557084,41,7270,1,1,1,0,9 +"19502",2016,54065,"WV","54","065",17661,0.979899212955099,903,0.165109563444879,6.80572255341699,7.57301725605255,8.52595469708481,4.40769230769231,585.31746031746,59,10080,1,1,1,0,9 +"19503",2016,54067,"WV","54","067",25372,0.98620526564717,1291,0.152885070156078,7.16317239084664,8.00536706731666,8.90082160491523,8.82307692307692,721.921421629876,104,14406,1,1,1,0,9 +"19504",2016,54069,"WV","54","069",42659,0.945943411706791,2954,0.154691858693359,7.99091546309133,8.44505251363855,9.41458648618593,5.54615384615385,468.807829913229,114,24317,1,1,1,0,9 +"19505",2016,54071,"WV","54","071",6994,0.969974263654561,357,0.171289676865885,5.87773578177964,6.53958595561767,7.51479976048867,3.87692307692308,526.038926880589,20,3802,1,1,1,0,9 +"19506",2016,54073,"WV","54","073",7493,0.977178700120112,483,0.142799946616842,6.18001665365257,6.90575327631146,7.59085212368858,8.18461538461538,441.501103752759,20,4530,1,1,1,0,9 +"19507",2016,54075,"WV","54","075",8532,0.979957805907173,384,0.170182841068917,5.95064255258773,6.82110747225646,7.74240202181578,6.68461538461538,432.276657060519,21,4858,1,1,1,0,9 +"19508",2016,54077,"WV","54","077",33802,0.981154961244897,1822,0.145168924915685,7.5076900778199,8.38320455141292,9.16680636995245,5.76153846153846,426.219870664315,87,20412,1,1,1,0,9 +"19509",2016,54079,"WV","54","079",56670,0.974183871536968,2804,0.14203282159873,7.93880224815448,8.93840040647301,9.72022555366512,4.87692307692308,478.512648582749,157,32810,1,1,1,0,9 +"19510",2016,54081,"WV","54","081",76319,0.89964491148993,4171,0.144420131291028,8.33591109419694,9.21652123105126,9.96740087827978,6.98461538461538,717.46435382799,316,44044,1,1,1,0,9 +"19511",2016,54083,"WV","54","083",29038,0.974929402851436,1790,0.146187753977547,7.4899708988348,8.11671562481911,8.9617507993305,5.99230769230769,483.149418431256,81,16765,1,1,1,0,9 +"19512",2016,54085,"WV","54","085",9990,0.99029029029029,512,0.156156156156156,6.23832462503951,7.0184017990692,7.92588031673756,6.53076923076923,461.56577312267,26,5633,1,1,1,0,9 +"19513",2016,54087,"WV","54","087",14122,0.986545815040363,631,0.15939668602181,6.44730586254121,7.44483327389219,8.28248300373056,10.3,680.786686838124,54,7932,1,1,1,0,9 +"19514",2016,54089,"WV","54","089",13003,0.942321002845497,599,0.163654541259709,6.39526159811545,7.40427911803727,8.36240897761537,6.12307692307692,607.421101280866,46,7573,1,1,1,0,9 +"19515",2016,54091,"WV","54","091",16952,0.97681689476168,849,0.145587541293063,6.74405918631135,7.6657534318617,8.47595444339964,5.63846153846154,469.342919912123,47,10014,1,1,1,0,9 +"19516",2016,54093,"WV","54","093",7056,0.98625283446712,359,0.157596371882086,5.88332238848828,6.65415252018322,7.59488438721652,5.4,583.904544300584,23,3939,1,1,1,0,9 +"19517",2016,54095,"WV","54","095",8972,0.989300044583148,434,0.163174320107,6.0730445341004,6.91174730025167,7.83834331555712,8.89230769230769,742.767787333855,38,5116,1,1,1,0,9 +"19518",2016,54097,"WV","54","097",24699,0.97922992833718,1872,0.137616907567108,7.53476265703754,7.91607809630279,8.85266492770387,7.53846153846154,486.931614751164,68,13965,1,1,1,0,9 +"19519",2016,54099,"WV","54","099",40807,0.987502144239959,2168,0.14294116205553,7.68156036255954,8.51759311143756,9.37881652194808,6.6,647.249190938511,150,23175,1,1,1,0,9 +"19520",2016,54101,"WV","54","101",8554,0.988426467149871,456,0.161912555529577,6.12249280951439,6.87212810133899,7.78072088611792,8.34615384615385,623.700623700624,30,4810,1,1,1,0,9 +"19521",2016,54103,"WV","54","103",15673,0.987239201173993,849,0.148790914311236,6.74405918631135,7.43425738213314,8.3670677328386,9.23846153846154,634.664204938842,55,8666,1,1,1,0,9 +"19522",2016,54107,"WV","54","107",85824,0.973562173750932,4710,0.144959451901566,8.45744318701046,9.23717702592974,10.1292676251715,5.73076923076923,595.26228109382,293,49222,1,1,1,0,9 +"19523",2016,54109,"WV","54","109",21777,0.986269917803187,1063,0.162556826009092,6.96885037834195,7.94803199063728,8.75731184693641,10.1538461538462,781.623863455097,98,12538,1,1,1,0,9 +"19524",2016,56001,"WY","56","001",38012,0.928864569083447,8475,0.101809954751131,9.04487593224865,8.22817689595132,9.38756563134539,3.21538461538462,231.526900286465,59,25483,0,1,0,0,9 +"19525",2016,56003,"WY","56","003",11949,0.969453510754038,594,0.138589003263871,6.38687931936265,7.14755927118945,8.01763715990848,5,466.688123591889,29,6214,0,1,0,0,9 +"19526",2016,56005,"WY","56","005",48900,0.963967280163599,2981,0.133783231083845,8.00001409367807,8.79724623670353,9.56149007987208,7.22307692307692,220.02200220022,66,29997,0,1,0,0,9 +"19527",2016,56007,"WY","56","007",15719,0.953177683058719,887,0.142057382785164,6.78784498230958,7.54750168281497,8.31849832050434,4.73846153846154,518.694618543333,48,9254,0,1,0,0,9 +"19528",2016,56009,"WY","56","009",14104,0.968519568916619,739,0.144498014747589,6.6052979209482,7.4312996751559,8.27715777243181,6.26153846153846,513.698630136986,42,8176,0,1,0,0,9 +"19529",2016,56011,"WY","56","011",7497,0.974523142590369,321,0.170868347338936,5.77144112313002,6.63987583382654,7.60389796852188,4.63076923076923,292.041859333171,12,4109,0,1,0,0,9 +"19530",2016,56013,"WY","56","013",40250,0.752049689440994,2274,0.144049689440994,7.72929567431048,8.39117635083275,9.30301070681749,7.22307692307692,553.740014524328,122,22032,0,1,0,0,9 +"19531",2016,56015,"WY","56","015",13329,0.964813564408433,819,0.14884837572211,6.70808408385307,7.3004728142678,8.1056094022999,3.49230769230769,406.338886631451,30,7383,0,1,0,0,9 +"19532",2016,56017,"WY","56","017",4664,0.969339622641509,185,0.172169811320755,5.22035582507832,6.15909538849193,7.1066061377273,4.82307692307692,690.215184734064,17,2463,0,1,0,0,9 +"19533",2016,56019,"WY","56","019",8492,0.963848327837965,359,0.159679698539802,5.88332238848828,6.85540879860993,7.72973533138505,5.40769230769231,351.031154014919,16,4558,0,1,0,0,9 +"19534",2016,56021,"WY","56","021",98039,0.932843052254715,7121,0.130417486918471,8.87080344398212,9.37126803608247,10.2431689200983,4.16923076923077,368.115044552241,214,58134,0,1,0,0,9 +"19535",2016,56023,"WY","56","023",19141,0.975967817773366,856,0.152499869390314,6.75227037614174,7.79069603117474,8.54169066301663,4.71538461538462,371.145793681005,39,10508,0,1,0,0,9 +"19536",2016,56025,"WY","56","025",81025,0.954483184202407,4930,0.136451712434434,8.50309426703674,9.24599704918422,10.0685781724017,7.16923076923077,376.28183923255,182,48368,0,1,0,0,9 +"19537",2016,56029,"WY","56","029",29262,0.970063563666188,1641,0.160344474061923,7.40306109109009,8.03915739047324,9.00356217474824,4.81538461538462,350.488839697473,57,16263,0,1,0,0,9 +"19538",2016,56031,"WY","56","031",8673,0.972097313501672,418,0.160152196471809,6.03548143252476,6.75110146893676,7.722677516468,4.83076923076923,426.075841499787,20,4694,0,1,0,0,9 +"19539",2016,56033,"WY","56","033",30027,0.965064775035801,1733,0.15719186065874,7.45760928971561,8.14757773620177,9.04026354159867,4.75384615384615,533.849583479995,91,17046,0,1,0,0,9 +"19540",2016,56035,"WY","56","035",9997,0.96889066720016,440,0.145443633089927,6.08677472691231,7.2086003379602,7.88608140177575,6.50769230769231,240.756663800516,14,5815,0,1,0,0,9 +"19541",2016,56037,"WY","56","037",44319,0.953947516866355,2705,0.133802658002211,7.90285719128058,8.71489585024849,9.44825430219384,6.07692307692308,410.638939119952,109,26544,0,1,0,0,9 +"19542",2016,56039,"WY","56","039",23255,0.965598795957859,1057,0.134680713824984,6.96318998587024,8.22496747891458,8.8942588250027,3.57692307692308,195.490681610843,30,15346,0,1,0,0,9 +"19543",2016,56041,"WY","56","041",20711,0.96562213316595,1078,0.140408478586259,6.98286275146894,7.89655270164304,8.65312170864048,5.83846153846154,397.751837440553,46,11565,0,1,0,0,9 +"19544",2016,56043,"WY","56","043",8180,0.961124694376528,369,0.143887530562347,5.91079664404053,6.90975328164481,7.65964295456468,4.76923076923077,320.219579139982,14,4372,0,1,0,0,9 +"19545",2017,2020,"AK","02","020",295118,0.679775547408155,22867,0.121236251262207,10.0374501021991,10.5441565264509,11.4072426751654,5.43076923076923,375.774968189079,694,184685,0,1,0,0,9 +"19546",2017,2050,"AK","02","050",18102,0.115070157993592,1326,0.101480499392332,7.18992217074581,7.54062152865715,8.43771698991444,12.7,628.736343022057,61,9702,0,1,0,0,9 +"19547",2017,2070,"AK","02","070",4934,0.190717470612079,371,0.12363194162951,5.91620206260743,6.15060276844628,7.20191631753163,8.49230769230769,465.282748747316,13,2794,0,1,0,0,9 +"19548",2017,2090,"AK","02","090",99911,0.794306933170522,10679,0.109637577443925,9.27603447517155,9.40730420550701,10.253827472517,5.69230769230769,301.318861614186,191,63388,0,1,0,0,9 +"19549",2017,2110,"AK","02","110",32106,0.737369962000872,2071,0.146234348719865,7.63578686139558,8.36427508499152,9.19735644441789,4.31538461538462,422.978555970883,86,20332,0,1,0,0,9 +"19550",2017,2122,"AK","02","122",58594,0.865737106188347,3199,0.162951838072158,8.07059353994952,8.8246778911642,9.70308348819141,7.75384615384615,389.048573004674,134,34443,0,1,0,0,9 +"19551",2017,2130,"AK","02","130",13874,0.719259045696987,787,0.153380423814329,6.6682282484174,7.45818615734049,8.31262602567496,5.83076923076923,486.06994665086,41,8435,0,1,0,0,9 +"19552",2017,2150,"AK","02","150",13605,0.587798603454612,920,0.130246233002573,6.82437367004309,7.52886925664225,8.26642147298455,4.70769230769231,278.38295812152,23,8262,0,1,0,0,9 +"19553",2017,2170,"AK","02","170",106426,0.867823652115085,6365,0.133303891906113,8.75856951099151,9.55030649785165,10.3126458324819,7.73846153846154,340.769255040545,216,63386,0,1,0,0,9 +"19554",2017,2180,"AK","02","180",10038,0.173042438732815,722,0.101912731619845,6.58202513889283,7.00669522683704,7.84109976542212,11.3923076923077,515.84377302874,28,5428,0,1,0,0,9 +"19555",2017,2185,"AK","02","185",9401,0.316881182852888,575,0.14200616955643,6.35437004079735,7.09090982207998,7.61381868480863,6.94615384615385,313.28320802005,20,6384,0,1,0,0,9 +"19556",2017,2188,"AK","02","188",7805,0.132863549007047,539,0.0946828955797566,6.289715570909,6.6945620585211,7.51806418123308,15.2538461538462,676.328502415459,28,4140,0,1,0,0,9 +"19557",2017,2220,"AK","02","220",8640,0.700231481481482,521,0.148842592592593,6.25575004175337,7.08673793451058,7.84776253747361,4.24615384615385,357.478833490122,19,5315,0,1,0,0,9 +"19558",2017,2261,"AK","02","261",9396,0.786504895700298,500,0.176032354193274,6.21460809842219,7.01121398735037,7.89170465933011,7.53846153846154,245.872848612575,14,5694,0,1,0,0,9 +"19559",2017,2270,"AK","02","270",8247,0.0429246998908694,642,0.0847580938523099,6.46458830368996,6.55677835615804,7.55276208421415,NA,760.549558390579,31,4076,0,1,0,0,9 +"19560",2017,2290,"AK","02","290",5400,0.243518518518519,294,0.140925925925926,5.68357976733868,6.41345895716736,7.21890970761906,16.6076923076923,906.953308700034,27,2977,0,1,0,0,9 +"19561",2017,1001,"AL","01","001",55448,0.779054249026115,3288,0.126262444091762,8.09803475617607,8.88710020412369,9.71812136555595,3.97692307692308,442.57307065802,144,32537,0,1,0,0,9 +"19562",2017,1003,"AL","01","003",212737,0.884636899081965,10884,0.142546900633176,9.29504909990314,10.1519089110346,11.028822911345,4.15384615384615,404.729384358843,483,119339,0,1,0,0,9 +"19563",2017,1005,"AL","01","005",25169,0.497953832095038,1528,0.13012038618936,7.33171496972647,8.0040315078527,8.75919775037137,5.96153846153846,609.21952210113,90,14773,0,1,0,0,9 +"19564",2017,1007,"AL","01","007",22532,0.772812000710101,1389,0.124445233445766,7.23633934275434,7.99967857949945,8.71127861513043,4.48461538461538,697.490472423959,97,13907,0,1,0,0,9 +"19565",2017,1009,"AL","01","009",57801,0.96963720350859,3239,0.131485614435736,8.08301991917133,8.85922139360813,9.69941106393914,4.11538461538461,641.903197347206,211,32871,0,1,0,0,9 +"19566",2017,1011,"AL","01","011",10181,0.266574992633337,638,0.142323936744917,6.45833828334479,7.1693500166706,7.86249719723055,5.03846153846154,504.731861198738,32,6340,0,1,0,0,9 +"19567",2017,1013,"AL","01","013",19911,0.528351162673899,1103,0.142785395007785,7.0057890192535,7.7596141506969,8.69717868841264,5.63076923076923,591.124045107312,65,10996,0,1,0,0,9 +"19568",2017,1015,"AL","01","015",114746,0.764627960887525,7318,0.138915517752253,8.89809234557915,9.52704712346858,10.4446774792835,5.06153846153846,676.737883846626,452,66791,0,1,0,0,9 +"19569",2017,1017,"AL","01","017",33716,0.578123146280698,2063,0.145183295764622,7.63191651307125,8.23509549725836,9.21850693464258,4.18461538461538,590.71296486542,115,19468,0,1,0,0,9 +"19570",2017,1019,"AL","01","019",25822,0.94311052590814,1287,0.154480675393076,7.16006920759613,7.93200315236138,8.87402812255634,4.16153846153846,744.39961040768,107,14374,0,1,0,0,9 +"19571",2017,1021,"AL","01","021",44085,0.879324033117841,2614,0.134966541907678,7.86863689418417,8.61377528926248,9.4501443641835,4.16153846153846,593.950359910318,151,25423,0,1,0,0,9 +"19572",2017,1023,"AL","01","023",12923,0.575253424127525,715,0.152286620753695,6.57228254269401,7.25347038268453,8.22550309756692,6.47692307692308,729.722144260455,52,7126,0,1,0,0,9 +"19573",2017,1025,"AL","01","025",24083,0.541585350662293,1473,0.142590208861022,7.29505641646263,7.94555542825349,8.87793983472502,8.66153846153846,610.204381708572,83,13602,0,1,0,0,9 +"19574",2017,1027,"AL","01","027",13355,0.844926993635343,787,0.142718083114938,6.6682282484174,7.32646561384032,8.25608813381491,4.45384615384615,579.404793257835,44,7594,0,1,0,0,9 +"19575",2017,1029,"AL","01","029",14924,0.957250067006165,789,0.137027606539802,6.67076632084587,7.46164039220858,8.34283980427146,4.62307692307692,660.184851758492,55,8331,0,1,0,0,9 +"19576",2017,1031,"AL","01","031",51943,0.776119977667828,3050,0.125599214523612,8.02289686960146,8.79603631520081,9.61387027544984,4.50769230769231,462.776659959759,138,29820,0,1,0,0,9 +"19577",2017,1033,"AL","01","033",54682,0.818093705424088,3148,0.139314582495154,8.05452260953729,8.74592112102435,9.68526935174441,5.32307692307692,599.628038222279,187,31186,0,1,0,0,9 +"19578",2017,1035,"AL","01","035",12431,0.517818357332475,756,0.154211246078353,6.62804137617953,7.15226885603254,8.1786387885907,6.25384615384615,815.969692554277,56,6863,0,1,0,0,9 +"19579",2017,1037,"AL","01","037",10724,0.676519955240582,595,0.176613204028348,6.38856140554563,7.05703698169789,8.03560269291858,4.78461538461538,551.354757403907,35,6348,0,1,0,0,9 +"19580",2017,1039,"AL","01","039",37077,0.857809423631901,1901,0.146775629096205,7.55013534248843,8.31090675716845,9.25989215080543,5.32307692307692,722.844806675399,149,20613,0,1,0,0,9 +"19581",2017,1041,"AL","01","041",13871,0.738302934179223,776,0.14346478264004,6.65415252018322,7.38398945797851,8.29779262638086,4.63076923076923,770.613922424865,60,7786,0,1,0,0,9 +"19582",2017,1043,"AL","01","043",82830,0.970276469878063,4623,0.135095979717494,8.43879912398823,9.20863892533642,10.0664563808143,3.83846153846154,562.677158691881,266,47274,0,1,0,0,9 +"19583",2017,1045,"AL","01","045",49467,0.754462571006934,3218,0.130612327410193,8.07651532755233,8.66802408111882,9.5776188986991,4.57692307692308,543.024227234754,156,28728,0,1,0,0,9 +"19584",2017,1047,"AL","01","047",39263,0.279881822581056,2418,0.146371902299875,7.79069603117474,8.36846113761584,9.38890487989243,7.65384615384615,772.571428571429,169,21875,0,1,0,0,9 +"19585",2017,1049,"AL","01","049",71441,0.944275696028891,4109,0.129141529373889,8.32093496888341,9.09313217107064,9.90623377820415,4.60769230769231,592.273189106138,239,40353,0,1,0,0,9 +"19586",2017,1051,"AL","01","051",81452,0.768550802926877,5123,0.130862348376958,8.5414954839392,9.28896669243137,10.1487056581686,3.77692307692308,398.895984850011,198,49637,0,1,0,0,9 +"19587",2017,1053,"AL","01","053",37010,0.632666846798163,2152,0.130991623885436,7.67415292128168,8.44290058683438,9.20954005180541,5.1,639.123487788176,140,21905,0,1,0,0,9 +"19588",2017,1055,"AL","01","055",103076,0.819220769141216,6230,0.137102720322869,8.7371316117815,9.43707745880052,10.3217701643549,4.70769230769231,658.106210560152,389,59109,0,1,0,0,9 +"19589",2017,1057,"AL","01","057",16478,0.867884451996602,948,0.144799126107537,6.85435450225502,7.50163445788341,8.43944784279138,4.82307692307692,578.16079415294,53,9167,0,1,0,0,9 +"19590",2017,1059,"AL","01","059",31670,0.927249763182823,1871,0.122892327123461,7.53422832627409,8.27639470486331,9.07440609473535,4.37692307692308,531.617235590375,95,17870,0,1,0,0,9 +"19591",2017,1061,"AL","01","061",26404,0.884941675503712,1342,0.142970762005757,7.20191631753163,8.01334318138667,8.91811465947453,4.44615384615385,711.671411142741,105,14754,0,1,0,0,9 +"19592",2017,1063,"AL","01","063",8312,0.187199230028874,479,0.158686236766121,6.17170059741091,6.73101810048208,7.77485576666552,7.75384615384615,837.004405286344,38,4540,0,1,0,0,9 +"19593",2017,1065,"AL","01","065",14812,0.410072913853632,948,0.144342425060762,6.85435450225502,7.38956395367764,8.38571682862785,6.09230769230769,644.063677239033,53,8229,0,1,0,0,9 +"19594",2017,1067,"AL","01","067",17105,0.718444899152295,876,0.141069862613271,6.77536609093639,7.63964228785801,8.48135873840702,4.99230769230769,689.508857536862,65,9427,0,1,0,0,9 +"19595",2017,1069,"AL","01","069",104472,0.70460027567195,5874,0.132389539780994,8.67829111175856,9.46280968867222,10.3528738477022,4.46923076923077,497.978008756392,298,59842,0,1,0,0,9 +"19596",2017,1071,"AL","01","071",51865,0.933866769497735,2791,0.148828689867926,7.93415523353632,8.74751094647845,9.61693817168028,4.89230769230769,679.425515455249,202,29731,0,1,0,0,9 +"19597",2017,1073,"AL","01","073",659892,0.538571463209131,42266,0.132882350445224,10.6517382593221,11.3276435305794,12.2345531967651,4.36153846153846,575.800498446517,2248,390413,0,1,0,0,9 +"19598",2017,1075,"AL","01","075",13885,0.883471371984156,683,0.143464169967591,6.52649485957079,7.38150189450671,8.2498364854257,4.28461538461538,748.129675810474,57,7619,0,1,0,0,9 +"19599",2017,1077,"AL","01","077",92701,0.880324915588829,7811,0.136568106061423,8.9632882756103,9.21084024701783,10.2195383990384,4.73846153846154,552.641966954266,294,53199,0,1,0,0,9 +"19600",2017,1079,"AL","01","079",33035,0.816709550476767,1859,0.144634478583321,7.52779398772144,8.22657347497711,9.18860587983018,5.04615384615385,577.223088923557,111,19230,0,1,0,0,9 +"19601",2017,1081,"AL","01","081",161808,0.713852219914961,22176,0.105748788687828,10.0067659019896,9.87018926713461,10.8437486850489,4.06923076923077,308.880308880309,312,101010,0,1,0,0,9 +"19602",2017,1083,"AL","01","083",94144,0.830599932019035,5095,0.132977141400408,8.53601494565683,9.44738682845938,10.229259891735,4.12307692307692,391.09983616088,222,56763,0,1,0,0,9 +"19603",2017,1085,"AL","01","085",10100,0.258811881188119,573,0.152178217821782,6.35088571671474,6.99942246750796,8.01400499477946,8.39230769230769,1091.66522266505,63,5771,0,1,0,0,9 +"19604",2017,1087,"AL","01","087",18828,0.171234331846187,2300,0.136605056299129,7.74066440191724,7.43543801981455,8.67829111175856,5.9,723.360845775758,78,10783,0,1,0,0,9 +"19605",2017,1089,"AL","01","089",362061,0.701663531835796,24492,0.137570740842013,10.1061018125978,10.685172028613,11.6201731987112,3.98461538461538,393.859271932152,861,218606,0,1,0,0,9 +"19606",2017,1091,"AL","01","091",19411,0.473700479109783,1185,0.140641904075009,7.07749805356923,7.66528471847135,8.65189889426853,5.74615384615385,667.16085989622,72,10792,0,1,0,0,9 +"19607",2017,1093,"AL","01","093",29825,0.950075440067058,1588,0.138172673931266,7.37023064180708,8.13944052187461,9.02063159674821,4.92307692307692,664.471715055373,111,16705,0,1,0,0,9 +"19608",2017,1095,"AL","01","095",95589,0.943675527518857,5448,0.128937430039021,8.60300384782935,9.32393687855872,10.1909946096736,3.93846153846154,602.308224687155,322,53461,0,1,0,0,9 +"19609",2017,1097,"AL","01","097",414209,0.601616575207202,27166,0.132645596788095,10.2097214703824,10.8077866715579,11.7458767627155,5.31538461538462,556.922732158345,1342,240967,0,1,0,0,9 +"19610",2017,1099,"AL","01","099",21294,0.561284868977177,1294,0.150981497135343,7.16549347506085,7.78030308790837,8.74703426417817,6.87692307692308,644.351464435146,77,11950,0,1,0,0,9 +"19611",2017,1101,"AL","01","101",227514,0.369840976819009,16532,0.125477992563095,9.71305317563162,10.2585011171482,11.1774946858438,4.44615384615385,473.219084015047,634,133976,0,1,0,0,9 +"19612",2017,1103,"AL","01","103",118940,0.844711619303851,6738,0.136169497225492,8.8155184239665,9.5909661900707,10.4473223299091,4.20769230769231,553.409057897336,381,68846,0,1,0,0,9 +"19613",2017,1105,"AL","01","105",9304,0.314703353396389,855,0.130911435941531,6.75110146893676,6.86693328446188,7.90248743716286,7.95384615384615,901.803607214429,45,4990,0,1,0,0,9 +"19614",2017,1107,"AL","01","107",20224,0.581339003164557,1270,0.14151503164557,7.14677217945264,7.74630066223144,8.68676717538769,5.49230769230769,459.904674303872,55,11959,0,1,0,0,9 +"19615",2017,1109,"AL","01","109",33441,0.583535181364194,5742,0.110104362907808,8.65556286068101,8.08548677210285,9.23902500583609,4.96923076923077,494.876280929768,99,20005,0,1,0,0,9 +"19616",2017,1111,"AL","01","111",22702,0.787375561624526,1347,0.146110474848031,7.20563517641036,7.8164169836918,8.77012852753818,4.48461538461538,762.994754411063,96,12582,0,1,0,0,9 +"19617",2017,1113,"AL","01","113",57134,0.512356915321875,3623,0.129345048482515,8.19505769089508,8.88030735898387,9.77326496548615,4.42307692307692,646.838172312963,219,33857,0,1,0,0,9 +"19618",2017,1115,"AL","01","115",87985,0.889526623856339,4530,0.135318520202307,8.41847721847708,9.33697302290955,10.1612257486148,4.06153846153846,474.052377006533,246,51893,0,1,0,0,9 +"19619",2017,1117,"AL","01","117",213854,0.841686384168638,12282,0.129298493364632,9.41589005488934,10.2938051813141,11.0832342604361,3.3,312.475216115473,394,126090,0,1,0,0,9 +"19620",2017,1119,"AL","01","119",12756,0.258780181875196,1874,0.143932267168391,7.53583046279837,6.99484998583307,8.30573114487587,6.69230769230769,623.89800623898,46,7373,0,1,0,0,9 +"19621",2017,1121,"AL","01","121",80192,0.654479249800479,4861,0.142046588188348,8.48899945704546,9.16764161744307,10.0898426304025,5.10769230769231,663.039782386943,312,47056,0,1,0,0,9 +"19622",2017,1123,"AL","01","123",40624,0.712706774320599,2291,0.152692989365892,7.7367436824535,8.35420356292178,9.36460533098761,4.3,576.05206455301,131,22741,0,1,0,0,9 +"19623",2017,1125,"AL","01","125",207849,0.653320439357418,24483,0.114799686310735,10.1057342781374,10.1154488144478,11.0894694873411,4.26153846153846,398.057793262182,505,126866,0,1,0,0,9 +"19624",2017,1127,"AL","01","127",63929,0.921162539692471,3647,0.141250449717656,8.20166019080868,8.90625787815662,9.81711233678938,5.15384615384615,824.878330446259,300,36369,0,1,0,0,9 +"19625",2017,1129,"AL","01","129",16484,0.670892987139044,984,0.145171074981801,6.89162589705225,7.5207764150628,8.46379241468912,6.92307692307692,595.681310498883,56,9401,0,1,0,0,9 +"19626",2017,1131,"AL","01","131",10704,0.280829596412556,723,0.135089686098655,6.58340922215876,7.0833878476253,8.02518932189084,11.6461538461538,860.881542699724,50,5808,0,1,0,0,9 +"19627",2017,1133,"AL","01","133",23753,0.972845535300804,1235,0.145160611291205,7.11882624906208,7.88908440703551,8.79194198845612,5.15384615384615,663.600030163638,88,13261,0,1,0,0,9 +"19628",2017,5001,"AR","05","001",17925,0.730599721059972,988,0.147726638772664,6.89568269774787,7.65775527113487,8.55313931818971,3.29230769230769,693.343898573693,70,10096,0,1,0,0,9 +"19629",2017,5003,"AR","05","003",20333,0.734372694634338,1118,0.136920277381596,7.01929665371504,7.74932246466036,8.65556286068101,5.61538461538461,673.128702207862,75,11142,0,1,0,0,9 +"19630",2017,5005,"AR","05","005",41319,0.980033398678574,1707,0.156876981533919,7.44249272279444,8.21878715560148,9.27921323626256,4.27692307692308,615.996507736334,127,20617,0,1,0,0,9 +"19631",2017,5007,"AR","05","007",266882,0.903627820534918,15389,0.10613679453841,9.64140824746385,10.5400643816077,11.254219500755,2.97692307692308,293.88295284249,453,154143,0,1,0,0,9 +"19632",2017,5009,"AR","05","009",37531,0.975300418320855,2078,0.13428898777011,7.63916117165917,8.36915711258883,9.24753981296529,3.45384615384615,570.147653623118,117,20521,0,1,0,0,9 +"19633",2017,5011,"AR","05","011",10813,0.696383982243596,562,0.132803107370757,6.33150184989369,7.1608459066643,8.02027047281924,4.58461538461538,701.168614357262,42,5990,0,1,0,0,9 +"19634",2017,5013,"AR","05","013",5196,0.771939953810624,289,0.155504234026174,5.66642668811243,6.31716468674728,7.27309259599952,3.9,757.326308857425,23,3037,0,1,0,0,9 +"19635",2017,5015,"AR","05","015",27901,0.950252679115444,1402,0.149457008709365,7.24565506759454,7.99631723179675,8.91408834884133,3.35384615384615,672.133351256889,100,14878,0,1,0,0,9 +"19636",2017,5017,"AR","05","017",10655,0.439042702956358,655,0.154293758798686,6.48463523563525,7.03702761468628,7.93666015522543,6.56923076923077,840.477391158178,50,5949,0,1,0,0,9 +"19637",2017,5019,"AR","05","019",22234,0.7324368084915,3248,0.116083475757848,8.08579470128157,7.67508185771633,8.80462523261281,3.91538461538462,481.515998757378,62,12876,0,1,0,0,9 +"19638",2017,5021,"AR","05","021",14859,0.981963792987415,845,0.134060165556229,6.73933662735717,7.41997992366183,8.31066090590723,4.57692307692308,742.63452641831,61,8214,0,1,0,0,9 +"19639",2017,5023,"AR","05","023",25085,0.980187362965916,1100,0.150169423958541,7.00306545878646,7.86978390253015,8.79361207158931,4.95384615384615,577.990721727888,76,13149,0,1,0,0,9 +"19640",2017,5025,"AR","05","025",8177,0.875015286779993,423,0.140882964412376,6.04737217904628,6.84800527457636,7.722677516468,4.36923076923077,484.901917566674,22,4537,0,1,0,0,9 +"19641",2017,5027,"AR","05","027",23675,0.618500527983105,2696,0.124054910242872,7.8995244720322,7.77401507725073,8.82761475083751,5.09230769230769,400,53,13250,0,1,0,0,9 +"19642",2017,5029,"AR","05","029",20821,0.865184189039912,1151,0.140963450362615,7.04838640872188,7.77569574991525,8.67846133901236,4.78461538461538,606.526567572185,71,11706,0,1,0,0,9 +"19643",2017,5031,"AR","05","031",107274,0.817784365270243,7845,0.10950463299588,8.96763166516713,9.52090854821467,10.3768916436525,3.00769230769231,376.838087907506,235,62361,0,1,0,0,9 +"19644",2017,5033,"AR","05","033",62982,0.930869137213807,3430,0.132196500587469,8.14031554015999,8.9398431242785,9.7969596891263,3.54615384615385,503.736042313828,180,35733,0,1,0,0,9 +"19645",2017,5035,"AR","05","035",48704,0.442571452036794,3161,0.125513304862024,8.05864371221562,8.66595796468135,9.59471802775386,4.38461538461539,686.648501362398,189,27525,0,1,0,0,9 +"19646",2017,5037,"AR","05","037",16792,0.750178656503097,1010,0.135659838018104,6.9177056098353,7.62657020629066,8.48342956126343,4.04615384615385,649.904112507991,61,9386,0,1,0,0,9 +"19647",2017,5039,"AR","05","039",7312,0.5679704595186,391,0.158643326039387,5.96870755998537,6.67456139181443,7.59890045687141,4.41538461538462,717.466600692726,29,4042,0,1,0,0,9 +"19648",2017,5041,"AR","05","041",11762,0.50586634926033,636,0.146063594626764,6.45519856334012,7.13966033596492,8.1101268019411,4.84615384615385,906.488549618321,57,6288,0,1,0,0,9 +"19649",2017,5043,"AR","05","043",18372,0.702373176573046,1822,0.127748748094927,7.5076900778199,7.59186171488993,8.59285709533723,5.1,566.839867737364,60,10585,0,1,0,0,9 +"19650",2017,5045,"AR","05","045",123706,0.850734806719157,14598,0.107698899002474,9.58863981201158,9.63148195946935,10.5633364476946,3.35384615384615,337.056374330844,255,75655,0,1,0,0,9 +"19651",2017,5047,"AR","05","047",17833,0.957943139124096,1011,0.137329669713453,6.91869521902047,7.66387725870347,8.50106380948635,3.53076923076923,525.677315002022,52,9892,0,1,0,0,9 +"19652",2017,5049,"AR","05","049",12147,0.97810158886968,566,0.152794928789001,6.33859407820318,7.05444965813294,8.05832730658096,4.23076923076923,952.842377260982,59,6192,0,1,0,0,9 +"19653",2017,5051,"AR","05","051",98476,0.886429180714083,5062,0.144593606564036,8.52951694110507,9.28822691063325,10.2282124875761,4.06923076923077,647.255262466699,345,53302,0,1,0,0,9 +"19654",2017,5053,"AR","05","053",18118,0.957831990285903,970,0.138260293630644,6.87729607149743,7.74543561027438,8.56426759880217,3.24615384615385,410.697230181471,43,10470,0,1,0,0,9 +"19655",2017,5055,"AR","05","055",45002,0.965401537709435,2685,0.119239144926892,7.89543600694297,8.67522205564115,9.47454908824232,3.71538461538462,605.312873501176,157,25937,0,1,0,0,9 +"19656",2017,5057,"AR","05","057",21895,0.671842886503768,1193,0.138113724594656,7.08422642209792,7.83161727635261,8.72972059026726,3.46153846153846,698.71201279569,83,11879,0,1,0,0,9 +"19657",2017,5059,"AR","05","059",33630,0.870383586083854,1978,0.139637228664883,7.58984151218266,8.33615081612066,9.11482017011877,3.71538461538462,664.199158343051,131,19723,0,1,0,0,9 +"19658",2017,5061,"AR","05","061",13361,0.76655938926727,734,0.129256792156276,6.59850902861452,7.3065313989395,8.23403420769204,3.03076923076923,630.13698630137,46,7300,0,1,0,0,9 +"19659",2017,5063,"AR","05","063",37416,0.95376309600171,2209,0.131414368184734,7.70029520342012,8.43901541035221,9.26454442598969,4.27692307692308,485.853100885967,102,20994,0,1,0,0,9 +"19660",2017,5065,"AR","05","065",13673,0.963212169970014,678,0.144737804432092,6.5191472879404,7.30182234213793,8.12946976478423,5.55384615384615,751.274483498793,56,7454,0,1,0,0,9 +"19661",2017,5067,"AR","05","067",17033,0.806082310808431,1068,0.135384254094992,6.97354301952014,7.68799716639302,8.52872642722991,5.9,713.941148094549,74,10365,0,1,0,0,9 +"19662",2017,5069,"AR","05","069",69350,0.408536409516943,4935,0.138457101658255,8.50410795186758,8.98494428560868,9.90358754753646,5.21538461538462,744.528841091976,297,39891,0,1,0,0,9 +"19663",2017,5071,"AR","05","071",26423,0.936116262347197,1656,0.125458880520758,7.4121603349452,8.03171037532204,8.89932143415996,4.3,566.610455311973,84,14825,0,1,0,0,9 +"19664",2017,5073,"AR","05","073",6807,0.613926840017629,399,0.164830321727633,5.98896141688986,6.54391184556479,7.58375630070711,5.04615384615385,623.052959501558,24,3852,0,1,0,0,9 +"19665",2017,5075,"AR","05","075",16588,0.977272727272727,1104,0.132746563781047,7.00669522683704,7.52994337060159,8.43901541035221,3.8,703.539344084858,65,9239,0,1,0,0,9 +"19666",2017,5077,"AR","05","077",9121,0.436026751452692,583,0.131125973029273,6.36818718635049,7.04925484125584,7.63240112660145,4.82307692307692,758.39653304442,42,5538,0,1,0,0,9 +"19667",2017,5079,"AR","05","079",13481,0.68118092129664,1047,0.116460203249017,6.95368421087054,7.58120982619635,7.9291264873068,4.19230769230769,676.056338028169,60,8875,0,1,0,0,9 +"19668",2017,5081,"AR","05","081",12386,0.773857581139997,650,0.138059098982722,6.47697236288968,7.29301767977278,8.1763915966338,4.86923076923077,643.933850431728,44,6833,0,1,0,0,9 +"19669",2017,5083,"AR","05","083",21740,0.944388224471021,1206,0.140892364305428,7.09506437728713,7.80425138352811,8.7227428743294,3.86923076923077,653.59477124183,80,12240,0,1,0,0,9 +"19670",2017,5085,"AR","05","085",72843,0.913594991969029,4263,0.11830924042118,8.35772841676521,9.2018040409539,9.97645916499195,3.28461538461538,468.022371469356,200,42733,0,1,0,0,9 +"19671",2017,5087,"AR","05","087",16307,0.956521739130435,888,0.144477831606059,6.78897174299217,7.51588908521513,8.40357646462927,2.88461538461538,605.127076686104,55,9089,0,1,0,0,9 +"19672",2017,5089,"AR","05","089",16458,0.974662777980314,669,0.183861951634463,6.50578406012823,7.28961052145117,8.3813734682737,3.97692307692308,733.923578751165,63,8584,0,1,0,0,9 +"19673",2017,5091,"AR","05","091",43819,0.722061206326023,2542,0.129555672196992,7.8407064517494,8.60079877527103,9.44912102406979,4.36923076923077,622.12711998732,157,25236,0,1,0,0,9 +"19674",2017,5093,"AR","05","093",42093,0.622264984676787,2756,0.129617751170028,7.92153563213355,8.50916101971897,9.41270962407392,5.98461538461538,802.139037433155,192,23936,0,1,0,0,9 +"19675",2017,5095,"AR","05","095",7012,0.571306332002282,371,0.157444381061038,5.91620206260743,6.5366915975913,7.59085212368858,4.28461538461538,1001.84550487741,38,3793,0,1,0,0,9 +"19676",2017,5097,"AR","05","097",8893,0.963117058360508,420,0.162374901608006,6.04025471127741,6.66949808985788,7.75147531802146,4.80769230769231,408.163265306122,19,4655,0,1,0,0,9 +"19677",2017,5099,"AR","05","099",8300,0.669638554216867,421,0.14578313253012,6.04263283368238,6.8001700683022,7.743269700829,3.55384615384615,501.526384648932,23,4586,0,1,0,0,9 +"19678",2017,5101,"AR","05","101",7816,0.973259979529171,331,0.161975435005118,5.80211837537706,6.66695679242921,7.61579107203583,3.63846153846154,532.558702493343,22,4131,0,1,0,0,9 +"19679",2017,5103,"AR","05","103",23820,0.576784214945424,1246,0.156968933669186,7.1276936993474,7.83873755959928,8.84246002419529,4.60769230769231,807.059888369287,107,13258,0,1,0,0,9 +"19680",2017,5105,"AR","05","105",10332,0.962253193960511,562,0.146438250096787,6.33150184989369,7.0833878476253,7.96519829061218,4.19230769230769,431.555325392715,25,5793,0,1,0,0,9 +"19681",2017,5107,"AR","05","107",18607,0.35889718922986,1183,0.142258289890901,7.07580886397839,7.55066124310534,8.58821067865152,5.83846153846154,776.757792797337,77,9913,0,1,0,0,9 +"19682",2017,5109,"AR","05","109",10731,0.941850712887895,622,0.13978194017333,6.43294009273918,7.15617663748062,7.99598047476376,4.01538461538462,513.415038092083,31,6038,0,1,0,0,9 +"19683",2017,5111,"AR","05","111",24082,0.904617556681339,1372,0.1303463167511,7.22402480828583,7.93092537248339,8.83141981909013,4.18461538461538,796.930342384888,108,13552,0,1,0,0,9 +"19684",2017,5113,"AR","05","113",20163,0.958091553836235,1008,0.141794375836929,6.91572344863131,7.64778604544093,8.58185670474196,4.5,588.793922127256,62,10530,0,1,0,0,9 +"19685",2017,5115,"AR","05","115",63657,0.938215750035346,5513,0.12099219253185,8.61486421858968,8.86333283343959,9.81405506520458,4.47692307692308,473.121788074068,174,36777,0,1,0,0,9 +"19686",2017,5117,"AR","05","117",8263,0.870749122594699,442,0.147404090524023,6.0913098820777,6.69332366826995,7.74889133725553,4.10769230769231,508.624502432552,23,4522,0,1,0,0,9 +"19687",2017,5119,"AR","05","119",393585,0.586978670426973,25854,0.130342873839196,10.1602206068439,10.8240690658274,11.7153028849673,3.43076923076923,455.158174930894,1067,234424,0,1,0,0,9 +"19688",2017,5121,"AR","05","121",17724,0.973538704581359,937,0.131347325660122,6.84268328223842,7.59538727885397,8.47637119689598,4.19230769230769,725.689404934688,70,9646,0,1,0,0,9 +"19689",2017,5123,"AR","05","123",25959,0.445741361377557,1545,0.130629068916368,7.34277918933185,8.21716859576607,8.76670599775052,5.07692307692308,539.956803455724,85,15742,0,1,0,0,9 +"19690",2017,5125,"AR","05","125",119578,0.89858502400107,6112,0.125098262222148,8.71800933084636,9.68905594182394,10.4561938102658,3.02307692307692,455.244089877772,311,68315,0,1,0,0,9 +"19691",2017,5127,"AR","05","127",10360,0.925675675675676,543,0.138030888030888,6.29710931993394,6.99117688712121,7.9251575122247,3.46923076923077,617.828773168579,35,5665,0,1,0,0,9 +"19692",2017,5129,"AR","05","129",7928,0.967961654894046,353,0.157542885973764,5.8664680569333,6.69703424766648,7.64730883235624,4.68461538461538,475.398145947231,20,4207,0,1,0,0,9 +"19693",2017,5131,"AR","05","131",127910,0.842694081776249,8330,0.12712063169416,9.02761873516089,9.64930472862475,10.5273382440934,3.62307692307692,498.793459065234,370,74179,0,1,0,0,9 +"19694",2017,5133,"AR","05","133",17085,0.898390400936494,1094,0.113842551946152,6.99759598298193,7.60090245954208,8.42354163533478,4.55384615384615,554.016620498615,52,9386,0,1,0,0,9 +"19695",2017,5135,"AR","05","135",17146,0.970138807885221,781,0.149130992651347,6.66057514983969,7.46965417293213,8.40871671508015,5.03846153846154,664.264805224049,59,8882,0,1,0,0,9 +"19696",2017,5137,"AR","05","137",12555,0.976981282357626,565,0.162962962962963,6.33682573114644,7.14598446771439,8.08425410630732,4.8,662.864189918298,43,6487,0,1,0,0,9 +"19697",2017,5139,"AR","05","139",39499,0.650396212562343,2230,0.143573255019114,7.70975686445416,8.44505251363855,9.33987629332522,5.3,749.198898767884,166,22157,0,1,0,0,9 +"19698",2017,5141,"AR","05","141",16557,0.975961828833726,686,0.158301624690463,6.53087762772588,7.42476176182321,8.37447688921464,5.48461538461538,741.169658367111,64,8635,0,1,0,0,9 +"19699",2017,5143,"AR","05","143",232915,0.882845673314299,24944,0.100130949058669,10.1243885912976,10.3205517964876,11.1386682839863,2.62307692307692,324.908709278588,452,139116,0,1,0,0,9 +"19700",2017,5145,"AR","05","145",78944,0.933307154438589,6243,0.121592521280908,8.73921611506174,9.12096256082497,10.0411603576612,4.56923076923077,478.797685811185,216,45113,0,1,0,0,9 +"19701",2017,5147,"AR","05","147",6580,0.719604863221885,354,0.147112462006079,5.86929691313377,6.54391184556479,7.50163445788341,4.87692307692308,787.623066104079,28,3555,0,1,0,0,9 +"19702",2017,5149,"AR","05","149",21544,0.950427033048645,1250,0.130894912736725,7.13089883029635,7.84893372636407,8.67094379122216,4.06153846153846,618.936099029776,74,11956,0,1,0,0,9 +"19703",2017,4001,"AZ","04","001",71538,0.228605775951243,4846,0.12643629958903,8.48590890137647,8.93958096672031,9.87529381816535,10.4307692307692,727.38448929413,284,39044,0,1,0,0,9 +"19704",2017,4003,"AZ","04","003",125048,0.895216236965005,7339,0.134388394856375,8.90095787254506,9.52449396163376,10.3884721545423,5.64615384615385,447.370389765841,299,66835,0,1,0,0,9 +"19705",2017,4005,"AZ","04","005",141300,0.669518754423213,19433,0.117473460721868,9.8747279308647,9.64730414714372,10.6786293806487,5.61538461538461,345.427174382374,296,85691,0,1,0,0,9 +"19706",2017,4007,"AZ","04","007",53619,0.795781346164606,2560,0.158227493985341,7.84776253747361,8.41360887515967,9.50554408582681,6.13076923076923,681.245060032369,181,26569,0,1,0,0,9 +"19707",2017,4009,"AZ","04","009",37530,0.821129762856382,2679,0.103996802557954,7.89319886954461,8.47491179915963,9.12695876303713,5.53846153846154,412.015522445264,86,20873,0,1,0,0,9 +"19708",2017,4011,"AZ","04","011",9451,0.917680668712306,596,0.114696857475399,6.39024066706535,7.12286665859908,7.83715965000168,5.09230769230769,353.883404730862,19,5369,0,1,0,0,9 +"19709",2017,4012,"AZ","04","012",20737,0.778801176640787,881,0.127790905145392,6.78105762593618,7.38336814699238,8.39094946484199,5.47692307692308,864.553314121037,75,8675,0,1,0,0,9 +"19710",2017,4013,"AZ","04","013",4329227,0.846624813159486,286994,0.114390167112974,12.5672165885999,13.2422455416812,14.0525230888227,4.25384615384615,315.44786789013,7923,2511667,0,1,0,0,9 +"19711",2017,4015,"AZ","04","015",207668,0.932339118207909,9403,0.161002176551033,9.14878406627708,9.8287101255783,10.8680540305752,5.95384615384615,684.85386635431,725,105862,0,1,0,0,9 +"19712",2017,4017,"AZ","04","017",109145,0.510568509780567,6489,0.130477804755142,8.77786371462117,9.35478697634121,10.2611270311617,7.74615384615385,627.008250108554,361,57575,0,1,0,0,9 +"19713",2017,4019,"AZ","04","019",1027115,0.863880870204408,90842,0.125593531396192,11.4168770127098,11.6664788235795,12.5835085809168,4.56923076923077,391.409749944196,2262,577911,0,1,0,0,9 +"19714",2017,4021,"AZ","04","021",431490,0.840689239611578,24224,0.118211314283066,10.0950991562372,10.9394085018643,11.5997818299461,5.11538461538461,357.269848795273,844,236236,0,1,0,0,9 +"19715",2017,4023,"AZ","04","023",46578,0.963652368070763,3121,0.121924513718923,8.04590874227078,8.53010941668278,9.45759099863363,9.61538461538461,260.018985513228,63,24229,0,1,0,0,9 +"19716",2017,4025,"AZ","04","025",228398,0.947941750803422,10415,0.174051436527465,9.25100235369507,9.89872623543442,10.9966516936305,4.58461538461538,491.528063829419,568,115558,0,1,0,0,9 +"19717",2017,4027,"AZ","04","027",209244,0.922917741966317,17869,0.0973934736479899,9.79082264687866,10.0247755497433,10.8678443769793,17.2076923076923,277.980848202601,308,110799,0,1,0,0,9 +"19718",2017,6001,"CA","06","001",1659824,0.52383445473737,100952,0.121633377996703,11.5224004353327,12.4209057606287,13.1807794445112,3.7,216.642132205695,2287,1055658,0,1,0,0,9 +"19719",2017,6005,"CA","06","005",38549,0.917170354613609,1644,0.167449220472645,7.40488757561612,8.38366179879172,9.14066869872686,5.01538461538462,384.263494967978,84,21860,0,1,0,0,9 +"19720",2017,6007,"CA","06","007",228700,0.885745518146043,24993,0.129156099693922,10.126351064643,10.1087929457205,11.107120299049,5.82307692307692,406.173235871667,544,133933,0,1,0,0,9 +"19721",2017,6009,"CA","06","009",45658,0.937754610364011,2064,0.186801874808358,7.63240112660145,8.33254893925264,9.43819281901813,4.76153846153846,443.333870707722,110,24812,0,1,0,0,9 +"19722",2017,6011,"CA","06","011",21558,0.92536413396419,1418,0.119398831060395,7.25700270709207,7.85166117788927,8.6652683094816,14.4,280.99173553719,34,12100,0,1,0,0,9 +"19723",2017,6013,"CA","06","013",1145623,0.681911937871359,67666,0.13130584843356,11.1223391170905,11.9415731029782,12.7530402094264,3.87692307692308,236.174298094373,1615,683817,0,1,0,0,9 +"19724",2017,6015,"CA","06","015",27383,0.80874995435124,1524,0.144250082167768,7.32909373624659,8.15994665557855,8.84937050375457,6.48461538461538,630.407911001236,102,16180,0,1,0,0,9 +"19725",2017,6017,"CA","06","017",188793,0.912136572860223,9668,0.17119808467475,9.17657674182337,9.94270826568941,10.9036229861053,4.39230769230769,320.158975491278,348,108696,0,1,0,0,9 +"19726",2017,6019,"CA","06","019",984726,0.780587696475974,71538,0.103956836724124,11.1779840560342,11.7148208647213,12.5329994693079,8.58461538461538,344.880359615186,1938,561934,0,1,0,0,9 +"19727",2017,6021,"CA","06","021",27876,0.909599655617736,1802,0.128067154541541,7.49665243816828,8.0870254706677,8.92492240117747,7.51538461538462,431.450833923627,67,15529,0,1,0,0,9 +"19728",2017,6023,"CA","06","023",136710,0.86341160119962,12937,0.135366834906005,9.4678467019179,9.77457405244279,10.6136884876619,4.24615384615385,452.307131132592,372,82245,0,1,0,0,9 +"19729",2017,6025,"CA","06","025",181250,0.909489655172414,13550,0.102576551724138,9.51414182630785,9.99761521526083,10.7728124551295,19.6692307692308,290.260159105569,297,102322,0,1,0,0,9 +"19730",2017,6027,"CA","06","027",17819,0.818564453673046,847,0.167573937931422,6.74170069465205,7.57609734062311,8.48322267184508,4.39230769230769,455.742353656066,45,9874,0,1,0,0,9 +"19731",2017,6029,"CA","06","029",887316,0.838702333779623,66960,0.104607603153781,11.1118507051634,11.6243237167603,12.3994454121361,9.27692307692308,401.943797873023,2067,514251,0,1,0,0,9 +"19732",2017,6031,"CA","06","031",149542,0.832695831271482,12686,0.0947693624533576,9.44825430219384,9.91363588358794,10.5316961319372,8.96923076923077,301.024148579299,271,90026,0,1,0,0,9 +"19733",2017,6033,"CA","06","033",64132,0.895746273311295,3040,0.162711282978856,8.01961279440027,8.79543080504002,9.78154588173089,5.80769230769231,771.840542832909,273,35370,0,1,0,0,9 +"19734",2017,6035,"CA","06","035",30919,0.830816003104887,2444,0.122546007309421,7.80139132029149,8.41094339157353,8.78339623219089,5.56923076923077,309.253442860594,64,20695,0,1,0,0,9 +"19735",2017,6037,"CA","06","037",10092365,0.721734400212438,716073,0.118294572184022,13.481537396053,14.1351446830527,14.9620815541264,4.80769230769231,252.735267938701,16006,6333109,0,1,0,0,9 +"19736",2017,6039,"CA","06","039",155079,0.872639106519903,10748,0.111356147511913,9.28247496973538,9.86562990997989,10.7396089020472,8.16923076923077,339.198402704512,299,88149,0,1,0,0,9 +"19737",2017,6041,"CA","06","041",259975,0.876734301375132,11905,0.152699298009424,9.38471375892096,10.3429997572833,11.2017836862533,2.9,203.23407263409,299,147121,0,1,0,0,9 +"19738",2017,6043,"CA","06","043",17461,0.91764503751217,842,0.18819082526774,6.73578001424233,7.38770923908104,8.45404037641097,5.96153846153846,485.336637752995,47,9684,0,1,0,0,9 +"19739",2017,6045,"CA","06","045",87690,0.88102406203672,4531,0.148146881058273,8.41869794466714,9.25531373761891,10.0886384363402,4.53846153846154,431.791417887321,209,48403,0,1,0,0,9 +"19740",2017,6047,"CA","06","047",270837,0.83609698822539,20549,0.0999198780078054,9.93056755693987,10.3994330137727,11.2077716466064,9.43846153846154,321.111783749638,488,151972,0,1,0,0,9 +"19741",2017,6049,"CA","06","049",8864,0.903542418772563,405,0.162906137184116,6.00388706710654,6.77422388635761,7.76726399675731,8.2,447.665742911959,21,4691,0,1,0,0,9 +"19742",2017,6051,"CA","06","051",14333,0.918091118398102,1043,0.157329240214889,6.94985645500077,7.51261754467451,8.35983738064003,4.46923076923077,284.650755419312,26,9134,0,1,0,0,9 +"19743",2017,6053,"CA","06","053",433803,0.846070681853284,31010,0.111861835902472,10.3420650120945,10.9364940841062,11.6897904952969,7.30769230769231,249.978245564073,632,252822,0,1,0,0,9 +"19744",2017,6055,"CA","06","055",139818,0.857500464890071,8655,0.135046989657984,9.06589246761031,9.77366356469993,10.6054210203767,3.66923076923077,256.39460350406,210,81905,0,1,0,0,9 +"19745",2017,6057,"CA","06","057",99421,0.954687641443961,4377,0.176009092646423,8.3841188371909,9.28340494283319,10.2239392863173,4.13846153846154,360.997531955649,196,54294,0,1,0,0,9 +"19746",2017,6059,"CA","06","059",3174159,0.737031446754873,213434,0.12512416674779,12.2710829303697,12.9249679789628,13.7834893063814,3.53076923076923,215.663499183941,4198,1946551,0,1,0,0,9 +"19747",2017,6061,"CA","06","061",385348,0.87054558477013,20356,0.135109044292432,9.92113098770872,10.8059430169538,11.610288082537,3.89230769230769,255.36801010449,556,217725,0,1,0,0,9 +"19748",2017,6063,"CA","06","063",18680,0.929550321199143,743,0.19041755888651,6.61069604471776,7.454719949364,8.5213843960347,9.03076923076923,600.66072679948,60,9989,0,1,0,0,9 +"19749",2017,6065,"CA","06","065",2413058,0.815393993845154,168130,0.113228111383978,12.032492768673,12.6343261152688,13.4458444502369,5.29230769230769,298.261382306974,4168,1397432,0,1,0,0,9 +"19750",2017,6067,"CA","06","067",1527984,0.65916069801778,97610,0.122077194525597,11.488735226169,12.2097807619607,13.0545640790398,4.7,342.941031056601,3163,922316,0,1,0,0,9 +"19751",2017,6069,"CA","06","069",60190,0.899136069114471,4059,0.123342747964778,8.3086919168389,8.95763926841965,9.76445534384057,5.80769230769231,304.105423213381,108,35514,0,1,0,0,9 +"19752",2017,6071,"CA","06","071",2149847,0.782766866665395,166394,0.112457305101247,12.0221137490268,12.5263356480206,13.3660716185125,4.96153846153846,335.770431299264,4305,1282126,0,1,0,0,9 +"19753",2017,6073,"CA","06","073",3319019,0.778877132068241,254797,0.117947501957657,12.4482224286705,12.9959358354347,13.8163272244014,4.05384615384615,229.012514313282,4728,2064516,0,1,0,0,9 +"19754",2017,6075,"CA","06","075",877471,0.553071269591816,47981,0.115636870050406,10.778560378194,11.8293553312735,12.5792762356822,2.94615384615385,207.229651379961,1276,615742,0,1,0,0,9 +"19755",2017,6077,"CA","06","077",743286,0.692508670955729,51150,0.111994575439333,10.8425177713798,11.4694959070429,12.2647989961812,7.03846153846154,374.364105829584,1605,428727,0,1,0,0,9 +"19756",2017,6079,"CA","06","079",282473,0.909662162401362,30273,0.139464656799057,10.3180115051326,10.3321482182475,11.2816111234807,3.62307692307692,313.739239771738,519,165424,0,1,0,0,9 +"19757",2017,6081,"CA","06","081",768658,0.625179208438603,42115,0.129571278774175,10.6481592507495,11.6044101550924,12.3709258484906,2.73846153846154,163.789473684211,778,475000,0,1,0,0,9 +"19758",2017,6083,"CA","06","083",444998,0.875630901711918,50312,0.113169047950777,10.8259988962233,10.8184173587709,11.7467715394176,4.56153846153846,250.669728281669,655,261300,0,1,0,0,9 +"19759",2017,6085,"CA","06","085",1932251,0.555965037668502,120029,0.116705334865915,11.6954886592342,12.5391964251785,13.2763849060348,3.23076923076923,175.953127674335,2128,1209413,0,1,0,0,9 +"19760",2017,6087,"CA","06","087",274865,0.894158950757645,28040,0.135957651938224,10.2413873411485,10.3738036329639,11.3191707985498,5.73846153846154,239.485558477909,397,165772,0,1,0,0,9 +"19761",2017,6089,"CA","06","089",179403,0.904655997948752,9991,0.148018706487628,9.20943996673302,9.87436765396228,10.8381681495219,5.83846153846154,511.549519183107,516,100870,0,1,0,0,9 +"19762",2017,6093,"CA","06","093",43647,0.893440557197516,2113,0.166540655715169,7.65586401761606,8.37031599555548,9.36357634787504,7.32307692307692,632.312456985547,147,23248,0,1,0,0,9 +"19763",2017,6095,"CA","06","095",443554,0.624268972887179,29160,0.135514503307376,10.2805531861226,10.9141789598318,11.7925174003351,4.8,328.059311336106,881,268549,0,1,0,0,9 +"19764",2017,6097,"CA","06","097",502203,0.89150005077628,29120,0.146122185650026,10.2791805023106,11.0325643820081,11.9111981024969,3.4,275.992056813975,820,297110,0,1,0,0,9 +"19765",2017,6099,"CA","06","099",544494,0.855658648212836,37441,0.112524655919073,10.5305216396365,11.13118176628,11.9602680104229,7.53076923076923,372.780651030236,1172,314394,0,1,0,0,9 +"19766",2017,6101,"CA","06","101",96161,0.753715123594805,6135,0.120142261415751,8.72176535714501,9.35677565020573,10.2081373554055,8.79230769230769,367.909505244083,201,54633,0,1,0,0,9 +"19767",2017,6103,"CA","06","103",63827,0.923245648393313,3602,0.140692810252714,8.1892445257359,8.85080419575642,9.76703761939823,6.41538461538462,500.71530758226,175,34950,0,1,0,0,9 +"19768",2017,6105,"CA","06","105",12727,0.902255048322464,527,0.194625599119981,6.26720054854136,7.19142933003638,8.14322675036744,6.26153846153846,541.850848424355,38,7013,0,1,0,0,9 +"19769",2017,6107,"CA","06","107",462072,0.896176353468723,33569,0.098627486625461,10.4213583010288,10.9625097264973,11.7450366862667,10.5153846153846,346.734395973811,886,255527,0,1,0,0,9 +"19770",2017,6109,"CA","06","109",53953,0.925657516727522,2742,0.166441161751895,7.91644286012226,8.65765054411149,9.54359314597042,5.42307692307692,441.312080094849,134,30364,0,1,0,0,9 +"19771",2017,6111,"CA","06","111",848264,0.86068959663501,57891,0.131037035639848,10.9663172110645,11.5594750256232,12.4303195878845,4.53076923076923,248.90633563575,1258,505411,0,1,0,0,9 +"19772",2017,6113,"CA","06","113",218470,0.769231473428846,30844,0.103336842587083,10.3366975209529,10.143094829881,11.1220878515237,5.14615384615385,241.188359844017,321,133091,0,1,0,0,9 +"19773",2017,6115,"CA","06","115",76575,0.81866144302971,5603,0.113966699314398,8.63105744756528,9.14505490527755,9.98160533180008,7.46923076923077,532.943557454464,237,44470,0,1,0,0,9 +"19774",2017,8001,"CO","08","001",503717,0.875856879954419,31457,0.107778772604458,10.356376812879,11.2078394859899,11.9127748342928,2.83076923076923,298.70909144564,911,304979,0,1,0,0,9 +"19775",2017,8003,"CO","08","003",16102,0.893739908085952,1741,0.114333623152403,7.46221493976819,7.45818615734049,8.43489794868941,3.18461538461538,310.259976463036,29,9347,0,1,0,0,9 +"19776",2017,8005,"CO","08","005",645080,0.786942704780802,39552,0.122866931233335,10.5853715408174,11.4221579516153,12.199093346787,2.56923076923077,243.049050336471,960,394982,0,1,0,0,9 +"19777",2017,8007,"CO","08","007",13312,0.934945913461538,541,0.186147836538462,6.29341927884648,7.26403014289953,8.20876404581967,2.81538461538462,410.958904109589,30,7300,0,1,0,0,9 +"19778",2017,8011,"CO","08","011",5828,0.861530542210021,430,0.128345916266301,6.06378520868761,6.76272950693188,6.91869521902047,2.56153846153846,483.58360906083,19,3929,0,1,0,0,9 +"19779",2017,8013,"CO","08","013",323019,0.918397988972785,33433,0.126918230816144,10.4172987151425,10.6096249931343,11.4990394996578,2.23846153846154,199.852844671585,402,201148,0,1,0,0,9 +"19780",2017,8014,"CO","08","014",68340,0.894746853965467,3709,0.115861867134914,8.21851757748959,9.22700081286929,9.9349862195955,2.41538461538462,181.892157097384,76,41783,0,1,0,0,9 +"19781",2017,8015,"CO","08","015",19700,0.950406091370558,957,0.171675126903553,6.86380339145295,7.77106708606541,8.55833513474741,2.17692307692308,277.008310249307,32,11552,0,1,0,0,9 +"19782",2017,8019,"CO","08","019",9573,0.960513945471639,399,0.196907970333229,5.98896141688986,7.11314210870709,7.9707403900071,2.4,377.482356802889,23,6093,0,1,0,0,9 +"19783",2017,8021,"CO","08","021",8141,0.929124186217909,477,0.139786267043361,6.16751649088834,6.74051935960622,7.63433723562832,3.86923076923077,495.166234378684,21,4241,0,1,0,0,9 +"19784",2017,8029,"CO","08","029",30516,0.962511469393105,1394,0.167879145366365,7.23993259132047,8.0375431851187,8.97271749939714,3.59230769230769,477.875007757711,77,16113,0,1,0,0,9 +"19785",2017,8031,"CO","08","031",704869,0.82277983568578,42928,0.100486757113733,10.6672795726654,11.623607794622,12.3459476249947,2.54615384615385,286.100463474223,1342,469066,0,1,0,0,9 +"19786",2017,8035,"CO","08","035",336347,0.917478080672639,16974,0.123655034830101,9.73943804052962,10.826257250508,11.5189870563488,2.20769230769231,147.988900832438,296,200015,0,1,0,0,9 +"19787",2017,8037,"CO","08","037",55022,0.952909745192832,3051,0.125531605539602,8.02322468471667,9.04593731568457,9.71546980319729,2.15384615384615,176.981206281428,63,35597,0,1,0,0,9 +"19788",2017,8039,"CO","08","039",25735,0.960093258208665,1259,0.189819312220711,7.13807303404435,7.95647679803678,8.95622201636254,2.25384615384615,232.168192957565,36,15506,0,1,0,0,9 +"19789",2017,8041,"CO","08","041",700838,0.85701688549993,57157,0.117697670503026,10.9535571464117,11.3859440032094,12.2393091427728,3.03076923076923,360.783645736484,1525,422691,0,1,0,0,9 +"19790",2017,8043,"CO","08","043",47633,0.924464132009321,2421,0.148552474125081,7.79193595693806,8.7343991500637,9.28126471031288,3.96153846153846,438.460210598999,127,28965,0,1,0,0,9 +"19791",2017,8045,"CO","08","045",59065,0.952645390671294,3360,0.134529755354271,8.11969625295725,9.00220857828241,9.7495201892387,2.69230769230769,285.310734463277,101,35400,0,1,0,0,9 +"19792",2017,8049,"CO","08","049",15385,0.966265843353916,808,0.188170295742606,6.6945620585211,7.56423847517049,8.43402895015547,2.09230769230769,274.585579172175,27,9833,0,1,0,0,9 +"19793",2017,8051,"CO","08","051",16896,0.951763731060606,2229,0.124467329545455,7.70930833338587,7.68017564043659,8.51959031601596,1.9,172.460742488881,19,11017,0,1,0,0,9 +"19794",2017,8055,"CO","08","055",6632,0.908474065138721,243,0.194209891435464,5.49306144334055,6.31535800152233,7.46221493976819,5.36923076923077,589.796520200531,20,3391,0,1,0,0,9 +"19795",2017,8059,"CO","08","059",576041,0.932711386863088,32343,0.1461458472574,10.3841528932072,11.2486603951163,12.0793182371847,2.43846153846154,300.311298297015,1066,354965,0,1,0,0,9 +"19796",2017,8065,"CO","08","065",7769,0.947741022010555,542,0.128974127944394,6.29526600143965,6.98286275146894,7.69165682281055,1.98461538461538,244.349419670128,12,4911,0,1,0,0,9 +"19797",2017,8067,"CO","08","067",55717,0.89825367482097,3598,0.15551806450455,8.18813341451048,8.9000036089596,9.74008588059468,2.28461538461538,287.938886440429,98,34035,0,1,0,0,9 +"19798",2017,8069,"CO","08","069",344509,0.943557352638102,37106,0.126797848532259,10.5215339605868,10.6511702657441,11.5579561903445,2.25384615384615,242.932234692428,513,211170,0,1,0,0,9 +"19799",2017,8071,"CO","08","071",14237,0.915291142796938,837,0.157898433658776,6.72982407048948,7.32909373624659,8.18227973925902,3.7,640.450877417702,50,7807,0,1,0,0,9 +"19800",2017,8075,"CO","08","075",22314,0.922380568253115,1676,0.130187326342207,7.42416528104203,7.9561263512135,8.57111303340567,2.18461538461538,400.483602841167,53,13234,0,1,0,0,9 +"19801",2017,8077,"CO","08","077",151435,0.955201901806055,9563,0.140324231518473,9.16565676434954,9.79873796133706,10.6722522795547,3.66923076923077,391.915150951296,337,85988,0,1,0,0,9 +"19802",2017,8081,"CO","08","081",13095,0.960290187094311,690,0.145322642229859,6.5366915975913,7.36201055125973,8.19118600464279,3.06923076923077,425.758382118148,32,7516,0,1,0,0,9 +"19803",2017,8083,"CO","08","083",26187,0.837323862985451,1259,0.160728605796769,7.13807303404435,7.93020620668468,8.89384721767028,3.68461538461538,415.522219874639,59,14199,0,1,0,0,9 +"19804",2017,8085,"CO","08","085",41795,0.956956573752841,2068,0.151955975595167,7.63433723562832,8.41980084540759,9.32830116960975,3.05384615384615,449.458402624837,100,22249,0,1,0,0,9 +"19805",2017,8087,"CO","08","087",28275,0.926790450928382,1795,0.12710875331565,7.49276030092238,8.10500553754725,8.94715577112479,2.26923076923077,429.672690509288,68,15826,0,1,0,0,9 +"19806",2017,8089,"CO","08","089",18344,0.922045355429568,1112,0.134430876580898,7.01391547481053,7.62803112693033,8.49801037199946,3.86153846153846,492.863743710853,48,9739,0,1,0,0,9 +"19807",2017,8093,"CO","08","093",17935,0.959632004460552,649,0.236576526345135,6.47543271670409,7.64826303090192,8.59359852261864,2.18461538461538,263.365815117198,30,11391,0,1,0,0,9 +"19808",2017,8097,"CO","08","097",18027,0.958229322682643,924,0.159482997725634,6.82871207164168,7.78030308790837,8.62927109482159,2.88461538461538,172.458394412348,20,11597,0,1,0,0,9 +"19809",2017,8099,"CO","08","099",11990,0.960050041701418,766,0.139616346955796,6.64118216974059,7.18614430452233,8.05515773181968,2.42307692307692,433.705080545229,28,6456,0,1,0,0,9 +"19810",2017,8101,"CO","08","101",166370,0.917761615675903,10371,0.135120514515838,9.24676872858973,9.87235801733921,10.766398604507,3.98461538461538,526.058493453494,495,94096,0,1,0,0,9 +"19811",2017,8105,"CO","08","105",11300,0.937964601769911,647,0.146194690265487,6.4723462945009,7.16317239084664,8.04173471148754,3.99230769230769,483.169592526977,30,6209,0,1,0,0,9 +"19812",2017,8107,"CO","08","107",25220,0.9695479777954,1454,0.159714512291832,7.28207365809346,8.18144069571937,8.96559006690791,2.2,292.451105830744,48,16413,0,1,0,0,9 +"19813",2017,8117,"CO","08","117",30848,0.961780342323652,1798,0.140722251037344,7.49443021503157,8.45807992692373,9.17450591896697,1.74615384615385,187.749354611594,40,21305,0,1,0,0,9 +"19814",2017,8119,"CO","08","119",24713,0.958685711973455,1090,0.213895520576215,6.99393297522319,7.81681996576455,8.90327158572421,2.96923076923077,447.003047748053,66,14765,0,1,0,0,9 +"19815",2017,8123,"CO","08","123",306571,0.939540922005017,19240,0.115346852768201,9.8647467242197,10.6313742669,11.3881102614783,2.5,291.0126794392,521,179030,0,1,0,0,9 +"19816",2017,8125,"CO","08","125",9976,0.974037690457097,546,0.124899759422614,6.3026189757449,7.00850518208228,7.84737183615979,1.48461538461538,259.884908112122,14,5387,0,1,0,0,9 +"19817",2017,9001,"CT","09","001",944107,0.799825655354743,60475,0.138261870741346,11.0099853354782,11.6731632947371,12.5540675264838,4.26923076923077,230.679480214113,1295,561385,0,1,0,0,9 +"19818",2017,9003,"CT","09","003",893141,0.767680578990327,58094,0.138242449960309,10.9698176672835,11.5972941865532,12.5032470231653,4.55384615384615,325.312461305827,1734,533026,0,1,0,0,9 +"19819",2017,9005,"CT","09","005",181719,0.947765506083569,9997,0.172480588160842,9.21004032696718,9.8518784188029,10.8898079515721,4.08461538461538,355.417078676841,381,107198,0,1,0,0,9 +"19820",2017,9007,"CT","09","007",163058,0.902065522697445,10004,0.161654135338346,9.21074029199751,9.77820773610937,10.8042787853633,3.8,327.512037864088,319,97401,0,1,0,0,9 +"19821",2017,9009,"CT","09","009",857845,0.790224341227145,59988,0.138816452855702,11.0018998212016,11.5146839179851,12.4767980122067,4.73076923076923,331.592618121352,1703,513582,0,1,0,0,9 +"19822",2017,9011,"CT","09","011",267829,0.854590055595175,20107,0.147429889967106,9.90882329212565,10.2902454331786,11.2718979445575,4.23076923076923,363.297106598044,588,161851,0,1,0,0,9 +"19823",2017,9013,"CT","09","013",151136,0.902458712682617,19772,0.138411761592208,9.89202207442685,9.63737125799891,10.7261706544451,3.76153846153846,254.55722144321,236,92710,0,1,0,0,9 +"19824",2017,9015,"CT","09","015",116489,0.93584801998472,7805,0.15120741014173,8.96251983294953,9.52923037155216,10.4697951857611,4.76923076923077,353.376869363639,250,70746,0,1,0,0,9 +"19825",2017,11001,"DC","11","001",697079,0.457796031726677,53704,0.101137747658443,10.8912427656186,11.5368958656088,12.4032581839727,6.1,365.293461742129,1697,464558,1,1,1,0,9 +"19826",2017,10001,"DE","10","001",176754,0.682768141032169,12617,0.125847222693687,9.44280038992774,9.91170370730747,10.8671579304571,4.87692307692308,424.321184555103,431,101574,1,1,1,0,9 +"19827",2017,10003,"DE","10","003",556491,0.665647782264223,35778,0.133667929939568,10.4850884583512,11.1281302550289,12.0515802406549,4.38461538461539,404.921859263735,1367,337596,1,1,1,0,9 +"19828",2017,10005,"DE","10","005",224697,0.837590176993907,10535,0.161154799574538,9.26245832623829,9.96833852485574,11.0172839765293,4.46923076923077,456.943778243417,543,118833,1,1,1,0,9 +"19829",2017,12001,"FL","12","001",266501,0.71449638087662,42050,0.109350433957096,10.6466146654011,10.2700039105057,11.3631020755687,3.86923076923077,279.894446585821,472,168635,0,1,0,0,9 +"19830",2017,12003,"FL","12","003",28255,0.844204565563617,1659,0.122420810476022,7.41397029019044,8.21039625510477,8.93997417728963,4.25384615384615,538.174936424389,91,16909,0,1,0,0,9 +"19831",2017,12005,"FL","12","005",184841,0.835891387733241,11339,0.1388544749271,9.33600338997184,10.0020651158971,10.9107883227536,4.23076923076923,541.216413551402,593,109568,0,1,0,0,9 +"19832",2017,12007,"FL","12","007",27158,0.786398114735989,1602,0.133993666691214,7.3790081276283,8.15306194680105,8.81877816903701,3.70769230769231,661.801088570015,107,16168,0,1,0,0,9 +"19833",2017,12009,"FL","12","009",588165,0.849868659304787,31100,0.162520721226187,10.3449630981673,11.008131613436,12.0329149718065,4.39230769230769,524.641233540815,1738,331274,0,1,0,0,9 +"19834",2017,12011,"FL","12","011",1935945,0.646655251053103,112863,0.132160262817384,11.6339299727754,12.4598966998414,13.2948012511241,4.02307692307692,330.387336806022,3862,1168931,0,1,0,0,9 +"19835",2017,12013,"FL","12","013",14463,0.836064440295928,788,0.129364585494019,6.66949808985788,7.54327334670545,8.1886891244442,4.95384615384615,609.82625704752,53,8691,0,1,0,0,9 +"19836",2017,12015,"FL","12","015",181998,0.914746315893581,6911,0.170743634545435,8.8408696240914,9.50435236812283,10.6905575873728,4.81538461538462,531.502991904259,453,85230,0,1,0,0,9 +"19837",2017,12017,"FL","12","017",145619,0.941992459775167,5631,0.162932034967964,8.63604232525462,9.33246950520925,10.4923569643895,5.98461538461538,697.426438802271,484,69398,0,1,0,0,9 +"19838",2017,12019,"FL","12","019",212381,0.828581652784383,11920,0.135887861908551,9.38597294061934,10.2138357954868,11.0596137474048,3.95384615384615,412.258680290987,514,124679,0,1,0,0,9 +"19839",2017,12021,"FL","12","021",373286,0.900893684735029,17880,0.132946319979855,9.7914380487275,10.4968143978139,11.4371669005691,4.22307692307692,306.960116916491,565,184063,0,1,0,0,9 +"19840",2017,12023,"FL","12","023",70051,0.791537594038629,4400,0.139112932006681,8.38935981990635,9.01152351265303,9.84432124186691,4.43846153846154,619.032104458535,247,39901,0,1,0,0,9 +"19841",2017,12027,"FL","12","027",37159,0.847923786969509,2479,0.120213138136118,7.81561053203519,8.40938523878193,9.02413126845503,4.54615384615385,483.971440893191,101,20869,0,1,0,0,9 +"19842",2017,12029,"FL","12","029",16609,0.887229815160455,797,0.15316996808959,6.68085467879022,7.57507169950756,8.28121766128665,4.83846153846154,711.932844543619,67,9411,0,1,0,0,9 +"19843",2017,12031,"FL","12","031",939167,0.62397741828663,62865,0.127351152670398,11.0487448490273,11.6798372318144,12.5971345233276,4.33076923076923,495.717541601768,2858,576538,0,1,0,0,9 +"19844",2017,12033,"FL","12","033",313882,0.707482429702882,25357,0.134397639877406,10.1408101050236,10.4351740669694,11.4358176130579,4.26923076923077,535.345786920492,991,185114,0,1,0,0,9 +"19845",2017,12035,"FL","12","035",110316,0.852768410747308,4812,0.155924797853439,8.47886807709457,9.28489110324048,10.2969812888631,4.87692307692308,492.698457871614,277,56221,0,1,0,0,9 +"19846",2017,12037,"FL","12","037",11730,0.844075021312873,649,0.142625745950554,6.47543271670409,7.22256601882217,7.92804560087478,3.67692307692308,442.730648386175,31,7002,0,1,0,0,9 +"19847",2017,12039,"FL","12","039",45984,0.418971816283925,2777,0.14437630480167,7.9291264873068,8.65869275368994,9.55300766526031,5.58461538461538,547.479007139422,148,27033,0,1,0,0,9 +"19848",2017,12041,"FL","12","041",17899,0.923738756355104,1450,0.145818202134197,7.27931883541462,7.50714107972761,8.45850419506756,4.50769230769231,486.420753952169,48,9868,0,1,0,0,9 +"19849",2017,12043,"FL","12","043",13591,0.799131778382753,634,0.128982414833346,6.45204895443723,7.42416528104203,8.01829613851552,5.46153846153846,392.721560413667,30,7639,0,1,0,0,9 +"19850",2017,12045,"FL","12","045",16115,0.807632640397146,898,0.144585789636984,6.8001700683022,7.62803112693033,8.17835816560584,3.97692307692308,538.223861257849,54,10033,0,1,0,0,9 +"19851",2017,12047,"FL","12","047",14397,0.636799333194416,1298,0.132041397513371,7.16857989726403,7.39387829010776,8.08886878916199,4.91538461538462,758.282781147924,65,8572,0,1,0,0,9 +"19852",2017,12049,"FL","12","049",27172,0.894266156337406,1897,0.105770646253496,7.54802896993501,8.0381891799732,8.81714962474341,5.98461538461538,394.121576486306,59,14970,0,1,0,0,9 +"19853",2017,12051,"FL","12","051",41074,0.838340556069533,2722,0.108901007936894,7.90912218321141,8.53483662658883,9.29532469588118,7.47692307692308,378.359572062277,87,22994,0,1,0,0,9 +"19854",2017,12053,"FL","12","053",186899,0.913905371350301,8985,0.143885200027823,9.10331179921766,9.83258213902035,10.83308929847,5.33846153846154,541.837922473912,526,97077,0,1,0,0,9 +"19855",2017,12055,"FL","12","055",103828,0.864776360904573,4726,0.133316639056902,8.46083445774685,9.08726837438619,10.0938599475198,5.74615384615385,669.360949734782,318,47508,0,1,0,0,9 +"19856",2017,12057,"FL","12","057",1428960,0.759859618183854,92957,0.119915882879857,11.4398922996201,12.1767828571012,13.0060677350299,4,334.216773818945,2855,854236,0,1,0,0,9 +"19857",2017,12059,"FL","12","059",19458,0.906465207112756,1292,0.139736869154075,7.16394668434255,7.74196789982069,8.52058742448425,4.81538461538462,656.512605042017,75,11424,0,1,0,0,9 +"19858",2017,12061,"FL","12","061",154260,0.878341760663814,6955,0.153617269544924,8.84721610435754,9.51332968849511,10.5895597644241,5.10769230769231,434.248044575823,332,76454,0,1,0,0,9 +"19859",2017,12063,"FL","12","063",48288,0.70317677269715,2988,0.132952286282306,8.00235954625271,8.81001204797317,9.37313926228127,4.58461538461538,607.608920803701,176,28966,0,1,0,0,9 +"19860",2017,12065,"FL","12","065",14226,0.634753268663011,655,0.158934345564459,6.48463523563525,7.3864708488299,8.22817689595132,4.43846153846154,583.870575355796,48,8221,0,1,0,0,9 +"19861",2017,12067,"FL","12","067",8603,0.843194234569336,681,0.110077879809369,6.52356230614951,7.13409372119287,7.56992765524265,3.82307692307692,463.141644152837,24,5182,0,1,0,0,9 +"19862",2017,12069,"FL","12","069",345848,0.849474335546252,16649,0.135146075732692,9.72010543354485,10.5249776013318,11.4442396891817,4.29230769230769,513.106895426824,928,180859,0,1,0,0,9 +"19863",2017,12071,"FL","12","071",741188,0.879550127632935,36753,0.140411069796057,10.5119751339623,11.2407754761012,12.1962091609058,4.16923076923077,401.962614883509,1550,385608,0,1,0,0,9 +"19864",2017,12073,"FL","12","073",291125,0.63120309145556,47114,0.108805495920996,10.7603254757526,10.3534160173508,11.4709882655067,3.97692307692308,298.218350551567,545,182752,0,1,0,0,9 +"19865",2017,12075,"FL","12","075",40339,0.882223158729765,1949,0.15850665608964,7.57507169950756,8.28778002708843,9.34119318039495,4.53846153846154,653.833843902885,143,21871,0,1,0,0,9 +"19866",2017,12077,"FL","12","077",8234,0.784916201117318,521,0.124848190429925,6.25575004175337,7.14913159855741,7.50604217851812,4.63076923076923,444.033302497687,24,5405,0,1,0,0,9 +"19867",2017,12079,"FL","12","079",18512,0.601555747623163,1055,0.141259723422645,6.96129604591017,7.69484807238461,8.48941081040379,4.52307692307692,495.004125034375,54,10909,0,1,0,0,9 +"19868",2017,12081,"FL","12","081",385458,0.872014590435274,18568,0.146625572695339,9.82919494795427,10.5861044841229,11.5620679480205,4.04615384615385,427.342030807922,870,203584,0,1,0,0,9 +"19869",2017,12083,"FL","12","083",353953,0.834150296790817,17393,0.136780872036683,9.76382310540815,10.4492072352794,11.4523364675192,5.11538461538462,594.144071608242,1070,180091,0,1,0,0,9 +"19870",2017,12085,"FL","12","085",159716,0.91220666683363,7159,0.156571664704851,8.87612558539618,9.59526257885302,10.606263229988,4.26923076923077,421.606735959643,346,82067,0,1,0,0,9 +"19871",2017,12086,"FL","12","086",2709126,0.791241529556027,168307,0.121208463541378,12.0335449717085,12.8274552598608,13.637894711926,4.78461538461538,267.92110246608,4533,1691916,0,1,0,0,9 +"19872",2017,12087,"FL","12","087",76556,0.903208109096609,3755,0.167589738230838,8.23084356419823,9.1266326229027,10.0176640925984,3.35384615384615,467.47667880983,222,47489,0,1,0,0,9 +"19873",2017,12089,"FL","12","089",83024,0.918023703989208,3905,0.154786567739449,8.27001306227379,9.15218145780265,10.084015835709,3.96153846153846,567.939192074473,266,46836,0,1,0,0,9 +"19874",2017,12091,"FL","12","091",204275,0.837400562966589,14623,0.132556602619018,9.59035091061188,10.0872663803281,10.986766213039,3.53076923076923,406.550712283405,496,122002,0,1,0,0,9 +"19875",2017,12093,"FL","12","093",41248,0.877666795965865,2318,0.127230411171451,7.7484600238997,8.53915035876828,9.25186611880468,4.47692307692308,592.503542140741,138,23291,0,1,0,0,9 +"19876",2017,12095,"FL","12","095",1357720,0.69477359102024,105440,0.110854962731638,11.5658973497363,12.1677371404646,12.9833104835948,3.83076923076923,280.259383758106,2387,851711,0,1,0,0,9 +"19877",2017,12097,"FL","12","097",353306,0.809391858615478,23699,0.1082857353116,10.0731881321402,10.8420680123843,11.5820129986432,4.4,315.5801692269,665,210723,0,1,0,0,9 +"19878",2017,12099,"FL","12","099",1470583,0.760193746289737,79371,0.131224827160385,11.2818883412244,12.0321001382224,12.9244366914799,4.24615384615385,361.93496284332,2931,809814,0,1,0,0,9 +"19879",2017,12101,"FL","12","101",525533,0.897321386097543,26194,0.133951626253727,10.1732856558893,11.0524602005432,11.9052918244888,4.53846153846154,512.209031053969,1482,289335,0,1,0,0,9 +"19880",2017,12103,"FL","12","103",968886,0.839447571747347,47975,0.159102309250005,10.7784353208759,11.5673852407598,12.5678714400974,3.89230769230769,480.326135003141,2684,558787,0,1,0,0,9 +"19881",2017,12105,"FL","12","105",685790,0.802732614940434,40944,0.123112031379868,10.6199605583996,11.295925503104,12.1663594111082,4.87692307692308,458.568895020761,1735,378351,0,1,0,0,9 +"19882",2017,12107,"FL","12","107",73418,0.813656051649459,3817,0.154376310986407,8.24722005274523,8.88391747120797,9.90528593447751,5.52307692307692,707.481618111529,280,39577,0,1,0,0,9 +"19883",2017,12109,"FL","12","109",244067,0.903276559305437,11773,0.142915674794216,9.3735640530782,10.3434507010519,11.1621047799404,3.43846153846154,325.373265285232,445,136766,0,1,0,0,9 +"19884",2017,12111,"FL","12","111",313207,0.754191317563145,16403,0.139291267436552,9.70521952391249,10.4403317387007,11.3760628155804,5.23846153846154,424.934173406056,723,170144,0,1,0,0,9 +"19885",2017,12113,"FL","12","113",174413,0.891842924552642,9738,0.136669858324781,9.18379103674265,10.009242990202,10.8280638639971,3.96153846153846,407.843586731234,427,104697,0,1,0,0,9 +"19886",2017,12115,"FL","12","115",420073,0.925439149862048,17355,0.155082568982058,9.76163592829589,10.4727707458737,11.5643122549869,4.01538461538462,451.619006836526,907,200833,0,1,0,0,9 +"19887",2017,12117,"FL","12","117",463052,0.808544180783152,28744,0.130130093380441,10.2661843287934,11.0512232831638,11.8909988210864,3.77692307692308,312.976402071054,891,284686,0,1,0,0,9 +"19888",2017,12119,"FL","12","119",125298,0.907875624511165,2980,0.142484317387349,7.99967857949945,8.90286367219622,9.94515718770752,6.20769230769231,500.883912787272,221,44122,0,1,0,0,9 +"19889",2017,12121,"FL","12","121",44125,0.846300283286119,2456,0.138538243626062,7.80628928926703,8.49494758246892,9.33767762043738,4.33076923076923,524.807234265875,130,24771,0,1,0,0,9 +"19890",2017,12123,"FL","12","123",21784,0.774375688578773,1240,0.13739441792141,7.12286665859908,7.85515700588134,8.57130251706327,4.56923076923077,616.801998750781,79,12808,0,1,0,0,9 +"19891",2017,12125,"FL","12","125",15455,0.744548689744419,1010,0.151730831446134,6.9177056098353,7.63675211243578,7.93343838762749,3.8,1034.20843277645,104,10056,0,1,0,0,9 +"19892",2017,12127,"FL","12","127",538755,0.853070505146124,31276,0.152921086579243,10.3506063092444,10.9307112451166,11.9365185963933,4.51538461538462,578.18685932897,1735,300076,0,1,0,0,9 +"19893",2017,12129,"FL","12","129",32055,0.843019809702075,1578,0.136172204024333,7.36391350140582,8.41205487329293,9.06566136060674,3.64615384615385,440.105220558478,87,19768,0,1,0,0,9 +"19894",2017,12131,"FL","12","131",68110,0.913845250330348,3075,0.15614447217736,8.03106018024062,9.03157249338153,9.8696722040414,3.73846153846154,479.622328804962,191,39823,0,1,0,0,9 +"19895",2017,12133,"FL","12","133",24577,0.816657850836148,1547,0.135126337632746,7.34407285057307,8.0507033814703,8.76295892076673,4.45384615384615,578.929653315382,86,14855,0,1,0,0,9 +"19896",2017,13001,"GA","13","001",18447,0.785114110695506,1060,0.133842901284762,6.96602418710611,7.68340368105383,8.52971447196991,5.53076923076923,602.468176076183,62,10291,0,1,0,0,9 +"19897",2017,13003,"GA","13","003",8257,0.785515320334262,535,0.117112752815793,6.28226674689601,6.9555926083963,7.73718007783463,4.52307692307692,621.517359622803,29,4666,0,1,0,0,9 +"19898",2017,13005,"GA","13","005",11204,0.813191717243842,697,0.123081042484827,6.54678541076052,7.2991214627108,8.05674377497531,4.50769230769231,548.159749412686,35,6385,0,1,0,0,9 +"19899",2017,13009,"GA","13","009",44993,0.544106861067277,5570,0.126730824794968,8.62515033292133,8.45723085024355,9.44793894425998,5.90769230769231,557.040159584478,148,26569,0,1,0,0,9 +"19900",2017,13011,"GA","13","011",18607,0.94829902724781,1055,0.137528886978019,6.96129604591017,7.77317368048254,8.57847641983314,3.92307692307692,542.179746370153,59,10882,0,1,0,0,9 +"19901",2017,13013,"GA","13","013",79086,0.822813140125939,4619,0.11276332094176,8.4379335104306,9.31524078180155,10.0746217636895,4.08461538461538,463.655399341908,217,46802,0,1,0,0,9 +"19902",2017,13015,"GA","13","015",105190,0.862610514307444,6407,0.128025477707006,8.76514642163902,9.49484239342133,10.3603426170266,4.66153846153846,437.699680511182,274,62600,0,1,0,0,9 +"19903",2017,13017,"GA","13","017",17059,0.61656603552377,953,0.136760654200129,6.8596149036542,7.56786260546388,8.51077262361331,7.80769230769231,675.461741424802,64,9475,0,1,0,0,9 +"19904",2017,13019,"GA","13","019",19071,0.873263069582088,1022,0.134707146977086,6.92951677076365,7.70345904786717,8.59655874679698,5.14615384615385,671.758535014263,73,10867,0,1,0,0,9 +"19905",2017,13021,"GA","13","021",152920,0.411156160083704,11117,0.126909495160868,9.31623074723361,9.78024589567809,10.749377279111,5.36923076923077,565.28918038802,493,87212,0,1,0,0,9 +"19906",2017,13023,"GA","13","023",12769,0.717675620643747,1037,0.128044482731616,6.94408720822953,7.20785987143248,8.22924441673591,6.76923076923077,567.238516878805,41,7228,0,1,0,0,9 +"19907",2017,13025,"GA","13","025",18848,0.951135398981324,1101,0.136088709677419,7.00397413672268,7.74153358928183,8.61122983334262,5.73846153846154,544.481358434847,59,10836,0,1,0,0,9 +"19908",2017,13027,"GA","13","027",15641,0.624704302793939,863,0.148136308420178,6.76041469108343,7.41336733569524,8.41980084540759,4.53846153846154,600.158532442532,53,8831,0,1,0,0,9 +"19909",2017,13029,"GA","13","029",37091,0.810142622199455,1920,0.102127200668626,7.56008046502183,8.65312170864048,9.30501398557886,4.23076923076923,438.269302499068,94,21448,0,1,0,0,9 +"19910",2017,13031,"GA","13","031",76046,0.676090787155143,12302,0.101293953659627,9.41751712976831,8.98544528762317,10.0690443629974,5.07692307692308,339.449147080308,158,46546,0,1,0,0,9 +"19911",2017,13033,"GA","13","033",22553,0.501795769964085,1377,0.142331397153372,7.22766249872865,7.84463264446468,8.81135422996573,7.16923076923077,477.644663691175,61,12771,0,1,0,0,9 +"19912",2017,13035,"GA","13","035",24064,0.696642287234043,1711,0.128075132978723,7.44483327389219,8.06022424044096,8.76545853150423,4.85384615384615,567.337565851682,84,14806,0,1,0,0,9 +"19913",2017,13037,"GA","13","037",6393,0.36665102455811,451,0.130298764273424,6.11146733950268,6.92755790627832,7.23777819192344,5.32307692307692,661.313179026925,28,4234,0,1,0,0,9 +"19914",2017,13039,"GA","13","039",53211,0.769483753359268,5167,0.116254157974855,8.55004752828718,8.67573421954479,9.64251232291291,5.1,366.105513486451,117,31958,0,1,0,0,9 +"19915",2017,13043,"GA","13","043",10698,0.72948214619555,610,0.131800336511497,6.41345895716736,7.11069612297883,8.00101996132365,4.12307692307692,712.105798575788,42,5898,0,1,0,0,9 +"19916",2017,13045,"GA","13","045",117437,0.779975646516856,10629,0.11397600415542,9.27134139353358,9.57310672555123,10.4696816558317,5.07692307692308,496.015965061966,343,69151,0,1,0,0,9 +"19917",2017,13047,"GA","13","047",66570,0.94530569325522,3622,0.129022082018927,8.19478163844336,9.04840950482996,9.88506896701211,4.17692307692308,455.771799774733,174,38177,0,1,0,0,9 +"19918",2017,13049,"GA","13","049",12779,0.664527740824791,931,0.123796854213945,6.83625927727707,7.43425738213314,7.9976631270201,5.09230769230769,488.476953907816,39,7984,0,1,0,0,9 +"19919",2017,13051,"GA","13","051",289771,0.54437469588054,23043,0.120056872495867,10.0451173146668,10.4762169796169,11.4098733939138,4.52307692307692,399.851906701222,702,175565,0,1,0,0,9 +"19920",2017,13053,"GA","13","053",10197,0.721094439541041,2350,0.0411885848779053,7.7621706071382,6.94793706861497,7.70706265537047,6.85384615384615,240.418611228963,17,7071,0,1,0,0,9 +"19921",2017,13055,"GA","13","055",24757,0.878700973462051,1481,0.135436442218362,7.3004728142678,8.03398273468322,8.81848226727424,4.74615384615385,651.465798045603,94,14429,0,1,0,0,9 +"19922",2017,13057,"GA","13","057",247944,0.893963959603781,13915,0.124725744522957,9.54072267395999,10.4499602037483,11.219694693588,3.76923076923077,279.858368514231,411,146860,0,1,0,0,9 +"19923",2017,13059,"GA","13","059",126674,0.656511991411024,24041,0.088960639120893,10.0875159851218,9.56289684665117,10.6527787437141,4.77692307692308,261.001517450683,215,82375,0,1,0,0,9 +"19924",2017,13063,"GA","13","063",284175,0.202568839623471,20277,0.109956892759743,9.91724251776846,10.5320428772029,11.4371345389823,5.86923076923077,420.221942462815,721,171576,0,1,0,0,9 +"19925",2017,13065,"GA","13","065",6658,0.703814959447281,414,0.126164013217182,6.02586597382531,6.70441435496411,7.55903825544338,5.60769230769231,822.499336694083,31,3769,0,1,0,0,9 +"19926",2017,13067,"GA","13","067",753361,0.642583037879582,48507,0.120383189466936,10.7894633964079,11.5794058494701,12.3880858214463,4.13846153846154,271.150954284035,1264,466161,0,1,0,0,9 +"19927",2017,13069,"GA","13","069",42871,0.69501527839332,3039,0.115159431783723,8.01928379291679,8.6301646700754,9.3922451752738,5.13076923076923,531.187751435379,136,25603,0,1,0,0,9 +"19928",2017,13071,"GA","13","071",45501,0.732906969077603,2856,0.115052416430408,7.95717732345947,8.66077391989376,9.46249888835892,4.53076923076923,566.880217433508,146,25755,0,1,0,0,9 +"19929",2017,13073,"GA","13","073",151757,0.757414814473138,8776,0.121114676752967,9.07977600195507,9.95242056364531,10.7361140268342,4.15384615384615,279.101961528586,250,89573,0,1,0,0,9 +"19930",2017,13075,"GA","13","075",17217,0.70232909333798,1049,0.119533019689841,6.9555926083963,7.66622192566273,8.53522955390234,4.57692307692308,649.417585815895,63,9701,0,1,0,0,9 +"19931",2017,13077,"GA","13","077",143218,0.782646036112779,8477,0.127309416414138,9.0451118926084,9.8501395170342,10.6842563405239,4.22307692307692,323.251795516791,275,85073,0,1,0,0,9 +"19932",2017,13079,"GA","13","079",12236,0.771412226217718,641,0.161490683229814,6.46302945692067,7.18462915271731,8.16848641712668,4.95384615384615,551.343900758098,40,7255,0,1,0,0,9 +"19933",2017,13081,"GA","13","081",22675,0.532348401323043,1370,0.138434399117971,7.22256601882217,7.86480400332846,8.81209910895734,5.23076923076923,602.93534311781,76,12605,0,1,0,0,9 +"19934",2017,13083,"GA","13","083",16270,0.96699446834665,1340,0.144683466502766,7.20042489294496,7.52779398772144,8.4690528160883,4.41538461538462,539.96823716252,51,9445,0,1,0,0,9 +"19935",2017,13085,"GA","13","085",24410,0.973207701761573,1336,0.14313805817288,7.19743535409659,7.93092537248339,8.86049916761602,3.9,513.808606294155,72,14013,0,1,0,0,9 +"19936",2017,13087,"GA","13","087",26727,0.551464810865417,1727,0.129606764694878,7.45414107814668,8.05420489706441,8.95544812234739,5.57692307692308,737.521401290662,112,15186,0,1,0,0,9 +"19937",2017,13089,"GA","13","089",751680,0.364115048957003,47684,0.116753139633887,10.7723511908379,11.5815929501915,12.4216113531843,4.81538461538462,318.099139836127,1497,470608,0,1,0,0,9 +"19938",2017,13091,"GA","13","091",20777,0.681619098041103,1255,0.134571882369928,7.13489085156588,7.87891291229713,8.66094715506093,6.31538461538462,534.375498484607,67,12538,0,1,0,0,9 +"19939",2017,13093,"GA","13","093",13694,0.488316050825179,764,0.153424857601869,6.63856778916652,7.51261754467451,8.15622332319462,5.08461538461538,440.58109073589,37,8398,0,1,0,0,9 +"19940",2017,13095,"GA","13","095",89537,0.275193495426472,6962,0.124239141360555,8.84822206837138,9.23395923757482,10.2268383642674,6.07692307692308,624.926305860158,318,50886,0,1,0,0,9 +"19941",2017,13097,"GA","13","097",143563,0.493330454225671,9464,0.117746215947006,9.15525040565822,9.89525374760902,10.7314715233183,4.93846153846154,373.004656766212,322,86326,0,1,0,0,9 +"19942",2017,13099,"GA","13","099",10313,0.472316493745758,605,0.131484534083196,6.40522845803084,7.04838640872188,7.98684490116138,5.47692307692308,831.375384059281,46,5533,0,1,0,0,9 +"19943",2017,13103,"GA","13","103",60121,0.836845694516059,3442,0.120839640059214,8.14380797677148,9.02665788954289,9.80167628638944,4.08461538461538,428.403427227418,153,35714,0,1,0,0,9 +"19944",2017,13105,"GA","13","105",19104,0.689436767169179,1029,0.144367671691792,6.93634273583405,7.62608275807238,8.60630236648801,5.29230769230769,788.510278794706,84,10653,0,1,0,0,9 +"19945",2017,13107,"GA","13","107",22528,0.632856889204545,1455,0.127574573863636,7.28276117960559,7.9098566672694,8.75194905805861,6.74615384615385,776.287932251235,99,12753,0,1,0,0,9 +"19946",2017,13109,"GA","13","109",10747,0.6599050897925,588,0.125709500325672,6.37672694789863,7.15539630189673,8.0166478770578,4.38461538461539,417.780748663102,25,5984,0,1,0,0,9 +"19947",2017,13111,"GA","13","111",25348,0.978538740729052,1096,0.177923307558782,6.99942246750796,7.7828072628397,8.84592123330402,4.82307692307692,568.904858148065,76,13359,0,1,0,0,9 +"19948",2017,13113,"GA","13","113",112626,0.695949425532293,6906,0.149574698559835,8.84014587794994,9.43946599496794,10.3991284699769,4.10769230769231,266.553105580266,169,63402,0,1,0,0,9 +"19949",2017,13115,"GA","13","115",97459,0.817831087944674,6596,0.125478406304189,8.79421868367949,9.37364898958821,10.2473963549452,5.25384615384615,511.227125747421,283,55357,0,1,0,0,9 +"19950",2017,13117,"GA","13","117",229367,0.811324209672708,11054,0.105712678807326,9.31054763239321,10.5165357738404,11.1108795049077,3.79230769230769,214.556608192436,284,132366,0,1,0,0,9 +"19951",2017,13119,"GA","13","119",22876,0.882059800664452,1481,0.138660605000874,7.3004728142678,7.81923445385907,8.77199043653224,4.81538461538462,607.051132383843,78,12849,0,1,0,0,9 +"19952",2017,13121,"GA","13","121",1039996,0.464571017580837,75083,0.112150431347813,11.226349447281,11.911761985788,12.7322616459189,4.87692307692308,316.119201325671,2087,660194,0,1,0,0,9 +"19953",2017,13123,"GA","13","123",30470,0.965900886117493,1539,0.157138168690515,7.33888813383888,8.10591119798651,9.00565049932022,5.07692307692308,612.134669627318,102,16663,0,1,0,0,9 +"19954",2017,13127,"GA","13","127",84836,0.699431844971474,4986,0.140258852373992,8.5143892640835,9.18173511496585,10.1401394538751,4.76153846153846,543.569158722194,260,47832,0,1,0,0,9 +"19955",2017,13129,"GA","13","129",57204,0.928431578211314,3466,0.123173204671002,8.15075647027555,8.91704256073877,9.73151228779632,4.66153846153846,510.371586330398,171,33505,0,1,0,0,9 +"19956",2017,13131,"GA","13","131",24762,0.676237783700832,1330,0.134237945238672,7.1929342212158,7.94555542825349,8.8627667422838,4.90769230769231,591.413551401869,81,13696,0,1,0,0,9 +"19957",2017,13133,"GA","13","133",17225,0.629201741654572,768,0.155123367198839,6.64378973314767,7.454719949364,8.41913925094085,5.2,489.861016176806,43,8778,0,1,0,0,9 +"19958",2017,13135,"GA","13","135",918681,0.566563366391598,59647,0.11377834090397,10.9961991328833,11.8064454635222,12.5627115888209,4.26923076923077,227.643442255642,1270,557890,0,1,0,0,9 +"19959",2017,13137,"GA","13","137",44687,0.917269004408441,2963,0.126233580235863,7.99395754757357,8.5816692106006,9.51465829807939,4.6,438.839250415118,111,25294,0,1,0,0,9 +"19960",2017,13139,"GA","13","139",198854,0.882778319772295,12915,0.114978828688384,9.46614470552994,10.1227435571231,10.9453354673674,3.93846153846154,346.781326351002,396,114193,0,1,0,0,9 +"19961",2017,13141,"GA","13","141",8545,0.26541837331773,543,0.155880631948508,6.29710931993394,6.86589107488344,7.64921631982063,7.13846153846154,790.895061728395,41,5184,0,1,0,0,9 +"19962",2017,13143,"GA","13","143",29286,0.934917708119921,1638,0.124189032302124,7.40123126441302,8.15737044118677,9.05392045270488,4.81538461538462,564.468211527035,95,16830,0,1,0,0,9 +"19963",2017,13145,"GA","13","145",33945,0.80777728678745,1859,0.152040064810723,7.52779398772144,8.28953948462414,9.19370273082316,4.19230769230769,383.024360349318,75,19581,0,1,0,0,9 +"19964",2017,13147,"GA","13","147",25708,0.788003734246149,1419,0.141745760074685,7.25770767716004,7.9391588179568,8.86953877719374,4.47692307692308,482.045549811373,69,14314,0,1,0,0,9 +"19965",2017,13149,"GA","13","149",11748,0.880064691862445,704,0.144790602655771,6.55677835615804,7.25205395185281,8.14380797677148,5.02307692307692,630.776001173537,43,6817,0,1,0,0,9 +"19966",2017,13151,"GA","13","151",225246,0.497860117382773,14817,0.118390559654777,9.60353044920874,10.3493585686125,11.17925529888,4.89230769230769,359.408971912854,486,135222,0,1,0,0,9 +"19967",2017,13153,"GA","13","153",152757,0.630485018689815,9940,0.121545984799387,9.20432229965062,9.90003158756274,10.7601981169614,4.78461538461538,409.123229229339,374,91415,0,1,0,0,9 +"19968",2017,13155,"GA","13","155",9362,0.70166631061739,601,0.121768852809229,6.39859493453521,7.09920174355309,7.81520706218909,7.04615384615385,539.471318108254,30,5561,0,1,0,0,9 +"19969",2017,13157,"GA","13","157",67681,0.897297616760982,3573,0.119176726112203,8.18116085802341,9.14056147736827,9.88593439328854,3.70769230769231,422.329724333871,165,39069,0,1,0,0,9 +"19970",2017,13159,"GA","13","159",13881,0.780851523665442,742,0.147323679850155,6.60934924316738,7.37148929521428,8.3039999709552,4.33846153846154,513.334168023037,41,7987,0,1,0,0,9 +"19971",2017,13161,"GA","13","161",15033,0.825716756469101,848,0.122330872081421,6.7428806357919,7.5109777520141,8.33926198292358,6.07692307692308,712.904784920251,59,8276,0,1,0,0,9 +"19972",2017,13163,"GA","13","163",15638,0.454981455429083,955,0.135759048471672,6.86171134048073,7.4713630881871,8.40760151478614,6.21538461538462,748.469040598775,66,8818,0,1,0,0,9 +"19973",2017,13165,"GA","13","165",8844,0.545680687471732,653,0.129466304839439,6.48157712927643,7.01660968389422,7.74543561027438,6.8,529.901589704769,28,5284,0,1,0,0,9 +"19974",2017,13167,"GA","13","167",9750,0.644,578,0.139076923076923,6.35957386867238,7.17625453201714,7.7336835707759,5.11538461538462,501.420691960555,30,5983,0,1,0,0,9 +"19975",2017,13169,"GA","13","169",28459,0.733968164728205,1596,0.136055377912084,7.37525577800975,8.1758290087146,9.03049574505712,4.37692307692308,497.420781134856,81,16284,0,1,0,0,9 +"19976",2017,13171,"GA","13","171",18582,0.680335808847272,1445,0.129587773113766,7.27586460054653,7.6226639513236,8.60373779281642,5.63846153846154,577.323490441037,61,10566,0,1,0,0,9 +"19977",2017,13173,"GA","13","173",10456,0.747609028309105,626,0.124330527926549,6.4393503711001,7.22256601882217,8.03300949859667,5.15384615384615,461.783439490446,29,6280,0,1,0,0,9 +"19978",2017,13175,"GA","13","175",47362,0.606752248638149,2774,0.128900806553777,7.92804560087478,8.64259160081057,9.54043517305957,5.91538461538462,627.765382142722,166,26443,0,1,0,0,9 +"19979",2017,13177,"GA","13","177",29429,0.753270583438105,1575,0.122532196133066,7.36201055125973,8.37008432637803,9.0693526786752,4.2,414.197779439682,72,17383,0,1,0,0,9 +"19980",2017,13179,"GA","13","179",61819,0.492162603730245,7126,0.092884064769731,8.87150534616578,8.81165224814704,9.81246815414896,5.19230769230769,379.716155441252,141,37133,0,1,0,0,9 +"19981",2017,13181,"GA","13","181",7859,0.685837892861687,419,0.16668787377529,6.03787091992214,6.63463335786169,7.69893619981345,5.27692307692308,775.193798449612,34,4386,0,1,0,0,9 +"19982",2017,13183,"GA","13","183",18822,0.679364573371586,1173,0.109871427053448,7.06731984865348,7.89133075766189,8.63444275146648,4.87692307692308,294.168541270116,34,11558,0,1,0,0,9 +"19983",2017,13185,"GA","13","185",115495,0.59159270964111,14595,0.100272739079614,9.58843428328822,9.46544759849579,10.4623602072736,4.68461538461538,377.188782985884,260,68931,0,1,0,0,9 +"19984",2017,13187,"GA","13","187",32812,0.960776545166403,4155,0.133792514933561,8.33206770728955,8.1146238864201,9.17118365677499,4.2,460.92495727381,89,19309,0,1,0,0,9 +"19985",2017,13189,"GA","13","189",21517,0.56295022540317,1194,0.137240321606172,7.08506429395255,7.75190533307861,8.74560285240295,6.3,659.117796180497,78,11834,0,1,0,0,9 +"19986",2017,13191,"GA","13","191",14092,0.64142776043145,704,0.173786545557763,6.55677835615804,7.21817683840341,8.30127348519135,5.09230769230769,519.579267519959,41,7891,0,1,0,0,9 +"19987",2017,13193,"GA","13","193",13255,0.365220671444738,936,0.14703885326292,6.84161547647759,7.38461038317697,8.13739583005665,6.99230769230769,633.21967851924,52,8212,0,1,0,0,9 +"19988",2017,13195,"GA","13","195",29253,0.880593443407514,1709,0.13991727344204,7.44366368311559,8.17919979842309,9.06681636189014,4.30769230769231,416.349029496276,71,17053,0,1,0,0,9 +"19989",2017,13197,"GA","13","197",8438,0.65133917990045,473,0.157857312159279,6.15909538849193,6.7719355558396,7.77779262633883,6.06153846153846,645.564348188255,31,4802,0,1,0,0,9 +"19990",2017,13199,"GA","13","199",21011,0.586121555375756,1210,0.150254628527914,7.09837563859079,7.72179177681754,8.71243097347674,5.95384615384615,594.025797691785,70,11784,0,1,0,0,9 +"19991",2017,13201,"GA","13","201",5816,0.702372764786795,315,0.12757909215956,5.75257263882563,6.4085287910595,7.38336814699238,4.47692307692308,989.151244416082,31,3134,0,1,0,0,9 +"19992",2017,13205,"GA","13","205",22313,0.498857168466813,1387,0.132568457849684,7.23489842031483,7.96032362914884,8.69064216970659,6.3,651.440833844267,85,13048,0,1,0,0,9 +"19993",2017,13207,"GA","13","207",27153,0.748978013479174,1666,0.154273929215925,7.41818082272679,8.06495089174914,8.98444303246535,4.50769230769231,438.129811604181,70,15977,0,1,0,0,9 +"19994",2017,13209,"GA","13","209",9032,0.722874224977856,738,0.132860938883968,6.60394382460047,6.96790920180188,7.82043951526218,6.63846153846154,393.479482855537,21,5337,0,1,0,0,9 +"19995",2017,13211,"GA","13","211",18374,0.752367475780995,974,0.145531729617938,6.88141130364254,7.62657020629066,8.57734711423598,4.52307692307692,596.110622495847,61,10233,0,1,0,0,9 +"19996",2017,13213,"GA","13","213",39761,0.965393224516486,2395,0.124292648575237,7.78113850984502,8.51719319141624,9.36631795343053,6.21538461538462,519.31330472103,121,23300,0,1,0,0,9 +"19997",2017,13215,"GA","13","215",193858,0.469111411445491,14359,0.117116652395052,9.57213220229438,10.0936119213931,10.9774826424368,5.96923076923077,554.942812231322,639,115147,0,1,0,0,9 +"19998",2017,13217,"GA","13","217",107903,0.51648239622624,6990,0.114445381500051,8.85223583522786,9.55279468027494,10.4167003247946,5.37692307692308,476.038338658147,298,62600,0,1,0,0,9 +"19999",2017,13219,"GA","13","219",38122,0.896044278894077,2024,0.127878915062169,7.61283103040736,8.55583681500844,9.30173380040539,3.56923076923077,302.300316470644,64,21171,0,1,0,0,9 +"20000",2017,13221,"GA","13","221",14851,0.808699750858528,823,0.144434718200795,6.71295620067707,7.44658509915773,8.37930948405285,4.36153846153846,424.11737734984,37,8724,0,1,0,0,9 +"20001",2017,13223,"GA","13","223",159642,0.77393167211636,9554,0.111775096779043,9.16471519394991,10.0418572218009,10.8100309329554,4.16923076923077,340.139570948566,329,96725,0,1,0,0,9 +"20002",2017,13225,"GA","13","225",27179,0.531182162699143,2375,0.137826998785827,7.77275271646874,7.98002359231065,8.99974278983049,5.91538461538462,526.683165175455,83,15759,0,1,0,0,9 +"20003",2017,13227,"GA","13","227",31542,0.971688542261112,1629,0.152399974636992,7.39572160860205,8.16763571524637,9.10919318997123,4.30769230769231,658.93219193512,117,17756,0,1,0,0,9 +"20004",2017,13229,"GA","13","229",19200,0.89234375,1016,0.12328125,6.92362862813843,7.80832305039106,8.59025776227324,4.55384615384615,494.402985074627,53,10720,0,1,0,0,9 +"20005",2017,13231,"GA","13","231",18213,0.890243232855653,1071,0.133036841816285,6.97634807044775,7.74889133725553,8.59840444684106,4.5,403.755868544601,43,10650,0,1,0,0,9 +"20006",2017,13233,"GA","13","233",41842,0.845394579609005,2495,0.123583958701783,7.82204400818562,8.52337405049132,9.38109529239867,5.26923076923077,646.00025168841,154,23839,0,1,0,0,9 +"20007",2017,13235,"GA","13","235",11197,0.655622041618291,651,0.136822363132982,6.47850964220857,7.1785454837637,8.26975694753298,5.30769230769231,444.376340790683,29,6526,0,1,0,0,9 +"20008",2017,13237,"GA","13","237",21676,0.71272374976933,1003,0.157593651965307,6.91075078796194,7.65964295456468,8.71259548774872,5.82307692307692,524.9343832021,62,11811,0,1,0,0,9 +"20009",2017,13241,"GA","13","241",16560,0.960326086956522,843,0.157427536231884,6.73696695800186,7.43543801981455,8.41049845274527,4.96153846153846,458.766924023722,41,8937,0,1,0,0,9 +"20010",2017,13243,"GA","13","243",6974,0.369945511901348,417,0.152136507026097,6.0330862217988,6.51471269087253,7.59337419312129,6.52307692307692,933.084510797121,35,3751,0,1,0,0,9 +"20011",2017,13245,"GA","13","245",201965,0.38970613720199,16806,0.125838635407125,9.72949124448816,10.0479774310211,11.0435296509674,6.00769230769231,563.925249032683,685,121470,0,1,0,0,9 +"20012",2017,13247,"GA","13","247",89800,0.405244988864143,5783,0.135089086859688,8.66267785815822,9.28804187964004,10.2421716269539,5.33076923076923,394.260477282635,208,52757,0,1,0,0,9 +"20013",2017,13251,"GA","13","251",13953,0.568838242671827,833,0.152798681287178,6.72503364216684,7.35436233042148,8.32869258354557,6.31538461538462,664.288350350597,54,8129,0,1,0,0,9 +"20014",2017,13253,"GA","13","253",8249,0.646381379561159,456,0.152018426475936,6.12249280951439,6.78219205600679,7.7510451179718,6.46923076923077,854.124522364576,38,4449,0,1,0,0,9 +"20015",2017,13255,"GA","13","255",65348,0.631021607394258,3884,0.127685621595152,8.26462082941122,8.96712165623092,9.86104966983816,5.85384615384615,680.143585868128,252,37051,0,1,0,0,9 +"20016",2017,13257,"GA","13","257",25785,0.86115958890828,1761,0.137560597246461,7.47363710849621,7.92660259918138,8.91677435636543,5.27692307692308,627.790178571429,90,14336,0,1,0,0,9 +"20017",2017,13261,"GA","13","261",29838,0.440076412628192,2943,0.122159662175749,7.98718474823347,8.05642676752298,9.09649955555242,6.83846153846154,665.488810365135,113,16980,0,1,0,0,9 +"20018",2017,13263,"GA","13","263",6254,0.425327790214263,291,0.193476175247841,5.67332326717149,6.41345895716736,7.54115245513631,6.19230769230769,555.864369093941,20,3598,0,1,0,0,9 +"20019",2017,13267,"GA","13","267",25420,0.682258064516129,1835,0.119669551534225,7.51479976048867,8.17919979842309,8.71407489954152,4.96923076923077,518.037698165023,83,16022,0,1,0,0,9 +"20020",2017,13269,"GA","13","269",8181,0.595281750397262,484,0.154626573768488,6.18208490671663,6.8330317327862,7.78821155784708,8.75384615384615,696.937697993664,33,4735,0,1,0,0,9 +"20021",2017,13271,"GA","13","271",15912,0.611362493715435,923,0.132667169431875,6.82762923450285,7.8087293067444,8.17329343896623,7.89230769230769,480.72206416168,49,10193,0,1,0,0,9 +"20022",2017,13273,"GA","13","273",8698,0.38192687974247,529,0.144286042768453,6.2709884318583,6.77422388635761,7.82124208352356,6.02307692307692,677.757239679606,33,4869,0,1,0,0,9 +"20023",2017,13275,"GA","13","275",44623,0.611926584944984,2501,0.135781995831746,7.82444593087762,8.55217416031148,9.48478521764594,5.84615384615385,512.368905612041,128,24982,0,1,0,0,9 +"20024",2017,13277,"GA","13","277",40455,0.667235199604499,2944,0.12035595105673,7.98752447984877,8.50532301884575,9.37347910935336,4.69230769230769,507.020280811232,117,23076,0,1,0,0,9 +"20025",2017,13279,"GA","13","279",26868,0.713339288372785,1578,0.122413279737978,7.36391350140582,8.06683531441734,8.95001402953426,6.6,656.381107051022,97,14778,0,1,0,0,9 +"20026",2017,13281,"GA","13","281",11557,0.97308990222376,783,0.145452972224626,6.6631326959908,6.71659477352098,7.9124231214737,6.62307692307692,775.047258979206,41,5290,0,1,0,0,9 +"20027",2017,13283,"GA","13","283",6751,0.665975411050215,436,0.127832913642423,6.07764224334903,6.69332366826995,7.47816969415979,6.76153846153846,604.467805519054,23,3805,0,1,0,0,9 +"20028",2017,13285,"GA","13","285",70123,0.600644581663648,4996,0.123953624345792,8.51639287124547,9.04735074348172,9.96109586515644,4.43076923076923,548.148148148148,222,40500,0,1,0,0,9 +"20029",2017,13287,"GA","13","287",7902,0.576689445709947,533,0.11921032649962,6.27852142416584,6.74051935960622,7.66199755890189,5.64615384615385,767.620376831821,33,4299,0,1,0,0,9 +"20030",2017,13289,"GA","13","289",8268,0.56736816642477,411,0.172835026608612,6.01859321449623,6.72503364216684,7.77359446736019,7.6,769.066438795129,36,4681,0,1,0,0,9 +"20031",2017,13291,"GA","13","291",23406,0.977398957532257,999,0.167905665214048,6.90675477864855,7.5999019592085,8.69918135930895,4.55384615384615,576.989321391664,67,11612,0,1,0,0,9 +"20032",2017,13293,"GA","13","293",26223,0.694657361857911,1583,0.142699157228387,7.36707705988101,8.01002752848173,8.96200720958831,5.50769230769231,575.289317011171,86,14949,0,1,0,0,9 +"20033",2017,13295,"GA","13","295",69087,0.939655796314791,3850,0.138332826725723,8.25582842728183,9.07988994259212,9.90218670680308,4.55384615384615,567.408079891058,225,39654,0,1,0,0,9 +"20034",2017,13297,"GA","13","297",91389,0.794603289236123,5447,0.12330805676832,8.60282027738367,9.34399675678886,10.206292200258,4.36153846153846,418.139658645988,220,52614,0,1,0,0,9 +"20035",2017,13299,"GA","13","299",35705,0.669682117350511,2216,0.128077300098025,7.70345904786717,8.32796785830549,9.18952523226226,4.57692307692308,524.71557473519,107,20392,0,1,0,0,9 +"20036",2017,13301,"GA","13","301",5263,0.392361770853126,292,0.162264867946038,5.67675380226828,6.29526600143965,7.33236920592906,5.87692307692308,641.675109760216,19,2961,0,1,0,0,9 +"20037",2017,13303,"GA","13","303",20313,0.447496677004874,1354,0.142174961847093,7.21081845347222,7.76387128782022,8.63550941823428,5.93846153846154,510.631173614599,61,11946,0,1,0,0,9 +"20038",2017,13305,"GA","13","305",29843,0.776832087926817,1640,0.12522199510773,7.40245152081824,8.23615566168312,9.01456876745782,5.74615384615385,582.207731718677,100,17176,0,1,0,0,9 +"20039",2017,13309,"GA","13","309",7958,0.607313395325459,627,0.111083186730334,6.44094654063292,7.09257371597468,7.30114780585603,9,263.752825923135,14,5308,0,1,0,0,9 +"20040",2017,13311,"GA","13","311",29429,0.963165584967209,1765,0.145706615923069,7.4759059693674,8.04846874366888,9.00650913169435,3.87692307692308,482.673267326733,78,16160,0,1,0,0,9 +"20041",2017,13313,"GA","13","313",104086,0.919220644467075,6910,0.112916242338067,8.84072491676172,9.48364457648201,10.297655756902,5.5,408.102075490555,245,60034,0,1,0,0,9 +"20042",2017,13315,"GA","13","315",8780,0.632687927107061,585,0.120728929384966,6.37161184723186,7.09589322109753,7.51043055637801,5.84615384615385,427.588771147053,23,5379,0,1,0,0,9 +"20043",2017,13317,"GA","13","317",9868,0.554418321848399,555,0.147750304012971,6.31896811374643,6.9177056098353,7.91205688817901,5.69230769230769,652.619802349431,35,5363,0,1,0,0,9 +"20044",2017,13319,"GA","13","319",8953,0.597118284373953,487,0.151792695185971,6.18826412308259,6.8627579130514,7.85282781228174,5.68461538461538,776.119402985075,39,5025,0,1,0,0,9 +"20045",2017,13321,"GA","13","321",20532,0.697204363919735,1139,0.145285408143386,7.03790596344718,7.69893619981345,8.68845380085077,4.90769230769231,610.752688172043,71,11625,0,1,0,0,9 +"20046",2017,15001,"HI","15","001",200400,0.359955089820359,10332,0.154276447105788,9.24300115421573,10.0626257738744,10.9497182355225,2.57692307692308,416.262708020173,468,112429,1,1,1,0,9 +"20047",2017,15003,"HI","15","003",986973,0.207230592934153,71274,0.119036690973309,11.1742868835176,11.731418218069,12.551047914405,2.12307692307692,280.440868037749,1646,586933,1,1,1,0,9 +"20048",2017,15007,"HI","15","007",71838,0.356788886104847,3546,0.145842033464183,8.17357548663415,9.09054280852059,9.92363325822908,2.16923076923077,330.073349633252,135,40900,1,1,1,0,9 +"20049",2017,15009,"HI","15","009",166465,0.354038386447602,8403,0.144631003514252,9.03634406392822,9.99574763096143,10.7982481658599,2.33846153846154,311.054721073957,304,97732,1,1,1,0,9 +"20050",2017,19005,"IA","19","005",13812,0.965392412395019,713,0.15696495800753,6.5694814204143,7.22475340576797,8.16080392095467,3.93076923076923,410.677618069815,30,7305,1,1,1,0,9 +"20051",2017,19007,"IA","19","007",12367,0.977035659416188,593,0.154200695399046,6.38519439899773,7.17472430983638,8.10016144693661,3.72307692307692,452.147701582517,30,6635,1,1,1,0,9 +"20052",2017,19011,"IA","19","011",25651,0.981365248918171,1333,0.148454251296246,7.19518732017871,8.01928379291679,8.86629956585502,3.23076923076923,332.294911734164,48,14445,1,1,1,0,9 +"20053",2017,19013,"IA","19","013",132278,0.860037194393626,15319,0.123663798968838,9.6368491670127,9.59573881793403,10.5713682058482,3.67692307692308,326.297804555323,254,77843,1,1,1,0,9 +"20054",2017,19015,"IA","19","015",26498,0.97350743452336,1404,0.156540116235188,7.24708058458576,8.09285102753838,8.94115288216057,2.40769230769231,304.14806186501,47,15453,1,1,1,0,9 +"20055",2017,19017,"IA","19","017",24861,0.970757411206307,1923,0.126181569526568,7.56164174558878,7.98582466641892,8.81373589230022,2.75384615384615,214.51290775945,29,13519,1,1,1,0,9 +"20056",2017,19019,"IA","19","019",21133,0.981450811526996,1038,0.136800264988407,6.94505106372583,7.83439230291044,8.63923381732526,3.13076923076923,385.255231590929,44,11421,1,1,1,0,9 +"20057",2017,19021,"IA","19","021",20154,0.838047037808872,1625,0.129800535873772,7.39326309476384,7.70300768247924,8.59304250369967,2.57692307692308,170.480035890534,19,11145,1,1,1,0,9 +"20058",2017,19023,"IA","19","023",14593,0.983485232645789,698,0.145001027890084,6.54821910276237,7.43425738213314,8.25244609024695,3.52307692307692,424.328147100424,33,7777,1,1,1,0,9 +"20059",2017,19025,"IA","19","025",9730,0.968242548818088,550,0.154470709146968,6.30991827822652,6.94697599213542,7.79193595693806,3,284.792101765711,15,5267,1,1,1,0,9 +"20060",2017,19027,"IA","19","027",20256,0.975069115323855,1149,0.148005529225908,7.04664727784876,7.68937110752969,8.58951385299586,2.26153846153846,338.672768878719,37,10925,1,1,1,0,9 +"20061",2017,19029,"IA","19","029",13155,0.980539718738122,659,0.152717597871532,6.49072353450251,7.28824440102012,8.14467918344776,3.53076923076923,430.601406631262,30,6967,1,1,1,0,9 +"20062",2017,19031,"IA","19","031",18488,0.980852444829078,911,0.154262224145392,6.81454289725996,7.72841577984104,8.53993267838573,2.84615384615385,220.074634006315,23,10451,1,1,1,0,9 +"20063",2017,19033,"IA","19","033",43030,0.958819428305833,2429,0.15619335347432,7.79523492900217,8.4448375292241,9.39557435021717,3,443.811756824652,106,23884,1,1,1,0,9 +"20064",2017,19035,"IA","19","035",11315,0.973044631020769,523,0.166416261599646,6.25958146406492,7.0184017990692,7.97831096986772,2.46153846153846,414.868901427149,25,6026,1,1,1,0,9 +"20065",2017,19039,"IA","19","039",9395,0.966577967003725,489,0.1401809473124,6.19236248947487,6.96034772910131,7.8164169836918,3.06153846153846,607.009986293323,31,5107,1,1,1,0,9 +"20066",2017,19041,"IA","19","041",16151,0.975790972695189,803,0.152064887623057,6.68835471394676,7.54802896993501,8.39185670010494,3.66923076923077,370.41194297901,33,8909,1,1,1,0,9 +"20067",2017,19043,"IA","19","043",17647,0.982829942766476,852,0.171360571201904,6.74758652682932,7.47363710849621,8.43923164994653,3.89230769230769,380.912072796529,36,9451,1,1,1,0,9 +"20068",2017,19045,"IA","19","045",46926,0.946937731747858,2605,0.149320206282232,7.86518795418747,8.56274000637221,9.48653167771247,3.99230769230769,414.110429447853,108,26080,1,1,1,0,9 +"20069",2017,19047,"IA","19","047",17065,0.921828303545268,1095,0.131673014942866,6.9985096422506,7.57044325205737,8.38434727808281,4.01538461538462,366.260907034364,34,9283,1,1,1,0,9 +"20070",2017,19049,"IA","19","049",87219,0.919788119561105,4385,0.100287781332049,8.38594490480628,9.52595370935665,10.1469434051622,2.11538461538462,205.399640550629,104,50633,1,1,1,0,9 +"20071",2017,19053,"IA","19","053",7956,0.963926596279537,938,0.128582202111614,6.84374994900622,6.57646956904822,7.6377164326648,2.60769230769231,471.253534401508,20,4244,1,1,1,0,9 +"20072",2017,19055,"IA","19","055",17139,0.983312912071883,945,0.160394422078301,6.85118492749374,7.51914995766982,8.44095988541665,2.62307692307692,316.288877174486,30,9485,1,1,1,0,9 +"20073",2017,19057,"IA","19","057",39400,0.911573604060914,2127,0.142994923857868,7.66246781520024,8.40938523878193,9.30228124567454,4.15384615384615,409.930450002303,89,21711,1,1,1,0,9 +"20074",2017,19059,"IA","19","059",17167,0.98042756451331,803,0.166715209413409,6.68835471394676,7.5005294853953,8.42002127966396,3.64615384615385,370.209059233449,34,9184,1,1,1,0,9 +"20075",2017,19061,"IA","19","061",97162,0.934696692122435,6841,0.136339309606636,8.830689198761,9.26738211234338,10.212184752203,2.94615384615385,284.759870762828,156,54783,1,1,1,0,9 +"20076",2017,19063,"IA","19","063",9428,0.954391175222741,526,0.154327535002121,6.26530121273771,6.96413561241824,7.81762544305337,3.13076923076923,346.153846153846,18,5200,1,1,1,0,9 +"20077",2017,19065,"IA","19","065",19680,0.967682926829268,1264,0.155335365853659,7.1420365747068,7.59488438721652,8.5571828396324,3.57692307692308,285.057471264368,31,10875,1,1,1,0,9 +"20078",2017,19067,"IA","19","067",15778,0.950373938395234,902,0.141336037520598,6.80461452006262,7.40913644392013,8.34426735626264,3.16923076923077,453.082150947896,38,8387,1,1,1,0,9 +"20079",2017,19069,"IA","19","069",10150,0.972315270935961,556,0.159211822660099,6.32076829425058,7.00940893270864,7.9043348420851,2.70769230769231,379.335260115607,21,5536,1,1,1,0,9 +"20080",2017,19071,"IA","19","071",6927,0.979644867908185,341,0.161974880900823,5.83188247728352,6.64378973314767,7.51207124583547,2.57692307692308,617.44966442953,23,3725,1,1,1,0,9 +"20081",2017,19073,"IA","19","073",8959,0.979685232726867,447,0.15124455854448,6.10255859461357,6.84800527457636,7.76004068088038,2.68461538461538,274.435296601224,13,4737,1,1,1,0,9 +"20082",2017,19075,"IA","19","075",12296,0.985930383864671,611,0.143867924528302,6.4150969591716,7.26332961747684,8.09468364869882,2.86923076923077,418.410041841004,28,6692,1,1,1,0,9 +"20083",2017,19077,"IA","19","077",10652,0.982820127675554,520,0.154524971836275,6.25382881157547,7.05358572719368,7.93808872689695,3.16923076923077,369.458128078818,21,5684,1,1,1,0,9 +"20084",2017,19079,"IA","19","079",15034,0.955700412398563,785,0.149926832512971,6.66568371778241,7.45645455517621,8.29978317194979,3.18461538461538,397.734120766542,33,8297,1,1,1,0,9 +"20085",2017,19081,"IA","19","081",10762,0.978256829585579,542,0.161401226537818,6.29526600143965,7.08086789669078,7.96311205897929,2.55384615384615,292.598967297762,17,5810,1,1,1,0,9 +"20086",2017,19083,"IA","19","083",17076,0.966268446943078,1023,0.158877957367065,6.93049476595163,7.52240023138712,8.43402895015547,3.14615384615385,359.940715646835,34,9446,1,1,1,0,9 +"20087",2017,19085,"IA","19","085",14116,0.98540663077359,734,0.154788892037404,6.59850902861452,7.35564110297425,8.25166392360559,2.69230769230769,396.014307613694,31,7828,1,1,1,0,9 +"20088",2017,19087,"IA","19","087",20056,0.934732748304747,1461,0.132877941763063,7.2868764117507,7.74066440191724,8.57338447106598,2.93076923076923,391.668150258145,44,11234,1,1,1,0,9 +"20089",2017,19091,"IA","19","091",9568,0.980142140468227,474,0.154682274247492,6.16120732169508,6.92755790627832,7.8407064517494,2.99230769230769,449.394294646346,23,5118,1,1,1,0,9 +"20090",2017,19095,"IA","19","095",16139,0.982836606976888,847,0.156949005514592,6.74170069465205,7.5137092478397,8.40088406901585,2.56923076923077,266.429840142096,24,9008,1,1,1,0,9 +"20091",2017,19097,"IA","19","097",19377,0.972441554420189,970,0.157196676472106,6.87729607149743,7.62168499872461,8.55737498104907,3.32307692307692,461.26329662054,49,10623,1,1,1,0,9 +"20092",2017,19099,"IA","19","099",36997,0.962213152417764,1936,0.14176825147985,7.56837926783652,8.4096079807363,9.17988116449147,3.1,459.572023553066,96,20889,1,1,1,0,9 +"20093",2017,19101,"IA","19","101",18108,0.847967749061188,1844,0.151590457256461,7.51969240411654,7.54168309988211,8.42332197580617,3.01538461538462,327.75267959961,37,11289,1,1,1,0,9 +"20094",2017,19103,"IA","19","103",149703,0.845086604810859,23345,0.0990160517825294,10.058138107405,9.78199765494842,10.7528475709275,2.43846153846154,149.053510210165,140,93926,1,1,1,0,9 +"20095",2017,19105,"IA","19","105",20610,0.960795730228045,1119,0.1463852498787,7.02019070831193,7.8046592970561,8.58876938990546,3.59230769230769,207.972270363951,24,11540,1,1,1,0,9 +"20096",2017,19107,"IA","19","107",10144,0.985508675078864,485,0.158714511041009,6.18414889093748,6.99025650049388,7.88382321489215,3.53076923076923,475.146198830409,26,5472,1,1,1,0,9 +"20097",2017,19109,"IA","19","109",14935,0.974489454301975,811,0.162838968865082,6.69826805411541,7.2868764117507,8.24905227417129,2.33846153846154,353.356890459364,28,7924,1,1,1,0,9 +"20098",2017,19111,"IA","19","111",34239,0.949969333216507,1902,0.152837407634569,7.55066124310534,8.25919936266628,9.14013247693269,5.33846153846154,542.810323637853,106,19528,1,1,1,0,9 +"20099",2017,19113,"IA","19","113",224553,0.90021064069507,14732,0.126896545581667,9.59777727756496,10.2599374711586,11.0943599196295,3.29230769230769,290.919060529442,382,131308,1,1,1,0,9 +"20100",2017,19115,"IA","19","115",11203,0.936891903954298,659,0.146835669017228,6.49072353450251,7.23201033166476,8.0381891799732,3.20769230769231,438.047559449312,28,6392,1,1,1,0,9 +"20101",2017,19117,"IA","19","117",8537,0.986529225723322,484,0.155323884268478,6.18208490671663,6.76041469108343,7.71244383427499,2.76153846153846,630.983463881636,29,4596,1,1,1,0,9 +"20102",2017,19119,"IA","19","119",11791,0.982953099821898,601,0.128063777457383,6.39859493453521,7.29165620917446,7.98989937494294,1.72307692307692,311.679790026247,19,6096,1,1,1,0,9 +"20103",2017,19121,"IA","19","121",16005,0.978131833801937,767,0.137644486098094,6.64248680136726,7.63626960337937,8.4069317971587,3.54615384615385,290.66517607602,26,8945,1,1,1,0,9 +"20104",2017,19123,"IA","19","123",22422,0.954598162518955,1514,0.137900276514138,7.32251043399739,7.86288203464149,8.70516541971901,3.14615384615385,359.477124183007,44,12240,1,1,1,0,9 +"20105",2017,19125,"IA","19","125",33107,0.970368804180385,2395,0.134775123085752,7.78113850984502,8.25062008217469,9.10731047165664,2.6,289.332896604433,53,18318,1,1,1,0,9 +"20106",2017,19127,"IA","19","127",40051,0.923073081820679,2457,0.134728221517565,7.80669637252118,8.38068594676157,9.26359673827661,4.48461538461538,324.705021494558,71,21866,1,1,1,0,9 +"20107",2017,19129,"IA","19","129",15060,0.977091633466135,752,0.154116865869854,6.62273632394984,7.50714107972761,8.33854487998858,2.71538461538462,459.959900931714,39,8479,1,1,1,0,9 +"20108",2017,19133,"IA","19","133",8721,0.972365554408898,464,0.156174750601995,6.13988455222626,6.75809450442773,7.7106533235012,3.56923076923077,594.582691037216,27,4541,1,1,1,0,9 +"20109",2017,19135,"IA","19","135",7782,0.974685170907222,402,0.145463891030583,5.99645208861902,6.79570577517351,7.64778604544093,3.74615384615385,422.039859320047,18,4265,1,1,1,0,9 +"20110",2017,19137,"IA","19","137",10119,0.979839905128965,542,0.154857199327997,6.29526600143965,6.95939851213398,7.90654723236804,3.1,567.557671182717,31,5462,1,1,1,0,9 +"20111",2017,19139,"IA","19","139",42825,0.946713368359603,2558,0.134827787507297,7.84698098213879,8.5356223268846,9.38614071177987,3.21538461538462,381.189144396105,92,24135,1,1,1,0,9 +"20112",2017,19141,"IA","19","141",13777,0.973143645205778,780,0.152790883356318,6.65929391968364,7.31055015853442,8.18060094759445,2.38461538461538,228.925397252895,17,7426,1,1,1,0,9 +"20113",2017,19145,"IA","19","145",15253,0.948075788369501,848,0.152429030354684,6.7428806357919,7.56268124672188,8.26642147298455,3.83076923076923,312.8983659752,27,8629,1,1,1,0,9 +"20114",2017,19147,"IA","19","147",9045,0.963736871199558,545,0.145273631840796,6.30078579466324,6.85329909318608,7.75747876658418,2.63846153846154,517.170045510964,25,4834,1,1,1,0,9 +"20115",2017,19149,"IA","19","149",25053,0.968506765656808,1397,0.143655450445056,7.24208235925696,7.9885429827377,8.81848226727424,2.34615384615385,379.756079748777,52,13693,1,1,1,0,9 +"20116",2017,19151,"IA","19","151",6830,0.968814055636896,331,0.165446559297218,5.80211837537706,6.47389069635227,7.4667994750186,2.39230769230769,445.062586926287,16,3595,1,1,1,0,9 +"20117",2017,19153,"IA","19","153",480962,0.863766784070259,30381,0.117757743855024,10.3215726920004,11.0821887016589,11.8827012173364,3.02307692307692,331.068432364973,955,288460,1,1,1,0,9 +"20118",2017,19155,"IA","19","155",93563,0.956863289975738,5427,0.142310528734649,8.5991417740634,9.32411538623503,10.1944392738555,2.74615384615385,462.814288682774,245,52937,1,1,1,0,9 +"20119",2017,19157,"IA","19","157",18359,0.952775205621221,1734,0.142436951903698,7.45818615734049,7.49720722320332,8.53738789870176,3.09230769230769,347.463516330785,35,10073,1,1,1,0,9 +"20120",2017,19161,"IA","19","161",9797,0.984893334694294,489,0.163315300602225,6.19236248947487,6.8596149036542,7.83913164827433,2.77692307692308,500,26,5200,1,1,1,0,9 +"20121",2017,19163,"IA","19","163",172691,0.871892571124147,10137,0.13320902652715,9.2239473753824,10.0050960381242,10.8294711563812,3.59230769230769,381.312676394644,381,99918,1,1,1,0,9 +"20122",2017,19165,"IA","19","165",11584,0.975915055248619,590,0.15832182320442,6.38012253689976,7.03174125876313,8.02910705461974,2.34615384615385,356.853203568532,22,6165,1,1,1,0,9 +"20123",2017,19167,"IA","19","167",34784,0.973579806807728,3130,0.11810027598896,8.0487882835342,8.2451219664786,9.10242102975669,1.96923076923077,167.522291272629,31,18505,1,1,1,0,9 +"20124",2017,19169,"IA","19","169",97335,0.877320593825448,21607,0.0944778342836595,9.98077261524567,9.1345386585599,10.2451605275565,1.96153846153846,157.457068346209,96,60969,1,1,1,0,9 +"20125",2017,19171,"IA","19","171",17040,0.886737089201878,946,0.149647887323944,6.85224256905188,7.48324441607385,8.42507790250843,3.41538461538462,508.823210999242,47,9237,1,1,1,0,9 +"20126",2017,19175,"IA","19","175",12472,0.969531751122514,755,0.139031430404105,6.62671774924902,7.2283884515736,8.13622555490846,3.05384615384615,503.256364712848,34,6756,1,1,1,0,9 +"20127",2017,19179,"IA","19","179",35043,0.9281739577091,2252,0.142738920754502,7.71957398925958,8.32675881451173,9.19948162864131,4.45384615384615,481.819988078681,97,20132,1,1,1,0,9 +"20128",2017,19181,"IA","19","181",50087,0.975203146525046,3222,0.129195200351389,8.07775756373692,8.75368722709858,9.57553888685579,2.7,326.694066814206,93,28467,1,1,1,0,9 +"20129",2017,19183,"IA","19","183",22236,0.973241590214067,1209,0.137749595250944,7.09754885061479,7.81439963380449,8.70251025718999,2.89230769230769,357.766869123887,43,12019,1,1,1,0,9 +"20130",2017,19187,"IA","19","187",36650,0.92324693042292,2906,0.143819918144611,7.97453284413023,8.27512163021651,9.18183801150347,3.68461538461538,535.81772542962,111,20716,1,1,1,0,9 +"20131",2017,19189,"IA","19","189",10582,0.965129465129465,714,0.151389151389151,6.57088296233958,6.99759598298193,7.92588031673756,3.1,226.559776925758,13,5738,1,1,1,0,9 +"20132",2017,19191,"IA","19","191",20140,0.976117179741807,2075,0.151539225422046,7.6377164326648,7.59085212368858,8.61866616034687,3.02307692307692,185.299567634342,21,11333,1,1,1,0,9 +"20133",2017,19193,"IA","19","193",102098,0.888979216047327,6971,0.12328351191992,8.8495139654864,9.41727323724241,10.2592370683984,3.12307692307692,422.888169572935,243,57462,1,1,1,0,9 +"20134",2017,19197,"IA","19","197",12758,0.974525787741025,624,0.152374980404452,6.43615036836943,7.18765716411496,8.05547514175727,3.38461538461538,333.484917386691,22,6597,1,1,1,0,9 +"20135",2017,16001,"ID","16","001",456994,0.937828505407073,27632,0.120925001203517,10.2267298003865,11.0643388454783,11.8076526621486,2.83846153846154,255.142485279532,692,271221,0,1,0,0,9 +"20136",2017,16005,"ID","16","005",85571,0.92329176940786,5956,0.116791903799184,8.6921543938039,9.27865301215827,10.0988075951157,3.07692307692308,431.142214446388,207,48012,0,1,0,0,9 +"20137",2017,16009,"ID","16","009",9167,0.888076797207374,401,0.166357586996836,5.99396142730657,6.86484777797086,7.7931743471892,5.59230769230769,510.204081632653,25,4900,0,1,0,0,9 +"20138",2017,16011,"ID","16","011",45888,0.897620292887029,2751,0.119028940027894,7.91971976092457,8.62443194208584,9.39972029313758,3.00769230769231,349.011135117168,84,24068,0,1,0,0,9 +"20139",2017,16013,"ID","16","013",22401,0.958037587607696,1075,0.155082362394536,6.98007594056176,7.95717732345947,8.75919775037137,2.59230769230769,209.272376046362,26,12424,0,1,0,0,9 +"20140",2017,16015,"ID","16","015",7370,0.963907734056988,236,0.219538670284939,5.46383180502561,6.60934924316738,7.65539064482615,4.79230769230769,363.108206245461,15,4131,0,1,0,0,9 +"20141",2017,16017,"ID","16","017",43715,0.974288001830035,1855,0.176644172480842,7.52563997504154,8.46210322509828,9.40021665317425,4.53846153846154,390.67422810334,93,23805,0,1,0,0,9 +"20142",2017,16019,"ID","16","019",114608,0.960683372888455,6823,0.107601563590674,8.82805453681542,9.59205908635435,10.3339379133382,2.71538461538462,371.353649201101,228,61397,0,1,0,0,9 +"20143",2017,16021,"ID","16","021",11995,0.959233013755732,607,0.158732805335556,6.4085287910595,7.20785987143248,8.07589363029886,4.8,476.190476190476,30,6300,0,1,0,0,9 +"20144",2017,16027,"ID","16","027",217037,0.951399991706483,14379,0.105912816708672,9.57352408782774,10.2257521947181,11.0025997162459,3.62307692307692,322.313910123357,382,118518,0,1,0,0,9 +"20145",2017,16031,"ID","16","031",23661,0.96141329614133,1452,0.112379020328811,7.28069719538474,7.94129557090653,8.67778025606419,2.51538461538462,435.962819774615,53,12157,0,1,0,0,9 +"20146",2017,16035,"ID","16","035",8651,0.952837822217085,392,0.168188648711132,5.97126183979046,6.80128303447162,7.64108424917491,6.96153846153846,529.773257045984,25,4719,0,1,0,0,9 +"20147",2017,16039,"ID","16","039",26907,0.899691530085108,2601,0.112907421860482,7.86365126544865,7.99395754757357,8.90639340705837,3.67692307692308,297.713308418319,47,15787,0,1,0,0,9 +"20148",2017,16043,"ID","16","043",13140,0.969482496194825,862,0.130060882800609,6.75925527066369,7.36770857237437,8.12058871174027,2.68461538461538,253.950338600451,18,7088,0,1,0,0,9 +"20149",2017,16045,"ID","16","045",17351,0.967840470289897,829,0.152844216471673,6.7202201551353,7.51806418123308,8.45425339164236,4,303.753525710566,28,9218,0,1,0,0,9 +"20150",2017,16047,"ID","16","047",15155,0.957241834378093,911,0.123391619927417,6.81454289725996,7.4730690880322,8.25426877009018,2.47692307692308,451.750533316602,36,7969,0,1,0,0,9 +"20151",2017,16049,"ID","16","049",16392,0.948816495851635,761,0.172462176671547,6.63463335786169,7.34213173058472,8.29379960884682,4.96923076923077,392.763627707689,33,8402,0,1,0,0,9 +"20152",2017,16051,"ID","16","051",28448,0.970120922384702,1551,0.107037401574803,7.34665516317654,8.2630748358026,8.87905466204227,2.56923076923077,238.500851788756,35,14675,0,1,0,0,9 +"20153",2017,16053,"ID","16","053",23791,0.958093396662604,1487,0.113824555504182,7.30451594646016,7.94909149983052,8.72436994920837,2.81538461538462,330.31852143138,42,12715,0,1,0,0,9 +"20154",2017,16055,"ID","16","055",157594,0.963025242077744,8734,0.138342830310799,9.07497873404551,9.833976689772,10.7134395126382,3.88461538461538,337.773174054517,300,88817,0,1,0,0,9 +"20155",2017,16057,"ID","16","057",39903,0.943563140615994,6990,0.105380547828484,8.85223583522786,8.27588566947436,9.37712518962101,2.67692307692308,214.415305954148,52,24252,0,1,0,0,9 +"20156",2017,16059,"ID","16","059",7837,0.974862830164604,300,0.179277784866658,5.7037824746562,6.62406522779989,7.60090245954208,5.26153846153846,353.892821031345,14,3956,0,1,0,0,9 +"20157",2017,16065,"ID","16","065",39540,0.965781487101669,9166,0.0615326251896813,9.12325626506907,8.02845516411425,9.28535507578163,1.9,113.284824190667,26,22951,0,1,0,0,9 +"20158",2017,16067,"ID","16","067",20683,0.957356282937678,1345,0.123144611516705,7.20414929203594,7.73892375743946,8.5956346177228,2.70769230769231,383.982446516731,42,10938,0,1,0,0,9 +"20159",2017,16069,"ID","16","069",40376,0.911382999801863,2606,0.136392906677234,7.86557175768479,8.4211227226655,9.34277115915667,2.86923076923077,363.493036699658,83,22834,0,1,0,0,9 +"20160",2017,16073,"ID","16","073",11632,0.929074965612105,687,0.136433975240715,6.53233429222235,7.1770187659099,8.0258433441509,4,558.570060644749,35,6266,0,1,0,0,9 +"20161",2017,16075,"ID","16","075",23218,0.960246360582307,1265,0.125549142906366,7.14282740116162,7.88570539124302,8.7417757069247,3.97692307692308,365.170818794125,45,12323,0,1,0,0,9 +"20162",2017,16079,"ID","16","079",12511,0.958276716489489,615,0.168411797618096,6.42162226780652,7.18083119904456,8.13622555490846,6.30769230769231,635.470826112074,44,6924,0,1,0,0,9 +"20163",2017,16083,"ID","16","083",85439,0.950233499923922,5199,0.113028008286614,8.55622157838371,9.26662618298677,10.068111764371,3.03076923076923,381.3997586623,177,46408,0,1,0,0,9 +"20164",2017,16085,"ID","16","085",10700,0.97214953271028,392,0.180560747663551,5.97126183979046,7.13886699994552,7.98616486033273,4.43846153846154,284.661754855995,17,5972,0,1,0,0,9 +"20165",2017,16087,"ID","16","087",10055,0.962008950770761,500,0.145698657384386,6.21460809842219,6.93049476595163,7.84384863815247,4.69230769230769,591.715976331361,30,5070,0,1,0,0,9 +"20166",2017,17001,"IL","17","001",66073,0.93826525206968,3760,0.14019342242671,8.23217423638394,8.91206909797013,9.82005159429409,3.89230769230769,406.770406770407,149,36630,1,1,1,0,9 +"20167",2017,17003,"IL","17","003",6276,0.640694710006373,268,0.161089866156788,5.59098698051086,6.45990445437753,7.45066079621154,8.36923076923077,654.177817424918,22,3363,1,1,1,0,9 +"20168",2017,17005,"IL","17","005",16654,0.917977663023898,961,0.145910892278131,6.86797440897029,7.68616230349291,8.42046200245647,4.41538461538462,419.553127134355,43,10249,1,1,1,0,9 +"20169",2017,17007,"IL","17","007",53481,0.942128980385557,3418,0.126175651165835,8.13681086367554,8.79815271810719,9.62542572346134,6.67692307692308,342.251620758877,104,30387,1,1,1,0,9 +"20170",2017,17011,"IL","17","011",33134,0.968431218687753,1757,0.147039294984004,7.4713630881871,8.20330402679528,9.11482017011877,4.90769230769231,444.56641053787,81,18220,1,1,1,0,9 +"20171",2017,17015,"IL","17","015",14473,0.971740482277344,720,0.161058522766531,6.5792512120101,7.3038432252777,8.2553088117856,4.62307692307692,359.527478171546,28,7788,1,1,1,0,9 +"20172",2017,17017,"IL","17","017",12525,0.931337325349301,701,0.135089820359281,6.55250788703459,7.32580750259577,8.15651022607997,4.53846153846154,381.679389312977,27,7074,1,1,1,0,9 +"20173",2017,17019,"IL","17","019",210630,0.734795613160518,34115,0.105754166073209,10.4374924492495,10.0392851254333,11.0751024407539,4.26923076923077,238.196184235884,309,129725,1,1,1,0,9 +"20174",2017,17021,"IL","17","021",33045,0.970131638674535,1912,0.14698138901498,7.55590509361135,8.27231514795602,9.10609035060238,5.31538461538462,406.165382212039,78,19204,1,1,1,0,9 +"20175",2017,17023,"IL","17","023",15824,0.985528311425683,843,0.144716885743175,6.73696695800186,7.4899708988348,8.37632063253482,5.03846153846154,340.560790101033,30,8809,1,1,1,0,9 +"20176",2017,17025,"IL","17","025",13259,0.981220303190286,708,0.146089448676371,6.56244409369372,7.32317071794347,8.20166019080868,5.33076923076923,298.38600298386,22,7373,1,1,1,0,9 +"20177",2017,17027,"IL","17","027",37649,0.94847140694308,2191,0.144811283168212,7.69211333959547,8.45786772533142,9.25435725739296,3.53076923076923,363.233665559247,82,22575,1,1,1,0,9 +"20178",2017,17029,"IL","17","029",51403,0.937474466470829,6294,0.130264770538685,8.74735207762435,8.61068353450358,9.67105095431033,4.67692307692308,293.068297655454,92,31392,1,1,1,0,9 +"20179",2017,17031,"IL","17","031",5199582,0.663494296272277,342289,0.122946421462341,12.7434106884483,13.4571298743642,14.2997098256626,5.13076923076923,343.361674296926,10983,3198668,1,1,1,0,9 +"20180",2017,17033,"IL","17","033",18979,0.93513883766268,1036,0.143579746035091,6.94312242281943,7.77653502818524,8.51919119407891,5.22307692307692,363.507403138576,41,11279,1,1,1,0,9 +"20181",2017,17035,"IL","17","035",10887,0.983007256360797,561,0.151465050059704,6.3297209055227,7.14282740116162,8.00536706731666,4.01538461538462,388.852883992223,24,6172,1,1,1,0,9 +"20182",2017,17037,"IL","17","037",104513,0.878876312037737,15370,0.109555749045573,9.64017283653264,9.35634366609603,10.3694204074114,4.63076923076923,264.42194858636,169,63913,1,1,1,0,9 +"20183",2017,17039,"IL","17","039",15910,0.978126964173476,781,0.151351351351351,6.66057514983969,7.54591815120932,8.40648506943182,4.72307692307692,515.350877192982,47,9120,1,1,1,0,9 +"20184",2017,17041,"IL","17","041",19616,0.978028140293638,1071,0.136725122349103,6.97634807044775,7.7445698093545,8.58727879898293,4.10769230769231,506.492310525831,55,10859,1,1,1,0,9 +"20185",2017,17043,"IL","17","043",930569,0.810943626963718,58178,0.139780070043167,10.9712625553841,11.6927021195792,12.5436799520015,3.97692307692308,226.255746391968,1257,555566,1,1,1,0,9 +"20186",2017,17045,"IL","17","045",17415,0.984610967556704,922,0.15664656904967,6.82654522355659,7.62364194651157,8.49167023418515,4.93076923076923,411.141946757118,40,9729,1,1,1,0,9 +"20187",2017,17047,"IL","17","047",6455,0.98295894655306,325,0.146243222308288,5.78382518232974,6.60394382460047,7.4713630881871,4.68461538461538,453.129425092042,16,3531,1,1,1,0,9 +"20188",2017,17049,"IL","17","049",34165,0.980418557002781,1969,0.144826576906191,7.58528107863913,8.2482674474469,9.1651337791381,3.80769230769231,318.766066838046,62,19450,1,1,1,0,9 +"20189",2017,17051,"IL","17","051",21537,0.944885545804894,1337,0.137345034127316,7.19818357710194,7.8995244720322,8.62766064444221,5.46923076923077,383.80198950419,49,12767,1,1,1,0,9 +"20190",2017,17053,"IL","17","053",13291,0.975697840644045,721,0.154314949966143,6.58063913728495,7.3185395485679,8.22335889947926,4.83076923076923,589.812332439678,44,7460,1,1,1,0,9 +"20191",2017,17055,"IL","17","055",39024,0.981242312423124,2025,0.138837638376384,7.61332497954064,8.43141741439483,9.2944976799829,6.48461538461538,571.982102495503,124,21679,1,1,1,0,9 +"20192",2017,17057,"IL","17","057",35099,0.945525513547395,2017,0.141143622325422,7.60936653795421,8.40559101483493,9.12598002335811,6.39230769230769,495.705521472393,101,20375,1,1,1,0,9 +"20193",2017,17059,"IL","17","059",5073,0.983638872462054,252,0.138971023063276,5.52942908751142,6.40357419793482,7.23201033166476,5.91538461538462,757.575757575758,21,2772,1,1,1,0,9 +"20194",2017,17061,"IL","17","061",13153,0.97924427887174,745,0.149775716566563,6.61338421837956,7.35436233042148,8.20248244657654,5.08461538461538,486.202365308804,37,7610,1,1,1,0,9 +"20195",2017,17063,"IL","17","063",50627,0.964643372113694,2847,0.124874079048729,7.95402108727804,8.8575151511922,9.60109785121207,5.8,320.610171779555,95,29631,1,1,1,0,9 +"20196",2017,17065,"IL","17","065",8192,0.9815673828125,432,0.1475830078125,6.06842558824411,6.86380339145295,7.70751219460034,4.47692307692308,470.640968175706,21,4462,1,1,1,0,9 +"20197",2017,17067,"IL","17","067",17959,0.981402082521298,866,0.156244779776157,6.76388490856244,7.57353126274595,8.47512041499433,5.13846153846154,399.222028866824,39,9769,1,1,1,0,9 +"20198",2017,17069,"IL","17","069",3920,0.975510204081633,173,0.158928571428571,5.15329159449778,6.00635315960173,6.97447891102505,7.58461538461538,719.424460431655,16,2224,1,1,1,0,9 +"20199",2017,17071,"IL","17","071",6824,0.981975381008206,332,0.175410316529894,5.80513496891649,6.52502965784346,7.54062152865715,5.1,454.788657035848,17,3738,1,1,1,0,9 +"20200",2017,17073,"IL","17","073",49222,0.965625126975743,2548,0.146966803461867,7.84306401669205,8.68609172787805,9.51495330508794,5.11538461538461,373.025160912814,102,27344,1,1,1,0,9 +"20201",2017,17075,"IL","17","075",27780,0.971958243340533,1450,0.152951763858891,7.27931883541462,8.04044688130311,8.9450718943613,4.6,580.409547410982,89,15334,1,1,1,0,9 +"20202",2017,17077,"IL","17","077",57973,0.790057440532662,9534,0.113897848998672,9.16261963576477,8.66336930157384,9.77126958270842,4.47692307692308,346.572011515135,124,35779,1,1,1,0,9 +"20203",2017,17079,"IL","17","079",9504,0.988531144781145,469,0.152882996632997,6.15060276844628,6.99025650049388,7.87207397986687,4.97692307692308,260.756192959583,14,5369,1,1,1,0,9 +"20204",2017,17081,"IL","17","081",38059,0.883969626106834,2194,0.133739719908563,7.69348164083518,8.4446224985814,9.21910187764476,5.45384615384615,416.456912727106,91,21851,1,1,1,0,9 +"20205",2017,17083,"IL","17","083",21892,0.975561849077288,1422,0.154577014434497,7.25981961036319,7.78904040165748,8.76155013912964,4.81538461538462,655.452894258864,83,12663,1,1,1,0,9 +"20206",2017,17085,"IL","17","085",21509,0.980426798084523,965,0.16258310474685,6.87212810133899,7.66152708135852,8.62065189978447,4.46923076923077,359.485935112789,40,11127,1,1,1,0,9 +"20207",2017,17087,"IL","17","087",12394,0.91810553493626,724,0.140713248345974,6.58479139238572,7.27862894232068,8.01201823915906,7.48461538461538,444.618804760037,34,7647,1,1,1,0,9 +"20208",2017,17089,"IL","17","089",532101,0.87602541622737,33683,0.123957669690529,10.4247485380236,11.1732059616809,11.9477163384602,4.83846153846154,244.686711333735,764,312236,1,1,1,0,9 +"20209",2017,17091,"IL","17","091",110530,0.822663530263277,8476,0.131719895051117,9.04499391938819,9.4758535196569,10.3702672404634,5.49230769230769,478.895199910903,301,62853,1,1,1,0,9 +"20210",2017,17093,"IL","17","093",126163,0.879013656935869,7078,0.0990781766444996,8.86474666090541,9.92603151697102,10.5290783293951,4.36153846153846,168.234613262271,125,74301,1,1,1,0,9 +"20211",2017,17095,"IL","17","095",50601,0.887116855398115,3553,0.142744214541215,8.17554759602103,8.65364531455174,9.5206152930806,5.19230769230769,404.702927118585,116,28663,1,1,1,0,9 +"20212",2017,17097,"IL","17","097",702825,0.823806779781596,51234,0.135017963219863,10.8441586531357,11.3787538674583,12.2318378534162,4.51538461538462,250.099677407662,1035,413835,1,1,1,0,9 +"20213",2017,17099,"IL","17","099",109590,0.95284241262889,6361,0.150077561821334,8.7579408766788,9.45069496002075,10.3236770560427,5.58461538461538,476.639924492685,303,63570,1,1,1,0,9 +"20214",2017,17101,"IL","17","101",16025,0.887301092043682,1126,0.132230889235569,7.02642680869964,7.70526247486633,8.27078101316267,6.39230769230769,516.436587545933,52,10069,1,1,1,0,9 +"20215",2017,17103,"IL","17","103",34533,0.926099672776764,1936,0.151478296122549,7.56837926783652,8.32893404195553,9.10497985631836,4.34615384615385,433.561610090161,88,20297,1,1,1,0,9 +"20216",2017,17105,"IL","17","105",36080,0.941879157427938,2222,0.145676274944568,7.70616297019958,8.33639048059155,9.22197245620589,4.47692307692308,440.00757002271,93,21136,1,1,1,0,9 +"20217",2017,17107,"IL","17","107",29035,0.899397279145858,2126,0.133631823661099,7.66199755890189,8.22174772834662,9.00736702745136,4.61538461538461,405.923046138014,71,17491,1,1,1,0,9 +"20218",2017,17109,"IL","17","109",30419,0.909004240770571,4799,0.119596304940991,8.47616284185825,7.96589273508453,9.09784334074904,5.03846153846154,295.922840859272,54,18248,1,1,1,0,9 +"20219",2017,17111,"IL","17","111",307842,0.942489978625399,18511,0.143723078722202,9.82612042895969,10.5636465572691,11.4269208537491,4.41538461538462,285.593514263418,527,184528,1,1,1,0,9 +"20220",2017,17113,"IL","17","113",172769,0.849041205308823,22000,0.114997482187198,9.99879773234045,9.93163759595247,10.8856034774305,4.12307692307692,254.789272030651,266,104400,1,1,1,0,9 +"20221",2017,17115,"IL","17","115",105474,0.791446233194911,6619,0.143011547869617,8.79769958011892,9.39507567999407,10.323841273138,5.51538461538462,417.649955009253,246,58901,1,1,1,0,9 +"20222",2017,17117,"IL","17","117",45521,0.97893280024604,2502,0.154104698930164,7.82484569102686,8.58354257195777,9.4753933263676,4.89230769230769,463.195275408191,120,25907,1,1,1,0,9 +"20223",2017,17119,"IL","17","119",265516,0.889004805736754,15632,0.143460281113003,9.65707537428256,10.3715831125751,11.2854475337885,4.78461538461538,441.526456494969,692,156729,1,1,1,0,9 +"20224",2017,17121,"IL","17","121",37757,0.936806420001589,2082,0.143920332653548,7.64108424917491,8.34426735626264,9.26945797645927,5.24615384615385,631.889015583428,133,21048,1,1,1,0,9 +"20225",2017,17123,"IL","17","123",11667,0.979257735493272,631,0.156166966658095,6.44730586254121,7.14124512235049,8.06620756800626,5.40769230769231,680.798390840167,44,6463,1,1,1,0,9 +"20226",2017,17125,"IL","17","125",13672,0.981202457577531,676,0.14774722059684,6.51619307604296,7.3664451483276,8.2337687092171,6.08461538461538,451.048023348368,34,7538,1,1,1,0,9 +"20227",2017,17127,"IL","17","127",14298,0.916841516295985,712,0.14771296684851,6.56807791141198,7.43955930913332,8.30102525383845,6.46923076923077,617.750882501261,49,7932,1,1,1,0,9 +"20228",2017,17129,"IL","17","129",12311,0.977662253269434,617,0.153764925676225,6.42486902390539,7.3185395485679,8.17244681834278,4.20769230769231,372.599598738894,26,6978,1,1,1,0,9 +"20229",2017,17131,"IL","17","131",15618,0.980919451914458,780,0.149442950441798,6.65929391968364,7.48605261786314,8.35749381265856,5.12307692307692,508.200508200508,44,8658,1,1,1,0,9 +"20230",2017,17133,"IL","17","133",34261,0.984180263273109,1731,0.156737981961998,7.45645455517621,8.3670677328386,9.21183924809992,3.40769230769231,211.172004625672,42,19889,1,1,1,0,9 +"20231",2017,17135,"IL","17","135",28781,0.95378895799312,1674,0.146242312636809,7.42297125104942,8.15593633797239,8.91152994173656,5.7,340.970269785249,57,16717,1,1,1,0,9 +"20232",2017,17137,"IL","17","137",34275,0.908096280087527,2400,0.141911013858497,7.78322401633604,8.31115254800169,9.15778312123751,4.37692307692308,398.02010511813,78,19597,1,1,1,0,9 +"20233",2017,17139,"IL","17","139",14704,0.98497007616975,770,0.134657236126224,6.64639051484773,7.4593388952203,8.30251371851416,3.89230769230769,289.199044385766,23,7953,1,1,1,0,9 +"20234",2017,17141,"IL","17","141",51021,0.970580741263401,2806,0.146841496638639,7.93951526066241,8.66888370465667,9.57227147806062,5.10769230769231,354.451288757356,103,29059,1,1,1,0,9 +"20235",2017,17143,"IL","17","143",182657,0.749848075901827,11546,0.128568847621498,9.35409433562088,10.0065855105397,10.886090232097,5.86153846153846,451.084614279558,471,104415,1,1,1,0,9 +"20236",2017,17145,"IL","17","145",21292,0.892682697726846,1463,0.134416682321999,7.28824440102012,7.91826468609527,8.56769617358934,6.01538461538462,368.425178333464,47,12757,1,1,1,0,9 +"20237",2017,17147,"IL","17","147",16427,0.981128629695014,839,0.154745236500883,6.73221070646721,7.57301725605255,8.44117570499232,4.07692307692308,420.575865415723,39,9273,1,1,1,0,9 +"20238",2017,17149,"IL","17","149",15669,0.977599080987938,859,0.143978556385219,6.75576892198425,7.45298232946546,8.34545542816193,4.53846153846154,444.140758455757,39,8781,1,1,1,0,9 +"20239",2017,17153,"IL","17","153",5531,0.667691195082264,268,0.158922437172302,5.59098698051086,6.40357419793482,7.32118855673948,7.93076923076923,664.010624169987,20,3012,1,1,1,0,9 +"20240",2017,17157,"IL","17","157",32258,0.88241676483353,1897,0.143003286006572,7.54802896993501,8.34045601291618,8.96367227561502,4.40769230769231,416.581995529364,82,19684,1,1,1,0,9 +"20241",2017,17159,"IL","17","159",15842,0.973740689306906,779,0.144804948870092,6.65801104587075,7.49220304261874,8.37562962709445,4.81538461538462,480.164627872413,42,8747,1,1,1,0,9 +"20242",2017,17161,"IL","17","161",143824,0.84367004116142,8822,0.139768049838692,9.08500388066489,9.7435535146198,10.6052475361943,5.10769230769231,434.553110000859,354,81463,1,1,1,0,9 +"20243",2017,17163,"IL","17","163",262881,0.661523655189991,16245,0.138583617682526,9.6955404481032,10.4084661155102,11.2899319024071,5.06153846153846,489.882027089117,757,154527,1,1,1,0,9 +"20244",2017,17165,"IL","17","165",23968,0.940003337783712,1240,0.140645861148198,7.12286665859908,7.89058253465654,8.83302530728436,6.45384615384615,576.965751904727,78,13519,1,1,1,0,9 +"20245",2017,17167,"IL","17","167",197163,0.832691732221563,11621,0.141162388480597,9.36056908522287,10.0802101309296,10.9880685277913,4.42307692307692,411.879661031802,470,114111,1,1,1,0,9 +"20246",2017,17173,"IL","17","173",21773,0.987048178937216,1116,0.149864511091719,7.01750614294126,7.75876054415766,8.68761084370737,4.43076923076923,268.704341254513,32,11909,1,1,1,0,9 +"20247",2017,17177,"IL","17","177",44998,0.869416418507489,2390,0.153629050180008,7.77904864492556,8.43337670532313,9.42553239350277,4.68461538461538,388.37332897265,95,24461,1,1,1,0,9 +"20248",2017,17179,"IL","17","179",133525,0.96823815764838,6922,0.137839355925857,8.84246002419529,9.7538848483049,10.5441565264509,5.33846153846154,391.235279444393,298,76169,1,1,1,0,9 +"20249",2017,17181,"IL","17","181",16982,0.968613826404428,828,0.1479802143446,6.71901315438526,7.56631101477246,8.45276133125685,6.41538461538462,565.089995814148,54,9556,1,1,1,0,9 +"20250",2017,17183,"IL","17","183",77722,0.832801523378194,4469,0.140384961786881,8.40491994893345,9.08986621850831,9.96302923524444,6.49230769230769,566.190973430792,244,43095,1,1,1,0,9 +"20251",2017,17185,"IL","17","185",11466,0.97008547008547,591,0.155328798185941,6.3818160174061,7.17165682276851,8.06085575293432,5.23076923076923,374.00654511454,24,6417,1,1,1,0,9 +"20252",2017,17187,"IL","17","187",17133,0.932586237086325,1324,0.139029942216775,7.18841273649695,7.55171221535131,8.44009614103127,4.18461538461538,439.301403621558,41,9333,1,1,1,0,9 +"20253",2017,17189,"IL","17","189",13960,0.977865329512894,681,0.156876790830946,6.52356230614951,7.41457288135059,8.26821888006751,3.00769230769231,375.657400450789,30,7986,1,1,1,0,9 +"20254",2017,17191,"IL","17","191",16435,0.981563735929419,793,0.14250076057195,6.67582322163485,7.53047999524554,8.39434736141739,6.16153846153846,437.808711270768,39,8908,1,1,1,0,9 +"20255",2017,17193,"IL","17","193",13898,0.979997121888041,643,0.151748453014822,6.46614472423762,7.36264527041782,8.2445967563825,4.95384615384615,640.020898641588,49,7656,1,1,1,0,9 +"20256",2017,17195,"IL","17","195",56009,0.962398900176757,3064,0.14826188648253,8.02747653086048,8.72404474595347,9.64478158832086,4.80769230769231,441.67902508221,137,31018,1,1,1,0,9 +"20257",2017,17197,"IL","17","197",690356,0.80689238595739,44958,0.124112776596423,10.7134839995924,11.4522833430007,12.2331672490779,5.06153846153846,282.409114729916,1164,412168,1,1,1,0,9 +"20258",2017,17199,"IL","17","199",67076,0.928752459896237,3400,0.137023674637724,8.13153071060425,9.05963375455148,9.8537719602902,5.14615384615385,422.680412371134,164,38800,1,1,1,0,9 +"20259",2017,17201,"IL","17","201",284658,0.815620850283498,17071,0.137262961167436,9.74513639638075,10.4172987151425,11.3238934432848,6.43076923076923,475.108955865202,774,162910,1,1,1,0,9 +"20260",2017,17203,"IL","17","203",38676,0.977944978798221,2240,0.142931016651153,7.71423114484909,8.45212119467252,9.28107838648152,4.38461538461539,259.607806777618,56,21571,1,1,1,0,9 +"20261",2017,20001,"KS","20","001",12545,0.947150259067358,735,0.14300518134715,6.59987049921284,7.27170370688737,8.13329386122263,4.82307692307692,474.707016763092,32,6741,0,1,0,0,9 +"20262",2017,20003,"KS","20","003",7850,0.976942675159236,378,0.143694267515924,5.93489419561959,6.73815249459596,7.6004023345004,3.90769230769231,497.265042267529,20,4022,0,1,0,0,9 +"20263",2017,20005,"KS","20","005",16319,0.92432134321956,1414,0.128071573013052,7.25417784645652,7.44833386089748,8.42420032456707,5.17692307692308,414.00917533848,37,8937,0,1,0,0,9 +"20264",2017,20009,"KS","20","009",26427,0.959927347031445,1576,0.15154955159496,7.36264527041782,7.94555542825349,8.88682384651519,3.59230769230769,435.082872928177,63,14480,0,1,0,0,9 +"20265",2017,20011,"KS","20","011",14604,0.936798137496576,848,0.136948781155848,6.7428806357919,7.38087903556412,8.24931374626064,4.4,546.590317542946,42,7684,0,1,0,0,9 +"20266",2017,20013,"KS","20","013",9619,0.867137956128496,477,0.149495789583117,6.16751649088834,6.9037472575846,7.8458075026378,3.2,509.504213207917,26,5103,0,1,0,0,9 +"20267",2017,20015,"KS","20","015",66916,0.945199952178851,3868,0.136230497937713,8.26049285657318,9.04570155003454,9.82795548992369,3.73846153846154,371.904096220294,141,37913,0,1,0,0,9 +"20268",2017,20021,"KS","20","021",20151,0.921294228574264,1039,0.147585727755446,6.94601399109923,7.74196789982069,8.6339089911122,3.87692307692308,662.014671676507,74,11178,0,1,0,0,9 +"20269",2017,20027,"KS","20","027",8003,0.972760214919405,360,0.140947144820692,5.88610403145016,6.84268328223842,7.61579107203583,3.70769230769231,361.271676300578,15,4152,0,1,0,0,9 +"20270",2017,20029,"KS","20","029",8922,0.965254427258462,556,0.137188971082717,6.32076829425058,6.81124437860129,7.71868549519847,4.26923076923077,534.75935828877,25,4675,0,1,0,0,9 +"20271",2017,20031,"KS","20","031",8231,0.966954197545863,441,0.155874134370064,6.08904487544685,6.82110747225646,7.73805229768932,5.21538461538462,351.648351648352,16,4550,0,1,0,0,9 +"20272",2017,20035,"KS","20","035",35311,0.906346464274589,2372,0.131120613972983,7.77148876011762,8.29404964010203,9.15620092587553,3.76923076923077,472.837539188981,92,19457,0,1,0,0,9 +"20273",2017,20037,"KS","20","037",38942,0.931847362744595,5367,0.114246828616917,8.58802437217683,8.35983738064003,9.32776778885215,4.17692307692308,468.476357267951,107,22840,0,1,0,0,9 +"20274",2017,20041,"KS","20","041",18829,0.961654894046418,945,0.14482978384407,6.85118492749374,7.67554600253785,8.52158353971753,3.79230769230769,397.595034910784,41,10312,0,1,0,0,9 +"20275",2017,20045,"KS","20","045",120516,0.853604500647217,21494,0.100775000829765,9.9755291054011,9.54774074917022,10.5507216760817,3.18461538461538,240.403357850144,185,76954,0,1,0,0,9 +"20276",2017,20051,"KS","20","051",28755,0.953677621283255,3882,0.118831507563902,8.26410576372896,8.03268487596762,9.03824633533766,2.50769230769231,257.837679460885,44,17065,0,1,0,0,9 +"20277",2017,20055,"KS","20","055",36685,0.896606242333379,2688,0.106719367588933,7.89655270164304,8.38183155348556,9.18276360420595,2.72307692307692,331.804430565043,68,20494,0,1,0,0,9 +"20278",2017,20057,"KS","20","057",34082,0.932867789448976,2472,0.107065313068482,7.81278281857758,8.31262602567496,9.09638749190015,2.80769230769231,311.898944741904,60,19237,0,1,0,0,9 +"20279",2017,20059,"KS","20","059",25667,0.960143374761367,1523,0.143413721899716,7.32843735289516,7.9665866976384,8.8805855231025,3.70769230769231,345.566383302232,50,14469,0,1,0,0,9 +"20280",2017,20061,"KS","20","061",33935,0.714807720642405,4301,0.0592014144688375,8.36660283278374,8.28273588020175,9.09974395063416,4.90769230769231,314.609022174862,62,19707,0,1,0,0,9 +"20281",2017,20073,"KS","20","073",6068,0.969017798286091,272,0.17089650626236,5.605802066296,6.4118182677099,7.35691824235602,4.19230769230769,905.401186387761,29,3203,0,1,0,0,9 +"20282",2017,20079,"KS","20","079",34436,0.949616680218376,2314,0.133697293530027,7.74673290775362,8.2684753889826,9.1302143274969,4.06153846153846,373.720413800574,69,18463,0,1,0,0,9 +"20283",2017,20085,"KS","20","085",13347,0.88079718288754,733,0.135685921930022,6.59714570188665,7.27655640271871,8.1721644521119,3.11538461538462,445.000695313586,32,7191,0,1,0,0,9 +"20284",2017,20087,"KS","20","087",18935,0.972801689992078,935,0.161975178241352,6.84054652928869,7.67322312112171,8.56978564153541,3.50769230769231,408.428478603917,44,10773,0,1,0,0,9 +"20285",2017,20091,"KS","20","091",592055,0.883328406989216,33904,0.124893802096089,10.4312882805081,11.3160708124789,12.086934316879,3.02307692307692,222.064513175065,776,349448,0,1,0,0,9 +"20286",2017,20095,"KS","20","095",7278,0.975680131904369,335,0.166254465512503,5.81413053182507,6.65157187358973,7.5740450053722,3.66153846153846,1139.5289946822,45,3949,0,1,0,0,9 +"20287",2017,20099,"KS","20","099",20146,0.910106224560707,1093,0.143105331083093,6.99668148817654,7.66434663209862,8.60739945930239,4.49230769230769,573.888091822095,64,11152,0,1,0,0,9 +"20288",2017,20103,"KS","20","103",81259,0.86264906041177,4909,0.128355012983177,8.49882553405805,9.36623239193316,9.97659859935345,3.9,268.894453795312,131,48718,0,1,0,0,9 +"20289",2017,20107,"KS","20","107",9694,0.976377140499278,424,0.150299154115948,6.04973345523196,6.99484998583307,7.84463264446468,5.84615384615385,739.8753894081,38,5136,0,1,0,0,9 +"20290",2017,20111,"KS","20","111",33246,0.919208325813632,4447,0.123202791313241,8.3999849905107,8.10681603894705,9.19816657104447,3.76923076923077,315.313024462188,62,19663,0,1,0,0,9 +"20291",2017,20113,"KS","20","113",28722,0.96403453798482,1770,0.145324141772857,7.47873482556787,8.08394570229562,8.96367227561502,2.74615384615385,393.475915466142,62,15757,0,1,0,0,9 +"20292",2017,20115,"KS","20","115",11950,0.969874476987448,810,0.153138075313808,6.69703424766648,7.03878354138854,8.05134093329298,3.6,553.18476371108,35,6327,0,1,0,0,9 +"20293",2017,20117,"KS","20","117",9697,0.977931318964628,449,0.16592760647623,6.10702288774225,6.95177216439891,7.8336002236611,2.8,465.657741559953,24,5154,0,1,0,0,9 +"20294",2017,20121,"KS","20","121",33450,0.966576980568012,1697,0.146427503736921,7.43661726523423,8.321664807135,9.1465482388884,3.72307692307692,545.78211106401,103,18872,0,1,0,0,9 +"20295",2017,20125,"KS","20","125",32382,0.876165771107405,1796,0.140942498919153,7.49331724886215,8.14554963178358,9.06716260229985,5.20769230769231,724.346076458753,126,17395,0,1,0,0,9 +"20296",2017,20133,"KS","20","133",16098,0.956205739843459,935,0.140203752018884,6.84054652928869,7.43366654016617,8.34995727204032,5.23076923076923,386.371619248332,33,8541,0,1,0,0,9 +"20297",2017,20139,"KS","20","139",15842,0.971973235702563,815,0.161027648024239,6.70318811324086,7.46908388492123,8.38114434695296,3.92307692307692,574.316563289685,50,8706,0,1,0,0,9 +"20298",2017,20143,"KS","20","143",5813,0.97144331670394,316,0.159814209530363,5.75574221358691,6.51174532964473,7.35564110297425,3.06923076923077,432.23217042297,14,3239,0,1,0,0,9 +"20299",2017,20145,"KS","20","145",6673,0.918627304061142,367,0.152854787951446,5.90536184805457,6.73933662735717,7.40913644392013,3.31538461538462,578.034682080925,23,3979,0,1,0,0,9 +"20300",2017,20149,"KS","20","149",23938,0.956345559361684,1420,0.121229843763055,7.25841215059531,8.03592636989179,8.7832429637409,3.07692307692308,251.793071875477,33,13106,0,1,0,0,9 +"20301",2017,20155,"KS","20","155",62756,0.938746892727389,3741,0.138600293199057,8.22710823434815,8.86460536807578,9.72232532346202,3.86153846153846,496.220645086839,172,34662,0,1,0,0,9 +"20302",2017,20159,"KS","20","159",9559,0.952610105659588,747,0.145203473166649,6.61606518513282,6.86171134048073,7.81762544305337,3.18461538461538,343.970953563921,18,5233,0,1,0,0,9 +"20303",2017,20161,"KS","20","161",74129,0.853201850827611,18376,0.0764613039431262,9.81880074436893,8.88377886146348,10.0202478431448,3.04615384615385,172.099615306742,85,49390,0,1,0,0,9 +"20304",2017,20169,"KS","20","169",54529,0.91644812851877,3516,0.138715179079022,8.16507925880507,8.72745411689943,9.63600018736987,3.18461538461538,481.141823818135,149,30968,0,1,0,0,9 +"20305",2017,20173,"KS","20","173",513392,0.827508025056877,35413,0.126421915417459,10.4748342633472,11.0370808100995,11.9083267691207,4.20769230769231,410.401795507855,1216,296295,0,1,0,0,9 +"20306",2017,20175,"KS","20","175",22239,0.894419713116597,1755,0.0942488421241962,7.47022413589997,7.89729647259588,8.66836801921336,3.48461538461538,282.668389597803,35,12382,0,1,0,0,9 +"20307",2017,20177,"KS","20","177",178096,0.859867711795885,10679,0.137953687898661,9.27603447517155,9.9360999402636,10.8491040497921,3.63846153846154,470.98116075357,471,100004,0,1,0,0,9 +"20308",2017,20181,"KS","20","181",5935,0.967481044650379,360,0.149620893007582,5.88610403145016,6.46614472423762,7.36201055125973,2.86923076923077,370.37037037037,12,3240,0,1,0,0,9 +"20309",2017,20191,"KS","20","191",23103,0.958793230316409,1262,0.152317880794702,7.14045304310116,7.86172707782398,8.73857519211079,3.8,415.555904030108,53,12754,0,1,0,0,9 +"20310",2017,20205,"KS","20","205",8707,0.96324796141036,412,0.152291259905823,6.02102334934953,6.84054652928869,7.74109909003537,4.7,590.551181102362,27,4572,0,1,0,0,9 +"20311",2017,20209,"KS","20","209",165254,0.680661285052102,10476,0.118496375276847,9.2568422056276,9.97189358520019,10.7728334166337,5.17692307692308,488.223954404492,466,95448,0,1,0,0,9 +"20312",2017,21001,"KY","21","001",19311,0.958831753922635,1486,0.139247061260422,7.3038432252777,7.650168700845,8.6285556592697,5.91538461538462,530.575539568345,59,11120,1,1,1,0,9 +"20313",2017,21003,"KY","21","003",20891,0.9788904312862,1141,0.13527356277823,7.03966034986208,7.81520706218909,8.70167907103957,4.01538461538462,553.180789539854,66,11931,1,1,1,0,9 +"20314",2017,21005,"KY","21","005",22553,0.963375160732497,1250,0.133108677337826,7.13089883029635,7.97108575350561,8.81224801819743,3.97692307692308,672.510200997431,89,13234,1,1,1,0,9 +"20315",2017,21007,"KY","21","007",8002,0.948512871782054,430,0.148087978005499,6.06378520868761,6.84800527457636,7.70481192293259,7.49230769230769,556.66889334224,25,4491,1,1,1,0,9 +"20316",2017,21009,"KY","21","009",43787,0.939662456893599,2459,0.137301025418503,7.80751004221619,8.57243866564222,9.44691334360205,4.53076923076923,497.572328558244,124,24921,1,1,1,0,9 +"20317",2017,21011,"KY","21","011",12393,0.975389332687808,708,0.134753489873316,6.56244409369372,7.31521838975297,8.16223106548118,7.74615384615385,666.087460179554,46,6906,1,1,1,0,9 +"20318",2017,21013,"KY","21","013",26865,0.963744649171785,1612,0.142676344686395,7.38523092306657,8.05102220819068,8.96482339168508,7.75384615384615,800.871348026653,125,15608,1,1,1,0,9 +"20319",2017,21015,"KY","21","015",131151,0.927602534483153,7472,0.12322437495711,8.91891797990868,9.78103739277956,10.5548747988478,3.77692307692308,386.484822282488,295,76329,1,1,1,0,9 +"20320",2017,21017,"KY","21","017",20088,0.924283154121864,1176,0.138092393468738,7.06987412845857,7.77148876011762,8.6652683094816,4.49230769230769,511.824920578892,58,11332,1,1,1,0,9 +"20321",2017,21019,"KY","21","019",47867,0.955188334343076,2434,0.144462782292602,7.79729127354747,8.70317470904168,9.51074121683574,7.01538461538462,695.223956258826,192,27617,1,1,1,0,9 +"20322",2017,21021,"KY","21","021",29992,0.89867297946119,2517,0.128567618031475,7.83082299513532,8.1371033896393,9.0246130220474,4.93846153846154,540.06968641115,93,17220,1,1,1,0,9 +"20323",2017,21023,"KY","21","023",8284,0.984910671173346,428,0.147875422501207,6.0591231955818,6.86484777797086,7.77106708606541,5.69230769230769,730.231587732109,35,4793,1,1,1,0,9 +"20324",2017,21025,"KY","21","025",12922,0.984058195325801,779,0.149280297167621,6.65801104587075,7.41336733569524,8.26924452118306,8.57692307692308,850.68562722194,67,7876,1,1,1,0,9 +"20325",2017,21027,"KY","21","027",20131,0.965972877651383,1027,0.15155729968705,6.93439720992856,7.73193072194849,8.6164953924901,5.88461538461539,652.659812248547,73,11185,1,1,1,0,9 +"20326",2017,21029,"KY","21","029",80309,0.973328020520739,4666,0.137531285410103,8.44805745258138,9.26917515769708,10.1022564407087,4.13076923076923,424.470956708083,206,48531,1,1,1,0,9 +"20327",2017,21031,"KY","21","031",12792,0.984677923702314,604,0.141572858036273,6.40357419793482,7.38956395367764,8.20001364817543,5.4,477.424635111172,35,7331,1,1,1,0,9 +"20328",2017,21033,"KY","21","033",12660,0.9326224328594,663,0.143443917851501,6.49677499018586,7.28207365809346,8.17835816560584,5.21538461538462,530.161914314372,37,6979,1,1,1,0,9 +"20329",2017,21035,"KY","21","035",38841,0.933034679848614,5614,0.119976313689143,8.63301875692183,8.27486682068525,9.36734412078585,4.31538461538462,381.417673780749,89,23334,1,1,1,0,9 +"20330",2017,21037,"KY","21","037",93366,0.950817213975109,6586,0.140372298267035,8.79270146293631,9.3179383825742,10.2547428366141,3.69230769230769,426.659081616327,240,56251,1,1,1,0,9 +"20331",2017,21039,"KY","21","039",4785,0.970323928944619,230,0.138349007314525,5.4380793089232,6.30809844150953,7.17165682276851,6.77692307692308,798.175598631699,21,2631,1,1,1,0,9 +"20332",2017,21041,"KY","21","041",10720,0.961380597014925,621,0.136100746268657,6.43133108193348,7.1770187659099,7.98514393119862,4.55384615384615,805.788521624733,49,6081,1,1,1,0,9 +"20333",2017,21043,"KY","21","043",27216,0.98614785420341,1692,0.136243386243386,7.43366654016617,8.06965530688617,8.9511809664576,9.65384615384615,821.060862765542,126,15346,1,1,1,0,9 +"20334",2017,21045,"KY","21","045",15836,0.97909825713564,894,0.132798686537004,6.79570577517351,7.51316354523408,8.40155784781731,4.72307692307692,629.434653238727,55,8738,1,1,1,0,9 +"20335",2017,21047,"KY","21","047",71293,0.734672408230822,9632,0.0911029133294994,9.1728461675486,8.87136500513685,9.81760281337896,6.00769230769231,483.293263333497,197,40762,1,1,1,0,9 +"20336",2017,21049,"KY","21","049",35941,0.938009515595003,2071,0.138532595086392,7.63578686139558,8.39276311303806,9.2712473068797,4.53846153846154,560.774539877301,117,20864,1,1,1,0,9 +"20337",2017,21051,"KY","21","051",20264,0.953711014607185,1112,0.131760757994473,7.01391547481053,7.92044650514261,8.6557370008643,8.6,698.523575170662,88,12598,1,1,1,0,9 +"20338",2017,21053,"KY","21","053",10214,0.981691795574701,530,0.146171920892892,6.27287700654617,7.08002649992259,7.97039490719143,6.41538461538462,536.332179930796,31,5780,1,1,1,0,9 +"20339",2017,21055,"KY","21","055",9011,0.980246365553213,473,0.14515592054156,6.15909538849193,6.97354301952014,7.80139132029149,5.39230769230769,700.700700700701,35,4995,1,1,1,0,9 +"20340",2017,21057,"KY","21","057",6706,0.962570832090665,332,0.161497166716373,5.80513496891649,6.48768401848461,7.54697411751653,5.23076923076923,622.631293990254,23,3694,1,1,1,0,9 +"20341",2017,21059,"KY","21","059",100508,0.921787320412305,5872,0.134725593982569,8.67795057029435,9.37966111659289,10.2718736524029,4.27692307692308,506.480488190915,288,56863,1,1,1,0,9 +"20342",2017,21061,"KY","21","061",12248,0.969872632266492,756,0.14606466361855,6.62804137617953,7.31188616407716,8.17046857833067,5.87692307692308,463.874051166714,33,7114,1,1,1,0,9 +"20343",2017,21063,"KY","21","063",7490,0.955140186915888,432,0.132977303070761,6.06842558824411,6.93049476595163,7.49443021503157,10.4230769230769,523.560209424084,24,4584,1,1,1,0,9 +"20344",2017,21065,"KY","21","065",14186,0.989355702805583,763,0.141618497109827,6.63725803128446,7.43602781635185,8.31532177537757,5.86153846153846,945.225399903054,78,8252,1,1,1,0,9 +"20345",2017,21067,"KY","21","067",321554,0.789201813692257,33542,0.115517144865248,10.4205536638916,10.6466860064948,11.5260785822151,3.57692307692308,375.460013011974,756,201353,1,1,1,0,9 +"20346",2017,21069,"KY","21","069",14439,0.976729690421774,826,0.134843133180968,6.71659477352098,7.46221493976819,8.3221510702129,5.95384615384615,494.559841740851,40,8088,1,1,1,0,9 +"20347",2017,21071,"KY","21","071",36301,0.983196055205091,2006,0.145726013057492,7.60389796852188,8.42945427710823,9.29376198011525,8.16153846153846,920.784090369738,194,21069,1,1,1,0,9 +"20348",2017,21073,"KY","21","073",50564,0.859504786013765,3205,0.137845107190887,8.07246736935477,8.72729202920964,9.63167882924064,4.01538461538462,547.685858210217,162,29579,1,1,1,0,9 +"20349",2017,21075,"KY","21","075",6151,0.73402698748171,368,0.150056901316859,5.90808293816893,6.4831073514572,7.45529848568329,7.06923076923077,594.059405940594,21,3535,1,1,1,0,9 +"20350",2017,21077,"KY","21","077",8716,0.970858191831115,530,0.140201927489674,6.27287700654617,6.99484998583307,7.83991936001258,4.44615384615385,941.764366711512,49,5203,1,1,1,0,9 +"20351",2017,21079,"KY","21","079",17452,0.969974787989915,842,0.156772862709145,6.73578001424233,7.65207074611648,8.54849804124465,4.77692307692308,597.161037689672,61,10215,1,1,1,0,9 +"20352",2017,21081,"KY","21","081",24998,0.977918233458677,1532,0.125370029602368,7.33432935030054,8.03300949859667,8.87052254510387,4.77692307692308,666.481532907526,96,14404,1,1,1,0,9 +"20353",2017,21083,"KY","21","083",37160,0.93754036598493,2094,0.134472551130248,7.64683139143048,8.37839078853578,9.25817770139034,5.86923076923077,537.660450472269,111,20645,1,1,1,0,9 +"20354",2017,21085,"KY","21","085",26281,0.978615729995053,1487,0.139416308359651,7.30451594646016,8.090708716084,8.8967249174979,5.96923076923077,702.435108375702,105,14948,1,1,1,0,9 +"20355",2017,21087,"KY","21","087",11060,0.968173598553345,589,0.151175406871609,6.37842618365159,7.17930796950403,8.04750951098142,4.53846153846154,492.767445557145,31,6291,1,1,1,0,9 +"20356",2017,21089,"KY","21","089",35542,0.9791232907546,1804,0.142535591694333,7.49776170062257,8.38685668968823,9.22690246027516,7.52307692307692,579.403466344216,115,19848,1,1,1,0,9 +"20357",2017,21091,"KY","21","091",8786,0.975529251081266,476,0.133963123150467,6.16541785423142,6.97914527506881,7.78447323573647,4.96923076923077,470.829068577277,23,4885,1,1,1,0,9 +"20358",2017,21093,"KY","21","093",108314,0.824500987868604,7479,0.128709123474343,8.91985437219167,9.52944843442782,10.3699536822017,4.48461538461538,368.347120337131,236,64070,1,1,1,0,9 +"20359",2017,21095,"KY","21","095",26687,0.968711357589838,1362,0.145464083636227,7.21670948670946,8.05261481881557,8.96890555068972,9.75384615384615,893.672537508154,137,15330,1,1,1,0,9 +"20360",2017,21097,"KY","21","097",18737,0.966323317500133,1045,0.148209425201473,6.95177216439891,7.68799716639302,8.60355435706428,4.5,590.351443593764,64,10841,1,1,1,0,9 +"20361",2017,21099,"KY","21","099",18737,0.942947109996264,1053,0.146181352404334,6.95939851213398,7.66434663209862,8.57073395834427,4.34615384615385,572.501173158142,61,10655,1,1,1,0,9 +"20362",2017,21101,"KY","21","101",45915,0.901818577806817,2527,0.14474572579767,7.83478810738819,8.62281367327992,9.51635340111269,4.45384615384615,536.334793775495,142,26476,1,1,1,0,9 +"20363",2017,21103,"KY","21","103",15979,0.955191188434821,888,0.1449402340572,6.78897174299217,7.53047999524554,8.44182288439146,4.01538461538462,634.99014670462,58,9134,1,1,1,0,9 +"20364",2017,21105,"KY","21","105",4531,0.893180313396601,223,0.142573383359082,5.40717177146012,6.16961073249146,7.12849594568004,7.36923076923077,575.894693541752,14,2431,1,1,1,0,9 +"20365",2017,21107,"KY","21","107",45303,0.914619340882502,2510,0.143588724808512,7.82803803212583,8.60758219114392,9.48706260419162,4.88461538461539,642.431236776303,167,25995,1,1,1,0,9 +"20366",2017,21109,"KY","21","109",13418,0.991280369652705,710,0.143538530332389,6.56526497003536,7.48211892355212,8.28399930424853,8.30769230769231,700.994137139944,55,7846,1,1,1,0,9 +"20367",2017,21111,"KY","21","111",770383,0.735249869220894,48324,0.13492898986608,10.7856836106395,11.473134189077,12.3711251129088,4.30769230769231,509.677349243091,2345,460095,1,1,1,0,9 +"20368",2017,21113,"KY","21","113",53274,0.932368509967339,3654,0.129537860870218,8.20357773693795,8.80911625812527,9.6854559131081,3.71538461538462,509.677419354839,158,31000,1,1,1,0,9 +"20369",2017,21115,"KY","21","115",22618,0.986205676894509,1224,0.140905473516668,7.10987946307227,7.94590959861313,8.81090703609974,8.44615384615385,848.948374760994,111,13075,1,1,1,0,9 +"20370",2017,21117,"KY","21","117",165835,0.925721349534176,9767,0.131908222027919,9.18676463544748,9.97147325032722,10.8138608106462,3.88461538461538,516.238316579115,512,99179,1,1,1,0,9 +"20371",2017,21119,"KY","21","119",15243,0.984714295086269,1073,0.151348159811061,6.9782137426307,7.47986413116503,8.40559101483493,8.33076923076923,782.29772016093,70,8948,1,1,1,0,9 +"20372",2017,21121,"KY","21","121",31461,0.977654874288802,2003,0.126919042624201,7.60240133566582,8.22577079934873,9.11371933337176,7.46153846153846,779.453821566758,139,17833,1,1,1,0,9 +"20373",2017,21123,"KY","21","123",14204,0.955716699521262,777,0.143973528583498,6.65544035036765,7.46106551435428,8.32385113133882,4.61538461538461,509.585052171803,42,8242,1,1,1,0,9 +"20374",2017,21125,"KY","21","125",60343,0.97938451850256,3406,0.133420612167111,8.13329386122263,8.96367227561502,9.80200838358627,5.76153846153846,633.108165399508,224,35381,1,1,1,0,9 +"20375",2017,21127,"KY","21","127",15757,0.986482198388018,802,0.142984070571809,6.68710860786651,7.58832367733522,8.42858053305963,8.90769230769231,843.881856540084,76,9006,1,1,1,0,9 +"20376",2017,21129,"KY","21","129",6860,0.974052478134111,349,0.153790087463557,5.85507192220243,6.68085467879022,7.54750168281497,8.32307692307692,616.491137939892,24,3893,1,1,1,0,9 +"20377",2017,21131,"KY","21","131",10323,0.989828538215635,495,0.148793955245568,6.20455776256869,7.13249755166004,8.01994168767737,9.88461538461539,838.126540673788,51,6085,1,1,1,0,9 +"20378",2017,21133,"KY","21","133",22297,0.988339238462573,1093,0.1514105036552,6.99668148817654,7.93307977188041,8.78874588193814,9.18461538461538,822.981366459627,106,12880,1,1,1,0,9 +"20379",2017,21135,"KY","21","135",13369,0.990126411848306,712,0.149824220210936,6.56807791141198,7.40427911803727,8.25634777291802,9.05384615384615,748.580278781621,58,7748,1,1,1,0,9 +"20380",2017,21137,"KY","21","137",24500,0.967102040816327,1331,0.134489795918367,7.19368581839511,7.95191138185419,8.85907931788153,5.54615384615385,584.289114910193,81,13863,1,1,1,0,9 +"20381",2017,21139,"KY","21","139",9249,0.97988971780733,447,0.16120661693156,6.10255859461357,6.87729607149743,7.88645727097769,7.4,631.216526396327,33,5228,1,1,1,0,9 +"20382",2017,21141,"KY","21","141",27017,0.921456860495244,1482,0.138727467890587,7.30114780585603,8.04910772132641,8.93721845085573,4.31538461538462,429.297932765339,65,15141,1,1,1,0,9 +"20383",2017,21143,"KY","21","143",8293,0.928976245025925,454,0.162426142529844,6.11809719804135,6.91869521902047,7.56631101477246,5.72307692307692,506.756756756757,24,4736,1,1,1,0,9 +"20384",2017,21145,"KY","21","145",65420,0.866386426169367,3446,0.142204218893305,8.14496941708788,8.96737669321267,9.8522995157667,5.95384615384615,509.567951428417,188,36894,1,1,1,0,9 +"20385",2017,21147,"KY","21","147",17421,0.924573790253143,982,0.121520004592159,6.88959130835447,7.82244472948932,8.4144957931779,6.75384615384615,779.467680608365,82,10520,1,1,1,0,9 +"20386",2017,21149,"KY","21","149",9202,0.981308411214953,444,0.141273636166051,6.09582456243222,6.98286275146894,7.85243908535751,5.25384615384615,665.883274578927,34,5106,1,1,1,0,9 +"20387",2017,21151,"KY","21","151",91259,0.931908085777841,11397,0.113380598077998,9.34110544185573,9.30219002560606,10.2380651382965,4.19230769230769,470.660924239946,259,55029,1,1,1,0,9 +"20388",2017,21153,"KY","21","153",12525,0.992175648702595,641,0.150419161676647,6.46302945692067,7.350516171834,8.21066803116298,15.8769230769231,798.700419656153,59,7387,1,1,1,0,9 +"20389",2017,21155,"KY","21","155",19284,0.912051441609625,1160,0.13607135449077,7.05617528410041,7.78405700263993,8.59895749321888,4.09230769230769,479.334358325043,53,11057,1,1,1,0,9 +"20390",2017,21157,"KY","21","157",31324,0.986240582301111,1563,0.148129229983399,7.35436233042148,8.20740183337636,9.09448048588165,5.83846153846154,628.140703517588,110,17512,1,1,1,0,9 +"20391",2017,21159,"KY","21","159",11504,0.923244089012517,604,0.130563282336579,6.40357419793482,7.38523092306657,7.99665387546261,7.48461538461538,670.953312831982,48,7154,1,1,1,0,9 +"20392",2017,21161,"KY","21","161",17221,0.918181290285117,1001,0.136112885430579,6.90875477931522,7.57967882309046,8.50248556254396,6.11538461538461,691.505831355145,67,9689,1,1,1,0,9 +"20393",2017,21163,"KY","21","163",28054,0.939046125329721,1616,0.140871177015755,7.38770923908104,8.24590926477409,9.05228206731791,5.04615384615385,512.014894978763,88,17187,1,1,1,0,9 +"20394",2017,21165,"KY","21","165",6465,0.964578499613302,355,0.157463263727765,5.87211778947542,6.61873898351722,7.50218648660292,8.53846153846154,617.118325731151,23,3727,1,1,1,0,9 +"20395",2017,21167,"KY","21","167",21557,0.944797513568678,1212,0.151876420652224,7.10002716662926,7.77863014732581,8.73552518573323,4.81538461538462,436.787187575831,54,12363,1,1,1,0,9 +"20396",2017,21169,"KY","21","169",10085,0.97183936539415,539,0.141001487357462,6.289715570909,7.0475172213573,7.94058382710424,4,657.894736842105,37,5624,1,1,1,0,9 +"20397",2017,21171,"KY","21","171",10594,0.969605437039834,595,0.145648480271852,6.38856140554563,7.14361760270412,7.99699040583765,3.83846153846154,796.019900497512,48,6030,1,1,1,0,9 +"20398",2017,21173,"KY","21","173",27954,0.960542319524934,1606,0.125599198683552,7.38150189450671,8.22630598801551,9.02545553277906,6.49230769230769,629.969418960245,103,16350,1,1,1,0,9 +"20399",2017,21175,"KY","21","175",13263,0.941114378345774,817,0.144085048631531,6.70563909486,7.52185925220163,8.13123654969612,7.23076923076923,345.690785552509,29,8389,1,1,1,0,9 +"20400",2017,21177,"KY","21","177",30944,0.941474922440538,1926,0.137829627714581,7.56320059235807,8.25842246245888,9.04144823549389,6.8,543.630555399877,97,17843,1,1,1,0,9 +"20401",2017,21179,"KY","21","179",45606,0.934284962504934,2608,0.138600184186291,7.86633892304654,8.65032450401942,9.51414182630785,4.30769230769231,518.482599127159,139,26809,1,1,1,0,9 +"20402",2017,21181,"KY","21","181",7172,0.983407696597881,411,0.138315672058003,6.01859321449623,6.77650699237218,7.62900388965296,5.46153846153846,636.630754162586,26,4084,1,1,1,0,9 +"20403",2017,21183,"KY","21","183",24137,0.97679910510834,1302,0.134109458507685,7.17165682276851,8.00836557031292,8.81001204797317,6.21538461538462,509.187513836617,69,13551,1,1,1,0,9 +"20404",2017,21185,"KY","21","185",66606,0.925937603218929,3812,0.124763534816683,8.24590926477409,9.18255799096373,9.7895346724601,3.43846153846154,296.562911892933,117,39452,1,1,1,0,9 +"20405",2017,21187,"KY","21","187",10794,0.979433018343524,555,0.154715582731147,6.31896811374643,7.18916773842032,8.03008409426756,4.3,370.310739011431,23,6211,1,1,1,0,9 +"20406",2017,21189,"KY","21","189",4404,0.98841961852861,208,0.147366030881017,5.33753807970132,6.19236248947487,7.13568734702814,8.13076923076923,949.367088607595,24,2528,1,1,1,0,9 +"20407",2017,21191,"KY","21","191",14609,0.980354575946334,841,0.148743924977753,6.73459165997295,7.43602781635185,8.34307787116938,4.60769230769231,587.084148727984,51,8687,1,1,1,0,9 +"20408",2017,21193,"KY","21","193",26605,0.96917872580342,1361,0.146776921631272,7.21597500265147,8.11432470915534,8.99404829561107,8.12307692307692,1040.73553824543,163,15662,1,1,1,0,9 +"20409",2017,21195,"KY","21","195",58958,0.983225346857085,3289,0.1513789477255,8.09833884618906,8.923591197573,9.76932739084919,7.6,735.209318417714,255,34684,1,1,1,0,9 +"20410",2017,21197,"KY","21","197",12284,0.981602084011723,695,0.135786388798437,6.54391184556479,7.38087903556412,8.17695386822578,6.52307692307692,944.313289820858,68,7201,1,1,1,0,9 +"20411",2017,21199,"KY","21","199",64377,0.972769778026314,3421,0.140065551361511,8.1376881849776,8.96187901267768,9.83761480838542,5.53846153846154,671.98084718557,247,36757,1,1,1,0,9 +"20412",2017,21203,"KY","21","203",16780,0.988259833134684,914,0.143682955899881,6.81783057145415,7.57044325205737,8.50187648730434,5.69230769230769,705.521472392638,69,9780,1,1,1,0,9 +"20413",2017,21205,"KY","21","205",24546,0.967285912164915,3838,0.108734620712132,8.25270667656764,7.80425138352811,8.91031577632602,5.69230769230769,519.3385267186,76,14634,1,1,1,0,9 +"20414",2017,21207,"KY","21","207",17721,0.97725861971672,940,0.144179222391513,6.84587987526405,7.61085279039525,8.53149049611706,6.99230769230769,697.392359005458,69,9894,1,1,1,0,9 +"20415",2017,21209,"KY","21","209",54820,0.920649398029916,3720,0.116891645384896,8.22147894726719,8.97119446318447,9.71842223507111,3.59230769230769,402.70082054077,133,33027,1,1,1,0,9 +"20416",2017,21211,"KY","21","211",47216,0.897810064384954,3038,0.133450525245679,8.01895468315572,8.73069036567864,9.58548372019796,3.53076923076923,285.52053963382,80,28019,1,1,1,0,9 +"20417",2017,21213,"KY","21","213",18048,0.885749113475177,1053,0.135804521276596,6.95939851213398,7.66340766489348,8.55641390456952,4.46923076923077,619.674670797831,64,10328,1,1,1,0,9 +"20418",2017,21215,"KY","21","215",18583,0.970564494430393,946,0.151482537803369,6.85224256905188,7.83913164827433,8.64117917119723,3.77692307692308,459.404541037194,52,11319,1,1,1,0,9 +"20419",2017,21217,"KY","21","217",25517,0.926402006505467,1983,0.134145863541952,7.5923661285198,7.89095671613892,8.87486763568805,4.30769230769231,589.349610608293,84,14253,1,1,1,0,9 +"20420",2017,21219,"KY","21","219",12203,0.9097762845202,687,0.126444316971237,6.53233429222235,7.28756064030972,8.10922495308995,4.13076923076923,537.393640841917,36,6699,1,1,1,0,9 +"20421",2017,21221,"KY","21","221",14426,0.913350894218772,654,0.154789962567586,6.4831073514572,7.3178761986265,8.2872767558146,5.6,460.005111167902,36,7826,1,1,1,0,9 +"20422",2017,21223,"KY","21","223",8535,0.972466315172818,516,0.140714704159344,6.24610676548156,6.95844839329766,7.82003798945875,4.84615384615385,717.703349282297,36,5016,1,1,1,0,9 +"20423",2017,21225,"KY","21","225",14656,0.850095524017467,1587,0.138168668122271,7.36960072052641,7.45240245122364,8.32627478739676,5.87692307692308,561.090117943433,49,8733,1,1,1,0,9 +"20424",2017,21227,"KY","21","227",129232,0.84383898724774,15211,0.108966819363625,9.62977412931174,9.66396052197139,10.5718552417318,3.99230769230769,398.680588021401,307,77004,1,1,1,0,9 +"20425",2017,21229,"KY","21","229",11871,0.927386066885688,662,0.1373094094853,6.49526555593701,7.26332961747684,8.13064796816058,4.10769230769231,426.032025855737,29,6807,1,1,1,0,9 +"20426",2017,21231,"KY","21","231",20621,0.967411861694389,1119,0.146064691334077,7.02019070831193,7.7848892956551,8.67470962929122,7.63846153846154,721.011112053609,85,11789,1,1,1,0,9 +"20427",2017,21233,"KY","21","233",13012,0.942130341223486,699,0.146633876421765,6.54965074223381,7.40245152081824,8.21986474191265,5.11538461538462,610.160498739886,46,7539,1,1,1,0,9 +"20428",2017,21235,"KY","21","235",36135,0.980517503805175,2767,0.123896499238965,7.92551897978693,8.3133619511344,9.24193593356593,5.65384615384615,816.265954289107,165,20214,1,1,1,0,9 +"20429",2017,21237,"KY","21","237",7264,0.988160792951542,353,0.147301762114537,5.8664680569333,6.81234509417748,7.64012317269536,8.99230769230769,642.292490118577,26,4048,1,1,1,0,9 +"20430",2017,21239,"KY","21","239",26375,0.934028436018957,1529,0.152682464454976,7.33236920592906,8.07246736935477,8.96187901267768,3.20769230769231,333.022512321833,50,15014,1,1,1,0,9 +"20431",2017,25001,"MA","25","001",213856,0.93602704623672,11108,0.17539839892264,9.31542084842669,9.82601237925672,10.9749341731315,4.85384615384615,402.513946755173,456,113288,1,1,1,0,9 +"20432",2017,25003,"MA","25","003",126518,0.935021103716467,8610,0.162459096729319,9.06067959742178,9.47669665771321,10.5170502537532,4.53076923076923,436.723468358279,316,72357,1,1,1,0,9 +"20433",2017,25005,"MA","25","005",561449,0.903989498600941,36960,0.138879933885357,10.5175915257556,11.1313428853253,12.053538990946,4.86153846153846,406.481165779682,1371,337285,1,1,1,0,9 +"20434",2017,25007,"MA","25","007",17422,0.914303753874412,851,0.168407760303065,6.74641212857337,7.57198844937744,8.51719319141624,5.29230769230769,281.746830348159,28,9938,1,1,1,0,9 +"20435",2017,25009,"MA","25","009",785156,0.870271640285497,51814,0.142584403608964,10.8554156620014,11.4398385098627,12.3853896933038,3.89230769230769,321.017630185112,1494,465395,1,1,1,0,9 +"20436",2017,25011,"MA","25","011",70674,0.95251436171718,3754,0.173203724141834,8.23057721714645,9.00208543315572,9.97250042382308,3.43076923076923,328.57925188695,138,41999,1,1,1,0,9 +"20437",2017,25013,"MA","25","013",467552,0.841981212784888,34611,0.136968722195606,10.4519268295954,10.8811743732754,11.8585485616092,5.19230769230769,391.482272842502,1081,276130,1,1,1,0,9 +"20438",2017,25015,"MA","25","015",161070,0.896597752529956,24264,0.133389209660396,10.0967490493684,9.64542900515042,10.8487155343049,3.51538461538462,253.236939917494,248,97932,1,1,1,0,9 +"20439",2017,25017,"MA","25","017",1604762,0.804384076891153,113249,0.129188627347856,11.6373442132842,12.2513471130647,13.1298095854584,3.12307692307692,232.614567687831,2320,997358,1,1,1,0,9 +"20440",2017,25021,"MA","25","021",701046,0.798709357160586,43905,0.138464523012755,10.6897834877941,11.3787996099737,12.2816252879308,3.39230769230769,258.473857590938,1082,418611,1,1,1,0,9 +"20441",2017,25023,"MA","25","023",515984,0.859776659741387,31453,0.147585971658036,10.3562496470865,10.9832058010177,11.9399889726309,4.03076923076923,334.460416076753,1004,300185,1,1,1,0,9 +"20442",2017,25025,"MA","25","025",801269,0.630106743178633,77166,0.103230001410263,11.2537142244941,11.5381057635005,12.5249808188288,3.46153846153846,249.624261543727,1342,537608,1,1,1,0,9 +"20443",2017,25027,"MA","25","027",825646,0.875450253498473,56366,0.141202161701262,10.9396214188275,11.5055986895838,12.4312181915151,4.00769230769231,348.288465270179,1741,499873,1,1,1,0,9 +"20444",2017,24001,"MD","24","001",71363,0.897145579642112,6157,0.133136219049087,8.72534492491121,9.0107912695156,9.84940088663236,5.52307692307692,472.269027220732,199,42137,1,1,1,0,9 +"20445",2017,24003,"MD","24","003",571359,0.764440570639475,36723,0.131964316655553,10.5111585407436,11.2216502783416,12.0684471692851,3.40769230769231,342.790272862199,1201,350360,1,1,1,0,9 +"20446",2017,24005,"MD","24","005",828956,0.625748531888303,51389,0.137247332789678,10.8471794207582,11.5170270419913,12.4522449870252,4.15384615384615,416.810189327621,2045,490631,1,1,1,0,9 +"20447",2017,24009,"MD","24","009",91492,0.831099986884099,5425,0.148362698378,8.59877317840866,9.28359083371578,10.2250274257065,3.49230769230769,351.140291519596,192,54679,1,1,1,0,9 +"20448",2017,24011,"MD","24","011",33122,0.822444296841978,1811,0.143711128555039,7.50163445788341,8.2534880283459,9.18070556684649,4.10769230769231,496.611660027934,96,19331,1,1,1,0,9 +"20449",2017,24013,"MD","24","013",167687,0.933101552296839,10173,0.148657916236798,9.22749243079375,9.82854846587163,10.8103540151624,3.25384615384615,343.127389816865,341,99380,1,1,1,0,9 +"20450",2017,24015,"MD","24","015",102509,0.900164863572955,5925,0.146260328361412,8.68693596600333,9.39015879855202,10.3346204073929,4.59230769230769,521.68242582328,320,61340,1,1,1,0,9 +"20451",2017,24017,"MD","24","017",159718,0.456729986601385,10178,0.129697341564507,9.22798380714878,9.93173481547423,10.8399533913469,3.83076923076923,337.668450511107,330,97729,1,1,1,0,9 +"20452",2017,24019,"MD","24","019",32093,0.679369332876328,1661,0.154395039416695,7.4151751096133,8.09407314806935,9.16251474249358,5.47692307692308,604.816335589835,109,18022,1,1,1,0,9 +"20453",2017,24021,"MD","24","021",251037,0.833853177021714,15329,0.135087656401248,9.63750173816611,10.3760504041768,11.2374354332838,3.51538461538462,277.671263668698,420,151258,1,1,1,0,9 +"20454",2017,24023,"MD","24","023",29276,0.980700915425605,1597,0.159584642710753,7.37588214821501,8.07589363029886,9.04345899967011,4.97692307692308,447.307210592235,75,16767,1,1,1,0,9 +"20455",2017,24025,"MD","24","025",251948,0.81159604362805,14973,0.142632606728373,9.61400385813772,10.3268253221789,11.2439473773122,3.72307692307692,361.860080768769,543,150058,1,1,1,0,9 +"20456",2017,24027,"MD","24","027",319409,0.593618213638313,18420,0.129561158264169,9.8211923098093,10.7097848310287,11.4923043027657,3.00769230769231,209.067931475645,402,192282,1,1,1,0,9 +"20457",2017,24029,"MD","24","029",19486,0.824284101406138,1452,0.154675151390742,7.28069719538474,7.42297125104942,8.58914169072882,4.26923076923077,394.838212634823,41,10384,1,1,1,0,9 +"20458",2017,24031,"MD","24","031",1047239,0.62083917806728,60420,0.130815410808803,11.0090754549407,11.8747103309909,12.6813436278823,3.17692307692308,205.142816439917,1296,631755,1,1,1,0,9 +"20459",2017,24033,"MD","24","033",910946,0.270729549281736,62663,0.128370946247088,11.0455264407939,11.713766145984,12.5826992252706,4.01538461538462,348.579723043345,1974,566298,1,1,1,0,9 +"20460",2017,24035,"MD","24","035",49648,0.910066870770222,2632,0.154527876248791,7.87549929244521,8.58951385299586,9.57435829017017,3.50769230769231,386.934848537665,111,28687,1,1,1,0,9 +"20461",2017,24037,"MD","24","037",112627,0.802462997327461,7426,0.126861232208973,8.91274263473703,9.54287630006159,10.4232927390827,3.82307692307692,363.931044644173,247,67870,1,1,1,0,9 +"20462",2017,24039,"MD","24","039",25922,0.547797237867448,3118,0.131278450736826,8.04494704961772,7.96206730875367,8.83141981909013,6.61538461538461,451.325769447753,72,15953,1,1,1,0,9 +"20463",2017,24041,"MD","24","041",37057,0.844482823757994,1636,0.15470761259681,7.40000951716269,8.13094230223188,9.20823816388431,3.81538461538462,291.925142052859,56,19183,1,1,1,0,9 +"20464",2017,24043,"MD","24","043",150247,0.84612005564171,8883,0.133466891185847,9.0918946167697,9.82406548555864,10.6467097857284,4.47692307692308,441.33707118812,392,88821,1,1,1,0,9 +"20465",2017,24045,"MD","24","045",102471,0.680777976207903,10078,0.127558040811547,9.21811010924054,9.31901538860184,10.3386732620934,5.5,434.238983509056,257,59184,1,1,1,0,9 +"20466",2017,24047,"MD","24","047",51721,0.839794280853038,2500,0.159915701552561,7.82404601085629,8.47886807709457,9.55314963005328,8.25384615384615,491.258488657708,136,27684,1,1,1,0,9 +"20467",2017,24510,"MD","24","510",610853,0.319600624045392,42506,0.126981450529014,10.6574005214186,11.2234150554618,12.2232836822605,5.92307692307692,693.111123202769,2675,385941,1,1,1,0,9 +"20468",2017,23001,"ME","23","001",107507,0.934357762750333,6382,0.142939529519008,8.76123680683819,9.4501443641835,10.3659314287193,3.2,440.570674216277,277,62873,0,1,0,0,9 +"20469",2017,23003,"ME","23","003",67638,0.960155533871492,3636,0.167213696442828,8.19863945529737,8.86333283343959,9.84495761034573,4.90769230769231,485.206476451664,184,37922,0,1,0,0,9 +"20470",2017,23005,"ME","23","005",292549,0.935415947413938,18055,0.146956578214248,9.80117793371156,10.4809432585999,11.4145846975709,2.61538461538462,313.371847259405,556,177425,0,1,0,0,9 +"20471",2017,23007,"ME","23","007",29808,0.98101180891036,1897,0.168578904991948,7.54802896993501,8.00336305862995,9.06750872286864,4.14615384615385,356.620871090324,61,17105,0,1,0,0,9 +"20472",2017,23009,"ME","23","009",54584,0.970540817822072,2595,0.172394840979041,7.86134179559999,8.6459381473068,9.67627322685144,3.98461538461538,399.561770960882,124,31034,0,1,0,0,9 +"20473",2017,23011,"ME","23","011",121970,0.971509387554317,7245,0.159629417069771,8.88806685475478,9.53184399290347,10.5064638245848,3.31538461538462,463.562330340363,333,71835,0,1,0,0,9 +"20474",2017,23013,"ME","23","013",39774,0.977950419872278,1934,0.166264393825112,7.56734567601324,8.37793112408273,9.30873669383238,3.21538461538462,418.184270875489,93,22239,0,1,0,0,9 +"20475",2017,23015,"ME","23","015",34228,0.978555568540376,1611,0.171380156596938,7.38461038317697,8.11820704940578,9.15725600088373,3.33846153846154,354.210272097891,66,18633,0,1,0,0,9 +"20476",2017,23017,"ME","23","017",57549,0.977619072442614,2730,0.1770664998523,7.91205688817901,8.77616709973127,9.7361925297588,3.87692307692308,465.935903945521,156,33481,0,1,0,0,9 +"20477",2017,23019,"ME","23","019",151785,0.960154165431367,10623,0.150614355832263,9.27077674078001,9.74741836688624,10.7336537867542,3.80769230769231,429.87464724027,393,91422,0,1,0,0,9 +"20478",2017,23021,"ME","23","021",16809,0.973288119459813,683,0.186209768576358,6.52649485957079,7.42177579364465,8.454679286027,4.1,573.71725481706,53,9238,0,1,0,0,9 +"20479",2017,23023,"ME","23","023",35471,0.972710101209439,1653,0.16655859716388,7.41034709782102,8.27154837475551,9.25846364715791,2.76153846153846,333.07210031348,68,20416,0,1,0,0,9 +"20480",2017,23025,"ME","23","025",50373,0.97673356758581,2495,0.164949476902309,7.82204400818562,8.64558640618464,9.59736991792866,4.95384615384615,565.852336258598,167,29513,0,1,0,0,9 +"20481",2017,23027,"ME","23","027",39791,0.978186021964766,2039,0.165087582619185,7.62021477057445,8.4424696452203,9.35444071594994,3.67692307692308,429.843414184833,98,22799,0,1,0,0,9 +"20482",2017,23029,"ME","23","029",31370,0.926649665285304,1671,0.170640739560089,7.42117752859539,8.05896001776942,9.0753221602981,5.04615384615385,539.795566785345,94,17414,0,1,0,0,9 +"20483",2017,23031,"ME","23","031",204537,0.968411583234329,11011,0.161452451145758,9.30665005211359,10.0490586758553,11.0257838152084,3,402.362740380627,485,120538,0,1,0,0,9 +"20484",2017,26001,"MI","26","001",10305,0.980494905385735,367,0.200388161086851,5.90536184805457,6.65672652417839,7.8458075026378,7.06923076923077,598.918083462133,31,5176,1,1,1,0,9 +"20485",2017,26003,"MI","26","003",9152,0.863745629370629,485,0.177666083916084,6.18414889093748,6.91869521902047,7.68708015578313,8.25384615384615,432.330827067669,23,5320,1,1,1,0,9 +"20486",2017,26005,"MI","26","005",116393,0.961303514816183,6574,0.143840265308051,8.79087775422416,9.52995706295831,10.4104557459748,3.70769230769231,352.086298599146,235,66745,1,1,1,0,9 +"20487",2017,26007,"MI","26","007",28434,0.977140043609763,1458,0.172469578673419,7.2848209125686,8.01730750768858,8.98919482332465,5.62307692307692,512.884663497623,82,15988,1,1,1,0,9 +"20488",2017,26009,"MI","26","009",23267,0.97644732883483,1148,0.177031847681265,7.04577657687951,7.65444322647011,8.73214326770192,6.5,337.865014882149,42,12431,1,1,1,0,9 +"20489",2017,26011,"MI","26","011",15009,0.974282097408222,721,0.184822439869412,6.58063913728495,7.29844510150815,8.32142158689788,7.99230769230769,611.437477520681,51,8341,1,1,1,0,9 +"20490",2017,26013,"MI","26","013",8433,0.75904185936203,495,0.151666073757856,6.20455776256869,6.87523208727658,7.59890045687141,7.61538461538461,527.490363156827,26,4929,1,1,1,0,9 +"20491",2017,26015,"MI","26","015",60689,0.978035558338414,3397,0.154311324951803,8.13064796816058,8.83360848269089,9.74630728814851,3.9,399.631993559887,139,34782,1,1,1,0,9 +"20492",2017,26017,"MI","26","017",104085,0.958889369265504,5939,0.153883844934429,8.68929604801586,9.37560054084184,10.3135089317255,5.46153846153846,417.394196391453,251,60135,1,1,1,0,9 +"20493",2017,26019,"MI","26","019",17625,0.96663829787234,780,0.172709219858156,6.65929391968364,7.43720636687129,8.47616284185825,6.40769230769231,336.346436829935,32,9514,1,1,1,0,9 +"20494",2017,26021,"MI","26","021",154264,0.808490639423326,8987,0.146534512264689,9.10353436765837,9.76675102896266,10.689031582362,4.76923076923077,463.511415262522,403,86945,1,1,1,0,9 +"20495",2017,26023,"MI","26","023",43345,0.959972315145922,2392,0.145622332448956,7.77988511507052,8.53856321715243,9.34329659922481,4.53846153846154,369.543147208122,91,24625,1,1,1,0,9 +"20496",2017,26025,"MI","26","025",134127,0.831458244797841,8622,0.139129332647416,9.06207235530708,9.66554757197916,10.5671801754209,4.8,530.014526324055,405,76413,1,1,1,0,9 +"20497",2017,26027,"MI","26","027",51534,0.908545814413785,2766,0.156634454922963,7.9251575122247,8.63141433550626,9.57031984992322,4.52307692307692,428.694900605013,124,28925,1,1,1,0,9 +"20498",2017,26029,"MI","26","029",26218,0.963612785109467,1328,0.174307727515447,7.19142933003638,7.84932381804056,8.88391747120797,5.53846153846154,361.086035691966,52,14401,1,1,1,0,9 +"20499",2017,26031,"MI","26","031",25448,0.948443885570575,1204,0.178481609556743,7.09340462586877,7.79523492900217,8.85123390284603,10.0076923076923,403.487282945457,56,13879,1,1,1,0,9 +"20500",2017,26033,"MI","26","033",37699,0.730258097031751,3423,0.137271545664341,8.13827263853019,8.45998771764546,9.16450583563238,7.56923076923077,385.198009088942,89,23105,1,1,1,0,9 +"20501",2017,26035,"MI","26","035",30553,0.974994272248224,1489,0.167414001898341,7.30586003268401,8.04590874227078,9.03360319347613,6.85384615384615,571.666765914369,96,16793,1,1,1,0,9 +"20502",2017,26037,"MI","26","037",78550,0.949637173774666,4854,0.142978994271165,8.48755838628655,9.1586259362895,10.0531567770548,3.57692307692308,229.273462678174,106,46233,1,1,1,0,9 +"20503",2017,26039,"MI","26","039",13894,0.972865985317403,636,0.184324168705916,6.45519856334012,7.15148546390474,8.23217423638394,6.84615384615385,641.865339271679,49,7634,1,1,1,0,9 +"20504",2017,26041,"MI","26","041",35911,0.953830302692768,1684,0.16744173094595,7.42892719480227,8.23880116587155,9.17957183830455,6.19230769230769,414.322250639386,81,19550,1,1,1,0,9 +"20505",2017,26043,"MI","26","043",25453,0.973087651750285,1327,0.169135268927042,7.19067603433221,7.89133075766189,8.8667226671941,4.64615384615385,390.625,56,14336,1,1,1,0,9 +"20506",2017,26045,"MI","26","045",109479,0.887823235506353,6998,0.146457311447858,8.85337967292763,9.44549154241467,10.3883797942756,4.04615384615385,368.419402376697,235,63786,1,1,1,0,9 +"20507",2017,26047,"MI","26","047",33102,0.936015950697843,1857,0.163675910821098,7.52671756135271,8.18255926406867,9.15260532132494,6.46923076923077,336.430631207946,63,18726,1,1,1,0,9 +"20508",2017,26049,"MI","26","049",407673,0.764365067100348,25738,0.142945448925977,10.1557237780536,10.7720575481989,11.7127185026762,5.60769230769231,555.671025785681,1310,235751,1,1,1,0,9 +"20509",2017,26051,"MI","26","051",25236,0.981138056744334,1131,0.169440481851324,7.03085747611612,7.76514490293613,8.79315687091382,6.41538461538462,583.352030513798,78,13371,1,1,1,0,9 +"20510",2017,26053,"MI","26","053",15337,0.91549846775771,869,0.168025037491035,6.76734312526539,7.40000951716269,8.22603842948548,5.86153846153846,442.477876106195,39,8814,1,1,1,0,9 +"20511",2017,26055,"MI","26","055",91914,0.963868398720543,4982,0.155351741845638,8.51358669582213,9.28405540979846,10.2085059782348,4.13846153846154,358.657276819905,192,53533,1,1,1,0,9 +"20512",2017,26057,"MI","26","057",40978,0.920737956952511,3173,0.129508516765093,8.0624327915832,8.54422453046727,9.25941620962278,5.35384615384615,408.496732026144,100,24480,1,1,1,0,9 +"20513",2017,26059,"MI","26","059",45831,0.977635225066003,2957,0.153607820034474,7.99193051985248,8.50774873258824,9.45281585158988,4.82307692307692,362.191844841687,93,25677,1,1,1,0,9 +"20514",2017,26061,"MI","26","061",36270,0.94769782189137,5425,0.117700578990902,8.59877317840866,8.11492297420459,9.10742131796834,5.85384615384615,314.759258348497,64,20333,1,1,1,0,9 +"20515",2017,26063,"MI","26","063",31304,0.98211091234347,1562,0.169818553539484,7.35372233039963,8.01730750768858,9.02533521755303,5.1,507.67414403778,86,16940,1,1,1,0,9 +"20516",2017,26065,"MI","26","065",291678,0.776692105678179,40722,0.114801253437009,10.6145237659318,10.3732098922237,11.4199655211963,4.22307692307692,346.670112766113,617,177979,1,1,1,0,9 +"20517",2017,26067,"MI","26","067",64293,0.93325867512793,4443,0.134151462834212,8.39908510293591,9.03360319347613,9.74852821249799,3.9,358.047108769597,140,39101,1,1,1,0,9 +"20518",2017,26069,"MI","26","069",25180,0.969181890389198,1104,0.181254964257347,7.00669522683704,7.68386398025643,8.78676220844109,7.26153846153846,650.234386813852,86,13226,1,1,1,0,9 +"20519",2017,26071,"MI","26","071",11112,0.971382289416847,452,0.190964722822174,6.11368217983223,6.91572344863131,7.94378269245863,6.3,589.765828274068,34,5765,1,1,1,0,9 +"20520",2017,26073,"MI","26","073",71035,0.898289575561343,13814,0.107806011121278,9.53343784964892,8.82600054548297,10.0117588278199,4.4,293.374255280737,130,44312,1,1,1,0,9 +"20521",2017,26075,"MI","26","075",158653,0.889223651617051,10029,0.144277133114407,9.21323617508821,9.8199972420371,10.6961859071577,4.53846153846154,465.557375635831,432,92792,1,1,1,0,9 +"20522",2017,26077,"MI","26","077",263387,0.829915675412985,32025,0.118229069771857,10.3742721267649,10.3174828416477,11.2935498062249,3.96153846153846,315.893012522226,501,158598,1,1,1,0,9 +"20523",2017,26079,"MI","26","079",17582,0.972187464452281,899,0.159310658628142,6.80128303447162,7.5923661285198,8.50410795186758,6.83076923076923,506.807115174401,51,10063,1,1,1,0,9 +"20524",2017,26081,"MI","26","081",649722,0.837545904248278,45055,0.124157716684982,10.7156392446691,11.2935747118947,12.1844965465624,3.40769230769231,289.279636982416,1122,387860,1,1,1,0,9 +"20525",2017,26085,"MI","26","085",11977,0.880604491942891,520,0.195541454454371,6.25382881157547,7.02464903045364,8.0643219609108,8.04615384615385,623.289753724536,41,6578,1,1,1,0,9 +"20526",2017,26087,"MI","26","087",88218,0.970266838967104,5159,0.162925933482963,8.54849804124465,9.19034172546949,10.1419137273815,5.51538461538462,412.834347817738,215,52079,1,1,1,0,9 +"20527",2017,26089,"MI","26","089",21638,0.941815324891395,1021,0.18814123301599,6.92853781816467,7.53743003658651,8.65364531455174,4.74615384615385,329.240078305748,37,11238,1,1,1,0,9 +"20528",2017,26091,"MI","26","091",98511,0.949792408969557,6248,0.143527118798916,8.74001669151952,9.34574500898239,10.2137624736405,4.63076923076923,390.018353804885,221,56664,1,1,1,0,9 +"20529",2017,26093,"MI","26","093",189923,0.974210601138356,11118,0.158374709750794,9.31632069551342,9.97803828380042,10.9331783957378,3.40769230769231,296.267385750781,334,112736,1,1,1,0,9 +"20530",2017,26097,"MI","26","097",10758,0.769380925822644,514,0.183026584867076,6.24222326545517,6.95654544315157,7.9755646584952,10.8615384615385,407.262854233837,24,5893,1,1,1,0,9 +"20531",2017,26099,"MI","26","099",870867,0.82579199808926,53669,0.142634868470157,10.8905908326142,11.5615632365761,12.4908379684006,4.39230769230769,411.734234535595,2154,523153,1,1,1,0,9 +"20532",2017,26101,"MI","26","101",24406,0.931451282471523,1321,0.174014586577071,7.18614430452233,7.77106708606541,8.74161592422883,6.42307692307692,465.872957184057,63,13523,1,1,1,0,9 +"20533",2017,26103,"MI","26","103",66524,0.94752269857495,7650,0.14298599001864,8.94246092682058,8.88322423027899,9.87519095338101,5.5,369.770033431263,146,39484,1,1,1,0,9 +"20534",2017,26105,"MI","26","105",29025,0.964685615848407,1476,0.165374677002584,7.29709100516042,7.99967857949945,8.98356523442792,5.7,357.950263752826,57,15924,1,1,1,0,9 +"20535",2017,26107,"MI","26","107",43271,0.942779228582654,5456,0.135009590718957,8.6044711995233,8.29804166137157,9.3968199389188,5.63846153846154,318.972826745266,79,24767,1,1,1,0,9 +"20536",2017,26109,"MI","26","109",23003,0.952919184454202,1108,0.176194409424858,7.01031186730723,7.78155595923534,8.7371316117815,4.76923076923077,457.790192427064,59,12888,1,1,1,0,9 +"20537",2017,26111,"MI","26","111",83442,0.949389995445938,4948,0.142865703123127,8.50673873351238,9.18789024313859,10.0944384360281,4.56153846153846,340.35355514759,165,48479,1,1,1,0,9 +"20538",2017,26113,"MI","26","113",15020,0.973501997336884,829,0.150998668442077,6.7202201551353,7.32646561384032,8.29279885820037,5.76153846153846,329.027540823787,27,8206,1,1,1,0,9 +"20539",2017,26115,"MI","26","115",149523,0.956428108050267,8600,0.154959437678484,9.0595174822416,9.75794141390479,10.691785809335,4.68461538461538,434.693552424953,382,87878,1,1,1,0,9 +"20540",2017,26117,"MI","26","117",63553,0.958979119789782,3689,0.142888612654005,8.21311069759668,8.93866287366612,9.7586929676329,4.91538461538462,462.775026386295,171,36951,1,1,1,0,9 +"20541",2017,26119,"MI","26","119",9237,0.980946194651943,365,0.201472339504168,5.89989735358249,6.62539236800796,7.77275271646874,10.3230769230769,582.968977722257,28,4803,1,1,1,0,9 +"20542",2017,26121,"MI","26","121",173804,0.822466686612506,10687,0.143023175531058,9.2767833285249,9.94145748378776,10.814102205912,5.21538461538462,442.346220220975,446,100826,1,1,1,0,9 +"20543",2017,26123,"MI","26","123",48332,0.96714392121162,2619,0.156562939667301,7.87054784450771,8.54130026675947,9.5100745254521,4.86153846153846,462.673961737598,126,27233,1,1,1,0,9 +"20544",2017,26125,"MI","26","125",1256478,0.766089816136852,75526,0.142892275073658,11.232232246816,11.9604342210761,12.8533224737031,3.53076923076923,318.454406260633,2396,752384,1,1,1,0,9 +"20545",2017,26127,"MI","26","127",26438,0.963650805658522,1500,0.152583402677964,7.3132203870903,7.91169052070834,8.85794198480471,7.04615384615385,453.37239310874,65,14337,1,1,1,0,9 +"20546",2017,26129,"MI","26","129",20887,0.975056255086896,992,0.182074974864748,6.89972310728487,7.61085279039525,8.64400203827993,7.58461538461538,675.972258800808,77,11391,1,1,1,0,9 +"20547",2017,26131,"MI","26","131",5888,0.969259510869565,177,0.209408967391304,5.17614973257383,6.09356977004514,7.29709100516042,8.67692307692308,639.515314708852,19,2971,1,1,1,0,9 +"20548",2017,26133,"MI","26","133",23267,0.972493230756006,1165,0.152017879400009,7.0604763659998,7.82524529143177,8.74496601111411,5.88461538461539,456.944772709367,58,12693,1,1,1,0,9 +"20549",2017,26135,"MI","26","135",8236,0.977294803302574,387,0.195118989800874,5.95842469302978,6.51471269087253,7.67461749736436,7.26153846153846,855.491329479769,37,4325,1,1,1,0,9 +"20550",2017,26137,"MI","26","137",24540,0.971352893235534,1341,0.153504482477588,7.20117088328168,7.84306401669205,8.83229585944401,5.9,379.229871645274,52,13712,1,1,1,0,9 +"20551",2017,26139,"MI","26","139",286452,0.938150196193429,26578,0.120131819641685,10.1878390848915,10.4130123305691,11.3129245451583,3.23076923076923,229.899150905803,375,163115,1,1,1,0,9 +"20552",2017,26141,"MI","26","141",12740,0.973783359497645,542,0.193799058084772,6.29526600143965,7.03614849375054,8.10288913464087,9.15384615384615,621.306258524019,41,6599,1,1,1,0,9 +"20553",2017,26143,"MI","26","143",23738,0.973502401213245,911,0.201154267419328,6.81454289725996,7.52833176670725,8.73664995487245,8.71538461538461,769.293060166815,95,12349,1,1,1,0,9 +"20554",2017,26145,"MI","26","145",192002,0.771965917021698,12877,0.14161310819679,9.46319805327378,9.94841311588912,10.9229664422065,5.32307692307692,478.266856382246,521,108935,1,1,1,0,9 +"20555",2017,26147,"MI","26","147",159130,0.9526236410482,9124,0.157135675234085,9.11866358340428,9.78846944095186,10.746562222079,5.11538461538461,491.363587597897,458,93210,1,1,1,0,9 +"20556",2017,26149,"MI","26","149",60703,0.948256264105563,3557,0.142019340065565,8.17667277194846,8.8349193852164,9.72442069346267,4.15384615384615,448.681996634885,152,33877,1,1,1,0,9 +"20557",2017,26151,"MI","26","151",41257,0.979664057008508,2242,0.161548343311438,7.7151236036321,8.36077327214494,9.33308883723524,5.79230769230769,451.813835153748,103,22797,1,1,1,0,9 +"20558",2017,26153,"MI","26","153",8010,0.882646691635456,386,0.196504369538077,5.95583736946483,6.65544035036765,7.71154897962915,8.2,407.885791978246,18,4413,1,1,1,0,9 +"20559",2017,26155,"MI","26","155",68422,0.975490339364532,4114,0.152144047236269,8.3221510702129,8.9621353900666,9.89767066721456,5.07692307692308,469.353948094975,187,39842,1,1,1,0,9 +"20560",2017,26157,"MI","26","157",52817,0.97266031770074,2979,0.158812503549993,7.99934295271328,8.66699155650463,9.61099392308713,6.10769230769231,435.198311958063,132,30331,1,1,1,0,9 +"20561",2017,26159,"MI","26","159",75296,0.928588504037399,4210,0.152969613259669,8.34521792667643,9.06843112579349,9.9704917813166,5.61538461538461,453.104824509919,193,42595,1,1,1,0,9 +"20562",2017,26161,"MI","26","161",369703,0.757334941831686,48836,0.114386412877364,10.7962230247887,10.6442575495135,11.6494997233794,3.47692307692308,229.972499486278,526,228723,1,1,1,0,9 +"20563",2017,26163,"MI","26","163",1757874,0.556014822450301,115620,0.133526635014796,11.6580642306365,12.2407059294245,13.187589162322,5.52307692307692,555.238365730316,5728,1031629,1,1,1,0,9 +"20564",2017,26165,"MI","26","165",33229,0.973095789822143,1809,0.150200126395618,7.5005294853953,8.21093973337902,9.13507788747564,5.48461538461538,414.491037304193,77,18577,1,1,1,0,9 +"20565",2017,27001,"MN","27","001",15798,0.957716166603368,601,0.181162172426889,6.39859493453521,7.1708884785125,8.25660734462616,6.27692307692308,590.576453973552,46,7789,1,1,1,0,9 +"20566",2017,27003,"MN","27","003",350598,0.865789308552815,20103,0.138839924928265,9.90862433664128,10.7399338904046,11.5581473656911,3.39230769230769,262.718499721717,557,212014,1,1,1,0,9 +"20567",2017,27005,"MN","27","005",34089,0.892076622957552,1740,0.151163131802048,7.46164039220858,8.2445967563825,9.10197534729806,4.21538461538462,386.185589760565,70,18126,1,1,1,0,9 +"20568",2017,27007,"MN","27","007",46497,0.743424306944534,4500,0.12215841882272,8.41183267575841,8.50065722277614,9.46529261980504,4.90769230769231,373.948270489249,96,25672,1,1,1,0,9 +"20569",2017,27009,"MN","27","009",40219,0.92903851413511,2439,0.117456923344688,7.79934339821592,8.59840444684106,9.35582503871816,4.06923076923077,323.418017787991,76,23499,1,1,1,0,9 +"20570",2017,27013,"MN","27","013",66931,0.920799031838759,10890,0.10911236945511,9.29560021592701,8.86686366120209,9.89701666140582,2.93846153846154,227.028610487257,93,40964,1,1,1,0,9 +"20571",2017,27015,"MN","27","015",25173,0.980455249672268,1729,0.15028006197116,7.45529848568329,7.87016594646984,8.82995804423548,3.73076923076923,276.70574528508,38,13733,1,1,1,0,9 +"20572",2017,27017,"MN","27","017",35498,0.906896163164122,1914,0.144458842751704,7.5569505720129,8.40737832540903,9.15873123824295,4.79230769230769,338.376758350655,70,20687,1,1,1,0,9 +"20573",2017,27019,"MN","27","019",102120,0.937005483744614,5623,0.130630630630631,8.6346206082922,9.57699534929726,10.3165900877735,2.94615384615385,171.264195806521,103,60141,1,1,1,0,9 +"20574",2017,27021,"MN","27","021",29324,0.852373482471696,1285,0.17006547537853,7.15851399732932,7.92660259918138,8.92345797969497,6.05384615384615,572.971548998946,87,15184,1,1,1,0,9 +"20575",2017,27023,"MN","27","023",11948,0.949949782390358,667,0.143120187479076,6.50279004591562,7.15226885603254,8.0471895621705,4.00769230769231,359.262730396751,23,6402,1,1,1,0,9 +"20576",2017,27025,"MN","27","025",55261,0.960985143229402,2986,0.14482184542444,8.00168997809913,8.82541291508557,9.65988615931952,4.01538461538462,302.865103882731,100,33018,1,1,1,0,9 +"20577",2017,27027,"MN","27","027",63844,0.921480483678968,6690,0.108608483177746,8.80836915312227,8.97651497231511,9.82493123963035,3.25384615384615,311.307219620476,115,36941,1,1,1,0,9 +"20578",2017,27029,"MN","27","029",8842,0.881135489708211,412,0.146573173490161,6.02102334934953,6.88141130364254,7.72929567431048,8.78461538461539,425.985090521832,20,4695,1,1,1,0,9 +"20579",2017,27033,"MN","27","033",11263,0.935008434697683,620,0.141170203320607,6.42971947803914,7.04315991598834,7.94590959861313,5.28461538461538,295.343988881167,17,5756,1,1,1,0,9 +"20580",2017,27035,"MN","27","035",64324,0.970197748896213,3232,0.152757913065108,8.08085641964099,8.84793475332846,9.76261499365471,4.53076923076923,376.959762401119,132,35017,1,1,1,0,9 +"20581",2017,27037,"MN","27","037",421840,0.860733927555471,24501,0.13600180163095,10.1064692120264,10.9257945849942,11.7524146948205,3.05384615384615,216.067648238691,544,251773,1,1,1,0,9 +"20582",2017,27039,"MN","27","039",20708,0.975709870581418,1166,0.131205331272938,7.06133436691044,7.91278922069068,8.6711152736885,3.40769230769231,295.683027794205,35,11837,1,1,1,0,9 +"20583",2017,27041,"MN","27","041",37547,0.980344634724479,1929,0.149519269182624,7.56475701290573,8.32093496888341,9.21890360263667,3.20769230769231,283.882335666389,58,20431,1,1,1,0,9 +"20584",2017,27043,"MN","27","043",13767,0.97697392314956,654,0.158059126897654,6.4831073514572,7.32974968904151,8.17779668327778,4.2,477.424635111172,35,7331,1,1,1,0,9 +"20585",2017,27045,"MN","27","045",20976,0.983838672768879,1021,0.148789092295957,6.92853781816467,7.75619534394812,8.60703389541603,3.53846153846154,251.70801869831,28,11124,1,1,1,0,9 +"20586",2017,27047,"MN","27","047",30584,0.949025634318598,1532,0.151778707821083,7.33432935030054,8.10982627601848,8.9947928972836,3.68461538461538,423.267626073286,70,16538,1,1,1,0,9 +"20587",2017,27049,"MN","27","049",46341,0.956776936190414,2418,0.154334174920697,7.79069603117474,8.58260632996447,9.47077970803409,3.26153846153846,321.457272970801,84,26131,1,1,1,0,9 +"20588",2017,27053,"MN","27","053",1248707,0.760356913191005,78831,0.127174749560946,11.2750615994993,12.0263417301251,12.8632247051165,3.06153846153846,257.208992921928,1999,777189,1,1,1,0,9 +"20589",2017,27055,"MN","27","055",18705,0.97738572574178,940,0.169633787757284,6.84587987526405,7.6246189861594,8.54733434832822,3.44615384615385,287.880241819403,30,10421,1,1,1,0,9 +"20590",2017,27057,"MN","27","057",20989,0.955929296298061,892,0.167849826099385,6.79346613258001,7.68570306123455,8.5972974356579,5.69230769230769,281.997634858546,31,10993,1,1,1,0,9 +"20591",2017,27059,"MN","27","059",39537,0.967119407137618,2180,0.142676480258998,7.68708015578313,8.49392456447688,9.33512108887349,4.33846153846154,323.610631687953,75,23176,1,1,1,0,9 +"20592",2017,27061,"MN","27","061",45096,0.941613446868902,2127,0.165713145290048,7.66246781520024,8.50815244676409,9.39963754250656,7.03076923076923,351.350247170813,86,24477,1,1,1,0,9 +"20593",2017,27063,"MN","27","063",9968,0.965389245585875,493,0.160112359550562,6.20050917404269,7.05098944706805,7.85360481309784,3.66153846153846,331.552772149567,18,5429,1,1,1,0,9 +"20594",2017,27065,"MN","27","065",16069,0.972369158006099,805,0.165660588711183,6.69084227741856,7.50273821075485,8.37885024179449,6.11538461538461,355.160932297447,32,9010,1,1,1,0,9 +"20595",2017,27067,"MN","27","067",42747,0.921187451751,2544,0.146045336514843,7.84149292446001,8.44505251363855,9.36056908522287,3.26923076923077,254.237288135593,60,23600,1,1,1,0,9 +"20596",2017,27071,"MN","27","071",12505,0.953378648540584,556,0.18000799680128,6.32076829425058,7.15226885603254,8.12266802334641,7.17692307692308,361.742150195341,25,6911,1,1,1,0,9 +"20597",2017,27075,"MN","27","075",10481,0.977769296822822,434,0.185860127850396,6.0730445341004,6.99117688712121,7.92624152317096,3.9,384.548155916798,22,5721,1,1,1,0,9 +"20598",2017,27079,"MN","27","079",28193,0.976802752456283,1488,0.143475330755861,7.30518821539304,8.14554963178358,8.96533457380484,4.69230769230769,226.073850791258,36,15924,1,1,1,0,9 +"20599",2017,27083,"MN","27","083",25974,0.901478401478402,1756,0.127666127666128,7.47079377419506,8.02486215028641,8.87738195465477,3.21538461538462,269.430051813471,39,14475,1,1,1,0,9 +"20600",2017,27085,"MN","27","085",35860,0.975432236475181,2019,0.136670384829894,7.61035761831284,8.33014046024638,9.2024090016499,3.81538461538462,237.765008916188,48,20188,1,1,1,0,9 +"20601",2017,27087,"MN","27","087",5563,0.50476361675355,283,0.128348013661693,5.64544689764324,6.33682573114644,7.21081845347222,5.06153846153846,1349.87230937614,37,2741,1,1,1,0,9 +"20602",2017,27091,"MN","27","091",19867,0.976443348265969,1039,0.160416771530679,6.94601399109923,7.59588991771854,8.56025268087669,3.50769230769231,443.982618552806,47,10586,1,1,1,0,9 +"20603",2017,27093,"MN","27","093",23037,0.981638234145071,1197,0.151669054130312,7.08757370555797,7.84854348245668,8.6941671418836,4.07692307692308,273.289928462342,34,12441,1,1,1,0,9 +"20604",2017,27095,"MN","27","095",25845,0.915573611917199,1238,0.143509382859354,7.12125245324454,8.02158453345511,8.86559399890272,5.58461538461538,415.829232795065,60,14429,1,1,1,0,9 +"20605",2017,27097,"MN","27","097",33075,0.980408163265306,1664,0.152743764172336,7.41697962138115,8.23562571996431,9.0990735595476,5.35384615384615,316.334878647396,58,18335,1,1,1,0,9 +"20606",2017,27099,"MN","27","099",39789,0.901807032094297,2215,0.129256829777074,7.70300768247924,8.44074401925283,9.26074827452003,2.84615384615385,301.498214202885,65,21559,1,1,1,0,9 +"20607",2017,27103,"MN","27","103",34081,0.936562894281271,2931,0.126492767231008,7.98309894071089,8.36100710822691,9.15925758174687,2.56153846153846,182.95471870712,36,19677,1,1,1,0,9 +"20608",2017,27105,"MN","27","105",21659,0.854194561152408,1377,0.124798005448082,7.22766249872865,7.80669637252118,8.60300384782935,3.21538461538462,267.268019711016,32,11973,1,1,1,0,9 +"20609",2017,27109,"MN","27","109",154883,0.857821710581536,8939,0.130924633432978,9.09817900508785,9.90413734137763,10.7355920039839,2.72307692307692,202.958338388908,184,90659,1,1,1,0,9 +"20610",2017,27111,"MN","27","111",58213,0.965110885884596,2862,0.164241664233075,7.9592759601164,8.6704291673151,9.61906682278672,4.01538461538462,334.665496962017,103,30777,1,1,1,0,9 +"20611",2017,27113,"MN","27","113",14192,0.94912626832018,847,0.140713077790304,6.74170069465205,7.43425738213314,8.28324144138542,5.63846153846154,270.469633636587,22,8134,1,1,1,0,9 +"20612",2017,27115,"MN","27","115",29159,0.926883637984842,1447,0.163723035769402,7.27724772663148,8.16791936295782,8.9237243977064,5.73076923076923,435.678539888137,74,16985,1,1,1,0,9 +"20613",2017,27117,"MN","27","117",9168,0.944589877835951,478,0.142561082024433,6.16961073249146,6.84800527457636,7.76259604854007,3.38461538461538,298.507462686567,14,4690,1,1,1,0,9 +"20614",2017,27119,"MN","27","119",31636,0.935137185484891,1996,0.141389556201795,7.59890045687141,8.15937473677543,9.04381342108087,4.24615384615385,376.433012034449,66,17533,1,1,1,0,9 +"20615",2017,27121,"MN","27","121",10985,0.979244424214838,498,0.162494310423305,6.21060007702465,7.04315991598834,7.94909149983052,3.09230769230769,203.873598369011,12,5886,1,1,1,0,9 +"20616",2017,27123,"MN","27","123",544919,0.693464533260907,39059,0.12331374020726,10.5728286024644,11.1023221790059,12.0168050205633,3.27692307692308,299.415803788128,982,327972,1,1,1,0,9 +"20617",2017,27127,"MN","27","127",15250,0.907606557377049,807,0.142688524590164,6.69332366826995,7.37337430991005,8.25868149626424,4.1,490.01130795326,39,7959,1,1,1,0,9 +"20618",2017,27129,"MN","27","129",14681,0.962945303453443,786,0.160615761869082,6.66695679242921,7.34601020991329,8.24275634571448,4.46923076923077,376.742433756122,30,7963,1,1,1,0,9 +"20619",2017,27131,"MN","27","131",66199,0.906101300623877,6570,0.12823456547682,8.79026911147866,8.94010521312812,9.81049468568696,3.20769230769231,275.71138740051,106,38446,1,1,1,0,9 +"20620",2017,27135,"MN","27","135",15302,0.939877140243105,862,0.156188733498889,6.75925527066369,7.42952084278646,8.31409733540581,4.86923076923077,390.580126364159,34,8705,1,1,1,0,9 +"20621",2017,27137,"MN","27","137",199872,0.937735150496318,18174,0.152477585654819,9.80774728025529,10.0044182711146,10.9557766315986,4.66923076923077,376.389054845262,441,117166,1,1,1,0,9 +"20622",2017,27139,"MN","27","139",145581,0.86839628797714,7794,0.117061979241797,8.96110948589866,9.96857279919206,10.6707677049373,2.93846153846154,181.335181335181,157,86580,1,1,1,0,9 +"20623",2017,27141,"MN","27","141",94527,0.946755953325505,5499,0.119838776222667,8.61232153650781,9.48804786328076,10.2080267420543,3.75384615384615,243.283266342289,138,56724,1,1,1,0,9 +"20624",2017,27143,"MN","27","143",14916,0.97385358004827,776,0.148364172700456,6.65415252018322,7.46565531013406,8.29229810706322,3.61538461538462,264.677574590953,22,8312,1,1,1,0,9 +"20625",2017,27145,"MN","27","145",158512,0.896865852427576,17198,0.120741647320077,9.75254837697084,9.76944174190706,10.7060495190819,3.41538461538462,232.484528318362,213,91619,1,1,1,0,9 +"20626",2017,27147,"MN","27","147",36814,0.94496658879774,2049,0.134514043570381,7.6251071482389,8.35655484545343,9.20943996673302,3.4,322.564879526905,66,20461,1,1,1,0,9 +"20627",2017,27153,"MN","27","153",24539,0.972981784098782,1337,0.155589062308978,7.19818357710194,7.82003798945875,8.74639833410904,3.96153846153846,314.441291510085,41,13039,1,1,1,0,9 +"20628",2017,27157,"MN","27","157",21595,0.978096781662422,1119,0.1520722389442,7.02019070831193,7.75362354655975,8.68490859582083,3.36923076923077,268.975371942507,32,11897,1,1,1,0,9 +"20629",2017,27159,"MN","27","159",13643,0.969508172689291,714,0.139705343399546,6.57088296233958,7.31986492980897,8.14118979345769,5.59230769230769,608.892664967431,43,7062,1,1,1,0,9 +"20630",2017,27161,"MN","27","161",18722,0.95395791047965,1022,0.135455613716483,6.92951677076365,7.76387128782022,8.63212772950834,3.92307692307692,272.479564032698,29,10643,1,1,1,0,9 +"20631",2017,27163,"MN","27","163",255717,0.876292933203502,14517,0.138735398898001,9.58307565546143,10.4140331370948,11.2302309340295,3.02307692307692,221.549515984166,333,150305,1,1,1,0,9 +"20632",2017,27165,"MN","27","165",10911,0.957290807442031,703,0.145999450096233,6.55535689181067,7.09754885061479,7.96137020171951,4.36153846153846,432.675666320526,25,5778,1,1,1,0,9 +"20633",2017,27169,"MN","27","169",50787,0.94543879339201,7325,0.131273751156792,8.89904843388527,8.53109609658523,9.60703378769722,3.13846153846154,264.839275664581,80,30207,1,1,1,0,9 +"20634",2017,27171,"MN","27","171",134280,0.960738754840632,7013,0.119295501936253,8.85552084853691,9.85796703723432,10.5404875724731,3.56153846153846,226.167884160449,174,76934,1,1,1,0,9 +"20635",2017,29001,"MO","29","001",25522,0.930452158921715,5095,0.104145443147089,8.53601494565683,7.67368812926773,8.9497545251861,4.26153846153846,394.385026737968,59,14960,0,1,0,0,9 +"20636",2017,29003,"MO","29","003",17473,0.976993075030046,947,0.147942539918732,6.85329909318608,7.64539769942863,8.50370260123374,3.18461538461538,252.219531880549,25,9912,0,1,0,0,9 +"20637",2017,29007,"MO","29","007",25609,0.909172556523097,1560,0.134015385216135,7.35244110024358,8.07868822922987,9.03693891255679,3.47692307692308,466.310738663243,69,14797,0,1,0,0,9 +"20638",2017,29009,"MO","29","009",35576,0.95586912525298,1845,0.148049246683157,7.52023455647463,8.2445967563825,9.17398754251038,3.33076923076923,679.299249195567,133,19579,0,1,0,0,9 +"20639",2017,29011,"MO","29","011",11798,0.963468384471944,666,0.149516867265638,6.50128967054039,7.19067603433221,8.06526520889773,4.14615384615385,482.7156649019,31,6422,0,1,0,0,9 +"20640",2017,29013,"MO","29","013",16294,0.970909537252977,879,0.146986620842028,6.77878489768518,7.52402141520612,8.3999849905107,4.43846153846154,456.163773920783,41,8988,0,1,0,0,9 +"20641",2017,29015,"MO","29","015",19097,0.978949573231398,726,0.178980991778813,6.5875500148248,7.38336814699238,8.48714627006394,5.09230769230769,632.648828043974,61,9642,0,1,0,0,9 +"20642",2017,29017,"MO","29","017",12281,0.980946177021415,596,0.153651982737562,6.39024066706535,7.23417717974985,8.14148104145742,4.37692307692308,663.87646124982,46,6929,0,1,0,0,9 +"20643",2017,29019,"MO","29","019",178297,0.833199661239393,26146,0.108414611575069,10.1714514941218,9.93590633879163,10.9657815785301,2.60769230769231,233.197746348497,262,112351,0,1,0,0,9 +"20644",2017,29021,"MO","29","021",88658,0.900392519569582,6009,0.131415100724131,8.70101362433393,9.29798488182823,10.1296664923939,3.53846153846154,470.865214832254,248,52669,0,1,0,0,9 +"20645",2017,29023,"MO","29","023",42651,0.914070010081827,2342,0.135940540667276,7.75876054415766,8.50875771259514,9.41050184689847,4.49230769230769,625.734923567949,149,23812,0,1,0,0,9 +"20646",2017,29025,"MO","29","025",9056,0.976590106007067,509,0.144103356890459,6.23244801655052,6.90575327631146,7.80343505695217,4.03076923076923,544.245111872606,27,4961,0,1,0,0,9 +"20647",2017,29027,"MO","29","027",45002,0.930980845295765,3385,0.135349540020444,8.12710918534638,8.61323037961318,9.45634070543332,3.46153846153846,396.32565375213,107,26998,0,1,0,0,9 +"20648",2017,29029,"MO","29","029",45554,0.97572112218466,1885,0.178952452034948,7.54168309988211,8.3380665255188,9.41776096282516,4.80769230769231,489.240847464654,118,24119,0,1,0,0,9 +"20649",2017,29031,"MO","29","031",78338,0.889529985447675,7990,0.125354234215834,8.98594603876032,9.07783702216309,10.0513901824596,3.45384615384615,376.295579077086,171,45443,0,1,0,0,9 +"20650",2017,29033,"MO","29","033",8789,0.968710888610763,480,0.13892365456821,6.17378610390194,6.90274273715859,7.76514490293613,4.04615384615385,444.538526672312,21,4724,0,1,0,0,9 +"20651",2017,29035,"MO","29","035",6177,0.975392585397442,313,0.149749069127408,5.74620319054015,6.55677835615804,7.44775128004791,5.81538461538462,799.763033175355,27,3376,0,1,0,0,9 +"20652",2017,29037,"MO","29","037",103502,0.932088268825723,5616,0.13717609321559,8.63337494570565,9.48166437781514,10.3049781058889,3.50769230769231,385.013314337082,227,58959,0,1,0,0,9 +"20653",2017,29039,"MO","29","039",14086,0.97927019735908,667,0.140352122674996,6.50279004591562,7.24636808010246,8.1797604936999,4.02307692307692,574.229691876751,41,7140,0,1,0,0,9 +"20654",2017,29041,"MO","29","041",7462,0.965022782095953,327,0.160814794961136,5.78996017089725,6.63725803128446,7.56371966841437,3.41538461538462,361.383582860093,14,3874,0,1,0,0,9 +"20655",2017,29043,"MO","29","043",85533,0.970479230238621,4440,0.126839933125227,8.39840965542627,9.34285875167633,10.127990179888,3.09230769230769,340.449968210997,166,48759,0,1,0,0,9 +"20656",2017,29045,"MO","29","045",6719,0.986902812918589,325,0.150617651436226,5.78382518232974,6.61338421837956,7.4730690880322,5.54615384615385,381.887615930169,14,3666,0,1,0,0,9 +"20657",2017,29047,"MO","29","047",242780,0.885962599884669,14191,0.123749897026114,9.56036323983454,10.4103352749329,11.2068078303628,3.58461538461538,299.966900204115,435,145016,0,1,0,0,9 +"20658",2017,29049,"MO","29","049",20558,0.967214709602101,1041,0.146950092421442,6.94793706861497,7.77988511507052,8.66475075577385,3.96923076923077,353.356890459364,41,11603,0,1,0,0,9 +"20659",2017,29051,"MO","29","051",76702,0.847500717060833,4662,0.13252587937733,8.4471998195957,9.18870807184907,9.97669154479454,2.92307692307692,307.31135725498,139,45231,0,1,0,0,9 +"20660",2017,29053,"MO","29","053",17642,0.90794694479084,1312,0.133941729962589,7.17930796950403,7.63530388625941,8.44376191333035,3.62307692307692,466.336345088895,48,10293,0,1,0,0,9 +"20661",2017,29055,"MO","29","055",24109,0.980671118669377,1278,0.1505661786055,7.15305163493748,7.9043348420851,8.81180122393875,4.58461538461538,602.185711099546,81,13451,0,1,0,0,9 +"20662",2017,29057,"MO","29","057",7583,0.975867071080047,356,0.160490571014111,5.87493073085203,6.71417052990947,7.614312146452,3.38461538461538,344.572975633768,14,4063,0,1,0,0,9 +"20663",2017,29059,"MO","29","059",16755,0.977737988660101,864,0.155774395702775,6.76157276880406,7.48268182815465,8.42792472365806,4.68461538461538,527.878587924777,48,9093,0,1,0,0,9 +"20664",2017,29061,"MO","29","061",8355,0.980371035308199,453,0.140634350688211,6.11589212548303,6.79234442747081,7.67508185771633,3.3,347.302616346376,15,4319,0,1,0,0,9 +"20665",2017,29063,"MO","29","063",12561,0.867446859326487,789,0.124512379587612,6.67076632084587,7.53743003658651,7.81681996576455,3.86923076923077,366.300366300366,30,8190,0,1,0,0,9 +"20666",2017,29065,"MO","29","065",15510,0.970921985815603,699,0.154867827208253,6.54965074223381,7.40306109109009,8.3387839714422,4.14615384615385,490.489292977629,41,8359,0,1,0,0,9 +"20667",2017,29067,"MO","29","067",13301,0.978497857303962,572,0.164198180587926,6.3491389913798,7.18235211188526,8.16137502319749,4.59230769230769,527.44119743407,37,7015,0,1,0,0,9 +"20668",2017,29069,"MO","29","069",30147,0.876073904534448,1658,0.134573921119846,7.41336733569524,8.13358741766097,9.04180337015285,6.45384615384615,660.616163487065,107,16197,0,1,0,0,9 +"20669",2017,29071,"MO","29","071",103340,0.974898393652022,5690,0.15089994193923,8.64646552712038,9.36947859331448,10.3031357753227,3.60769230769231,475.991649269311,285,59875,0,1,0,0,9 +"20670",2017,29073,"MO","29","073",14695,0.983259612112964,732,0.161619598502892,6.59578051396131,7.31588350450979,8.2872767558146,3.82307692307692,520.059435364042,42,8076,0,1,0,0,9 +"20671",2017,29075,"MO","29","075",6630,0.980090497737557,345,0.136500754147813,5.84354441703136,6.52502965784346,7.49164547360513,2.83076923076923,422.178440754292,15,3553,0,1,0,0,9 +"20672",2017,29077,"MO","29","077",289830,0.923268812752303,30430,0.119131904909775,10.323184242891,10.4303144700291,11.3775180279601,3.06923076923077,435.05139152892,753,173083,0,1,0,0,9 +"20673",2017,29079,"MO","29","079",9990,0.972772772772773,540,0.131331331331331,6.29156913955832,6.85329909318608,7.84932381804056,3.52307692307692,348.297213622291,18,5168,0,1,0,0,9 +"20674",2017,29081,"MO","29","081",8519,0.979340298157061,420,0.144383143561451,6.04025471127741,6.78558764500793,7.70120018085745,3.49230769230769,523.560209424084,23,4393,0,1,0,0,9 +"20675",2017,29083,"MO","29","083",21704,0.967932178400295,1017,0.149557685219314,6.92461239604856,7.76895604453833,8.68490859582083,4.09230769230769,628.77049876795,74,11769,0,1,0,0,9 +"20676",2017,29085,"MO","29","085",9396,0.9757343550447,337,0.168369518944232,5.82008293035236,6.64118216974059,7.76387128782022,4.43846153846154,765.194578049847,35,4574,0,1,0,0,9 +"20677",2017,29089,"MO","29","089",10067,0.930366544154167,802,0.14681633058508,6.68710860786651,6.92853781816467,7.93666015522543,3.80769230769231,550.133096716948,31,5635,0,1,0,0,9 +"20678",2017,29091,"MO","29","091",40069,0.97426938531034,2250,0.133070453467768,7.71868549519847,8.4156033356546,9.31829751348127,4.72307692307692,585.919619152248,128,21846,0,1,0,0,9 +"20679",2017,29093,"MO","29","093",10178,0.971703674592258,498,0.15818431911967,6.21060007702465,7.08422642209792,7.94413749111411,6.4,819.100731962356,47,5738,0,1,0,0,9 +"20680",2017,29095,"MO","29","095",698768,0.7146034162984,42564,0.12983136033705,10.6587641045616,11.3707972251202,12.2697279642593,4.38461538461539,464.973145036039,1934,415938,0,1,0,0,9 +"20681",2017,29097,"MO","29","097",120113,0.92730179081365,7931,0.120611424242172,8.97853441008332,9.61199824174139,10.4555606802804,3.33846153846154,515.231344695591,354,68707,0,1,0,0,9 +"20682",2017,29099,"MO","29","099",223843,0.971873143229853,11960,0.145758411029159,9.38932302750462,10.277255573901,11.1127911230469,3.54615384615385,461.553350356215,620,134329,0,1,0,0,9 +"20683",2017,29101,"MO","29","101",53893,0.908912103612714,8361,0.108047427309669,9.03133331615006,8.62622695244036,9.66058762285624,4.35384615384615,229.316275420916,76,33142,0,1,0,0,9 +"20684",2017,29105,"MO","29","105",35467,0.96991569628105,1920,0.13474497420137,7.56008046502183,8.3296580675694,9.19907717969747,4.71538461538462,574.94657576066,113,19654,0,1,0,0,9 +"20685",2017,29107,"MO","29","107",32604,0.956508403876825,1795,0.144430131272237,7.49276030092238,8.1961611392829,9.12292891496521,3.75384615384615,474.761255115962,87,18325,0,1,0,0,9 +"20686",2017,29109,"MO","29","109",38271,0.970055655718429,2148,0.134958584829244,7.67229245562876,8.40043463080604,9.25339986143663,3.52307692307692,502.84948038887,105,20881,0,1,0,0,9 +"20687",2017,29111,"MO","29","111",9957,0.951089685648288,867,0.134879983930903,6.76503897678054,6.96885037834195,7.91388671485608,3.40769230769231,524.886877828054,29,5525,0,1,0,0,9 +"20688",2017,29113,"MO","29","113",56040,0.963722341184868,3209,0.137919343326196,8.07371464110986,8.84548923675327,9.71196378497737,3.57692307692308,451.834447858305,150,33198,0,1,0,0,9 +"20689",2017,29115,"MO","29","115",12159,0.976725059626614,675,0.149436631301916,6.51471269087253,7.18614430452233,8.09803475617607,5.78461538461538,614.533722538024,40,6509,0,1,0,0,9 +"20690",2017,29117,"MO","29","117",15161,0.946837279862806,867,0.124530044192336,6.76503897678054,7.614312146452,8.54811029405096,2.91538461538462,420.980771418819,37,8789,0,1,0,0,9 +"20691",2017,29119,"MO","29","119",22796,0.89770135111423,1278,0.133795402702228,7.15305163493748,7.91826468609527,8.75416074932352,3.62307692307692,520.711898655475,67,12867,0,1,0,0,9 +"20692",2017,29121,"MO","29","121",15253,0.960204549924605,760,0.140365829672851,6.63331843328038,7.41758040241454,8.28551330907974,3.59230769230769,425.905048227483,34,7983,0,1,0,0,9 +"20693",2017,29123,"MO","29","123",12236,0.973847662634848,635,0.147433801896044,6.45362499889269,7.24279792279376,8.158802490694,4.46923076923077,639.53488372093,44,6880,0,1,0,0,9 +"20694",2017,29125,"MO","29","125",8791,0.977021954271414,486,0.154589921510636,6.18620862390049,6.88243747099785,7.79688034278352,4.28461538461538,645.551745007061,32,4957,0,1,0,0,9 +"20695",2017,29127,"MO","29","127",28607,0.928653825986647,1903,0.137378963190827,7.55118686729615,8.10167774745457,9.01188943325234,3.56153846153846,488.106271238801,79,16185,0,1,0,0,9 +"20696",2017,29131,"MO","29","131",25199,0.976308583673955,1312,0.142267550299615,7.17930796950403,7.94697135769359,8.84908351853234,4.40769230769231,428.418421992146,60,14005,0,1,0,0,9 +"20697",2017,29133,"MO","29","133",13615,0.736614028644877,842,0.124127800220345,6.73578001424233,7.48324441607385,8.12769985281777,4.97692307692308,715.960992470065,58,8101,0,1,0,0,9 +"20698",2017,29135,"MO","29","135",16028,0.946780633890691,899,0.119977539306214,6.80128303447162,7.67229245562876,8.30052860619974,3.59230769230769,259.151279559443,24,9261,0,1,0,0,9 +"20699",2017,29137,"MO","29","137",8594,0.954503141726786,378,0.161973469862695,5.93489419561959,6.78671695060508,7.71690613529839,4.26153846153846,436.395374209033,20,4583,0,1,0,0,9 +"20700",2017,29139,"MO","29","139",11388,0.969178082191781,546,0.155338953284159,6.3026189757449,7.12125245324454,8.04269949689764,3.24615384615385,712.025316455696,45,6320,0,1,0,0,9 +"20701",2017,29141,"MO","29","141",20181,0.971755611713988,912,0.154699965313909,6.81563999007433,7.54644627374602,8.55737498104907,4.90769230769231,583.006785816687,61,10463,0,1,0,0,9 +"20702",2017,29143,"MO","29","143",17541,0.824810444102389,907,0.145772760960036,6.81014245011514,7.6226639513236,8.53346016388011,6.54615384615385,606.489436975639,60,9893,0,1,0,0,9 +"20703",2017,29145,"MO","29","145",58206,0.926433700993025,3362,0.136841562725492,8.12029131396856,8.80462523261281,9.69720111828834,3.62307692307692,458.376915031071,149,32506,0,1,0,0,9 +"20704",2017,29147,"MO","29","147",22431,0.946636351477865,4509,0.10574651152423,8.41383067842108,7.63530388625941,8.77415829120596,3.56153846153846,294.9200029492,40,13563,0,1,0,0,9 +"20705",2017,29149,"MO","29","149",10568,0.969530658591976,495,0.15944360333081,6.20455776256869,6.92067150424868,7.9373746961633,4.56153846153846,629.83624257693,35,5557,0,1,0,0,9 +"20706",2017,29151,"MO","29","151",13659,0.987334358298558,795,0.14488615564829,6.67834211465433,7.37525577800975,8.21851757748959,2.96923076923077,409.888561547329,32,7807,0,1,0,0,9 +"20707",2017,29153,"MO","29","153",9236,0.979644867908185,341,0.173126894759636,5.83188247728352,6.80128303447162,7.77359446736019,5.79230769230769,532.48136315229,25,4695,0,1,0,0,9 +"20708",2017,29155,"MO","29","155",16809,0.711166636920697,969,0.134392289844726,6.87626461189077,7.56060116276856,8.49699048409872,7.4,692.191217823924,64,9246,0,1,0,0,9 +"20709",2017,29157,"MO","29","157",19267,0.976228784969118,1117,0.138786526184668,7.0184017990692,7.73848812249465,8.60153433984999,2.63076923076923,357.077458340963,39,10922,0,1,0,0,9 +"20710",2017,29159,"MO","29","159",42477,0.935612213668574,2546,0.133766508934247,7.84227877911735,8.50431056558522,9.39490940131062,4.13846153846154,462.557819727466,111,23997,0,1,0,0,9 +"20711",2017,29161,"MO","29","161",44606,0.921647312020804,5356,0.125969600502175,8.58597270681106,8.46842302704681,9.4082071401056,3.70769230769231,504.722211600964,132,26153,0,1,0,0,9 +"20712",2017,29163,"MO","29","163",18556,0.908331536969174,1182,0.133002802328088,7.07496319796604,7.72179177681754,8.40737832540903,3.43076923076923,457.414692159912,50,10931,0,1,0,0,9 +"20713",2017,29165,"MO","29","165",101256,0.877992415264281,5876,0.129365173421822,8.67863153729377,9.55272367519805,10.3245306906076,3.15384615384615,299.480459313677,181,60438,0,1,0,0,9 +"20714",2017,29167,"MO","29","167",31776,0.968812940584089,2844,0.126290281973817,7.95296679092313,8.14118979345769,9.08918917041203,3.97692307692308,457.012282205084,80,17505,0,1,0,0,9 +"20715",2017,29169,"MO","29","169",51918,0.801571709233792,7427,0.0799915250972688,8.9128772876693,8.72745411689943,9.5128864260765,4.24615384615385,316.644198513967,101,31897,0,1,0,0,9 +"20716",2017,29171,"MO","29","171",4782,0.985780008364701,219,0.148473442074446,5.3890717298165,6.16751649088834,7.09090982207998,3.78461538461538,765.20338300443,19,2483,0,1,0,0,9 +"20717",2017,29173,"MO","29","173",10228,0.974970668752444,500,0.156237778646852,6.21460809842219,7.07496319796604,7.94767857130157,3.07692307692308,316.567006683081,18,5686,0,1,0,0,9 +"20718",2017,29175,"MO","29","175",24909,0.91533180778032,1722,0.124774178007949,7.45124168498768,8.06400734709666,8.80207133653528,4.49230769230769,522.893343165516,78,14917,0,1,0,0,9 +"20719",2017,29177,"MO","29","177",22895,0.968377374972701,1283,0.15138676566936,7.15695636461564,7.87815533650332,8.774622220697,4.80769230769231,513.01684532925,67,13060,0,1,0,0,9 +"20720",2017,29179,"MO","29","179",6260,0.968051118210863,292,0.163578274760383,5.67675380226828,6.54965074223381,7.434847875212,3.87692307692308,606.235565819861,21,3464,0,1,0,0,9 +"20721",2017,29181,"MO","29","181",13576,0.975766057748969,667,0.144740718915734,6.50279004591562,7.37775890822787,8.24117615049496,5.49230769230769,867.129135538954,65,7496,0,1,0,0,9 +"20722",2017,29183,"MO","29","183",395153,0.912206158121032,23936,0.134477025354736,10.0831388807742,10.8651913239368,11.6799557031952,2.86153846153846,296.14920806719,695,234679,0,1,0,0,9 +"20723",2017,29185,"MO","29","185",9395,0.97711548696115,424,0.15870143693454,6.04973345523196,6.76157276880406,7.77148876011762,5.06923076923077,538.302277432712,26,4830,0,1,0,0,9 +"20724",2017,29186,"MO","29","186",17797,0.975108164297353,970,0.166432544810923,6.87729607149743,7.58680353516258,8.51117511909067,3.56153846153846,431.414844592607,44,10199,0,1,0,0,9 +"20725",2017,29187,"MO","29","187",66702,0.938892387034872,4148,0.129036610596384,8.33038156934942,9.0994088112689,9.76772510152213,4.34615384615385,535.643759873618,217,40512,0,1,0,0,9 +"20726",2017,29189,"MO","29","189",997116,0.696222906863394,62018,0.142013567127596,11.0351799444724,11.6726775703378,12.6174071615806,3.41538461538462,380.75116393636,2195,576492,0,1,0,0,9 +"20727",2017,29195,"MO","29","195",22940,0.903923278116826,1734,0.134829991281604,7.45818615734049,7.86978390253015,8.75194905805861,3.51538461538462,499.168053244592,63,12621,0,1,0,0,9 +"20728",2017,29201,"MO","29","201",38611,0.864572272150423,2248,0.134391753645334,7.71779621101358,8.39479954320217,9.31721973360328,4.42307692307692,488.411740312399,106,21703,0,1,0,0,9 +"20729",2017,29203,"MO","29","203",8238,0.970502549162418,404,0.1598689002185,6.00141487796115,6.65157187358973,7.69348164083518,6.01538461538462,533.096401599289,24,4502,0,1,0,0,9 +"20730",2017,29205,"MO","29","205",5992,0.975801068090788,308,0.149532710280374,5.73009978297357,6.54965074223381,7.36454701425564,3.39230769230769,565.326633165829,18,3184,0,1,0,0,9 +"20731",2017,29207,"MO","29","207",29384,0.975632997549687,1593,0.138000272257011,7.37337430991005,8.17611034223734,9.02917814290207,5.00769230769231,557.710960232784,92,16496,0,1,0,0,9 +"20732",2017,29209,"MO","29","209",31676,0.976891021593636,1315,0.179852254072484,7.18159194461187,7.96206730875367,9.03037603475591,5.58461538461538,632.833620054067,103,16276,0,1,0,0,9 +"20733",2017,29213,"MO","29","213",55176,0.952805567638104,3764,0.133826301290416,8.23323750070527,8.70896990698095,9.6580983922746,6.09230769230769,519.668464675701,158,30404,0,1,0,0,9 +"20734",2017,29215,"MO","29","215",25689,0.943905951963876,1425,0.147183619448013,7.26192709270275,7.9728107841214,8.77663009842772,4.90769230769231,487.49912946584,70,14359,0,1,0,0,9 +"20735",2017,29217,"MO","29","217",20527,0.970575339796366,1178,0.138256929897209,7.07157336421153,7.72356247227797,8.64117917119723,3.76923076923077,597.501357957632,66,11046,0,1,0,0,9 +"20736",2017,29219,"MO","29","219",34462,0.957083164064767,1830,0.150165399570541,7.51207124583547,8.25608813381491,9.1796749576653,3.19230769230769,396.518873268448,77,19419,0,1,0,0,9 +"20737",2017,29221,"MO","29","221",25000,0.96268,1341,0.14316,7.20117088328168,8.0471895621705,8.83797149135721,5.36923076923077,689.561002253021,101,14647,0,1,0,0,9 +"20738",2017,29223,"MO","29","223",13309,0.97843564505222,586,0.160042076790142,6.37331978957701,7.1800698743028,8.20138595523861,5.03076923076923,784.9077389149,57,7262,0,1,0,0,9 +"20739",2017,29225,"MO","29","225",38767,0.970903087677664,2093,0.125493331957593,7.646353722446,8.44290058683438,9.24859908409327,3.86923076923077,425.432445067789,91,21390,0,1,0,0,9 +"20740",2017,29229,"MO","29","229",18216,0.978754940711462,915,0.144433465085639,6.81892406527552,7.57250298502038,8.49146504284351,4.91538461538462,667.693888032871,65,9735,0,1,0,0,9 +"20741",2017,29510,"MO","29","510",308424,0.479618966098617,21476,0.131825020102197,9.97469131154246,10.6024925425802,11.5399568040213,4.40769230769231,626.686611966186,1261,201217,0,1,0,0,9 +"20742",2017,28001,"MS","28","001",31653,0.453006034183174,1842,0.153002874924968,7.51860721681525,8.31752199628717,9.04061909715797,7.47692307692308,684.219169084241,125,18269,0,1,0,0,9 +"20743",2017,28003,"MS","28","003",37216,0.862478503869303,2113,0.129299226139295,7.65586401761606,8.44376191333035,9.2661534367954,4.53846153846154,607.469982440321,128,21071,0,1,0,0,9 +"20744",2017,28005,"MS","28","005",12450,0.586024096385542,627,0.172690763052209,6.44094654063292,7.13089883029635,8.15966073706338,6.94615384615385,526.546731022378,36,6837,0,1,0,0,9 +"20745",2017,28007,"MS","28","007",18478,0.556445502760039,1056,0.129938305011365,6.96224346426621,7.62217459481762,8.55852705490921,6.2,543.751888027389,54,9931,0,1,0,0,9 +"20746",2017,28009,"MS","28","009",8267,0.637958146848917,485,0.139107294060723,6.18414889093748,6.88857245956536,7.76853330092603,5.73846153846154,712.937722793038,34,4769,0,1,0,0,9 +"20747",2017,28011,"MS","28","011",31722,0.341813252632243,2329,0.125023642897674,7.75319426988434,8.18423477409482,9.17854005942639,6.59230769230769,790.557233049684,144,18215,0,1,0,0,9 +"20748",2017,28013,"MS","28","013",14506,0.704398180063422,822,0.138218668137322,6.71174039505618,7.40000951716269,8.33686963728496,4.80769230769231,570.648802878055,46,8061,0,1,0,0,9 +"20749",2017,28015,"MS","28","015",10100,0.661683168316832,542,0.156534653465347,6.29526600143965,7.05703698169789,7.90948949267376,5.97692307692308,508.771929824561,29,5700,0,1,0,0,9 +"20750",2017,28017,"MS","28","017",17100,0.538713450292398,1165,0.129590643274854,7.0604763659998,7.56992765524265,8.48218758221742,5.37692307692308,540.428185408439,52,9622,0,1,0,0,9 +"20751",2017,28019,"MS","28","019",8242,0.691822373210386,439,0.142562484833778,6.08449941307517,6.81673588059497,7.72665366484764,5.12307692307692,573.69814651368,26,4532,0,1,0,0,9 +"20752",2017,28021,"MS","28","021",9033,0.122772058009521,1246,0.12210782685708,7.1276936993474,6.80903930604298,7.88870952418201,9.98461538461538,734.41842000794,37,5038,0,1,0,0,9 +"20753",2017,28023,"MS","28","023",15798,0.646600835548804,936,0.142802886441322,6.84161547647759,7.45818615734049,8.44052810648075,6.16153846153846,682.59385665529,60,8790,0,1,0,0,9 +"20754",2017,28025,"MS","28","025",19633,0.401110375388377,1210,0.141700198645138,7.09837563859079,7.72665366484764,8.68996933536666,6.95384615384615,513.421005224284,57,11102,0,1,0,0,9 +"20755",2017,28027,"MS","28","027",23236,0.218841452917886,1700,0.128894818385264,7.43838353004431,7.83439230291044,8.85623355614316,7.62307692307692,873.465533522191,111,12708,0,1,0,0,9 +"20756",2017,28029,"MS","28","029",28536,0.466533501541912,1916,0.142451640033642,7.55799495853081,8.07496035911586,9.02761873516089,5.85384615384615,649.918760154981,104,16002,0,1,0,0,9 +"20757",2017,28031,"MS","28","031",19016,0.625841396718553,1153,0.129259570887674,7.05012252026906,7.68845535654994,8.61758136544751,4.96153846153846,565.757744388796,61,10782,0,1,0,0,9 +"20758",2017,28033,"MS","28","033",179265,0.696499595570803,10974,0.115817365352969,9.30328411761892,10.139389369949,10.9158154726072,3.94615384615385,440.633220326107,464,105303,0,1,0,0,9 +"20759",2017,28035,"MS","28","035",75190,0.596608591568028,8436,0.109894932836813,9.04026354159867,9.08489052125877,10.0701454048635,4.97692307692308,581.022865348503,263,45265,0,1,0,0,9 +"20760",2017,28037,"MS","28","037",7761,0.64553536915346,396,0.153975003221234,5.98141421125448,6.76388490856244,7.69028602067677,6.94615384615385,564.307547613449,24,4253,0,1,0,0,9 +"20761",2017,28039,"MS","28","039",23937,0.906045034883235,1434,0.119229644483436,7.26822302115957,7.95647679803678,8.78400907118663,7.32307692307692,595.238095238095,81,13608,0,1,0,0,9 +"20762",2017,28041,"MS","28","041",13526,0.738503622652669,958,0.121247966878604,6.86484777797086,7.56941179245071,8.07090608878782,7.66923076923077,613.496932515337,52,8476,0,1,0,0,9 +"20763",2017,28043,"MS","28","043",21051,0.558548287492281,1294,0.136240558643295,7.16549347506085,7.80343505695217,8.74113642290101,4.70769230769231,813.758389261745,97,11920,0,1,0,0,9 +"20764",2017,28045,"MS","28","045",47020,0.894491705657167,2490,0.153955763504892,7.82003798945875,8.58690580382754,9.54266114604634,5.7,504.47398460802,137,27157,0,1,0,0,9 +"20765",2017,28047,"MS","28","047",205096,0.696995553301868,14372,0.127169715645356,9.57303714823341,10.1311010985218,11.0294717880001,4.99230769230769,549.25908102816,662,120526,0,1,0,0,9 +"20766",2017,28049,"MS","28","049",240007,0.258009141400042,19094,0.124671363751891,9.85712942855798,10.2669146492974,11.2360382511461,4.99230769230769,541.534252041442,760,140342,0,1,0,0,9 +"20767",2017,28051,"MS","28","051",17846,0.163341925361426,1466,0.127591617169114,7.2902928824466,7.53369370984863,8.56940606286317,9.63076923076923,888.619610219125,88,9903,0,1,0,0,9 +"20768",2017,28053,"MS","28","053",8327,0.230575237180257,507,0.142668428005284,6.22851100359118,6.78219205600679,7.79358680337158,9.66923076923077,725.912890453146,33,4546,0,1,0,0,9 +"20769",2017,28057,"MS","28","057",23508,0.920707844138166,1611,0.122554024161987,7.38461038317697,7.92588031673756,8.80417501875363,4.3,592.514812870322,79,13333,0,1,0,0,9 +"20770",2017,28059,"MS","28","059",142355,0.743928910119068,8475,0.135969934319132,9.04487593224865,9.80095636388846,10.6626799311258,6.06153846153846,482.843518064801,404,83671,0,1,0,0,9 +"20771",2017,28061,"MS","28","061",16570,0.457453228726614,990,0.145383222691611,6.89770494312864,7.51261754467451,8.45616848957846,6.70769230769231,587.59521218716,54,9190,0,1,0,0,9 +"20772",2017,28063,"MS","28","063",7231,0.134974415710137,495,0.149910109251832,6.20455776256869,6.74993119378857,7.64156444126097,14.9076923076923,583.839327417095,25,4282,0,1,0,0,9 +"20773",2017,28065,"MS","28","065",11285,0.390341160832964,723,0.147275143996455,6.58340922215876,7.14282740116162,8.09773057366422,6.99230769230769,758.293838862559,48,6330,0,1,0,0,9 +"20774",2017,28067,"MS","28","067",68422,0.688404314401801,4158,0.130952032971851,8.33278946841796,8.97461803845511,9.87086104970903,5.31538461538462,631.713623157502,237,37517,0,1,0,0,9 +"20775",2017,28069,"MS","28","069",10089,0.348795718108831,852,0.129150560015859,6.74758652682932,6.98193467715639,7.91935619066062,7.96153846153846,504.686373467916,28,5548,0,1,0,0,9 +"20776",2017,28071,"MS","28","071",54318,0.731654331897345,8483,0.102930888471593,9.04581943980773,8.74608021735751,9.7412626974413,4.3,294.450062459104,99,33622,0,1,0,0,9 +"20777",2017,28073,"MS","28","073",61649,0.773589190416714,3926,0.116806436438547,8.27537637483641,9.06033110464947,9.85890850913816,3.93076923076923,331.298086137502,121,36523,0,1,0,0,9 +"20778",2017,28075,"MS","28","075",76416,0.545788840033501,4849,0.130561662479062,8.48652777710535,9.10642325855641,10.0042374556363,5.47692307692308,539.269911504425,234,43392,0,1,0,0,9 +"20779",2017,28077,"MS","28","077",12633,0.665795931291063,728,0.142879759360405,6.59030104819669,7.32184971378836,8.19533366716287,6.70769230769231,719.932241671372,51,7084,0,1,0,0,9 +"20780",2017,28079,"MS","28","079",22822,0.499430374200333,1399,0.123827885373762,7.24351297466548,7.92334821193015,8.74448811385292,5.86923076923077,536.53148177371,68,12674,0,1,0,0,9 +"20781",2017,28081,"MS","28","081",85124,0.68142944410507,5114,0.123690146139749,8.53973715585113,9.2919203589686,10.1533509285497,4.12307692307692,510.816696175998,251,49137,0,1,0,0,9 +"20782",2017,28083,"MS","28","083",29317,0.237370808745779,2426,0.118941228638674,7.793999089504,8.11701408773731,9.07977600195507,7.62307692307692,717.156105100464,116,16175,0,1,0,0,9 +"20783",2017,28085,"MS","28","085",34352,0.685462272938985,1979,0.134577317186772,7.59034694560257,8.38662882139512,9.22611529109155,5.33076923076923,618.103800572129,121,19576,0,1,0,0,9 +"20784",2017,28087,"MS","28","087",59173,0.537694556639008,4249,0.131276088756696,8.35443894011481,8.84289333105554,9.80427476746454,5.50769230769231,528.639479493436,182,34428,0,1,0,0,9 +"20785",2017,28089,"MS","28","089",104635,0.582653987671429,6570,0.131829693697138,8.79026911147866,9.56099724358935,10.3942431132482,4.00769230769231,372.770178385729,233,62505,0,1,0,0,9 +"20786",2017,28091,"MS","28","091",25123,0.668590534569916,1445,0.134140031047248,7.27586460054653,8.03592636989179,8.87849740373863,5.63846153846154,811.745605985741,115,14167,0,1,0,0,9 +"20787",2017,28093,"MS","28","093",35622,0.50951659087081,2421,0.148980966818258,7.79193595693806,8.33591109419694,9.23921933152656,5.30769230769231,633.36349349969,133,20999,0,1,0,0,9 +"20788",2017,28095,"MS","28","095",35863,0.683378412291219,2092,0.136017622619413,7.64587582518481,8.32239411311117,9.24628649874965,5.30769230769231,554.702590262988,112,20191,0,1,0,0,9 +"20789",2017,28097,"MS","28","097",10138,0.531860327480765,564,0.1435194318406,6.33505425149806,6.95368421087054,7.95437227253187,5.22307692307692,618.519192286702,34,5497,0,1,0,0,9 +"20790",2017,28099,"MS","28","099",29446,0.602254975208857,1777,0.122767099096651,7.48268182815465,8.14118979345769,9.02785880238086,5.31538461538462,861.959690708582,136,15778,0,1,0,0,9 +"20791",2017,28101,"MS","28","101",21402,0.625922810952247,1402,0.119241192411924,7.24565506759454,7.82803803212583,8.70930004894499,5.20769230769231,482.259731312435,56,11612,0,1,0,0,9 +"20792",2017,28103,"MS","28","103",10717,0.269758327890268,774,0.138284967808155,6.65157187358973,7.06304816338817,8.0802374162167,7.49230769230769,682.261208576998,42,6156,0,1,0,0,9 +"20793",2017,28105,"MS","28","105",49774,0.584501948808615,11535,0.0916743681440109,9.35314117060785,8.40893960597598,9.65457737458489,5.11538461538461,299.156064995591,95,31756,0,1,0,0,9 +"20794",2017,28107,"MS","28","107",34113,0.48673526221675,2218,0.133175035910064,7.70436116791031,8.27180403115471,9.22621372113247,6.9,752.538528941807,146,19401,0,1,0,0,9 +"20795",2017,28109,"MS","28","109",55329,0.858374451011224,3324,0.136239585027743,8.10892415597534,8.74830491237962,9.65739517984351,5.4,622.628660375523,192,30837,0,1,0,0,9 +"20796",2017,28111,"MS","28","111",12031,0.79295154185022,749,0.143545839913557,6.61873898351722,7.29369772060144,8.16422565226583,6.47692307692308,565.791382562019,39,6893,0,1,0,0,9 +"20797",2017,28113,"MS","28","113",39535,0.447653977488301,2499,0.127178449475149,7.82364593083495,8.43381158247719,9.33952483035701,6.24615384615385,854.780699705731,183,21409,0,1,0,0,9 +"20798",2017,28115,"MS","28","115",31776,0.831382175226586,1881,0.121978851963746,7.53955882930103,8.279189777195,9.11040953335113,3.96153846153846,570.565531129384,102,17877,0,1,0,0,9 +"20799",2017,28117,"MS","28","117",25224,0.846019663812242,1834,0.124643196955281,7.51425465281641,7.96311205897929,8.87234697898303,4.67692307692308,595.655220742817,85,14270,0,1,0,0,9 +"20800",2017,28119,"MS","28","119",7207,0.27195781878729,480,0.141806576939087,6.17378610390194,6.74170069465205,7.70436116791031,9.14615384615385,864.553314121037,36,4164,0,1,0,0,9 +"20801",2017,28121,"MS","28","121",152902,0.770460818040313,8475,0.122706047010503,9.04487593224865,9.98792060851096,10.7584559192276,3.67692307692308,364.987723140222,330,90414,0,1,0,0,9 +"20802",2017,28123,"MS","28","123",28452,0.587164346970336,1776,0.127829326585126,7.48211892355212,8.1426451859428,9.00993630763146,4.23846153846154,717.225894973182,115,16034,0,1,0,0,9 +"20803",2017,28125,"MS","28","125",4419,0.275854265670966,248,0.159312061552387,5.51342874616498,6.16331480403464,7.18083119904456,8.16923076923077,1232.53903040263,30,2434,0,1,0,0,9 +"20804",2017,28127,"MS","28","127",26917,0.632797117063566,1605,0.139911580042352,7.38087903556412,8.07775756373692,8.97499771320498,5.03846153846154,628.395627413759,96,15277,0,1,0,0,9 +"20805",2017,28129,"MS","28","129",16067,0.755274786830149,905,0.139665152175266,6.80793494369993,7.50988306115491,8.42595471098197,4.86923076923077,582.959641255605,52,8920,0,1,0,0,9 +"20806",2017,28131,"MS","28","131",18608,0.782029234737747,1442,0.129460447119518,7.2737863178449,7.68294316987829,8.56712556016445,6.28461538461538,545.767905017235,57,10444,0,1,0,0,9 +"20807",2017,28133,"MS","28","133",26149,0.247045776129106,1894,0.119392711002333,7.54644627374602,8.11581970121133,8.84548923675327,8.49230769230769,816.685513255434,130,15918,0,1,0,0,9 +"20808",2017,28135,"MS","28","135",14155,0.411444719180502,1201,0.119816319321794,7.09090982207998,7.55171221535131,8.17751582384608,5.5,522.919448153093,47,8988,0,1,0,0,9 +"20809",2017,28137,"MS","28","137",28595,0.673299527889491,2082,0.129952788949117,7.64108424917491,8.08548677210285,9.0321701863047,5.22307692307692,442.947158275625,71,16029,0,1,0,0,9 +"20810",2017,28139,"MS","28","139",21963,0.816372990939307,1436,0.127031826253244,7.26961674960817,7.90100705199242,8.7516327024723,4.59230769230769,723.938223938224,90,12432,0,1,0,0,9 +"20811",2017,28141,"MS","28","141",19520,0.964856557377049,1149,0.135706967213115,7.04664727784876,7.68432406768116,8.62873456614915,5.07692307692308,812.785388127854,89,10950,0,1,0,0,9 +"20812",2017,28143,"MS","28","143",9989,0.211332465712284,628,0.117329061968165,6.4425401664682,7.1608459066643,8.03138533062553,6.09230769230769,795.615275813296,45,5656,0,1,0,0,9 +"20813",2017,28145,"MS","28","145",28478,0.828253388580659,1697,0.118723224945572,7.43661726523423,8.20631072579402,8.9947928972836,3.7,442.643391521197,71,16040,0,1,0,0,9 +"20814",2017,28147,"MS","28","147",14515,0.545091284877713,908,0.137788494660696,6.81124437860129,7.46851327149634,8.32093496888341,6.94615384615385,409.83606557377,33,8052,0,1,0,0,9 +"20815",2017,28149,"MS","28","149",46717,0.48853736327247,2857,0.14200398142004,7.95752740223077,8.64523454129712,9.55965831946135,5.79230769230769,608.602070731436,164,26947,0,1,0,0,9 +"20816",2017,28151,"MS","28","151",46238,0.261321856481682,3141,0.140620269042779,8.05229649953865,8.55024104546244,9.55343349919151,7.32307692307692,759.260679499962,198,26078,0,1,0,0,9 +"20817",2017,28153,"MS","28","153",20450,0.587530562347188,1261,0.137066014669927,7.13966033596492,7.78197323443438,8.69047400355804,6.51538461538462,581.647712475041,67,11519,0,1,0,0,9 +"20818",2017,28155,"MS","28","155",9743,0.799137842553628,543,0.142255978651339,6.29710931993394,7.00215595440362,7.93666015522543,5.39230769230769,435.019032082654,24,5517,0,1,0,0,9 +"20819",2017,28157,"MS","28","157",8855,0.287182382834557,568,0.141163184641446,6.34212141872115,6.94985645500077,7.71556953452021,9.04615384615385,821.865443425076,43,5232,0,1,0,0,9 +"20820",2017,28159,"MS","28","159",18232,0.50965335673541,985,0.141728828433523,6.89264164117209,7.66058546170326,8.53444354482276,6.18461538461538,683.709869203329,69,10092,0,1,0,0,9 +"20821",2017,28161,"MS","28","161",12449,0.596835087155595,688,0.147722708651297,6.53378883793334,7.26262860097424,8.20685642839965,5.56923076923077,717.051484296573,50,6973,0,1,0,0,9 +"20822",2017,28163,"MS","28","163",28711,0.411549580300233,1856,0.112674584653965,7.52617891334615,8.42420032456707,8.81254577017224,6.26923076923077,650.258280158007,107,16455,0,1,0,0,9 +"20823",2017,37001,"NC","37","001",163326,0.753456277628792,10742,0.130346668625938,9.2819165704654,9.84113331078915,10.7957109762763,4.25384615384615,454.057535422928,423,93160,0,1,0,0,9 +"20824",2017,37003,"NC","37","003",37105,0.917800835466918,2033,0.139549925885999,7.61726781362835,8.42178300661158,9.22700081286929,3.63846153846154,481.838398813936,104,21584,0,1,0,0,9 +"20825",2017,37005,"NC","37","005",11004,0.961559432933479,542,0.165303525990549,6.29526600143965,7.02553831463852,7.98480338973441,5.06923076923077,452.71629778672,27,5964,0,1,0,0,9 +"20826",2017,37007,"NC","37","007",24856,0.482016414547795,1610,0.140408754425491,7.38398945797851,8.01730750768858,8.81373589230022,5.16923076923077,574.788583509514,87,15136,0,1,0,0,9 +"20827",2017,37009,"NC","37","009",26795,0.977533121851092,1192,0.163687255084904,7.0833878476253,8.01961279440027,8.8989119057944,4.11538461538461,342.029374287439,51,14911,0,1,0,0,9 +"20828",2017,37011,"NC","37","011",17522,0.937963702773656,1151,0.142848989841342,7.04838640872188,7.73149202924568,8.39208338037339,4.27692307692308,432.900432900433,46,10626,0,1,0,0,9 +"20829",2017,37013,"NC","37","013",47097,0.723634201753827,2331,0.154765696328853,7.75405263903576,8.5567984460086,9.49649628043192,5.06923076923077,600,153,25500,0,1,0,0,9 +"20830",2017,37015,"NC","37","015",19246,0.360074820741972,1178,0.163098825730022,7.07157336421153,7.61726781362835,8.57960445153763,5.92307692307692,613.715200569243,69,11243,0,1,0,0,9 +"20831",2017,37017,"NC","37","017",33446,0.609310530407224,1821,0.154218740656581,7.50714107972761,8.25244609024695,9.1866622446216,5.83076923076923,637.585675575155,120,18821,0,1,0,0,9 +"20832",2017,37019,"NC","37","019",130996,0.870934990381386,5216,0.180410088857675,8.55948610360649,9.44470077849556,10.4987186609015,5.67692307692308,564.187263399447,386,68417,0,1,0,0,9 +"20833",2017,37021,"NC","37","021",257408,0.90800985206365,14335,0.140186008204873,9.57045937831747,10.4403609677836,11.2825180958928,3.44615384615385,413.803872579638,636,153696,0,1,0,0,9 +"20834",2017,37023,"NC","37","023",90143,0.870417004093496,5411,0.149162996572113,8.59618919764273,9.23493541883156,10.171145473157,4.19230769230769,515.394784741249,269,52193,0,1,0,0,9 +"20835",2017,37025,"NC","37","025",206987,0.755656152318745,11742,0.11606526013711,9.37092743662413,10.2956309865278,11.0422496098313,4.14615384615385,369.697915725306,450,121721,0,1,0,0,9 +"20836",2017,37027,"NC","37","027",81961,0.930125303498005,4439,0.146130476690133,8.39818440483404,9.15957325492253,10.0715834020661,4.46153846153846,539.972686206534,257,47595,0,1,0,0,9 +"20837",2017,37031,"NC","37","031",69014,0.911771524618193,3180,0.16827020604515,8.06463647577422,8.92078988846438,9.89030099073195,4.45384615384615,445.584311287272,172,38601,0,1,0,0,9 +"20838",2017,37033,"NC","37","033",22623,0.649383370905715,1218,0.160588781328736,7.10496544826984,7.84424071814181,8.73584667745758,4.72307692307692,610.169491525424,81,13275,0,1,0,0,9 +"20839",2017,37035,"NC","37","035",157822,0.850895312440598,9410,0.138206333717733,9.14952823257943,9.84193124683702,10.7383078914122,4.16923076923077,510.466759412416,466,91289,0,1,0,0,9 +"20840",2017,37037,"NC","37","037",71248,0.832668987199641,3154,0.150642825061756,8.05642676752298,9.00871366412422,9.88715489791523,3.88461538461538,333.48844423763,129,38682,0,1,0,0,9 +"20841",2017,37039,"NC","37","039",28000,0.952428571428571,1179,0.165535714285714,7.07242190053737,7.9287663216267,8.92038906008036,4.97692307692308,573.888091822095,84,14637,0,1,0,0,9 +"20842",2017,37041,"NC","37","041",14015,0.62904031394934,707,0.160399571887264,6.56103066589657,7.27031288607902,8.26152644839647,5.30769230769231,651.855793534655,49,7517,0,1,0,0,9 +"20843",2017,37043,"NC","37","043",11033,0.973443306444303,455,0.166137949787003,6.12029741895095,6.98841318199959,7.95962530509811,4.97692307692308,574.609445142755,32,5569,0,1,0,0,9 +"20844",2017,37045,"NC","37","045",97198,0.767845017387189,6236,0.139683944114076,8.73809423017767,9.27986643462479,10.2645478666674,4.63076923076923,544.723219278152,302,55441,0,1,0,0,9 +"20845",2017,37047,"NC","37","047",56000,0.638,3418,0.135642857142857,8.13681086367554,8.78416222227048,9.64678721769308,5.47692307692308,747.933754438892,238,31821,0,1,0,0,9 +"20846",2017,37049,"NC","37","049",102740,0.731020050613198,10219,0.125861397702939,9.23200401161221,9.30291955326928,10.2382082561185,4.62307692307692,459.052202256011,269,58599,0,1,0,0,9 +"20847",2017,37051,"NC","37","051",331702,0.532007645416669,33415,0.105594780857517,10.4167601799452,10.5652472598544,11.5120951203295,5.73846153846154,432.392672186714,870,201206,0,1,0,0,9 +"20848",2017,37053,"NC","37","053",26330,0.920622863653627,1280,0.15799468287125,7.15461535691366,8.06180227453835,8.97474461272273,4.33846153846154,316.896945113449,50,15778,0,1,0,0,9 +"20849",2017,37055,"NC","37","055",36257,0.95272637008026,1622,0.178999917257357,7.39141523467536,8.37286082052632,9.28303305736962,6.08461538461539,501.656412683389,106,21130,0,1,0,0,9 +"20850",2017,37057,"NC","37","057",165489,0.871121343412553,9092,0.14213029264785,9.11515018497243,9.87678416970158,10.7894015477516,4.29230769230769,532.404501903686,509,95604,0,1,0,0,9 +"20851",2017,37059,"NC","37","059",42297,0.912617916164267,2227,0.147977397924203,7.70841066725737,8.46252579007393,9.4012086347386,4,407.682931954777,97,23793,0,1,0,0,9 +"20852",2017,37061,"NC","37","061",58942,0.708476129076041,3321,0.137508058769638,8.10802122137675,8.83913175254611,9.72280465241068,4.86923076923077,432.188945702459,142,32856,0,1,0,0,9 +"20853",2017,37063,"NC","37","063",312466,0.542327805265213,21744,0.115862205807992,9.98709313639092,10.6935572487517,11.5366712880334,4.06153846153846,294.592023119623,579,196543,0,1,0,0,9 +"20854",2017,37065,"NC","37","065",52793,0.400602352584623,3160,0.150266133767734,8.05832730658096,8.65154924391532,9.67959371983121,7.7,615.613584088757,182,29564,0,1,0,0,9 +"20855",2017,37067,"NC","37","067",375901,0.677638527165397,24890,0.129624555401555,10.1222213953616,10.7197811379178,11.6519654076359,4.37692307692308,416.271087416928,912,219088,0,1,0,0,9 +"20856",2017,37069,"NC","37","069",66175,0.711129580657348,3852,0.145462788061957,8.25634777291802,9.00454545899659,9.87189368094495,4.67692307692308,434.447300771208,169,38900,0,1,0,0,9 +"20857",2017,37071,"NC","37","071",219788,0.798009900449524,12805,0.131071760059694,9.45759099863363,10.2197935243245,11.1093385918738,4.62307692307692,505.919022248154,659,130258,0,1,0,0,9 +"20858",2017,37073,"NC","37","073",11502,0.656755346896192,616,0.167275256477134,6.42324696353352,7.06219163228656,8.1199938277251,4.42307692307692,570.05700570057,38,6666,0,1,0,0,9 +"20859",2017,37075,"NC","37","075",8529,0.903271192402392,415,0.146207058271779,6.0282785202307,6.82328612235569,7.74543561027438,6.84615384615385,583.027423882531,27,4631,0,1,0,0,9 +"20860",2017,37077,"NC","37","077",59452,0.650507972818408,3645,0.145848751934334,8.20111164444276,8.89918494333876,9.75225760321985,3.81538461538462,436.074771546815,157,36003,0,1,0,0,9 +"20861",2017,37079,"NC","37","079",20965,0.59203434295254,1299,0.142857142857143,7.1693500166706,7.95085485771999,8.5762165318657,4.43076923076923,403.413498836307,52,12890,0,1,0,0,9 +"20862",2017,37081,"NC","37","081",528622,0.576680501379057,38202,0.124164336709407,10.5506431492451,11.0791534706465,12.0109636771728,4.76923076923077,384.022612888579,1201,312742,0,1,0,0,9 +"20863",2017,37083,"NC","37","083",51329,0.405112119854273,2884,0.151941397650451,7.96693349840484,8.60061479955531,9.60096253321457,7.27692307692308,573.362807405361,166,28952,0,1,0,0,9 +"20864",2017,37085,"NC","37","085",132584,0.731219453327702,8149,0.107893863512943,9.00565049932022,9.80592984894132,10.5663301528312,5.10769230769231,383.859910389894,299,77893,0,1,0,0,9 +"20865",2017,37087,"NC","37","087",61167,0.970049209541092,2901,0.151029149704906,7.9728107841214,8.79285328864069,9.76617760157152,4.02307692307692,607.329225507827,206,33919,0,1,0,0,9 +"20866",2017,37089,"NC","37","089",115431,0.937980265266696,5411,0.146555084855888,8.59618919764273,9.46094343618654,10.3704866727616,3.82307692307692,399.548896407282,248,62070,0,1,0,0,9 +"20867",2017,37091,"NC","37","091",23917,0.362587281013505,1596,0.154952544215412,7.37525577800975,7.85864065562079,8.816111895794,5.76153846153846,496.422835450431,68,13698,0,1,0,0,9 +"20868",2017,37093,"NC","37","093",54207,0.512867341856218,3216,0.108676001254451,8.07589363029886,8.95105137402562,9.7242412622591,5.78461538461538,448.334756618275,147,32788,0,1,0,0,9 +"20869",2017,37097,"NC","37","097",175673,0.836855976729492,10231,0.133406954967468,9.23317760587894,10.0131488067456,10.8640056739853,4.26923076923077,412.345249821349,427,103554,0,1,0,0,9 +"20870",2017,37099,"NC","37","099",43220,0.86207774178621,5104,0.12968533086534,8.53777982502463,8.37724123098879,9.4362800105924,4.79230769230769,371.342078708375,92,24775,0,1,0,0,9 +"20871",2017,37101,"NC","37","101",196541,0.806447509679914,10674,0.120758518578821,9.27556615689389,10.2186267055959,10.9835284556188,4.16153846153846,336.401197243235,390,115933,0,1,0,0,9 +"20872",2017,37103,"NC","37","103",9550,0.669633507853403,507,0.173403141361257,6.22851100359118,6.87729607149743,7.92696354486298,4.42307692307692,633.025863628142,35,5529,0,1,0,0,9 +"20873",2017,37105,"NC","37","105",60418,0.75844946870138,3638,0.131467443477109,8.19918935907807,8.89549263145163,9.7763925447323,5.12307692307692,518.119800811721,180,34741,0,1,0,0,9 +"20874",2017,37107,"NC","37","107",56644,0.561701151048655,3332,0.150907421792246,8.11132800328673,8.74113642290101,9.70479268162423,4.45384615384615,658.224674022066,210,31904,0,1,0,0,9 +"20875",2017,37109,"NC","37","109",82608,0.925818322680612,4362,0.14784282393957,8.38068594676157,9.22660734444005,10.1040173289788,4.03076923076923,432.474533193958,211,48789,0,1,0,0,9 +"20876",2017,37111,"NC","37","111",45089,0.93577147419548,2428,0.147441726363415,7.79482315217939,8.58522560180806,9.45790332783114,4.05384615384615,516.855666126668,134,25926,0,1,0,0,9 +"20877",2017,37113,"NC","37","113",34610,0.961051719156313,1558,0.153423865934701,7.35115822643069,8.11372608597075,9.1099673978294,4.65384615384615,627.189512939315,111,17698,0,1,0,0,9 +"20878",2017,37115,"NC","37","115",21603,0.971253992501041,1432,0.149562560755451,7.26682734752059,7.81963630236759,8.72874987347853,4.23846153846154,437.176165803109,54,12352,0,1,0,0,9 +"20879",2017,37117,"NC","37","117",22773,0.555482369472621,1188,0.161814429368111,7.08002649992259,7.71690613529839,8.79118193673602,5.60769230769231,604.758494469643,76,12567,0,1,0,0,9 +"20880",2017,37119,"NC","37","119",1079656,0.587342635061538,70981,0.109101417488533,11.1701675145769,11.9764833650659,12.7704996978913,4.30769230769231,267.298157329979,1806,675650,0,1,0,0,9 +"20881",2017,37121,"NC","37","121",14992,0.972652081109925,738,0.154415688367129,6.60394382460047,7.36010397298915,8.3255483071614,5.2,435.624394966118,36,8264,0,1,0,0,9 +"20882",2017,37123,"NC","37","123",27274,0.774107208330278,1618,0.144313265380949,7.38894609761844,8.03851202097681,8.94832604627298,4.56153846153846,494.853523357086,75,15156,0,1,0,0,9 +"20883",2017,37125,"NC","37","125",97376,0.839940026289846,4325,0.133451774564574,8.37216741936598,9.3244723060211,10.1902441969114,4.47692307692308,405.148683751405,209,51586,0,1,0,0,9 +"20884",2017,37127,"NC","37","127",94095,0.560497369679579,5960,0.142600563260535,8.6928257600594,9.28646773236373,10.2374566589392,6.01538461538462,578.271136646771,311,53781,0,1,0,0,9 +"20885",2017,37129,"NC","37","129",228863,0.829627331635083,21760,0.127845042667447,9.98782870096988,10.2525939269749,11.1841019025205,4.13076923076923,387.170543196654,535,138182,0,1,0,0,9 +"20886",2017,37131,"NC","37","131",19898,0.404563272690723,1055,0.173786310181928,6.96129604591017,7.54380286750151,8.60995467149755,6.21538461538462,666.54492330168,73,10952,0,1,0,0,9 +"20887",2017,37133,"NC","37","133",195332,0.78255994921467,34478,0.078809411668339,10.4480767184549,9.90188627116915,10.8571896694084,5.24615384615385,305.536182790342,368,120444,0,1,0,0,9 +"20888",2017,37135,"NC","37","135",143624,0.782780036762658,17524,0.121818080543642,9.77132664893379,9.71087320625674,10.742854042597,3.76923076923077,216.384352706495,192,88731,0,1,0,0,9 +"20889",2017,37137,"NC","37","137",12631,0.783944264112105,571,0.178924867389755,6.34738920965601,7.06902342657826,8.07682603129881,4.60769230769231,568.181818181818,39,6864,0,1,0,0,9 +"20890",2017,37139,"NC","37","139",39420,0.600380517503805,2634,0.138533739218671,7.87625888230323,8.42748727833174,9.36125725729304,5.52307692307692,470.090999266831,109,23187,0,1,0,0,9 +"20891",2017,37141,"NC","37","141",60787,0.820158915557603,2945,0.149604356194581,7.98786409608569,8.96814141412681,9.76703761939823,4.63846153846154,507.139619220308,179,35296,0,1,0,0,9 +"20892",2017,37143,"NC","37","143",13464,0.751782531194296,576,0.164067142008318,6.35610766069589,7.17242457712485,8.20631072579402,5.64615384615385,489.100055897149,35,7156,0,1,0,0,9 +"20893",2017,37145,"NC","37","145",39412,0.705394296153456,2123,0.156906525931188,7.66058546170326,8.41005331585833,9.359966545932,4.66923076923077,502.423975319524,114,22690,0,1,0,0,9 +"20894",2017,37147,"NC","37","147",178661,0.603472498194905,22946,0.112106167546359,10.0408989083591,9.94251593950361,10.968939394153,4.86923076923077,360.398363993177,393,109046,0,1,0,0,9 +"20895",2017,37149,"NC","37","149",20567,0.936791948266641,945,0.168279282345505,6.85118492749374,7.52185925220163,8.59489469908009,4.16153846153846,453.600453600454,48,10582,0,1,0,0,9 +"20896",2017,37151,"NC","37","151",143000,0.901258741258741,8047,0.139013986013986,8.99305463014613,9.73329217554001,10.6286177789491,4.36923076923077,521.458628927614,430,82461,0,1,0,0,9 +"20897",2017,37153,"NC","37","153",44786,0.626825347206716,2956,0.134997543875318,7.99159228206809,8.57168137670031,9.4673054717659,6.00769230769231,598.006644518272,153,25585,0,1,0,0,9 +"20898",2017,37155,"NC","37","155",132606,0.318318929761851,9108,0.126743887908541,9.11690842718363,9.67281573480113,10.5685695648277,6.50769230769231,640.225274287384,482,75286,0,1,0,0,9 +"20899",2017,37157,"NC","37","157",90844,0.787679978864867,4945,0.156102769583021,8.50613224405681,9.21741528564814,10.19898897404,5.2,539.633506855062,283,52443,0,1,0,0,9 +"20900",2017,37159,"NC","37","159",140289,0.807290664271611,8724,0.13851406738946,9.07383312732152,9.70735100670844,10.6165844084037,4.7,584.172238959512,477,81654,0,1,0,0,9 +"20901",2017,37161,"NC","37","161",66558,0.882418341897293,3552,0.149253282851047,8.17526610411206,8.90272766403552,9.85828095969805,6.07692307692308,635.252492762946,237,37308,0,1,0,0,9 +"20902",2017,37163,"NC","37","163",63188,0.675381401531936,3723,0.132414382477686,8.22228507387272,8.92757950384347,9.77075584008217,4.74615384615385,546.602849131949,193,35309,0,1,0,0,9 +"20903",2017,37165,"NC","37","165",35178,0.458212519188129,2461,0.132383876286315,7.80832305039106,8.30176976311717,9.18891242456256,7.66923076923077,769.540287697415,153,19882,0,1,0,0,9 +"20904",2017,37167,"NC","37","167",61458,0.84927918253116,3659,0.135832601125972,8.20494516501921,8.84043543926657,9.75799924578752,4.13846153846154,534.06056474064,188,35202,0,1,0,0,9 +"20905",2017,37169,"NC","37","169",45710,0.946204331656093,2445,0.160183767228178,7.80180040190897,8.50451313825886,9.50814602759882,4.23846153846154,619.927862939585,165,26616,0,1,0,0,9 +"20906",2017,37171,"NC","37","171",72114,0.939359902376792,4047,0.141789389022936,8.30573114487587,9.0247334241907,9.92857033290359,4.17692307692308,599.464412942535,244,40703,0,1,0,0,9 +"20907",2017,37173,"NC","37","173",14268,0.658816932996916,870,0.134917297448837,6.76849321164863,7.38212436573751,8.33639048059155,5.08461538461538,791.883197228409,64,8082,0,1,0,0,9 +"20908",2017,37175,"NC","37","175",33812,0.94567017626878,1827,0.157843369218029,7.51043055637801,8.08978917578932,9.10653420325059,4.31538461538462,447.541355087242,79,17652,0,1,0,0,9 +"20909",2017,37179,"NC","37","179",231525,0.830787172011662,13706,0.116160241874528,9.52558897214577,10.3607541592076,11.1167817771211,4.00769230769231,294.572944376813,392,133074,0,1,0,0,9 +"20910",2017,37181,"NC","37","181",44387,0.458625273165567,2794,0.138846959695406,7.93522953981691,8.47177732788576,9.49137540170617,6.21538461538462,699.983721308807,172,24572,0,1,0,0,9 +"20911",2017,37183,"NC","37","183",1072463,0.695137268138854,67991,0.112949351166427,11.1271306224576,11.985737646538,12.7371302161862,3.90769230769231,220.326100725674,1461,663108,0,1,0,0,9 +"20912",2017,37185,"NC","37","185",19829,0.413888748802259,1094,0.165666448131525,6.99759598298193,7.61579107203583,8.56883642456808,6.84615384615385,610.03368842757,67,10983,0,1,0,0,9 +"20913",2017,37187,"NC","37","187",11947,0.48355235624006,676,0.163220892274211,6.51619307604296,7.00397413672268,8.1341742721379,6.59230769230769,493.598642603733,32,6483,0,1,0,0,9 +"20914",2017,37189,"NC","37","189",55250,0.960253393665158,11188,0.119004524886878,9.32259705432185,8.53444354482276,9.74542924787785,4.07692307692308,204.935777168423,71,34645,0,1,0,0,9 +"20915",2017,37191,"NC","37","191",123201,0.641731804124967,8841,0.131671009163887,9.0871552714058,9.54301971035869,10.4918296187299,5.02307692307692,446.36028644928,321,71915,0,1,0,0,9 +"20916",2017,37193,"NC","37","193",68461,0.937877039482333,3641,0.149092183871109,8.20001364817543,8.96085284532237,9.85728653363541,4.26923076923077,555.887471751046,214,38497,0,1,0,0,9 +"20917",2017,37195,"NC","37","195",81446,0.564619502492449,4931,0.138533506863443,8.50329708622413,9.14644164612595,10.0955944100649,7.21538461538462,588.451636631114,272,46223,0,1,0,0,9 +"20918",2017,37197,"NC","37","197",37599,0.948136918535067,2160,0.14319529774728,7.67786350067821,8.33158624363075,9.28098521154551,3.94615384615385,538.532961931291,116,21540,0,1,0,0,9 +"20919",2017,37199,"NC","37","199",17709,0.973121011914846,900,0.149020272177989,6.80239476332431,7.54750168281497,8.48755838628655,4.56153846153846,466.369571976371,45,9649,0,1,0,0,9 +"20920",2017,38003,"ND","38","003",10694,0.953151299794277,696,0.151486815036469,6.54534966033442,7.01750614294126,7.9355873855892,2.74615384615385,394.038033236252,23,5837,1,1,1,0,9 +"20921",2017,38005,"ND","38","005",6920,0.418063583815029,394,0.121387283236994,5.97635090929793,6.43615036836943,7.43543801981455,3.58461538461538,615.474794841735,21,3412,1,1,1,0,9 +"20922",2017,38015,"ND","38","015",95343,0.9165014736268,6175,0.13000430026326,8.72826416149618,9.40943710213184,10.213872454394,2.41538461538462,268.889486421081,150,55785,1,1,1,0,9 +"20923",2017,38017,"ND","38","017",178122,0.885196662961341,20053,0.105197561222084,9.90613404747703,10.0363124456486,10.898626432728,2.09230769230769,246.488657040164,275,111567,1,1,1,0,9 +"20924",2017,38035,"ND","38","035",70722,0.886753768275784,11191,0.108636633579367,9.32286516281803,8.88100262425557,9.93542217106647,2.18461538461538,263.53454347184,116,44017,1,1,1,0,9 +"20925",2017,38053,"ND","38","053",12715,0.850806134486827,784,0.112072355485647,6.66440902035041,7.35755620091035,8.11372608597075,2.48461538461538,395.149202888677,29,7339,1,1,1,0,9 +"20926",2017,38055,"ND","38","055",9638,0.911911184893131,420,0.167462129072422,6.04025471127741,6.95749737087695,7.81802793853073,3.14615384615385,478.652115642351,25,5223,1,1,1,0,9 +"20927",2017,38057,"ND","38","057",8470,0.955371900826446,400,0.177095631641086,5.99146454710798,6.84481547920826,7.71289096149013,3.98461538461538,436.318304591731,21,4813,1,1,1,0,9 +"20928",2017,38059,"ND","38","059",30971,0.936424397016564,1815,0.134416066642989,7.50384074669895,8.28147085789517,9.0835292051098,3.06153846153846,363.476153761427,66,18158,1,1,1,0,9 +"20929",2017,38061,"ND","38","061",10273,0.670982186313638,715,0.124598461987735,6.57228254269401,7.11882624906208,7.89543600694297,2.03076923076923,571.055637134932,35,6129,1,1,1,0,9 +"20930",2017,38067,"ND","38","067",6936,0.959198385236448,308,0.169550173010381,5.73009978297357,6.62804137617953,7.47929963778283,4.15384615384615,365.535248041775,14,3830,1,1,1,0,9 +"20931",2017,38071,"ND","38","071",11594,0.867517681559427,691,0.147748835604623,6.53813982376767,7.0825485693553,8.03398273468322,2.67692307692308,316.906987799081,20,6311,1,1,1,0,9 +"20932",2017,38077,"ND","38","077",16323,0.94706855357471,1536,0.150768853764627,7.33693691370762,7.40610338123702,8.38343320123671,2.36923076923077,453.41681960488,42,9263,1,1,1,0,9 +"20933",2017,38079,"ND","38","079",14622,0.192928463958419,931,0.118588428395568,6.83625927727707,7.36960072052641,8.27512163021651,10.1769230769231,732.217573221757,56,7648,1,1,1,0,9 +"20934",2017,38085,"ND","38","085",4427,0.137564942398916,270,0.097808899932234,5.59842195899838,6.15697898558556,7.04838640872188,3.66153846153846,1054.01844532279,24,2277,1,1,1,0,9 +"20935",2017,38089,"ND","38","089",30361,0.929943019004644,1885,0.119693027238892,7.54168309988211,8.20330402679528,9.02965747185074,2.67692307692308,310.208685843204,55,17730,1,1,1,0,9 +"20936",2017,38093,"ND","38","093",21179,0.949525473346239,1665,0.151848529203456,7.41758040241454,7.78572089653462,8.64734387588128,2.33846153846154,423.590746171391,52,12276,1,1,1,0,9 +"20937",2017,38099,"ND","38","099",10786,0.958186538104951,549,0.154366771741146,6.30809844150953,6.99942246750796,7.93200315236138,3.32307692307692,577.445652173913,34,5888,1,1,1,0,9 +"20938",2017,38101,"ND","38","101",69226,0.892684829399359,7456,0.105148354664432,8.91677435636543,9.00356217474824,9.86261347332616,3.21538461538462,224.533207279603,95,42310,1,1,1,0,9 +"20939",2017,38105,"ND","38","105",33639,0.88688724397277,2185,0.113410030024674,7.68937110752969,8.34972083747249,9.10242102975669,2.52307692307692,308.657340568527,62,20087,1,1,1,0,9 +"20940",2017,31001,"NE","31","001",31837,0.955931777491598,2445,0.136130916857744,7.80180040190897,8.13123654969612,9.05543941075822,3.14615384615385,417.835269875794,73,17471,0,1,0,0,9 +"20941",2017,31013,"NE","31","013",10842,0.92482936727541,544,0.16076369673492,6.29894924685594,7.13169851046691,7.9728107841214,3.33846153846154,340.193910529002,20,5879,0,1,0,0,9 +"20942",2017,31019,"NE","31","019",49400,0.960161943319838,5609,0.114757085020243,8.63212772950834,8.65399423290838,9.56934260567401,2.46153846153846,263.671540595144,77,29203,0,1,0,0,9 +"20943",2017,31023,"NE","31","023",8028,0.982561036372696,401,0.151096163428002,5.99396142730657,6.77650699237218,7.62217459481762,2.80769230769231,510.79637798932,22,4307,0,1,0,0,9 +"20944",2017,31025,"NE","31","025",25927,0.977745207698538,1306,0.151540864735604,7.17472430983638,8.06965530688617,8.88944616531829,3.2,321.279650010254,47,14629,0,1,0,0,9 +"20945",2017,31033,"NE","31","033",9654,0.965299357779159,453,0.140874249015952,6.11589212548303,7.03702761468628,7.87511928104029,2.91538461538462,295.967443581206,16,5406,0,1,0,0,9 +"20946",2017,31037,"NE","31","037",10700,0.890467289719626,642,0.117757009345794,6.46458830368996,7.22693601849329,7.83241092718792,2.45384615384615,212.879191059074,12,5637,0,1,0,0,9 +"20947",2017,31041,"NE","31","041",10873,0.982525521935068,540,0.14476225512738,6.29156913955832,7.05703698169789,7.93522953981691,2.18461538461538,297.306750612102,17,5718,0,1,0,0,9 +"20948",2017,31043,"NE","31","043",20075,0.851506849315068,1446,0.116911581569116,7.27655640271871,7.72753511047545,8.60190191934319,4.1,340.318825004478,38,11166,0,1,0,0,9 +"20949",2017,31045,"NE","31","045",8897,0.905136562886366,1452,0.125323142632348,7.28069719538474,6.69579891705849,7.81681996576455,2.76153846153846,275.427896911273,14,5083,0,1,0,0,9 +"20950",2017,31047,"NE","31","047",23640,0.898857868020305,1434,0.121277495769882,7.26822302115957,7.9287663216267,8.69332898912311,2.89230769230769,281.778334376957,36,12776,0,1,0,0,9 +"20951",2017,31053,"NE","31","053",36778,0.955435314590244,2411,0.131872314970907,7.78779687818117,8.34141021146186,9.19614002257504,2.83076923076923,417.358073113089,83,19887,0,1,0,0,9 +"20952",2017,31055,"NE","31","055",561099,0.815683150388791,36644,0.11702747643464,10.5090049831351,11.2109145566539,12.0221798549947,3.21538461538462,334.072030512716,1108,331665,0,1,0,0,9 +"20953",2017,31067,"NE","31","067",21644,0.973710959157272,1110,0.154500092404361,7.01211529430638,7.80302664363222,8.67453876214002,3.51538461538462,411.972423070456,49,11894,0,1,0,0,9 +"20954",2017,31079,"NE","31","079",61294,0.919780076353313,3654,0.121822690638562,8.20357773693795,8.92837525985363,9.72364292561707,3.46153846153846,343.792792005361,118,34323,0,1,0,0,9 +"20955",2017,31081,"NE","31","081",9193,0.985750027194605,519,0.143696290655934,6.25190388316589,6.91869521902047,7.82164312623998,2.53076923076923,299.880047980808,15,5002,0,1,0,0,9 +"20956",2017,31089,"NE","31","089",10195,0.98038254046101,537,0.163413437959784,6.28599809450886,6.9177056098353,7.85748078694253,2.47692307692308,379.43464238285,20,5271,0,1,0,0,9 +"20957",2017,31095,"NE","31","095",7161,0.976958525345622,305,0.160033514872225,5.72031177660741,6.60394382460047,7.52833176670725,2.46153846153846,291.854603343062,11,3769,0,1,0,0,9 +"20958",2017,31101,"NE","31","101",8097,0.971223910090157,371,0.163270347042114,5.91620206260743,6.65286302935335,7.63578686139558,3.07692307692308,501.193317422434,21,4190,0,1,0,0,9 +"20959",2017,31107,"NE","31","107",8447,0.88114123357405,383,0.152243400023677,5.94803498918065,6.6945620585211,7.60489448081162,3.48461538461538,503.597122302158,21,4170,0,1,0,0,9 +"20960",2017,31109,"NE","31","109",313892,0.885948033081442,35637,0.113449848992647,10.4811397029577,10.5621468026374,11.4262449423332,2.7,254.773682250944,479,188010,0,1,0,0,9 +"20961",2017,31111,"NE","31","111",35299,0.96133034930168,1850,0.143828437066206,7.52294091807237,8.38251828808963,9.18296917518005,3.08461538461538,368.890255149093,72,19518,0,1,0,0,9 +"20962",2017,31119,"NE","31","119",35128,0.936660214074243,2330,0.138977453882942,7.75362354655975,8.29179710504873,9.1821466376054,2.66153846153846,292.722317553245,58,19814,0,1,0,0,9 +"20963",2017,31121,"NE","31","121",7877,0.969658499428717,433,0.145232956709407,6.07073772800249,6.79346613258001,7.650168700845,2.82307692307692,231.696014828545,10,4316,0,1,0,0,9 +"20964",2017,31131,"NE","31","131",15946,0.97240687319704,819,0.145240185626489,6.70808408385307,7.49997654095212,8.35936910622267,3.37692307692308,309.633027522936,27,8720,0,1,0,0,9 +"20965",2017,31137,"NE","31","137",9052,0.979562527618206,496,0.136433937251436,6.20657592672493,6.86797440897029,7.75362354655975,2.33076923076923,350.877192982456,17,4845,0,1,0,0,9 +"20966",2017,31141,"NE","31","141",33226,0.955155601035334,1974,0.13471377836634,7.58781721999343,8.26230094178745,9.07577987858049,2.9,297.586244902458,54,18146,0,1,0,0,9 +"20967",2017,31145,"NE","31","145",10765,0.970645610775662,672,0.150766372503484,6.51025834052315,7.02908756414966,7.97453284413023,2.56153846153846,426.112152718595,25,5867,0,1,0,0,9 +"20968",2017,31147,"NE","31","147",7980,0.95125313283208,381,0.160651629072682,5.9427993751267,6.64248680136726,7.63094658089046,3.28461538461538,454.328072692492,19,4182,0,1,0,0,9 +"20969",2017,31151,"NE","31","151",14368,0.923719376391982,1249,0.120476057906459,7.13009851012558,7.43425738213314,8.23827262463303,3.11538461538462,370.782350760104,30,8091,0,1,0,0,9 +"20970",2017,31153,"NE","31","153",181468,0.906495911124826,11214,0.110713734652942,9.32491827668362,10.1605299888558,10.8742664696944,2.82307692307692,199.552178678833,213,106739,0,1,0,0,9 +"20971",2017,31155,"NE","31","155",21035,0.980841454718327,1096,0.146422628951747,6.99942246750796,7.78155595923534,8.65014941866486,2.82307692307692,353.417808809585,41,11601,0,1,0,0,9 +"20972",2017,31157,"NE","31","157",36175,0.936199032480995,2066,0.1373600552868,7.63336964967958,8.33278946841796,9.2011987140589,3.46153846153846,407.581006725087,80,19628,0,1,0,0,9 +"20973",2017,31159,"NE","31","159",17204,0.978435247616833,1491,0.130725412694722,7.30720231476474,7.53101633207792,8.43010908450912,2.72307692307692,307.105792650641,29,9443,0,1,0,0,9 +"20974",2017,31173,"NE","31","173",7201,0.381613664768782,483,0.106651853909179,6.18001665365257,6.5410299991899,7.49609734517596,5.03846153846154,706.414241311105,25,3539,0,1,0,0,9 +"20975",2017,31177,"NE","31","177",20330,0.978848991637973,1053,0.148007870142646,6.95939851213398,7.82284529027977,8.64223868039046,3.13076923076923,199.687445737107,23,11518,0,1,0,0,9 +"20976",2017,31185,"NE","31","185",13764,0.96229293809939,896,0.140584132519616,6.79794041297493,7.2991214627108,8.23642052726539,2.58461538461538,481.026189203634,36,7484,0,1,0,0,9 +"20977",2017,34001,"NJ","34","001",265446,0.723751723514387,17613,0.148056478530473,9.7763925447323,10.2903812750589,11.2876045449082,7.08461538461538,477.134165583227,756,158446,1,1,1,0,9 +"20978",2017,34003,"NJ","34","003",932449,0.74507989176888,54933,0.140221073753095,10.9138695398098,11.715629546247,12.5509416730813,3.8,214.583171305952,1214,565748,1,1,1,0,9 +"20979",2017,34005,"NJ","34","005",446229,0.746865398707838,28191,0.1443025890294,10.2467580570512,10.9094361563408,11.8042434195843,4.01538461538462,355.707402929225,962,270447,1,1,1,0,9 +"20980",2017,34007,"NJ","34","007",506488,0.705489567373758,30932,0.134850184012257,10.3395465257289,11.0602272298808,11.9518511386451,4.98461538461538,452.312072369932,1379,304878,1,1,1,0,9 +"20981",2017,34009,"NJ","34","009",93283,0.926706902651073,5243,0.167811927146425,8.56464913257253,9.04993685048316,10.147570339864,9.43846153846154,560.820713238886,287,51175,1,1,1,0,9 +"20982",2017,34011,"NJ","34","011",151147,0.726928089872773,9090,0.12224523146341,9.11493018717152,9.89090877032927,10.6412256164239,6.83076923076923,509.140118910285,459,90152,1,1,1,0,9 +"20983",2017,34013,"NJ","34","013",797222,0.497831218907657,51927,0.121432925834962,10.8575941650945,11.6149765103676,12.4212162826914,5.53076923076923,379.071499250222,1858,490145,1,1,1,0,9 +"20984",2017,34015,"NJ","34","015",291088,0.844552162919804,18602,0.14193302369043,9.83102438080241,10.4928840321021,11.4017592398599,4.61538461538461,412.966581035435,725,175559,1,1,1,0,9 +"20985",2017,34017,"NJ","34","017",672858,0.66072038974048,41989,0.10612640408526,10.6451629582006,11.5664472743726,12.2947243431247,4.25384615384615,240.591541376733,1104,458869,1,1,1,0,9 +"20986",2017,34019,"NJ","34","019",125076,0.922063385461639,8023,0.174605839649493,8.99006769575366,9.48759324893742,10.5385553070192,3.46153846153846,278.536682881322,209,75035,1,1,1,0,9 +"20987",2017,34021,"NJ","34","021",368489,0.6496910355533,28899,0.130910284974585,10.2715622714257,10.7517349619589,11.6213133933861,3.99230769230769,324.102527822853,733,226163,1,1,1,0,9 +"20988",2017,34023,"NJ","34","023",826972,0.614652007564948,54115,0.129882269290859,10.8988666907292,11.6393730767585,12.433813612515,3.99230769230769,246.5882791869,1269,514623,1,1,1,0,9 +"20989",2017,34025,"NJ","34","025",622122,0.856616547879676,37949,0.15561417213987,10.5439984320155,11.1683202451188,12.1367815152828,4.03076923076923,310.464347849542,1151,370735,1,1,1,0,9 +"20990",2017,34027,"NJ","34","027",493994,0.844856415260104,30167,0.144945080304619,10.3145038906826,11.0036652819289,11.9029384685195,3.53076923076923,232.099728880607,690,297286,1,1,1,0,9 +"20991",2017,34029,"NJ","34","029",595564,0.936900148430731,32451,0.134156866432491,10.3874865382984,10.9977068728995,11.9602296501947,4.70769230769231,395.209773866512,1226,310215,1,1,1,0,9 +"20992",2017,34031,"NJ","34","031",504403,0.761692535532104,35401,0.125522647565538,10.4744953473105,11.057108724235,11.926781933593,5.59230769230769,312.534033867204,947,303007,1,1,1,0,9 +"20993",2017,34033,"NJ","34","033",62944,0.824192933401118,3813,0.148655948144382,8.24617155985756,8.88627090207201,9.82374063444587,6.03076923076923,485.943334065451,177,36424,1,1,1,0,9 +"20994",2017,34035,"NJ","34","035",330650,0.701194616664146,19420,0.145223045516407,9.87405874184532,10.6592103915786,11.5192156402724,3.70769230769231,240.403601611247,487,202576,1,1,1,0,9 +"20995",2017,34037,"NJ","34","037",141267,0.945974643759689,8621,0.168694741163895,9.06195636620992,9.65617937422262,10.6672795726654,4.31538461538462,356.687898089172,308,86350,1,1,1,0,9 +"20996",2017,34039,"NJ","34","039",554695,0.687163215821307,33989,0.128870820901577,10.4337922218396,11.2388964308389,12.0338123045305,4.64615384615385,277.808056139028,943,339443,1,1,1,0,9 +"20997",2017,34041,"NJ","34","041",105761,0.90933330811925,6458,0.157969383799321,8.77307495131822,9.36871070794762,10.3667497593705,4.09230769230769,356.952750727996,228,63874,1,1,1,0,9 +"20998",2017,35001,"NM","35","001",678280,0.856282066403255,44948,0.13014979064693,10.7132615450278,11.3645066598512,12.2284161596846,5.41538461538462,400.769834762944,1618,403723,1,1,1,0,9 +"20999",2017,35005,"NM","35","005",65091,0.930067136777742,4252,0.121429998002796,8.35514473946184,8.92877290052426,9.79489961211923,6.33846153846154,545.937995021498,193,35352,1,1,1,0,9 +"21000",2017,35006,"NM","35","006",26921,0.524683332714238,1752,0.131570149697262,7.46851327149634,8.13973227971767,8.8879288190033,7.63846153846154,591.715976331361,92,15548,1,1,1,0,9 +"21001",2017,35007,"NM","35","007",12178,0.945064871078995,659,0.165462309081951,6.49072353450251,7.05012252026906,8.05420489706441,5.92307692307692,383.37678270204,25,6521,1,1,1,0,9 +"21002",2017,35009,"NM","35","009",49889,0.870793160817014,4735,0.101886187335886,8.46273700562018,8.63781663373998,9.51192534959696,4.73076923076923,438.384535726614,127,28970,1,1,1,0,9 +"21003",2017,35013,"NM","35","013",216218,0.92958033096227,23473,0.11050421334024,10.0636061034289,10.0632226106573,11.0282872709579,6.70769230769231,344.833302939372,416,120638,1,1,1,0,9 +"21004",2017,35015,"NM","35","015",57128,0.93903164822854,3681,0.127643187228679,8.21093973337902,8.82541291508557,9.6626890659832,5.18461538461538,468.100936201872,151,32258,1,1,1,0,9 +"21005",2017,35017,"NM","35","017",27671,0.943406454410755,1517,0.149578981605291,7.32448997934853,7.92044650514261,8.87108426397835,6.00769230769231,552.010896838483,77,13949,1,1,1,0,9 +"21006",2017,35025,"NM","35","025",69031,0.922513073836392,4735,0.108284683692834,8.46273700562018,9.06519898630651,9.81912720391805,6.46923076923077,450.262870230597,173,38422,1,1,1,0,9 +"21007",2017,35027,"NM","35","027",19502,0.930058455543021,859,0.172802789457492,6.75576892198425,7.47250074473756,8.55236726642389,5.44615384615385,601.142170123234,60,9981,1,1,1,0,9 +"21008",2017,35028,"NM","35","028",18778,0.89690062839493,923,0.152838427947598,6.82762923450285,7.71601526664259,8.56522116042682,3.77692307692308,222.078282594615,24,10807,1,1,1,0,9 +"21009",2017,35029,"NM","35","029",24154,0.937153266539704,1664,0.115053407303138,7.41697962138115,7.76004068088038,8.70001462325184,13.9307692307692,652.299562381306,79,12111,1,1,1,0,9 +"21010",2017,35031,"NM","35","031",72463,0.173398838027683,5172,0.113533803458317,8.55101473989175,9.02545553277906,9.95394299602462,8.49230769230769,691.583284284873,282,40776,1,1,1,0,9 +"21011",2017,35035,"NM","35","035",66158,0.843480758184951,5269,0.12334109253605,8.56959587020929,8.89576660405609,9.79311449505476,6.03076923076923,389.806687703853,147,37711,1,1,1,0,9 +"21012",2017,35037,"NM","35","037",8291,0.929079725003015,377,0.151730792425522,5.93224518744801,6.71174039505618,7.67925142595306,6.06923076923077,845.26884245128,36,4259,1,1,1,0,9 +"21013",2017,35039,"NM","35","039",39204,0.777242118151209,2206,0.145622895622896,7.69893619981345,8.36357570275064,9.29697667863573,6.30769230769231,708.038317367763,153,21609,1,1,1,0,9 +"21014",2017,35041,"NM","35","041",18889,0.926306315845201,2503,0.10461114934618,7.82524529143177,7.57558465155779,8.57508466983201,5.13846153846154,345.536047814718,37,10708,1,1,1,0,9 +"21015",2017,35043,"NM","35","043",142832,0.797055281729584,7827,0.138610395429596,8.96533457380484,9.79333780903514,10.6355428974111,6.1,389.152976527672,316,81202,1,1,1,0,9 +"21016",2017,35045,"NM","35","045",127039,0.556750289281244,7586,0.128472358881918,8.93405972224884,9.66402405235482,10.4843614906133,7.43846153846154,538.056271718417,384,71368,1,1,1,0,9 +"21017",2017,35047,"NM","35","047",27737,0.924288856040668,1891,0.157298914806937,7.54486106865846,7.95542508891267,8.97017781549238,7.33076923076923,592.923175007969,93,15685,1,1,1,0,9 +"21018",2017,35049,"NM","35","049",149687,0.918884071429049,7963,0.158250215449571,8.98256109225744,9.73145290361031,10.6679083350722,5.03076923076923,381.150381150381,319,83694,1,1,1,0,9 +"21019",2017,35051,"NM","35","051",11094,0.941229493419867,448,0.163241391743285,6.10479323241498,6.75227037614174,7.88457651059632,7.73846153846154,1008.37138508371,53,5256,1,1,1,0,9 +"21020",2017,35053,"NM","35","053",16825,0.807191679049034,1245,0.143833580980683,7.12689080889881,7.47250074473756,8.42090253109795,6.31538461538462,496.921248784703,46,9257,1,1,1,0,9 +"21021",2017,35055,"NM","35","055",32811,0.888787296943098,1557,0.162811252323916,7.350516171834,8.1820001362934,9.1109619279959,7.79230769230769,574.64851595626,103,17924,1,1,1,0,9 +"21022",2017,35057,"NM","35","057",15510,0.91424887169568,897,0.157769181173436,6.7990558620588,7.46565531013406,8.30276158070405,8.47692307692308,608.985407330805,53,8703,1,1,1,0,9 +"21023",2017,35061,"NM","35","061",75970,0.899697248914045,4711,0.139278662629986,8.45765547870004,9.07658038179666,9.96227519401922,6.55384615384615,485.899611745286,209,43013,1,1,1,0,9 +"21024",2017,32001,"NV","32","001",24088,0.866198937230156,1443,0.139820657588841,7.27447955877387,7.83636976054512,8.79467340138342,4.47692307692308,543.558101953871,74,13614,1,1,1,0,9 +"21025",2017,32003,"NV","32","003",2183273,0.724290549097616,133819,0.117463551282868,11.8042434195843,12.6136422043944,13.3875283316609,5.20769230769231,367.652054699378,4870,1324622,1,1,1,0,9 +"21026",2017,32005,"NV","32","005",48014,0.936414379139418,1861,0.184112967051277,7.52886925664225,8.45553053102413,9.47008582573494,4.82307692307692,415.09724037205,108,26018,1,1,1,0,9 +"21027",2017,32007,"NV","32","007",52307,0.895750090810025,3237,0.124706062286118,8.08240225392624,8.79543080504002,9.59838800604728,3.68461538461538,340.420065514805,106,31138,1,1,1,0,9 +"21028",2017,32013,"NV","32","013",16734,0.910899964144855,963,0.134875104577507,6.87005341179813,7.61184239958042,8.4096079807363,4.23076923076923,423.02930251754,41,9692,1,1,1,0,9 +"21029",2017,32015,"NV","32","015",5584,0.908488538681948,281,0.124641833810888,5.63835466933375,6.45833828334479,7.2868764117507,4.53076923076923,406.123086535458,13,3201,1,1,1,0,9 +"21030",2017,32019,"NV","32","019",53945,0.91711928816387,2503,0.149300213180091,7.82524529143177,8.70284253830287,9.58245550040279,6.02307692307692,445.069102834387,133,29883,1,1,1,0,9 +"21031",2017,32021,"NV","32","021",4458,0.714670255720054,221,0.17205024674742,5.39816270151775,5.99396142730657,7.08924315502751,5.44615384615385,695.012264922322,17,2446,1,1,1,0,9 +"21032",2017,32023,"NV","32","023",44046,0.910252917404532,2070,0.170094900785542,7.63530388625941,8.26359043261732,9.31090942689788,6.41538461538462,728.293774404422,166,22793,1,1,1,0,9 +"21033",2017,32031,"NV","32","031",456864,0.868882205645444,30038,0.13310744554178,10.3102185257655,10.9216667795747,11.8160477219099,4.13076923076923,367.543218012877,1015,276158,1,1,1,0,9 +"21034",2017,32033,"NV","32","033",9628,0.874532613211467,585,0.137307852098047,6.37161184723186,7.1276936993474,7.67971363996637,4.06923076923077,564.006152794394,33,5851,1,1,1,0,9 +"21035",2017,32510,"NV","32","510",54684,0.909297052154195,3159,0.1455636017848,8.05801080080209,8.70450228972123,9.58884529850156,5.02307692307692,615.033446406493,194,31543,1,1,1,0,9 +"21036",2017,36001,"NY","36","001",307919,0.775613067072834,32884,0.131735943543594,10.400741496272,10.456538985014,11.4642917885559,4.2,308.983851221361,583,188683,1,1,1,0,9 +"21037",2017,36003,"NY","36","003",46669,0.965480297413701,4189,0.143757097859393,8.34021732094704,8.44117570499232,9.44935727244668,6.56923076923077,488.87520209408,127,25978,1,1,1,0,9 +"21038",2017,36005,"NY","36","005",1439956,0.453978454897233,108173,0.110038084497026,11.591487076362,12.1094075482396,13.0316243340185,6.16153846153846,331.525696633635,2932,884396,1,1,1,0,9 +"21039",2017,36007,"NY","36","007",193255,0.878533543763421,19482,0.142692297741326,9.8772462413309,9.87493374511807,10.9274840478234,5.52307692307692,402.180713200465,450,111890,1,1,1,0,9 +"21040",2017,36009,"NY","36","009",77199,0.930400652858198,4765,0.15159522791746,8.4690528160883,9.02629733428389,9.98012446707483,6.16153846153846,471.633000506143,205,43466,1,1,1,0,9 +"21041",2017,36011,"NY","36","011",77495,0.934408671527195,4802,0.153829279308342,8.4767877767812,9.07440609473535,9.98723109596899,4.97692307692308,375.352571056628,173,46090,1,1,1,0,9 +"21042",2017,36013,"NY","36","013",128424,0.948989285491808,8268,0.151887497663988,9.02014792080166,9.51074121683574,10.4911353189034,5.97692307692308,419.966895117714,307,73101,1,1,1,0,9 +"21043",2017,36015,"NY","36","015",84825,0.900571765399352,5016,0.145381668140289,8.52038808231276,9.19349935478016,10.0868502338385,5.48461538461538,459.402574273456,227,49412,1,1,1,0,9 +"21044",2017,36017,"NY","36","017",47842,0.974332176748464,2596,0.160214873960119,7.86172707782398,8.53306654057253,9.51096334856076,5.31538461538462,434.496859938659,119,27388,1,1,1,0,9 +"21045",2017,36019,"NY","36","019",80595,0.930417519697252,7693,0.143085799367206,8.94806610345893,9.15641202995063,10.0553499018454,5.24615384615385,303.781277480214,152,50036,1,1,1,0,9 +"21046",2017,36021,"NY","36","021",60312,0.915141265419817,3191,0.166268735906619,8.06808962627824,8.74193546409414,9.75202492332816,3.77692307692308,421.432871763998,147,34881,1,1,1,0,9 +"21047",2017,36023,"NY","36","023",47834,0.958397792365263,5841,0.129907597106661,8.67265729404031,8.47491179915963,9.56127889406298,5.74615384615385,359.994297120046,101,28056,1,1,1,0,9 +"21048",2017,36025,"NY","36","025",45061,0.960142917378665,2749,0.165020749650474,7.91899248816525,8.35396813031327,9.41074739631652,5.48461538461538,337.987365710377,84,24853,1,1,1,0,9 +"21049",2017,36027,"NY","36","027",293512,0.828231895118428,21901,0.150194881299572,9.99428757686257,10.4210603627594,11.3761889413968,4.24615384615385,298.762986958492,534,178737,1,1,1,0,9 +"21050",2017,36029,"NY","36","029",919378,0.807160928366787,61023,0.144219243880102,11.0190061212706,11.5237565959239,12.5350202141408,5.13846153846154,385.998644279715,2124,550261,1,1,1,0,9 +"21051",2017,36031,"NY","36","031",37521,0.952026864955625,1983,0.167292982596413,7.5923661285198,8.33758794211651,9.23960786965675,5.45384615384615,346.820809248555,78,22490,1,1,1,0,9 +"21052",2017,36033,"NY","36","033",50478,0.848587503466857,3670,0.140041206069971,8.20794694104862,8.72826416149618,9.47815131478555,6.00769230769231,381.944444444444,121,31680,1,1,1,0,9 +"21053",2017,36035,"NY","36","035",53815,0.961163244448574,3027,0.149326395986249,8.01532730902172,8.72404474595347,9.65117262392164,5.72307692307692,433.324898785425,137,31616,1,1,1,0,9 +"21054",2017,36037,"NY","36","037",57828,0.940962855364183,3539,0.153679878259667,8.17159948034546,8.75305551513822,9.71763978596561,4.75384615384615,471.50471504715,161,34146,1,1,1,0,9 +"21055",2017,36039,"NY","36","039",47403,0.911398012784001,3142,0.157985781490623,8.05261481881557,8.53856321715243,9.47707966740804,5.16923076923077,440.466041489059,124,28152,1,1,1,0,9 +"21056",2017,36043,"NY","36","043",62193,0.97067194057209,3547,0.151962439502838,8.17385745477362,8.80161997114735,9.77423271667887,5.65384615384615,341.122292341805,120,35178,1,1,1,0,9 +"21057",2017,36045,"NY","36","045",113488,0.889732835189624,11483,0.107183138305371,9.34862295977619,9.47807480661827,10.3405159251004,6.47692307692308,282.387696585281,195,69054,1,1,1,0,9 +"21058",2017,36047,"NY","36","047",2594357,0.50416461574101,163291,0.11109766312038,12.0032891641513,12.7901998449711,13.6409726299834,4.62307692307692,254.021082770983,4152,1634510,1,1,1,0,9 +"21059",2017,36049,"NY","36","049",26606,0.978764188528903,1502,0.156731564308803,7.31455283232408,7.99530662029082,8.90720619496548,6.56923076923077,327.439423706614,50,15270,1,1,1,0,9 +"21060",2017,36051,"NY","36","051",63503,0.94601829834811,6556,0.148890603593531,8.78813593986372,8.78232285939751,9.82048630603272,5,282.072712076891,108,38288,1,1,1,0,9 +"21061",2017,36053,"NY","36","053",70993,0.957221134478047,5803,0.153057343681771,8.66613030419061,8.90109412160856,9.93832366737159,5.46923076923077,256.758066078868,106,41284,1,1,1,0,9 +"21062",2017,36055,"NY","36","055",743528,0.783327594925813,51886,0.137755403965957,10.8568042832467,11.3266079348989,12.3285778475219,4.91538461538462,334.751849944434,1482,442716,1,1,1,0,9 +"21063",2017,36057,"NY","36","057",49203,0.945328536877833,2790,0.143385565920777,7.93379687481541,8.6195692580331,9.54831148472113,5.68461538461538,390.429113833369,109,27918,1,1,1,0,9 +"21064",2017,36059,"NY","36","059",1357260,0.754756642058264,87328,0.142616005776344,11.3774264235081,11.9919260004072,12.9069523528983,4.06153846153846,234.188242977469,1879,802346,1,1,1,0,9 +"21065",2017,36061,"NY","36","061",1632337,0.660249078468478,112936,0.113213754267654,11.634576565564,12.3587121841585,13.2478888076655,4.00769230769231,185.972511661099,2090,1123822,1,1,1,0,9 +"21066",2017,36063,"NY","36","063",210911,0.891660463418219,12517,0.158009776635643,9.43484299932802,10.050786239557,11.0478695754484,6.13846153846154,428.327357605217,534,124671,1,1,1,0,9 +"21067",2017,36065,"NY","36","065",229980,0.875028263327246,15444,0.140507870249587,9.64497585738413,10.1336464387442,11.0766196333104,4.98461538461538,421.779428871627,562,133245,1,1,1,0,9 +"21068",2017,36067,"NY","36","067",461843,0.817043887208424,32458,0.140370212388193,10.3877022248758,10.8418724018833,11.8442774727064,4.64615384615385,331.498990135527,906,273304,1,1,1,0,9 +"21069",2017,36069,"NY","36","069",109652,0.947497537664612,7177,0.151789297048845,8.87863674743007,9.37661723160128,10.3681016844974,4.45384615384615,362.25006327512,229,63216,1,1,1,0,9 +"21070",2017,36071,"NY","36","071",379896,0.821648556447028,28764,0.126676774696233,10.2668798842224,10.7014450974484,11.5915795165994,4.50769230769231,305.268251649579,675,221117,1,1,1,0,9 +"21071",2017,36073,"NY","36","073",40815,0.912679162072767,2609,0.154232512556658,7.86672228513673,8.43163530305459,9.4093551517118,5.85384615384615,447.652847233425,111,24796,1,1,1,0,9 +"21072",2017,36075,"NY","36","075",118444,0.971058052750667,8629,0.147115936645166,9.06288390250831,9.45720044990771,10.45279323062,6.43076923076923,428.611978427477,302,70460,1,1,1,0,9 +"21073",2017,36077,"NY","36","077",59955,0.952380952380952,6832,0.14804436660829,8.8293727354684,8.63194942871443,9.7743465082129,4.99230769230769,349.37776109491,121,34633,1,1,1,0,9 +"21074",2017,36079,"NY","36","079",98901,0.928949151171373,6215,0.157753713309269,8.73472100394481,9.33987629332522,10.2983297703404,4.17692307692308,270.676195348991,164,60589,1,1,1,0,9 +"21075",2017,36081,"NY","36","081",2295226,0.489904697838034,134887,0.129638214276067,11.8121926698724,12.664490670091,13.502553069792,3.93076923076923,220.749510942493,3277,1484488,1,1,1,0,9 +"21076",2017,36083,"NY","36","083",159214,0.87958973457108,10964,0.144057683369553,9.30237245742268,9.83043287163022,10.7921603973736,4.41538461538462,329.341317365269,319,96860,1,1,1,0,9 +"21077",2017,36085,"NY","36","085",475819,0.770440020259805,29272,0.136593956945813,10.284386706699,10.9911062997294,11.8915262707426,4.56153846153846,298.855601720242,861,288099,1,1,1,0,9 +"21078",2017,36087,"NY","36","087",324600,0.789411583487369,21522,0.121565003080715,9.97683094676034,10.4832140435568,11.3847965952596,4.31538461538462,246.177766260689,437,177514,1,1,1,0,9 +"21079",2017,36089,"NY","36","089",108768,0.946657105030891,9172,0.137595616357752,9.1239106439778,9.36760049817477,10.3078854246839,6.62307692307692,344.648505736273,219,63543,1,1,1,0,9 +"21080",2017,36091,"NY","36","091",229314,0.942048893656733,13550,0.143170499838649,9.51414182630785,10.2477507889178,11.130258493138,3.93846153846154,271.994065584024,374,137503,1,1,1,0,9 +"21081",2017,36093,"NY","36","093",154716,0.803381679981385,10224,0.137464774166861,9.23249317661732,9.8365996069945,10.7433075230674,4.46153846153846,383.212672146318,352,91855,1,1,1,0,9 +"21082",2017,36095,"NY","36","095",31260,0.968650031989763,2051,0.159373000639795,7.62608275807238,8.07775756373692,9.08794672376212,5.43846153846154,334.522747546833,60,17936,1,1,1,0,9 +"21083",2017,36097,"NY","36","097",17910,0.975041876046901,932,0.168509212730318,6.83733281468559,7.56112158953024,8.5569906612903,5.77692307692308,400.725121648698,42,10481,1,1,1,0,9 +"21084",2017,36099,"NY","36","099",34293,0.927477910943924,2335,0.150613827894906,7.755767170103,8.22121009392507,9.13443077787583,4.52307692307692,361.592963596384,74,20465,1,1,1,0,9 +"21085",2017,36101,"NY","36","101",96379,0.958953713983337,5370,0.149150748607062,8.58858318750291,9.29495721769606,10.2106045376265,5.7,395.314520977174,217,54893,1,1,1,0,9 +"21086",2017,36103,"NY","36","103",1483862,0.856321544725857,98065,0.142692514533023,11.4933858030956,12.0702643770758,12.9996961836427,4.44615384615385,308.738580767337,2752,891369,1,1,1,0,9 +"21087",2017,36105,"NY","36","105",75000,0.86308,4361,0.148333333333333,8.38045666784277,9.03895875522056,9.94198685168674,4.89230769230769,464.459724056282,204,43922,1,1,1,0,9 +"21088",2017,36107,"NY","36","107",48659,0.974290470416572,2573,0.162292689944306,7.85282781228174,8.58671925406485,9.5353904808967,5.11538461538461,357.413625040615,99,27699,1,1,1,0,9 +"21089",2017,36109,"NY","36","109",102731,0.832796332168479,18488,0.112147258373811,9.82487715195422,9.26577507886428,10.384369299929,4.32307692307692,255.307508776196,168,65803,1,1,1,0,9 +"21090",2017,36111,"NY","36","111",178650,0.889101595298069,11601,0.153926672264204,9.35884658027541,9.92910656515375,10.8727501691764,4.52307692307692,345.696861851007,373,107898,1,1,1,0,9 +"21091",2017,36113,"NY","36","113",64406,0.968124087817905,3513,0.159721143992796,8.16422565226583,8.83141981909013,9.85345661893056,5.25384615384615,383.601054902901,144,37539,1,1,1,0,9 +"21092",2017,36115,"NY","36","115",61600,0.952467532467532,3623,0.153165584415584,8.19505769089508,8.87234697898303,9.75880854116668,4.62307692307692,369.183994787991,136,36838,1,1,1,0,9 +"21093",2017,36117,"NY","36","117",90429,0.948622676353825,5085,0.156907629189751,8.53405030848266,9.19471899107323,10.1750021325757,4.93846153846154,408.186512758202,215,52672,1,1,1,0,9 +"21094",2017,36119,"NY","36","119",970033,0.747608586512005,60808,0.13497478951747,11.0154766382459,11.7185484231664,12.5758622155858,4.48461538461538,227.41123822459,1306,574290,1,1,1,0,9 +"21095",2017,36121,"NY","36","121",40296,0.930365296803653,2284,0.14847627556085,7.7336835707759,8.51137630609467,9.27790555813861,5.56153846153846,375.084793104824,94,25061,1,1,1,0,9 +"21096",2017,36123,"NY","36","123",25021,0.975300747372207,1898,0.153590983573798,7.54855597916987,7.75876054415766,8.85552084853691,4.35384615384615,331.15019501067,45,13589,1,1,1,0,9 +"21097",2017,39001,"OH","39","001",27747,0.981835874148557,1428,0.144520128302159,7.26403014289953,8.10440130792161,8.97017781549238,7.13846153846154,716.524854455889,112,15631,1,1,1,0,9 +"21098",2017,39003,"OH","39","003",103173,0.843282641776434,7044,0.136547352505016,8.8599314696161,9.39124425768252,10.2504757308853,4.97692307692308,478.730679797565,280,58488,1,1,1,0,9 +"21099",2017,39005,"OH","39","005",53673,0.976990293071004,4058,0.138542656456691,8.30844552038576,8.66578559546606,9.62634969396002,4.9,392.656978890492,117,29797,1,1,1,0,9 +"21100",2017,39007,"OH","39","007",97773,0.942632424084359,5435,0.149775500393769,8.60061479955531,9.30900854377288,10.2108251826463,5.9,584.962701919465,327,55901,1,1,1,0,9 +"21101",2017,39009,"OH","39","009",66587,0.924730052412633,12303,0.110592157628366,9.41759841406017,8.79860565085442,9.91931168788301,6.07692307692308,329.874069971828,137,41531,1,1,1,0,9 +"21102",2017,39011,"OH","39","011",45756,0.979652941690707,2635,0.143085059882857,7.87663846097546,8.56216655705897,9.43643955111603,3.68461538461538,318.008715794433,81,25471,1,1,1,0,9 +"21103",2017,39013,"OH","39","013",68074,0.944002115345066,3881,0.157387548843905,8.26384813136891,8.98268666518409,9.83788179543813,6.32307692307692,494.073611977542,198,40075,1,1,1,0,9 +"21104",2017,39015,"OH","39","015",43558,0.980485789062859,2377,0.147596308370449,7.77359446736019,8.5539107743514,9.43148192061972,5.70769230769231,638.631160380769,159,24897,1,1,1,0,9 +"21105",2017,39017,"OH","39","017",380751,0.86222491864762,33068,0.129171033037339,10.4063213263726,10.7288903122165,11.6299615550656,4.42307692307692,493.074442983483,1095,222076,1,1,1,0,9 +"21106",2017,39019,"OH","39","019",27329,0.981082366716675,1409,0.161074316659958,7.25063551189868,8.0040315078527,8.93392789178263,5.82307692307692,573.215216258468,88,15352,1,1,1,0,9 +"21107",2017,39021,"OH","39","021",38857,0.957974110198935,2364,0.143140232133206,7.76811037852599,8.39457347786833,9.31054763239321,4.10769230769231,471.29583913102,105,22279,1,1,1,0,9 +"21108",2017,39023,"OH","39","023",134636,0.881450726403042,8397,0.13927181437357,9.03562977818356,9.58321341548369,10.5561251897579,4.84615384615385,673.26573959043,504,74859,1,1,1,0,9 +"21109",2017,39025,"OH","39","025",204456,0.961390225769848,11346,0.144921156630277,9.33662053788651,10.1434488887765,11.0128914022824,4.38461538461539,425.63115853303,511,120057,1,1,1,0,9 +"21110",2017,39027,"OH","39","027",42035,0.957630545973593,2826,0.142167241584394,7.94661756324447,8.49699048409872,9.40096073158483,5.46153846153846,583.163244053818,140,24007,1,1,1,0,9 +"21111",2017,39029,"OH","39","029",103198,0.962479893021183,5487,0.15731894028954,8.61013693705898,9.40705780905387,10.2567115487986,5.92307692307692,517.401196595601,307,59335,1,1,1,0,9 +"21112",2017,39031,"OH","39","031",36535,0.975338716299439,1926,0.144765293554126,7.56320059235807,8.32482129876878,9.22365138603585,6.8,450.272142503711,91,20210,1,1,1,0,9 +"21113",2017,39033,"OH","39","033",41733,0.973689885701962,2302,0.143411688591762,7.74153358928183,8.4690528160883,9.36142922633904,5.73076923076923,703.495899870522,163,23170,1,1,1,0,9 +"21114",2017,39035,"OH","39","035",1247808,0.645677860696517,80922,0.143985292609119,11.3012410067449,11.8629201455523,12.8513024059688,5.75384615384615,502.022090059473,3693,735625,1,1,1,0,9 +"21115",2017,39037,"OH","39","037",51575,0.981134270479884,2833,0.141386330586524,7.94909149983052,8.65730289940088,9.54616954473329,4.2,510.964445390675,144,28182,1,1,1,0,9 +"21116",2017,39039,"OH","39","039",38158,0.963886996173804,2404,0.143089260443419,7.7848892956551,8.41405243249672,9.2753787681554,4.83846153846154,480.903912596881,103,21418,1,1,1,0,9 +"21117",2017,39041,"OH","39","041",201157,0.883011776870802,10447,0.1204482071218,9.25407013483751,10.3211447014097,10.9736832197591,3.53846153846154,234.599009470849,270,115090,1,1,1,0,9 +"21118",2017,39043,"OH","39","043",74778,0.880459493433898,4429,0.155888095429137,8.3959291039232,8.95789673495042,9.97109947094615,6.13076923076923,535.727041120027,225,41999,1,1,1,0,9 +"21119",2017,39045,"OH","39","045",154718,0.890135601546039,9338,0.131484378029706,9.14184737553088,9.89333620147975,10.7053097497217,4.26153846153846,349.475230664782,314,89849,1,1,1,0,9 +"21120",2017,39047,"OH","39","047",28669,0.952038787540549,1587,0.138442219819317,7.36960072052641,8.13827263853019,9.01030280937645,4.21538461538462,760.829549637992,124,16298,1,1,1,0,9 +"21121",2017,39049,"OH","39","049",1296374,0.6892547983838,91511,0.113764237789403,11.4242144626172,12.0550869518461,12.9217344588473,4.06153846153846,388.054412465655,3110,801434,1,1,1,0,9 +"21122",2017,39051,"OH","39","051",42274,0.977007143870937,2446,0.148341770355301,7.80220931624712,8.50572771330696,9.3943272080892,4.89230769230769,442.718122206908,106,23943,1,1,1,0,9 +"21123",2017,39053,"OH","39","053",30156,0.954868019631251,1820,0.143487199893885,7.50659178007084,8.13094230223188,9.04452188728124,6.59230769230769,677.040028506949,114,16838,1,1,1,0,9 +"21124",2017,39055,"OH","39","055",93891,0.975258544482432,5606,0.156766889265212,8.63159273172473,9.17471319433303,10.1534288162357,4.71538461538462,270.438538464532,139,51398,1,1,1,0,9 +"21125",2017,39057,"OH","39","057",166720,0.878604846449136,13849,0.137050143953935,9.53596830684272,9.8329577863456,10.8074425106492,4.26153846153846,375.828809468034,369,98183,1,1,1,0,9 +"21126",2017,39059,"OH","39","059",39077,0.96711620646416,2252,0.147938685160069,7.71957398925958,8.36357570275064,9.30537778731093,6.00769230769231,542.691751085383,120,22112,1,1,1,0,9 +"21127",2017,39061,"OH","39","061",814693,0.68980094342286,53571,0.133469908296745,10.8887631558652,11.4652152174808,12.4199816897283,4.37692307692308,491.581638480853,2367,481507,1,1,1,0,9 +"21128",2017,39063,"OH","39","063",75984,0.947949568330175,4827,0.137739524110339,8.48198043566049,9.08068716374931,9.99282538788832,3.61538461538462,425.483503981797,187,43950,1,1,1,0,9 +"21129",2017,39065,"OH","39","065",31338,0.973706043780713,3459,0.125247303593082,8.14873480893717,8.12976444579417,9.08591029359801,4.93846153846154,409.72105292698,73,17817,1,1,1,0,9 +"21130",2017,39067,"OH","39","067",15203,0.9668486482931,741,0.166743405906729,6.60800062529609,7.39633529380081,8.36194190614495,5.96923076923077,525.88524015426,45,8557,1,1,1,0,9 +"21131",2017,39069,"OH","39","069",27189,0.977233439994115,1514,0.146897642428923,7.32251043399739,8.08394570229562,8.94049821765273,5.16153846153846,377.874780115968,58,15349,1,1,1,0,9 +"21132",2017,39071,"OH","39","071",42931,0.969369453308798,2292,0.13943304372132,7.73718007783463,8.5356223268846,9.39963754250656,5.93846153846154,584.136521049777,140,23967,1,1,1,0,9 +"21133",2017,39073,"OH","39","073",28440,0.980485232067511,1528,0.149367088607595,7.33171496972647,8.10107150311954,9.00577320623491,5.42307692307692,555.247084952804,90,16209,1,1,1,0,9 +"21134",2017,39075,"OH","39","075",43908,0.990138471349185,3076,0.109342261091373,8.03138533062553,8.47803647621504,9.33397293242146,3.52307692307692,283.818007160947,65,22902,1,1,1,0,9 +"21135",2017,39077,"OH","39","077",58403,0.970652192524357,3564,0.139222300224304,8.1786387885907,8.82128980513611,9.71420180194054,6.40769230769231,461.190655614167,153,33175,1,1,1,0,9 +"21136",2017,39079,"OH","39","079",32398,0.979720970430274,1738,0.138218408543737,7.46049030582534,8.29304913976844,9.14740057220231,7.11538461538461,674.727410126309,125,18526,1,1,1,0,9 +"21137",2017,39081,"OH","39","081",66398,0.926729720774722,4396,0.157549926202596,8.38845031552351,8.85523562320697,9.86276971925757,7.33076923076923,586.129160588781,221,37705,1,1,1,0,9 +"21138",2017,39083,"OH","39","083",61345,0.975238405738039,4767,0.140239628331567,8.46947245520483,8.7876782390395,9.76077125033453,4.5,453.640833528448,155,34168,1,1,1,0,9 +"21139",2017,39085,"OH","39","085",230114,0.930295418792425,12967,0.155014471088243,9.47016294754888,10.1704948674967,11.1168709381162,5.06923076923077,440.452866308721,589,133726,1,1,1,0,9 +"21140",2017,39087,"OH","39","087",60176,0.964703536293539,3308,0.139573916511566,8.10409905614358,8.89877535906107,9.77656285896246,5.93076923076923,712.4725972078,247,34668,1,1,1,0,9 +"21141",2017,39089,"OH","39","089",173790,0.931399965475574,10855,0.139518959663962,9.29238108231239,9.9437173717552,10.8393259772527,4.23076923076923,430.536176998206,432,100340,1,1,1,0,9 +"21142",2017,39091,"OH","39","091",45217,0.958356370391667,2513,0.149833027401199,7.82923253754359,8.58391682345914,9.46405192485681,4.06923076923077,557.318677916247,144,25838,1,1,1,0,9 +"21143",2017,39093,"OH","39","093",307498,0.876753669942569,18841,0.143334265588719,9.843790625278,10.5183217785367,11.3901700876873,6.06923076923077,437.704908750134,773,176603,1,1,1,0,9 +"21144",2017,39095,"OH","39","095",431312,0.757595429758504,27884,0.138201580294543,10.2358083266063,10.8103136355945,11.7732414793588,5.86923076923077,504.820360823721,1274,252367,1,1,1,0,9 +"21145",2017,39097,"OH","39","097",44077,0.910247975134424,2580,0.134559974589922,7.85554467791566,8.73841489716775,9.35824300189968,3.87692307692308,459.954734613419,126,27394,1,1,1,0,9 +"21146",2017,39099,"OH","39","099",229438,0.815004489230206,14069,0.154181085957862,9.55172907437721,10.1503476304677,11.0911175375219,6.85384615384615,501.899284526552,658,131102,1,1,1,0,9 +"21147",2017,39101,"OH","39","101",65113,0.914256753643666,4011,0.14061708107444,8.29679586577005,8.99367578675968,9.74431595564087,5.02307692307692,559.307180782515,217,38798,1,1,1,0,9 +"21148",2017,39103,"OH","39","103",178339,0.965688940725248,9674,0.144191679890546,9.17719715338293,10.003016095251,10.8591336038883,4.65384615384615,323.56502785178,334,103225,1,1,1,0,9 +"21149",2017,39105,"OH","39","105",23083,0.98002859247065,1105,0.153316293376078,7.00760061395185,7.93056585423396,8.79330862749655,8.10769230769231,590.059762463121,78,13219,1,1,1,0,9 +"21150",2017,39107,"OH","39","107",40889,0.976741911027416,2387,0.147007752696324,7.77779262633883,8.39026849784257,9.29716006392874,3.06923076923077,294.669166889901,66,22398,1,1,1,0,9 +"21151",2017,39109,"OH","39","109",105215,0.947450458584803,5432,0.141082545264458,8.60006266923853,9.43898874392484,10.3059815846993,4.23076923076923,416.694670340749,248,59516,1,1,1,0,9 +"21152",2017,39111,"OH","39","111",13946,0.985013623978202,705,0.154668005162771,6.55819780281227,7.3038432252777,8.22550309756692,8.36153846153846,432.673397141733,33,7627,1,1,1,0,9 +"21153",2017,39113,"OH","39","113",531964,0.744384958380642,35350,0.135699032265341,10.4730536713247,11.0069049448473,11.9683102578294,4.86923076923077,631.733594515181,1935,306300,1,1,1,0,9 +"21154",2017,39115,"OH","39","115",14645,0.942437692045067,779,0.157255035848412,6.65801104587075,7.39939808333135,8.31581113188354,6.74615384615385,474.279460051076,39,8223,1,1,1,0,9 +"21155",2017,39117,"OH","39","117",34928,0.981275767292716,1750,0.153000458085204,7.46737106691756,8.36846113761584,9.2032150470336,4.93076923076923,521.195274496178,105,20146,1,1,1,0,9 +"21156",2017,39119,"OH","39","119",86099,0.936189735072417,5737,0.1400132405719,8.65469170460187,9.19978485803667,10.1350356861941,5.65384615384615,498.227848101266,246,49375,1,1,1,0,9 +"21157",2017,39121,"OH","39","121",14406,0.962862696098848,652,0.196237678744967,6.48004456192665,7.07326971745971,8.04205641005875,7.17692307692308,427.960057061341,33,7711,1,1,1,0,9 +"21158",2017,39123,"OH","39","123",40652,0.977245891961035,1947,0.174357965167765,7.5740450053722,8.321664807135,9.31506068274659,6.75384615384615,492.236094330335,110,22347,1,1,1,0,9 +"21159",2017,39125,"OH","39","125",18816,0.974011479591837,1050,0.147427721088435,6.95654544315157,7.68248244653451,8.55256033525353,4.4,521.277604018576,55,10551,1,1,1,0,9 +"21160",2017,39127,"OH","39","127",35975,0.9845170257123,1999,0.146129256428075,7.6004023345004,8.3707791729607,9.23989917421773,6.03846153846154,430.663221360896,90,20898,1,1,1,0,9 +"21161",2017,39129,"OH","39","129",57769,0.946563035538091,3777,0.129256175457425,8.23668532271246,8.95802544336169,9.66046012062478,4.64615384615385,517.157633075231,181,34999,1,1,1,0,9 +"21162",2017,39131,"OH","39","131",28084,0.971941318900442,1537,0.140329012961117,7.3375877435386,8.14206328310415,8.98029807897082,6.94615384615385,826.084235559171,132,15979,1,1,1,0,9 +"21163",2017,39133,"OH","39","133",162441,0.921885484575938,18936,0.140370965458228,9.84882015119382,9.75458142928158,10.8124313617472,5.03846153846154,366.147193211488,359,98048,1,1,1,0,9 +"21164",2017,39135,"OH","39","135",41119,0.978890537221236,2125,0.14740144458766,7.66152708135852,8.48218758221742,9.36511942576374,4.43846153846154,641.550053821313,149,23225,1,1,1,0,9 +"21165",2017,39137,"OH","39","137",33870,0.985296722763508,1950,0.147446117508119,7.57558465155779,8.24275634571448,9.12847934549586,3.53076923076923,329.997870981478,62,18788,1,1,1,0,9 +"21166",2017,39139,"OH","39","139",120500,0.883095435684647,7314,0.140257261410788,8.89754559870933,9.55541833006925,10.3822341008384,5.43076923076923,557.761943698166,382,68488,1,1,1,0,9 +"21167",2017,39141,"OH","39","141",77299,0.917049379681497,4444,0.143611172201452,8.39931015075952,9.23386156701753,9.95313449242554,5.10769230769231,497.544309203502,233,46830,1,1,1,0,9 +"21168",2017,39143,"OH","39","143",59097,0.945124117975532,3311,0.149466131952553,8.10500553754725,8.85566343070012,9.73400324454366,4.72307692307692,509.720246562352,172,33744,1,1,1,0,9 +"21169",2017,39145,"OH","39","145",76018,0.95557631087374,4716,0.13788839485385,8.45871626165726,9.13475438501959,9.99076556064319,7.03846153846154,750.272826482357,330,43984,1,1,1,0,9 +"21170",2017,39147,"OH","39","147",55322,0.951212899027512,3912,0.143975272043672,8.27180403115471,8.77152528418647,9.64134326387219,4.72307692307692,450.076608784474,141,31328,1,1,1,0,9 +"21171",2017,39149,"OH","39","149",48731,0.951611910282982,2896,0.139951981285014,7.97108575350561,8.6301646700754,9.51672152186045,4.13076923076923,436.189160699357,120,27511,1,1,1,0,9 +"21172",2017,39151,"OH","39","151",372120,0.893679458239278,22865,0.145469203482748,10.0373626360922,10.6395984325282,11.5879216140066,5.2,490.103675777568,1040,212200,1,1,1,0,9 +"21173",2017,39153,"OH","39","153",541695,0.797668429651372,33537,0.145546848318703,10.4204045859384,11.0455264407939,12.0014134510145,5.05384615384615,472.696309838344,1510,319444,1,1,1,0,9 +"21174",2017,39155,"OH","39","155",200424,0.895780944397876,11600,0.152327066618768,9.35876037709446,9.99168156327204,10.9517008836204,7.17692307692308,605.926581158779,685,113050,1,1,1,0,9 +"21175",2017,39157,"OH","39","157",92377,0.972395726208905,5195,0.144538142611256,8.55545190353333,9.26992916338784,10.1522208748493,5,450.459196551657,232,51503,1,1,1,0,9 +"21176",2017,39159,"OH","39","159",56842,0.922223004116674,3305,0.120896520178741,8.10319175228579,9.04215837873595,9.82168078983204,3.71538461538462,301.047878191397,104,34546,1,1,1,0,9 +"21177",2017,39161,"OH","39","161",28290,0.97621067515023,1631,0.142700600919053,7.39694860262101,8.10591119798651,8.96839619119826,3.90769230769231,468.23588964819,74,15804,1,1,1,0,9 +"21178",2017,39163,"OH","39","163",13080,0.982951070336391,722,0.156269113149847,6.58202513889283,7.41155628781116,8.23721470334949,6.83846153846154,666.40533124265,51,7653,1,1,1,0,9 +"21179",2017,39165,"OH","39","165",229292,0.896062662456606,12646,0.130859340927725,9.44509623861856,10.3456381114521,11.0944359057393,4.1,335.113624463295,448,133686,1,1,1,0,9 +"21180",2017,39167,"OH","39","167",60557,0.971233713691233,3846,0.155390788843569,8.25478892614873,8.82335348511379,9.76175116222088,6.20769230769231,486.857739009476,168,34507,1,1,1,0,9 +"21181",2017,39169,"OH","39","169",116227,0.963089471465322,7827,0.135880647353885,8.96533457380484,9.45383541953829,10.370612041031,3.89230769230769,421.387770390486,270,64074,1,1,1,0,9 +"21182",2017,39171,"OH","39","171",36754,0.973662730587147,2038,0.148908962289819,7.61972421378267,8.36846113761584,9.22414465295258,4.36153846153846,463.81292878539,96,20698,1,1,1,0,9 +"21183",2017,39173,"OH","39","173",130593,0.942232738355042,16365,0.123467567174351,9.70290018693528,9.57879565445045,10.5701880830811,4.38461538461538,309.613432854996,241,77839,1,1,1,0,9 +"21184",2017,39175,"OH","39","175",22057,0.981865167520515,1218,0.142721131613547,7.10496544826984,7.88758403166028,8.72192834304709,3.68461538461538,346.355215465163,43,12415,1,1,1,0,9 +"21185",2017,40001,"OK","40","001",22122,0.471521562245728,1354,0.122909321037881,7.21081845347222,7.87054784450771,8.71489585024849,4.69230769230769,690.335305719921,84,12168,0,1,0,0,9 +"21186",2017,40003,"OK","40","003",5905,0.896020321761219,247,0.134462320067739,5.50938833662798,6.7719355558396,7.10578612948127,2.51538461538462,375.180375180375,13,3465,0,1,0,0,9 +"21187",2017,40005,"OK","40","005",13771,0.769588265194975,800,0.130854694648174,6.68461172766793,7.38523092306657,8.1763915966338,5.01538461538462,592.096794954306,46,7769,0,1,0,0,9 +"21188",2017,40007,"OK","40","007",5363,0.953384299832183,270,0.134253216483312,5.59842195899838,6.4118182677099,7.2283884515736,2.43076923076923,360.36036036036,10,2775,0,1,0,0,9 +"21189",2017,40009,"OK","40","009",21793,0.900197311063185,1417,0.123480016519066,7.25629723969068,7.95542508891267,8.61450137388324,3.66153846153846,708.346165691407,92,12988,0,1,0,0,9 +"21190",2017,40011,"OK","40","011",9560,0.831485355648536,483,0.143200836820084,6.18001665365257,6.93731408122368,7.81762544305337,2.63076923076923,825.447956512986,41,4967,0,1,0,0,9 +"21191",2017,40013,"OK","40","013",46571,0.790856971076421,3141,0.117476541195164,8.05229649953865,8.57565076098781,9.49205467264817,3.62307692307692,652.635643946708,169,25895,0,1,0,0,9 +"21192",2017,40015,"OK","40","015",29420,0.670462270564242,1777,0.124065261726717,7.48268182815465,8.15851624480683,8.8989119057944,4.17692307692308,654.194179505992,107,16356,0,1,0,0,9 +"21193",2017,40017,"OK","40","017",140146,0.863699285031324,7539,0.118290925178029,8.9278448262117,9.90483664210542,10.6268244042591,3.33076923076923,331.001370078931,273,82477,0,1,0,0,9 +"21194",2017,40019,"OK","40","019",48373,0.780476712215492,2792,0.13156099476981,7.93451346388226,8.69030580912488,9.52112843314244,4.28461538461538,618.885265342425,167,26984,0,1,0,0,9 +"21195",2017,40021,"OK","40","021",48956,0.559767954898276,5342,0.119556336301985,8.58335539366991,8.59415423255237,9.56430163721723,5.10769230769231,535.886534957665,150,27991,0,1,0,0,9 +"21196",2017,40023,"OK","40","023",14807,0.662862159789289,764,0.144526237590329,6.63856778916652,7.37838371299671,8.32360844234357,5.82307692307692,668.09529812177,53,7933,0,1,0,0,9 +"21197",2017,40027,"OK","40","027",279723,0.823915087425775,30445,0.114373862714185,10.3236770560427,10.495653503242,11.3524984635115,3.33846153846154,326.607803780065,563,172378,0,1,0,0,9 +"21198",2017,40029,"OK","40","029",5623,0.755824293081985,348,0.143339854170372,5.85220247977447,6.45519856334012,7.31388683163346,5.10769230769231,853.578463558766,26,3046,0,1,0,0,9 +"21199",2017,40031,"OK","40","031",121994,0.684254963358854,11294,0.113767890224109,9.33202689023278,9.60393530751386,10.4534858113766,4.16923076923077,446.033969294369,328,73537,0,1,0,0,9 +"21200",2017,40033,"OK","40","033",5866,0.836856460961473,305,0.14745993862939,5.72031177660741,6.43133108193348,7.39510754656249,3.8,427.742132600061,14,3273,0,1,0,0,9 +"21201",2017,40035,"OK","40","035",14328,0.706030150753769,814,0.137213847012842,6.70196036600254,7.39878627541995,8.22094116828139,4.11538461538461,670.890793887439,54,8049,0,1,0,0,9 +"21202",2017,40037,"OK","40","037",71822,0.833727827128178,4032,0.137395227089193,8.3020178097512,9.05986625862135,9.91556433376158,4.73076923076923,564.580031695721,228,40384,0,1,0,0,9 +"21203",2017,40039,"OK","40","039",28928,0.854293418141593,3623,0.111760232300885,8.19505769089508,8.03722003113301,9.00810178134187,3.06153846153846,518.759802147424,86,16578,0,1,0,0,9 +"21204",2017,40041,"OK","40","041",42692,0.702754614447672,2242,0.151995690059027,7.7151236036321,8.36287583103188,9.35496006158613,4.16923076923077,553.538216278452,125,22582,0,1,0,0,9 +"21205",2017,40047,"OK","40","047",61720,0.871548930654569,4025,0.124578742709008,8.30028018985266,8.90463009700501,9.73477299914839,3.65384615384615,473.448870444516,162,34217,0,1,0,0,9 +"21206",2017,40049,"OK","40","049",27875,0.853165919282511,1503,0.133309417040359,7.31521838975297,8.1324126745009,8.94624460933054,3.95384615384615,652.315720808871,100,15330,0,1,0,0,9 +"21207",2017,40051,"OK","40","051",54819,0.888797679636622,2997,0.14086356920046,8.00536706731666,8.85794198480471,9.6638969875516,3.84615384615385,511.121628017037,162,31695,0,1,0,0,9 +"21208",2017,40055,"OK","40","055",5794,0.861408353469106,349,0.113910942354159,5.85507192220243,6.66185474054531,7.12689080889881,4.93076923076923,342.368045649073,12,3505,0,1,0,0,9 +"21209",2017,40061,"OK","40","061",12735,0.767177071063997,668,0.134668237141735,6.50428817353665,7.30720231476474,8.14815643992162,6.25384615384615,625.545533895839,43,6874,0,1,0,0,9 +"21210",2017,40063,"OK","40","063",13266,0.696140509573345,847,0.126714910297,6.74170069465205,7.39694860262101,8.08363720314155,5.3,612.936880542514,47,7668,0,1,0,0,9 +"21211",2017,40065,"OK","40","065",25121,0.860316070220135,1961,0.11723259424386,7.58120982619635,8.00703401219341,8.86234196351635,3.56923076923077,472.451886333634,68,14393,0,1,0,0,9 +"21212",2017,40067,"OK","40","067",6158,0.890711269892822,283,0.146800909386164,5.64544689764324,6.51619307604296,7.37211802833779,5.26923076923077,1003.03951367781,33,3290,0,1,0,0,9 +"21213",2017,40069,"OK","40","069",11133,0.774364501931196,675,0.132219527530764,6.51471269087253,7.12286665859908,8.01994168767737,3.79230769230769,714.048488874128,43,6022,0,1,0,0,9 +"21214",2017,40071,"OK","40","071",44445,0.832804589942626,2633,0.130475869051637,7.87587915949631,8.52198170814803,9.37245922145262,5.11538461538461,669.868554095046,159,23736,0,1,0,0,9 +"21215",2017,40073,"OK","40","073",15773,0.925569010334115,896,0.132948709820579,6.79794041297493,7.5422134631934,8.35631996582815,2.62307692307692,385.649176113124,33,8557,0,1,0,0,9 +"21216",2017,40075,"OK","40","075",8850,0.849039548022599,496,0.154463276836158,6.20657592672493,6.85540879860993,7.77863014732581,4.98461538461538,743.955362678239,36,4839,0,1,0,0,9 +"21217",2017,40077,"OK","40","077",10312,0.704712955779674,675,0.131788207913111,6.51471269087253,6.97260625130175,7.9098566672694,7.09230769230769,652.883569096844,36,5514,0,1,0,0,9 +"21218",2017,40079,"OK","40","079",50022,0.801087521490544,2908,0.131522130262684,7.97522083865341,8.68558484267669,9.51635340111269,5.47692307692308,773.492588861707,215,27796,0,1,0,0,9 +"21219",2017,40081,"OK","40","081",34967,0.879772356793548,1816,0.144250293133526,7.50439155916124,8.26821888006751,9.17678358844734,4.11538461538461,534.045393858478,104,19474,0,1,0,0,9 +"21220",2017,40083,"OK","40","083",46806,0.852988933042772,3092,0.140516173140196,8.03657340970731,8.6891276553237,9.52090854821467,3.49230769230769,402.369509332737,108,26841,0,1,0,0,9 +"21221",2017,40085,"OK","40","085",10088,0.863302934179223,585,0.125991276764473,6.37161184723186,7.03966034986208,7.90691548867859,2.83846153846154,606.171932402645,33,5444,0,1,0,0,9 +"21222",2017,40087,"OK","40","087",39310,0.896362248791656,2148,0.131213431696769,7.67229245562876,8.57546209954021,9.33538586095041,3.33846153846154,460.108996694363,103,22386,0,1,0,0,9 +"21223",2017,40089,"OK","40","089",33024,0.686894379844961,1957,0.127664728682171,7.57916796739608,8.22416351263786,9.11756697182383,5.98461538461538,753.516409912927,135,17916,0,1,0,0,9 +"21224",2017,40091,"OK","40","091",19693,0.733204692022546,973,0.157619458690905,6.880384082186,7.58578882173203,8.56636423542269,7.3,959.692898272553,100,10420,0,1,0,0,9 +"21225",2017,40093,"OK","40","093",7694,0.945671952170522,360,0.144138289576293,5.88610403145016,6.78784498230958,7.60489448081162,3.00769230769231,742.390497401633,30,4041,0,1,0,0,9 +"21226",2017,40095,"OK","40","095",16371,0.834768798485126,890,0.141714006474864,6.79122146272619,7.49609734517596,8.38594490480628,4.4,692.360950842373,60,8666,0,1,0,0,9 +"21227",2017,40097,"OK","40","097",40994,0.721227496706835,2391,0.140288822754549,7.77946696745832,8.48322267184508,9.34224544285612,4.47692307692308,606.721955477957,139,22910,0,1,0,0,9 +"21228",2017,40099,"OK","40","099",13927,0.804911323328786,707,0.144826595821067,6.56103066589657,7.39018142822643,8.25608813381491,3.5,730.498304200365,56,7666,0,1,0,0,9 +"21229",2017,40101,"OK","40","101",69089,0.636729435944941,4415,0.130425972296603,8.39276311303806,9.02797881438221,9.89565697342094,4.81538461538462,663.898287706347,259,39012,0,1,0,0,9 +"21230",2017,40103,"OK","40","103",11311,0.86013615064981,575,0.138979754221554,6.35437004079735,7.11720550316434,8.04076899436758,3.11538461538462,565.976714100906,35,6184,0,1,0,0,9 +"21231",2017,40105,"OK","40","105",10322,0.737453981786475,564,0.143867467545049,6.33505425149806,7.06304816338817,7.95437227253187,5.13846153846154,693.240901213172,40,5770,0,1,0,0,9 +"21232",2017,40107,"OK","40","107",12077,0.667467086196903,687,0.13190361844829,6.53233429222235,7.31055015853442,8.00469951054955,5.72307692307692,706.764748305207,49,6933,0,1,0,0,9 +"21233",2017,40109,"OK","40","109",786126,0.733308655355503,51957,0.119025448846623,10.8581717323972,11.5174253253951,12.3624907527998,3.77692307692308,473.62046664399,2186,461551,0,1,0,0,9 +"21234",2017,40111,"OK","40","111",38831,0.692436455409338,2536,0.132780510416935,7.83834331555712,8.37378460812088,9.2750038853019,5.99230769230769,789.362401917023,168,21283,0,1,0,0,9 +"21235",2017,40113,"OK","40","113",47348,0.699058038354313,2511,0.150312579200811,7.82843635915759,8.60061479955531,9.47929823542968,4.88461538461538,481.673816512381,128,26574,0,1,0,0,9 +"21236",2017,40115,"OK","40","115",31407,0.72592097303149,2045,0.126309421466552,7.6231530684769,8.16137502319749,9.05730573580712,4.12307692307692,655.268958122357,110,16787,0,1,0,0,9 +"21237",2017,40117,"OK","40","117",16417,0.819760004872997,834,0.143022476700981,6.72623340235875,7.54486106865846,8.41205487329293,5.06923076923077,543.177031371245,49,9021,0,1,0,0,9 +"21238",2017,40119,"OK","40","119",81998,0.837605795263299,16749,0.0944535232566648,9.72609383397847,9.0068768914288,10.0986842017994,3.38461538461538,313.832306963524,159,50664,0,1,0,0,9 +"21239",2017,40121,"OK","40","121",44182,0.764474220270698,2467,0.132135258702639,7.81075811652936,8.56845648535378,9.37058672111828,4.98461538461538,729.750433415313,181,24803,0,1,0,0,9 +"21240",2017,40123,"OK","40","123",38348,0.723505789089392,2952,0.118702409512882,7.99023818572036,8.37793112408273,9.30601412204446,3.57692307692308,519.89045165483,112,21543,0,1,0,0,9 +"21241",2017,40125,"OK","40","125",72232,0.790854468933437,4814,0.126495182190719,8.47928361834302,9.10353436765837,9.98677115667287,3.91538461538462,527.551242649372,218,41323,0,1,0,0,9 +"21242",2017,40127,"OK","40","127",11089,0.763188745603751,545,0.141491568220759,6.30078579466324,7.04664727784876,7.99463231143183,5.87692307692308,457.549567869853,27,5901,0,1,0,0,9 +"21243",2017,40131,"OK","40","131",91472,0.805339338814063,5805,0.136347734825958,8.66647489413199,9.30465005144692,10.1871239522792,4.16153846153846,376.594375686007,199,52842,0,1,0,0,9 +"21244",2017,40133,"OK","40","133",24864,0.703627734877735,1461,0.132158944658945,7.2868764117507,7.96797317966293,8.83419131820207,5.39230769230769,801.127512795787,108,13481,0,1,0,0,9 +"21245",2017,40135,"OK","40","135",41762,0.7082754657344,2477,0.13078875532781,7.81480342948936,8.5016733797582,9.37288430116146,5.18461538461538,753.303775128062,175,23231,0,1,0,0,9 +"21246",2017,40137,"OK","40","137",43374,0.891870705952875,2288,0.143011942638447,7.73543335249969,8.53010941668278,9.40730420550701,5.86153846153846,490.216617086354,117,23867,0,1,0,0,9 +"21247",2017,40139,"OK","40","139",21052,0.876116283488505,1584,0.105880676420293,7.36770857237437,7.90765159471109,8.58802437217683,2.96923076923077,334.364289893839,40,11963,0,1,0,0,9 +"21248",2017,40141,"OK","40","141",7399,0.844032977429382,409,0.139883768076767,6.0137151560428,6.70563909486,7.56527528189893,4.00769230769231,671.80890768848,27,4019,0,1,0,0,9 +"21249",2017,40143,"OK","40","143",646874,0.759252961163998,41703,0.120535065561454,10.6383283476452,11.3231199732665,12.1639737945088,4.03076923076923,445.940663566089,1677,376059,0,1,0,0,9 +"21250",2017,40145,"OK","40","145",79021,0.80884828083674,4154,0.130977841333316,8.33182700443606,9.23268877563994,10.0386738250912,4.14615384615385,435.946801212684,197,45189,0,1,0,0,9 +"21251",2017,40147,"OK","40","147",52107,0.810735601742568,2927,0.1357974936189,7.98173328669189,8.68101127664563,9.58128304604592,4.26923076923077,461.495103219897,131,28386,0,1,0,0,9 +"21252",2017,40149,"OK","40","149",11061,0.926769731489015,541,0.148630322755628,6.29341927884648,7.13966033596492,8.01334318138667,4.2,722.140160840309,44,6093,0,1,0,0,9 +"21253",2017,40151,"OK","40","151",9069,0.908699966920278,1098,0.113242915426177,7.00124562206948,6.82762923450285,7.75876054415766,2.46923076923077,568.504832291075,30,5277,0,1,0,0,9 +"21254",2017,40153,"OK","40","153",20540,0.92682570593963,1254,0.124732229795521,7.13409372119287,7.91022370709734,8.57451825803551,3.9,443.875373452838,52,11715,0,1,0,0,9 +"21255",2017,41001,"OR","41","001",16049,0.960620599414294,765,0.159386877687083,6.63987583382654,7.37525577800975,8.32724260745779,5.37692307692308,389.05918415468,33,8482,1,1,1,0,9 +"21256",2017,41003,"OR","41","003",91923,0.890680243247066,15411,0.119197589286686,9.64283681913538,9.13140538388804,10.2360234806215,3.2,167.271691935369,94,56196,1,1,1,0,9 +"21257",2017,41005,"OR","41","005",412982,0.914214178826196,22642,0.142732613043668,10.0275618676381,10.8985155249477,11.7121123328318,3.68461538461538,285.317896162454,691,242186,1,1,1,0,9 +"21258",2017,41007,"OR","41","007",39185,0.948526221768534,2157,0.162919484496619,7.67647364638916,8.41980084540759,9.32616593748177,4.02307692307692,519.201503894011,116,22342,1,1,1,0,9 +"21259",2017,41009,"OR","41","009",51749,0.950511120987845,2630,0.155771126012097,7.87473912517181,8.75020786252571,9.61680498041743,5.07692307692308,322.344809251628,97,30092,1,1,1,0,9 +"21260",2017,41011,"OR","41","011",63764,0.933661627250486,3024,0.164183551847437,8.01433573729942,8.80327398250104,9.76749599332478,5.40769230769231,665.456745311555,231,34713,1,1,1,0,9 +"21261",2017,41013,"OR","41","013",23072,0.964155686546463,1086,0.164615117891817,6.99025650049388,7.83597458172157,8.75683981482946,6.24615384615385,368.383118443181,46,12487,1,1,1,0,9 +"21262",2017,41015,"OR","41","015",22681,0.945328689211234,793,0.191349587760681,6.67582322163485,7.54644627374602,8.6769282495374,5.97692307692308,547.445255474453,63,11508,1,1,1,0,9 +"21263",2017,41017,"OR","41","017",186971,0.961464612159105,9319,0.144851340582229,9.13981060578566,10.1004103242073,10.9212512533409,4.17692307692308,248.488362461691,270,108657,1,1,1,0,9 +"21264",2017,41019,"OR","41","019",109378,0.949395673718664,5300,0.156676845435097,8.57546209954021,9.34347168457936,10.2989359942576,5.26153846153846,553.549529908707,325,58712,1,1,1,0,9 +"21265",2017,41023,"OR","41","023",7190,0.963143254520167,280,0.167872044506259,5.63478960316925,6.5875500148248,7.50933526601659,6.83846153846154,520.26286966046,19,3652,1,1,1,0,9 +"21266",2017,41025,"OR","41","025",7270,0.928198074277854,368,0.158872077028886,5.90808293816893,6.67456139181443,7.58273848891441,6.16923076923077,281.906714505382,11,3902,1,1,1,0,9 +"21267",2017,41027,"OR","41","027",23405,0.95210425122837,1335,0.134116641743217,7.19668657083435,8.03073492409854,8.8155184239665,3.53076923076923,243.668315735066,33,13543,1,1,1,0,9 +"21268",2017,41029,"OR","41","029",217030,0.943196793070083,11807,0.143302769202414,9.37644785490711,10.1293873020441,11.0291960668659,4.66153846153846,368.570673013354,446,121008,1,1,1,0,9 +"21269",2017,41031,"OR","41","031",23629,0.764145753100004,1331,0.136992678488298,7.19368581839511,7.86172707782398,8.72712991524317,5.53846153846154,335.084913563323,44,13131,1,1,1,0,9 +"21270",2017,41033,"OR","41","033",86732,0.952820181709173,4071,0.157600424295531,8.31164394850298,9.09739561296005,10.0656064020126,5.26923076923077,523.320468371819,240,45861,1,1,1,0,9 +"21271",2017,41035,"OR","41","035",66853,0.909832019505482,3890,0.144929920871165,8.26616443661249,8.86531163267185,9.82601237925672,5.82307692307692,584.099513250406,216,36980,1,1,1,0,9 +"21272",2017,41037,"OR","41","037",7892,0.93841865179929,366,0.160922453117081,5.90263333340137,6.79570577517351,7.57095858316901,5.62307692307692,327.102803738318,14,4280,1,1,1,0,9 +"21273",2017,41039,"OR","41","039",375689,0.920870720196759,35771,0.135375270502996,10.4848927882503,10.7105212984733,11.6307085006266,4.36153846153846,360.055019643451,801,222466,1,1,1,0,9 +"21274",2017,41041,"OR","41","041",48794,0.92068696970939,2012,0.183977538221913,7.60688453121963,8.50431056558522,9.51958822234252,4.68461538461538,571.341509865163,150,26254,1,1,1,0,9 +"21275",2017,41043,"OR","41","043",125098,0.949687445043086,7074,0.138051767414347,8.86418136976543,9.59641876628416,10.4869872637915,4.66923076923077,404.066002140001,287,71028,1,1,1,0,9 +"21276",2017,41045,"OR","41","045",30449,0.936910900193767,2095,0.11612860849289,7.64730883235624,8.20248244657654,8.85423669340574,4.56923076923077,510.961915513041,86,16831,1,1,1,0,9 +"21277",2017,41047,"OR","41","047",340846,0.90810512665544,22530,0.121635577357516,10.0226030334263,10.6715798547424,11.4769562599305,4.26923076923077,323.477174897762,632,195377,1,1,1,0,9 +"21278",2017,41049,"OR","41","049",11225,0.945389755011136,694,0.137550111358575,6.5424719605068,7.2152399787301,7.99564360428727,4.35384615384615,266.355918095555,16,6007,1,1,1,0,9 +"21279",2017,41051,"OR","41","051",808192,0.818369892302819,47908,0.116552749841622,10.7770377840674,11.7930389679221,12.4933658923991,3.58461538461538,303.311225900109,1613,531797,1,1,1,0,9 +"21280",2017,41053,"OR","41","053",83707,0.923136655237913,7602,0.121065143894776,8.9361666495492,9.17367638760459,10.0892199524522,4.26923076923077,330.314331379861,155,46925,1,1,1,0,9 +"21281",2017,41057,"OR","41","057",26511,0.955226132548753,1169,0.168232054618837,7.06390396147207,7.91425227874244,8.86573515212478,4.18461538461538,401.912549372878,58,14431,1,1,1,0,9 +"21282",2017,41059,"OR","41","059",77069,0.919993771814867,5015,0.120268849991566,8.52018870039604,9.16230492293763,9.91066175628413,4.75384615384615,408.051610550072,179,43867,1,1,1,0,9 +"21283",2017,41061,"OR","41","061",26410,0.945399469897766,2161,0.136312003029156,7.67832635650689,7.96762673933382,8.89151157052756,5.18461538461538,369.260781718108,53,14353,1,1,1,0,9 +"21284",2017,41063,"OR","41","063",7018,0.973354231974922,235,0.182103163294386,5.45958551414416,6.58063913728495,7.54433210805369,5.58461538461538,464.48087431694,17,3660,1,1,1,0,9 +"21285",2017,41065,"OR","41","065",26296,0.922649832674171,1488,0.144394584727715,7.30518821539304,7.98514393119862,8.89329814421792,4.17692307692308,477.164280845262,70,14670,1,1,1,0,9 +"21286",2017,41067,"OR","41","067",591969,0.825960481038703,35836,0.11643515116501,10.4867082537175,11.3949861671055,12.114905372026,3.43076923076923,199.376535254398,724,363132,1,1,1,0,9 +"21287",2017,41071,"OR","41","071",105313,0.933427022304939,7365,0.129015411202795,8.90449432889673,9.49912183987126,10.299272626591,3.68461538461538,353.1769498653,215,60876,1,1,1,0,9 +"21288",2017,44001,"RI","44","001",48787,0.955459446163937,3441,0.155676717158259,8.14351740579748,8.56788630573176,9.5761633448119,3.87692307692308,240.656851642129,68,28256,1,1,1,0,9 +"21289",2017,44003,"RI","44","003",163657,0.937668416260838,8717,0.15624751767416,9.07303042101158,9.88720571996184,10.8347457115321,4.15384615384615,353.204427096399,352,99659,1,1,1,0,9 +"21290",2017,44005,"RI","44","005",83099,0.915991768854017,5365,0.151626373361894,8.5876516550648,9.11932097358901,10.0845583274284,3.93846153846154,307.50307503075,150,48780,1,1,1,0,9 +"21291",2017,44007,"RI","44","007",634525,0.799549269138332,48360,0.12972538513061,10.7864283047287,11.2525861489102,12.1879595901032,4.82307692307692,336.341579264927,1310,389485,1,1,1,0,9 +"21292",2017,44009,"RI","44","009",126486,0.946618598105719,12226,0.159914931296744,9.41132011058867,9.39099387166944,10.5285967626888,4.04615384615385,298.788474132286,219,73296,1,1,1,0,9 +"21293",2017,45001,"SC","45","001",24598,0.707455890722823,1558,0.146475323197008,7.35115822643069,7.84227877911735,8.85466492837053,4.50769230769231,564.598914796891,77,13638,0,1,0,0,9 +"21294",2017,45003,"SC","45","003",168510,0.719921666369948,9646,0.142430716277966,9.17429860062892,9.86749761480297,10.8112016096594,4.04615384615385,530.340275525895,507,95599,0,1,0,0,9 +"21295",2017,45005,"SC","45","005",9010,0.247502774694784,590,0.13496115427303,6.38012253689976,6.91373735065968,7.7698009960039,6.8,691.459540272846,37,5351,0,1,0,0,9 +"21296",2017,45007,"SC","45","007",198255,0.815696955940582,11508,0.1337368540516,9.35079772467144,10.0666687626777,10.9713141199386,3.85384615384615,535.494223932336,604,112793,0,1,0,0,9 +"21297",2017,45009,"SC","45","009",14402,0.3769615331204,1174,0.144979863907791,7.06817200038804,7.24708058458576,8.31139827843664,7.34615384615385,671.310956301457,53,7895,0,1,0,0,9 +"21298",2017,45011,"SC","45","011",21362,0.537028368130325,1283,0.143432262896733,7.15695636461564,7.78986855905471,8.73873546136347,5.92307692307692,653.813914501257,78,11930,0,1,0,0,9 +"21299",2017,45013,"SC","45","013",186993,0.785462557421936,12277,0.135363355847545,9.41548287218084,9.84262227676485,10.8120887959259,3.99230769230769,321.49702203079,312,97046,0,1,0,0,9 +"21300",2017,45015,"SC","45","015",214938,0.706533977239948,14852,0.122979649945566,9.60588981529697,10.2477507889178,11.0781036342011,3.75384615384615,356.355649081847,464,130207,0,1,0,0,9 +"21301",2017,45017,"SC","45","017",14689,0.573013819865205,807,0.159847504935666,6.69332366826995,7.34148385236316,8.36124088964235,5.11538461538461,590.361445783133,49,8300,0,1,0,0,9 +"21302",2017,45019,"SC","45","019",402725,0.696882488050158,25443,0.13100502824508,10.1441959350298,10.8532710858923,11.7566948340781,3.43846153846154,378.23648248136,938,247993,0,1,0,0,9 +"21303",2017,45021,"SC","45","021",56974,0.773142135008951,3575,0.129146628286587,8.18172045512811,8.81045964216192,9.7278833834897,4.89230769230769,595.528951869045,195,32744,0,1,0,0,9 +"21304",2017,45023,"SC","45","023",32300,0.609566563467492,1792,0.144520123839009,7.49108759353488,8.17723488551019,9.16178018136081,6.01538461538462,755.516904011306,139,18398,0,1,0,0,9 +"21305",2017,45025,"SC","45","025",45987,0.644682192793616,2789,0.141257311849001,7.93343838762749,8.57904059474232,9.50479942870699,4.25384615384615,602.568448009641,160,26553,0,1,0,0,9 +"21306",2017,45027,"SC","45","027",34053,0.501600446363022,2279,0.148768096790297,7.73149202924568,8.13622555490846,9.16051967699223,5.87692307692308,662.286743668539,125,18874,0,1,0,0,9 +"21307",2017,45029,"SC","45","029",37599,0.598739328173622,2186,0.146360275539243,7.68982866873648,8.31066090590723,9.30519590298886,4.70769230769231,747.049866768177,157,21016,0,1,0,0,9 +"21308",2017,45031,"SC","45","031",67022,0.565202470830474,4195,0.142162275073856,8.34164861890131,8.9511809664576,9.90887302481247,5.17692307692308,678.643764631612,258,38017,0,1,0,0,9 +"21309",2017,45033,"SC","45","033",30442,0.480947375336706,1806,0.13612771828395,7.49886973397693,8.18646442942209,9.1075321519945,5.61538461538461,723.242927967337,124,17145,0,1,0,0,9 +"21310",2017,45035,"SC","45","035",159533,0.7005321782954,9311,0.124011959907981,9.13895177588853,9.963123450432,10.7953831275756,3.79230769230769,375.429176515889,351,93493,0,1,0,0,9 +"21311",2017,45037,"SC","45","037",26846,0.622178350592267,1655,0.147545258139015,7.41155628781116,8.14235427684983,8.86262516940892,4.49230769230769,403.941489687251,66,16339,0,1,0,0,9 +"21312",2017,45039,"SC","45","039",22608,0.401804670912951,1312,0.172726468506723,7.17930796950403,7.74932246466036,8.84072491676172,7.22307692307692,724.692959035777,95,13109,0,1,0,0,9 +"21313",2017,45041,"SC","45","041",138510,0.544350588405169,8839,0.130250523427911,9.08692902706095,9.74671677658618,10.661719979752,4.46153846153846,557.697863414267,444,79613,0,1,0,0,9 +"21314",2017,45043,"SC","45","043",61894,0.670598119365367,3033,0.160128606973212,8.01730750768858,8.7106195279423,9.75938620856187,5.51538461538462,623.410458408287,201,32242,0,1,0,0,9 +"21315",2017,45045,"SC","45","045",507484,0.775200794507807,32333,0.125633517509912,10.3838436594859,11.0795083130925,11.9413516060489,3.6,392.337872144011,1173,298977,0,1,0,0,9 +"21316",2017,45047,"SC","45","047",70515,0.650854428135858,4476,0.128483301425229,8.40648506943182,8.98931956604295,9.95816511382682,4.42307692307692,503.313268248267,199,39538,0,1,0,0,9 +"21317",2017,45049,"SC","45","049",19527,0.44026220105495,1160,0.136221641829262,7.05617528410041,7.84109976542212,8.58241897633394,4.36923076923077,661.329620605639,76,11492,0,1,0,0,9 +"21318",2017,45051,"SC","45","051",333246,0.837057309014962,17293,0.153787292270575,9.75805707432592,10.5229612819091,11.4919877937553,4.94615384615385,531.249500955504,998,187859,0,1,0,0,9 +"21319",2017,45053,"SC","45","053",28556,0.544333940327777,1922,0.143717607508054,7.56112158953024,8.08147504013705,8.99056613813158,3.64615384615385,481.970724741164,81,16806,0,1,0,0,9 +"21320",2017,45055,"SC","45","055",65219,0.732071942225425,3414,0.142826476946902,8.13563990335439,8.95351076300717,9.85801936448898,4.40769230769231,503.881247446548,185,36715,0,1,0,0,9 +"21321",2017,45057,"SC","45","057",92517,0.756952776246528,4460,0.125728244538842,8.40290404501411,9.40549588675022,10.1732474784789,4.56923076923077,522.178006405901,269,51515,0,1,0,0,9 +"21322",2017,45059,"SC","45","059",66858,0.725911633611535,4323,0.142391336863203,8.37170488466763,8.9187841379758,9.89429543416721,4.31538461538462,685.878210979267,263,38345,0,1,0,0,9 +"21323",2017,45061,"SC","45","061",17385,0.342364106988783,1213,0.145125107851596,7.10085190894405,7.57147364885127,8.4721958254855,5.87692307692308,840.746896079773,86,10229,0,1,0,0,9 +"21324",2017,45063,"SC","45","063",290511,0.811449480398333,16218,0.13340975040532,9.6938770155045,10.5320162087583,11.3872488568822,3.53846153846154,409.759840048357,705,172052,0,1,0,0,9 +"21325",2017,45065,"SC","45","065",9568,0.524038461538462,409,0.167224080267559,6.0137151560428,6.8001700683022,7.65302041380419,4.46153846153846,644.279578289731,33,5122,0,1,0,0,9 +"21326",2017,45067,"SC","45","067",31288,0.407025057530043,1840,0.143920992073638,7.51752085060303,8.18172045512811,9.15239341202133,7.27692307692308,777.515406323792,135,17363,0,1,0,0,9 +"21327",2017,45069,"SC","45","069",26708,0.422682342369328,1646,0.134678747940692,7.40610338123702,8.14206328310415,8.88002911746844,6.44615384615385,786.962448878424,127,16138,0,1,0,0,9 +"21328",2017,45071,"SC","45","071",38377,0.660213148500404,2492,0.142090314511296,7.82084087990734,8.3221510702129,9.28349789259391,4.1,490.058807056847,105,21426,0,1,0,0,9 +"21329",2017,45073,"SC","45","073",77382,0.904189604817658,4073,0.154002222739138,8.31213510764841,9.0067543198775,9.9781310955319,4.3,582.783316949867,249,42726,0,1,0,0,9 +"21330",2017,45075,"SC","45","075",87664,0.350885198028837,6137,0.13943009673298,8.7220913023891,9.09504174761272,10.1672354746923,7.05384615384615,652.0487082442,317,48616,0,1,0,0,9 +"21331",2017,45077,"SC","45","077",123590,0.901941904684845,14928,0.124217169673922,9.61099392308713,9.48158813796454,10.4968696449065,4.05384615384615,433.889953462907,317,73060,0,1,0,0,9 +"21332",2017,45079,"SC","45","079",412492,0.47090367813194,46673,0.113922209400425,10.7509211180007,10.8298078200475,11.7825632134042,4.19230769230769,384.283739994252,976,253979,0,1,0,0,9 +"21333",2017,45081,"SC","45","081",20262,0.704422070871582,1098,0.143174415161386,7.00124562206948,7.75319426988434,8.62586820804189,3.85384615384615,437.880999398987,51,11647,0,1,0,0,9 +"21334",2017,45083,"SC","45","083",306979,0.752768104658625,19901,0.126458161633206,9.89852526070631,10.5117302260056,11.4199655211963,3.94615384615385,526.746388425028,940,178454,0,1,0,0,9 +"21335",2017,45085,"SC","45","085",106604,0.488865333383363,8054,0.12675884582192,8.9939241414114,9.37906997525067,10.3543720708352,5.12307692307692,533.302889947159,327,61316,0,1,0,0,9 +"21336",2017,45087,"SC","45","087",27433,0.660591258703022,1571,0.151715087668137,7.35946763825562,8.02486215028641,9.00663173330058,5.30769230769231,691.067315075505,108,15628,0,1,0,0,9 +"21337",2017,45089,"SC","45","089",31185,0.331505531505532,1844,0.147955747955748,7.51969240411654,8.15937473677543,9.10697785898103,6.26153846153846,820.419325432999,144,17552,0,1,0,0,9 +"21338",2017,45091,"SC","45","091",266502,0.764857299382369,15530,0.126152899415389,9.65052891614273,10.5093869645318,11.3111152315924,3.92307692307692,385.101772357827,606,157361,0,1,0,0,9 +"21339",2017,46005,"SD","46","005",18397,0.864053921835082,1034,0.138555199217264,6.94119005506837,7.58984151218266,8.48073665440562,2.61538461538462,425.708649153774,41,9631,0,1,0,0,9 +"21340",2017,46011,"SD","46","011",34871,0.936050012904706,6207,0.0966132316251326,8.73343296641365,8.15593633797239,9.19268543673746,2.9,117.130307467057,24,20490,0,1,0,0,9 +"21341",2017,46013,"SD","46","013",39332,0.896064273365199,2742,0.132157022271941,7.91644286012226,8.39683183474505,9.30728557803266,2.76153846153846,320.758978992546,71,22135,0,1,0,0,9 +"21342",2017,46019,"SD","46","019",10128,0.955963665086888,492,0.158175355450237,6.19847871649231,6.99025650049388,7.91935619066062,3.27692307692308,418.714727835427,23,5493,0,1,0,0,9 +"21343",2017,46023,"SD","46","023",9402,0.648904488406722,578,0.1291214635184,6.35957386867238,6.82871207164168,7.7484600238997,3.36153846153846,659.434162944054,31,4701,0,1,0,0,9 +"21344",2017,46027,"SD","46","027",14075,0.905932504440497,3233,0.0898046181172291,8.08116577772543,7.11963563801764,8.36287583103188,3.03076923076923,208.16468139239,18,8647,0,1,0,0,9 +"21345",2017,46029,"SD","46","029",28219,0.952230766504837,1701,0.137212516389667,7.43897159239586,8.10076824307173,8.96814141412681,3.09230769230769,307.943690296631,49,15912,0,1,0,0,9 +"21346",2017,46031,"SD","46","031",4187,0.305946978743731,255,0.112968712682111,5.54126354515843,6.05678401322862,6.92264389147589,3.83846153846154,1421.8009478673,30,2110,0,1,0,0,9 +"21347",2017,46033,"SD","46","033",8747,0.940093746427347,281,0.212301360466446,5.63835466933375,6.73340189183736,7.81480342948936,3.98461538461538,467.687074829932,22,4704,0,1,0,0,9 +"21348",2017,46035,"SD","46","035",19893,0.939978887045694,1367,0.138088774945961,7.22037383672395,7.7332456465298,8.59304250369967,2.68461538461538,357.306459001374,39,10915,0,1,0,0,9 +"21349",2017,46041,"SD","46","041",5854,0.214895797745132,400,0.107618722241203,5.99146454710798,6.41017488196617,7.33106030521863,9.27692307692308,842.034355001684,25,2969,0,1,0,0,9 +"21350",2017,46047,"SD","46","047",6698,0.892057330546432,276,0.18244252015527,5.62040086571715,6.49223983502047,7.46851327149634,3.73076923076923,545.037292025244,19,3486,0,1,0,0,9 +"21351",2017,46065,"SD","46","065",17697,0.851669774538057,952,0.142057975928123,6.85856503479136,7.64300363556072,8.56044423341055,2.53846153846154,347.015665278604,35,10086,0,1,0,0,9 +"21352",2017,46071,"SD","46","071",3277,0.415318889227952,228,0.116264876411352,5.42934562895444,5.72031177660741,6.71780469502369,5.31538461538462,953.516090584029,16,1678,0,1,0,0,9 +"21353",2017,46079,"SD","46","079",12814,0.960746058997971,818,0.181910410488528,6.70686233660275,7.12849594568004,8.12029131396856,3.56153846153846,327.728697634654,23,7018,0,1,0,0,9 +"21354",2017,46081,"SD","46","081",25736,0.943308983525023,2100,0.158532794529064,7.64969262371151,7.89020821310996,8.89686174448039,3.03846153846154,348.956551488197,51,14615,0,1,0,0,9 +"21355",2017,46083,"SD","46","083",56732,0.956091800042304,2972,0.108968483395614,7.99699040583765,9.05028898382796,9.70935653778267,2.27692307692308,159.764040801278,52,32548,0,1,0,0,9 +"21356",2017,46093,"SD","46","093",28007,0.923840468454315,2420,0.13278823151355,7.79152281915073,8.13476078241865,8.9743648418466,3.16923076923077,370.968706994555,62,16713,0,1,0,0,9 +"21357",2017,46099,"SD","46","099",189786,0.876060404877072,12623,0.121341932492386,9.44327582575286,10.1037718097043,10.9174855888143,2.61538461538462,288.158728176214,323,112091,0,1,0,0,9 +"21358",2017,46103,"SD","46","103",110686,0.851191659288438,6661,0.145004788320113,8.80402490241318,9.46133252611013,10.3477566203012,3.12307692307692,379.383145229138,239,62997,0,1,0,0,9 +"21359",2017,46109,"SD","46","109",10269,0.588470152887331,632,0.129710780017528,6.44888939414686,6.88243747099785,7.8336002236611,4.45384615384615,544.959128065395,28,5138,0,1,0,0,9 +"21360",2017,46113,"SD","46","113",14392,0.0528765981100611,1150,0.0830322401334074,7.0475172213573,7.31188616407716,8.25608813381491,NA,1092.16835375599,82,7508,0,1,0,0,9 +"21361",2017,46115,"SD","46","115",6516,0.960405156537753,368,0.156844689993861,5.90808293816893,6.50578406012823,7.45818615734049,3.13846153846154,286.779466590192,10,3487,0,1,0,0,9 +"21362",2017,46121,"SD","46","121",10332,0.0869144405729772,700,0.0795586527293844,6.5510803350434,6.98193467715639,7.84776253747361,6.13076923076923,803.461063040791,39,4854,0,1,0,0,9 +"21363",2017,46125,"SD","46","125",8290,0.979010856453558,393,0.14788902291918,5.97380961186926,6.88857245956536,7.67971363996637,2.99230769230769,495.495495495495,22,4440,0,1,0,0,9 +"21364",2017,46127,"SD","46","127",15311,0.958004049376265,781,0.139246293514467,6.66057514983969,7.54115245513631,8.33062262033287,3.35384615384615,357.739088957787,30,8386,0,1,0,0,9 +"21365",2017,46135,"SD","46","135",22691,0.931558767793398,1492,0.142920100480367,7.30787278076371,7.86901937649902,8.68423189134568,2.69230769230769,472.165105475592,62,13131,0,1,0,0,9 +"21366",2017,47001,"TN","47","001",76113,0.930865949312207,4145,0.145100048611932,8.3296580675694,9.09290727508409,10.000841097792,3.93846153846154,583.53243888991,254,43528,0,1,0,0,9 +"21367",2017,47003,"TN","47","003",48214,0.88343634628946,3029,0.120172563985564,8.01598781102724,8.70499967844076,9.54029139160713,3.93846153846154,545.69266589057,150,27488,0,1,0,0,9 +"21368",2017,47005,"TN","47","005",15989,0.960222653073988,792,0.152104571893177,6.67456139181443,7.44658509915773,8.3986348552921,5.39230769230769,810.132359653126,71,8764,0,1,0,0,9 +"21369",2017,47007,"TN","47","007",14907,0.913329308378614,785,0.148185416247401,6.66568371778241,7.72223474470961,8.17723488551019,5.86923076923077,551.60708602949,52,9427,0,1,0,0,9 +"21370",2017,47009,"TN","47","009",130106,0.950225200989962,7423,0.14387499423547,8.91233856711755,9.62700915059167,10.556229318461,3.52307692307692,464.383890682965,348,74938,0,1,0,0,9 +"21371",2017,47011,"TN","47","011",105575,0.92206488278475,7079,0.128060620412029,8.86488793377419,9.48295956675092,10.3514692185806,3.63846153846154,487.39277358981,300,61552,0,1,0,0,9 +"21372",2017,47013,"TN","47","013",39824,0.985209923664122,2179,0.137982121333869,7.68662133494462,8.46505743699571,9.35123211067366,5.22307692307692,843.565056090451,191,22642,0,1,0,0,9 +"21373",2017,47015,"TN","47","015",14162,0.970978675328343,784,0.143270724473944,6.66440902035041,7.3864708488299,8.31164394850298,3.55384615384615,719.769673704415,60,8336,0,1,0,0,9 +"21374",2017,47017,"TN","47","017",27824,0.879887866589994,1762,0.137758769407706,7.47420480649612,8.00068478451475,8.96495121171465,5.13846153846154,611.382113821138,94,15375,0,1,0,0,9 +"21375",2017,47019,"TN","47","019",56526,0.973728903513427,2872,0.145154442203588,7.96276393016811,8.77554943448619,9.71099444042068,4.55384615384615,556.098753361036,182,32728,0,1,0,0,9 +"21376",2017,47021,"TN","47","021",40436,0.96671283015135,2191,0.14675042041745,7.69211333959547,8.54422453046727,9.41670392325038,3.07692307692308,620.50947093403,152,24496,0,1,0,0,9 +"21377",2017,47023,"TN","47","023",17153,0.888940710079869,1519,0.122485862531336,7.32580750259577,7.61480536471107,8.51759311143756,3.98461538461538,403.517847904811,39,9665,0,1,0,0,9 +"21378",2017,47025,"TN","47","025",31700,0.97217665615142,2077,0.143564668769716,7.63867982387611,8.22897764335831,9.14974074984725,4.72307692307692,639.819345126082,119,18599,0,1,0,0,9 +"21379",2017,47027,"TN","47","027",7661,0.972718966192403,355,0.147369795065918,5.87211778947542,6.68085467879022,7.63530388625941,5.12307692307692,720.11521843495,30,4166,0,1,0,0,9 +"21380",2017,47029,"TN","47","029",35564,0.962462040265437,1882,0.153413564278484,7.54009032014532,8.27588566947436,9.26312255741515,5.26923076923077,889.372004545679,180,20239,0,1,0,0,9 +"21381",2017,47031,"TN","47","031",55128,0.937726745029749,3165,0.133090262661442,8.05990833457828,8.79270146293631,9.67124018697245,3.68461538461538,690.208667736758,215,31150,0,1,0,0,9 +"21382",2017,47033,"TN","47","033",14443,0.841930346880842,790,0.131343903621131,6.67203294546107,7.39756153552405,8.31947369244219,4.14615384615385,662.003497376967,53,8006,0,1,0,0,9 +"21383",2017,47035,"TN","47","035",59077,0.979247422854918,2650,0.151260219713256,7.88231491898027,8.60079877527103,9.63639211369274,4.66923076923077,639.859904357783,190,29694,0,1,0,0,9 +"21384",2017,47037,"TN","47","037",687808,0.664659323532149,49760,0.115178945287057,10.8149667274131,11.4448179157556,12.3369342273795,2.80769230769231,403.080849840026,1794,445072,0,1,0,0,9 +"21385",2017,47039,"TN","47","039",11711,0.955938860900009,578,0.151993851934079,6.35957386867238,7.20414929203594,8.06117135969092,5.20769230769231,612.437185929648,39,6368,0,1,0,0,9 +"21386",2017,47041,"TN","47","041",19817,0.962961094010193,1062,0.143311298380179,6.96790920180188,7.77988511507052,8.65886634973238,4.8,656.814449917898,76,11571,0,1,0,0,9 +"21387",2017,47043,"TN","47","043",52811,0.939539111170021,2911,0.136089072352351,7.97625194374562,8.79224584746788,9.67041992002422,3.37692307692308,566.00739668757,176,31095,0,1,0,0,9 +"21388",2017,47045,"TN","47","045",37368,0.83975594091201,2283,0.128345108113894,7.7332456465298,8.37516869138682,9.29210467377882,4.83846153846154,759.79235488438,161,21190,0,1,0,0,9 +"21389",2017,47047,"TN","47","047",40156,0.708486901085766,1958,0.166027492778165,7.57967882309046,8.41715183723601,9.37135316782389,4,487.994472275004,113,23156,0,1,0,0,9 +"21390",2017,47049,"TN","47","049",18240,0.98547149122807,933,0.149671052631579,6.83840520084734,7.60190195987517,8.536211197252,4.52307692307692,740.370185092546,74,9995,0,1,0,0,9 +"21391",2017,47051,"TN","47","051",41662,0.927775910902021,3291,0.143584081417119,8.09894674894334,8.46146904264388,9.39199503978243,3.78461538461538,492.276353759973,116,23564,0,1,0,0,9 +"21392",2017,47053,"TN","47","053",49257,0.800332947601356,2718,0.132204559758004,7.90765159471109,8.71522404191537,9.5584588132318,4.58461538461538,582.119059822802,159,27314,0,1,0,0,9 +"21393",2017,47055,"TN","47","055",29401,0.876670861535322,1719,0.148906499778919,7.44949800538285,8.06369263426952,9.03574886124414,3.40769230769231,652.811882374079,109,16697,0,1,0,0,9 +"21394",2017,47057,"TN","47","057",23119,0.981357325143821,1210,0.149660452441715,7.09837563859079,7.89543600694297,8.79527937019457,4.25384615384615,677.966101694915,90,13275,0,1,0,0,9 +"21395",2017,47059,"TN","47","059",68866,0.96484477100456,3951,0.145122411639997,8.28172399041139,8.98819632099506,9.89080749937875,4.56923076923077,718.409236690186,280,38975,0,1,0,0,9 +"21396",2017,47061,"TN","47","061",13336,0.97997900419916,747,0.135272945410918,6.61606518513282,7.38523092306657,8.21581779183245,5.00769230769231,770.1661937576,57,7401,0,1,0,0,9 +"21397",2017,47063,"TN","47","063",64084,0.927626240559266,3639,0.127410898196118,8.19946419761216,8.95789673495042,9.80504747972287,4.05384615384615,578.337143014514,210,36311,0,1,0,0,9 +"21398",2017,47065,"TN","47","065",361362,0.7686973173715,22599,0.134455200048705,10.0256609364938,10.6981077020267,11.6079174123258,3.66153846153846,464.528008853467,999,215057,0,1,0,0,9 +"21399",2017,47067,"TN","47","067",6592,0.983313106796116,349,0.155794902912621,5.85507192220243,6.62936325343745,7.53208814354172,5.79230769230769,1043.05964161541,39,3739,0,1,0,0,9 +"21400",2017,47069,"TN","47","069",25491,0.560864618885097,1717,0.132281981875956,7.44833386089748,8.07961802938984,8.75179089277556,5.2,550.874918988982,85,15430,0,1,0,0,9 +"21401",2017,47071,"TN","47","071",25708,0.949043099424304,1333,0.145946786992376,7.19518732017871,7.94342776787637,8.88447171813916,4.70769230769231,761.797277280102,108,14177,0,1,0,0,9 +"21402",2017,47073,"TN","47","073",56671,0.973284395899137,2991,0.145877079988001,8.00336305862995,8.76701762131178,9.70344998993639,4.26153846153846,613.116987675729,198,32294,0,1,0,0,9 +"21403",2017,47075,"TN","47","075",17606,0.47603089855731,1035,0.151936839713734,6.94215670569947,7.62851762657506,8.58615939588096,5.22307692307692,627.80269058296,63,10035,0,1,0,0,9 +"21404",2017,47077,"TN","47","077",27868,0.906415960958806,1509,0.136213578297689,7.31920245876785,8.15017926968233,9.00109972583097,5.15384615384615,665.736748668527,105,15772,0,1,0,0,9 +"21405",2017,47079,"TN","47","079",32387,0.9056411523142,1638,0.148238490752462,7.40123126441302,8.17018565287964,9.10686696349991,4.54615384615385,633.806802105144,112,17671,0,1,0,0,9 +"21406",2017,47081,"TN","47","081",24871,0.935105142535483,1451,0.138755980861244,7.28000825288419,8.04398443122155,8.8155184239665,3.43076923076923,567.069466009586,84,14813,0,1,0,0,9 +"21407",2017,47083,"TN","47","083",8160,0.95343137254902,417,0.145710784313725,6.0330862217988,6.8596149036542,7.74283595543075,5.83076923076923,547.405298883293,25,4567,0,1,0,0,9 +"21408",2017,47085,"TN","47","085",18519,0.955343161077812,981,0.147848155947945,6.88857245956536,7.66246781520024,8.56902634005625,4.33076923076923,739.673390970221,77,10410,0,1,0,0,9 +"21409",2017,47087,"TN","47","087",11709,0.981381843026732,591,0.171235801520198,6.3818160174061,7.17548971362422,8.12355783506165,5.35384615384615,547.742413027387,37,6755,0,1,0,0,9 +"21410",2017,47089,"TN","47","089",53760,0.963448660714286,3342,0.146112351190476,8.11432470915534,8.7268056084461,9.65123697191561,4.03846153846154,570.691600838304,177,31015,0,1,0,0,9 +"21411",2017,47091,"TN","47","091",17611,0.968372040202146,948,0.144568735449435,6.85435450225502,7.69348164083518,8.40088406901585,3.91538461538462,614.26240522123,64,10419,0,1,0,0,9 +"21412",2017,47093,"TN","47","093",461977,0.873894154903816,41403,0.125075490771186,10.6311086209561,10.9585136130413,11.8665989089112,3.19230769230769,466.143629609443,1300,278884,0,1,0,0,9 +"21413",2017,47095,"TN","47","095",7450,0.694630872483222,638,0.123758389261745,6.45833828334479,6.99668148817654,7.31654817718298,5.57692307692308,652.560806802452,33,5057,0,1,0,0,9 +"21414",2017,47097,"TN","47","097",26088,0.633241337013186,1719,0.128833180006133,7.44949800538285,8.11102783819368,8.89082357600438,5.76923076923077,606.390951829393,89,14677,0,1,0,0,9 +"21415",2017,47099,"TN","47","099",43406,0.967446896742386,2331,0.129982030134083,7.75405263903576,8.48879371689454,9.40318965065679,4.39230769230769,584.819750198421,140,23939,0,1,0,0,9 +"21416",2017,47101,"TN","47","101",12028,0.96267043565015,664,0.150565347522448,6.49828214947643,7.25841215059531,8.13446757027756,4.59230769230769,862.966820413629,58,6721,0,1,0,0,9 +"21417",2017,47103,"TN","47","103",33941,0.909431071565363,1746,0.150555375504552,7.46508273639955,8.25400859056484,9.1689974084418,3.26923076923077,576.067033254779,110,19095,0,1,0,0,9 +"21418",2017,47105,"TN","47","105",52319,0.964410634759839,2555,0.151455494179935,7.8458075026378,8.56636423542269,9.54516840048491,3.67692307692308,543.775774606766,149,27401,0,1,0,0,9 +"21419",2017,47107,"TN","47","107",52918,0.940360557844212,3057,0.143788502966854,8.02518932189084,8.71144331907547,9.63743650021064,4.37692307692308,658.59499733901,198,30064,0,1,0,0,9 +"21420",2017,47109,"TN","47","109",26030,0.927007299270073,1411,0.137956204379562,7.25205395185281,8.04494704961772,8.89795568688403,5.62307692307692,684.410646387833,99,14465,0,1,0,0,9 +"21421",2017,47111,"TN","47","111",23931,0.969746354101375,1447,0.127616898583427,7.27724772663148,7.93844555116479,8.85509298002864,3.43846153846154,663.63701940417,92,13863,0,1,0,0,9 +"21422",2017,47113,"TN","47","113",97543,0.598300236818634,7028,0.135683749730888,8.85765744930699,9.31686021535386,10.2973185797459,3.93076923076923,574.067140896044,322,56091,0,1,0,0,9 +"21423",2017,47115,"TN","47","115",28425,0.944837291116974,1515,0.147933157431838,7.32317071794347,8.10409905614358,9.01444713515213,4.86923076923077,684.213770572644,111,16223,0,1,0,0,9 +"21424",2017,47117,"TN","47","117",33077,0.914472291924903,1804,0.135350848021284,7.49776170062257,8.34117174717076,9.19085169539232,3.50769230769231,513.858611024603,99,19266,0,1,0,0,9 +"21425",2017,47119,"TN","47","119",92393,0.856904743865877,5027,0.140335306787311,8.52257866369258,9.38982457394998,10.2451605275565,3.24615384615385,479.991172576137,261,54376,0,1,0,0,9 +"21426",2017,47121,"TN","47","121",12054,0.968475194956031,572,0.142940102870416,6.3491389913798,7.28892769452126,8.1318247850072,5.22307692307692,722.9271171437,49,6778,0,1,0,0,9 +"21427",2017,47123,"TN","47","123",46032,0.961287799791449,2495,0.14155370177268,7.82204400818562,8.5358186555394,9.460476328354,4.02307692307692,591.002760605,152,25719,0,1,0,0,9 +"21428",2017,47125,"TN","47","125",200228,0.735936032922468,17450,0.0942375691711449,9.76709492763057,10.182671114733,11.0230782475894,4.11538461538461,374.72929458427,462,123289,0,1,0,0,9 +"21429",2017,47127,"TN","47","127",6387,0.952559887271019,352,0.156724596837326,5.8636311755981,6.63463335786169,7.50494206839617,3.13076923076923,493.150684931507,18,3650,0,1,0,0,9 +"21430",2017,47129,"TN","47","129",21574,0.952396403077779,1358,0.136553258551961,7.21376830811864,7.94661756324447,8.6285556592697,4.90769230769231,657.596371882086,87,13230,0,1,0,0,9 +"21431",2017,47131,"TN","47","131",30409,0.876944325693051,1680,0.142688019994081,7.4265490723973,8.17611034223734,9.06750872286864,5.5,524.14605418139,89,16980,0,1,0,0,9 +"21432",2017,47133,"TN","47","133",21995,0.983132530120482,1198,0.140622868833826,7.0884087786754,7.87511928104029,8.73278832497312,4.15384615384615,614.886731391586,76,12360,0,1,0,0,9 +"21433",2017,47135,"TN","47","135",7963,0.952781614969233,472,0.144543513751099,6.15697898558556,6.76734312526539,7.66715825531915,4.82307692307692,844.941767526833,37,4379,0,1,0,0,9 +"21434",2017,47139,"TN","47","139",16769,0.978472180809828,862,0.145566223388395,6.75925527066369,7.58273848891441,8.48549610467298,4.55384615384615,807.453416149068,78,9660,0,1,0,0,9 +"21435",2017,47141,"TN","47","141",77246,0.946741578851979,8151,0.118866996349326,9.00589589809446,9.06589246761031,10.0190458931704,3.82307692307692,457.424349049965,208,45472,0,1,0,0,9 +"21436",2017,47143,"TN","47","143",32709,0.959552416766028,2056,0.134978140572931,7.62851762657506,8.22817689595132,9.12521811855935,6.48461538461538,582.756930450411,107,18361,0,1,0,0,9 +"21437",2017,47145,"TN","47","145",53039,0.956183185957503,2719,0.162955561002281,7.90801944463247,8.65312170864048,9.63475807300103,4.4,695.924347362813,209,30032,0,1,0,0,9 +"21438",2017,47147,"TN","47","147",70342,0.9043388018538,3846,0.138324187540872,8.25478892614873,9.12347443895452,9.95318206955998,3.43076923076923,517.461310741534,215,41549,0,1,0,0,9 +"21439",2017,47149,"TN","47","149",316777,0.792582794836746,29899,0.10646606287704,10.3055803140034,10.7078853678938,11.5106729299169,2.91538461538462,338.047042342169,666,197014,0,1,0,0,9 +"21440",2017,47151,"TN","47","151",21971,0.988848937235447,1210,0.128715124482272,7.09837563859079,7.94413749111411,8.75258146914688,5.10769230769231,853.677995851285,107,12534,0,1,0,0,9 +"21441",2017,47153,"TN","47","153",14766,0.976770960314235,797,0.14763646214276,6.68085467879022,7.48717369421374,8.34806422840827,5.03076923076923,523.248899988108,44,8409,0,1,0,0,9 +"21442",2017,47155,"TN","47","155",97544,0.963554908554088,5626,0.144498892807348,8.6351539890498,9.32821229257107,10.2693105253718,4.05384615384615,537.463875378868,305,56748,0,1,0,0,9 +"21443",2017,47157,"TN","47","157",936012,0.417891009944317,64626,0.125114848954928,11.0763720855788,11.6663930544015,12.5849370718412,4.35384615384615,486.409310287782,2705,556116,0,1,0,0,9 +"21444",2017,47159,"TN","47","159",19743,0.962872916983235,1135,0.141771767208631,7.0343879299155,7.77022320415879,8.65102453904976,3.59230769230769,498.20819858404,57,11441,0,1,0,0,9 +"21445",2017,47161,"TN","47","161",13424,0.956719308700834,721,0.149582836710369,6.58063913728495,7.35308192051543,8.23509549725836,5.38461538461539,510.471204188482,39,7640,0,1,0,0,9 +"21446",2017,47163,"TN","47","163",157154,0.961050943660359,8533,0.144126143782532,9.05169627853659,9.79618069954762,10.722606372658,4.02307692307692,579.927145953919,519,89494,0,1,0,0,9 +"21447",2017,47165,"TN","47","165",184016,0.896943744022259,10134,0.130792974523954,9.22365138603585,10.0985607932552,10.9154883842359,2.98461538461538,444.609803739187,478,107510,0,1,0,0,9 +"21448",2017,47167,"TN","47","167",61335,0.792206733512676,3726,0.132485530284503,8.22309055116153,8.94832604627298,9.81033005404988,4.43076923076923,484.005563282337,174,35950,0,1,0,0,9 +"21449",2017,47169,"TN","47","169",10833,0.869749838456568,763,0.107818702113911,6.63725803128446,7.23561914106675,7.89170465933011,3.46923076923077,469.189865498905,30,6394,0,1,0,0,9 +"21450",2017,47171,"TN","47","171",17833,0.983906241238154,883,0.153591655918802,6.78332520060396,7.61134771740362,8.51759311143756,5.38461538461538,731.096644967451,73,9985,0,1,0,0,9 +"21451",2017,47173,"TN","47","173",19394,0.986696916572136,1023,0.151541713932144,6.93049476595163,7.7376162828579,8.64927353177345,4.39230769230769,708.59167404783,80,11290,0,1,0,0,9 +"21452",2017,47175,"TN","47","175",5747,0.98225160953541,308,0.159909518009396,5.73009978297357,6.50727771238501,7.36391350140582,4.26923076923077,435.865504358655,14,3212,0,1,0,0,9 +"21453",2017,47177,"TN","47","177",40698,0.943265025308369,2193,0.133004078824512,7.69302574841789,8.5539107743514,9.3482745580655,3.95384615384615,572.22125888677,132,23068,0,1,0,0,9 +"21454",2017,47179,"TN","47","179",127869,0.927840211466423,11604,0.133284846209793,9.35910514524129,9.61152968522156,10.565608354491,3.77692307692308,510.912568449184,390,76334,0,1,0,0,9 +"21455",2017,47181,"TN","47","181",16637,0.923423694175633,1002,0.137404580152672,6.90975328164481,7.69074316354187,8.3380665255188,5.26153846153846,488.90192627359,50,10227,0,1,0,0,9 +"21456",2017,47183,"TN","47","183",33323,0.900879272574498,3924,0.12507877442007,8.27486682068525,8.13534694890671,9.17926241640532,4.87692307692308,500.98130358434,97,19362,0,1,0,0,9 +"21457",2017,47185,"TN","47","185",26780,0.967102315160568,1382,0.137490664675131,7.23128700432762,8.0323601479245,8.93234456911382,3.98461538461538,659.42849530407,99,15013,0,1,0,0,9 +"21458",2017,47187,"TN","47","187",226373,0.901260309312506,11563,0.127241322949292,9.35556562412896,10.3925275842302,11.1075553523499,2.69230769230769,210.071053444547,272,129480,0,1,0,0,9 +"21459",2017,47189,"TN","47","189",136824,0.900404899725194,7181,0.132644857627317,8.87919392811032,9.83926898020948,10.6184206864179,2.97692307692308,386.888365803576,309,79868,0,1,0,0,9 +"21460",2017,48001,"TX","48","001",58232,0.755684159912076,3480,0.116757109493062,8.15478757276852,9.14109746923402,9.41172899148736,3.66923076923077,596.20596205962,220,36900,0,1,0,0,9 +"21461",2017,48003,"TX","48","003",17599,0.952270015341781,1143,0.105687823171771,7.04141166379481,7.72797554210556,8.4690528160883,3.11538461538462,402.698077116682,40,9933,0,1,0,0,9 +"21462",2017,48005,"TX","48","005",87523,0.820115855260903,5487,0.123053368828765,8.61013693705898,9.24705795491135,10.1199286927907,5.11538461538461,545.724816225132,268,49109,0,1,0,0,9 +"21463",2017,48007,"TX","48","007",25421,0.944376696432084,1299,0.156642146257032,7.1693500166706,7.77275271646874,8.81537000096066,6.86153846153846,668.218334709813,89,13319,0,1,0,0,9 +"21464",2017,48009,"TX","48","009",8788,0.964838416021848,472,0.155211652253072,6.15697898558556,6.84694313958538,7.80425138352811,3.39230769230769,466.247719440503,23,4933,0,1,0,0,9 +"21465",2017,48013,"TX","48","013",49094,0.964231881696338,3082,0.117712958813704,8.03333401588006,8.7165357325445,9.51259080860336,4.27692307692308,367.687612604331,100,27197,0,1,0,0,9 +"21466",2017,48015,"TX","48","015",29729,0.882942581317905,1650,0.146187224595513,7.40853056689463,8.10681603894705,9.00920290092459,4.44615384615385,429.553264604811,70,16296,0,1,0,0,9 +"21467",2017,48019,"TX","48","019",22312,0.967058085335246,967,0.192586948727142,6.87419849545329,7.63578686139558,8.74544368009859,3.63076923076923,481.043620057073,59,12265,0,1,0,0,9 +"21468",2017,48021,"TX","48","021",84624,0.88589525430138,4945,0.139948477973152,8.50613224405681,9.2422265608385,10.0561657201778,3.61538461538462,394.807557154078,191,48378,0,1,0,0,9 +"21469",2017,48023,"TX","48","023",3554,0.952166572875633,146,0.140123804164322,4.98360662170834,5.91350300563827,6.82328612235569,3.42307692307692,820.568927789934,15,1828,0,1,0,0,9 +"21470",2017,48025,"TX","48","025",32598,0.890453402049205,2744,0.102460273636419,7.91717198884578,8.48425669116997,8.83171191782158,6.52307692307692,405.229388779005,84,20729,0,1,0,0,9 +"21471",2017,48027,"TX","48","027",347683,0.680559590201419,30171,0.0965103269357432,10.3146364771126,10.7135507263131,11.5317668461036,4.29230769230769,311.111980746277,636,204428,0,1,0,0,9 +"21472",2017,48029,"TX","48","029",1956394,0.858052621302253,145604,0.105415371341356,11.8886458868948,12.4786537704467,13.2779627216961,3.56923076923077,332.180240001512,3866,1163826,0,1,0,0,9 +"21473",2017,48031,"TX","48","031",11473,0.957813998082454,552,0.182079665301142,6.3135480462771,7.07411681619736,8.06495089174914,2.78461538461538,467.945718296678,30,6411,0,1,0,0,9 +"21474",2017,48035,"TX","48","035",18309,0.958490359932274,886,0.151947129826861,6.78671695060508,7.54062152865715,8.48797033273933,4.02307692307692,545.130516825663,52,9539,0,1,0,0,9 +"21475",2017,48037,"TX","48","037",93625,0.714200267022697,5890,0.125361815754339,8.68101127664563,9.38109529239867,10.1701885535992,4.60769230769231,495.496325222421,269,54289,0,1,0,0,9 +"21476",2017,48039,"TX","48","039",362261,0.77031477305037,21056,0.116291844830109,9.95494083412504,10.8745315860631,11.5668832065636,5.33076923076923,322.743692354777,696,215651,0,1,0,0,9 +"21477",2017,48041,"TX","48","041",223985,0.80983994463915,44294,0.0828939437908789,10.6986045066798,10.1072036061842,11.1523428962005,3.11538461538462,165.786436291141,237,142955,0,1,0,0,9 +"21478",2017,48043,"TX","48","043",9324,0.944015444015444,494,0.140819390819391,6.20253551718792,7.03614849375054,7.86365126544865,3.53846153846154,470.278404815651,25,5316,0,1,0,0,9 +"21479",2017,48047,"TX","48","047",7138,0.970159708601849,489,0.115718688708322,6.19236248947487,6.66057514983969,7.47193207824512,8.3,485.044462409054,18,3711,0,1,0,0,9 +"21480",2017,48049,"TX","48","049",37816,0.935953035752063,2217,0.135127988153163,7.70391020961631,8.36590507720246,9.25626930386458,3.90769230769231,563.837920489297,118,20928,0,1,0,0,9 +"21481",2017,48051,"TX","48","051",18055,0.850235391858211,951,0.157297147604542,6.85751406254539,7.53955882930103,8.54012816269873,4.24615384615385,491.03116544744,49,9979,0,1,0,0,9 +"21482",2017,48053,"TX","48","053",46592,0.954713255494505,2433,0.155198317307692,7.79688034278352,8.52654928634026,9.47093383873723,3.2,425.012789736728,108,25411,0,1,0,0,9 +"21483",2017,48055,"TX","48","055",42302,0.901541298283769,3360,0.123091106803461,8.11969625295725,8.55275336681479,9.4129546320379,3.96923076923077,465.919588705467,116,24897,0,1,0,0,9 +"21484",2017,48057,"TX","48","057",21716,0.903343157119175,1331,0.13050285503776,7.19368581839511,7.82404601085629,8.65869275368994,5.82307692307692,505.427127351065,61,12069,0,1,0,0,9 +"21485",2017,48059,"TX","48","059",13967,0.962125008949667,666,0.153862676308441,6.50128967054039,7.36201055125973,8.27664912542186,3.65384615384615,455.551216972537,35,7683,0,1,0,0,9 +"21486",2017,48061,"TX","48","061",421506,0.975573301447666,31050,0.0967910302581695,10.3433540873616,10.8528841863073,11.6540516936747,6.98461538461538,312.863144721552,700,223740,0,1,0,0,9 +"21487",2017,48063,"TX","48","063",12829,0.799984410320368,832,0.127133837399641,6.72383244082121,7.21007962817079,8.16194579946869,5.69230769230769,547.175391895889,37,6762,0,1,0,0,9 +"21488",2017,48065,"TX","48","065",6003,0.962518740629685,316,0.142928535732134,5.75574221358691,6.59030104819669,7.39141523467536,3.25384615384615,637.716368053447,21,3293,0,1,0,0,9 +"21489",2017,48067,"TX","48","067",29958,0.812337272181053,1570,0.143667801588891,7.35883089834235,8.08764028777898,9.02773877597491,6,623.402531014276,100,16041,0,1,0,0,9 +"21490",2017,48069,"TX","48","069",7668,0.944444444444444,535,0.126630151278039,6.28226674689601,6.76503897678054,7.57198844937744,3.33846153846154,362.669245647969,15,4136,0,1,0,0,9 +"21491",2017,48071,"TX","48","071",41249,0.886663919125312,2491,0.114693689543989,7.82043951526218,8.66319648553608,9.37720982421122,6.56153846153846,349.185234452943,84,24056,0,1,0,0,9 +"21492",2017,48073,"TX","48","073",52099,0.824392022879518,3223,0.122670300773527,8.07806788181544,8.71997075677757,9.51273862826364,4.56923076923077,478.333274279843,135,28223,0,1,0,0,9 +"21493",2017,48077,"TX","48","077",10496,0.964557926829268,506,0.168635670731707,6.22653666928747,7.06561336359772,7.97865372908273,3.54615384615385,547.382825863839,32,5846,0,1,0,0,9 +"21494",2017,48083,"TX","48","083",8402,0.938228993096882,372,0.161985241609141,5.91889385427315,6.74993119378857,7.67182679787878,4.5,680.580762250454,30,4408,0,1,0,0,9 +"21495",2017,48085,"TX","48","085",972724,0.724345240787726,55389,0.109936631562499,10.9221362970639,11.9489068456015,12.6069137460408,3.48461538461538,193.04558806491,1133,586908,0,1,0,0,9 +"21496",2017,48089,"TX","48","089",21301,0.844983803577297,1226,0.14989906577156,7.11151211649616,7.66996199547358,8.61685751452918,4.01538461538462,487.718364813337,55,11277,0,1,0,0,9 +"21497",2017,48091,"TX","48","091",140721,0.947257338989916,7630,0.148051818847223,8.9398431242785,9.72172583900069,10.6141307807128,3.39230769230769,332.801515680311,267,80228,0,1,0,0,9 +"21498",2017,48093,"TX","48","093",13531,0.966299608306851,733,0.136427462863055,6.59714570188665,7.20785987143248,8.14728825870662,3.71538461538462,418.95405952037,29,6922,0,1,0,0,9 +"21499",2017,48097,"TX","48","097",39903,0.932160489186277,2440,0.143347617973586,7.79975331828725,8.37031599555548,9.32241827538153,3.63846153846154,475.134621476085,105,22099,0,1,0,0,9 +"21500",2017,48099,"TX","48","099",74886,0.75853964693,7832,0.0873594530352803,8.96597318421035,9.30410390178835,10.0868086096632,4.41538461538462,296.446784692566,143,48238,0,1,0,0,9 +"21501",2017,48111,"TX","48","111",7248,0.937637969094923,443,0.102235099337748,6.09356977004514,6.72262979485545,7.52563997504154,2.16153846153846,330.704655303994,13,3931,0,1,0,0,9 +"21502",2017,48113,"TX","48","113",2620425,0.676694429338752,183782,0.107893566883235,12.1215055515727,12.7969738995047,13.5927981636885,3.96153846153846,326.628108945017,5177,1584983,0,1,0,0,9 +"21503",2017,48115,"TX","48","115",12734,0.91063295115439,942,0.109627768179676,6.84800527457636,7.37525577800975,7.99699040583765,4.88461538461539,469.094922737307,34,7248,0,1,0,0,9 +"21504",2017,48117,"TX","48","117",18742,0.954220467399424,1268,0.103670899583822,7.14519613499717,7.68937110752969,8.50633444808136,3.07692307692308,380.532745844182,38,9986,0,1,0,0,9 +"21505",2017,48119,"TX","48","119",5268,0.893887623386484,264,0.144267274107821,5.57594910314632,6.34738920965601,7.25417784645652,3.37692307692308,663.40782122905,19,2864,0,1,0,0,9 +"21506",2017,48121,"TX","48","121",834649,0.784784981471253,54738,0.109370525813845,10.9103134455735,11.7623369727347,12.486748985042,3.36923076923077,212.375730461241,1107,521246,0,1,0,0,9 +"21507",2017,48123,"TX","48","123",20164,0.885885736956953,972,0.137274350327316,6.87935580446044,7.81439963380449,8.50916101971897,4.42307692307692,513.00194586945,58,11306,0,1,0,0,9 +"21508",2017,48127,"TX","48","127",10281,0.966734753428655,609,0.111662289660539,6.4118182677099,7.07918439460967,7.89319886954461,5.14615384615385,318.173310874041,17,5343,0,1,0,0,9 +"21509",2017,48131,"TX","48","131",11239,0.970460005338553,876,0.109262389892339,6.77536609093639,7.15461535691366,7.92479591395644,7.70769230769231,671.910848901999,41,6102,0,1,0,0,9 +"21510",2017,48133,"TX","48","133",18278,0.955575008206587,1163,0.144654776233724,7.05875815251866,7.56112158953024,8.47866024169945,4.33076923076923,605.749486652977,59,9740,0,1,0,0,9 +"21511",2017,48135,"TX","48","135",156823,0.91320788404762,11287,0.0993412956007728,9.33140689995563,9.89792209406325,10.6841418205343,4.15384615384615,451.522498276207,406,89918,0,1,0,0,9 +"21512",2017,48139,"TX","48","139",173434,0.866779293564122,10915,0.123389877417346,9.29789326898404,10.0254839218454,10.8370876099328,3.50769230769231,344.035556969703,346,100571,0,1,0,0,9 +"21513",2017,48141,"TX","48","141",836087,0.927444153539046,70640,0.103532287907837,11.1653518352778,11.5521942538909,12.3969285145944,4.67692307692308,299.815069271538,1451,483965,0,1,0,0,9 +"21514",2017,48143,"TX","48","143",41744,0.953023188961288,5771,0.108973744729782,8.66060065471097,8.32869258354557,9.4038491181607,3.43846153846154,378.600823045267,92,24300,0,1,0,0,9 +"21515",2017,48145,"TX","48","145",17342,0.728462691731058,1149,0.130780763464422,7.04664727784876,7.62900388965296,8.61920811682297,4.26153846153846,488.233570940338,50,10241,0,1,0,0,9 +"21516",2017,48147,"TX","48","147",34570,0.903586925079549,2079,0.137084177032109,7.63964228785801,8.34924780056679,9.0994088112689,3.36153846153846,465.349011758819,93,19985,0,1,0,0,9 +"21517",2017,48149,"TX","48","149",25110,0.91326164874552,1295,0.162365591397849,7.16626597413364,7.87587915949631,8.81328976246904,3.21538461538462,479.328939484721,64,13352,0,1,0,0,9 +"21518",2017,48157,"TX","48","157",768258,0.564756891565073,44068,0.11828318091058,10.69348917446,11.6784314288356,12.3605089988346,4.67692307692308,212.132662463788,960,452547,0,1,0,0,9 +"21519",2017,48159,"TX","48","159",10801,0.933246921581335,512,0.13952411813721,6.23832462503951,7.00306545878646,7.94520113241276,4.67692307692308,336.879432624113,19,5640,0,1,0,0,9 +"21520",2017,48161,"TX","48","161",19651,0.811459976591522,903,0.132919444303089,6.80572255341699,7.85593219971861,8.49719454490955,6.4,451.488067815351,49,10853,0,1,0,0,9 +"21521",2017,48163,"TX","48","163",19818,0.919013018468059,2013,0.0872439196689878,7.60738142563979,7.79646924308606,8.34498036877057,3.97692307692308,367.554924400635,44,11971,0,1,0,0,9 +"21522",2017,48165,"TX","48","165",20575,0.958396111786148,1354,0.0961360874848117,7.21081845347222,7.82284529027977,8.5657928612523,3.06153846153846,285.398637451666,31,10862,0,1,0,0,9 +"21523",2017,48167,"TX","48","167",334691,0.814186817093976,20001,0.134547986052807,9.90353755128617,10.6858811106103,11.5179926053032,5.29230769230769,450.164017158718,892,198150,0,1,0,0,9 +"21524",2017,48171,"TX","48","171",26520,0.97394419306184,1261,0.152526395173454,7.13966033596492,7.81116338502528,8.80971354050827,2.60769230769231,447.565398564704,58,12959,0,1,0,0,9 +"21525",2017,48177,"TX","48","177",20743,0.896591621269826,1188,0.130550065082196,7.08002649992259,7.73236922228439,8.6195692580331,3.51538461538462,443.105281814959,50,11284,0,1,0,0,9 +"21526",2017,48179,"TX","48","179",22089,0.917289148444927,1223,0.120059758250713,7.10906213568717,7.95682712209011,8.60282027738367,5.28461538461538,583.826429980276,74,12675,0,1,0,0,9 +"21527",2017,48181,"TX","48","181",131085,0.893946675821032,7756,0.137445169165046,8.95622201636254,9.61660516025491,10.5360616724503,3.58461538461538,473.599218357737,349,73691,0,1,0,0,9 +"21528",2017,48183,"TX","48","183",122985,0.756262958897427,8210,0.12285238037159,9.01310820244647,9.58781744354418,10.4737323659947,5.20769230769231,535.945829131249,372,69410,0,1,0,0,9 +"21529",2017,48185,"TX","48","185",27924,0.819689156281335,1650,0.143854748603352,7.40853056689463,8.13064796816058,8.84793475332846,5.4,499.603972460854,82,16413,0,1,0,0,9 +"21530",2017,48187,"TX","48","187",159666,0.87292222514499,9758,0.116292761138877,9.18584274037578,10.0165929986414,10.7544287678381,3.36153846153846,312.731727762195,291,93051,0,1,0,0,9 +"21531",2017,48189,"TX","48","189",33901,0.91144803988083,2671,0.109849266983275,7.89020821310996,8.29379960884682,9.07440609473535,5.16153846153846,392.608490812961,75,19103,0,1,0,0,9 +"21532",2017,48193,"TX","48","193",8413,0.959586354451444,400,0.139427077142518,5.99146454710798,6.71417052990947,7.6511201757027,3.97692307692308,766.19456698398,33,4307,0,1,0,0,9 +"21533",2017,48199,"TX","48","199",57194,0.927632269119138,3116,0.135223974542784,8.04430540699064,8.86756833320644,9.70868847423106,6.17692307692308,409.38192563408,133,32488,0,1,0,0,9 +"21534",2017,48201,"TX","48","201",4655798,0.706691956996416,316903,0.106969847059516,12.6663510123429,13.4052132937721,14.1573966844296,5.11538461538461,315.776186827429,8881,2812435,0,1,0,0,9 +"21535",2017,48203,"TX","48","203",66516,0.759937458656564,4008,0.133170966384028,8.2960476427647,8.97638862194537,9.84347212012614,5.26923076923077,516.397653229513,191,36987,0,1,0,0,9 +"21536",2017,48207,"TX","48","207",5696,0.925210674157303,415,0.137991573033708,6.0282785202307,6.49677499018586,7.25770767716004,4.82307692307692,582.643360932229,19,3261,0,1,0,0,9 +"21537",2017,48209,"TX","48","209",214863,0.915350711848946,26918,0.102944667066922,10.2005504867937,10.258746494417,11.103542692828,3.18461538461538,230.63877897117,306,132675,0,1,0,0,9 +"21538",2017,48213,"TX","48","213",80976,0.913035961272476,4343,0.149044161232958,8.37632063253482,9.0447579311865,10.0230467875938,4.20769230769231,703.314653901127,310,44077,0,1,0,0,9 +"21539",2017,48215,"TX","48","215",854739,0.973567369688291,65951,0.0819677117810232,11.0966673210328,11.598690231931,12.3548288010401,7.53076923076923,263.024429656334,1198,455471,0,1,0,0,9 +"21540",2017,48217,"TX","48","217",35722,0.906892111303958,1964,0.138234141425452,7.58273848891441,8.2380082492184,9.16607495567817,3.96923076923077,491.143737917342,94,19139,0,1,0,0,9 +"21541",2017,48219,"TX","48","219",22974,0.933664142073648,1667,0.118394707060155,7.41878088275079,7.87929148508227,8.74814616962193,3.74615384615385,485.360889306404,62,12774,0,1,0,0,9 +"21542",2017,48221,"TX","48","221",57994,0.96815187778046,2667,0.152964099734455,7.88870952418201,8.67914195840225,9.64439293693626,4.25384615384615,455.767591317463,139,30498,0,1,0,0,9 +"21543",2017,48223,"TX","48","223",36456,0.900976519640114,2100,0.130074610489357,7.64969262371151,8.31360713931756,9.22098353207466,3.62307692307692,519.740129935032,104,20010,0,1,0,0,9 +"21544",2017,48225,"TX","48","225",23073,0.724959909851341,1104,0.139557058033199,7.00669522683704,7.9707403900071,8.62927109482159,4.37692307692308,627.34297299365,82,13071,0,1,0,0,9 +"21545",2017,48227,"TX","48","227",35778,0.889736709709878,2491,0.11848063055509,7.82043951526218,8.41383067842108,9.08000387024818,4.30769230769231,527.248560035445,119,22570,0,1,0,0,9 +"21546",2017,48231,"TX","48","231",94058,0.879467987837292,6387,0.132854196346935,8.76201995356159,9.28720881623276,10.2111193002955,4.00769230769231,485.328573022425,261,53778,0,1,0,0,9 +"21547",2017,48233,"TX","48","233",21339,0.93331458831248,1227,0.135901401190309,7.11232744471091,7.88570539124302,8.66578559546606,6.06923076923077,537.860324397008,64,11899,0,1,0,0,9 +"21548",2017,48237,"TX","48","237",8829,0.936685921395402,624,0.126288367878582,6.43615036836943,6.95749737087695,7.63626960337937,3.77692307692308,520.231213872832,27,5190,0,1,0,0,9 +"21549",2017,48239,"TX","48","239",14798,0.906541424516827,846,0.135423705906204,6.74051935960622,7.45182223652793,8.28626945278307,4.02307692307692,457.750835085983,37,8083,0,1,0,0,9 +"21550",2017,48241,"TX","48","241",35580,0.816610455311973,1941,0.142327150084317,7.57095858316901,8.25971696102152,9.18029345062389,7.51538461538462,618.110641804883,120,19414,0,1,0,0,9 +"21551",2017,48245,"TX","48","245",255889,0.595535564248561,17824,0.126132815400428,9.78830114272701,10.3869625342793,11.1750862945205,7.41538461538462,496.527595096543,755,152056,0,1,0,0,9 +"21552",2017,48249,"TX","48","249",40952,0.970111349873022,2614,0.113645243211565,7.86863689418417,8.48384321173468,9.32545317907669,7.62307692307692,476.644423260248,105,22029,0,1,0,0,9 +"21553",2017,48251,"TX","48","251",167114,0.933823617410869,10198,0.123963282549637,9.2299469016151,9.96857279919206,10.7738809320232,3.84615384615385,404.122254773629,389,96258,0,1,0,0,9 +"21554",2017,48253,"TX","48","253",19829,0.840334863079328,1505,0.117302940138181,7.31654817718298,8.00436556497957,8.28652137368124,5.36923076923077,430.769230769231,56,13000,0,1,0,0,9 +"21555",2017,48255,"TX","48","255",15590,0.889352148813342,1254,0.112379730596536,7.13409372119287,7.6889133368648,8.13358741766097,3.5,377.913079991602,36,9526,0,1,0,0,9 +"21556",2017,48257,"TX","48","257",122753,0.851278583822799,7003,0.117585720919244,8.85409390765552,9.74408142031291,10.4943804990573,3.57692307692308,422.059256558745,301,71317,0,1,0,0,9 +"21557",2017,48259,"TX","48","259",43985,0.960782084801637,2357,0.143026031601682,7.76514490293613,8.59359852261864,9.42060129745938,3.1,213.132223952783,52,24398,0,1,0,0,9 +"21558",2017,48265,"TX","48","265",51883,0.95077385656188,2936,0.14652198215215,7.98480338973441,8.46611040118692,9.5258078304359,3.43846153846154,419.575084868597,110,26217,0,1,0,0,9 +"21559",2017,48273,"TX","48","273",30756,0.91442320197685,4695,0.0888607101053453,8.45425339164236,8.05229649953865,9.05040633405986,5.97692307692308,481.63082437276,86,17856,0,1,0,0,9 +"21560",2017,48277,"TX","48","277",49610,0.829006248740173,2831,0.129570651078412,7.9483852851119,8.6031873845831,9.54659829992065,4.21538461538462,666.666666666667,181,27150,0,1,0,0,9 +"21561",2017,48279,"TX","48","279",13186,0.923403609889276,765,0.123009252237221,6.63987583382654,7.29505641646263,8.14380797677148,5.2,487.80487804878,34,6970,0,1,0,0,9 +"21562",2017,48281,"TX","48","281",20867,0.920544400249197,1045,0.142905065414291,6.95177216439891,7.81480342948936,8.67128672675364,3.76153846153846,332.565873624968,39,11727,0,1,0,0,9 +"21563",2017,48283,"TX","48","283",7537,0.972800849144222,1096,0.0825262040599708,6.99942246750796,6.81783057145415,7.46565531013406,3.71538461538462,332.08800332088,16,4818,0,1,0,0,9 +"21564",2017,48285,"TX","48","285",20015,0.91566325256058,1007,0.140394703972021,6.91473089271856,7.61874237767041,8.54051901671973,3.64615384615385,361.46932395467,37,10236,0,1,0,0,9 +"21565",2017,48287,"TX","48","287",17104,0.862663704396632,993,0.155577642656688,6.90073066404517,7.60290046220476,8.49023300983345,3.31538461538462,386.689732370001,38,9827,0,1,0,0,9 +"21566",2017,48289,"TX","48","289",17224,0.904842080817464,796,0.149790989317232,6.67959918584438,7.48211892355212,8.38867776918081,6.37692307692308,509.395517319448,45,8834,0,1,0,0,9 +"21567",2017,48291,"TX","48","291",83648,0.872848125478194,5501,0.122178653404744,8.61268517287546,9.2617936535651,10.1266311038503,7.18461538461538,577.447033467529,284,49182,0,1,0,0,9 +"21568",2017,48293,"TX","48","293",23376,0.795388432580424,1415,0.138133127994524,7.25488481007734,7.89506349809157,8.7268056084461,5.60769230769231,501.634111119556,66,13157,0,1,0,0,9 +"21569",2017,48297,"TX","48","297",12157,0.928271777576705,666,0.138356502426586,6.50128967054039,7.29844510150815,7.98922140881528,4.71538461538462,486.061472480343,34,6995,0,1,0,0,9 +"21570",2017,48299,"TX","48","299",21199,0.968583423746403,833,0.172319449030615,6.72503364216684,7.39939808333135,8.56197533418813,3.83076923076923,634.354247199921,64,10089,0,1,0,0,9 +"21571",2017,48303,"TX","48","303",305689,0.8770645983336,37926,0.103791762215847,10.5433921717004,10.4701356982357,11.4170641333096,3.20769230769231,413.501457468422,749,181136,0,1,0,0,9 +"21572",2017,48307,"TX","48","307",7934,0.947693471136879,428,0.144315603730779,6.0591231955818,6.74758652682932,7.646353722446,3.56153846153846,712.250712250712,30,4212,0,1,0,0,9 +"21573",2017,48309,"TX","48","309",251638,0.809468363283765,26408,0.112427375833539,10.181422273533,10.2491318823258,11.1992963267639,3.91538461538462,405.615788996014,581,143239,0,1,0,0,9 +"21574",2017,48313,"TX","48","313",14292,0.767912118667786,1318,0.101105513574027,7.18387071506245,7.49052940206071,8.08240225392624,4.76153846153846,312.572354711739,27,8638,0,1,0,0,9 +"21575",2017,48315,"TX","48","315",10076,0.757840412862247,421,0.175466454942437,6.04263283368238,6.88755257166462,7.94803199063728,5.72307692307692,1065.58882968951,58,5443,0,1,0,0,9 +"21576",2017,48321,"TX","48","321",36848,0.847508684324794,2250,0.139003473729918,7.71868549519847,8.31066090590723,9.22365138603585,7.34615384615385,562.649836097656,115,20439,0,1,0,0,9 +"21577",2017,48323,"TX","48","323",57883,0.967607069433167,4852,0.090924796572396,8.48714627006394,8.8246778911642,9.64121328401888,9.38461538461539,312.328943555398,97,31057,0,1,0,0,9 +"21578",2017,48325,"TX","48","325",50205,0.944527437506224,3396,0.134886963449856,8.13035354743124,8.64944877053671,9.51436320401602,3.9,361.877587946693,104,28739,0,1,0,0,9 +"21579",2017,48329,"TX","48","329",165417,0.89153472738594,10876,0.109704564827073,9.29431380575236,9.97320016494743,10.7727076410173,3.02307692307692,314.801860005761,306,97204,0,1,0,0,9 +"21580",2017,48331,"TX","48","331",24907,0.875858192476011,1388,0.138073633918176,7.23561914106675,7.89655270164304,8.81447900001071,5.07692307692308,549.533273110509,73,13284,0,1,0,0,9 +"21581",2017,48335,"TX","48","335",8234,0.860335195530726,725,0.104323536555744,6.58617165485467,6.94601399109923,7.49665243816828,5.49230769230769,422.102839600921,22,5212,0,1,0,0,9 +"21582",2017,48337,"TX","48","337",19408,0.96934253915911,976,0.143703627370157,6.88346258641309,7.614312146452,8.55256033525353,4.02307692307692,627.473694372044,65,10359,0,1,0,0,9 +"21583",2017,48339,"TX","48","339",571542,0.897711804206865,33439,0.123796676359743,10.4174781624453,11.2621537465385,12.0294309278674,4.38461538461539,331.883657508079,1105,332948,0,1,0,0,9 +"21584",2017,48341,"TX","48","341",21571,0.871540494182004,1470,0.103750405637198,7.29301767977278,7.9124231214737,8.61721950548336,2.90769230769231,405.427767665067,49,12086,0,1,0,0,9 +"21585",2017,48343,"TX","48","343",12360,0.740291262135922,666,0.147977346278317,6.50128967054039,7.21081845347222,8.14931284363534,8.66153846153846,737.39653875094,49,6645,0,1,0,0,9 +"21586",2017,48347,"TX","48","347",65231,0.782940626389293,8511,0.112201254004998,9.04911472347696,8.78538658728416,9.85424478595768,4.3,387.586393820301,143,36895,0,1,0,0,9 +"21587",2017,48349,"TX","48","349",48744,0.823383390776301,2984,0.129267191859511,8.00101996132365,8.61195776786066,9.50836873648211,3.97692307692308,581.219806763285,154,26496,0,1,0,0,9 +"21588",2017,48351,"TX","48","351",13909,0.775109641239485,842,0.147242792436552,6.73578001424233,7.32843735289516,8.22174772834662,8.03076923076923,727.272727272727,58,7975,0,1,0,0,9 +"21589",2017,48353,"TX","48","353",14912,0.918454935622318,886,0.125536480686695,6.78671695060508,7.42237370098682,8.27537637483641,4.04615384615385,599.031353555952,47,7846,0,1,0,0,9 +"21590",2017,48355,"TX","48","355",361328,0.919502501881947,25962,0.121355112252579,10.1643892094529,10.7241040383419,11.569343604875,5.46153846153846,460.416083235633,970,210679,0,1,0,0,9 +"21591",2017,48357,"TX","48","357",10004,0.960015993602559,641,0.112055177928828,6.46302945692067,7.13489085156588,7.87853419614036,3.68461538461538,439.56043956044,24,5460,0,1,0,0,9 +"21592",2017,48361,"TX","48","361",85056,0.886756960120391,5133,0.132642024078254,8.5434455625603,9.23630047364571,10.1058568046339,6.97692307692308,636.393496469043,310,48712,0,1,0,0,9 +"21593",2017,48363,"TX","48","363",28554,0.948168382713455,1672,0.142957203894376,7.42177579364465,8.00936307663004,8.98931956604295,4.13076923076923,683.575033539896,107,15653,0,1,0,0,9 +"21594",2017,48365,"TX","48","365",23165,0.821541118066048,1329,0.142585797539391,7.19218205871325,7.92153563213355,8.77847995250849,5.46923076923077,598.430092484651,77,12867,0,1,0,0,9 +"21595",2017,48367,"TX","48","367",133616,0.962684109687463,7389,0.139362052448809,8.90774768678865,9.71727844901498,10.5635690388907,3.5,343.062089040206,264,76954,0,1,0,0,9 +"21596",2017,48371,"TX","48","371",15626,0.92448483297069,979,0.110264943043645,6.88653164253051,7.7106533235012,8.20985248130127,4.69230769230769,329.401763893316,31,9411,0,1,0,0,9 +"21597",2017,48373,"TX","48","373",48938,0.858412685438718,2753,0.165740324492215,7.92044650514261,8.65782432115598,9.45829360219897,6.13076923076923,618.927422979842,179,28921,0,1,0,0,9 +"21598",2017,48375,"TX","48","375",120008,0.807646156922872,8088,0.111359242717152,8.99813676070031,9.65322970873035,10.3833796295322,3.23076923076923,547.105496834808,382,69822,0,1,0,0,9 +"21599",2017,48379,"TX","48","379",11713,0.949713992999232,540,0.166225561342099,6.29156913955832,7.09506437728713,8.07464907506665,3.62307692307692,518.704809808236,33,6362,0,1,0,0,9 +"21600",2017,48381,"TX","48","381",134148,0.931187941676357,9061,0.122685392253332,9.11173476822206,9.75272280064639,10.585270403017,2.83846153846154,333.086602516654,261,78358,0,1,0,0,9 +"21601",2017,48387,"TX","48","387",12167,0.806690227664995,608,0.154927262266787,6.41017488196617,7.15695636461564,8.12355783506165,5.29230769230769,664.953906604201,44,6617,0,1,0,0,9 +"21602",2017,48389,"TX","48","389",15141,0.917508751073245,1497,0.0889637408361403,7.31121838441963,7.74975340627444,8.05452260953729,3.64615384615385,320.877755925888,31,9661,0,1,0,0,9 +"21603",2017,48391,"TX","48","391",7178,0.90651992198384,393,0.133602674839788,5.97380961186926,6.61472560020376,7.54168309988211,5.66153846153846,577.124868835257,22,3812,0,1,0,0,9 +"21604",2017,48395,"TX","48","395",17152,0.767490671641791,958,0.135785914179104,6.86484777797086,7.5740450053722,8.47657950853094,4.76923076923077,509.554140127389,48,9420,0,1,0,0,9 +"21605",2017,48397,"TX","48","397",96956,0.885401625479599,5334,0.120188539131152,8.58185670474196,9.57303714823341,10.2559034395545,3.38461538461538,285.668374725491,160,56009,0,1,0,0,9 +"21606",2017,48399,"TX","48","399",10275,0.94345498783455,579,0.132846715328467,6.361302477573,7.02108396428914,7.89766815072691,3.71538461538462,615.830465495381,34,5521,0,1,0,0,9 +"21607",2017,48401,"TX","48","401",54148,0.799438575755337,3556,0.130235650439536,8.1763915966338,8.87640491500694,9.53719507950244,5.12307692307692,449.028731331142,138,30733,0,1,0,0,9 +"21608",2017,48403,"TX","48","403",10422,0.909998080982537,451,0.160717712531184,6.11146733950268,6.7696419768525,7.85593219971861,8.66153846153846,786.472670074715,40,5086,0,1,0,0,9 +"21609",2017,48405,"TX","48","405",8302,0.764153216092508,383,0.161527342808962,5.94803498918065,6.61204103483309,7.69484807238461,7.56153846153846,802.93645331498,35,4359,0,1,0,0,9 +"21610",2017,48407,"TX","48","407",28233,0.878333864626501,1541,0.164346686501612,7.34018683532012,7.99193051985248,8.95712413640568,5.76923076923077,561.471442400774,87,15495,0,1,0,0,9 +"21611",2017,48409,"TX","48","409",67221,0.951071837669776,4274,0.116064920188632,8.36030543587909,9.03848386502999,9.82978718960617,7.73076923076923,524.075552008513,197,37590,0,1,0,0,9 +"21612",2017,48415,"TX","48","415",17020,0.916098707403055,1167,0.117685076380729,7.06219163228656,7.69893619981345,8.32941678393932,4.36153846153846,380.658436213992,37,9720,0,1,0,0,9 +"21613",2017,48419,"TX","48","419",25218,0.793004996431121,1410,0.127845189943691,7.25134498337221,7.95892649305011,8.821437352167,5.20769230769231,577.443169358965,79,13681,0,1,0,0,9 +"21614",2017,48423,"TX","48","423",227159,0.78757170087912,15563,0.121491994594095,9.65265158120501,10.1862952645716,11.1033318462783,4.13076923076923,390.155594050907,500,128154,0,1,0,0,9 +"21615",2017,48425,"TX","48","425",8850,0.952429378531073,493,0.142598870056497,6.20050917404269,6.94697599213542,7.83082299513532,4.6,441.235459286001,22,4986,0,1,0,0,9 +"21616",2017,48427,"TX","48","427",63887,0.989465775509885,5229,0.0829433218025576,8.56197533418813,8.92903790648844,9.74648280372596,11.8,349.339806974954,118,33778,0,1,0,0,9 +"21617",2017,48429,"TX","48","429",9288,0.947889750215332,660,0.136627906976744,6.49223983502047,6.98933526597456,7.75147531802146,4.59230769230769,340.780007572889,18,5282,0,1,0,0,9 +"21618",2017,48439,"TX","48","439",2056197,0.748466221864928,137156,0.113443896669434,11.8288742431303,12.5423448621487,13.3500565634171,3.76153846153846,314.22106893805,3858,1227798,0,1,0,0,9 +"21619",2017,48441,"TX","48","441",136615,0.871661237785016,14302,0.109292537422684,9.56815466660834,9.62085935438703,10.5799462518098,3.56923076923077,453.974197850676,354,77978,0,1,0,0,9 +"21620",2017,48445,"TX","48","445",12427,0.927657519916311,801,0.112738392210509,6.68586094706836,7.24208235925696,8.0106915391303,5.06923076923077,397.953382603752,28,7036,0,1,0,0,9 +"21621",2017,48449,"TX","48","449",32652,0.855322797990935,2253,0.107129731716281,7.72001794043224,8.26410576372896,9.09223228349585,5.43846153846154,405.154465139835,72,17771,0,1,0,0,9 +"21622",2017,48451,"TX","48","451",117745,0.920608093761943,9397,0.116055883477005,9.14814576838307,9.49597034030183,10.4182852770545,3.70769230769231,404.54033548693,273,67484,0,1,0,0,9 +"21623",2017,48453,"TX","48","453",1227373,0.814705065208376,81403,0.104438504024449,11.3071674063484,12.1789172527848,12.887878252908,3.07692307692308,206.456828823109,1665,806464,0,1,0,0,9 +"21624",2017,48455,"TX","48","455",14680,0.88508174386921,683,0.160354223433243,6.52649485957079,7.27655640271871,8.30276158070405,5.56153846153846,851.900393184797,65,7630,0,1,0,0,9 +"21625",2017,48457,"TX","48","457",21498,0.86784817192297,1437,0.137315099078984,7.27031288607902,7.78322401633604,8.54305585094196,7.4,417.724629371775,51,12209,0,1,0,0,9 +"21626",2017,48459,"TX","48","459",41103,0.892805877916454,2239,0.145926088120089,7.71378461659875,8.44419229853175,9.36082720525012,5.27692307692308,590.277777777778,136,23040,0,1,0,0,9 +"21627",2017,48463,"TX","48","463",27073,0.960957411443135,1961,0.10357182432682,7.58120982619635,8.03008409426756,8.87793983472502,4.70769230769231,384.292901062046,55,14312,0,1,0,0,9 +"21628",2017,48465,"TX","48","465",49071,0.955126245644067,4015,0.0892788001059689,8.29779262638086,8.66802408111882,9.44580767297922,5.12307692307692,382.251536501274,102,26684,0,1,0,0,9 +"21629",2017,48467,"TX","48","467",55141,0.950472425237119,2834,0.142779420032281,7.94944442025063,8.72939712269206,9.63272814728026,3.77692307692308,513.264898013598,154,30004,0,1,0,0,9 +"21630",2017,48469,"TX","48","469",92011,0.903120279097064,6017,0.123376552803469,8.70234407522035,9.29651806821724,10.1696522784005,4.88461538461539,424.64903435973,219,51572,0,1,0,0,9 +"21631",2017,48471,"TX","48","471",72764,0.734566543895333,10844,0.109889505799571,9.29136721061856,9.15915233520675,9.82989483223276,4.66923076923077,325.552825552826,159,48840,0,1,0,0,9 +"21632",2017,48473,"TX","48","473",51736,0.7078243389516,7439,0.108493118911396,8.91449171019134,8.56331312702979,9.59280976029003,4.93076923076923,338.438397374539,99,29252,0,1,0,0,9 +"21633",2017,48475,"TX","48","475",11377,0.918783510591544,660,0.11470510679441,6.49223983502047,7.26403014289953,8.02158453345511,4.08461538461538,717.58890129166,45,6271,0,1,0,0,9 +"21634",2017,48477,"TX","48","477",34804,0.795224686817607,2177,0.140989541432019,7.68570306123455,8.17272910486547,9.13809220776856,4.23846153846154,473.372781065089,88,18590,0,1,0,0,9 +"21635",2017,48479,"TX","48","479",273378,0.979636254563279,21908,0.0846044670748926,9.99460714590361,10.4678349857045,11.233621531029,4.24615384615385,286.097030649407,425,148551,0,1,0,0,9 +"21636",2017,48481,"TX","48","481",41869,0.842126633069813,2719,0.127588430581098,7.90801944463247,8.45297461908959,9.35643007784808,4.53076923076923,462.054836319254,106,22941,0,1,0,0,9 +"21637",2017,48483,"TX","48","483",5301,0.934540652707036,255,0.140162233540841,5.54126354515843,6.41345895716736,7.25559127425367,3.98461538461538,528.913963328632,15,2836,0,1,0,0,9 +"21638",2017,48485,"TX","48","485",131807,0.840880985076665,12057,0.120759898943152,9.39740068311731,9.62112464156195,10.4906073284505,3.72307692307692,475.601268270049,369,77586,0,1,0,0,9 +"21639",2017,48487,"TX","48","487",12693,0.865516426376743,811,0.140155991491373,6.69826805411541,7.26262860097424,8.19063168090354,4.69230769230769,537.0421371523,39,7262,0,1,0,0,9 +"21640",2017,48489,"TX","48","489",21489,0.957652752571083,2137,0.096561031225278,7.66715825531915,7.93522953981691,8.55371796609861,11.0692307692308,368.829945852625,47,12743,0,1,0,0,9 +"21641",2017,48491,"TX","48","491",546837,0.834469869449214,30015,0.104385767605338,10.3094525356859,11.3955036140788,12.0178195317828,3.29230769230769,197.050364114803,644,326820,0,1,0,0,9 +"21642",2017,48493,"TX","48","493",49226,0.962174460650876,2830,0.140027627676431,7.94803199063728,8.70201162840878,9.56064506890707,3.52307692307692,398.237885462555,113,28375,0,1,0,0,9 +"21643",2017,48495,"TX","48","495",7595,0.93798551678736,519,0.110730743910467,6.25190388316589,6.83947643822884,7.58069975222456,5.20769230769231,784.593437945792,33,4206,0,1,0,0,9 +"21644",2017,48497,"TX","48","497",65781,0.961387026649032,3614,0.139660388258008,8.19257047115217,8.98594603876032,9.84897856703573,4.03846153846154,401.836969001148,154,38324,0,1,0,0,9 +"21645",2017,48499,"TX","48","499",44325,0.922820078962211,2540,0.153209249858996,7.83991936001258,8.31458729131958,9.33078652505205,4.72307692307692,661.055043849985,150,22691,0,1,0,0,9 +"21646",2017,48501,"TX","48","501",8527,0.958132989328017,586,0.108361674680427,6.37331978957701,6.91274282049318,7.67368812926773,3.56153846153846,335.120643431635,15,4476,0,1,0,0,9 +"21647",2017,48503,"TX","48","503",17916,0.960370618441616,903,0.141828533154722,6.80572255341699,7.58882987830781,8.47762041629641,3.80769230769231,611.462327702353,59,9649,0,1,0,0,9 +"21648",2017,48505,"TX","48","505",14251,0.988000842046172,1041,0.0867307557364396,6.94793706861497,7.43070708254597,8.21932609390609,7.50769230769231,424.773910660455,31,7298,0,1,0,0,9 +"21649",2017,48507,"TX","48","507",11946,0.973045370835426,1031,0.0981081533567721,6.93828448401696,7.23273313617761,8.02289686960146,11.2461538461538,439.35352267378,28,6373,0,1,0,0,9 +"21650",2017,49001,"UT","49","001",6402,0.95845048422368,359,0.118088097469541,5.88332238848828,6.68959926917897,7.36391350140582,3.91538461538462,371.747211895911,12,3228,0,1,0,0,9 +"21651",2017,49003,"UT","49","003",53999,0.966536417341062,3334,0.110594640641493,8.11192806331074,8.87556669199055,9.55732855032537,3.16153846153846,326.969728931547,93,28443,0,1,0,0,9 +"21652",2017,49005,"UT","49","005",124448,0.944338197480072,18150,0.076618346618668,9.806425839693,9.57289797907307,10.4421715044305,2.68461538461538,183.892193201735,128,69606,0,1,0,0,9 +"21653",2017,49007,"UT","49","007",20171,0.96207426503396,1219,0.133310197808735,7.10578612948127,7.82763954636642,8.60758219114392,4.89230769230769,504.957767168564,55,10892,0,1,0,0,9 +"21654",2017,49011,"UT","49","011",346858,0.938787630673071,22486,0.0943786794596059,10.0206481723097,10.8312522064839,11.4619479102054,2.99230769230769,223.932527245996,428,191129,0,1,0,0,9 +"21655",2017,49013,"UT","49","013",19852,0.930233729599033,1042,0.10160185371751,6.94889722231331,7.89133075766189,8.52852870107998,5.52307692307692,464.306442251886,48,10338,0,1,0,0,9 +"21656",2017,49015,"UT","49","015",10027,0.975565971875935,526,0.133439712775506,6.26530121273771,7.12367278520461,7.85941315469358,4.95384615384615,479.846449136276,25,5210,0,1,0,0,9 +"21657",2017,49019,"UT","49","019",9591,0.917005526013971,439,0.155562506516526,6.08449941307517,7.1770187659099,7.94307271727793,5.36923076923077,462.715785726998,26,5619,0,1,0,0,9 +"21658",2017,49021,"UT","49","021",50944,0.946019158291457,5472,0.0986769786432161,8.60739945930239,8.69818052519705,9.54309140779554,4.03846153846154,326.738716742666,91,27851,0,1,0,0,9 +"21659",2017,49023,"UT","49","023",11308,0.973027944817828,719,0.0902900601344181,6.57786135772105,7.30451594646016,7.94803199063728,3.26153846153846,369.718309859155,21,5680,0,1,0,0,9 +"21660",2017,49025,"UT","49","025",7535,0.963105507631055,337,0.148108825481088,5.82008293035236,6.6945620585211,7.56786260546388,3.36923076923077,255.950857435372,10,3907,0,1,0,0,9 +"21661",2017,49027,"UT","49","027",12805,0.952987114408434,735,0.122842639593909,6.59987049921284,7.29233717617388,8.0375431851187,3.16153846153846,362.776025236593,23,6340,0,1,0,0,9 +"21662",2017,49035,"UT","49","035",1137273,0.892331920304096,79040,0.101462006044283,11.2777093324217,12.0162248374267,12.7186237797464,3,279.911672316736,1890,675213,0,1,0,0,9 +"21663",2017,49037,"UT","49","037",15286,0.481748004710192,1005,0.115138034803088,6.91274282049318,7.4265490723973,8.28601746840476,6.81538461538462,610.591900311527,49,8025,0,1,0,0,9 +"21664",2017,49039,"UT","49","039",29953,0.950889727239342,2832,0.101158481621207,7.94873845481361,8.22710823434815,8.91395385889425,3.80769230769231,320.706765097422,53,16526,0,1,0,0,9 +"21665",2017,49041,"UT","49","041",21299,0.969435184750458,1159,0.116578243110005,7.05531284333975,7.9402277651457,8.59969441292798,3.72307692307692,416.026046848151,46,11057,0,1,0,0,9 +"21666",2017,49043,"UT","49","043",41375,0.960797583081571,2360,0.148616314199396,7.76641689801966,8.5876516550648,9.41832967551871,3.01538461538462,152.048655569782,38,24992,0,1,0,0,9 +"21667",2017,49045,"UT","49","045",67490,0.9565713439028,3977,0.0933767965624537,8.28828304520769,9.25119436598445,9.82162652605581,3.48461538461538,293.144716671597,109,37183,0,1,0,0,9 +"21668",2017,49047,"UT","49","047",35235,0.894451539662268,1957,0.100695331346672,7.57916796739608,8.50653661122771,9.14141892650976,5.85384615384615,360.01694197374,68,18888,0,1,0,0,9 +"21669",2017,49049,"UT","49","049",607612,0.947519140504138,77168,0.0666494407615386,11.2537401423088,11.2475787574376,12.0013582296843,2.83076923076923,187.297648945505,619,330490,0,1,0,0,9 +"21670",2017,49051,"UT","49","051",32045,0.968076142924013,1826,0.113465439226088,7.50988306115491,8.44505251363855,9.0663545214478,3.20769230769231,187.766714082504,33,17575,0,1,0,0,9 +"21671",2017,49053,"UT","49","053",166195,0.947850416679202,9994,0.109552032251271,9.20974019190415,9.86375871030713,10.6501518030609,3.37692307692308,327.642069241691,270,82407,0,1,0,0,9 +"21672",2017,49057,"UT","49","057",251474,0.939218368499328,17589,0.106360896156263,9.77502898563232,10.4435709623691,11.1737255115097,3.55384615384615,323.568658088871,468,144637,0,1,0,0,9 +"21673",2017,51001,"VA","51","001",32729,0.686852638332977,1473,0.164013565950686,7.29505641646263,8.10591119798651,9.11943049661634,4.50769230769231,590.152877697842,105,17792,0,1,0,0,9 +"21674",2017,51003,"VA","51","003",108107,0.83284153662575,7399,0.133192115219181,8.90910013492555,9.42011495555144,10.3647972488302,3.26923076923077,251.006470751227,154,61353,0,1,0,0,9 +"21675",2017,51005,"VA","51","005",15143,0.939377930396883,782,0.154923066763521,6.66185474054531,7.33498187887181,8.34402957240705,4.53076923076923,688.572118869292,57,8278,0,1,0,0,9 +"21676",2017,51007,"VA","51","007",12974,0.769307846462155,648,0.165716047479575,6.47389069635227,7.21817683840341,8.2380082492184,3.93846153846154,594.294770206022,45,7572,0,1,0,0,9 +"21677",2017,51009,"VA","51","009",31893,0.782491455805349,1957,0.151788793779199,7.57916796739608,8.12622252945853,9.14323856843545,4.05384615384615,360.590258515478,65,18026,0,1,0,0,9 +"21678",2017,51011,"VA","51","011",15715,0.793445752465797,841,0.149029589564111,6.73459165997295,7.47760424319759,8.4213428657594,4.32307692307692,283.671848405764,25,8813,0,1,0,0,9 +"21679",2017,51013,"VA","51","013",235193,0.770911549238285,15724,0.0983064972171791,9.66294348654175,10.5684667132682,11.3157054756343,2.46923076923077,108.737676396675,180,165536,0,1,0,0,9 +"21680",2017,51015,"VA","51","015",75324,0.941134299824757,4123,0.151147044766608,8.3243363327069,9.07107830464268,9.95645943730223,3.38461538461538,329.218106995885,144,43740,0,1,0,0,9 +"21681",2017,51021,"VA","51","021",6361,0.951108316302468,312,0.143530891369282,5.74300318780948,6.73815249459596,7.37148929521428,4.03076923076923,393.700787401575,15,3810,0,1,0,0,9 +"21682",2017,51023,"VA","51","023",33355,0.951341627941838,1670,0.163693599160546,7.4205789054108,8.14757773620177,9.15281718573252,3.47692307692308,386.284262884961,73,18898,0,1,0,0,9 +"21683",2017,51025,"VA","51","025",16572,0.427528361090997,1159,0.147839729664494,7.05531284333975,7.58069975222456,8.37609035043824,5.23846153846154,772.161021311644,75,9713,0,1,0,0,9 +"21684",2017,51027,"VA","51","027",21622,0.962445657200999,1063,0.160808435852373,6.96885037834195,7.83952558170468,8.70615929092886,7.00769230769231,789.45290913397,100,12667,0,1,0,0,9 +"21685",2017,51029,"VA","51","029",17046,0.636806288865423,989,0.14519535374868,6.89669433162271,7.68017564043659,8.35890061242164,5.32307692307692,523.809523809524,55,10500,0,1,0,0,9 +"21686",2017,51031,"VA","51","031",55440,0.831547619047619,3269,0.146807359307359,8.09223940672421,8.73889570493404,9.70984212201073,4.1,394.720611816948,128,32428,0,1,0,0,9 +"21687",2017,51033,"VA","51","033",30441,0.687723793567885,1535,0.138595972537039,7.3362856600213,8.24800570160062,9.09627541568821,4.23076923076923,531.676740541751,95,17868,0,1,0,0,9 +"21688",2017,51035,"VA","51","035",29845,0.982342100854414,1415,0.156542134360864,7.25488481007734,8.08301991917133,9.02304647355567,4.36923076923077,591.751705814866,98,16561,0,1,0,0,9 +"21689",2017,51036,"VA","51","036",7024,0.44618451025057,336,0.188069476082005,5.8171111599632,6.49072353450251,7.64778604544093,4.70769230769231,603.427468018344,25,4143,0,1,0,0,9 +"21690",2017,51037,"VA","51","037",12078,0.701109455207816,664,0.15424739195231,6.49828214947643,7.09920174355309,8.09985791073758,4.52307692307692,588.235294117647,39,6630,0,1,0,0,9 +"21691",2017,51041,"VA","51","041",343500,0.704317321688501,21068,0.133377001455604,9.95551058060328,10.7270707148758,11.5683128670498,3.56923076923077,332.389754110488,674,202774,0,1,0,0,9 +"21692",2017,51043,"VA","51","043",14468,0.923140724357202,753,0.167473043959082,6.62406522779989,7.30854279753919,8.32675881451173,3.4,398.262128892107,33,8286,0,1,0,0,9 +"21693",2017,51045,"VA","51","045",5070,0.98698224852071,241,0.169428007889546,5.48479693349065,6.26720054854136,7.26822302115957,4.27692307692308,345.781466113416,10,2892,0,1,0,0,9 +"21694",2017,51047,"VA","51","047",51261,0.811025926142682,2801,0.131542498195509,7.93773177526011,8.7832429637409,9.58031646215404,3.58461538461538,437.095517229695,129,29513,0,1,0,0,9 +"21695",2017,51049,"VA","51","049",9840,0.663719512195122,555,0.146138211382114,6.31896811374643,6.91968384984741,7.95682712209011,4.13076923076923,451.834447858305,25,5533,0,1,0,0,9 +"21696",2017,51051,"VA","51","051",14728,0.988593155893536,674,0.15229494839761,6.51323011091231,7.52940645783701,8.29229810706322,6.71538461538462,572.109654350417,48,8390,0,1,0,0,9 +"21697",2017,51053,"VA","51","053",28678,0.653462584559593,1676,0.152521096310761,7.42416528104203,8.06871619271478,9.06600800108626,4.43846153846154,527.032628649257,89,16887,0,1,0,0,9 +"21698",2017,51057,"VA","51","057",10960,0.580565693430657,581,0.161405109489051,6.36475075685191,7.00488198971286,8.09559870137819,4.77692307692308,482.237582382254,30,6221,0,1,0,0,9 +"21699",2017,51059,"VA","51","059",1149346,0.670909369328296,69001,0.126585031835496,11.141876276228,12.0133370503873,12.772527848397,3.01538461538462,166.855779374519,1172,702403,0,1,0,0,9 +"21700",2017,51061,"VA","51","061",69555,0.888908058371073,3870,0.14775357630652,8.26100978602383,8.9942965577772,9.92608040118876,3.23076923076923,368.255851313611,149,40461,0,1,0,0,9 +"21701",2017,51063,"VA","51","063",15783,0.968130266742698,744,0.155547107647469,6.61204103483309,7.49886973397693,8.37378460812088,3.63076923076923,363.677690646664,32,8799,0,1,0,0,9 +"21702",2017,51065,"VA","51","065",26517,0.825432741260324,1357,0.146208092921522,7.21303165983487,8.13914867888407,9.06958293425992,3.03076923076923,363.30608537693,56,15414,0,1,0,0,9 +"21703",2017,51067,"VA","51","067",56341,0.903533838590014,3056,0.159936813333097,8.02486215028641,8.62353322718756,9.66065136787618,3.86923076923077,456.224899598394,142,31125,0,1,0,0,9 +"21704",2017,51069,"VA","51","069",86568,0.922615747158303,4829,0.134010257831993,8.48239468587354,9.27340906344317,10.1272309239223,3.15384615384615,311.906428071579,156,50015,0,1,0,0,9 +"21705",2017,51071,"VA","51","071",16759,0.972074706128051,834,0.138850766752193,6.72623340235875,7.55799495853081,8.44634145044429,4.63846153846154,705.505077498664,66,9355,0,1,0,0,9 +"21706",2017,51073,"VA","51","073",37332,0.893844423015108,2026,0.166559519982857,7.61381868480863,8.35066624052092,9.32250766884693,3.26923076923077,518.508499030615,115,22179,0,1,0,0,9 +"21707",2017,51075,"VA","51","075",22893,0.814091643733892,1093,0.177870964923776,6.99668148817654,7.8188324438034,8.8305430106166,3.46923076923077,368.920343321789,49,13282,0,1,0,0,9 +"21708",2017,51077,"VA","51","077",15699,0.934454423848653,809,0.160010191731957,6.69579891705849,7.46851327149634,8.32142158689788,3.9,523.851983950067,47,8972,0,1,0,0,9 +"21709",2017,51079,"VA","51","079",19608,0.895960832313341,888,0.139228886168911,6.78897174299217,7.78779687818117,8.65312170864048,3,330.121341898644,37,11208,0,1,0,0,9 +"21710",2017,51081,"VA","51","081",11552,0.386945983379501,771,0.128462603878116,6.64768837356333,7.46908388492123,7.74975340627444,4.3,608.178053830228,47,7728,0,1,0,0,9 +"21711",2017,51083,"VA","51","083",34592,0.616616558741906,1897,0.151277752081406,7.54802896993501,8.14757773620177,9.15366419478263,4.83846153846154,581.9592628516,108,18558,0,1,0,0,9 +"21712",2017,51085,"VA","51","085",105729,0.874878226409027,6361,0.149240038210898,8.7579408766788,9.43228320271387,10.3496786505563,3.27692307692308,352.87198588512,216,61212,0,1,0,0,9 +"21713",2017,51087,"VA","51","087",328008,0.588491744103802,18739,0.129576107899807,9.83836219257567,10.6884387735711,11.5482733036019,3.62307692307692,329.798208214974,649,196787,0,1,0,0,9 +"21714",2017,51089,"VA","51","089",51370,0.755129452988125,2526,0.152832392446953,7.83439230291044,8.56388591940822,9.57380223260389,4.58461538461538,581.292312054726,164,28213,0,1,0,0,9 +"21715",2017,51093,"VA","51","093",36758,0.74147124435497,1935,0.162930518526579,7.56786260546388,8.3240937614504,9.29109052166129,3.8,426.329351136098,91,21345,0,1,0,0,9 +"21716",2017,51095,"VA","51","095",75429,0.819366556629413,3719,0.141709422105556,8.22121009392507,9.01408214944336,9.94530105534954,3.47692307692308,341.390480936955,137,40130,0,1,0,0,9 +"21717",2017,51097,"VA","51","097",7010,0.700285306704708,368,0.171184022824536,5.90808293816893,6.5424719605068,7.58273848891441,3.44615384615385,593.471810089021,24,4044,0,1,0,0,9 +"21718",2017,51099,"VA","51","099",26379,0.796087797111339,1650,0.127449865423253,7.40853056689463,8.1656479252975,8.94793610670867,3.70769230769231,357.25677830941,56,15675,0,1,0,0,9 +"21719",2017,51101,"VA","51","101",16706,0.800371124147013,916,0.138932120196337,6.82001636467413,7.62021477057445,8.52753948347038,3.40769230769231,344.12955465587,34,9880,0,1,0,0,9 +"21720",2017,51103,"VA","51","103",10724,0.699459157030959,410,0.174841477060798,6.01615715969835,6.62936325343745,7.8995244720322,5.16923076923077,544.747081712062,28,5140,0,1,0,0,9 +"21721",2017,51105,"VA","51","105",23934,0.952118325394836,1169,0.150455419069107,7.06390396147207,8.00770001288403,8.77322978603247,5.11538461538461,586.216757220475,82,13988,0,1,0,0,9 +"21722",2017,51107,"VA","51","107",397192,0.702174263328567,20312,0.10126085117525,9.91896712338451,11.125054665263,11.6972949233815,3,147.236201805099,354,240430,0,1,0,0,9 +"21723",2017,51109,"VA","51","109",35803,0.814875848392593,1753,0.165488925509036,7.46908388492123,8.30102525383845,9.26568046700935,3.36923076923077,442.688499619193,93,21008,0,1,0,0,9 +"21724",2017,51111,"VA","51","111",12353,0.639116004209504,607,0.154942119323241,6.4085287910595,7.32383056620232,8.0507033814703,4.09230769230769,592.55079006772,42,7088,0,1,0,0,9 +"21725",2017,51113,"VA","51","113",13218,0.887880163413527,683,0.163640490240581,6.52649485957079,7.24064969425547,8.23827262463303,2.88461538461538,496.511003757381,37,7452,0,1,0,0,9 +"21726",2017,51115,"VA","51","115",8704,0.895335477941177,413,0.167624080882353,6.02344759296103,6.62539236800796,7.73892375743946,3.68461538461538,465.219317678334,21,4514,0,1,0,0,9 +"21727",2017,51117,"VA","51","117",30705,0.632372577756066,1593,0.162839928350432,7.37337430991005,8.02518932189084,9.03693891255679,4.84615384615385,642.179810346897,107,16662,0,1,0,0,9 +"21728",2017,51119,"VA","51","119",10614,0.810910118711136,469,0.182871678914641,6.15060276844628,6.73459165997295,7.93880224815448,3.21538461538462,543.773790103317,30,5517,0,1,0,0,9 +"21729",2017,51121,"VA","51","121",98230,0.881329532729309,18430,0.101252163290237,9.82173505066387,9.19917830726999,10.2947861207267,3.73076923076923,267.994481533753,169,63061,0,1,0,0,9 +"21730",2017,51125,"VA","51","125",14800,0.860945945945946,635,0.169932432432432,6.45362499889269,7.31188616407716,8.31752199628717,3.46923076923077,675.929402929027,54,7989,0,1,0,0,9 +"21731",2017,51127,"VA","51","127",21629,0.833972906745573,1145,0.160802626103842,7.04315991598834,7.87321705486274,8.76950712003023,3.15384615384615,376.84654808562,50,13268,0,1,0,0,9 +"21732",2017,51131,"VA","51","131",11867,0.626190275554057,541,0.169882868458751,6.29341927884648,6.99209642741589,8.0861025356691,5.55384615384615,687.120485778204,43,6258,0,1,0,0,9 +"21733",2017,51133,"VA","51","133",12270,0.735778321108394,465,0.174490627546862,6.14203740558736,6.83087423464618,8.01102337918644,5.19230769230769,548.039047782154,32,5839,0,1,0,0,9 +"21734",2017,51135,"VA","51","135",15439,0.58287453850638,954,0.138415700498737,6.86066367144829,7.51207124583547,8.24222989137223,3.78461538461538,466.731792032997,43,9213,0,1,0,0,9 +"21735",2017,51137,"VA","51","137",35882,0.83735577726994,1882,0.143637478401427,7.54009032014532,8.30795254527102,9.23600811872476,3.73076923076923,505.695208169678,103,20368,0,1,0,0,9 +"21736",2017,51139,"VA","51","139",23801,0.966093861602454,1201,0.148817276585017,7.09090982207998,7.90544164906029,8.82261694534418,5.09230769230769,442.24957617749,60,13567,0,1,0,0,9 +"21737",2017,51141,"VA","51","141",17727,0.930501494894793,814,0.163930727139392,6.70196036600254,7.51914995766982,8.4690528160883,4.2,597.50695374472,58,9707,0,1,0,0,9 +"21738",2017,51143,"VA","51","143",61334,0.77082857795024,3116,0.161085205595591,8.04430540699064,8.79209392950328,9.75909741657673,4.23076923076923,448.430493273543,156,34788,0,1,0,0,9 +"21739",2017,51145,"VA","51","145",28722,0.885801824385488,1591,0.160364877097695,7.37211802833779,8.19090888118251,9.03943341999748,3.3,294.901604945273,52,17633,0,1,0,0,9 +"21740",2017,51147,"VA","51","147",22698,0.639968279143537,3881,0.117807736364437,8.26384813136891,7.6004023345004,8.76201995356159,4.8,495.756027942613,66,13313,0,1,0,0,9 +"21741",2017,51149,"VA","51","149",38049,0.621619490656785,2424,0.120213409025204,7.7931743471892,8.63105744756528,9.2321018637577,4.4,279.50705120061,66,23613,0,1,0,0,9 +"21742",2017,51153,"VA","51","153",463400,0.651055243849806,29588,0.110153215364696,10.2951241527078,11.1657056798023,11.855543065815,3.37692307692308,222.496646581642,627,281802,0,1,0,0,9 +"21743",2017,51155,"VA","51","155",34255,0.933294409575244,1805,0.151831849365056,7.49831587076698,8.25400859056484,9.16586588187435,5.26923076923077,604.777744179014,120,19842,0,1,0,0,9 +"21744",2017,51159,"VA","51","159",8882,0.680702544471966,481,0.135104706147264,6.17586727010576,7.05703698169789,7.58629630715272,3.58461538461538,652.37651444548,35,5365,0,1,0,0,9 +"21745",2017,51161,"VA","51","161",93900,0.895729499467519,5292,0.142172523961661,8.57395152523485,9.29394595583098,10.2086165385916,3.37692307692308,381.729630117152,203,53179,0,1,0,0,9 +"21746",2017,51163,"VA","51","163",22736,0.947967980295567,1183,0.161857846586911,7.07580886397839,7.70391020961631,8.73584667745758,4.1,378.056628056628,47,12432,0,1,0,0,9 +"21747",2017,51165,"VA","51","165",80448,0.956816825775656,5038,0.138710719968178,8.52476445691256,9.13248693277132,10.0345596736298,3.20769230769231,308.295346942371,140,45411,0,1,0,0,9 +"21748",2017,51167,"VA","51","167",27054,0.982627337916759,1373,0.164411916906927,7.22475340576797,8.0805469658245,8.97170239970333,5.15384615384615,753.641545281824,119,15790,0,1,0,0,9 +"21749",2017,51169,"VA","51","169",21897,0.984016075261451,1085,0.154770059825547,6.98933526597456,7.82084087990734,8.69584134284388,4,476.536628705274,59,12381,0,1,0,0,9 +"21750",2017,51171,"VA","51","171",43319,0.951845610471156,2247,0.143424363443293,7.71735127218533,8.46779284112111,9.40327210788215,3.33846153846154,415.385893495057,100,24074,0,1,0,0,9 +"21751",2017,51173,"VA","51","173",30772,0.967047965683088,1631,0.145586897179254,7.39694860262101,8.18395571730495,9.06704720214971,4.92307692307692,739.212652570053,129,17451,0,1,0,0,9 +"21752",2017,51175,"VA","51","175",17866,0.631086980857495,914,0.16970782491884,6.81783057145415,7.55013534248843,8.49739856408806,3.55384615384615,576.178331916501,61,10587,0,1,0,0,9 +"21753",2017,51177,"VA","51","177",132889,0.78198345988005,8038,0.128994875422345,8.99193557500915,9.73293645134109,10.5927271082651,3.7,327.601371591735,257,78449,0,1,0,0,9 +"21754",2017,51179,"VA","51","179",146868,0.744123975270311,10664,0.116397036794945,9.27462886185855,9.90148554986546,10.6923539201546,3.56923076923077,238.647515389419,214,89672,0,1,0,0,9 +"21755",2017,51181,"VA","51","181",6508,0.548248309772588,349,0.191610325752919,5.85507192220243,6.36818718635049,7.57301725605255,4.36153846153846,826.019617965927,32,3874,0,1,0,0,9 +"21756",2017,51183,"VA","51","183",11369,0.411469786260885,868,0.134576479901486,6.76619171466035,7.23128700432762,7.84227877911735,5.90769230769231,468.102180018724,35,7477,0,1,0,0,9 +"21757",2017,51185,"VA","51","185",41362,0.954813597021421,2066,0.153740147961897,7.63336964967958,8.53010941668278,9.34320904505061,5.58461538461538,669.423954291562,157,23453,0,1,0,0,9 +"21758",2017,51187,"VA","51","187",39478,0.92302041643447,2326,0.148867723795532,7.75190533307861,8.42244285487043,9.36700218198956,3.66923076923077,497.114209883305,118,23737,0,1,0,0,9 +"21759",2017,51191,"VA","51","191",54202,0.973857053245268,3063,0.155842957824435,8.02715010683277,8.74639833410904,9.64801448910636,4.06923076923077,511.807197693628,158,30871,0,1,0,0,9 +"21760",2017,51193,"VA","51","193",17723,0.705411047791006,844,0.163008520002257,6.73815249459596,7.43779512167193,8.50045386741194,4.42307692307692,588.356729975227,57,9688,0,1,0,0,9 +"21761",2017,51195,"VA","51","195",38593,0.93045370922188,2603,0.139533075946415,7.86441990499457,8.47428569040496,9.26501793326688,6.29230769230769,689.298638635189,160,23212,0,1,0,0,9 +"21762",2017,51197,"VA","51","197",28832,0.957165649278579,1435,0.14726692563818,7.26892012819372,8.11402544235676,9.03408040656082,4.97692307692308,629.53995157385,104,16520,0,1,0,0,9 +"21763",2017,51199,"VA","51","199",68117,0.778014298926846,4335,0.134034088406712,8.37447688921464,9.06242024189956,9.90153564881088,3.47692307692308,192.917882980074,76,39395,0,1,0,0,9 +"21764",2017,51510,"VA","51","510",158772,0.67829340185927,7509,0.108337742171164,8.92385758009988,10.282026722705,10.9487869649738,2.83846153846154,152.432190091908,170,111525,0,1,0,0,9 +"21765",2017,51520,"VA","51","520",16956,0.920677046473225,862,0.132106628921916,6.75925527066369,7.59538727885397,8.49187538343195,4.46923076923077,638.676578368757,61,9551,0,1,0,0,9 +"21766",2017,51530,"VA","51","530",6504,0.916051660516605,589,0.119464944649447,6.37842618365159,6.47543271670409,7.53262361878879,4.17692307692308,552.944429084877,20,3617,0,1,0,0,9 +"21767",2017,51540,"VA","51","540",47456,0.717780681051922,7958,0.102452798381659,8.98193299098687,8.65817178467581,9.7469506947159,3.05384615384615,292.476199003193,98,33507,0,1,0,0,9 +"21768",2017,51550,"VA","51","550",240416,0.637353587115666,15101,0.130789964062292,9.62251624577579,10.3810252294359,11.2156104779501,3.73846153846154,359.613295377972,523,145434,0,1,0,0,9 +"21769",2017,51570,"VA","51","570",17382,0.781383039926361,1044,0.126567713726844,6.95081476844258,7.59488438721652,8.52892411429194,4.00769230769231,517.5983436853,50,9660,0,1,0,0,9 +"21770",2017,51580,"VA","51","580",5660,0.837809187279152,341,0.140459363957597,5.83188247728352,6.39692965521615,7.36073990305828,5.95384615384615,939.261114589856,30,3194,0,1,0,0,9 +"21771",2017,51590,"VA","51","590",41078,0.462924192998685,2492,0.143872632552705,7.82084087990734,8.32530602975258,9.40483750470027,5.59230769230769,756.436344333363,171,22606,0,1,0,0,9 +"21772",2017,51600,"VA","51","600",23274,0.728624215863195,1653,0.129328864827705,7.41034709782102,8.03980234373648,8.86644061952617,2.83076923076923,243.461324429605,35,14376,0,1,0,0,9 +"21773",2017,51620,"VA","51","620",8132,0.391293654697491,431,0.143015248401377,6.06610809010375,6.65672652417839,7.82404601085629,5.22307692307692,822.404978884196,37,4499,0,1,0,0,9 +"21774",2017,51630,"VA","51","630",28718,0.696253220976391,3929,0.0999721429068877,8.27614021955846,8.12503909736775,9.16062477973025,4.33846153846154,345.335144927536,61,17664,0,1,0,0,9 +"21775",2017,51640,"VA","51","640",6477,0.901497606916782,391,0.134475837579126,5.96870755998537,6.54821910276237,7.52994337060159,4.12307692307692,801.769422173072,29,3617,0,1,0,0,9 +"21776",2017,51650,"VA","51","650",135007,0.431481330597673,11715,0.135615190323465,9.3686253509419,9.60238245975221,10.6476842477718,5,438.548270849367,359,81861,0,1,0,0,9 +"21777",2017,51660,"VA","51","660",53807,0.844146672366049,11181,0.0778894939320163,9.32197118814737,8.66888370465667,9.7435535146198,4.36923076923077,176.652436331518,60,33965,0,1,0,0,9 +"21778",2017,51670,"VA","51","670",22533,0.533040429592154,1375,0.123152709359606,7.22620901010067,7.85709386490249,8.83185793519791,6.06923076923077,704.61128943866,90,12773,0,1,0,0,9 +"21779",2017,51680,"VA","51","680",80567,0.670063425471967,14167,0.09779438231534,9.55867059537935,8.86460536807578,10.1244687676857,4.86923076923077,357.383114698957,170,47568,0,1,0,0,9 +"21780",2017,51683,"VA","51","683",41171,0.750941196473246,2775,0.116028272327609,7.92840602618053,8.69366433453202,9.43324389448578,3.33846153846154,373.031766599914,95,25467,0,1,0,0,9 +"21781",2017,51690,"VA","51","690",12827,0.497934045373041,698,0.140251032977313,6.54821910276237,7.21081845347222,8.24617155985756,6.22307692307692,1098.9010989011,78,7098,0,1,0,0,9 +"21782",2017,51700,"VA","51","700",179738,0.505941982218563,15597,0.118806262448675,9.65483386705183,9.96528795344157,10.933089112415,4.56153846153846,415.116470868537,453,109126,0,1,0,0,9 +"21783",2017,51710,"VA","51","710",244908,0.505675600633707,34651,0.108232479135022,10.4530818642305,10.2298012223389,11.2088971849156,4.56153846153846,434.10119906463,698,160792,0,1,0,0,9 +"21784",2017,51730,"VA","51","730",30966,0.184266614997094,2350,0.142381967318995,7.7621706071382,8.02486215028641,9.22157700390217,7.23846153846154,989.575064825105,187,18897,0,1,0,0,9 +"21785",2017,51735,"VA","51","735",12041,0.951997342413421,655,0.141848683664147,6.48463523563525,7.29979736675816,8.1341742721379,3.35384615384615,366.461448255644,25,6822,0,1,0,0,9 +"21786",2017,51740,"VA","51","740",94964,0.413177625205341,6833,0.127037614253823,8.82951909478078,9.33414965770247,10.282060965176,5.30769230769231,610.520000705803,346,56673,0,1,0,0,9 +"21787",2017,51750,"VA","51","750",17470,0.871493989696623,4520,0.0911848883800801,8.41626727282628,7.31920245876785,8.68101127664563,4.88461538461538,301.958416012423,35,11591,0,1,0,0,9 +"21788",2017,51760,"VA","51","760",227620,0.465547842896055,19679,0.123908268166242,9.88730735630709,10.1933547358932,11.266116585728,4.26153846153846,410.762787834999,614,149478,0,1,0,0,9 +"21789",2017,51770,"VA","51","770",98989,0.648253846386972,5707,0.13434826091788,8.64944877053671,9.40746843608711,10.3286572439186,4.1,606.396559833367,361,59532,0,1,0,0,9 +"21790",2017,51775,"VA","51","775",25362,0.892161501458876,2031,0.138277738348711,7.61628356158038,7.92153563213355,8.91610353055373,3.69230769230769,543.995648034816,80,14706,0,1,0,0,9 +"21791",2017,51790,"VA","51","790",24395,0.849313383890141,1456,0.137159253945481,7.28344822875663,7.99833539595298,8.94389780251682,3.53076923076923,602.879636853678,85,14099,0,1,0,0,9 +"21792",2017,51800,"VA","51","800",90228,0.533925167353815,5205,0.131888105687813,8.55737498104907,9.35392110045371,10.2324675062561,4.02307692307692,353.092831655053,189,53527,0,1,0,0,9 +"21793",2017,51810,"VA","51","810",450417,0.697442592086888,32734,0.122581962936568,10.3961695720658,10.9756703043673,11.8506825900543,3.50769230769231,292.590810853504,815,278546,0,1,0,0,9 +"21794",2017,51820,"VA","51","820",22196,0.83303297891512,1276,0.126824653090647,7.15148546390474,7.91132401896335,8.79224584746788,3.96923076923077,380.952380952381,48,12600,0,1,0,0,9 +"21795",2017,51840,"VA","51","840",28148,0.827092511013216,2043,0.121145374449339,7.62217459481762,8.12474302038557,9.01627006814768,3.62307692307692,381.749892248014,62,16241,0,1,0,0,9 +"21796",2017,50001,"VT","50","001",36947,0.961214712967223,3417,0.156602701166536,8.13651825211529,8.27180403115471,9.29716006392874,2.82307692307692,221.320545924013,48,21688,1,1,1,0,9 +"21797",2017,50003,"VT","50","003",35763,0.966949081452898,2385,0.164947012275257,7.77695440332244,8.14699869738999,9.234545060673,3.63846153846154,478.444802578566,95,19856,1,1,1,0,9 +"21798",2017,50005,"VT","50","005",30172,0.972225904812409,1802,0.162236510672146,7.49665243816828,8.13035354743124,9.05893591781695,3.71538461538462,423.483002668523,73,17238,1,1,1,0,9 +"21799",2017,50007,"VT","50","007",163254,0.917686549793573,18371,0.131837504747204,9.81852861330894,9.8428879304072,10.8445294318728,2.26923076923077,248.915299928179,253,101641,1,1,1,0,9 +"21800",2017,50011,"VT","50","011",48994,0.967302118626771,2812,0.149732620320856,7.94165125293056,8.71341765337918,9.60245002503719,3.05384615384615,393.968210840918,116,29444,1,1,1,0,9 +"21801",2017,50013,"VT","50","013",6976,0.968033256880734,335,0.188646788990826,5.81413053182507,6.6052979209482,7.63819824428578,3.47692307692308,408.065290446471,17,4166,1,1,1,0,9 +"21802",2017,50015,"VT","50","015",25427,0.972312895740748,1610,0.144098792622016,7.38398945797851,8.08978917578932,8.92651750985012,3.99230769230769,311.093460418321,47,15108,1,1,1,0,9 +"21803",2017,50017,"VT","50","017",28976,0.980328547763667,1635,0.173729983434567,7.39939808333135,8.07713663853845,9.04440384443155,3.07692307692308,394.721338517733,67,16974,1,1,1,0,9 +"21804",2017,50019,"VT","50","019",26822,0.976474535828797,1466,0.157892774588025,7.2902928824466,8.00670084544037,8.90910013492555,5.1,356.200527704486,54,15160,1,1,1,0,9 +"21805",2017,50021,"VT","50","021",59012,0.977004677014844,3702,0.167677760455501,8.21662849313344,8.67880170661265,9.74161547260958,3.49230769230769,452.130002055136,154,34061,1,1,1,0,9 +"21806",2017,50023,"VT","50","023",58330,0.971815532316132,3687,0.154088805074576,8.21256839823415,8.85280791762332,9.76100190423937,2.93846153846154,335.237873134328,115,34304,1,1,1,0,9 +"21807",2017,50025,"VT","50","025",42955,0.963077639390059,2466,0.174927249447096,7.81035268372429,8.41383067842108,9.44501715910407,3.1,404.334465469837,100,24732,1,1,1,0,9 +"21808",2017,50027,"VT","50","027",55320,0.973933477946493,2710,0.173029645697758,7.90470391387375,8.70649036194662,9.6955404481032,2.56153846153846,385.843954584269,122,31619,1,1,1,0,9 +"21809",2017,53001,"WA","53","001",19574,0.900275876162256,1391,0.0954327168693164,7.23777819192344,7.70526247486633,8.47824444127766,5.77692307692308,354.502177656234,35,9873,1,1,1,0,9 +"21810",2017,53003,"WA","53","003",22612,0.951264815142402,1077,0.15819034141164,6.98193467715639,7.81278281857758,8.76280248744611,4.13076923076923,386.691371948763,48,12413,1,1,1,0,9 +"21811",2017,53005,"WA","53","005",198229,0.921464568756337,12004,0.124951445045881,9.39299520656026,10.1122075831846,10.9254347562688,5.44615384615385,322.058310446319,360,111781,1,1,1,0,9 +"21812",2017,53007,"WA","53","007",76216,0.947399496168783,4327,0.141230187887058,8.37262974022488,9.07954808172616,9.95460833204384,4.83076923076923,282.386163078009,120,42495,1,1,1,0,9 +"21813",2017,53009,"WA","53","009",75741,0.893254644116133,3431,0.166197964114548,8.14060704285845,8.92385758009988,9.89298256789098,6.68461538461538,432.185076903521,170,39335,1,1,1,0,9 +"21814",2017,53011,"WA","53","011",475238,0.889251280411078,27513,0.128668162057748,10.2224138992271,11.0541545123376,11.849154814954,5.00769230769231,297.515064851801,826,277633,1,1,1,0,9 +"21815",2017,53015,"WA","53","015",106800,0.934550561797753,5899,0.143810861423221,8.68253812400308,9.42520978683815,10.3116157780638,5.99230769230769,551.211170327572,332,60231,1,1,1,0,9 +"21816",2017,53017,"WA","53","017",41961,0.945377850861514,2537,0.127523176282739,7.83873755959928,8.5197898172635,9.31739944426959,5.63076923076923,289.473684210526,66,22800,1,1,1,0,9 +"21817",2017,53019,"WA","53","019",7587,0.781204692236721,371,0.177276921049163,5.91620206260743,6.64898455002478,7.62364194651157,10.8769230769231,687.285223367698,28,4074,1,1,1,0,9 +"21818",2017,53021,"WA","53","021",91803,0.913619380630263,6163,0.0894633072993257,8.72631895096224,9.43779461887748,10.0838488559549,6.29230769230769,233.676708274103,120,51353,1,1,1,0,9 +"21819",2017,53025,"WA","53","025",95262,0.935021309651277,6348,0.110978144485734,8.7558950816463,9.32098689206325,10.1225427579417,6.23076923076923,360.370889823905,185,51336,1,1,1,0,9 +"21820",2017,53027,"WA","53","027",72507,0.895858330919773,3674,0.158412291227054,8.20903626577507,9.00442260132704,9.87668145811562,6.95384615384615,557.394606172719,229,41084,1,1,1,0,9 +"21821",2017,53029,"WA","53","029",83362,0.881324824260454,6125,0.144538278832082,8.72013403541293,9.02099420024526,10.0477177582074,5.10769230769231,336.779784632545,157,46618,1,1,1,0,9 +"21822",2017,53031,"WA","53","031",31264,0.933181934493347,1100,0.199078812691914,7.00306545878646,7.87016594646984,9.0015927009457,6.00769230769231,415.721844293273,66,15876,1,1,1,0,9 +"21823",2017,53033,"WA","53","033",2205001,0.702274057925597,133143,0.120275228900123,11.7991790175732,12.7036701623996,13.4544388194178,3.55384615384615,223.047325594503,3146,1410463,1,1,1,0,9 +"21824",2017,53035,"WA","53","035",266636,0.859542597398701,20805,0.140273631467619,9.94294862141704,10.3297678470249,11.2423102548762,4.79230769230769,285.306704707561,456,159828,1,1,1,0,9 +"21825",2017,53037,"WA","53","037",46164,0.940256476908414,7553,0.126288883112382,8.92970011431345,8.41582469702795,9.54609806765953,5.23846153846154,297.817175291686,85,28541,1,1,1,0,9 +"21826",2017,53039,"WA","53","039",21757,0.944937261570989,971,0.16794594843039,6.87832646829133,7.83439230291044,8.70300863746445,5.88461538461539,503.092783505155,61,12125,1,1,1,0,9 +"21827",2017,53041,"WA","53","041",78269,0.945112368881677,4125,0.14875621254903,8.32482129876878,9.09211974058875,9.99012385919568,6.50769230769231,464.634847613571,202,43475,1,1,1,0,9 +"21828",2017,53043,"WA","53","043",10586,0.958719062913282,457,0.168524466276214,6.1246833908942,6.97073007814353,7.88344635413774,4.87692307692308,258.732212160414,14,5411,1,1,1,0,9 +"21829",2017,53045,"WA","53","045",63769,0.901958631937148,3367,0.163449324907087,8.12177741916107,8.83710041116275,9.73216528120054,6.47692307692308,466.96306238291,167,35763,1,1,1,0,9 +"21830",2017,53047,"WA","53","047",41802,0.830510501889862,2108,0.154538060379886,7.65349490966125,8.42310226801664,9.31883596812948,6.80769230769231,527.539341917024,118,22368,1,1,1,0,9 +"21831",2017,53049,"WA","53","049",21756,0.920573634859349,866,0.180272108843537,6.76388490856244,7.61381868480863,8.63941082414049,6.94615384615385,741.983923681654,84,11321,1,1,1,0,9 +"21832",2017,53051,"WA","53","051",13360,0.928817365269461,545,0.181437125748503,6.30078579466324,7.13648320859025,8.15937473677543,7.28461538461538,448.367661482416,32,7137,1,1,1,0,9 +"21833",2017,53053,"WA","53","053",880745,0.781651896973585,61090,0.125012347501263,11.0201034656438,11.6450759045178,12.4886240787329,5.26923076923077,348.366550043146,1853,531911,1,1,1,0,9 +"21834",2017,53055,"WA","53","055",16674,0.958438287153652,621,0.198692575266883,6.43133108193348,7.350516171834,8.43620003220671,3.92307692307692,193.247698078891,17,8797,1,1,1,0,9 +"21835",2017,53057,"WA","53","057",125852,0.923553062327178,7157,0.142524552649143,8.8758461777386,9.58905074277553,10.4662412691625,5.38461538461538,370.052864694956,259,69990,1,1,1,0,9 +"21836",2017,53059,"WA","53","059",11815,0.949471011426153,539,0.188827761320355,6.289715570909,7.24422751560335,8.15822991695949,6.00769230769231,213.918996006845,15,7012,1,1,1,0,9 +"21837",2017,53061,"WA","53","061",803061,0.806052093178476,46381,0.134877674298715,10.7446451715948,11.6260219804708,12.411386182667,3.95384615384615,280.866191334074,1400,498458,1,1,1,0,9 +"21838",2017,53063,"WA","53","063",505708,0.914727471188907,34342,0.13209005987645,10.4441243738737,11.0208234552023,11.9168493860596,5.3,363.245659846386,1092,300623,1,1,1,0,9 +"21839",2017,53065,"WA","53","065",44679,0.911099174108642,2169,0.173907204727053,7.68202151082687,8.41072094690572,9.40919123072135,7.15384615384615,387.823185988324,93,23980,1,1,1,0,9 +"21840",2017,53067,"WA","53","067",280255,0.852034754063264,16751,0.132964621505415,9.72621323696369,10.5201855609327,11.3491822569375,4.88461538461538,304.772169331178,509,167010,1,1,1,0,9 +"21841",2017,53071,"WA","53","071",60683,0.930771385725821,5527,0.126707644645123,8.61740045183326,8.83302530728436,9.7005142080113,4.9,336.593785960875,117,34760,1,1,1,0,9 +"21842",2017,53073,"WA","53","073",221417,0.888052859536531,23608,0.125446555594196,10.0693409166228,10.1669665800397,11.1092936753064,4.90769230769231,262.32120442263,349,133043,1,1,1,0,9 +"21843",2017,53075,"WA","53","075",49514,0.864805913479016,12197,0.088055903380862,9.40894529884324,8.38845031552351,9.6417980603586,4.33076923076923,172.700725343046,55,31847,1,1,1,0,9 +"21844",2017,53077,"WA","53","077",249851,0.885908001168697,17127,0.108352578136569,9.74841144463237,10.2900416357525,11.1124478983731,6.78461538461538,403.16913129998,545,135179,1,1,1,0,9 +"21845",2017,55001,"WI","55","001",19905,0.947751821150465,771,0.195227329816629,6.64768837356333,7.55590509361135,8.49208049060116,5.05384615384615,570.084155280065,63,11051,0,1,0,0,9 +"21846",2017,55003,"WI","55","003",15507,0.856129489907784,1000,0.157348294318695,6.90775527898214,7.43366654016617,8.36497397843873,4.53076923076923,494.423364378521,43,8697,0,1,0,0,9 +"21847",2017,55005,"WI","55","005",45201,0.962368089201566,2362,0.155372668746267,7.76726399675731,8.50633444808136,9.40656483393913,3.46923076923077,381.00585545841,95,24934,0,1,0,0,9 +"21848",2017,55007,"WI","55","007",15013,0.873576233930593,640,0.191700526210617,6.46146817635372,7.2254814727823,8.28677323113125,5.16923076923077,407.357116405382,33,8101,0,1,0,0,9 +"21849",2017,55009,"WI","55","009",261714,0.890743330505819,17364,0.131292173899753,9.76215437641948,10.3915766493282,11.2505991997808,2.91538461538462,301.839475691258,467,154718,0,1,0,0,9 +"21850",2017,55011,"WI","55","011",13115,0.982844071673656,671,0.158825772016775,6.50876913697168,7.2254814727823,8.1610895128458,3.73076923076923,274.649821477616,20,7282,0,1,0,0,9 +"21851",2017,55013,"WI","55","013",15297,0.930051644113225,623,0.189514283846506,6.43454651878745,7.25559127425367,8.29454951514368,4.8,582.403965303594,47,8070,0,1,0,0,9 +"21852",2017,55015,"WI","55","015",49988,0.956629591101864,2696,0.142334160198448,7.8995244720322,8.79179002431936,9.58417720462617,2.78461538461538,223.857816368755,66,29483,0,1,0,0,9 +"21853",2017,55017,"WI","55","017",63774,0.957365070404867,3331,0.146956439928497,8.11102783819368,8.97170239970333,9.75550944976463,3.48461538461538,306.575231948366,114,37185,0,1,0,0,9 +"21854",2017,55019,"WI","55","019",34588,0.978374002544235,1885,0.137244130912455,7.54168309988211,8.20876404581967,9.06670092177457,3.02307692307692,328.910692384881,59,17938,0,1,0,0,9 +"21855",2017,55021,"WI","55","021",57267,0.962037473588629,3058,0.151221471353485,8.02551638648901,8.85637603673042,9.68781601606062,2.93076923076923,302.159552092899,102,33757,0,1,0,0,9 +"21856",2017,55023,"WI","55","023",16182,0.96378692374243,893,0.157335310839204,6.7945865808765,7.42416528104203,8.33062262033287,4.12307692307692,348.236351381712,31,8902,0,1,0,0,9 +"21857",2017,55025,"WI","55","025",537901,0.862387316625178,57008,0.11763131133796,10.9509468878456,11.1575354094944,12.0353258420747,2.38461538461538,224.677193044776,759,337818,0,1,0,0,9 +"21858",2017,55027,"WI","55","027",87724,0.95004787743377,5136,0.15196525466235,8.5440298453698,9.31334812205041,10.0765160624185,2.88461538461538,356.794111019304,190,53252,0,1,0,0,9 +"21859",2017,55029,"WI","55","029",27473,0.975903614457831,1212,0.183161649619627,7.10002716662926,7.90137735379262,8.8879288190033,3.88461538461538,288.223991216031,42,14572,0,1,0,0,9 +"21860",2017,55031,"WI","55","031",43451,0.94451220915514,2673,0.155393431681664,7.89095671613892,8.5450028920555,9.45641889457289,4.41538461538462,315.150571939927,81,25702,0,1,0,0,9 +"21861",2017,55033,"WI","55","033",44784,0.951545194712397,5821,0.123771882815291,8.66922734727174,8.48549610467298,9.46000900222975,3.23846153846154,272.768601303228,72,26396,0,1,0,0,9 +"21862",2017,55035,"WI","55","035",103671,0.929806792642108,12736,0.119213666309768,9.45218790808416,9.35470042248302,10.3461842172496,2.90769230769231,319.976845896578,199,62192,0,1,0,0,9 +"21863",2017,55039,"WI","55","039",102324,0.949591493686721,6109,0.147208865955201,8.71751837264977,9.40351943877092,10.295968733086,2.81538461538462,308.205335489087,183,59376,0,1,0,0,9 +"21864",2017,55041,"WI","55","041",8981,0.815165349070259,525,0.168244070816167,6.26339826259162,6.77078942390898,7.79770203551669,5,529.20822308162,26,4913,0,1,0,0,9 +"21865",2017,55043,"WI","55","043",51773,0.969945724605489,6098,0.131767523612694,8.7157161275482,8.54733434832822,9.52156805800298,3.13076923076923,279.329608938547,82,29356,0,1,0,0,9 +"21866",2017,55045,"WI","55","045",36843,0.978937654371251,1857,0.156746193306734,7.52671756135271,8.37953902611744,9.25712853347494,2.72307692307692,230.490615739216,49,21259,0,1,0,0,9 +"21867",2017,55047,"WI","55","047",18731,0.975548555869948,885,0.161336821312263,6.78558764500793,7.55485852104068,8.49719454490955,3.73076923076923,438.771439968089,44,10028,0,1,0,0,9 +"21868",2017,55049,"WI","55","049",23692,0.975983454330576,1148,0.158492318082053,7.04577657687951,7.91534816926308,8.80507524387068,2.92307692307692,340.236686390533,46,13520,0,1,0,0,9 +"21869",2017,55053,"WI","55","053",20496,0.894125683060109,1120,0.148907103825137,7.02108396428914,7.76344638872736,8.5567984460086,3.31538461538462,425.350914504466,50,11755,0,1,0,0,9 +"21870",2017,55055,"WI","55","055",84733,0.970365737080004,5215,0.144087899637685,8.55929436743487,9.26501793326688,10.1092814655152,3.16153846153846,355.164941006501,177,49836,0,1,0,0,9 +"21871",2017,55057,"WI","55","057",26474,0.948817707939866,1283,0.158306262748357,7.15695636461564,8.03851202097681,8.82673459822091,3.30769230769231,409.729448491155,63,15376,0,1,0,0,9 +"21872",2017,55059,"WI","55","059",168492,0.88705101725898,11288,0.137163782256724,9.33149549353265,9.94640335351296,10.8366157356,3.85384615384615,366.278667969868,371,101289,0,1,0,0,9 +"21873",2017,55061,"WI","55","061",20406,0.977800646868568,1083,0.154268352445359,6.98749024700099,7.76089319585102,8.62191350218664,3.06923076923077,339.484679665738,39,11488,0,1,0,0,9 +"21874",2017,55063,"WI","55","063",118161,0.923773495484974,13874,0.127300886079163,9.53777186394525,9.47799829259704,10.4787798198566,2.89230769230769,333.049886621315,235,70560,0,1,0,0,9 +"21875",2017,55065,"WI","55","065",16688,0.980345158197507,882,0.157358581016299,6.78219205600679,7.47250074473756,8.41094339157353,2.53076923076923,326.26427406199,30,9195,0,1,0,0,9 +"21876",2017,55067,"WI","55","067",19184,0.963094245204337,943,0.169724770642202,6.84906628263346,7.56112158953024,8.5440298453698,4.18461538461538,390.104662226451,41,10510,0,1,0,0,9 +"21877",2017,55069,"WI","55","069",27745,0.973941250675797,1433,0.175851504775635,7.26752542782817,8.03851202097681,8.97613587330255,3.52307692307692,546.649468705853,89,16281,0,1,0,0,9 +"21878",2017,55071,"WI","55","071",79056,0.948643999190447,4339,0.163124873507387,8.37539918579835,9.07943410212838,10.0131039988595,3.48461538461538,331.060054293849,150,45309,0,1,0,0,9 +"21879",2017,55073,"WI","55","073",135525,0.917963475373547,7697,0.144571112340897,8.94858592153432,9.69928841722286,10.5552396577297,2.92307692307692,312.225209955524,245,78469,0,1,0,0,9 +"21880",2017,55075,"WI","55","075",40341,0.976599489353263,1890,0.176148335440371,7.54433210805369,8.34260168068419,9.30501398557886,4.4,495.690617603715,111,22393,0,1,0,0,9 +"21881",2017,55077,"WI","55","077",15270,0.971447282252783,615,0.182645710543549,6.42162226780652,7.30921236569276,8.3030093814735,3.81538461538462,524.308865586273,44,8392,0,1,0,0,9 +"21882",2017,55079,"WI","55","079",950843,0.652916412068028,65383,0.121312351250417,11.0880175648174,11.7021978089759,12.5879824940168,4,430.000928311576,2455,570929,0,1,0,0,9 +"21883",2017,55081,"WI","55","081",45818,0.953271639966825,2301,0.143895412283382,7.74109909003537,8.61286694148452,9.42641902556827,2.92307692307692,397.387472458294,101,25416,0,1,0,0,9 +"21884",2017,55083,"WI","55","083",37530,0.971196376232347,1767,0.174660271782574,7.4770384723197,8.35279013512463,9.26530193005016,3.50769230769231,418.891548517768,91,21724,0,1,0,0,9 +"21885",2017,55085,"WI","55","085",35237,0.971705877344836,1644,0.186082810681954,7.40488757561612,8.12415060330663,9.18450961194166,3.80769230769231,472.705093016163,93,19674,0,1,0,0,9 +"21886",2017,55087,"WI","55","087",185834,0.922533013334481,11548,0.135637181570649,9.35426754078282,10.0747060309854,10.9119927683981,2.98461538461538,255.129638310916,283,110924,0,1,0,0,9 +"21887",2017,55089,"WI","55","089",88540,0.949175513892026,5310,0.155466455839169,8.57734711423598,9.20170317858052,10.1300652005846,2.73846153846154,250.501002004008,125,49900,0,1,0,0,9 +"21888",2017,55093,"WI","55","093",42075,0.968318478906714,4657,0.13784907902555,8.44612674298238,8.47324130388705,9.44588669000744,3.33846153846154,270.216570633817,68,25165,0,1,0,0,9 +"21889",2017,55095,"WI","55","095",43409,0.973231357552581,2147,0.165910295100094,7.67182679787878,8.50552538654856,9.39988577385946,3.71538461538462,377.343179420596,93,24646,0,1,0,0,9 +"21890",2017,55097,"WI","55","097",70674,0.947703540198659,8361,0.133288055013159,9.03133331615006,8.9450718943613,9.9343561761986,3.04615384615385,201.569873603832,85,42169,0,1,0,0,9 +"21891",2017,55099,"WI","55","099",13377,0.963893249607535,596,0.191747028481722,6.39024066706535,7.20191631753163,8.17385745477362,3.71538461538462,338.2949932341,25,7390,0,1,0,0,9 +"21892",2017,55101,"WI","55","101",196026,0.844454307081714,11988,0.144751206472611,9.39166142843655,10.0590372532771,10.9541867922568,4.01538461538462,365.515613113091,418,114359,0,1,0,0,9 +"21893",2017,55103,"WI","55","103",17510,0.974871501998858,872,0.162021701884637,6.77078942390898,7.5234813125735,8.43468076984177,2.97692307692308,362.280234416622,34,9385,0,1,0,0,9 +"21894",2017,55105,"WI","55","105",162278,0.915262697346529,9990,0.138971394767005,9.2093398716426,9.89227492532203,10.7661454132408,3.67692307692308,374.738585335301,353,94199,0,1,0,0,9 +"21895",2017,55107,"WI","55","107",14120,0.97443342776204,701,0.173229461756374,6.55250788703459,7.24992553671799,8.21283958467648,4.4,446.487196323047,34,7615,0,1,0,0,9 +"21896",2017,55109,"WI","55","109",88615,0.969271568018958,4701,0.13919765276759,8.45553053102413,9.41540141573963,10.1696522784005,3.1,227.294432241429,119,52355,0,1,0,0,9 +"21897",2017,55111,"WI","55","111",63956,0.962536744011508,3537,0.142879479642254,8.17103418920548,8.95531908176395,9.79979231619736,2.87692307692308,361.149110807114,132,36550,0,1,0,0,9 +"21898",2017,55113,"WI","55","113",16378,0.792770790084259,743,0.183783123702528,6.61069604471776,7.31654817718298,8.35443894011481,4.64615384615385,631.240674853667,55,8713,0,1,0,0,9 +"21899",2017,55115,"WI","55","115",40832,0.894959835423197,2034,0.154633620689655,7.6177595766085,8.40290404501411,9.32322252903286,3.19230769230769,398.493606586092,91,22836,0,1,0,0,9 +"21900",2017,55117,"WI","55","117",115085,0.90817222053265,7010,0.148273015597167,8.85509298002864,9.52083524249312,10.3848328709796,2.76923076923077,302.848575712144,202,66700,0,1,0,0,9 +"21901",2017,55119,"WI","55","119",20302,0.982908087873116,971,0.161511181164417,6.87832646829133,7.75276480885133,8.60171814648593,3.43076923076923,231.090569727135,26,11251,0,1,0,0,9 +"21902",2017,55121,"WI","55","121",29352,0.969473971109294,1511,0.142511583537749,7.32052696227274,8.10681603894705,8.97537724385663,3.01538461538462,287.532117949345,47,16346,0,1,0,0,9 +"21903",2017,55123,"WI","55","123",30729,0.982654821178691,1487,0.157440853916496,7.30451594646016,8.08425410630732,8.99143781491923,3.05384615384615,381.30381303813,62,16260,0,1,0,0,9 +"21904",2017,55125,"WI","55","125",21667,0.872663497484654,817,0.184058706789126,6.70563909486,7.47873482556787,8.58746524440157,4.34615384615385,379.40379403794,42,11070,0,1,0,0,9 +"21905",2017,55127,"WI","55","127",102890,0.965924774030518,9648,0.144756536106522,9.17450591896697,9.3258096217823,10.3059815846993,3.25384615384615,325.392213829169,196,60235,0,1,0,0,9 +"21906",2017,55129,"WI","55","129",15728,0.969163275686673,658,0.18279501525941,6.48920493132532,7.3125534981026,8.35913488675796,3.91538461538462,449.810606060606,38,8448,0,1,0,0,9 +"21907",2017,55131,"WI","55","131",134961,0.963596890953683,6972,0.152236572046739,8.84965740663991,9.69812252257356,10.5646537497409,2.76923076923077,239.255761864159,188,78577,0,1,0,0,9 +"21908",2017,55133,"WI","55","133",401099,0.936140454102354,22158,0.155315769922139,10.0059538840806,10.7949936675877,11.6671732829366,2.87692307692308,247.263061142588,573,231737,0,1,0,0,9 +"21909",2017,55135,"WI","55","135",51108,0.978007356969555,2649,0.163046881114503,7.88193748927207,8.66664714458457,9.56759514777992,3.15384615384615,379.694875829514,111,29234,0,1,0,0,9 +"21910",2017,55137,"WI","55","137",24215,0.959529217427215,1133,0.17493289283502,7.03262426102801,7.81439963380449,8.72062371142043,3.93076923076923,411.40170437849,56,13612,0,1,0,0,9 +"21911",2017,55139,"WI","55","139",170568,0.931827775432672,14936,0.13394657849069,9.61152968522156,9.91630505624674,10.8148662400493,2.96923076923077,297.064305684995,306,103008,0,1,0,0,9 +"21912",2017,55141,"WI","55","141",73053,0.954868383228615,3911,0.156899785087539,8.27154837475551,8.98557049891739,9.92988602639066,3.70769230769231,369.353388574345,152,41153,0,1,0,0,9 +"21913",2017,54001,"WV","54","001",16530,0.975620084694495,1279,0.141802782819117,7.15383380157884,7.51752085060303,8.46821300919452,5.82307692307692,597.524541186513,56,9372,1,1,1,0,9 +"21914",2017,54003,"WV","54","003",115234,0.89779058264054,6382,0.130916222642623,8.76123680683819,9.63016850292011,10.45823436336,3.64615384615385,499.64414878938,344,68849,1,1,1,0,9 +"21915",2017,54005,"WV","54","005",22368,0.98734799713877,1096,0.152941702432046,6.99942246750796,7.99328232810159,8.76608245914886,6.42307692307692,818.841144817905,105,12823,1,1,1,0,9 +"21916",2017,54007,"WV","54","007",14218,0.982557321704881,725,0.149669433112955,6.58617165485467,7.37775890822787,8.26975694753298,7.48461538461538,563.415550269187,45,7987,1,1,1,0,9 +"21917",2017,54009,"WV","54","009",22406,0.974917432830492,1443,0.159332321699545,7.27447955877387,7.79193595693806,8.74512525946224,6.10769230769231,514.159152032906,65,12642,1,1,1,0,9 +"21918",2017,54011,"WV","54","011",94511,0.92649532858609,9539,0.124810868576145,9.16314393714521,9.31623074723361,10.2336182957527,4.56153846153846,867.577442986482,482,55557,1,1,1,0,9 +"21919",2017,54013,"WV","54","013",7321,0.989892091244366,315,0.165004780767655,5.75257263882563,6.72503364216684,7.61579107203583,10.7384615384615,464.774951076321,19,4088,1,1,1,0,9 +"21920",2017,54015,"WV","54","015",8704,0.990464154411765,434,0.155101102941176,6.0730445341004,6.92755790627832,7.78862606562503,8.64615384615385,661.840744570838,32,4835,1,1,1,0,9 +"21921",2017,54017,"WV","54","017",8530,0.968698710433763,572,0.151699882766706,6.3491389913798,6.95177216439891,7.72090525193678,4.27692307692308,348.364621637314,18,5167,1,1,1,0,9 +"21922",2017,54019,"WV","54","019",43620,0.945873452544704,2287,0.151811095827602,7.73499619402278,8.59081533128685,9.38857023586688,6.42307692307692,804.040404040404,199,24750,1,1,1,0,9 +"21923",2017,54021,"WV","54","021",8060,0.867866004962779,884,0.11712158808933,6.78445706263764,7.00124562206948,7.51261754467451,7.16153846153846,445.391169635941,23,5164,1,1,1,0,9 +"21924",2017,54023,"WV","54","023",11625,0.982967741935484,584,0.146666666666667,6.36990098282823,7.14755927118945,8.06085575293432,5.61538461538461,329.153605015674,21,6380,1,1,1,0,9 +"21925",2017,54025,"WV","54","025",35206,0.954922456399477,1800,0.153240924842356,7.49554194388426,8.30943074214033,9.20361782621536,4.87692307692308,623.321339887498,123,19733,1,1,1,0,9 +"21926",2017,54027,"WV","54","027",23398,0.97875886827934,1175,0.156466364646551,7.06902342657826,7.87625888230323,8.78416222227048,3.93076923076923,561.503331586434,75,13357,1,1,1,0,9 +"21927",2017,54029,"WV","54","029",29411,0.961442997517935,1427,0.160824181428717,7.26332961747684,8.13914867888407,9.03622505172933,6.05384615384615,651.68001913189,109,16726,1,1,1,0,9 +"21928",2017,54031,"WV","54","031",13859,0.948408976116603,667,0.150371599682517,6.50279004591562,7.39079852173568,8.25166392360559,4.89230769230769,477.173071962858,37,7754,1,1,1,0,9 +"21929",2017,54033,"WV","54","033",67951,0.968094656443614,3676,0.144368736295272,8.20958048347558,9.03670101556506,9.88562903423482,4.82307692307692,596.732059621984,233,39046,1,1,1,0,9 +"21930",2017,54035,"WV","54","035",28919,0.984854248072202,1532,0.15017808361285,7.33432935030054,8.11192806331074,9.0142038261485,5.71538461538462,548.91436935838,90,16396,1,1,1,0,9 +"21931",2017,54037,"WV","54","037",56586,0.904711412716926,3086,0.138921287951083,8.03463103292311,8.89740886527095,9.73631073306863,3.09230769230769,429.403639421056,143,33302,1,1,1,0,9 +"21932",2017,54039,"WV","54","039",183525,0.900362348453889,10178,0.151069336602643,9.22798380714878,10.008838068144,10.8981642358054,5.08461538461538,707.371204608774,749,105885,1,1,1,0,9 +"21933",2017,54041,"WV","54","041",16166,0.981689966596561,816,0.144933811703575,6.70441435496411,7.58629630715272,8.4277060249147,6.63076923076923,672.086720867209,62,9225,1,1,1,0,9 +"21934",2017,54043,"WV","54","043",20895,0.990236898779612,1005,0.148312993539124,6.91274282049318,7.87321705486274,8.69634305704456,6.86153846153846,800.404414862246,95,11869,1,1,1,0,9 +"21935",2017,54045,"WV","54","045",33030,0.973872237359976,1720,0.153769300635786,7.4500795698075,8.37170488466763,9.16041456320646,7.46153846153846,954.929429665775,182,19059,1,1,1,0,9 +"21936",2017,54047,"WV","54","047",18517,0.908354485067776,839,0.171464060052924,6.73221070646721,7.67786350067821,8.58876938990546,8.94615384615385,1018.75654574883,107,10503,1,1,1,0,9 +"21937",2017,54049,"WV","54","049",56430,0.951763246500089,4638,0.13444976076555,8.44203851781548,8.80807015476454,9.69959500581403,5.28461538461538,485.466724021385,158,32546,1,1,1,0,9 +"21938",2017,54051,"WV","54","051",31260,0.983173384516955,1637,0.158925143953935,7.40062057737113,8.17413934342947,9.08455036591788,5.98461538461538,466.895426674917,83,17777,1,1,1,0,9 +"21939",2017,54053,"WV","54","053",26841,0.982750270109161,1361,0.157035877947916,7.21597500265147,8.09681747057232,8.99056613813158,6.72307692307692,636.524706345561,97,15239,1,1,1,0,9 +"21940",2017,54055,"WV","54","055",59903,0.92320918818757,3556,0.141144850842195,8.1763915966338,8.8427489162961,9.75794141390479,5.82307692307692,740.116733858836,246,33238,1,1,1,0,9 +"21941",2017,54057,"WV","54","057",27227,0.959305101553605,1501,0.139934623719102,7.31388683163346,7.99361999482774,8.93300459157855,5.28461538461538,508.284375206284,77,15149,1,1,1,0,9 +"21942",2017,54059,"WV","54","059",24151,0.973541468262184,1137,0.154113701296013,7.03614849375054,8.03495502450216,8.87164566750187,8.63076923076923,1026.34034307041,143,13933,1,1,1,0,9 +"21943",2017,54061,"WV","54","061",106086,0.913419301321569,16427,0.106630469618988,9.7066816015412,9.44311737225863,10.4127719892833,3.72307692307692,259.88651622125,180,69261,1,1,1,0,9 +"21944",2017,54063,"WV","54","063",13397,0.981637680077629,594,0.145554974994402,6.38687931936265,7.27517231945277,8.17779668327778,4.4,584.632516703786,42,7184,1,1,1,0,9 +"21945",2017,54065,"WV","54","065",17740,0.978861330326945,923,0.165952649379932,6.82762923450285,7.56320059235807,8.52833093582669,3.94615384615385,742.500742500742,75,10101,1,1,1,0,9 +"21946",2017,54067,"WV","54","067",25126,0.984876223831887,1221,0.151715354612752,7.1074254741107,7.96901178110648,8.8794724020748,7.15384615384615,646.628295317274,91,14073,1,1,1,0,9 +"21947",2017,54069,"WV","54","069",42069,0.946540207753928,2878,0.152463809455894,7.96485088744731,8.42989086301344,9.38806805975991,4.71538461538462,557.856478742287,132,23662,1,1,1,0,9 +"21948",2017,54071,"WV","54","071",6978,0.96933218687303,316,0.173115505875609,5.75574221358691,6.54821910276237,7.50384074669895,3.73076923076923,478.723404255319,18,3760,1,1,1,0,9 +"21949",2017,54073,"WV","54","073",7460,0.975335120643432,455,0.142895442359249,6.12029741895095,6.89264164117209,7.57865685059476,7.06153846153846,397.263297285367,18,4531,1,1,1,0,9 +"21950",2017,54075,"WV","54","075",8494,0.980456793030374,382,0.169060513303508,5.94542060860658,6.80239476332431,7.71824095195932,5.94615384615385,543.591887936442,26,4783,1,1,1,0,9 +"21951",2017,54077,"WV","54","077",33846,0.980174909885954,1774,0.142912013236424,7.48099216286952,8.37470754311948,9.15715054346206,4.96923076923077,463.424357185569,93,20068,1,1,1,0,9 +"21952",2017,54079,"WV","54","079",56704,0.974181715575621,2744,0.140960073363431,7.91717198884578,8.93590352627442,9.70771594801777,4.71538461538462,459.418070444104,150,32650,1,1,1,0,9 +"21953",2017,54081,"WV","54","081",75106,0.899848214523474,3968,0.140534710941869,8.28601746840476,9.18440698994968,9.93914422974416,5.37692307692308,758.955676988464,325,42822,1,1,1,0,9 +"21954",2017,54083,"WV","54","083",28896,0.974910022148394,1699,0.144622093023256,7.43779512167193,8.11072758297449,8.94180711836316,5.39230769230769,550.148116800677,91,16541,1,1,1,0,9 +"21955",2017,54085,"WV","54","085",9856,0.989752435064935,475,0.16010551948052,6.16331480403464,6.99393297522319,7.9043348420851,5.5,617.059891107078,34,5510,1,1,1,0,9 +"21956",2017,54087,"WV","54","087",14020,0.98737517831669,616,0.160342368045649,6.42324696353352,7.41938058291869,8.26281693767093,8.68461538461538,793.650793650794,62,7812,1,1,1,0,9 +"21957",2017,54089,"WV","54","089",12897,0.942467240443514,569,0.161975653252694,6.34388043412633,7.38585107812521,8.34117174717076,5.90769230769231,898.846257043198,67,7454,1,1,1,0,9 +"21958",2017,54091,"WV","54","091",16907,0.977287514047436,813,0.1449695392441,6.70073110954781,7.6586995582683,8.46463594067756,4.92307692307692,535.894843276036,53,9890,1,1,1,0,9 +"21959",2017,54093,"WV","54","093",6994,0.98541607091793,343,0.160566199599657,5.83773044716594,6.63856778916652,7.57916796739608,5.16923076923077,442.017680707228,17,3846,1,1,1,0,9 +"21960",2017,54095,"WV","54","095",8803,0.986368283539702,425,0.162217425877542,6.05208916892442,6.87316383421252,7.80506704425849,7.66923076923077,505.765729314182,25,4943,1,1,1,0,9 +"21961",2017,54097,"WV","54","097",24589,0.978974338118671,1845,0.136565130749522,7.52023455647463,7.90617884039481,8.84159284680318,6.13846153846154,517.115804806992,71,13730,1,1,1,0,9 +"21962",2017,54099,"WV","54","099",40301,0.986848961564229,2120,0.144909555594154,7.65917136766606,8.49023300983345,9.3581567466704,5.82307692307692,751.21908360058,171,22763,1,1,1,0,9 +"21963",2017,54101,"WV","54","101",8349,0.987902742843454,399,0.161456461851719,5.98896141688986,6.82654522355659,7.74500280351584,6.30769230769231,774.360077436008,36,4649,1,1,1,0,9 +"21964",2017,54103,"WV","54","103",15444,0.987762237762238,852,0.15009065009065,6.74758652682932,7.40488757561612,8.35631996582815,7.53076923076923,597.399554878763,51,8537,1,1,1,0,9 +"21965",2017,54107,"WV","54","107",85163,0.973086903937156,4578,0.146201989126733,8.42901750051251,9.2213792190914,10.1140725746029,5.5,568.89621766464,276,48515,1,1,1,0,9 +"21966",2017,54109,"WV","54","109",21275,0.98641598119859,1045,0.160094007050529,6.95177216439891,7.88908440703551,8.72371943690701,7.06923076923077,905.87169562711,110,12143,1,1,1,0,9 +"21967",2017,56001,"WY","56","001",38600,0.924067357512953,8581,0.0999481865284974,9.05730573580712,8.26539293085222,9.40112600718227,2.96923076923077,215.4243860405,55,25531,0,1,0,0,9 +"21968",2017,56003,"WY","56","003",11888,0.968034993270525,587,0.139720726783311,6.3750248198281,7.15851399732932,8.00936307663004,4.38461538461539,500.969618616678,31,6188,0,1,0,0,9 +"21969",2017,56005,"WY","56","005",46445,0.963763591344601,2551,0.140187318333513,7.84424071814181,8.76701762131178,9.50873980776916,5.02307692307692,349.363659049588,98,28051,0,1,0,0,9 +"21970",2017,56007,"WY","56","007",15261,0.951379332940174,816,0.143371993971562,6.70441435496411,7.54908271081229,8.2845042272585,4.13846153846154,493.218249075216,44,8921,0,1,0,0,9 +"21971",2017,56009,"WY","56","009",13756,0.969104390811282,661,0.145318406513521,6.49375383985169,7.41397029019044,8.24643378616036,4.57692307692308,535.645963525061,42,7841,0,1,0,0,9 +"21972",2017,56011,"WY","56","011",7393,0.973758961179494,318,0.172189909373732,5.76205138278018,6.62804137617953,7.58426481838906,3.66923076923077,400,16,4000,0,1,0,0,9 +"21973",2017,56013,"WY","56","013",39865,0.750432710397592,2145,0.142556126928383,7.67089483136212,8.40110871239544,9.28051920659743,5.7,669.374942295264,145,21662,0,1,0,0,9 +"21974",2017,56015,"WY","56","015",13384,0.963015540944411,814,0.146219366407651,6.70196036600254,7.30720231476474,8.10711747075039,2.96153846153846,270.745904968187,20,7387,0,1,0,0,9 +"21975",2017,56017,"WY","56","017",4693,0.966759002770083,178,0.167483486043043,5.18178355029209,6.17586727010576,7.08924315502751,4.03076923076923,745.959386655616,18,2413,0,1,0,0,9 +"21976",2017,56019,"WY","56","019",8457,0.963816956367506,358,0.159985810571125,5.8805329864007,6.85435450225502,7.72577144158795,4.33076923076923,468.227424749164,21,4485,0,1,0,0,9 +"21977",2017,56021,"WY","56","021",98599,0.932342113003174,6887,0.129443503483808,8.8373908555447,9.3895738321709,10.2405667477778,3.76923076923077,352.495982582551,204,57873,0,1,0,0,9 +"21978",2017,56023,"WY","56","023",19334,0.975069825178442,861,0.151184441915796,6.75809450442773,7.80302664363222,8.54985397365579,3.79230769230769,353.728489483748,37,10460,0,1,0,0,9 +"21979",2017,56025,"WY","56","025",79622,0.955112908492628,4506,0.137549923388008,8.41316512099219,9.24348497056848,10.0423795514027,5.38461538461539,394.83512965532,185,46855,0,1,0,0,9 +"21980",2017,56029,"WY","56","029",29272,0.969629680240503,1543,0.157693358841213,7.34148385236316,8.0684029585697,8.99019232964177,4.43846153846154,348.410377651963,56,16073,0,1,0,0,9 +"21981",2017,56031,"WY","56","031",8557,0.969732382844455,375,0.159051069299988,5.92692602597041,6.74523634948436,7.70255611326858,3.81538461538462,241.545893719807,11,4554,0,1,0,0,9 +"21982",2017,56033,"WY","56","033",30222,0.962808550062868,1656,0.153993779366025,7.4121603349452,8.16166045205628,9.03812754933052,4.02307692307692,337.377922462267,57,16895,0,1,0,0,9 +"21983",2017,56035,"WY","56","035",9778,0.966659848639804,397,0.145939865003068,5.98393628068719,7.19218205871325,7.85554467791566,4.63846153846154,304.878048780488,17,5576,0,1,0,0,9 +"21984",2017,56037,"WY","56","037",43663,0.953278519570346,2555,0.133682981013673,7.8458075026378,8.72907355045174,9.42690231192484,4.66923076923077,408.824436902191,106,25928,0,1,0,0,9 +"21985",2017,56039,"WY","56","039",23383,0.965102852499679,1134,0.133387503742035,7.0335064842877,8.22737550683403,8.89192414015454,2.96923076923077,144.461225293847,22,15229,0,1,0,0,9 +"21986",2017,56041,"WY","56","041",20449,0.964888258594552,1053,0.142500855787569,6.95939851213398,7.8991534833431,8.63710728808157,4.69230769230769,406.50406504065,46,11316,0,1,0,0,9 +"21987",2017,56043,"WY","56","043",8013,0.962560838637215,345,0.147011106951204,5.84354441703136,6.87729607149743,7.63530388625941,4.14615384615385,373.744452230787,16,4281,0,1,0,0,9 diff --git a/vignettes/.gitignore b/vignettes/.gitignore deleted file mode 100644 index 097b241..0000000 --- a/vignettes/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.html -*.R diff --git a/vignettes/output/sdid_weights_paper_html.html b/vignettes/output/sdid_weights_paper_html.html new file mode 100644 index 0000000..71dcc55 --- /dev/null +++ b/vignettes/output/sdid_weights_paper_html.html @@ -0,0 +1,2758 @@ + + + + +
+ + + + + + + + + + +ABSTRACT
+Keywords: Synthetic Difference-in-Differences
+JEL Codes:
Empirical methods for evaluating the causal effects of policies +without random assignment have played a critical role in economics for +the last several decades. In particular, in the context of panel data, +Difference-in-Difference (DID) has become the workhorse model in cases +where multiple units are treated, and the Synthetic Control Method (SCM) +dominates in cases with one treated unit. Arkhangelsky et al. (2021) +combined elements of both methods to create the Synthetic +Difference-in-Difference (SDID) approach. The authors borrow the +re-weighting of control units based on pre-treatment trends and +covariates from SCM in such a way to allow for a weaker parallel trend +assumption, and allow level-shifts between treatment and control groups, +like DID. This method also includes time-weights, allowing the method to +find the pre-exposure periods that best reflect the post-exposure +periods characteristics.
+In this paper we identify a key limitation of SDID that emerges when +a procedure designed for a single treated unit is implemented in +contexts with multiple treated units: namely, the inability to +incorporate weights for treated units. In practice, the current +implementation of SDID assumes that treated units are all equally +weighted, which is unrealistic in many empirical panel-data settings. +This is particularly an issue when the researcher is studying a setting +where heterogeneous treatment effects are correlated with the weighting +variable. In the simplest case, if a researcher wanted to weight by +population size, and the treatment under investigation had a larger +effect in smaller states, then the recovered average treatment effect +(ATE) would be larger than the “true” weighted ATE.
+We propose two potential solutions: 1. Construct a weighted-average +treated unit and run a single SDID. 2. Run a SDID for each treated unit +and take a weighted average of the estimated effects.
+Synthetic difference-in-differences was created by Arkhangelsky et +al. (2021), combining elements of synthetic control methods and +difference-in-differences to take advantage of benefits of both +estimators while increasing precision. From SCM, re-weighting and +matching of pre-exposure trends in SDID allows weaker reliance on +parallel trend assumptions. From DiD, SDID does not require that treated +and control groups have the same post-treatment trends, instead allowing +for level differences.
+Following closely the description in Arkhangelsky et al. (2021), take +the setting with …
+SDID estimates the following:
+\[ +(\hat{\tau}^{sdid}, \hat{\mu}, \hat{\alpha}, \hat{\beta}) = +\underset{\tau , \mu, \alpha, \beta}{\text{argmin}} \left \{ +\sum_{i=1}^N \sum_{t=1}^T +(Y_{it} - \mu - \alpha_i - \beta_t - W_{it}\tau)^2\ +\hat{\omega}_i^{sdid}\ \hat{\lambda}_t^{sdid} \right \} +\]
+where \(\alpha_i\) are unit fixed +effects, \(\hat{\omega}_i\) are unit +weights, and \(\hat{\lambda}_t\) are +time weights.
+Unit weights are calculated as follows:
+\[ +( \hat{\omega}_0, \hat{\omega}^{sdid} ) = +\underset{\omega_0 \in \mathbb{R}, \omega \in \Omega } {\text{argmin}} +\sum_{t=1}^{T_{pre}} \left (\omega_0 + \sum_{i=1}^{N_{co}} \omega_i +Y_{it} + \frac{1}{N_{tr}} \sum_{i=N_{co}+1}^{N} Y_{it} \right )^2 ++ \zeta^2 T_{pre} || \omega ||_2^2 +\]
+Time weights are calculated similarly:
+\[ +( \hat{\lambda}_0, \hat{\lambda}^{sdid} ) = +\underset{\lambda_0 \in \mathbb{R}, \lambda \in \Lambda } +{\text{argmin}} +\sum_{i=1}^{N_{co}} \left (\lambda_0 + \sum_{t=1}^{T_{pre}} \lambda_t +Y_{it} + \frac{1}{T_{post}} \sum_{t=T_{pre}+1}^{T} Y_{it} \right )^2 ++ \zeta^2 N_{co} || \lambda ||^2 +\]
+The authors show that the estimator is asymptotically normal and +propose inference using block bootstrap, jackknife, or permutation +approaches.
+This section is included so the HTML file produces a working SDID +estimate and plots before you connect to project-specific data.
+data("california_prop99")
+
+setup <- panel.matrices(california_prop99)
+tau_sdid <- synthdid_estimate(setup$Y, setup$N0, setup$T0)
+
+# Common practice in examples: placebo standard errors
+se_placebo <- sqrt(vcov(tau_sdid, method = "placebo"))
+
+c(
+ point_estimate = as.numeric(tau_sdid),
+ se_placebo = se_placebo,
+ ci_lo = as.numeric(tau_sdid) - 1.96 * se_placebo,
+ ci_hi = as.numeric(tau_sdid) + 1.96 * se_placebo
+)
+## point_estimate se_placebo ci_lo ci_hi
+## -15.603828 8.814509 -32.880265 1.672609
+plot(tau_sdid, se.method = "placebo")
++SDID estimate plot (Prop 99 example). +
+synthdid_units_plot(tau_sdid, se.method = "placebo")
++Unit weights visualization (Prop 99 example). +
+There are two places in SDID where the lack of treated-unit weights +becomes problematic:
+Control weights are chosen to match the +average treated unit, but that treated “average” is a simple +average across treated units. If a researcher wants to weight treated +units (e.g., by population), those weights are ignored, which matters +when treatment heterogeneity is correlated with the weighting +variable.
In the final effect estimation, SDID effectively treats treated +units as equally weighted (i.e., treated units are not re-weighted by +user-specified weights). This departs from the approach often used in +DID, where analysts commonly weight observations by a relevant +characteristic.
We propose two solutions:
+These are minimal utilities to support the simulation section and
+later replication. They assume a long panel with columns:
+unit, time, y,
+treated_unit (0/1), post (0/1), and optionally
+pop (weights).
did_twfe <- function(df,
+ y = "y",
+ treated_unit = "treated_unit",
+ post = "post",
+ unit = "unit",
+ time = "time",
+ controls = NULL, # NULL, character vector, or one-sided formula
+ w = NULL, # NULL or weight column name
+ cluster = "unit", # NULL, or column name (or a ~formula string)
+ return_model = FALSE) {
+
+ if (!requireNamespace("fixest", quietly = TRUE)) {
+ stop("Package `fixest` is required. Install via install.packages('fixest').")
+ }
+
+ # Controls -> RHS string
+ controls_rhs <- ""
+ if (!is.null(controls)) {
+ if (inherits(controls, "formula")) {
+ # e.g., controls = ~ x1 + x2 + i(region)
+ # Convert formula to text and drop leading "~"
+ controls_rhs <- paste0(" + ", gsub("^\\s*~\\s*", "", deparse(controls)))
+ } else if (is.character(controls)) {
+ # e.g., controls = c("x1","x2")
+ controls_rhs <- paste0(" + ", paste(controls, collapse = " + "))
+ } else {
+ stop("`controls` must be NULL, a character vector of column names, or a one-sided formula like ~ x1 + x2.")
+ }
+ }
+
+ # Main formula: y ~ treated*post + controls | unit + time
+ fml_txt <- paste0(
+ y, " ~ ", treated_unit, " * ", post,
+ controls_rhs,
+ " | ", unit, " + ", time
+ )
+ fml <- stats::as.formula(fml_txt)
+
+ # Weights vector (optional)
+ weights_vec <- if (is.null(w)) NULL else df[[w]]
+
+ # Cluster handling
+ cluster_fml <- NULL
+ if (!is.null(cluster)) {
+ if (inherits(cluster, "formula")) {
+ cluster_fml <- cluster
+ } else if (is.character(cluster)) {
+ cluster_fml <- stats::as.formula(paste0("~", cluster))
+ } else {
+ stop("`cluster` must be NULL, a column name (character), or a formula like ~unit.")
+ }
+ }
+
+ m <- fixest::feols(
+ fml,
+ data = df,
+ weights = weights_vec,
+ cluster = cluster_fml
+ )
+
+ # Extract interaction coefficient
+ cn <- names(stats::coef(m))
+ target <- paste0(treated_unit, ":", post)
+ if (!target %in% cn) {
+ target2 <- paste0(post, ":", treated_unit)
+ if (target2 %in% cn) {
+ target <- target2
+ } else {
+ stop("Could not find interaction coefficient. Coef names: ", paste(cn, collapse = ", "))
+ }
+ }
+ tau_hat <- unname(stats::coef(m)[[target]])
+
+ if (return_model) list(tau_hat = tau_hat, model = m, formula = fml) else tau_hat
+}
+
+
+run_sdid_long <- function(df,
+ treat_start_time,
+ controls = NULL, # NULL, character vector, or one-sided formula
+ unit = "unit",
+ time = "time",
+ y = "y",
+ treated_unit = "treated_unit",
+ use_twfe_residualization = TRUE, # controls + unit/time FE
+ return_setup = FALSE) {
+
+ # Defensive checks
+ if (!requireNamespace("synthdid", quietly = TRUE)) {
+ stop("Package `synthdid` is required.")
+ }
+
+ df2 <- df
+
+ # Coerce and standardize time
+ df2 <- df2 %>%
+ dplyr::mutate(
+ .unit = as.factor(.data[[unit]]),
+ .time_raw = .data[[time]],
+ .time = if (inherits(.data[[time]], "Date")) as.integer(.data[[time]])
+ else suppressWarnings(as.numeric(as.character(.data[[time]])))
+ )
+
+ if (anyNA(df2$.time)) stop("Time coercion produced NA values. Ensure `time` is numeric/character-numeric or Date.")
+
+ # Treatment indicator
+ df2 <- df2 %>%
+ dplyr::mutate(.W = as.integer((.data[[treated_unit]] == 1) & (.time >= treat_start_time)))
+
+ # Optional covariate adjustment: residualize y on controls (and optionally TWFE)
+ if (!is.null(controls)) {
+ if (!requireNamespace("fixest", quietly = TRUE)) {
+ stop("To use `controls`, please install `fixest` (install.packages('fixest')).")
+ }
+
+ # Build RHS for controls
+ controls_rhs <- ""
+ if (inherits(controls, "formula")) {
+ controls_rhs <- gsub("^\\s*~\\s*", "", deparse(controls))
+ } else if (is.character(controls)) {
+ controls_rhs <- paste(controls, collapse = " + ")
+ } else {
+ stop("`controls` must be NULL, a character vector of column names, or a one-sided formula like ~ x1 + x2.")
+ }
+
+ # Residualization regression
+ # Default: y ~ controls | unit + time (TWFE residualization)
+ if (use_twfe_residualization) {
+ fml_txt <- paste0(y, " ~ ", controls_rhs, " | .unit + .time")
+ } else {
+ # Alternative: y ~ controls (no FE) — usually not recommended for panel SDID
+ fml_txt <- paste0(y, " ~ ", controls_rhs)
+ }
+
+ # Run regression
+ m_resid <- fixest::feols(stats::as.formula(fml_txt), data = df2)
+
+ # Drop unmatched observations
+ df2 <- df2[fixest::obs(m_resid), , drop = FALSE]
+
+ # Replace outcome with residualized outcome
+ df2[[y]] <- as.numeric(stats::resid(m_resid))
+
+ }
+
+ # Prepare panel for synthdid
+ dfp <- df2 %>%
+ dplyr::arrange(.unit, .time) %>%
+ dplyr::select(.unit, .time, !!y, .W) %>%
+ dplyr::rename(y = !!y)
+
+ dfp <- as.data.frame(dfp)
+
+ # Balance check (panel.matrices requires balanced panel)
+ # This check is cheap and gives a clearer error than panel.matrices.
+ bad <- dfp %>%
+ dplyr::count(.unit, .time) %>%
+ dplyr::filter(n != 1)
+ if (nrow(bad) > 0) {
+ stop("Input must be a balanced panel with unique (.unit, .time) rows. Found duplicates/missingness.")
+ }
+
+ setup <- synthdid::panel.matrices(dfp)
+ est <- synthdid::synthdid_estimate(setup$Y, setup$N0, setup$T0)
+
+ if (return_setup) {
+ return(list(estimate = est, setup = setup))
+ } else {
+ return(est)
+ }
+}
+
+make_weighted_treated_unit <- function(df,
+ treat_start_time,
+ weight_col = "pop",
+ controls = NULL,
+ unit = "unit",
+ time = "time",
+ y = "y",
+ treated_unit = "treated_unit") {
+
+ baseline_time <- treat_start_time - 1
+
+ # synthetic id
+ max_id <- suppressWarnings(max(as.integer(df[[unit]]), na.rm = TRUE))
+ if (!is.finite(max_id)) stop("`unit` must be coercible to integer for synth_id construction.")
+ synth_id <- max_id + 1L
+
+ # Parse controls into character vector (if provided)
+ control_vars <- character(0)
+ if (!is.null(controls)) {
+ if (inherits(controls, "formula")) {
+ # keep it simple: assume formula is like ~ x1 + x2 (no i(), no interactions)
+ # If you need i() etc, you should not aggregate those directly as columns.
+ tt <- attr(stats::terms(controls), "term.labels")
+ control_vars <- tt
+ } else if (is.character(controls)) {
+ control_vars <- controls
+ } else {
+ stop("`controls` must be NULL, character vector, or one-sided formula like ~ x1 + x2.")
+ }
+ }
+
+ # Ensure baseline weights are unique per unit (avoid duplicating rows)
+ w0 <- df %>%
+ dplyr::filter(.data[[time]] == baseline_time) %>%
+ dplyr::group_by(.data[[unit]]) %>%
+ dplyr::summarise(w0 = mean(.data[[weight_col]], na.rm = TRUE), .groups = "drop")
+
+ df2 <- df %>% dplyr::left_join(w0, by = unit)
+
+ treated <- df2 %>% dplyr::filter(.data[[treated_unit]] == 1)
+ controls_df <- df2 %>% dplyr::filter(.data[[treated_unit]] == 0)
+
+ # Weighted means per time for y and (optionally) controls
+ treated_super <- treated %>%
+ dplyr::group_by(.data[[time]]) %>%
+ dplyr::summarise(
+ # outcome
+ !!y := sum(.data[[y]] * w0, na.rm = TRUE) / sum(w0, na.rm = TRUE),
+
+ # controls (if any)
+ dplyr::across(
+ dplyr::all_of(control_vars),
+ ~ sum(.x * w0, na.rm = TRUE) / sum(w0, na.rm = TRUE),
+ .names = "{.col}"
+ ),
+
+ # indicators
+ !!treated_unit := 1L,
+ post = as.integer(dplyr::first(.data[[time]]) >= treat_start_time),
+ .groups = "drop"
+ ) %>%
+ dplyr::mutate(!!unit := synth_id)
+
+ # Keep consistent columns for bind_rows
+ keep_cols <- c(unit, time, y, control_vars, treated_unit, "post")
+ out <- dplyr::bind_rows(
+ controls_df %>% dplyr::select(dplyr::all_of(keep_cols)),
+ treated_super %>% dplyr::select(dplyr::all_of(keep_cols))
+ )
+
+ out
+}
+
+
+run_sdid_by_treated_and_average <- function(df,
+ treat_start_time,
+ weight_col = "pop",
+ controls = NULL, # NULL, character vector, or one-sided formula
+ unit = "unit",
+ time = "time",
+ y = "y",
+ treated_unit = "treated_unit",
+ use_twfe_residualization = TRUE) {
+
+ # Robust baseline time (last pre period that exists)
+ baseline_time <- max(df[[time]][df[[time]] < treat_start_time], na.rm = TRUE)
+ if (!is.finite(baseline_time)) stop("No pre-treatment period found (time < treat_start_time).")
+
+ treated_ids <- df %>%
+ dplyr::filter(.data[[treated_unit]] == 1) %>%
+ dplyr::distinct(.data[[unit]]) %>%
+ dplyr::pull(.data[[unit]])
+
+ controls_df <- df %>% dplyr::filter(.data[[treated_unit]] == 0)
+
+ # Baseline weights for treated units (force one row per unit)
+ weights <- df %>%
+ dplyr::filter(.data[[treated_unit]] == 1, .data[[time]] == baseline_time) %>%
+ dplyr::group_by(.data[[unit]]) %>%
+ dplyr::summarise(w0 = mean(.data[[weight_col]], na.rm = TRUE), .groups = "drop")
+
+ est <- purrr::map_dfr(treated_ids, function(id) {
+
+ dfi <- dplyr::bind_rows(
+ controls_df,
+ df %>% dplyr::filter(.data[[unit]] == id)
+ )
+
+ tau <- run_sdid_long(
+ dfi,
+ treat_start_time = treat_start_time,
+ controls = controls,
+ unit = unit,
+ time = time,
+ y = y,
+ treated_unit = treated_unit,
+ use_twfe_residualization = use_twfe_residualization,
+ return_setup = FALSE
+ )
+
+ tibble::tibble(!!unit := id, tau = as.numeric(tau))
+ }) %>%
+ dplyr::left_join(weights, by = unit)
+
+ tau_wavg <- sum(est$tau * est$w0, na.rm = TRUE) / sum(est$w0, na.rm = TRUE)
+
+ list(unit_level = est, tau_weighted_average = tau_wavg)
+}
+We begin with the following setup:
+Additive:
+\[ +Y_{it} = \alpha_i + \beta_t + W_{it}\tau + \epsilon_{it} +\]
+Interacted:
+\[ +Y_{it} = \alpha_i + \beta_t + \alpha_i\beta_t + W_{it}\tau + +\epsilon_{it} +\]
+We consider homogeneous treatment (tau=2 for all treated units) and +heterogeneous treatment where tau_i is a function of population.
+simulate_panel <- function(
+ N = 100, T = 20, N_tr = 20, T0 = 10,
+ tau0 = 2,
+ fe_type = c("additive", "interactive"),
+ tau_type = c("homogeneous", "heterogeneous"),
+ sigma = 1,
+ seed = NULL
+) {
+ fe_type <- match.arg(fe_type)
+ tau_type <- match.arg(tau_type)
+ if (!is.null(seed)) set.seed(seed)
+
+ units <- 1:N
+ times <- 1:T
+ treated_units <- (N - N_tr + 1):N
+
+ alpha <- rnorm(N, 0, 1)
+ beta <- rnorm(T, 0, 1)
+
+ pop0 <- exp(rnorm(N, log(1e6), 0.6))
+ trend <- rnorm(N, 0, 0.02)
+
+ df <- tidyr::expand_grid(unit = units, time = times) %>%
+ mutate(
+ treated_unit = as.integer(unit %in% treated_units),
+ post = as.integer(time >= T0),
+ W = treated_unit * post,
+ pop = pop0[unit] * exp(trend[unit] * (time - 1))
+ )
+
+ tau_i <- rep(tau0, N)
+ if (tau_type == "heterogeneous") {
+ # illustrative: larger effects in smaller baseline populations
+ tau_i <- tau0 * (median(pop0) / pop0)
+ }
+
+ signal <- alpha[df$unit] + beta[df$time]
+ if (fe_type == "interactive") signal <- signal + alpha[df$unit] * beta[df$time]
+
+ df <- df %>%
+ mutate(
+ tau_it = tau_i[unit],
+ y = signal + W * tau_it + rnorm(n(), 0, sigma)
+ )
+
+ baseline_time <- T0 - 1
+ treated_baseline <- df %>%
+ filter(treated_unit == 1, time == baseline_time) %>%
+ select(unit, pop, tau_it)
+
+ true_tau_weighted <- with(treated_baseline, sum(tau_it * pop) / sum(pop))
+
+ list(df = df, T0 = T0, true_tau_weighted = true_tau_weighted)
+}
+
+
+estimate_methods <- function(sim) {
+
+ df <- sim$df
+ T0 <- sim$T0
+
+ # Basic SID
+ tau_sdid <- run_sdid_long(df, T0)
+
+ # Solution 1: SDID on weighted-average treated unit
+ df_super <- make_weighted_treated_unit(df, T0, weight_col = "pop")
+ tau_sdid_super <- run_sdid_long(df_super, T0)
+
+ # Solution 2: weighted average of unit-level SDIDs
+ sol2 <- run_sdid_by_treated_and_average(df, T0, weight_col = "pop")
+
+ # DID
+ tau_did_unw <- did_twfe(df)
+ tau_did_w <- did_twfe(df, w = "pop")
+
+ tibble(
+ tau_sdid = as.numeric(tau_sdid),
+ tau_sdid_super = as.numeric(tau_sdid_super),
+ tau_sdid_unit_wavg = as.numeric(sol2$tau_weighted_average),
+ tau_did_unw = as.numeric(tau_did_unw),
+ tau_did_w = as.numeric(tau_did_w)
+ )
+}
+
+B <- 100
+grid <- tidyr::expand_grid(
+ fe_type = c("additive", "interactive"),
+ tau_type = c("homogeneous", "heterogeneous")
+)
+
+sim_results <- grid %>%
+ mutate(draws = pmap(list(fe_type, tau_type), function(fe_type, tau_type) {
+ map_dfr(1:B, function(b) {
+ sim <- simulate_panel(fe_type = fe_type, tau_type = tau_type, seed = 1000 + b)
+ est <- estimate_methods(sim)
+ est %>%
+ mutate(
+ true_tau_weighted = sim$true_tau_weighted,
+ draw = b
+ )
+ })
+ })) %>%
+ unnest(draws)
+RMSE table (relative to the weighted true ATE):
+rmse_tbl <- sim_results %>%
+ pivot_longer( cols = starts_with("tau_") & !any_of(c("tau_type", "true_tau_weighted")),
+ names_to = "method",
+ values_to = "tau_hat") %>%
+ mutate(err = tau_hat - true_tau_weighted) %>%
+ group_by(fe_type, tau_type, method) %>%
+ summarise(
+ rmse = sqrt(mean(err^2, na.rm = TRUE)),
+ bias = mean(err, na.rm = TRUE),
+ sd = sd(err, na.rm = TRUE),
+ .groups = "drop"
+ ) %>%
+ arrange(fe_type, tau_type, method)
+
+knitr::kable(rmse_tbl, digits = 3, caption = "RMSE, bias, and SD of estimation error (tau_hat - tau_true_weighted)")
+| fe_type | +tau_type | +method | +rmse | +bias | +sd | +
|---|---|---|---|---|---|
| additive | +heterogeneous | +tau_did_unw | +0.739 | +0.685 | +0.279 | +
| additive | +heterogeneous | +tau_did_w | +0.128 | +-0.017 | +0.128 | +
| additive | +heterogeneous | +tau_sdid | +0.739 | +0.684 | +0.280 | +
| additive | +heterogeneous | +tau_sdid_super | +0.134 | +-0.020 | +0.133 | +
| additive | +heterogeneous | +tau_sdid_unit_wavg | +0.134 | +-0.019 | +0.134 | +
| additive | +homogeneous | +tau_did_unw | +0.102 | +-0.011 | +0.102 | +
| additive | +homogeneous | +tau_did_w | +0.128 | +-0.017 | +0.127 | +
| additive | +homogeneous | +tau_sdid | +0.107 | +-0.011 | +0.107 | +
| additive | +homogeneous | +tau_sdid_super | +0.134 | +-0.020 | +0.133 | +
| additive | +homogeneous | +tau_sdid_unit_wavg | +0.134 | +-0.019 | +0.134 | +
| interactive | +heterogeneous | +tau_did_unw | +0.757 | +0.691 | +0.310 | +
| interactive | +heterogeneous | +tau_did_w | +0.206 | +-0.010 | +0.207 | +
| interactive | +heterogeneous | +tau_sdid | +0.746 | +0.689 | +0.287 | +
| interactive | +heterogeneous | +tau_sdid_super | +0.147 | +-0.014 | +0.147 | +
| interactive | +heterogeneous | +tau_sdid_unit_wavg | +0.147 | +-0.015 | +0.147 | +
| interactive | +homogeneous | +tau_did_unw | +0.160 | +-0.005 | +0.160 | +
| interactive | +homogeneous | +tau_did_w | +0.205 | +-0.010 | +0.206 | +
| interactive | +homogeneous | +tau_sdid | +0.119 | +-0.007 | +0.119 | +
| interactive | +homogeneous | +tau_sdid_super | +0.147 | +-0.014 | +0.147 | +
| interactive | +homogeneous | +tau_sdid_unit_wavg | +0.147 | +-0.015 | +0.147 | +
Distribution plots (actual minus estimated ATE):
+plot_df <- sim_results %>%
+ pivot_longer(
+ cols = starts_with("tau_") & !any_of(c("tau_type", "true_tau_weighted")),
+ names_to = "method",
+ values_to = "tau_hat"
+ ) %>%
+ mutate(
+ diff = tau_hat - true_tau_weighted,
+ method = recode(method,
+ tau_sdid = "SDID (unweighted)",
+ tau_sdid_super = "SDID of weighted treated average (Sol. 1)",
+ tau_sdid_unit_wavg = "Weighted avg of unit SDIDs (Sol. 2)",
+ tau_did_unw = "DID (unweighted)",
+ tau_did_w = "DID (weighted)"
+ )
+ )
+
+# Common x-axis limits across BOTH plots
+x_lim <- range(plot_df$diff, na.rm = TRUE)
+
+# Homogeneous plot
+p_homogeneous <- plot_df %>%
+ filter(tau_type == "homogeneous") %>%
+ ggplot(aes(x = diff)) +
+ geom_histogram(bins = 35) +
+ geom_vline(xintercept = 0, linetype = "dashed", color = "red") +
+ coord_cartesian(xlim = x_lim) +
+ facet_grid(fe_type ~ method, scales = "free_y") +
+ labs(
+ title = "Simulation error distributions: Homogeneous treatment",
+ x = "tau_hat - tau_true_weighted",
+ y = "Count"
+ )
+
+# Heterogeneous plot
+p_heterogeneous <- plot_df %>%
+ filter(tau_type == "heterogeneous") %>%
+ ggplot(aes(x = diff)) +
+ geom_histogram(bins = 35) +
+ geom_vline(xintercept = 0, linetype = "dashed", color = "red") +
+ coord_cartesian(xlim = x_lim) +
+ facet_grid(fe_type ~ method, scales = "free_y") +
+ labs(
+ title = "Simulation error distributions: Heterogeneous treatment",
+ x = "tau_hat - tau_true_weighted",
+ y = "Count"
+ )
+
+p_homogeneous
++Simulation: distribution of estimation error (tau_hat - +tau_true_weighted). +
+p_heterogeneous
++Simulation: distribution of estimation error (tau_hat - +tau_true_weighted). +
+We apply our discussion of treated-unit weighting to Borgschulte and +Vogler (2020), who study whether the Affordable Care Act (ACA) Medicaid +expansion reduced mortality. Their core estimand is the change in +county-level mortality in expansion states relative to non-expansion +states in the years following the policy change, with a particular focus +on working-age adults (ages 20–64). Empirically, they implement a +differences-in-differences research design using county-by-year +variation, but they explicitly address observable pre-expansion +differences between expansion and non-expansion areas by combining +propensity-score weighting with machine-learning-assisted matching to +improve comparability across counties.
+This setting is useful for our purposes for two reasons. First, it +naturally features many treated units (counties in expansion states) and +many control units (counties in non-expansion states), which makes the +treated-unit aggregation problem salient whenever one wants an estimand +that reflects population exposure rather than an equal-weighted county +average. Second, Borgschulte and Vogler motivate their reweighting +strategy precisely because DID is complicated by systematic +pre-expansion level differences in mortality rates between treatment and +control areas; in such environments, methods that reweight units to +improve pre-treatment balance—whether via propensity-score weights or +SDID’s synthetic weighting—are especially relevant to assess +side-by-side.
+In our partial replication, we implement two classes of estimators on +a common analysis sample: (i) a conventional DID regression (both +unweighted and population-weighted) and (ii) SDID estimators (unweighted +SDID and population-weighted variants aligned with the weighting +discussion in this paper). The objective is not to reproduce every +modeling choice in Borgschulte and Vogler (2020), but to use their +empirical context to illustrate how the choice of treated-unit weights +can change the estimand and, in finite samples, the behavior of SDID +relative to DID in the presence of meaningful baseline differences.
+A key practical constraint is data access. Borgschulte and Vogler +(2020) rely on restricted-access microdata covering all deaths in the +United States, which we do not have. Consequently, our replication uses +publicly available mortality data and imposes additional restrictions to +align the public data structure with the panel requirements of our +methods. These are discussed in Appendix X, which compares our data with +those in BV (2020)/ These constraints limit exact comparability to the +published results, but they still provide a clean environment to +demonstrate the paper’s main point: when many treated units differ +substantially in size, population weighting is not a cosmetic choice—it +changes the target parameter and can materially affect the SDID estimate +and its interpretation.
+## Data (created previously)
+data_path <- normalizePath(file.path("..", "data", "analysis_data.csv"), mustWork = FALSE)
+
+## Check to make sure data exist
+if (!is.na(data_path)) {
+
+ message("Loading data: ", data_path)
+ panel <- read_csv(data_path, show_col_types = FALSE)
+
+ ## Define control variables
+ control_vars <- c("pct_white", "pop_20_64", "pct_55_64", "log_35_44", "log_f_20_64", "unemp")
+
+ ## Basic version for now, with controls to come
+ panel <- panel %>% dplyr::select(time = year,
+ unit = fips,
+ y = crude_rate,
+ treated_unit = expansion,
+ pop = population,
+ control_vars )
+
+ required <- c("unit", "time", "y", "treated_unit")
+ if (!all(required %in% names(panel))) {
+ stop("Replication data found, but missing required columns: unit, time, y, treated_unit (and optional pop).")
+ }
+
+ # You should set this explicitly for the application:
+ T0_emp <- 2014
+ panel <- panel %>% mutate(post = as.integer(time >= T0_emp))
+
+
+ ## Estimate models (unweighted) (SDID)
+ tau_emp_sdid_unw_nc <- run_sdid_long(panel, T0_emp)
+ tau_emp_sdid_unw_wc <- run_sdid_long(panel, T0_emp, controls = control_vars)
+
+ ## Estimated Models (unweighted) (DiD)
+ tau_emp_did_unw_nc <- did_twfe(panel)
+ tau_emp_did_unw_wc <- did_twfe(panel, controls = control_vars)
+
+ ## Estimate models (weighted) (SDID)
+ df_super <- make_weighted_treated_unit(panel, T0_emp, weight_col = "pop")
+ tau_emp_sdid_w1_nc <- run_sdid_long(df_super, T0_emp)
+ df_super <- make_weighted_treated_unit(panel, T0_emp, weight_col = "pop",
+ controls = control_vars)
+ tau_emp_sdid_w1_wc <- run_sdid_long(df_super, T0_emp, controls = control_vars)
+
+ tau_emp_sdid_w2_nc <- run_sdid_by_treated_and_average(panel, T0_emp, weight_col = "pop")
+ tau_emp_sdid_w2_wc <- run_sdid_by_treated_and_average(panel, T0_emp, weight_col = "pop", controls = control_vars)
+
+ ## Estimated Models (Weighted) (DiD)
+ tau_emp_did_w_nc <- did_twfe(panel, w = "pop")
+ tau_emp_did_w_wc <- did_twfe(panel, controls = control_vars, w = "pop")
+
+ ## Store in table
+ out <- tibble(
+ method = c("SDID (UnW)","SDID (UnW) (Controls)",
+ "SDID (Weight 1)", "SDID (Weight 1) (Controls)",
+ "SDID (Weight 2)", "SDID (Weight 2) (Controls)",
+ "DID (UnW)","DID (UnW) (Controls)",
+ "DID (Weighted)","DID (Weighted) (Controls)" ),
+ tau = c(as.numeric(tau_emp_sdid_unw_nc),as.numeric(tau_emp_sdid_unw_wc),
+ as.numeric(tau_emp_sdid_w1_nc),as.numeric(tau_emp_sdid_w1_wc),
+ as.numeric(tau_emp_sdid_w2_nc$tau_weighted_average),
+ as.numeric(tau_emp_sdid_w2_wc$tau_weighted_average),
+ as.numeric(tau_emp_did_unw_nc),as.numeric(tau_emp_did_unw_wc),
+ as.numeric(tau_emp_did_w_nc),as.numeric(tau_emp_did_w_wc))
+ )
+ knitr::kable(out, digits = 3, caption = "Replication: SDID/DID estimates (placeholder)")
+} else {
+ cat("No replication data found. Put data/analysis_panel.csv or data/analysis_panel.rds in the repo to enable this section.")
+}
+| method | +tau | +
|---|---|
| SDID (UnW) | +0.350 | +
| SDID (UnW) (Controls) | +-2.894 | +
| SDID (Weight 1) | +-13.459 | +
| SDID (Weight 1) (Controls) | +-12.253 | +
| SDID (Weight 2) | +-14.135 | +
| SDID (Weight 2) (Controls) | +-12.081 | +
| DID (UnW) | +0.246 | +
| DID (UnW) (Controls) | +-3.228 | +
| DID (Weighted) | +3.406 | +
| DID (Weighted) (Controls) | +-4.201 | +
DRAFT: To be filled in.
+DRAFT: To be filled in.
+Abadie, Alberto, and Javier Gardeazabal. 2003. “The Economic Costs of +Conflict: A Case Study of the Basque Country.” American Economic +Review 93(1): 113–132.
+Abadie, Alberto, Alexis Diamond, and Jens Hainmueller. 2010. +“Synthetic Control Methods for Comparative Case Studies: Estimating the +Effect of California’s Tobacco Control Program.” Journal of the +American Statistical Association 105(490): 493–505.
+Arkhangelsky, Dmitry, Susan Athey, David A. Hirshberg, Guido W. +Imbens, and Stefan Wager. 2021. “Synthetic Difference-in-Differences.” +American Economic Review 111(12): 4088–4118.
+ABSTRACT
+Keywords: Synthetic Difference-in-Differences
+JEL Codes:
Empirical methods for evaluating the causal effects of policies +without random assignment have played a critical role in economics for +the last several decades. In particular, in the context of panel data, +Difference-in-Difference (DID) has become the workhorse model in cases +where multiple units are treated, and the Synthetic Control Method (SCM) +dominates in cases with one treated unit. Arkhangelsky et al. (2021) +combined elements of both methods to create the Synthetic +Difference-in-Difference (SDID) approach. The authors borrow the +re-weighting of control units based on pre-treatment trends and +covariates from SCM in such a way to allow for a weaker parallel trend +assumption, and allow level-shifts between treatment and control groups, +like DID. This method also includes time-weights, allowing the method to +find the pre-exposure periods that best reflect the post-exposure +periods characteristics.
+In this paper we identify a key limitation of SDID that emerges when +a procedure designed for a single treated unit is implemented in +contexts with multiple treated units: namely, the inability to +incorporate weights for treated units. In practice, the current +implementation of SDID assumes that treated units are all equally +weighted, which is unrealistic in many empirical panel-data settings. +This is particularly an issue when the researcher is studying a setting +where heterogeneous treatment effects are correlated with the weighting +variable. In the simplest case, if a researcher wanted to weight by +population size, and the treatment under investigation had a larger +effect in smaller states, then the recovered average treatment effect +(ATE) would be larger than the “true” weighted ATE.
+We propose two potential solutions: 1. Construct a weighted-average +treated unit and run a single SDID. 2. Run a SDID for each treated unit +and take a weighted average of the estimated effects.
+Synthetic difference-in-differences was created by Arkhangelsky et +al. (2021), combining elements of synthetic control methods and +difference-in-differences to take advantage of benefits of both +estimators while increasing precision. From SCM, re-weighting and +matching of pre-exposure trends in SDID allows weaker reliance on +parallel trend assumptions. From DiD, SDID does not require that treated +and control groups have the same post-treatment trends, instead allowing +for level differences.
+Following closely the description in Arkhangelsky et al. (2021), +consider a balanced panel with \(N\) +units observed over \(T\) time periods. +The first \(N_{co}\) units are controls +(never treated), and the remaining \(N_{tr} = +N - N_{co}\) units are treated starting at time \(T_{pre} + 1\). Let \(T_{post} = T - T_{pre}\) denote the number +of post-treatment periods.
+Define the treatment indicator: \[ +W_{it} = \begin{cases} 1 & \text{if } i > N_{co} \text{ and } t +> T_{pre} \\ 0 & \text{otherwise} \end{cases} +\]
+The observed outcome \(Y_{it}\) can +be decomposed as: \[ +Y_{it} = Y_{it}(0) + \tau_{it} W_{it} +\] where \(Y_{it}(0)\) is the +potential outcome under no treatment and \(\tau_{it}\) is the unit-time specific +treatment effect.
+SDID estimates the average treatment effect on the treated (ATT) via +a weighted regression:
+\[ +(\hat{\tau}^{sdid}, \hat{\mu}, \hat{\alpha}, \hat{\beta}) = +\underset{\tau , \mu, \alpha, \beta}{\text{argmin}} \left \{ +\sum_{i=1}^N \sum_{t=1}^T +(Y_{it} - \mu - \alpha_i - \beta_t - W_{it}\tau)^2\ +\hat{\omega}_i^{sdid}\ \hat{\lambda}_t^{sdid} \right \} +\]
+where \(\alpha_i\) are unit fixed +effects, \(\hat{\omega}_i^{sdid}\) are +unit weights, and \(\hat{\lambda}_t^{sdid}\) are time +weights.
+Importantly, this regression formulation yields a closed-form +solution for \(\hat{\tau}^{sdid}\):
+\[ +\hat{\tau}^{sdid} = \left( \sum_{i=N_{co}+1}^{N} \pi_i \bar{Y}_{i,post} +- \sum_{i=1}^{N_{co}} \hat{\omega}_i \bar{Y}_{i,post} \right) - \left( +\sum_{i=N_{co}+1}^{N} \pi_i \tilde{Y}_{i,pre} - \sum_{i=1}^{N_{co}} +\hat{\omega}_i \tilde{Y}_{i,pre} \right) +\]
+where: - \(\bar{Y}_{i,post} = +\frac{1}{T_{post}} \sum_{t=T_{pre}+1}^{T} Y_{it}\) is unit \(i\)’s simple average outcome in the +post-period - \(\tilde{Y}_{i,pre} = +\sum_{t=1}^{T_{pre}} \hat{\lambda}_t Y_{it}\) is unit \(i\)’s \(\lambda\)-weighted average outcome in the +pre-period - \(\pi_i\) are the weights +on treated units
+In the standard SDID implementation, treated units receive +equal weights: \[ +\pi_i = \frac{1}{N_{tr}} \quad \text{for all } i > N_{co} +\]
+This equal-weighting assumption is embedded in how the control unit +weights \(\hat{\omega}\) are +estimated.
+Control unit weights are chosen to make the weighted average of +control units match the (equally-weighted) average of treated units in +the pre-treatment period:
+\[ +( \hat{\omega}_0, \hat{\omega}^{sdid} ) = +\underset{\omega_0 \in \mathbb{R}, \omega \in \Omega } {\text{argmin}} +\sum_{t=1}^{T_{pre}} \left (\omega_0 + \sum_{i=1}^{N_{co}} \omega_i +Y_{it} - \underbrace{\frac{1}{N_{tr}} \sum_{i=N_{co}+1}^{N} +Y_{it}}_{\text{equal-weighted treated avg}} \right )^2 ++ \zeta^2 T_{pre} || \omega ||_2^2 +\]
+where \(\Omega = \{\omega \in +\mathbb{R}^{N_{co}}_+ : \sum_i \omega_i = 1\}\) is the unit +simplex and \(\zeta\) is a +regularization parameter.
+Key observation: The target for matching is the +simple average of treated units’ outcomes. If treated units +differ in size or importance, this target does not reflect a +population-weighted average.
+Time weights are calculated similarly, matching the pre-treatment +trajectory to post-treatment:
+\[ +( \hat{\lambda}_0, \hat{\lambda}^{sdid} ) = +\underset{\lambda_0 \in \mathbb{R}, \lambda \in \Lambda } +{\text{argmin}} +\sum_{i=1}^{N_{co}} \left (\lambda_0 + \sum_{t=1}^{T_{pre}} \lambda_t +Y_{it} - \frac{1}{T_{post}} \sum_{t=T_{pre}+1}^{T} Y_{it} \right )^2 ++ \zeta^2 N_{co} || \lambda ||^2 +\]
+where \(\Lambda = \{\lambda \in +\mathbb{R}^{T_{pre}}_+ : \sum_t \lambda_t = 1\}\).
+synthdid PackageThe synthdid R package implements this estimator using a
+“collapsed form” representation. Define the collapsed outcome matrix
+\(\tilde{Y}\) as an \((N_{co}+1) \times (T_{pre}+1)\) matrix:
\[ +\tilde{Y} = \begin{pmatrix} +Y_{1,1} & \cdots & Y_{1,T_{pre}} & \bar{Y}_{1,post} \\ +\vdots & \ddots & \vdots & \vdots \\ +Y_{N_{co},1} & \cdots & Y_{N_{co},T_{pre}} & +\bar{Y}_{N_{co},post} \\ +\frac{1}{N_{tr}}\sum_{i>N_{co}} Y_{i,1} & \cdots & +\frac{1}{N_{tr}}\sum_{i>N_{co}} Y_{i,T_{pre}} & +\frac{1}{N_{tr}}\sum_{i>N_{co}} \bar{Y}_{i,post} +\end{pmatrix} +\]
+The last row averages treated units with equal +weights (\(1/N_{tr}\)). The +last column averages post-treatment periods with equal weights (\(1/T_{post}\)).
+The treatment effect is then computed as: \[ +\hat{\tau}^{sdid} = \begin{pmatrix} -\hat{\omega} \\ 1 +\end{pmatrix}^\top \tilde{Y} \begin{pmatrix} -\hat{\lambda} \\ 1 +\end{pmatrix} +\]
+This is a double-difference: the difference between the treated +average and synthetic control, comparing post-treatment to \(\lambda\)-weighted pre-treatment.
+To allow for user-specified weights on treated units, we modify the +estimator by replacing the uniform weights \(1/N_{tr}\) with user-specified weights +\(\pi = (\pi_{N_{co}+1}, \ldots, +\pi_N)\) where \(\sum_{i>N_{co}} +\pi_i = 1\).
+Modified collapsed form:
+\[ +\tilde{Y}^{(\pi,\rho)} = \begin{pmatrix} +Y_{1,1} & \cdots & Y_{1,T_{pre}} & \sum_{t>T_{pre}} +\rho_t Y_{1,t} \\ +\vdots & \ddots & \vdots & \vdots \\ +Y_{N_{co},1} & \cdots & Y_{N_{co},T_{pre}} & +\sum_{t>T_{pre}} \rho_t Y_{N_{co},t} \\ +\sum_{i>N_{co}} \pi_i Y_{i,1} & \cdots & \sum_{i>N_{co}} +\pi_i Y_{i,T_{pre}} & \sum_{i>N_{co}} \sum_{t>T_{pre}} \pi_i +\rho_t Y_{i,t} +\end{pmatrix} +\]
+where \(\rho = (\rho_{T_{pre}+1}, \ldots, +\rho_T)\) are optional post-period weights (defaulting to \(1/T_{post}\)).
+Modified control weight optimization:
+\[ +( \hat{\omega}_0, \hat{\omega}^{w} ) = +\underset{\omega_0 \in \mathbb{R}, \omega \in \Omega } {\text{argmin}} +\sum_{t=1}^{T_{pre}} \left (\omega_0 + \sum_{i=1}^{N_{co}} \omega_i +Y_{it} - \underbrace{\sum_{i=N_{co}+1}^{N} \pi_i +Y_{it}}_{\text{user-weighted treated avg}} \right )^2 ++ \zeta^2 T_{pre} || \omega ||_2^2 +\]
+Modified treatment effect:
+\[ +\hat{\tau}^{sdid,w} = \begin{pmatrix} -\hat{\omega}^w \\ \pi +\end{pmatrix}^\top Y \begin{pmatrix} -\hat{\lambda}^w \\ \rho +\end{pmatrix} +\]
+This weighted estimator targets the \(\pi\)-weighted average treatment effect: +\[ +\tau^{(\pi)} = \sum_{i=N_{co}+1}^{N} \pi_i \cdot \frac{1}{T_{post}} +\sum_{t=T_{pre}+1}^{T} \tau_{it} +\]
+When \(\pi_i\) reflects population +shares, \(\tau^{(\pi)}\) is the +population-weighted ATT.
+The authors show that the estimator is asymptotically normal and +propose inference using block bootstrap, jackknife, or permutation +approaches. For the weighted estimator, we adapt these procedures to +properly handle weight renormalization during resampling.
+This section is included so the HTML file produces a working SDID +estimate and plots before you connect to project-specific data.
+data("california_prop99")
+
+setup <- panel.matrices(california_prop99)
+tau_sdid <- synthdid_estimate(setup$Y, setup$N0, setup$T0)
+
+# Common practice in examples: placebo standard errors
+se_placebo <- sqrt(vcov(tau_sdid, method = "placebo"))
+
+c(
+ point_estimate = as.numeric(tau_sdid),
+ se_placebo = se_placebo,
+ ci_lo = as.numeric(tau_sdid) - 1.96 * se_placebo,
+ ci_hi = as.numeric(tau_sdid) + 1.96 * se_placebo
+)
+## point_estimate se_placebo ci_lo ci_hi
+## -15.603828 9.177563 -33.591852 2.384196
+plot(tau_sdid, se.method = "placebo")
++SDID estimate plot (Prop 99 example). +
+synthdid_units_plot(tau_sdid, se.method = "placebo")
++Unit weights visualization (Prop 99 example). +
+There are two places in SDID where the lack of treated-unit weights +becomes problematic:
+Control weights are chosen to match the +average treated unit, but that treated “average” is a simple +average across treated units. If a researcher wants to weight treated +units (e.g., by population), those weights are ignored, which matters +when treatment heterogeneity is correlated with the weighting +variable.
In the final effect estimation, SDID effectively treats treated +units as equally weighted (i.e., treated units are not re-weighted by +user-specified weights). This departs from the approach often used in +DID, where analysts commonly weight observations by a relevant +characteristic.
We propose three solutions:
+Each solution has distinct trade-offs:
+| Solution | +Pros | +Cons | +
|---|---|---|
| Sol. 1: Weighted avg treated | +Simple to implement; single SDID run | +Loses unit-level heterogeneity; aggregation may distort +dynamics | +
| Sol. 2: Unit-level SDIDs | +Preserves heterogeneity; allows unit-specific inference | +Computationally intensive; each unit-SDID has fewer treated obs | +
| Sol. 3: Weighted SDID | +Theoretically grounded; single coherent optimization; efficient | +Requires modified code; variance estimation needs adaptation | +
These are minimal utilities to support the simulation section and
+later replication. They assume a long panel with columns:
+unit, time, y,
+treated_unit (0/1), post (0/1), and optionally
+pop (weights).
did_twfe <- function(df,
+ y = "y",
+ treated_unit = "treated_unit",
+ post = "post",
+ unit = "unit",
+ time = "time",
+ controls = NULL, # NULL, character vector, or one-sided formula
+ w = NULL, # NULL or weight column name
+ cluster = "unit", # NULL, or column name (or a ~formula string)
+ return_model = FALSE) {
+
+ if (!requireNamespace("fixest", quietly = TRUE)) {
+ stop("Package `fixest` is required. Install via install.packages('fixest').")
+ }
+
+ # Controls -> RHS string
+ controls_rhs <- ""
+ if (!is.null(controls)) {
+ if (inherits(controls, "formula")) {
+ # e.g., controls = ~ x1 + x2 + i(region)
+ # Convert formula to text and drop leading "~"
+ controls_rhs <- paste0(" + ", gsub("^\\s*~\\s*", "", deparse(controls)))
+ } else if (is.character(controls)) {
+ # e.g., controls = c("x1","x2")
+ controls_rhs <- paste0(" + ", paste(controls, collapse = " + "))
+ } else {
+ stop("`controls` must be NULL, a character vector of column names, or a one-sided formula like ~ x1 + x2.")
+ }
+ }
+
+ # Main formula: y ~ treated*post + controls | unit + time
+ fml_txt <- paste0(
+ y, " ~ ", treated_unit, " * ", post,
+ controls_rhs,
+ " | ", unit, " + ", time
+ )
+ fml <- stats::as.formula(fml_txt)
+
+ # Weights vector (optional)
+ weights_vec <- if (is.null(w)) NULL else df[[w]]
+
+ # Cluster handling
+ cluster_fml <- NULL
+ if (!is.null(cluster)) {
+ if (inherits(cluster, "formula")) {
+ cluster_fml <- cluster
+ } else if (is.character(cluster)) {
+ cluster_fml <- stats::as.formula(paste0("~", cluster))
+ } else {
+ stop("`cluster` must be NULL, a column name (character), or a formula like ~unit.")
+ }
+ }
+
+ m <- fixest::feols(
+ fml,
+ data = df,
+ weights = weights_vec,
+ cluster = cluster_fml
+ )
+
+ # Extract interaction coefficient
+ cn <- names(stats::coef(m))
+ target <- paste0(treated_unit, ":", post)
+ if (!target %in% cn) {
+ target2 <- paste0(post, ":", treated_unit)
+ if (target2 %in% cn) {
+ target <- target2
+ } else {
+ stop("Could not find interaction coefficient. Coef names: ", paste(cn, collapse = ", "))
+ }
+ }
+ tau_hat <- unname(stats::coef(m)[[target]])
+
+ if (return_model) list(tau_hat = tau_hat, model = m, formula = fml) else tau_hat
+}
+
+
+run_sdid_long <- function(df,
+ treat_start_time,
+ controls = NULL, # NULL, character vector, or one-sided formula
+ unit = "unit",
+ time = "time",
+ y = "y",
+ treated_unit = "treated_unit",
+ use_twfe_residualization = TRUE, # controls + unit/time FE
+ return_setup = FALSE) {
+
+ # Defensive checks
+ if (!requireNamespace("synthdid", quietly = TRUE)) {
+ stop("Package `synthdid` is required.")
+ }
+
+ df2 <- df
+
+ # Coerce and standardize time
+ df2 <- df2 %>%
+ dplyr::mutate(
+ .unit = as.factor(.data[[unit]]),
+ .time_raw = .data[[time]],
+ .time = if (inherits(.data[[time]], "Date")) as.integer(.data[[time]])
+ else suppressWarnings(as.numeric(as.character(.data[[time]])))
+ )
+
+ if (anyNA(df2$.time)) stop("Time coercion produced NA values. Ensure `time` is numeric/character-numeric or Date.")
+
+ # Treatment indicator
+ df2 <- df2 %>%
+ dplyr::mutate(.W = as.integer((.data[[treated_unit]] == 1) & (.time >= treat_start_time)))
+
+ # Optional covariate adjustment: residualize y on controls (and optionally TWFE)
+ if (!is.null(controls)) {
+ if (!requireNamespace("fixest", quietly = TRUE)) {
+ stop("To use `controls`, please install `fixest` (install.packages('fixest')).")
+ }
+
+ # Build RHS for controls
+ controls_rhs <- ""
+ if (inherits(controls, "formula")) {
+ controls_rhs <- gsub("^\\s*~\\s*", "", deparse(controls))
+ } else if (is.character(controls)) {
+ controls_rhs <- paste(controls, collapse = " + ")
+ } else {
+ stop("`controls` must be NULL, a character vector of column names, or a one-sided formula like ~ x1 + x2.")
+ }
+
+ # Residualization regression
+ # Default: y ~ controls | unit + time (TWFE residualization)
+ if (use_twfe_residualization) {
+ fml_txt <- paste0(y, " ~ ", controls_rhs, " | .unit + .time")
+ } else {
+ # Alternative: y ~ controls (no FE) — usually not recommended for panel SDID
+ fml_txt <- paste0(y, " ~ ", controls_rhs)
+ }
+
+ # Run regression
+ m_resid <- fixest::feols(stats::as.formula(fml_txt), data = df2)
+
+ # Drop unmatched observations
+ df2 <- df2[fixest::obs(m_resid), , drop = FALSE]
+
+ # Replace outcome with residualized outcome
+ df2[[y]] <- as.numeric(stats::resid(m_resid))
+
+ }
+
+ # Prepare panel for synthdid
+ dfp <- df2 %>%
+ dplyr::arrange(.unit, .time) %>%
+ dplyr::select(.unit, .time, !!y, .W) %>%
+ dplyr::rename(y = !!y)
+
+ dfp <- as.data.frame(dfp)
+
+ # Balance check (panel.matrices requires balanced panel)
+ # This check is cheap and gives a clearer error than panel.matrices.
+ bad <- dfp %>%
+ dplyr::count(.unit, .time) %>%
+ dplyr::filter(n != 1)
+ if (nrow(bad) > 0) {
+ stop("Input must be a balanced panel with unique (.unit, .time) rows. Found duplicates/missingness.")
+ }
+
+ setup <- synthdid::panel.matrices(dfp)
+ est <- synthdid::synthdid_estimate(setup$Y, setup$N0, setup$T0)
+
+ if (return_setup) {
+ return(list(estimate = est, setup = setup))
+ } else {
+ return(est)
+ }
+}
+
+make_weighted_treated_unit <- function(df,
+ treat_start_time,
+ weight_col = "pop",
+ controls = NULL,
+ unit = "unit",
+ time = "time",
+ y = "y",
+ treated_unit = "treated_unit") {
+
+ baseline_time <- treat_start_time - 1
+
+ # synthetic id
+ max_id <- suppressWarnings(max(as.integer(df[[unit]]), na.rm = TRUE))
+ if (!is.finite(max_id)) stop("`unit` must be coercible to integer for synth_id construction.")
+ synth_id <- max_id + 1L
+
+ # Parse controls into character vector (if provided)
+ control_vars <- character(0)
+ if (!is.null(controls)) {
+ if (inherits(controls, "formula")) {
+ # keep it simple: assume formula is like ~ x1 + x2 (no i(), no interactions)
+ # If you need i() etc, you should not aggregate those directly as columns.
+ tt <- attr(stats::terms(controls), "term.labels")
+ control_vars <- tt
+ } else if (is.character(controls)) {
+ control_vars <- controls
+ } else {
+ stop("`controls` must be NULL, character vector, or one-sided formula like ~ x1 + x2.")
+ }
+ }
+
+ # Ensure baseline weights are unique per unit (avoid duplicating rows)
+ w0 <- df %>%
+ dplyr::filter(.data[[time]] == baseline_time) %>%
+ dplyr::group_by(.data[[unit]]) %>%
+ dplyr::summarise(w0 = mean(.data[[weight_col]], na.rm = TRUE), .groups = "drop")
+
+ df2 <- df %>% dplyr::left_join(w0, by = unit)
+
+ treated <- df2 %>% dplyr::filter(.data[[treated_unit]] == 1)
+ controls_df <- df2 %>% dplyr::filter(.data[[treated_unit]] == 0)
+
+ # Weighted means per time for y and (optionally) controls
+ treated_super <- treated %>%
+ dplyr::group_by(.data[[time]]) %>%
+ dplyr::summarise(
+ # outcome
+ !!y := sum(.data[[y]] * w0, na.rm = TRUE) / sum(w0, na.rm = TRUE),
+
+ # controls (if any)
+ dplyr::across(
+ dplyr::all_of(control_vars),
+ ~ sum(.x * w0, na.rm = TRUE) / sum(w0, na.rm = TRUE),
+ .names = "{.col}"
+ ),
+
+ # indicators
+ !!treated_unit := 1L,
+ post = as.integer(dplyr::first(.data[[time]]) >= treat_start_time),
+ .groups = "drop"
+ ) %>%
+ dplyr::mutate(!!unit := synth_id)
+
+ # Keep consistent columns for bind_rows
+ keep_cols <- c(unit, time, y, control_vars, treated_unit, "post")
+ out <- dplyr::bind_rows(
+ controls_df %>% dplyr::select(dplyr::all_of(keep_cols)),
+ treated_super %>% dplyr::select(dplyr::all_of(keep_cols))
+ )
+
+ out
+}
+
+
+run_sdid_by_treated_and_average <- function(df,
+ treat_start_time,
+ weight_col = "pop",
+ controls = NULL, # NULL, character vector, or one-sided formula
+ unit = "unit",
+ time = "time",
+ y = "y",
+ treated_unit = "treated_unit",
+ use_twfe_residualization = TRUE) {
+
+ # Robust baseline time (last pre period that exists)
+ baseline_time <- max(df[[time]][df[[time]] < treat_start_time], na.rm = TRUE)
+ if (!is.finite(baseline_time)) stop("No pre-treatment period found (time < treat_start_time).")
+
+ treated_ids <- df %>%
+ dplyr::filter(.data[[treated_unit]] == 1) %>%
+ dplyr::distinct(.data[[unit]]) %>%
+ dplyr::pull(.data[[unit]])
+
+ controls_df <- df %>% dplyr::filter(.data[[treated_unit]] == 0)
+
+ # Baseline weights for treated units (force one row per unit)
+ weights <- df %>%
+ dplyr::filter(.data[[treated_unit]] == 1, .data[[time]] == baseline_time) %>%
+ dplyr::group_by(.data[[unit]]) %>%
+ dplyr::summarise(w0 = mean(.data[[weight_col]], na.rm = TRUE), .groups = "drop")
+
+ est <- purrr::map_dfr(treated_ids, function(id) {
+
+ dfi <- dplyr::bind_rows(
+ controls_df,
+ df %>% dplyr::filter(.data[[unit]] == id)
+ )
+
+ tau <- run_sdid_long(
+ dfi,
+ treat_start_time = treat_start_time,
+ controls = controls,
+ unit = unit,
+ time = time,
+ y = y,
+ treated_unit = treated_unit,
+ use_twfe_residualization = use_twfe_residualization,
+ return_setup = FALSE
+ )
+
+ tibble::tibble(!!unit := id, tau = as.numeric(tau))
+ }) %>%
+ dplyr::left_join(weights, by = unit)
+
+ tau_wavg <- sum(est$tau * est$w0, na.rm = TRUE) / sum(est$w0, na.rm = TRUE)
+
+ list(unit_level = est, tau_weighted_average = tau_wavg)
+}
+
+
+# Solution 3: Run weighted SDID using modified synthdid functions
+run_sdid_weighted <- function(df,
+ treat_start_time,
+ weight_col = "pop",
+ controls = NULL,
+ unit = "unit",
+ time = "time",
+ y = "y",
+ treated_unit = "treated_unit",
+ use_twfe_residualization = TRUE) {
+
+ # Defensive checks
+ if (!exists("synthdid_estimate_weighted")) {
+ stop("Weighted SDID functions not loaded. Source the R_weighted files first.")
+ }
+
+ df2 <- df
+
+ # Coerce and standardize time
+ df2 <- df2 %>%
+ dplyr::mutate(
+ .unit = as.factor(.data[[unit]]),
+ .time_raw = .data[[time]],
+ .time = if (inherits(.data[[time]], "Date")) as.integer(.data[[time]])
+ else suppressWarnings(as.numeric(as.character(.data[[time]])))
+ )
+
+ if (anyNA(df2$.time)) stop("Time coercion produced NA values.")
+
+ # Treatment indicator
+ df2 <- df2 %>%
+ dplyr::mutate(.W = as.integer((.data[[treated_unit]] == 1) & (.time >= treat_start_time)))
+
+ # Optional covariate adjustment: residualize y on controls
+ if (!is.null(controls)) {
+ if (!requireNamespace("fixest", quietly = TRUE)) {
+ stop("To use `controls`, please install `fixest`.")
+ }
+
+ controls_rhs <- ""
+ if (inherits(controls, "formula")) {
+ controls_rhs <- gsub("^\\s*~\\s*", "", deparse(controls))
+ } else if (is.character(controls)) {
+ controls_rhs <- paste(controls, collapse = " + ")
+ }
+
+ if (use_twfe_residualization) {
+ fml_txt <- paste0(y, " ~ ", controls_rhs, " | .unit + .time")
+ } else {
+ fml_txt <- paste0(y, " ~ ", controls_rhs)
+ }
+
+ m_resid <- fixest::feols(stats::as.formula(fml_txt), data = df2)
+ df2 <- df2[fixest::obs(m_resid), , drop = FALSE]
+ df2[[y]] <- as.numeric(stats::resid(m_resid))
+ }
+
+ # Prepare panel for synthdid
+ dfp <- df2 %>%
+ dplyr::arrange(.unit, .time) %>%
+ dplyr::select(.unit, .time, !!y, .W) %>%
+ dplyr::rename(y = !!y)
+
+ dfp <- as.data.frame(dfp)
+
+ # Balance check
+ bad <- dfp %>%
+ dplyr::count(.unit, .time) %>%
+ dplyr::filter(n != 1)
+ if (nrow(bad) > 0) {
+ stop("Input must be a balanced panel with unique (.unit, .time) rows.")
+ }
+
+ setup <- synthdid::panel.matrices(dfp)
+
+ # Calculate treated unit weights from baseline population
+ baseline_time <- max(df[[time]][df[[time]] < treat_start_time], na.rm = TRUE)
+ treated_weights_df <- df %>%
+ dplyr::filter(.data[[treated_unit]] == 1, .data[[time]] == baseline_time) %>%
+ dplyr::group_by(.data[[unit]]) %>%
+ dplyr::summarise(w0 = mean(.data[[weight_col]], na.rm = TRUE), .groups = "drop")
+
+ # Get treated unit order from setup$Y (row names should match)
+ treated_unit_names <- rownames(setup$Y)[(setup$N0 + 1):nrow(setup$Y)]
+
+ # Match weights to the order in Y matrix
+ treated_weights_df <- treated_weights_df %>%
+ dplyr::mutate(unit_char = as.character(.data[[unit]]))
+
+ # Ensure weights are in the correct order
+ weight_order <- match(treated_unit_names, treated_weights_df$unit_char)
+ if (any(is.na(weight_order))) {
+ # Fall back to order as-is if matching fails
+ treated_weights <- treated_weights_df$w0
+ } else {
+ treated_weights <- treated_weights_df$w0[weight_order]
+ }
+
+ # Normalize to sum to 1
+ treated_weights <- treated_weights / sum(treated_weights)
+
+ # Run weighted SDID
+ est <- synthdid_estimate_weighted(setup$Y, setup$N0, setup$T0,
+ treated.weights = treated_weights)
+
+ est
+}
+
+
+#' Double-Lasso Propensity Score Weighting (Borgschulte-Vogler Approach)
+#'
+#' Implements the double-lasso variable selection procedure for propensity score
+#' estimation following Belloni et al. (2014) and as applied in Borgschulte & Vogler (2020).
+#'
+#' @param df Data frame with panel data
+#' @param outcome_var Name of the outcome variable (e.g., mortality rate)
+#' @param treatment_var Name of the treatment indicator (county-level expansion status)
+#' @param covariate_vars Character vector of potential covariates for selection
+#' @param unit Unit identifier column name
+#' @param time Time identifier column name
+#' @param pre_period_end Last pre-treatment period (for baseline characteristics)
+#' @param trim_quantiles Quantiles for trimming extreme propensity scores (default c(0.038, 0.971))
+#'
+#' @return List containing: propensity scores, selected variables, trimmed sample indicator, weights
+double_lasso_ps <- function(df,
+ outcome_var,
+ treatment_var,
+ covariate_vars,
+ unit = "unit",
+ time = "time",
+ pre_period_end,
+ trim_quantiles = c(0.038, 0.971)) {
+
+ # Create baseline (pre-treatment) dataset at the unit level
+ baseline <- df %>%
+ dplyr::filter(.data[[time]] <= pre_period_end) %>%
+ dplyr::group_by(.data[[unit]]) %>%
+ dplyr::summarise(
+ # Treatment status (constant within unit)
+ treatment = mean(.data[[treatment_var]], na.rm = TRUE),
+ # Average outcome in pre-period
+ outcome_pre = mean(.data[[outcome_var]], na.rm = TRUE),
+ # Average of all covariates
+ dplyr::across(dplyr::all_of(covariate_vars), ~ mean(.x, na.rm = TRUE)),
+ .groups = "drop"
+ ) %>%
+ dplyr::mutate(treatment = as.integer(treatment > 0))
+
+ # Remove any rows with missing values
+
+ baseline_complete <- baseline %>%
+ tidyr::drop_na()
+
+ if (nrow(baseline_complete) < nrow(baseline)) {
+ message(sprintf("Dropped %d units with missing baseline data",
+ nrow(baseline) - nrow(baseline_complete)))
+ }
+
+ # Prepare matrices for lasso
+ X <- baseline_complete %>%
+ dplyr::select(dplyr::all_of(covariate_vars)) %>%
+ as.matrix()
+
+ Y <- baseline_complete$outcome_pre
+ D <- baseline_complete$treatment
+
+ # Standardize covariates for lasso
+ X_scaled <- scale(X)
+
+ # Step 1: Lasso regression of outcome on covariates
+ # This identifies variables predictive of the outcome
+ cv_outcome <- glmnet::cv.glmnet(X_scaled, Y, alpha = 1, nfolds = 10)
+ coef_outcome <- as.vector(coef(cv_outcome, s = "lambda.min"))[-1] # Remove intercept
+ vars_outcome <- covariate_vars[coef_outcome != 0]
+
+ # Step 2: Lasso regression of treatment on covariates
+ # This identifies variables predictive of treatment assignment
+ cv_treatment <- glmnet::cv.glmnet(X_scaled, D, alpha = 1, family = "binomial", nfolds = 10)
+ coef_treatment <- as.vector(coef(cv_treatment, s = "lambda.min"))[-1]
+ vars_treatment <- covariate_vars[coef_treatment != 0]
+
+ # Union of selected variables (double-lasso)
+ vars_selected <- unique(c(vars_outcome, vars_treatment))
+
+ message(sprintf("Double-lasso selected %d variables:", length(vars_selected)))
+ message(sprintf(" - From outcome model: %d (%s)",
+ length(vars_outcome), paste(vars_outcome, collapse = ", ")))
+ message(sprintf(" - From treatment model: %d (%s)",
+ length(vars_treatment), paste(vars_treatment, collapse = ", ")))
+
+ # Step 3: Estimate propensity score using selected variables
+ if (length(vars_selected) > 0) {
+ ps_formula <- as.formula(paste("treatment ~", paste(vars_selected, collapse = " + ")))
+ ps_model <- glm(ps_formula, data = baseline_complete, family = binomial(link = "logit"))
+ ps <- predict(ps_model, type = "response")
+ } else {
+ # If no variables selected, use simple mean
+ warning("No variables selected by double-lasso. Using unconditional probability.")
+ ps <- rep(mean(D), length(D))
+ }
+
+ # Add propensity scores to baseline data
+ baseline_complete$ps <- ps
+
+ # Step 4: Trim based on overlap
+ ps_lower <- quantile(ps, trim_quantiles[1])
+ ps_upper <- quantile(ps, trim_quantiles[2])
+
+ baseline_complete <- baseline_complete %>%
+ dplyr::mutate(
+ in_overlap = (ps >= ps_lower & ps <= ps_upper),
+ # Propensity score weights (for ATT estimation)
+ # Treated: weight = 1, Control: weight = p/(1-p)
+ ps_weight = ifelse(treatment == 1, 1, ps / (1 - ps))
+ )
+
+ n_trimmed <- sum(!baseline_complete$in_overlap)
+ message(sprintf("Trimmed %d units outside overlap region [%.3f, %.3f]",
+ n_trimmed, ps_lower, ps_upper))
+
+ # Return results
+ list(
+ baseline_data = baseline_complete,
+ vars_selected = vars_selected,
+ vars_outcome = vars_outcome,
+ vars_treatment = vars_treatment,
+ ps_model = if (length(vars_selected) > 0) ps_model else NULL,
+ trim_bounds = c(ps_lower, ps_upper),
+ n_trimmed = n_trimmed
+ )
+}
+
+
+#' Run DID with Double-Lasso Propensity Score Weights
+#'
+#' Combines double-lasso PS estimation with weighted DID regression
+#'
+#' @param df Panel data frame
+#' @param outcome_var Outcome variable name
+#' @param treatment_var Treatment indicator name
+#' @param post_var Post-treatment period indicator name
+#' @param covariate_vars Potential covariates for double-lasso selection
+#' @param unit Unit identifier
+#' @param time Time identifier
+#' @param pre_period_end Last pre-treatment period
+#' @param cluster Cluster variable for standard errors
+#' @param controls Optional additional controls for the DID regression (can differ from PS covariates)
+#' @param trim_quantiles Propensity score trimming quantiles
+#'
+#' @return List with DID estimate, PS results, and model object
+did_double_lasso_ps <- function(df,
+ outcome_var = "y",
+ treatment_var = "treated_unit",
+ post_var = "post",
+ covariate_vars,
+ unit = "unit",
+ time = "time",
+ pre_period_end,
+ cluster = "unit",
+ controls = NULL,
+ trim_quantiles = c(0.038, 0.971),
+ return_model = FALSE) {
+
+ # Step 1: Estimate propensity scores using double-lasso
+ ps_results <- double_lasso_ps(
+ df = df,
+ outcome_var = outcome_var,
+ treatment_var = treatment_var,
+ covariate_vars = covariate_vars,
+ unit = unit,
+ time = time,
+ pre_period_end = pre_period_end,
+ trim_quantiles = trim_quantiles
+ )
+
+ # Step 2: Merge PS weights back to panel data
+ ps_weights <- ps_results$baseline_data %>%
+ dplyr::select(dplyr::all_of(unit), ps, ps_weight, in_overlap)
+
+ df_weighted <- df %>%
+ dplyr::left_join(ps_weights, by = unit) %>%
+ dplyr::filter(in_overlap)
+
+ # Step 3: Compute final weights (population * PS weight for controls, population for treated)
+ # Following BV: weight = T + (1-T) * p/(1-p), then multiply by population
+ if ("pop" %in% names(df_weighted)) {
+ df_weighted <- df_weighted %>%
+ dplyr::mutate(final_weight = pop * ps_weight)
+ } else {
+ df_weighted <- df_weighted %>%
+ dplyr::mutate(final_weight = ps_weight)
+ }
+
+ # Step 4: Run weighted DID
+ # Use the variables selected by double-lasso as controls (matching BV approach)
+ if (is.null(controls) && length(ps_results$vars_selected) > 0) {
+ # Use double-lasso selected variables as controls
+ controls <- ps_results$vars_selected
+ }
+
+ tau_hat <- did_twfe(
+ df = df_weighted,
+ y = outcome_var,
+ treated_unit = treatment_var,
+ post = post_var,
+ unit = unit,
+ time = time,
+ controls = controls,
+ w = "final_weight",
+ cluster = cluster,
+ return_model = return_model
+ )
+
+ if (return_model) {
+ list(
+ tau_hat = tau_hat$tau_hat,
+ model = tau_hat$model,
+ ps_results = ps_results,
+ n_units_trimmed = ps_results$n_trimmed,
+ n_obs_final = nrow(df_weighted),
+ vars_selected = ps_results$vars_selected
+ )
+ } else {
+ list(
+ tau_hat = tau_hat,
+ ps_results = ps_results,
+ n_units_trimmed = ps_results$n_trimmed,
+ vars_selected = ps_results$vars_selected
+ )
+ }
+}
+We begin with the following setup:
+Additive:
+\[ +Y_{it} = \alpha_i + \beta_t + W_{it}\tau + \epsilon_{it} +\]
+Interacted:
+\[ +Y_{it} = \alpha_i + \beta_t + \alpha_i\beta_t + W_{it}\tau + +\epsilon_{it} +\]
+We consider homogeneous treatment (tau=2 for all treated units) and +heterogeneous treatment where tau_i is a function of population.
+simulate_panel <- function(
+ N = 100, T = 20, N_tr = 20, T0 = 10,
+ tau0 = 2,
+ fe_type = c("additive", "interactive"),
+ tau_type = c("homogeneous", "heterogeneous"),
+ sigma = 1,
+ seed = NULL
+) {
+ fe_type <- match.arg(fe_type)
+ tau_type <- match.arg(tau_type)
+ if (!is.null(seed)) set.seed(seed)
+
+ units <- 1:N
+ times <- 1:T
+ treated_units <- (N - N_tr + 1):N
+
+ alpha <- rnorm(N, 0, 1)
+ beta <- rnorm(T, 0, 1)
+
+ pop0 <- exp(rnorm(N, log(1e6), 0.6))
+ trend <- rnorm(N, 0, 0.02)
+
+ df <- tidyr::expand_grid(unit = units, time = times) %>%
+ mutate(
+ treated_unit = as.integer(unit %in% treated_units),
+ post = as.integer(time >= T0),
+ W = treated_unit * post,
+ pop = pop0[unit] * exp(trend[unit] * (time - 1))
+ )
+
+ tau_i <- rep(tau0, N)
+ if (tau_type == "heterogeneous") {
+ # illustrative: larger effects in smaller baseline populations
+ tau_i <- tau0 * (median(pop0) / pop0)
+ }
+
+ signal <- alpha[df$unit] + beta[df$time]
+ if (fe_type == "interactive") signal <- signal + alpha[df$unit] * beta[df$time]
+
+ df <- df %>%
+ mutate(
+ tau_it = tau_i[unit],
+ y = signal + W * tau_it + rnorm(n(), 0, sigma)
+ )
+
+ baseline_time <- T0 - 1
+ treated_baseline <- df %>%
+ filter(treated_unit == 1, time == baseline_time) %>%
+ select(unit, pop, tau_it)
+
+ true_tau_weighted <- with(treated_baseline, sum(tau_it * pop) / sum(pop))
+
+ list(df = df, T0 = T0, true_tau_weighted = true_tau_weighted)
+}
+
+
+estimate_methods <- function(sim) {
+
+ df <- sim$df
+ T0 <- sim$T0
+
+ # Basic SDID (unweighted)
+ tau_sdid <- run_sdid_long(df, T0)
+
+ # Solution 1: SDID on weighted-average treated unit
+ df_super <- make_weighted_treated_unit(df, T0, weight_col = "pop")
+ tau_sdid_super <- run_sdid_long(df_super, T0)
+
+ # Solution 2: weighted average of unit-level SDIDs
+ sol2 <- run_sdid_by_treated_and_average(df, T0, weight_col = "pop")
+
+ # Solution 3: Weighted SDID (direct incorporation of treated weights)
+ tau_sdid_weighted <- tryCatch(
+ run_sdid_weighted(df, T0, weight_col = "pop"),
+ error = function(e) NA
+ )
+
+ # DID
+ tau_did_unw <- did_twfe(df)
+ tau_did_w <- did_twfe(df, w = "pop")
+
+ tibble(
+ tau_sdid = as.numeric(tau_sdid),
+ tau_sdid_super = as.numeric(tau_sdid_super),
+ tau_sdid_unit_wavg = as.numeric(sol2$tau_weighted_average),
+ tau_sdid_weighted = as.numeric(tau_sdid_weighted),
+ tau_did_unw = as.numeric(tau_did_unw),
+ tau_did_w = as.numeric(tau_did_w)
+ )
+}
+
+B <- 100
+grid <- tidyr::expand_grid(
+ fe_type = c("additive", "interactive"),
+ tau_type = c("homogeneous", "heterogeneous")
+)
+
+sim_results <- grid %>%
+ mutate(draws = pmap(list(fe_type, tau_type), function(fe_type, tau_type) {
+ map_dfr(1:B, function(b) {
+ sim <- simulate_panel(fe_type = fe_type, tau_type = tau_type, seed = 1000 + b)
+ est <- estimate_methods(sim)
+ est %>%
+ mutate(
+ true_tau_weighted = sim$true_tau_weighted,
+ draw = b
+ )
+ })
+ })) %>%
+ unnest(draws)
+RMSE table (relative to the weighted true ATE):
+rmse_tbl <- sim_results %>%
+ pivot_longer( cols = starts_with("tau_") & !any_of(c("tau_type", "true_tau_weighted")),
+ names_to = "method",
+ values_to = "tau_hat") %>%
+ mutate(err = tau_hat - true_tau_weighted) %>%
+ group_by(fe_type, tau_type, method) %>%
+ summarise(
+ rmse = sqrt(mean(err^2, na.rm = TRUE)),
+ bias = mean(err, na.rm = TRUE),
+ sd = sd(err, na.rm = TRUE),
+ .groups = "drop"
+ ) %>%
+ arrange(fe_type, tau_type, method)
+
+knitr::kable(rmse_tbl, digits = 3, caption = "RMSE, bias, and SD of estimation error (tau_hat - tau_true_weighted)")
+| fe_type | +tau_type | +method | +rmse | +bias | +sd | +
|---|---|---|---|---|---|
| additive | +heterogeneous | +tau_did_unw | +0.739 | +0.685 | +0.279 | +
| additive | +heterogeneous | +tau_did_w | +0.128 | +-0.017 | +0.128 | +
| additive | +heterogeneous | +tau_sdid | +0.739 | +0.684 | +0.280 | +
| additive | +heterogeneous | +tau_sdid_super | +0.134 | +-0.020 | +0.133 | +
| additive | +heterogeneous | +tau_sdid_unit_wavg | +0.134 | +-0.019 | +0.134 | +
| additive | +heterogeneous | +tau_sdid_weighted | +0.134 | +-0.020 | +0.133 | +
| additive | +homogeneous | +tau_did_unw | +0.102 | +-0.011 | +0.102 | +
| additive | +homogeneous | +tau_did_w | +0.128 | +-0.017 | +0.127 | +
| additive | +homogeneous | +tau_sdid | +0.107 | +-0.011 | +0.107 | +
| additive | +homogeneous | +tau_sdid_super | +0.134 | +-0.020 | +0.133 | +
| additive | +homogeneous | +tau_sdid_unit_wavg | +0.134 | +-0.019 | +0.134 | +
| additive | +homogeneous | +tau_sdid_weighted | +0.134 | +-0.020 | +0.133 | +
| interactive | +heterogeneous | +tau_did_unw | +0.757 | +0.691 | +0.310 | +
| interactive | +heterogeneous | +tau_did_w | +0.206 | +-0.010 | +0.207 | +
| interactive | +heterogeneous | +tau_sdid | +0.746 | +0.689 | +0.287 | +
| interactive | +heterogeneous | +tau_sdid_super | +0.147 | +-0.014 | +0.147 | +
| interactive | +heterogeneous | +tau_sdid_unit_wavg | +0.147 | +-0.015 | +0.147 | +
| interactive | +heterogeneous | +tau_sdid_weighted | +0.148 | +-0.014 | +0.148 | +
| interactive | +homogeneous | +tau_did_unw | +0.160 | +-0.005 | +0.160 | +
| interactive | +homogeneous | +tau_did_w | +0.205 | +-0.010 | +0.206 | +
| interactive | +homogeneous | +tau_sdid | +0.119 | +-0.007 | +0.119 | +
| interactive | +homogeneous | +tau_sdid_super | +0.147 | +-0.014 | +0.147 | +
| interactive | +homogeneous | +tau_sdid_unit_wavg | +0.147 | +-0.015 | +0.147 | +
| interactive | +homogeneous | +tau_sdid_weighted | +0.148 | +-0.014 | +0.148 | +
Distribution plots (actual minus estimated ATE):
+plot_df <- sim_results %>%
+ pivot_longer(
+ cols = starts_with("tau_") & !any_of(c("tau_type", "true_tau_weighted")),
+ names_to = "method",
+ values_to = "tau_hat"
+ ) %>%
+ mutate(
+ diff = tau_hat - true_tau_weighted,
+ method = recode(method,
+ tau_sdid = "SDID (unweighted)",
+ tau_sdid_super = "Sol. 1: Weighted avg treated",
+ tau_sdid_unit_wavg = "Sol. 2: Avg of unit SDIDs",
+ tau_sdid_weighted = "Sol. 3: Weighted SDID",
+ tau_did_unw = "DID (unweighted)",
+ tau_did_w = "DID (weighted)"
+ )
+ )
+
+# Common x-axis limits across BOTH plots
+x_lim <- range(plot_df$diff, na.rm = TRUE)
+
+# Homogeneous plot
+p_homogeneous <- plot_df %>%
+ filter(tau_type == "homogeneous") %>%
+ ggplot(aes(x = diff)) +
+ geom_histogram(bins = 35) +
+ geom_vline(xintercept = 0, linetype = "dashed", color = "red") +
+ coord_cartesian(xlim = x_lim) +
+ facet_grid(fe_type ~ method, scales = "free_y") +
+ labs(
+ title = "Simulation error distributions: Homogeneous treatment",
+ x = "tau_hat - tau_true_weighted",
+ y = "Count"
+ )
+
+# Heterogeneous plot
+p_heterogeneous <- plot_df %>%
+ filter(tau_type == "heterogeneous") %>%
+ ggplot(aes(x = diff)) +
+ geom_histogram(bins = 35) +
+ geom_vline(xintercept = 0, linetype = "dashed", color = "red") +
+ coord_cartesian(xlim = x_lim) +
+ facet_grid(fe_type ~ method, scales = "free_y") +
+ labs(
+ title = "Simulation error distributions: Heterogeneous treatment",
+ x = "tau_hat - tau_true_weighted",
+ y = "Count"
+ )
+
+p_homogeneous
++Simulation: distribution of estimation error (tau_hat - +tau_true_weighted). +
+p_heterogeneous
++Simulation: distribution of estimation error (tau_hat - +tau_true_weighted). +
+We apply our discussion of treated-unit weighting to Borgschulte and +Vogler (2020), who study whether the Affordable Care Act (ACA) Medicaid +expansion reduced mortality. Their core estimand is the change in +county-level mortality in expansion states relative to non-expansion +states in the years following the policy change, with a particular focus +on working-age adults (ages 20–64).
+Research Question: Did the 2014 ACA Medicaid +expansion reduce mortality rates among working-age adults (ages +20–64)?
+Key Finding: The authors find a reduction in +all-cause mortality of 11.36 deaths per 100,000 people (a 3.6% +decrease), with effects largely driven by reductions in “amenable” +causes of death—those most likely to be averted through optimal +healthcare access—particularly cardiovascular and respiratory +mortality.
+Methodological Innovation: The paper’s primary +methodological contribution is its use of double-lasso +propensity score weighting to address pre-existing differences +in mortality trends between expansion and non-expansion counties. This +data-driven approach provides two key advantages:
+Prevention of overfitting: The double-lasso +procedure (Belloni et al., 2014) selects variables for inclusion in the +propensity score model by fitting two lasso regressions: one predicting +the outcome (mortality) and one predicting treatment (Medicaid +expansion). The union of variables with non-zero coefficients in either +regression is included in the final propensity score model.
Cross-validation of parallel trends: The authors +deliberately exclude mortality outcomes from the four years preceding +the 2014 expansion from the propensity score model. This allows them to +verify that the reweighted data displays flat pre-trends in this +held-out window—a crucial check on the validity of the control group +construction.
Variables Used in the Propensity Score Model:
+The double-lasso procedure selects from a rich set of pre-expansion +county-level variables:
+Estimation Strategy:
+The authors estimate event-study and difference-in-differences models +of the form: \[ +Y_{cst} = \alpha_c + \gamma_t + \beta_1 \text{MedicaidExpansion}_{cs} + +\beta X_{cst} + \epsilon_{cst} +\] where observations are weighted by county population +multiplied by propensity score weights: \(T + +(1-T) \times \frac{p}{1-p}\), where \(T\) is a treatment indicator and \(p\) is the estimated propensity score. +Counties with propensity scores outside the overlap region are trimmed +from the sample.
+This setting is useful for our purposes for two reasons. First, it +naturally features many treated units (counties in expansion states) and +many control units (counties in non-expansion states), which makes the +treated-unit aggregation problem salient whenever one wants an estimand +that reflects population exposure rather than an equal-weighted county +average. Second, Borgschulte and Vogler motivate their reweighting +strategy precisely because DID is complicated by systematic +pre-expansion level differences in mortality rates between treatment and +control areas; in such environments, methods that reweight units to +improve pre-treatment balance—whether via propensity-score weights or +SDID’s synthetic weighting—are especially relevant to assess +side-by-side.
+In our partial replication, we implement three classes of estimators +on a common analysis sample:
+The objective is not to reproduce every modeling choice in +Borgschulte and Vogler (2020), but to use their empirical context to +illustrate how the choice of treated-unit weights can change the +estimand and, in finite samples, the behavior of SDID relative to DID in +the presence of meaningful baseline differences.
+A key practical constraint is data access. Borgschulte and Vogler +(2020) rely on restricted-access microdata covering all deaths in the +United States, which we do not have. Consequently, our replication uses +publicly available mortality data from CDC WONDER and imposes additional +restrictions to align the public data structure with the panel +requirements of our methods.
+Our available covariates include: percent white, population ages +20–64, percent ages 55–64, logged population subgroups, and unemployment +rate. We lack several variables used in the original propensity score +model (poverty rate, median income, political variables, uninsured +rate). These constraints limit exact comparability to the published +results, but they still provide a clean environment to demonstrate the +paper’s main point: when many treated units differ substantially in +size, population weighting is not a cosmetic choice—it changes the +target parameter and can materially affect the estimate and its +interpretation.
+## Data (created previously)
+data_path <- normalizePath(file.path("..", "data", "analysis_data.csv"), mustWork = FALSE)
+
+## Check to make sure data exist
+if (!is.na(data_path)) {
+
+ message("Loading data: ", data_path)
+ panel <- read_csv(data_path, show_col_types = FALSE)
+
+ ## Define control variables (matching those used in BV 2020 where available)
+ ## BV uses: unemployment rate, percent white, percent 55-64, log population 20-64,
+ ## log population 35-44, log female population 20-64, and additional controls we lack
+ control_vars <- c("pct_white", "pop_20_64", "pct_55_64", "log_35_44", "log_f_20_64", "unemp")
+
+ ## Basic version for now, with controls to come
+ panel <- panel %>% dplyr::select(time = year,
+ unit = fips,
+ y = crude_rate,
+ treated_unit = expansion,
+ pop = population,
+ all_of(control_vars))
+
+ required <- c("unit", "time", "y", "treated_unit")
+ if (!all(required %in% names(panel))) {
+ stop("Replication data found, but missing required columns: unit, time, y, treated_unit (and optional pop).")
+ }
+
+ # Treatment begins in 2014
+ T0_emp <- 2014
+ panel <- panel %>% mutate(post = as.integer(time >= T0_emp))
+
+ message(sprintf("Panel: %d observations, %d units, years %d-%d",
+ nrow(panel), n_distinct(panel$unit),
+ min(panel$time), max(panel$time)))
+ message(sprintf("Treated units: %d, Control units: %d",
+ n_distinct(panel$unit[panel$treated_unit == 1]),
+ n_distinct(panel$unit[panel$treated_unit == 0])))
+
+ ## ============================================================
+ ## PANEL A: Standard DID Estimates
+ ## ============================================================
+
+ ## Estimated Models (unweighted) (DiD)
+ tau_emp_did_unw_nc <- did_twfe(panel)
+ tau_emp_did_unw_wc <- did_twfe(panel, controls = control_vars)
+
+ ## Estimated Models (Population-Weighted) (DiD)
+ tau_emp_did_w_nc <- did_twfe(panel, w = "pop")
+ tau_emp_did_w_wc <- did_twfe(panel, controls = control_vars, w = "pop")
+
+ ## ============================================================
+ ## PANEL B: Double-Lasso Propensity Score Weighted DID (BV Approach)
+ ## ============================================================
+
+ ## Run double-lasso PS-weighted DID (replicating Borgschulte-Vogler methodology)
+ ## This uses the double-lasso procedure to select controls and compute PS weights
+
+ tau_emp_dlps <- tryCatch({
+ did_double_lasso_ps(
+ df = panel,
+ outcome_var = "y",
+ treatment_var = "treated_unit",
+ post_var = "post",
+ covariate_vars = control_vars,
+ unit = "unit",
+ time = "time",
+ pre_period_end = T0_emp - 1,
+ cluster = "unit",
+ controls = NULL, # Use double-lasso selected controls
+ trim_quantiles = c(0.038, 0.971), # Matching BV trimming
+ return_model = TRUE
+ )
+ }, error = function(e) {
+ message("Double-lasso PS estimation error: ", e$message)
+ list(tau_hat = NA, vars_selected = character(0), n_units_trimmed = NA)
+ })
+
+ ## Also run with pre-specified controls (not double-lasso selected)
+ tau_emp_dlps_fixed <- tryCatch({
+ did_double_lasso_ps(
+ df = panel,
+ outcome_var = "y",
+ treatment_var = "treated_unit",
+ post_var = "post",
+ covariate_vars = control_vars,
+ unit = "unit",
+ time = "time",
+ pre_period_end = T0_emp - 1,
+ cluster = "unit",
+ controls = control_vars, # Use all controls (override double-lasso selection)
+ trim_quantiles = c(0.038, 0.971),
+ return_model = FALSE
+ )
+ }, error = function(e) {
+ message("Double-lasso PS (fixed controls) error: ", e$message)
+ list(tau_hat = NA, vars_selected = character(0))
+ })
+
+ ## ============================================================
+ ## PANEL C: SDID Estimates
+ ## ============================================================
+
+ ## Estimate models (unweighted) (SDID)
+ tau_emp_sdid_unw_nc <- run_sdid_long(panel, T0_emp)
+ tau_emp_sdid_unw_wc <- run_sdid_long(panel, T0_emp, controls = control_vars)
+
+ ## Solution 1: SDID on weighted-average treated unit
+ df_super <- make_weighted_treated_unit(panel, T0_emp, weight_col = "pop")
+ tau_emp_sdid_w1_nc <- run_sdid_long(df_super, T0_emp)
+ df_super_wc <- make_weighted_treated_unit(panel, T0_emp, weight_col = "pop",
+ controls = control_vars)
+ tau_emp_sdid_w1_wc <- run_sdid_long(df_super_wc, T0_emp, controls = control_vars)
+
+ ## Solution 2: Weighted average of unit-level SDIDs
+ tau_emp_sdid_w2_nc <- run_sdid_by_treated_and_average(panel, T0_emp, weight_col = "pop")
+ tau_emp_sdid_w2_wc <- run_sdid_by_treated_and_average(panel, T0_emp, weight_col = "pop",
+ controls = control_vars)
+
+ ## Solution 3: Weighted SDID (direct incorporation of weights)
+ tau_emp_sdid_w3_nc <- tryCatch(
+ run_sdid_weighted(panel, T0_emp, weight_col = "pop"),
+ error = function(e) { message("Sol 3 (no controls) error: ", e$message); NA }
+ )
+ tau_emp_sdid_w3_wc <- tryCatch(
+ run_sdid_weighted(panel, T0_emp, weight_col = "pop", controls = control_vars),
+ error = function(e) { message("Sol 3 (w/ controls) error: ", e$message); NA }
+ )
+
+ ## ============================================================
+ ## Results Tables
+ ## ============================================================
+
+ ## Table 1: All estimation methods comparison
+ out <- tibble(
+ Method = c(
+ "**Panel A: Standard DID**", "", "", "",
+ "**Panel B: Double-Lasso PS DID (BV Approach)**", "",
+ "**Panel C: SDID Methods**", "", "", "", "", ""
+ ),
+ Specification = c(
+ "DID (Unweighted)", "DID (Unweighted) + Controls",
+ "DID (Pop-Weighted)", "DID (Pop-Weighted) + Controls",
+ "DL-PS DID (selected controls)", "DL-PS DID (all controls)",
+ "SDID (Unweighted)", "SDID (Unweighted) + Controls",
+ "Sol. 1: Weighted avg treated", "Sol. 1 + Controls",
+ "Sol. 2: Avg of unit SDIDs", "Sol. 2 + Controls"
+ ),
+ Estimate = c(
+ as.numeric(tau_emp_did_unw_nc), as.numeric(tau_emp_did_unw_wc),
+ as.numeric(tau_emp_did_w_nc), as.numeric(tau_emp_did_w_wc),
+ as.numeric(tau_emp_dlps$tau_hat), as.numeric(tau_emp_dlps_fixed$tau_hat),
+ as.numeric(tau_emp_sdid_unw_nc), as.numeric(tau_emp_sdid_unw_wc),
+ as.numeric(tau_emp_sdid_w1_nc), as.numeric(tau_emp_sdid_w1_wc),
+ as.numeric(tau_emp_sdid_w2_nc$tau_weighted_average),
+ as.numeric(tau_emp_sdid_w2_wc$tau_weighted_average)
+ )
+ )
+
+ knitr::kable(out, digits = 3,
+ caption = "Table 1: Replication Estimates - Effect of ACA Medicaid Expansion on Mortality",
+ col.names = c("", "Specification", "Estimate (deaths/100k)"))
+
+} else {
+ cat("No replication data found. Put data/analysis_data.csv in the repo to enable this section.")
+}
+| + | Specification | +Estimate (deaths/100k) | +
|---|---|---|
| Panel A: Standard DID | +DID (Unweighted) | +0.246 | +
| + | DID (Unweighted) + Controls | +-3.228 | +
| + | DID (Pop-Weighted) | +3.406 | +
| + | DID (Pop-Weighted) + Controls | +-4.201 | +
| Panel B: Double-Lasso PS DID (BV +Approach) | +DL-PS DID (selected controls) | +-3.255 | +
| + | DL-PS DID (all controls) | +-2.730 | +
| Panel C: SDID Methods | +SDID (Unweighted) | +0.350 | +
| + | SDID (Unweighted) + Controls | +-2.894 | +
| + | Sol. 1: Weighted avg treated | +-13.459 | +
| + | Sol. 1 + Controls | +-12.253 | +
| + | Sol. 2: Avg of unit SDIDs | +-14.135 | +
| + | Sol. 2 + Controls | +-12.081 | +
The following shows which variables were selected by the double-lasso +procedure for inclusion in the propensity score model:
+if (exists("tau_emp_dlps") && !is.null(tau_emp_dlps$ps_results)) {
+
+ cat("Double-Lasso Variable Selection Results:\n")
+ cat("=========================================\n\n")
+
+ ps_res <- tau_emp_dlps$ps_results
+
+ cat(sprintf("Variables selected from OUTCOME model (mortality): %d\n",
+ length(ps_res$vars_outcome)))
+ if (length(ps_res$vars_outcome) > 0) {
+ cat(sprintf(" %s\n", paste(ps_res$vars_outcome, collapse = ", ")))
+ }
+
+ cat(sprintf("\nVariables selected from TREATMENT model (expansion): %d\n",
+ length(ps_res$vars_treatment)))
+ if (length(ps_res$vars_treatment) > 0) {
+ cat(sprintf(" %s\n", paste(ps_res$vars_treatment, collapse = ", ")))
+ }
+
+ cat(sprintf("\nUnion of selected variables (used in PS model): %d\n",
+ length(ps_res$vars_selected)))
+ if (length(ps_res$vars_selected) > 0) {
+ cat(sprintf(" %s\n", paste(ps_res$vars_selected, collapse = ", ")))
+ }
+
+ cat(sprintf("\nPropensity score trimming:\n"))
+ cat(sprintf(" Bounds: [%.3f, %.3f]\n", ps_res$trim_bounds[1], ps_res$trim_bounds[2]))
+ cat(sprintf(" Units trimmed: %d\n", ps_res$n_trimmed))
+
+ # Show propensity score distribution
+ if (!is.null(ps_res$baseline_data)) {
+ ps_summary <- ps_res$baseline_data %>%
+ group_by(treatment) %>%
+ summarise(
+ n = n(),
+ ps_mean = mean(ps),
+ ps_sd = sd(ps),
+ ps_min = min(ps),
+ ps_max = max(ps),
+ .groups = "drop"
+ ) %>%
+ mutate(treatment = ifelse(treatment == 1, "Expansion", "Non-expansion"))
+
+ cat("\nPropensity Score Distribution by Treatment Status:\n")
+ print(knitr::kable(ps_summary, digits = 3))
+ }
+}
+## Double-Lasso Variable Selection Results:
+## =========================================
+##
+## Variables selected from OUTCOME model (mortality): 5
+## pct_white, pct_55_64, log_35_44, log_f_20_64, unemp
+##
+## Variables selected from TREATMENT model (expansion): 4
+## pct_white, pct_55_64, log_f_20_64, unemp
+##
+## Union of selected variables (used in PS model): 5
+## pct_white, pct_55_64, log_35_44, log_f_20_64, unemp
+##
+## Propensity score trimming:
+## Bounds: [0.033, 0.622]
+## Units trimmed: 164
+##
+## Propensity Score Distribution by Treatment Status:
+##
+##
+## |treatment | n| ps_mean| ps_sd| ps_min| ps_max|
+## |:-------------|----:|-------:|-----:|------:|------:|
+## |Non-expansion | 1577| 0.306| 0.175| 0.001| 0.759|
+## |Expansion | 864| 0.441| 0.124| 0.001| 0.739|
+if (exists("tau_emp_dlps") && !is.null(tau_emp_dlps$ps_results$baseline_data)) {
+
+ ps_data <- tau_emp_dlps$ps_results$baseline_data %>%
+ mutate(Group = ifelse(treatment == 1, "Expansion Counties", "Non-expansion Counties"))
+
+ ggplot(ps_data, aes(x = ps, fill = Group)) +
+ geom_histogram(alpha = 0.6, position = "identity", bins = 50) +
+ geom_vline(xintercept = tau_emp_dlps$ps_results$trim_bounds,
+ linetype = "dashed", color = "red") +
+ labs(
+ title = "Propensity Score Distribution",
+ subtitle = "Red dashed lines indicate trimming bounds",
+ x = "Propensity Score",
+ y = "Count",
+ fill = ""
+ ) +
+ theme_minimal() +
+ theme(legend.position = "bottom")
+}
++Propensity score distribution by treatment status +
+DRAFT: To be filled in.
+DRAFT: To be filled in.
+Abadie, Alberto, and Javier Gardeazabal. 2003. “The Economic Costs of +Conflict: A Case Study of the Basque Country.” American Economic +Review 93(1): 113–132.
+Abadie, Alberto, Alexis Diamond, and Jens Hainmueller. 2010. +“Synthetic Control Methods for Comparative Case Studies: Estimating the +Effect of California’s Tobacco Control Program.” Journal of the +American Statistical Association 105(490): 493–505.
+Arkhangelsky, Dmitry, Susan Athey, David A. Hirshberg, Guido W. +Imbens, and Stefan Wager. 2021. “Synthetic Difference-in-Differences.” +American Economic Review 111(12): 4088–4118.
+Belloni, Alexandre, Victor Chernozhukov, and Christian Hansen. 2014. +“Inference on Treatment Effects after Selection among High-Dimensional +Controls.” Review of Economic Studies 81(2): 608–650.
+Borgschulte, Mark, and Jacob Vogler. 2020. “Did the ACA Medicaid +Expansion Save Lives?” Journal of Health Economics 72: 102333. +https://doi.org/10.1016/j.jhealeco.2020.102333.
+library(synthdid)
+library(ggplot2)
+set.seed(42)
+
+# Source the weighted functions (in correct order for dependencies)
+# Note: The base synthdid package provides helper functions like sc.weight.fw, contract3
+source("../R_weighted/utils.R")
+source("../R_weighted/solver.R")
+source("../R_weighted/synthdid.R")
+source("../R_weighted/vcov.R")
+source("../R_weighted/summary.R")
+source("../R_weighted/print.R")This vignette demonstrates the weighted synthetic +difference-in-differences estimator, which extends the standard SDID to +allow for user-specified weights on treated units. This is particularly +useful when:
+We simulate a panel dataset with: - 40 control units - 3 treated +units with different populations and treatment effects - 20 +pre-treatment periods and 5 post-treatment periods
+# Parameters
+N0 <- 40 # Control units
+N1 <- 3 # Treated units
+T0 <- 20 # Pre-treatment periods
+T1 <- 5 # Post-treatment periods
+N <- N0 + N1
+T_total <- T0 + T1
+
+# Population weights for treated units (e.g., reflecting state populations)
+# Unit 1: Large state (60% of treated population)
+# Unit 2: Medium state (30% of treated population)
+# Unit 3: Small state (10% of treated population)
+pop_weights <- c(0.60, 0.30, 0.10)
+
+# Heterogeneous treatment effects by unit
+# Large state: small effect (tau = 5)
+# Medium state: medium effect (tau = 15)
+# Small state: large effect (tau = 30)
+tau_by_unit <- c(5, 15, 30)
+
+# True population-weighted average treatment effect
+tau_true_weighted <- sum(pop_weights * tau_by_unit)
+# True simple average treatment effect
+tau_true_simple <- mean(tau_by_unit)
+
+cat("True treatment effects by unit:\n")
+#> True treatment effects by unit:
+cat(sprintf(" Unit 1 (pop weight %.0f%%): tau = %.1f\n", pop_weights[1]*100, tau_by_unit[1]))
+#> Unit 1 (pop weight 60%): tau = 5.0
+cat(sprintf(" Unit 2 (pop weight %.0f%%): tau = %.1f\n", pop_weights[2]*100, tau_by_unit[2]))
+#> Unit 2 (pop weight 30%): tau = 15.0
+cat(sprintf(" Unit 3 (pop weight %.0f%%): tau = %.1f\n", pop_weights[3]*100, tau_by_unit[3]))
+#> Unit 3 (pop weight 10%): tau = 30.0
+cat(sprintf("\nTrue simple average effect: %.1f\n", tau_true_simple))
+#>
+#> True simple average effect: 16.7
+cat(sprintf("True population-weighted effect: %.1f\n", tau_true_weighted))
+#> True population-weighted effect: 10.5# Generate outcome matrix Y
+# Y_it = alpha_i + beta_t + epsilon_it + tau_i * W_it
+
+# Unit fixed effects
+alpha <- c(rnorm(N0, mean = 50, sd = 10),
+ rnorm(N1, mean = 55, sd = 5))
+
+# Time fixed effects (with a trend)
+beta <- cumsum(rnorm(T_total, mean = 0.5, sd = 1))
+
+# Generate Y matrix
+Y <- matrix(0, nrow = N, ncol = T_total)
+for (i in 1:N) {
+ for (t in 1:T_total) {
+ Y[i, t] <- alpha[i] + beta[t] + rnorm(1, sd = 2)
+ }
+}
+
+# Add treatment effects for treated units in post-period
+for (j in 1:N1) {
+ i <- N0 + j
+ for (t in (T0 + 1):T_total) {
+ Y[i, t] <- Y[i, t] + tau_by_unit[j]
+ }
+}
+
+# Add row and column names
+rownames(Y) <- c(paste0("Control_", 1:N0), paste0("Treated_", 1:N1))
+colnames(Y) <- paste0("t", 1:T_total)
+
+cat("Dimensions of Y:", nrow(Y), "units x", ncol(Y), "periods\n")
+#> Dimensions of Y: 43 units x 25 periods
+cat("N0 =", N0, "control units, N1 =", N1, "treated units\n")
+#> N0 = 40 control units, N1 = 3 treated units
+cat("T0 =", T0, "pre-treatment periods, T1 =", T1, "post-treatment periods\n")
+#> T0 = 20 pre-treatment periods, T1 = 5 post-treatment periodsFirst, we estimate the treatment effect using the standard SDID +estimator, which gives equal weight to all treated units.
+# Standard SDID (equal weights on treated units)
+tau_sdid <- synthdid_estimate(Y, N0, T0)
+tau_sc <- sc_estimate(Y, N0, T0)
+tau_did <- did_estimate(Y, N0, T0)
+
+cat("Standard Estimates (equal weights on treated units):\n")
+#> Standard Estimates (equal weights on treated units):
+cat(sprintf(" Diff-in-Diff: %.2f\n", tau_did))
+#> Diff-in-Diff: 16.53
+cat(sprintf(" Synthetic Control: %.2f\n", tau_sc))
+#> Synthetic Control: 16.98
+cat(sprintf(" Synthetic Diff-in-Diff: %.2f\n", tau_sdid))
+#> Synthetic Diff-in-Diff: 16.95
+cat(sprintf("\nTrue simple average effect: %.2f\n", tau_true_simple))
+#>
+#> True simple average effect: 16.67Now we use the weighted estimator with population weights. This gives +more weight to larger treated units.
+# Weighted SDID (population weights on treated units)
+tau_sdid_w <- synthdid_estimate_weighted(Y, N0, T0, treated.weights = pop_weights)
+tau_sc_w <- sc_estimate_weighted(Y, N0, T0, treated.weights = pop_weights)
+tau_did_w <- did_estimate_weighted(Y, N0, T0, treated.weights = pop_weights)
+
+cat("Weighted Estimates (population weights on treated units):\n")
+#> Weighted Estimates (population weights on treated units):
+cat(sprintf(" Diff-in-Diff: %.2f\n", tau_did_w))
+#> Diff-in-Diff: 10.25
+cat(sprintf(" Synthetic Control: %.2f\n", tau_sc_w))
+#> Synthetic Control: 10.98
+cat(sprintf(" Synthetic Diff-in-Diff: %.2f\n", tau_sdid_w))
+#> Synthetic Diff-in-Diff: 10.66
+cat(sprintf("\nTrue population-weighted effect: %.2f\n", tau_true_weighted))
+#>
+#> True population-weighted effect: 10.50results <- data.frame(
+ Estimator = c("Diff-in-Diff", "Synthetic Control", "Synthetic Diff-in-Diff"),
+ Unweighted = c(as.numeric(tau_did), as.numeric(tau_sc), as.numeric(tau_sdid)),
+ Weighted = c(as.numeric(tau_did_w), as.numeric(tau_sc_w), as.numeric(tau_sdid_w)),
+ True_Simple = rep(tau_true_simple, 3),
+ True_Weighted = rep(tau_true_weighted, 3)
+)
+
+results$Unweighted_Error <- results$Unweighted - results$True_Simple
+results$Weighted_Error <- results$Weighted - results$True_Weighted
+
+knitr::kable(results, digits = 2,
+ caption = "Comparison of Weighted vs Unweighted Estimates")| Estimator | +Unweighted | +Weighted | +True_Simple | +True_Weighted | +Unweighted_Error | +Weighted_Error | +
|---|---|---|---|---|---|---|
| Diff-in-Diff | +16.53 | +10.25 | +16.67 | +10.5 | +-0.14 | +-0.25 | +
| Synthetic Control | +16.98 | +10.98 | +16.67 | +10.5 | +0.31 | +0.48 | +
| Synthetic Diff-in-Diff | +16.95 | +10.66 | +16.67 | +10.5 | +0.28 | +0.16 | +
The key insight is that with heterogeneous treatment effects across +treated units, the choice of weights matters:
+Unweighted (simple average): Each treated unit +contributes equally to the average treatment effect. This answers: “What +is the average effect across treated units?”
Weighted (population-weighted): Larger units +contribute more to the average. This answers: “What is the average +effect per person in the treated population?”
In our simulation: - The largest treated unit (60% of population) has +the smallest effect (tau = 5) - The smallest treated unit (10% of +population) has the largest effect (tau = 30)
+Therefore, the population-weighted effect (10.5) is smaller than the +simple average (16.7).
+# Compare the treated unit weights
+weight_df <- data.frame(
+ Unit = rep(paste0("Treated_", 1:N1), 2),
+ Weight = c(rep(1/N1, N1), pop_weights),
+ Type = rep(c("Unweighted (equal)", "Population-weighted"), each = N1),
+ Effect = rep(tau_by_unit, 2)
+)
+
+ggplot(weight_df, aes(x = Unit, y = Weight, fill = Type)) +
+ geom_bar(stat = "identity", position = "dodge", alpha = 0.8) +
+ geom_text(aes(label = sprintf("tau=%.0f", Effect)),
+ position = position_dodge(width = 0.9), vjust = -0.5, size = 3) +
+ scale_fill_manual(values = c("steelblue", "coral")) +
+ labs(title = "Treated Unit Weights: Equal vs Population-Weighted",
+ subtitle = sprintf("Simple avg effect = %.1f, Population-weighted effect = %.1f",
+ tau_true_simple, tau_true_weighted),
+ y = "Weight", x = "Treated Unit") +
+ theme_minimal() +
+ theme(legend.position = "bottom")# Get the omega weights from both estimates
+omega_unweighted <- attr(tau_sdid, 'weights')$omega
+omega_weighted <- attr(tau_sdid_w, 'weights')$omega
+
+# Top control units by weight
+top_n <- 10
+top_unweighted <- head(sort(omega_unweighted, decreasing = TRUE), top_n)
+top_weighted <- head(sort(omega_weighted, decreasing = TRUE), top_n)
+
+cat("Top", top_n, "control unit weights (unweighted SDID):\n")
+#> Top 10 control unit weights (unweighted SDID):
+print(round(top_unweighted, 4))
+#> [1] 0.0403 0.0402 0.0396 0.0380 0.0377 0.0354 0.0353 0.0350 0.0324 0.0322
+
+cat("\nTop", top_n, "control unit weights (weighted SDID):\n")
+#>
+#> Top 10 control unit weights (weighted SDID):
+print(round(top_weighted, 4))
+#> [1] 0.0434 0.0396 0.0391 0.0390 0.0353 0.0342 0.0337 0.0330 0.0327 0.0321We can compute standard errors for the weighted estimates using +bootstrap, jackknife, or placebo methods.
+# Compute standard errors (using jackknife for speed)
+se_sdid <- sqrt(vcov(tau_sdid, method = "jackknife"))
+se_sdid_w <- sqrt(vcov(tau_sdid_w, method = "jackknife"))
+
+cat("Standard Errors (jackknife):\n")
+#> Standard Errors (jackknife):
+cat(sprintf(" Unweighted SDID: %.2f (SE = %.2f)\n", tau_sdid, se_sdid))
+#> Unweighted SDID: 16.95 (SE = 9.05)
+cat(sprintf(" Weighted SDID: %.2f (SE = %.2f)\n", tau_sdid_w, se_sdid_w))
+#> Weighted SDID: 10.66 (SE = 8.58)
+
+# 95% confidence intervals
+cat("\n95% Confidence Intervals:\n")
+#>
+#> 95% Confidence Intervals:
+cat(sprintf(" Unweighted: (%.2f, %.2f)\n",
+ tau_sdid - 1.96*se_sdid, tau_sdid + 1.96*se_sdid))
+#> Unweighted: (-0.78, 34.67)
+cat(sprintf(" Weighted: (%.2f, %.2f)\n",
+ tau_sdid_w - 1.96*se_sdid_w, tau_sdid_w + 1.96*se_sdid_w))
+#> Weighted: (-6.15, 27.48)cat("Summary of Weighted SDID Estimate:\n")
+#> Summary of Weighted SDID Estimate:
+
+# Extract components manually to avoid S4 dispatch issues
+setup = attr(tau_sdid_w, 'setup')
+weights = attr(tau_sdid_w, 'weights')
+tw = attr(tau_sdid_w, 'treated.weights')
+pw = attr(tau_sdid_w, 'period.weights')
+
+cat(sprintf(" Estimate: %.3f\n", as.numeric(tau_sdid_w)))
+#> Estimate: 10.663
+cat(sprintf(" N0 = %d, N1 = %d, T0 = %d, T1 = %d\n",
+ setup$N0, nrow(setup$Y) - setup$N0, setup$T0, ncol(setup$Y) - setup$T0))
+#> N0 = 40, N1 = 3, T0 = 20, T1 = 5
+cat(sprintf(" Effective N0: %.1f\n", 1/sum(weights$omega^2)))
+#> Effective N0: 35.1
+cat(sprintf(" Effective N1: %.1f\n", 1/sum(tw^2)))
+#> Effective N1: 2.2
+cat("\nTreated unit weights:\n")
+#>
+#> Treated unit weights:
+print(round(tw, 3))
+#> [1] 0.6 0.3 0.1
+cat("\nTop 5 control unit weights (omega):\n")
+#>
+#> Top 5 control unit weights (omega):
+print(round(head(sort(weights$omega, decreasing = TRUE), 5), 3))
+#> [1] 0.043 0.040 0.039 0.039 0.035| Scenario | +Recommended Approach | +
|---|---|
| Policy evaluation for population | +Use population weights | +
| Effect on “typical” treated unit | +Use equal weights | +
| Treatment effects vary by unit size | +Consider both; report as robustness | +
| Units represent different subgroups | +Weight by subgroup importance | +
The weighted SDID estimator provides flexibility when treatment +effects are heterogeneous across treated units. By allowing +user-specified weights, researchers can:
+The choice between weighted and unweighted estimates should be guided +by the research question: Are you interested in the average effect per +treated unit, or the average effect per person/entity in the treated +population?
+