diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..d5014eb --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,35 @@ +on: + schedule: + - cron: '0 2 * * *' + workflow_dispatch: + +jobs: + process: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - run: sudo apt-get update + - run: sudo apt-get install -y libcurl4-openssl-dev libharfbuzz-dev libfribidi-dev libfreetype6-dev libpng-dev libtiff5-dev libjpeg-dev libudunits2-dev libproj-dev libgdal-dev libgeos-dev cmake libnode-dev + - uses: actions/checkout@v4 + with: + ssh-key: ${{ secrets.DEPLOY_KEY }} + fetch-depth: 0 + - uses: r-lib/actions/setup-r@v2 + - uses: r-lib/actions/setup-renv@v2 + - run: Rscript -e "renv::install('dissc-yale/dcf')" + - run: Rscript scripts/build.R + - id: status + run: | + if git status --porcelain; then + echo "changed=false" >> $GITHUB_OUTPUT + else + echo "changed=true" >> $GITHUB_OUTPUT + fi + - if: ${{ steps.status.outputs.changed == 'true' }} + run: | + git config user.email "actions@github.com" + git config user.name "GitHub Actions" + git add -A + git commit -m "scheduled data build" + git push diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c67eb69 --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +*.Rproj +.Rproj.user +*.Rprofile +*.Rhistory +*.Rdata +.DS_Store +renv + +# Claude Code local settings (machine-specific) +.claude/settings.local.json + +# Bulk raw extracts. These are a download cache, not source data: each source's +# ingest.R rebuilds any that are missing. Excluded because they dominate the +# repo (77 MB for nces_acs_ed against 35 MB of standardized output) and are +# rewritten whenever a vintage is refreshed. Rebuilding nces_acs_ed's takes +# roughly 50 minutes of EDGE API calls -- see data/nces_acs_ed/README.md. +# +# The codebook_*.csv.xz files alongside them are deliberately NOT ignored: they +# total 85 KB and record every ACS cell's label and ancestor path per vintage, +# which is what the ingest matches against and what you read when a measure +# comes out NA for a vintage. +data/nces_acs_ed/raw/cells_*.csv.xz diff --git a/README.md b/README.md index 17e9442..023b24c 100644 --- a/README.md +++ b/README.md @@ -1 +1,41 @@ -# nces-data \ No newline at end of file +# nces-data + +NCES education data standardized for the PopHIVE platform, as a +[Data Collection Framework](https://dissc-yale.github.io/dcf/) project. + +This repository is separate from [PopHIVE/Ingest](https://github.com/PopHIVE/Ingest) +because its natural geography is the **school district**, identified by a 7-digit +NCES LEAID, which has no place in the FIPS-keyed standard format that `Ingest` +uses. + +## Sources + +| Source | What it covers | Geographies | Vintages | +|---|---|---|---| +| [`nces_acs_ed`](data/nces_acs_ed) | ACS-ED Tables: ACS five-year estimates retabulated onto school district boundaries — enrollment, child poverty, language, health insurance, high school completion | national, state, ~13,400 school districts | 2005-2009 through 2019-2023 | + +## Usage + +```r +# check every source +dcf::dcf_check() + +# process one source +dcf::dcf_process("nces_acs_ed") + +# process everything +dcf::dcf_process() +``` + +## Conventions + +Standardized outputs follow the PopHIVE format — `geography` and `time` index +columns, `time` as `YYYY-mm-dd`, gzip-compressed CSV in each source's +`standard/` directory — with one documented departure: in district-level files +`geography` holds an NCES LEAID rather than a FIPS code, and the containing +state's 2-digit FIPS is in a separate `state` column. Each source's README states +which of its files this applies to. + +Annual data uses the last day of the year for `time`. For ACS five-year periods +that is the last day of the period's final year, and the period as published is +kept alongside it in a `period` column. diff --git a/data/nces_acs_ed/README.md b/data/nces_acs_ed/README.md new file mode 100644 index 0000000..8462421 --- /dev/null +++ b/data/nces_acs_ed/README.md @@ -0,0 +1,236 @@ +# nces_acs_ed + +NCES ACS-ED Tables: American Community Survey five-year estimates retabulated +onto school district boundaries, for national, state and school district +geographies. + +- Source page: +- Vintages: 15, from 2005-2009 through 2019-2023 +- Run with `dcf::dcf_process("nces_acs_ed")` from the project root + +## Outputs + +| File | Rows | `geography` holds | +|---|---|---| +| `standard/data_state.csv.gz` | 795 — 15 vintages x 53 (national, 50 states, DC, PR) | `"00"` for national, otherwise a 2-digit state FIPS | +| `standard/data_lea.csv.gz` | 202,075 — 15 vintages x 13,273-13,824 districts | a 7-digit **NCES LEAID**, not a FIPS code | + +Both files carry the same 42 indicators, each with a paired `_moe` column, plus: + +- `time` — last day of the vintage's final year, e.g. `2023-12-31` +- `period` — the ACS five-year span as published, e.g. `2019-2023` +- `geography_name` — state or district name +- `state` (district file only) — 2-digit state FIPS, which also prefixes the LEAID +- `lea_type` (district file only) — `Elementary`, `Secondary` or `Unified` + +The district file departs from the usual PopHIVE convention that `geography` is a +FIPS code, because school districts have no FIPS equivalent. A district is +identified by its LEAID; the containing state is in `state`. + +## Where the data comes from + +The ACS-ED Tables page is a single-page app whose API requires a bearer token and +returns HTTP 406 to scripted clients. The legacy EDGE TableViewer JSON API behind +it is open and serves the same tabulations, so `ingest.R` uses that: + +| Endpoint (POST, under `/programs/edge/`) | Returns | +|---|---| +| `TableViewer/tableListGetAll` | every ACS table published in a vintage (1,038-1,193 of them) | +| `TableViewer/TableGet` | one table's cell labels, read off the national preview | +| `TableViewer/TableExportToCSV` | a pipe-delimited export, written to `/tempfiles/sdds/` | + +One export call per table returns every geography at once: national, 52 +states/DC/PR, and roughly 13,400 districts. Requesting several tables in one call +does not work — only the last is returned — so it is one call per table per +vintage. + +Attribute sets are `tableId-universe-gradeAge-enrollmentType-geoType-geoId`. The +2005-2009 through 2007-2011 vintages store an ACS-ED population group in the +`enrollmentType` slot and their stored procedures fail without one; `ingest.R` +supplies the whole-population code, which is `301` for 2005-2009 and `001` for the +other two. + +## How indicators are built + +The 42 indicators are derived from 17 ACS tables. Rather than mirroring every +cell (the 17 tables run to 583 cells, and the full 1,193-table set is far wider), +`ingest.R` names the cells behind each indicator and sums them. + +Cells are selected by matching **normalised label text and ancestor path**, not +cell position, because Census renumbers and relabels tables between vintages. +Each selector declares how many cells it should match, and that count is checked +against every vintage; a mismatch produces a warning and an `NA` for that vintage +rather than a silently wrong number. Label changes already handled this way: + +| Table | Change | First vintage with the new wording | +|---|---|---| +| `B14005` | `High school graduate:` -> `High school graduate (includes equivalency):` | 2009-2013 | +| `B15002` | `High school graduate, GED, or alternative` -> `... (includes equivalency)` | 2009-2013 | +| `B11003` | `With own children under 18 years` -> `With own children of the householder under 18 years` | 2011-2015 | +| `B27001` | second child age band `6 to 17 years` -> `6 to 18 years` | 2013-2017 | +| `B11003` | `no wife present` / `no husband present` -> `no spouse present` | 2015-2019 | +| `B05002` | `Foreign born:` -> `Foreign-born:` | 2019-2023 | + +The `B27001` change is the only one that moves a universe rather than just +wording, so `nces_pct_uninsured_children` covers under-18 up to the 2012-2016 +vintage and under-19 from 2013-2017 on. + +Tables enter the series at different points, so early vintages have missing +columns: `B23025` (unemployment) from 2007-2011, `B15003`/`B18101`/`B27001` from +2008-2012, `B28002` (internet) from 2013-2017. + +Margins of error are recomputed, not copied: sums of cells use the Census +Bureau's root-sum-of-squares rule, and percentages use its derived-proportion +formula, falling back to the ratio form where the radicand goes negative. The +2005-2009 vintage publishes no margins of error, so those columns are `NA`. + +### Special values + +The TableViewer returns non-numeric cells as display text, all of which becomes +`NA`: + +| Text | Meaning | Roughly per vintage | +|---|---|---| +| `*****`, `**`, `***` | margin of error not applicable or not calculable | ~2,250 cells | +| `-` | estimate not applicable | tens of cells | +| `250,000+` | median above the top published bracket | 0-37 districts | +| `2,500-` | median below the bottom bracket | 0-5 districts | + +The 2006-2010 through 2013-2017 vintages prefix currency cells with `$` +(`$*****`, `$250,000+`) where the others do not, so `$` and thousands separators +are stripped before parsing and every vintage is then handled the same way. No +ordinary value in any of the 15 vintages carries a `$` or a `,`, so this cannot +corrupt a real number. + +Top- and bottom-coded medians become `NA` rather than the bracket bound, since +the true median is only known to lie beyond it. Because that would otherwise +make the highest-income districts silently vanish from any ranking, +`nces_median_household_income_bound` records which rows those are: + +| Value | Meaning | Rows | +|---|---|---| +| `within` | estimate is a usable number | 201,175 | +| `top` | ACS reported `$250,000+`; estimate is `NA`, true median >= $250,000 | 109 | +| `bottom` | ACS reported `$2,500-`; estimate is `NA`, true median <= $2,500 | 8 | +| *(empty)* | median missing for some other reason | 783 | + +Top-coded rows grow as incomes rise — 1 district in 2006-2010, 37 in 2019-2023 — +and are exactly who you would expect (Hillsborough, Los Altos, Orinda, Piedmont +and Woodside in California; Darien and New Canaan in Connecticut; all with +74-87% of adults holding a bachelor's degree). Bottom-coded rows are tiny +Montana elementary districts of 55-211 people. + +To use the bounds as numbers rather than dropping them: + +```r +income <- if_else(bound == "top", 250000, + if_else(bound == "bottom", 2500, nces_median_household_income)) +``` + +Rows with a usable median are labelled `within` rather than left blank on +purpose: a column that is empty for its first few thousand rows gets +type-guessed as logical by readers that sample the head of the file — `vroom` +and `readr` both do by default — which would silently turn `top` into `NA`. + +## `raw/` + +`raw/` holds, per vintage: + +- `cells_.csv.xz` — the downloaded export reduced to the ~180 cells the + indicators use. Full exports of all 17 tables would run to hundreds of + megabytes; the reduction keeps the cache manageable while still letting the + transform re-run without re-downloading. **Gitignored** (77 MB, and rewritten + whenever a vintage is refreshed) — a fresh clone rebuilds them by running the + ingest, at the cost of roughly 50 minutes of API calls. +- `codebook_.csv.xz` — every cell's label, indent, and full ancestor path, + which is what the selectors match against and what to read when an indicator + goes `NA` for a vintage. **Committed**: 85 KB in total, and the record of what + each vintage actually contained. + +Published vintages are frozen, so `ingest.R` re-downloads only the most recent +vintage plus anything missing. + +`raw/` totals 77 MB. Parquet was measured as an alternative and is **worse** on +this data — xz/LZMA beats parquet's compression here: + +| Layout | Size | +|---|---| +| 15 x `cells_*.csv.xz` (current) | **76.7 MB** | +| one combined `csv.xz` | 76.8 MB | +| combined parquet, typed, zstd | 89.1 MB | +| combined parquet, typed, gzip | 89.2 MB | +| combined parquet, long form, gzip | 100 MB | +| combined parquet, typed, snappy | 103.6 MB | + +Combining the 15 files into one saves nothing either: each is already large +enough for xz to build a good dictionary. So the format is left as is. If `raw/` +needs to stop costing repo space, gitignore it and accept that a fresh clone +re-downloads it (roughly 50 minutes of API calls). + +## Caveats + +- **Small-area uncertainty is the big one.** For many measures, most districts' + margins of error are larger than the estimate itself. Share of districts in + the 2019-2023 vintage where `_moe` exceeds the estimate: + + | Measure | MOE > estimate | + |---|---| + | `nces_pct_limited_english_5_17` | 80.6% | + | `nces_pct_dropout_16_19` | 75.0% | + | `nces_pct_uninsured_children` | 41.2% | + | `nces_pct_disability_5_17` | 28.0% | + | `nces_pct_poverty_under18` | 23.2% | + | `nces_pct_unemployed` | 13.3% | + | `nces_pct_no_internet` | 3.2% | + | `nces_pct_ba_or_higher_25plus` | 1.5% | + + Rates built on small numerators — dropout, limited English, uninsured — are + not usable for a single small district. They are usable in aggregate, for + large districts, and for ranking with the uncertainty carried along. Never + read a district-level dropout rate without its MOE. + +- **Five-year averages.** Consecutive vintages share four years of sample, so + year-over-year movement is heavily autocorrelated and is not annual change. +- **District layers overlap.** Elementary, Secondary and Unified districts are + three separate layers that cover the same ground in dual-district states, so + rows must not be summed across `lea_type`. Use `data_state.csv.gz` for totals. +- **Moving boundaries.** District boundaries, names and LEAIDs are refreshed + annually. 14,241 distinct LEAIDs appear across the 15 vintages, against + 13,273-13,824 in any single one, so a district's geography and its very + presence are not constant. +- **Median income is nominal to each vintage.** `B19013` is inflation-adjusted to + the final year of its own five-year period, so deflate to a common year before + comparing vintages. +- **`nces_pop_total_moe` is empty far more often than the other margins.** ACS + publishes `*****` instead of a margin of error wherever a population total is + *controlled* to an independent estimate rather than sampled, which makes its + sampling error zero by construction. That covers every national and state row + — so the column is entirely empty in `data_state.csv.gz` — and districts + coextensive with a controlled geography, which is why New York City and Puerto + Rico are empty too. Elsewhere it is populated for 175,676 of 202,075 district + rows, with a median margin of 344 people, about 6% of the estimate. + Percentages whose denominator is such a total treat it as exact. +- **No cohort graduation rate.** See below. + +## Graduation + +The ACS-ED tables contain no Adjusted Cohort Graduation Rate. ACS is a household +survey, and the ACGR comes from the separate NCES EDFacts and Common Core of Data +collections. What this source does carry, from table `B14005`, is the +survey-based equivalent for 16-19 year olds: + +| Measure | Definition | +|---|---| +| `nces_pct_hs_grad_16_19` | of 16-19 year olds who have left school, the share holding a diploma or equivalency | +| `nces_pct_dropout_16_19` | of all 16-19 year olds, the share neither enrolled nor holding a credential | +| `nces_pct_enrolled_16_19` | of all 16-19 year olds, the share still enrolled | +| `nces_pct_hs_or_higher_25plus` | of adults 25+, the share with at least a diploma (table `B15002`) | + +These differ from the ACGR in three ways that matter: equivalency credentials +count as completion, it is a five-year average across a four-year age range +rather than one cohort followed to graduation, and it is tabulated by where a +teenager **lives** rather than by the school they attended. + +Nationally the series behaves as expected — `nces_pct_dropout_16_19` falls from +6.4% (2005-2009) to 3.9% (2019-2023) — but see the uncertainty table above +before using it for an individual district. diff --git a/data/nces_acs_ed/ingest.R b/data/nces_acs_ed/ingest.R new file mode 100644 index 0000000..1043b9d --- /dev/null +++ b/data/nces_acs_ed/ingest.R @@ -0,0 +1,911 @@ +# ============================================================================= +# NCES ACS-ED Tables Data Ingestion +# Source: https://nces.ed.gov/programs/edge/Demographic/acsedtables +# +# The ACS-ED Tables page is a single-page app whose API requires a bearer token +# and is WAF-blocked to scripted clients. The legacy EDGE TableViewer JSON API +# that sits behind it is open and serves the same tabulations, so this ingest +# uses that: +# +# POST /programs/edge/TableViewer/tableListGetAll -> tables available in a vintage +# POST /programs/edge/TableViewer/TableGet -> a table's cell labels +# POST /programs/edge/TableViewer/TableExportToCSV -> pipe-delimited export, +# written to /tempfiles/sdds/ +# +# One export call per (table, vintage) returns every geography at once: +# national, 52 states/DC/PR, and ~13,400 school districts. +# +# Outputs +# standard/data_state.csv.gz national + state, geography = FIPS +# standard/data_lea.csv.gz school district, geography = 7-digit NCES LEAID +# ============================================================================= + +library(dplyr) + +process <- dcf::dcf_process_record() + +EDGE <- "https://nces.ed.gov/programs/edge" +DATASET <- "acs" + +# The API identifies a vintage by the final year of its five-year period, so +# 2009 is the 2005-2009 file and 2023 is the 2019-2023 one. All 15 published +# vintages. +YEARS <- 2009:2023 + +# The 2005-09 through 2007-11 vintages are stored with an ACS-ED population +# group ("enrollment type") dimension, and their stored procedures fail unless +# one is supplied. These are the codes for the whole population, which is what +# the 2008-12 vintage onwards returns unconditionally. Codes are vintage- +# specific: the 2005-09 file numbers the same group 301 rather than 001. +POP_GROUP <- c("2009" = "301", "2010" = "001", "2011" = "001") + +# The export's attribute-set slot: the bare code, or empty for later vintages. +pop_group <- function(year) { + code <- POP_GROUP[as.character(year)] + if (is.na(code)) "" else unname(code) +} + +# The TableGet parameter. It must be JSON null, not an empty string, for the +# 2008-2012 vintage onwards - an empty string makes the query return no rows. +pop_group_arg <- function(year) { + code <- pop_group(year) + if (code == "") "null" else paste0('"', code, '"') +} + +# ----------------------------------------------------------------------------- +# 1. API helpers +# ----------------------------------------------------------------------------- + +# The endpoints take JSON-ish bodies with unquoted keys, exactly as the site's +# own scripts send them. +nces_post <- function(endpoint, body, timeout = 900) { + for (attempt in 1:4) { + res <- try( + httr::POST( + paste0(EDGE, "/", endpoint), + httr::add_headers( + `Content-Type` = "application/json; charset=utf-8", + `X-Requested-With` = "XMLHttpRequest", + Referer = paste0(EDGE, "/TableViewer/", DATASET, "/", max(YEARS)) + ), + body = body, + httr::timeout(timeout) + ), + silent = TRUE + ) + if (!inherits(res, "try-error") && httr::status_code(res) == 200) { + txt <- httr::content(res, "text", encoding = "UTF-8") + # An application error comes back as the site's HTML error page. + if (!startsWith(trimws(txt), "<")) { + return(jsonlite::fromJSON(txt, simplifyVector = FALSE)) + } + } + Sys.sleep(5 * attempt) + } + NULL +} + +# Tables present in a given vintage. +nces_table_list <- function(year) { + res <- nces_post( + "TableViewer/tableListGetAll", + sprintf('{iYear : %d, sDataset : "%s"}', year, DATASET) + ) + if (is.null(res)) character() else vapply(res, function(x) x$tableId, "") +} + +# Labels are matched after normalisation, because wording drifts across +# vintages (e.g. "Enrolled in college, undergraduate years" vs +# "... college undergraduate years"). Periods are kept: B17024's income-to- +# poverty bands are labelled ".50 to .74". +norm_label <- function(x) { + x <- tolower(x) + # EDGE label text uses straight quotes and apostrophes only. + x <- gsub('"', "", x, fixed = TRUE) + x <- gsub("[',:;]", "", x) + x <- gsub("[()]", " ", x) + x <- gsub("\\s*>\\s*", " > ", x) + x <- gsub("[ \t]+", " ", x) + trimws(x) +} + +# Cell labels for a table, read off the national preview. The Nth label +# corresponds to the {table}_{N}est / {table}_{N}moe columns in the export. +nces_labels <- function(table_id, year) { + res <- nces_post( + "TableViewer/TableGet", + sprintf( + '{iYear : %d, sDataset : "%s", sTableId : "%s", sUniverse : null, sGradeAge : null, sEnrollmentType : %s, sGeoType : "US", sGeoId : "US"}', + year, DATASET, table_id, pop_group_arg(year) + ) + ) + if (is.null(res) || is.null(res$html)) return(NULL) + + m <- gregexpr('(.*?)', res$html, perl = TRUE) + hits <- regmatches(res$html, m)[[1]] + if (!length(hits)) return(NULL) + + indent <- as.integer(sub('^.*$', "\\1", hits)) + label <- sub('^(.*)$', "\\1", hits) + + # Build each cell's full label path by walking the indent stack, so a cell can + # be identified by its own label plus its ancestors rather than by position + # (positions shift between vintages when Census revises a table). + stack <- character() + path <- character(length(label)) + for (i in seq_along(label)) { + d <- indent[i] + 1L + if (length(stack) >= d) stack <- stack[seq_len(d - 1L)] + stack[d] <- label[i] + path[i] <- paste(stack[seq_len(d)], collapse = " > ") + } + + tibble( + cell = seq_along(label), + indent = indent, + label = label, + path = path, + leaf_norm = norm_label(label), + path_norm = norm_label(path) + ) +} + +# Export a whole table for every geography, and return its local path. +nces_export <- function(table_id, year, dest_dir) { + # An attribute set is tableId-universe-gradeAge-enrollmentType-geoType-geoId; + # only the enrollment-type slot is ever populated here, and geoType "All" + # returns national, state and every school district in one file. + res <- nces_post( + "TableViewer/TableExportToCSV", + sprintf( + '{iYear : %d, sDataset : "%s", sTableAttrSets : "%s---%s-All-All`"}', + year, DATASET, table_id, pop_group(year) + ) + ) + if (is.null(res) || is.null(res$filename) || is.null(res$path)) return(NULL) + + url <- paste0("https://nces.ed.gov", gsub("\\\\", "/", res$path), res$filename) + dest <- file.path(dest_dir, paste0(table_id, "_", year, ".txt")) + ok <- try( + curl::curl_download(url, dest, quiet = TRUE, handle = curl::new_handle(timeout = 1800)), + silent = TRUE + ) + if (inherits(ok, "try-error") || !file.exists(dest)) return(NULL) + dest +} + +# ----------------------------------------------------------------------------- +# 2. Indicator definitions +# +# Each indicator names the cells that make up its numerator (and, for a +# percent, its denominator). A cell is selected by regexes on its normalised +# leaf label and full label path; `n` is the number of cells the selector is +# expected to match, and is checked on every vintage so a table revision +# surfaces as a warning and an NA rather than a silently wrong number. +# ----------------------------------------------------------------------------- + +sel <- function(leaf = NULL, path = NULL, not_path = NULL, n = NULL) { + list(leaf = leaf, path = path, not_path = not_path, n = n) +} + +# Exact-match helper: anchors each alternative so "5 years" does not also +# match "15 years" or "75 years and over". +one_of <- function(...) paste0("^(", paste(c(...), collapse = "|"), ")$") + +# A path selector that must match one of several age segments. +one_of_path <- function(x) paste0("> (", paste(x, collapse = "|"), ") >") + +AGES_UNDER18_B17001 <- c( + "under 5 years", "5 years", "6 to 11 years", "12 to 14 years", + "15 years", "16 and 17 years" +) +AGES_5_17_B14003 <- c("5 to 9 years", "10 to 14 years", "15 to 17 years") +AGES_UNDER18_B17024 <- c("under 6 years", "6 to 11 years", "12 to 17 years") +FPL_UNDER_185 <- c( + "under .50", ".50 to .74", ".75 to .99", "1.00 to 1.24", + "1.25 to 1.49", "1.50 to 1.74", "1.75 to 1.84" +) +# B15002 relabelled its diploma category from "High school graduate, GED, or +# alternative" to "High school graduate (includes equivalency)" in the 2009-13 +# vintage. Only one of the two ever matches, so the count stays at 16. +ATTAIN_HS_PLUS <- c( + "high school graduate includes equivalency", + "high school graduate ged or alternative", + "some college less than 1 year", + "some college 1 or more years no degree", + "associates degree", "bachelors degree", "masters degree", + "professional school degree", "doctorate degree" +) +ATTAIN_NO_HS <- c( + "no schooling completed", "nursery to 4th grade", "5th and 6th grade", + "7th and 8th grade", "9th grade", "10th grade", "11th grade", + "12th grade no diploma" +) +ATTAIN_BA_PLUS <- c( + "bachelors degree", "masters degree", "professional school degree", + "doctorate degree" +) + +# B14005's diploma category is "High school graduate:" up to the 2008-12 +# vintage and "High school graduate (includes equivalency):" from 2009-13 on. +HS_GRAD_LEAF <- "^high school graduate( includes equivalency)?$" +HS_STATUS_LEAF <- "^(high school graduate( includes equivalency)?|not high school graduate)$" + +# B11003 relabelled twice: "With own children under 18 years" gained "of the +# householder" in the 2011-15 vintage, and the lone-parent rows moved from +# "no wife present" / "no husband present" to "no spouse present" in 2015-19. +OWN_CHILDREN_LEAF <- "^with own children( of the householder)? under 18 years$" +LONE_PARENT_PATH <- "householder no (wife|husband|spouse) present" + +# B27001's second age band is "6 to 17 years" up to the 2012-16 vintage and +# "6 to 18 years" from 2013-17 on, so the child insurance measure covers +# under-18 in the earlier vintages and under-19 in the later ones. +INSURANCE_CHILD_AGES <- c("under 6 years", "6 to 17 years", "6 to 18 years") + +IND <- list( + + # ---- Population ----------------------------------------------------------- + nces_pop_total = list( + table = "B01003", type = "count", + num = sel(leaf = "^total$", n = 1) + ), + nces_pop_under18 = list( + table = "B09001", type = "count", + num = sel(leaf = "^total$", n = 1) + ), + nces_pop_age_0_4 = list( + table = "B09001", type = "count", + num = sel(leaf = one_of("under 3 years", "3 and 4 years"), n = 2) + ), + nces_pop_age_5_11 = list( + table = "B09001", type = "count", + num = sel(leaf = one_of("5 years", "6 to 8 years", "9 to 11 years"), n = 3) + ), + nces_pop_age_12_17 = list( + table = "B09001", type = "count", + num = sel(leaf = one_of("12 to 14 years", "15 to 17 years"), n = 2) + ), + + # ---- School enrollment ---------------------------------------------------- + nces_enrolled_preschool = list( + table = "B14001", type = "count", + num = sel(leaf = "^enrolled in nursery school,? ?preschool$", n = 1) + ), + nces_enrolled_kindergarten = list( + table = "B14001", type = "count", + num = sel(leaf = "^enrolled in kindergarten$", n = 1) + ), + nces_enrolled_grade_1_4 = list( + table = "B14001", type = "count", + num = sel(leaf = "^enrolled in grade 1 to grade 4$", n = 1) + ), + nces_enrolled_grade_5_8 = list( + table = "B14001", type = "count", + num = sel(leaf = "^enrolled in grade 5 to grade 8$", n = 1) + ), + nces_enrolled_grade_9_12 = list( + table = "B14001", type = "count", + num = sel(leaf = "^enrolled in grade 9 to grade 12$", n = 1) + ), + nces_enrolled_k12 = list( + table = "B14001", type = "count", + num = sel( + leaf = one_of( + "enrolled in kindergarten", "enrolled in grade 1 to grade 4", + "enrolled in grade 5 to grade 8", "enrolled in grade 9 to grade 12" + ), + n = 4 + ) + ), + nces_enrolled_college = list( + table = "B14001", type = "count", + num = sel( + leaf = "^(enrolled in college,? ?undergraduate years|graduate or professional school)$", + n = 2 + ) + ), + + # ---- Public vs private, ages 5-17 (both sexes summed) --------------------- + nces_enrolled_public_5_17 = list( + table = "B14003", type = "count", + num = sel(leaf = one_of(AGES_5_17_B14003), path = "enrolled in public school", n = 6) + ), + nces_enrolled_private_5_17 = list( + table = "B14003", type = "count", + num = sel(leaf = one_of(AGES_5_17_B14003), path = "enrolled in private school", n = 6) + ), + nces_pct_enrolled_private_5_17 = list( + table = "B14003", type = "percent", + num = sel(leaf = one_of(AGES_5_17_B14003), path = "enrolled in private school", n = 6), + den = sel(leaf = one_of(AGES_5_17_B14003), path = "enrolled in (public|private) school", n = 12) + ), + nces_pct_not_enrolled_5_17 = list( + table = "B14003", type = "percent", + num = sel(leaf = one_of(AGES_5_17_B14003), path = "not enrolled in school", n = 6), + den = sel(leaf = one_of(AGES_5_17_B14003), n = 18) + ), + + # ---- High school completion, ages 16-19 ----------------------------------- + # ACS has no cohort graduation rate; B14005 gives the survey-based + # equivalents, keyed on whether a 16-19 year old who has left school holds a + # diploma or equivalency. + nces_pop_age_16_19 = list( + table = "B14005", type = "count", + num = sel(leaf = "^total$", n = 1) + ), + nces_not_enrolled_hs_grad_16_19 = list( + table = "B14005", type = "count", + num = sel(leaf = HS_GRAD_LEAF, n = 2) + ), + nces_not_enrolled_no_hs_16_19 = list( + table = "B14005", type = "count", + num = sel(leaf = "^not high school graduate$", n = 2) + ), + nces_pct_hs_grad_16_19 = list( + table = "B14005", type = "percent", + num = sel(leaf = HS_GRAD_LEAF, n = 2), + den = sel(leaf = HS_STATUS_LEAF, n = 4) + ), + nces_pct_dropout_16_19 = list( + table = "B14005", type = "percent", + num = sel(leaf = "^not high school graduate$", n = 2), + den = sel(leaf = "^total$", n = 1) + ), + nces_pct_enrolled_16_19 = list( + table = "B14005", type = "percent", + num = sel(leaf = "^enrolled in school$", n = 2), + den = sel(leaf = "^total$", n = 1) + ), + + # ---- Adult educational attainment, 25+ ------------------------------------ + nces_pct_hs_or_higher_25plus = list( + table = "B15002", type = "percent", + num = sel(leaf = one_of(ATTAIN_HS_PLUS), n = 16), + den = sel(leaf = "^total$", n = 1) + ), + nces_pct_no_hs_25plus = list( + table = "B15002", type = "percent", + num = sel(leaf = one_of(ATTAIN_NO_HS), n = 16), + den = sel(leaf = "^total$", n = 1) + ), + nces_pct_ba_or_higher_25plus = list( + table = "B15002", type = "percent", + num = sel(leaf = one_of(ATTAIN_BA_PLUS), n = 8), + den = sel(leaf = "^total$", n = 1) + ), + + # ---- Language, ages 5-17 -------------------------------------------------- + nces_pct_non_english_home_5_17 = list( + table = "B16004", type = "percent", + num = sel( + leaf = "^speak (spanish|other indo-european languages|asian and pacific island languages|other languages)$", + path = "^total > 5 to 17 years", n = 4 + ), + den = sel(leaf = "^5 to 17 years$", n = 1) + ), + nces_pct_limited_english_5_17 = list( + table = "B16004", type = "percent", + num = sel( + leaf = "^speak english (well|not well|not at all)$", + path = "^total > 5 to 17 years", n = 12 + ), + den = sel(leaf = "^5 to 17 years$", n = 1) + ), + + # ---- Poverty -------------------------------------------------------------- + nces_poverty_under18 = list( + table = "B17001", type = "count", + num = sel( + leaf = one_of(AGES_UNDER18_B17001), + path = "below poverty level", n = 12 + ) + ), + nces_pct_poverty_under18 = list( + table = "B17001", type = "percent", + num = sel(leaf = one_of(AGES_UNDER18_B17001), path = "below poverty level", n = 12), + den = sel(leaf = one_of(AGES_UNDER18_B17001), n = 24) + ), + nces_pct_poverty_all_ages = list( + table = "B17001", type = "percent", + num = sel(leaf = "^income in the past 12 months below poverty level$", n = 1), + den = sel(leaf = "^total$", n = 1) + ), + nces_pct_deep_poverty_under18 = list( + table = "B17024", type = "percent", + num = sel(leaf = "^under .50$", path = one_of_path(AGES_UNDER18_B17024), n = 3), + den = sel(leaf = one_of(AGES_UNDER18_B17024), n = 3) + ), + nces_pct_under185_fpl_under18 = list( + table = "B17024", type = "percent", + num = sel( + leaf = one_of(FPL_UNDER_185), + path = one_of_path(AGES_UNDER18_B17024), n = 21 + ), + den = sel(leaf = one_of(AGES_UNDER18_B17024), n = 3) + ), + + # ---- Income --------------------------------------------------------------- + nces_median_household_income = list( + table = "B19013", type = "median", + num = sel(leaf = "^median household income", n = 1) + ), + + # ---- Health insurance and disability -------------------------------------- + nces_pct_uninsured_children = list( + table = "B27001", type = "percent", + num = sel( + leaf = "^no health insurance coverage$", + path = one_of_path(INSURANCE_CHILD_AGES), n = 4 + ), + den = sel(leaf = one_of(INSURANCE_CHILD_AGES), n = 4) + ), + nces_pct_uninsured_all_ages = list( + table = "B27001", type = "percent", + num = sel(leaf = "^no health insurance coverage$", n = 18), + den = sel(leaf = "^total$", n = 1) + ), + nces_pct_disability_5_17 = list( + table = "B18101", type = "percent", + num = sel(leaf = "^with a disability$", path = one_of_path("5 to 17 years"), n = 2), + den = sel(leaf = "^5 to 17 years$", n = 2) + ), + + # ---- Family structure ----------------------------------------------------- + nces_pct_single_parent_families = list( + table = "B11003", type = "percent", + num = sel(leaf = OWN_CHILDREN_LEAF, path = LONE_PARENT_PATH, n = 2), + den = sel(leaf = OWN_CHILDREN_LEAF, n = 3) + ), + + # ---- Economic and housing ------------------------------------------------- + nces_pct_unemployed = list( + table = "B23025", type = "percent", + num = sel(leaf = "^unemployed$", n = 1), + den = sel(leaf = "^civilian labor force$", n = 1) + ), + nces_pct_renter_occupied = list( + table = "B25003", type = "percent", + num = sel(leaf = "^renter occupied$", n = 1), + den = sel(leaf = "^total$", n = 1) + ), + nces_pct_foreign_born = list( + table = "B05002", type = "percent", + # "Foreign born:" up to the 2018-22 vintage, "Foreign-born:" from 2019-23. + num = sel(leaf = "^foreign[ -]born$", n = 1), + den = sel(leaf = "^total$", n = 1) + ), + + # ---- Internet (2017- onwards) --------------------------------------------- + nces_pct_no_internet = list( + table = "B28002", type = "percent", + num = sel( + leaf = one_of("internet access without a subscription", "no internet access"), + n = 2 + ), + den = sel(leaf = "^total$", n = 1) + ), + nces_pct_broadband = list( + table = "B28002", type = "percent", + num = sel(leaf = "^broadband of any type$", n = 1), + den = sel(leaf = "^total$", n = 1) + ) +) + + +TABLES <- sort(unique(vapply(IND, function(x) x$table, ""))) + +# Resolve a selector against a table's codebook, returning cell numbers. +match_cells <- function(cb, s, ind_name, table_id, year) { + keep <- rep(TRUE, nrow(cb)) + if (!is.null(s$leaf)) keep <- keep & grepl(s$leaf, cb$leaf_norm) + if (!is.null(s$path)) keep <- keep & grepl(s$path, cb$path_norm) + if (!is.null(s$not_path)) keep <- keep & !grepl(s$not_path, cb$path_norm) + cells <- cb$cell[keep] + if (!is.null(s$n) && length(cells) != s$n) { + warning( + sprintf( + "%s (%s, %d): matched %d cells, expected %d - emitting NA", + ind_name, table_id, year, length(cells), s$n + ), + call. = FALSE + ) + return(integer()) + } + cells +} + +# ----------------------------------------------------------------------------- +# 3. Download +# +# Older vintages are frozen once published, so only missing files and the most +# recent vintage are re-fetched. Full exports are large (the widest table is +# ~260 value columns over 13,400 geographies), so raw/ keeps a per-vintage +# extract holding just the cells the indicators use, alongside the codebooks. +# ----------------------------------------------------------------------------- + +dir.create("raw", showWarnings = FALSE) +tmp <- file.path(tempdir(), "nces_acs_ed") +dir.create(tmp, showWarnings = FALSE, recursive = TRUE) + +cells_path <- function(year) sprintf("raw/cells_%d.csv.xz", year) +codebook_path <- function(year) sprintf("raw/codebook_%d.csv.xz", year) + +years_to_fetch <- YEARS[ + YEARS == max(YEARS) | + !file.exists(vapply(YEARS, cells_path, "")) | + !file.exists(vapply(YEARS, codebook_path, "")) +] + +for (year in years_to_fetch) { + message("=== vintage ", year) + available <- nces_table_list(year) + if (!length(available)) { + warning("no table list for ", year, " - skipping vintage", call. = FALSE) + next + } + + codebooks <- list() + extracts <- list() + geo <- NULL + + for (table_id in TABLES) { + if (!table_id %in% available) { + message(" ", table_id, ": not published in this vintage") + next + } + + cb <- nces_labels(table_id, year) + if (is.null(cb)) { + warning(table_id, " (", year, "): no labels returned", call. = FALSE) + next + } + + # Cells this vintage actually needs, across every indicator on the table. + wanted <- integer() + for (nm in names(IND)) { + ind <- IND[[nm]] + if (ind$table != table_id) next + wanted <- c( + wanted, + match_cells(cb, ind$num, nm, table_id, year), + if (!is.null(ind$den)) match_cells(cb, ind$den, nm, table_id, year) + ) + } + wanted <- sort(unique(wanted)) + if (!length(wanted)) { + warning(table_id, " (", year, "): no cells matched", call. = FALSE) + next + } + + src <- nces_export(table_id, year, tmp) + if (is.null(src)) { + warning(table_id, " (", year, "): export failed", call. = FALSE) + next + } + + raw <- vroom::vroom( + src, + delim = "|", col_types = vroom::cols(.default = "c"), + progress = FALSE, altrep = FALSE + ) + unlink(src) + + keep_cols <- c( + paste0(table_id, "_", wanted, "est"), + paste0(table_id, "_", wanted, "moe") + ) + missing_cols <- setdiff(keep_cols, names(raw)) + if (length(missing_cols)) { + warning( + table_id, " (", year, "): export missing ", length(missing_cols), + " expected columns", call. = FALSE + ) + keep_cols <- intersect(keep_cols, names(raw)) + } + + # Joined on GeoId alone. Geography names are carried separately: joining on + # the name too would split a geography into two rows if any table spelled + # it differently. + if (is.null(geo)) { + geo <- raw[, c("GeoId", "Geography", "LEAID", "Year")] + } + extracts[[table_id]] <- raw[, c("GeoId", keep_cols)] + codebooks[[table_id]] <- cb %>% mutate(table_id = table_id, .before = 1) + message(" ", table_id, ": ", length(wanted), " cells, ", nrow(raw), " geographies") + Sys.sleep(1) + } + + if (!length(extracts)) { + warning("nothing retrieved for ", year, call. = FALSE) + next + } + + combined <- Reduce(function(a, b) full_join(a, b, by = "GeoId"), extracts) + combined <- full_join(geo, combined, by = "GeoId") + stopifnot(!anyDuplicated(combined$GeoId)) + vroom::vroom_write(combined, cells_path(year), delim = "|", progress = FALSE) + vroom::vroom_write(bind_rows(codebooks), codebook_path(year), delim = ",", progress = FALSE) +} + +raw_files <- sort(c( + Sys.glob("raw/cells_*.csv.xz"), + Sys.glob("raw/codebook_*.csv.xz") +)) +raw_state <- as.list(tools::md5sum(raw_files)) + +# ----------------------------------------------------------------------------- +# 4. Transform +# ----------------------------------------------------------------------------- + +if (!identical(process$raw_state, raw_state)) { + + # The TableViewer renders every non-numeric cell as display text, and which + # texts appear varies by vintage: + # + # ***** ** *** margin of error not applicable or not calculable + # - estimate not applicable + # 250,000+ median above the top published bracket (top-coded) + # 2,500- median below the bottom bracket (bottom-coded) + # + # The 2006-2010 through 2013-2017 vintages prefix currency cells with "$" + # ("$*****", "$250,000+") where later ones do not, so the "$" and thousands + # separators are stripped first and every vintage is then handled uniformly. + # No ordinary value in any vintage carries a "$" or a "," - checked across + # all 15 - so stripping them cannot corrupt a real number, and doing it + # guards against a future vintage that formats values this way. + # + # Top- and bottom-coded medians become NA rather than the bracket bound, + # because the true median is only known to lie beyond it. They are rare but + # growing as incomes rise: 37 top-coded districts in 2019-2023, up from 2 in + # 2006-2010. + as_num <- function(x) { + x <- trimws(as.character(x)) + x <- gsub("[$,]", "", x) + not_a_number <- c("", "-", "N", "(X)", "null", "NA", "250000+", "2500-") + x[x %in% not_a_number | grepl("^[*]+$", x)] <- NA + v <- suppressWarnings(as.numeric(x)) + # A large negative value is the API's numeric jam value for the same + # out-of-bracket medians. + v[!is.na(v) & v <= -1e8] <- NA + v + } + + # ACS aggregation: the MOE of a sum of independent cells is the root sum of + # squares of the cell MOEs. + moe_sum <- function(mat) { + if (is.null(dim(mat))) return(abs(mat)) + sqrt(rowSums(mat^2, na.rm = FALSE)) + } + + # ACS derived proportion: for p = num / den with num a subset of den, + # MOE(p) = (1/den) * sqrt(MOE(num)^2 - p^2 * MOE(den)^2), falling back to + # the ratio form (+) when the radicand goes negative. + # + # A denominator that is a population-controlled total - a whole-population + # count at national or state level - is published with "*****" instead of a + # margin of error, because the control makes its sampling error zero. Reading + # that as zero rather than as unknown is what keeps percentages of the total + # population, such as the foreign-born share, from losing their margin of + # error at state and national level. A missing numerator margin of error + # still yields NA, so the 2005-2009 vintage, which publishes none at all, + # stays empty. + moe_prop <- function(num, den, moe_num, moe_den) { + p <- num / den + moe_den <- ifelse(is.na(moe_den), 0, moe_den) + rad <- moe_num^2 - p^2 * moe_den^2 + rad_alt <- moe_num^2 + p^2 * moe_den^2 + rad <- ifelse(is.na(rad) | rad < 0, rad_alt, rad) + out <- sqrt(rad) / den + out[!is.finite(out)] <- NA + out + } + + row_sum <- function(df, cols) { + if (!length(cols)) return(NULL) + m <- as.matrix(df[, cols, drop = FALSE]) + rowSums(m, na.rm = FALSE) + } + + build_year <- function(year) { + cf <- cells_path(year) + kf <- codebook_path(year) + if (!file.exists(cf) || !file.exists(kf)) return(NULL) + + cells <- vroom::vroom( + cf, delim = "|", col_types = vroom::cols(.default = "c"), + progress = FALSE, altrep = FALSE + ) + cb_all <- vroom::vroom(kf, col_types = vroom::cols(.default = "c"), progress = FALSE) + cb_all$cell <- as.integer(cb_all$cell) + + num_cols <- setdiff(names(cells), c("GeoId", "Geography", "LEAID", "Year", "Iteration")) + vals <- as.data.frame(lapply(cells[num_cols], as_num)) + names(vals) <- num_cols + + out <- tibble( + geo_id = cells$GeoId, + geo_name = cells$Geography, + leaid = cells$LEAID, + period = cells$Year + ) + + for (nm in names(IND)) { + ind <- IND[[nm]] + cb <- cb_all[cb_all$table_id == ind$table, ] + est <- rep(NA_real_, nrow(out)) + moe <- rep(NA_real_, nrow(out)) + bound <- rep(NA_character_, nrow(out)) + + if (nrow(cb)) { + nc <- match_cells(cb, ind$num, nm, ind$table, year) + ne <- intersect(paste0(ind$table, "_", nc, "est"), num_cols) + nm_ <- intersect(paste0(ind$table, "_", nc, "moe"), num_cols) + + if (length(ne) == length(nc) && length(nc)) { + num <- row_sum(vals, ne) + num_moe <- if (length(nm_) == length(nc)) { + moe_sum(as.matrix(vals[, nm_, drop = FALSE])) + } else { + rep(NA_real_, nrow(out)) + } + + if (ind$type == "percent") { + dc <- match_cells(cb, ind$den, nm, ind$table, year) + de <- intersect(paste0(ind$table, "_", dc, "est"), num_cols) + dm <- intersect(paste0(ind$table, "_", dc, "moe"), num_cols) + if (length(de) == length(dc) && length(dc)) { + den <- row_sum(vals, de) + den_moe <- if (length(dm) == length(dc)) { + moe_sum(as.matrix(vals[, dm, drop = FALSE])) + } else { + rep(NA_real_, nrow(out)) + } + den[!is.na(den) & den == 0] <- NA + est <- 100 * num / den + moe <- 100 * moe_prop(num, den, num_moe, den_moe) + } + } else { + est <- num + moe <- num_moe + } + + # A median that falls outside the published brackets is reported as + # bracket text rather than a number, so `as_num` has already turned + # it into NA. Read the raw text of the same cell to record which + # side it fell off, so a missing median can be told apart from one + # that is merely known to be very high or very low. + # + # Rows with a usable median are labelled "within" rather than left + # empty. A column that is blank for its first several thousand rows + # gets type-guessed as logical by readers that sample the head of the + # file (vroom and readr both do, by default), which would silently + # turn "top" into NA for anyone reading it without explicit types. + if (ind$type == "median" && length(ne) == 1) { + txt <- gsub("[$,]", "", trimws(cells[[ne]])) + bound[!is.na(est)] <- "within" + bound[!is.na(txt) & txt == "250000+"] <- "top" + bound[!is.na(txt) & txt == "2500-"] <- "bottom" + } + } + } + + out[[nm]] <- round(est, if (ind$type == "percent") 3 else 0) + out[[paste0(nm, "_moe")]] <- round(moe, if (ind$type == "percent") 3 else 0) + if (ind$type == "median") out[[paste0(nm, "_bound")]] <- bound + } + + out + } + + all_years <- bind_rows(lapply(YEARS, build_year)) + if (!nrow(all_years)) stop("no vintages available to transform") + + # Each measure contributes its estimate and margin of error, and a median + # also contributes its bracket flag. + value_cols <- unlist(lapply(names(IND), function(nm) { + c( + nm, + paste0(nm, "_moe"), + if (IND[[nm]]$type == "median") paste0(nm, "_bound") + ) + })) + value_cols <- intersect(value_cols, names(all_years)) + + # GeoIds carry a Census summary level, then "US", then the geography's own + # code - but the level is zero-padded to a width that varies by vintage: + # a unified district is "97000US1700105" in some vintages and + # "9700000US1700105" in others, and national is "01000US" or "0100000US". + # So the level is read as "the digits before US, ignoring trailing zeros", + # never by fixed character positions. + all_years <- all_years %>% + mutate( + # Period is the ACS five-year span, e.g. "2019-2023"; the standard `time` + # column is the last day of its final year. + end_year = as.integer(sub("^.*-", "", period)), + time = paste0(end_year, "-12-31"), + sumlev = sub("US.*$", "", geo_id), + geo_code = sub("^.*US", "", geo_id), + level = case_when( + grepl("^010+$", sumlev) & geo_code == "" ~ "national", + grepl("^040+$", sumlev) & grepl("^[0-9]{2}$", geo_code) ~ "state", + grepl("^950+$", sumlev) ~ "Elementary", + grepl("^960+$", sumlev) ~ "Secondary", + grepl("^970+$", sumlev) ~ "Unified", + # The early vintages also carry regions, divisions and American + # Indian areas, which neither output file covers. + TRUE ~ NA_character_ + ) + ) %>% + # A geography carried only by a later table, and so absent from the first + # table's name/period columns, cannot be placed in time - drop it rather + # than emit a row keyed "NA-12-31". + filter(!is.na(end_year), !is.na(geo_id), !is.na(level)) + + # --- National and state --- + data_state <- all_years %>% + filter(level %in% c("national", "state")) %>% + mutate( + geography = if_else(level == "national", "00", geo_code), + geography_name = sub(",\\s*[A-Z]{2}$", "", geo_name) + ) %>% + select(geography, geography_name, time, period, all_of(value_cols)) %>% + arrange(geography, time) + + # --- School district --- + # geography here is the 7-digit NCES LEAID, not a FIPS code; `state` carries + # the 2-digit state FIPS that prefixes it. + state_names <- data_state %>% + filter(geography != "00") %>% + distinct(state = geography, state_name = geography_name) + + data_lea <- all_years %>% + filter( + level %in% c("Elementary", "Secondary", "Unified"), + grepl("^[0-9]{7}$", leaid), + # Census adds a "Remainder of " balance area to each of the three + # district layers to cover territory no district of that type reaches. + # All three share the LEAID 99999, so they cannot be keyed by + # LEAID; their population is still counted in the state file. + !grepl("^[0-9]{2}99999$", leaid) + ) %>% + mutate(state = substr(leaid, 1, 2), lea_type = level) %>% + left_join(state_names, by = "state") %>% + mutate( + geography = leaid, + # District names end ", " or ", , " depending on + # vintage. + trimmed = sub(",\\s*[A-Z]{2}$", "", geo_name), + geography_name = if_else( + !is.na(state_name) & endsWith(trimmed, paste0(", ", state_name)), + substr(trimmed, 1, nchar(trimmed) - nchar(state_name) - 2), + trimmed + ) + ) %>% + select( + geography, geography_name, state, lea_type, time, period, + all_of(value_cols) + ) %>% + arrange(geography, time) + + # Every vintage must reach both files: the GeoId encoding differs between + # vintages, and a parsing regression would otherwise silently drop years. + stopifnot( + !anyNA(data_state$geography), + !anyDuplicated(paste(data_state$geography, data_state$time)), + !anyNA(data_lea$geography), + !anyDuplicated(paste(data_lea$geography, data_lea$time)), + length(unique(data_state$time)) == length(unique(all_years$time)), + length(unique(data_lea$time)) == length(unique(all_years$time)) + ) + + vroom::vroom_write(data_state, "standard/data_state.csv.gz", delim = ",", progress = FALSE) + vroom::vroom_write(data_lea, "standard/data_lea.csv.gz", delim = ",", progress = FALSE) + + message( + "wrote ", nrow(data_state), " state rows and ", nrow(data_lea), + " district rows over ", length(unique(all_years$time)), " vintages" + ) + + process$raw_state <- raw_state + dcf::dcf_process_record(updated = process) +} diff --git a/data/nces_acs_ed/measure_info.json b/data/nces_acs_ed/measure_info.json new file mode 100644 index 0000000..6f89d9a --- /dev/null +++ b/data/nces_acs_ed/measure_info.json @@ -0,0 +1,892 @@ +{ + "geography": { + "id": "geography", + "name": "Location", + "short_name": "Location", + "long_name": "Location identifier", + "category": "identifier", + "short_description": "Identifies the state or school district a row describes.", + "long_description": "In data_state.csv.gz this is a FIPS code: \"00\" for national, otherwise a 2-digit state FIPS, including 11 for DC and 72 for Puerto Rico. In data_lea.csv.gz it is instead a 7-digit NCES LEAID identifying a school district, which is not a FIPS code; the containing state's FIPS is in the separate `state` column and is also the LEAID's first two digits. Together with `time` this is the primary key of each file.", + "measure_type": "id", + "unit": "FIPS code or NCES LEAID", + "sources": [{ "id": "nces_acs_ed" }] + }, + + "geography_name": { + "id": "geography_name", + "name": "Location name", + "short_name": "Location name", + "long_name": "Location name", + "category": "identifier", + "short_description": "Name of the state or school district.", + "long_description": "Name as published by NCES, with the trailing state name and postal abbreviation stripped, so \"A-C Central Community Unit School District 262, Illinois, IL\" becomes \"A-C Central Community Unit School District 262\". Names are refreshed with each vintage and are not stable across vintages; join on `geography` rather than on the name.", + "measure_type": "id", + "sources": [{ "id": "nces_acs_ed" }] + }, + + "state": { + "id": "state", + "name": "State", + "short_name": "State", + "long_name": "State FIPS code", + "category": "identifier", + "short_description": "FIPS code of the state containing the school district.", + "long_description": "2-digit state FIPS code, which is also the first two digits of the LEAID. Present in data_lea.csv.gz only, where it is the join key to state-level data, since `geography` there holds an LEAID rather than a FIPS code. Covers 52 values: the 50 states, DC and Puerto Rico.", + "measure_type": "id", + "unit": "FIPS code", + "sources": [{ "id": "nces_acs_ed" }] + }, + + "lea_type": { + "id": "lea_type", + "name": "District type", + "short_name": "District type", + "long_name": "School district type", + "category": "identifier", + "short_description": "Whether the district is elementary, secondary or unified.", + "long_description": "The three types are separate geographic layers that overlap one another: in dual-district states an elementary and a secondary district cover the same ground. Rows must therefore not be summed across types, and data_state.csv.gz should be used for totals. Present in data_lea.csv.gz only. In the 2019-2023 vintage there are 10,878 unified, 1,957 elementary and 480 secondary districts.", + "measure_type": "id", + "levels": { + "Elementary": { "name": "Elementary school district" }, + "Secondary": { "name": "Secondary school district" }, + "Unified": { "name": "Unified school district" } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "time": { + "id": "time", + "name": "Time", + "short_name": "Time", + "long_name": "Period end date", + "category": "identifier", + "short_description": "Last day of the final year of the ACS five-year period.", + "long_description": "Written as YYYY-12-31, so the 2019-2023 estimates carry 2023-12-31. This follows the repository convention of dating annual data to the end of its year, but note that each value summarises five years of sample, not the one year named.", + "measure_type": "time", + "unit": "Date", + "time_resolution": "Year", + "sources": [{ "id": "nces_acs_ed" }] + }, + + "period": { + "id": "period", + "name": "ACS period", + "short_name": "ACS period", + "long_name": "ACS five-year period", + "category": "identifier", + "short_description": "The five-year span the estimates cover, as ACS publishes it.", + "long_description": "For example \"2019-2023\". Kept alongside `time` because it is the label NCES and the Census Bureau use, and because it makes the five-year averaging explicit. Consecutive periods share four years of sample, so year-over-year differences are heavily autocorrelated and are not annual change. Fifteen periods are published, from 2005-2009 to 2019-2023.", + "measure_type": "id", + "unit": "Year range", + "time_resolution": "Year", + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pop_total{variant}": { + "id": "nces_pop_total{variant}", + "short_name": "Total population{variant.suffix}", + "long_name": "Total population{variant.suffix}", + "category": "demographic", + "short_description": "Total population of the state or school district.", + "long_description": "Total population, from ACS table B01003.{variant.note}", + "statement": "{location} had a population of {value}.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate, and is empty far more often than the other margins here. ACS publishes \"*****\" instead of a margin of error wherever a population total is controlled to an independent estimate rather than sampled, which makes its sampling error zero by construction. That is true of every national and state row, so the column is entirely empty in data_state.csv.gz, and of districts coextensive with a controlled geography, which is why the largest districts (New York City, Puerto Rico) are empty too. Elsewhere in data_lea.csv.gz it is populated for 175,676 of 202,075 rows: the median district margin is 344 people, or about 6 percent of the estimate. The 2005-2009 vintage publishes no margins of error at all." + } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pop_under18{variant}": { + "id": "nces_pop_under18{variant}", + "short_name": "Children under 18{variant.suffix}", + "long_name": "Population under 18 years{variant.suffix}", + "category": "demographic", + "short_description": "Number of people under 18 years old.", + "long_description": "Population under 18 years, from ACS table B09001. Includes children in households and in group quarters.{variant.note}", + "statement": "{location} was home to {value} children under 18.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pop_age_0_4{variant}": { + "id": "nces_pop_age_0_4{variant}", + "short_name": "Children under 5{variant.suffix}", + "long_name": "Population under 5 years{variant.suffix}", + "category": "demographic", + "short_description": "Number of children under 5 years old, living in households.", + "long_description": "Sum of the 'Under 3 years' and '3 and 4 years' cells of ACS table B09001. B09001 breaks age down only within the 'In households' branch, so children in group quarters are excluded from this and the other B09001 age bands.{variant.note}", + "statement": "{location} was home to {value} children under 5.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pop_age_5_11{variant}": { + "id": "nces_pop_age_5_11{variant}", + "short_name": "Children 5 to 11{variant.suffix}", + "long_name": "Population 5 to 11 years{variant.suffix}", + "category": "demographic", + "short_description": "Number of children aged 5 to 11, living in households.", + "long_description": "Sum of the '5 years', '6 to 8 years' and '9 to 11 years' cells of ACS table B09001, which covers children in households only.{variant.note}", + "statement": "{location} was home to {value} children aged 5 to 11.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pop_age_12_17{variant}": { + "id": "nces_pop_age_12_17{variant}", + "short_name": "Children 12 to 17{variant.suffix}", + "long_name": "Population 12 to 17 years{variant.suffix}", + "category": "demographic", + "short_description": "Number of children aged 12 to 17, living in households.", + "long_description": "Sum of the '12 to 14 years' and '15 to 17 years' cells of ACS table B09001, which covers children in households only.{variant.note}", + "statement": "{location} was home to {value} children aged 12 to 17.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pop_age_16_19{variant}": { + "id": "nces_pop_age_16_19{variant}", + "short_name": "Teens 16 to 19{variant.suffix}", + "long_name": "Population 16 to 19 years{variant.suffix}", + "category": "demographic", + "short_description": "Number of people aged 16 to 19.", + "long_description": "Total of ACS table B14005, the universe for the high school completion measures.{variant.note}", + "statement": "{location} was home to {value} people aged 16 to 19.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_enrolled_preschool{variant}": { + "id": "nces_enrolled_preschool{variant}", + "short_name": "Enrolled in preschool{variant.suffix}", + "long_name": "Enrolled in nursery school or preschool{variant.suffix}", + "category": "demographic", + "short_description": "Number of people enrolled in nursery school or preschool.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over.{variant.note}", + "statement": "{value} people in {location} were enrolled in preschool.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_enrolled_kindergarten{variant}": { + "id": "nces_enrolled_kindergarten{variant}", + "short_name": "Enrolled in kindergarten{variant.suffix}", + "long_name": "Enrolled in kindergarten{variant.suffix}", + "category": "demographic", + "short_description": "Number of people enrolled in kindergarten.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over.{variant.note}", + "statement": "{value} people in {location} were enrolled in kindergarten.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_enrolled_grade_1_4{variant}": { + "id": "nces_enrolled_grade_1_4{variant}", + "short_name": "Enrolled in grades 1-4{variant.suffix}", + "long_name": "Enrolled in grade 1 to grade 4{variant.suffix}", + "category": "demographic", + "short_description": "Number of people enrolled in grades 1 through 4.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over.{variant.note}", + "statement": "{value} people in {location} were enrolled in grades 1 to 4.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_enrolled_grade_5_8{variant}": { + "id": "nces_enrolled_grade_5_8{variant}", + "short_name": "Enrolled in grades 5-8{variant.suffix}", + "long_name": "Enrolled in grade 5 to grade 8{variant.suffix}", + "category": "demographic", + "short_description": "Number of people enrolled in grades 5 through 8.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over.{variant.note}", + "statement": "{value} people in {location} were enrolled in grades 5 to 8.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_enrolled_grade_9_12{variant}": { + "id": "nces_enrolled_grade_9_12{variant}", + "short_name": "Enrolled in grades 9-12{variant.suffix}", + "long_name": "Enrolled in grade 9 to grade 12{variant.suffix}", + "category": "demographic", + "short_description": "Number of people enrolled in grades 9 through 12.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This is the high school enrollment count that the completion and dropout measures should be read alongside.{variant.note}", + "statement": "{value} people in {location} were enrolled in grades 9 to 12.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_enrolled_k12{variant}": { + "id": "nces_enrolled_k12{variant}", + "short_name": "Enrolled in K-12{variant.suffix}", + "long_name": "Enrolled in kindergarten through grade 12{variant.suffix}", + "category": "demographic", + "short_description": "Number of people enrolled in kindergarten through grade 12.", + "long_description": "Sum of the kindergarten, grade 1-4, grade 5-8 and grade 9-12 cells of ACS table B14001. Preschool and nursery school are excluded.{variant.note}", + "statement": "{value} people in {location} were enrolled in kindergarten through grade 12.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_enrolled_college{variant}": { + "id": "nces_enrolled_college{variant}", + "short_name": "Enrolled in college{variant.suffix}", + "long_name": "Enrolled in college, undergraduate or graduate{variant.suffix}", + "category": "demographic", + "short_description": "Number of people enrolled in undergraduate, graduate or professional school.", + "long_description": "Sum of the 'Enrolled in college, undergraduate years' and 'Graduate or professional school' cells of ACS table B14001.{variant.note}", + "statement": "{value} people in {location} were enrolled in college.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_enrolled_public_5_17{variant}": { + "id": "nces_enrolled_public_5_17{variant}", + "short_name": "In public school, 5-17{variant.suffix}", + "long_name": "Children 5 to 17 enrolled in public school{variant.suffix}", + "category": "demographic", + "short_description": "Number of children aged 5 to 17 enrolled in public school.", + "long_description": "Both sexes and the 5-9, 10-14 and 15-17 age bands of the 'Enrolled in public school' branch of ACS table B14003.{variant.note}", + "statement": "{value} children aged 5 to 17 in {location} attended public school.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_enrolled_private_5_17{variant}": { + "id": "nces_enrolled_private_5_17{variant}", + "short_name": "In private school, 5-17{variant.suffix}", + "long_name": "Children 5 to 17 enrolled in private school{variant.suffix}", + "category": "demographic", + "short_description": "Number of children aged 5 to 17 enrolled in private school.", + "long_description": "Both sexes and the 5-9, 10-14 and 15-17 age bands of the 'Enrolled in private school' branch of ACS table B14003.{variant.note}", + "statement": "{value} children aged 5 to 17 in {location} attended private school.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_enrolled_private_5_17{variant}": { + "id": "nces_pct_enrolled_private_5_17{variant}", + "short_name": "Private school share, 5-17{variant.suffix}", + "long_name": "Percent of enrolled children 5 to 17 attending private school{variant.suffix}", + "category": "demographic", + "short_description": "Of children aged 5 to 17 who are in school, the percent in private school.", + "long_description": "Private school enrollment as a percent of public plus private enrollment for children aged 5 to 17, from ACS table B14003. Children not enrolled in school are excluded from the denominator.{variant.note}", + "statement": "{value} of enrolled children aged 5 to 17 in {location} attended private school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_not_enrolled_5_17{variant}": { + "id": "nces_pct_not_enrolled_5_17{variant}", + "short_name": "Not in school, 5-17{variant.suffix}", + "long_name": "Percent of children 5 to 17 not enrolled in school{variant.suffix}", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who are not enrolled in school.", + "long_description": "Children aged 5 to 17 not enrolled in school as a percent of all children aged 5 to 17, from ACS table B14003.{variant.note}", + "statement": "{value} of children aged 5 to 17 in {location} were not enrolled in school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_not_enrolled_hs_grad_16_19{variant}": { + "id": "nces_not_enrolled_hs_grad_16_19{variant}", + "short_name": "Left school with diploma, 16-19{variant.suffix}", + "long_name": "Teens 16 to 19 not enrolled who hold a high school credential{variant.suffix}", + "category": "demographic", + "short_description": "Number of 16 to 19 year olds who have left school holding a diploma or equivalency.", + "long_description": "Both sexes of the 'Not enrolled in school: High school graduate (includes equivalency)' cells of ACS table B14005. GED and other equivalency credentials count as graduating here, which is not true of the cohort graduation rates NCES publishes from EDFacts.{variant.note}", + "statement": "{value} people aged 16 to 19 in {location} had left school with a high school credential.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_not_enrolled_no_hs_16_19{variant}": { + "id": "nces_not_enrolled_no_hs_16_19{variant}", + "short_name": "Left school without diploma, 16-19{variant.suffix}", + "long_name": "Teens 16 to 19 not enrolled and not a high school graduate{variant.suffix}", + "category": "demographic", + "short_description": "Number of 16 to 19 year olds who have left school without a diploma or equivalency.", + "long_description": "Both sexes of the 'Not enrolled in school: Not high school graduate' cells of ACS table B14005.{variant.note}", + "statement": "{value} people aged 16 to 19 in {location} had left school without a high school credential.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_hs_grad_16_19{variant}": { + "id": "nces_pct_hs_grad_16_19{variant}", + "short_name": "High school completion, 16-19{variant.suffix}", + "long_name": "Percent of 16 to 19 year olds who have left school holding a high school credential{variant.suffix}", + "category": "demographic", + "short_description": "Of 16 to 19 year olds who have left school, the percent holding a diploma or equivalency.", + "long_description": "High school graduates as a percent of all 16 to 19 year olds no longer enrolled in school, from ACS table B14005. This is a survey-based completion measure, not the Adjusted Cohort Graduation Rate: it counts equivalency credentials as completion, it is a five-year average over a four-year age range rather than a single cohort followed to graduation, and it is tabulated by where a teenager lives rather than by the school they attended. For the cohort rate, see the NCES EDFacts and Common Core of Data collections.{variant.note}", + "statement": "{value} of 16 to 19 year olds in {location} who had left school held a high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_dropout_16_19{variant}": { + "id": "nces_pct_dropout_16_19{variant}", + "short_name": "Status dropout rate, 16-19{variant.suffix}", + "long_name": "Percent of 16 to 19 year olds not enrolled and not a high school graduate{variant.suffix}", + "category": "demographic", + "short_description": "Percent of all 16 to 19 year olds who are neither enrolled in school nor holding a high school credential.", + "long_description": "Teens who have left school without a credential as a percent of all 16 to 19 year olds, from ACS table B14005. This follows the status dropout rate that NCES reports from the ACS, except that the published national series uses ages 16 to 24; here the denominator is the 16 to 19 universe the school district tables provide.{variant.note}", + "statement": "{value} of 16 to 19 year olds in {location} were neither in school nor high school graduates.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_enrolled_16_19{variant}": { + "id": "nces_pct_enrolled_16_19{variant}", + "short_name": "Still in school, 16-19{variant.suffix}", + "long_name": "Percent of 16 to 19 year olds enrolled in school{variant.suffix}", + "category": "demographic", + "short_description": "Percent of 16 to 19 year olds still enrolled in school.", + "long_description": "Both sexes of the 'Enrolled in school' cells of ACS table B14005 as a percent of all 16 to 19 year olds. Enrollment here includes college.{variant.note}", + "statement": "{value} of 16 to 19 year olds in {location} were still enrolled in school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_hs_or_higher_25plus{variant}": { + "id": "nces_pct_hs_or_higher_25plus{variant}", + "short_name": "Adults with a diploma{variant.suffix}", + "long_name": "Percent of adults 25 and over with at least a high school credential{variant.suffix}", + "category": "demographic", + "short_description": "Percent of adults 25 and over who hold at least a high school diploma or equivalency.", + "long_description": "Everyone at or above the diploma level, both sexes, as a percent of the population 25 years and over, from ACS table B15002.{variant.note}", + "statement": "{value} of adults in {location} held at least a high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_no_hs_25plus{variant}": { + "id": "nces_pct_no_hs_25plus{variant}", + "short_name": "Adults without a diploma{variant.suffix}", + "long_name": "Percent of adults 25 and over with no high school credential{variant.suffix}", + "category": "demographic", + "short_description": "Percent of adults 25 and over who never completed high school.", + "long_description": "Everyone below the diploma level, from no schooling through 12th grade with no diploma, both sexes, as a percent of the population 25 years and over, from ACS table B15002.{variant.note}", + "statement": "{value} of adults in {location} had no high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_ba_or_higher_25plus{variant}": { + "id": "nces_pct_ba_or_higher_25plus{variant}", + "short_name": "Adults with a bachelor's{variant.suffix}", + "long_name": "Percent of adults 25 and over with a bachelor's degree or higher{variant.suffix}", + "category": "demographic", + "short_description": "Percent of adults 25 and over holding at least a bachelor's degree.", + "long_description": "Bachelor's, master's, professional school and doctorate degrees, both sexes, as a percent of the population 25 years and over, from ACS table B15002.{variant.note}", + "statement": "{value} of adults in {location} held a bachelor's degree or higher.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_non_english_home_5_17{variant}": { + "id": "nces_pct_non_english_home_5_17{variant}", + "short_name": "Non-English at home, 5-17{variant.suffix}", + "long_name": "Percent of children 5 to 17 speaking a language other than English at home{variant.suffix}", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who speak a language other than English at home.", + "long_description": "The Spanish, other Indo-European, Asian and Pacific Island, and other language groups as a percent of all children aged 5 to 17, from ACS table B16004. Says nothing about English proficiency on its own.{variant.note}", + "statement": "{value} of children aged 5 to 17 in {location} spoke a language other than English at home.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_limited_english_5_17{variant}": { + "id": "nces_pct_limited_english_5_17{variant}", + "short_name": "Limited English, 5-17{variant.suffix}", + "long_name": "Percent of children 5 to 17 speaking English less than very well{variant.suffix}", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who speak English less than very well.", + "long_description": "Children who speak English 'well', 'not well' or 'not at all', across all language groups, as a percent of all children aged 5 to 17, from ACS table B16004. This is the Census Bureau's limited-English-proficiency convention: 'very well' is excluded, so the measure is a household-survey analogue of an English learner count rather than a school program count.{variant.note}", + "statement": "{value} of children aged 5 to 17 in {location} spoke English less than very well.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_poverty_under18{variant}": { + "id": "nces_poverty_under18{variant}", + "short_name": "Children in poverty{variant.suffix}", + "long_name": "Children under 18 with income below the poverty level{variant.suffix}", + "category": "demographic", + "short_description": "Number of children under 18 living below the federal poverty level.", + "long_description": "Both sexes and all age bands under 18 of the 'below poverty level' branch of ACS table B17001. The universe is people for whom poverty status is determined, which excludes some people in group quarters.{variant.note}", + "statement": "{value} children in {location} lived below the poverty level.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error of the estimate." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_poverty_under18{variant}": { + "id": "nces_pct_poverty_under18{variant}", + "short_name": "Child poverty rate{variant.suffix}", + "long_name": "Percent of children under 18 with income below the poverty level{variant.suffix}", + "category": "demographic", + "short_description": "Percent of children under 18 living below the federal poverty level.", + "long_description": "Children under 18 below the poverty level as a percent of all children under 18 for whom poverty status is determined, from ACS table B17001.{variant.note}", + "statement": "{value} of children in {location} lived below the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_poverty_all_ages{variant}": { + "id": "nces_pct_poverty_all_ages{variant}", + "short_name": "Poverty rate, all ages{variant.suffix}", + "long_name": "Percent of people of all ages with income below the poverty level{variant.suffix}", + "category": "demographic", + "short_description": "Percent of people of all ages living below the federal poverty level.", + "long_description": "The 'below poverty level' total of ACS table B17001 as a percent of the table total, the population for whom poverty status is determined.{variant.note}", + "statement": "{value} of people in {location} lived below the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_deep_poverty_under18{variant}": { + "id": "nces_pct_deep_poverty_under18{variant}", + "short_name": "Children under 50% FPL{variant.suffix}", + "long_name": "Percent of children under 18 with income below 50 percent of the poverty level{variant.suffix}", + "category": "demographic", + "short_description": "Percent of children under 18 living below half the federal poverty level.", + "long_description": "The 'Under .50' income-to-poverty band for the under 6, 6 to 11 and 12 to 17 age groups of ACS table B17024, as a percent of those age groups. B17024 bands ages differently from B17001, so this rate and the child poverty rate rest on slightly different universes.{variant.note}", + "statement": "{value} of children in {location} lived below half the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_under185_fpl_under18{variant}": { + "id": "nces_pct_under185_fpl_under18{variant}", + "short_name": "Children under 185% FPL{variant.suffix}", + "long_name": "Percent of children under 18 with income below 185 percent of the poverty level{variant.suffix}", + "category": "demographic", + "short_description": "Percent of children under 18 in households below 185 percent of the federal poverty level.", + "long_description": "Income-to-poverty bands from 'Under .50' through '1.75 to 1.84' for the under 6, 6 to 11 and 12 to 17 age groups of ACS table B17024, as a percent of those age groups. 185 percent is the income ceiling for reduced-price school meals, so this approximates the share of children income-eligible for them; the published bands stop at 1.84 rather than 1.85.{variant.note}", + "statement": "{value} of children in {location} lived below 185 percent of the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_median_household_income{variant}": { + "id": "nces_median_household_income{variant}", + "short_name": "Median household income{variant.suffix}", + "long_name": "Median household income in the past 12 months{variant.suffix}", + "category": "demographic", + "short_description": "Median household income over the past 12 months, in dollars of the vintage's final year.", + "long_description": "ACS table B19013. Dollars are inflation-adjusted to the last year of each five-year period, so values are not directly comparable across vintages without deflating to a common year. Districts where the median falls outside the published income brackets are left missing.{variant.note}", + "statement": "The median household income in {location} was {value}.", + "measure_type": "Median", + "unit": "Dollars", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error published with the median." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_median_household_income_bound": { + "id": "nces_median_household_income_bound", + "short_name": "Median income bracket flag", + "long_name": "Whether the median household income fell outside the published brackets", + "category": "demographic", + "short_description": "Says whether the median household income is a usable number, or known only to be above or below the published range.", + "long_description": "\"within\" where nces_median_household_income holds a usable value; \"top\" where ACS reported the median as \"$250,000+\"; \"bottom\" where it reported \"$2,500-\"; and empty where the median is missing for some other reason. For \"top\" and \"bottom\" the estimate itself is NA, because the true median is known only to lie beyond the bracket: at least $250,000, or at most $2,500. Use this column to tell a genuinely missing median apart from a very high or very low one, and to substitute the bracket bound if your analysis needs a number. Top-coded rows are rare but growing as incomes rise, from 2 districts in the 2006-2010 vintage to 37 in 2019-2023; bottom-coded rows never exceed 5.", + "statement": "The median household income in {location} was {value} the published range.", + "measure_type": "category", + "unit": "", + "time_resolution": "Year", + "levels": { + "within": { "name": "Within the published range" }, + "top": { "name": "At least $250,000" }, + "bottom": { "name": "At most $2,500" } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_uninsured_children{variant}": { + "id": "nces_pct_uninsured_children{variant}", + "short_name": "Uninsured children{variant.suffix}", + "long_name": "Percent of children without health insurance coverage{variant.suffix}", + "category": "access", + "short_description": "Percent of children with no health insurance coverage.", + "long_description": "Children with no health insurance coverage as a percent of all children, both sexes, from ACS table B27001. The age range shifts with the table: it is under 18 through the 2012-2016 vintage and under 19 from 2013-2017 onward, because the second age band was relabelled from '6 to 17 years' to '6 to 18 years'. The universe is the civilian noninstitutionalized population.{variant.note}", + "statement": "{value} of children in {location} had no health insurance.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_uninsured_all_ages{variant}": { + "id": "nces_pct_uninsured_all_ages{variant}", + "short_name": "Uninsured, all ages{variant.suffix}", + "long_name": "Percent of people of all ages without health insurance coverage{variant.suffix}", + "category": "access", + "short_description": "Percent of people of all ages with no health insurance coverage.", + "long_description": "All 'No health insurance coverage' cells of ACS table B27001 as a percent of the table total. The universe is the civilian noninstitutionalized population.{variant.note}", + "statement": "{value} of people in {location} had no health insurance.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_disability_5_17{variant}": { + "id": "nces_pct_disability_5_17{variant}", + "short_name": "Disability, 5-17{variant.suffix}", + "long_name": "Percent of children 5 to 17 with a disability{variant.suffix}", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 reported to have a disability.", + "long_description": "Children aged 5 to 17 with a disability, both sexes, as a percent of all children aged 5 to 17, from ACS table B18101. Disability is self- or proxy-reported across six functional questions and does not correspond to special education eligibility. First published in the 2008-2012 vintage.{variant.note}", + "statement": "{value} of children aged 5 to 17 in {location} had a disability.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_single_parent_families{variant}": { + "id": "nces_pct_single_parent_families{variant}", + "short_name": "Single-parent families{variant.suffix}", + "long_name": "Percent of families with children headed by one parent{variant.suffix}", + "category": "demographic", + "short_description": "Of families with their own children under 18, the percent with no spouse present.", + "long_description": "Male- and female-householder families with no spouse present and with own children under 18, as a percent of all families with own children under 18, from ACS table B11003. Families without children are excluded from the denominator.{variant.note}", + "statement": "{value} of families with children in {location} were headed by one parent.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_unemployed{variant}": { + "id": "nces_pct_unemployed{variant}", + "short_name": "Unemployment rate{variant.suffix}", + "long_name": "Percent of the civilian labor force unemployed{variant.suffix}", + "category": "demographic", + "short_description": "Unemployed people as a percent of the civilian labor force aged 16 and over.", + "long_description": "ACS table B23025. The denominator is the civilian labor force, so people not in the labor force and the armed forces are excluded. First published in the 2007-2011 vintage.{variant.note}", + "statement": "The unemployment rate in {location} was {value}.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_renter_occupied{variant}": { + "id": "nces_pct_renter_occupied{variant}", + "short_name": "Renter-occupied homes{variant.suffix}", + "long_name": "Percent of occupied housing units that are renter occupied{variant.suffix}", + "category": "demographic", + "short_description": "Percent of occupied housing units occupied by renters.", + "long_description": "ACS table B25003. Vacant units are excluded from the denominator.{variant.note}", + "statement": "{value} of occupied homes in {location} were rented.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_foreign_born{variant}": { + "id": "nces_pct_foreign_born{variant}", + "short_name": "Foreign born{variant.suffix}", + "long_name": "Percent of the population that is foreign born{variant.suffix}", + "category": "demographic", + "short_description": "Percent of people born outside the United States to non-U.S. citizen parents.", + "long_description": "The 'Foreign born' branch of ACS table B05002 as a percent of the total population. Includes naturalized citizens and non-citizens, and excludes people born abroad to American parents and those born in Puerto Rico or the U.S. Island Areas.{variant.note}", + "statement": "{value} of people in {location} were foreign born.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_no_internet{variant}": { + "id": "nces_pct_no_internet{variant}", + "short_name": "No internet subscription{variant.suffix}", + "long_name": "Percent of households without an internet subscription{variant.suffix}", + "category": "access", + "short_description": "Percent of households with no internet subscription of any kind.", + "long_description": "Households with internet access but no subscription, plus households with no internet access, as a percent of all households, from ACS table B28002. First published in the 2013-2017 vintage.{variant.note}", + "statement": "{value} of households in {location} had no internet subscription.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "nces_pct_broadband{variant}": { + "id": "nces_pct_broadband{variant}", + "short_name": "Broadband{variant.suffix}", + "long_name": "Percent of households with a broadband subscription{variant.suffix}", + "category": "access", + "short_description": "Percent of households with a broadband internet subscription of any type.", + "long_description": "The 'Broadband of any type' cell of ACS table B28002 as a percent of all households. Cellular data plans count as broadband here. First published in the 2013-2017 vintage.{variant.note}", + "statement": "{value} of households in {location} had a broadband subscription.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "variants": { + "blank": { "suffix": "", "note": "" }, + "_moe": { "suffix": " (margin of error)", "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." } + }, + "sources": [{ "id": "nces_acs_ed" }] + }, + + "_sources": { + "nces_acs_ed": { + "name": "NCES ACS-ED Tables", + "url": "https://nces.ed.gov/programs/edge/Demographic/acsedtables", + "organization": "National Center for Education Statistics, Education Demographic and Geographic Estimates (EDGE) program", + "organization_url": "https://nces.ed.gov/programs/edge/", + "location": "EDGE TableViewer, ACS dataset", + "location_url": "https://nces.ed.gov/programs/edge/TableViewer/acs/2023", + "description": "The EDGE program has the Census Bureau retabulate American Community Survey five-year period estimates onto school district boundaries, producing social, economic and housing indicators for school-age children and their families at national, state and school district level. Fifteen vintages are published, from 2005-2009 through 2019-2023, each covering roughly 13,400 elementary, secondary and unified districts alongside the 50 states, DC and Puerto Rico. Because these are five-year survey averages for small areas, district-level margins of error are often large relative to the estimates and consecutive vintages share four years of sample, so year-over-year changes are heavily autocorrelated and should not be read as annual change. District boundaries are refreshed each year, so a district's geography is not necessarily constant across vintages. This source carries the survey-based measures of high school completion and dropout; the Adjusted Cohort Graduation Rate, which follows a single cohort to graduation and is reported by school rather than by residence, comes from the separate NCES EDFacts and Common Core of Data collections and is not part of these tables.", + "restrictions": "Public domain. NCES and Census Bureau data are generally not subject to copyright restrictions.", + "date_accessed": 2026 + } + }, + + "_catalog": { + "summary": "The ACS-ED tables describe children and families in every U.S. school district, covering school enrollment, child poverty, language, health insurance and high school completion.", + "search_terms": [ + "Education", + "school districts", + "school enrollment", + "child poverty", + "graduation" + ], + "bucket": [], + "files": { + "data_state.csv.gz": "National and state indicators", + "data_lea.csv.gz": "School district indicators by district type" + } + } +} diff --git a/data/nces_acs_ed/process.json b/data/nces_acs_ed/process.json new file mode 100644 index 0000000..99ee277 --- /dev/null +++ b/data/nces_acs_ed/process.json @@ -0,0 +1,60 @@ +{ + "name": "nces_acs_ed", + "type": "source", + "scripts": [ + { + "path": "ingest.R", + "manual": false, + "last_run": "2026-09-03 17:01:32", + "frequency": 0, + "run_time": 246.95, + "last_status": { + "log": ["", "Attaching package: 'dplyr'", "", "The following objects are masked from 'package:stats':", "", " filter, lag", "", "The following objects are masked from 'package:base':", "", " intersect, setdiff, setequal, union", "", "=== vintage 2023", " B01003: 1 cells, 13440 geographies", " B05002: 2 cells, 13440 geographies", " B09001: 8 cells, 13440 geographies", " B11003: 3 cells, 13440 geographies", " B14001: 7 cells, 13440 geographies", " B14003: 18 cells, 13440 geographies", " B14005: 7 cells, 13440 geographies", " B15002: 33 cells, 13440 geographies", " B16004: 17 cells, 13440 geographies", " B17001: 26 cells, 13440 geographies", " B17024: 24 cells, 13440 geographies", " B18101: 4 cells, 13440 geographies", " B19013: 1 cells, 13440 geographies", " B23025: 2 cells, 13440 geographies", " B25003: 2 cells, 13440 geographies", " B27001: 23 cells, 13440 geographies", " B28002: 4 cells, 13440 geographies", "wrote 795 state rows and 202075 district rows over 15 vintages"], + "success": true + } + } + ], + "checked": "2026-09-03 16:38:44", + "check_results": { + "data/nces_acs_ed/standard/data_lea.csv.gz": [], + "data/nces_acs_ed/standard/data_state.csv.gz": [] + }, + "standalone": false, + "raw_state": { + "raw/cells_2009.csv.xz": "eb696899e47db3f815919b8d9fb86e35", + "raw/cells_2010.csv.xz": "b280cbd2f0bac7078258383bc81dd94b", + "raw/cells_2011.csv.xz": "24ccde66ba4c74d1caba4de4bb176fd9", + "raw/cells_2012.csv.xz": "c53e843aab009350b4aca8387c647bc5", + "raw/cells_2013.csv.xz": "723eda170182dae947e66542d3ac2855", + "raw/cells_2014.csv.xz": "412328366b890ade72f2321e14f666ac", + "raw/cells_2015.csv.xz": "d6d2f4ead732b5067319d5ce1444a5c6", + "raw/cells_2016.csv.xz": "291bb498e25236191974d82a0eae2f37", + "raw/cells_2017.csv.xz": "a08316f7e2a67446f4f2cc7ca7eb8d8a", + "raw/cells_2018.csv.xz": "01118be3eab21e1c6be8b941163e388d", + "raw/cells_2019.csv.xz": "3f46e0a055a1389cf8bace423c328d77", + "raw/cells_2020.csv.xz": "7f05b575faaa5721dc716343d3e70334", + "raw/cells_2021.csv.xz": "170bc108edf39fcd688c8a8da5f6964f", + "raw/cells_2022.csv.xz": "4365faac56bdfad394c4c7c8f663a69f", + "raw/cells_2023.csv.xz": "726d1aef19b6797cf873d6a173395694", + "raw/codebook_2009.csv.xz": "bf12c28d2251097f572f5af398ef250c", + "raw/codebook_2010.csv.xz": "66fa8d4d12f688149c642fad52bc3dfa", + "raw/codebook_2011.csv.xz": "d71c65a531352d8fd49081a5814b1278", + "raw/codebook_2012.csv.xz": "3ef18c4f5e30e1d48478679f5d8c46e0", + "raw/codebook_2013.csv.xz": "4b28018abc9baa3dbe87a6867a427fdd", + "raw/codebook_2014.csv.xz": "8621edac78c42d18241cd5a96210e77d", + "raw/codebook_2015.csv.xz": "9beeb5ab283fb9b2640ee396f87515c3", + "raw/codebook_2016.csv.xz": "af59b39d529c39b6a53a89fcdde9b52c", + "raw/codebook_2017.csv.xz": "094cdb2311104beff038acca2d1ba177", + "raw/codebook_2018.csv.xz": "cda887c963f0fd904227fdd768a7369d", + "raw/codebook_2019.csv.xz": "d0e9474499ae88ca5fae85492cd58f88", + "raw/codebook_2020.csv.xz": "576a3a9a5c58f3851d2b8ff1ec029388", + "raw/codebook_2021.csv.xz": "e786a932ea1d8f50062b277c15cee3b5", + "raw/codebook_2022.csv.xz": "b9d7ca1e4c6e688012132487474fe667", + "raw/codebook_2023.csv.xz": "53d9773ea4d99ce754c877e19a5ddf5e" + }, + "standard_state": { + "./data/nces_acs_ed/measure_info.json": "97b41e590cd55bc18039052f17faee76", + "./data/nces_acs_ed/standard/data_lea.csv.gz": "ccee05cdcb2cc8aedb006bf3f9adb3f5", + "./data/nces_acs_ed/standard/data_state.csv.gz": "b2331f37dad49ebd63b33a8095191c9b" + } +} diff --git a/data/nces_acs_ed/raw/codebook_2009.csv.xz b/data/nces_acs_ed/raw/codebook_2009.csv.xz new file mode 100644 index 0000000..3e8b7cb Binary files /dev/null and b/data/nces_acs_ed/raw/codebook_2009.csv.xz differ diff --git a/data/nces_acs_ed/raw/codebook_2010.csv.xz b/data/nces_acs_ed/raw/codebook_2010.csv.xz new file mode 100644 index 0000000..44214bb Binary files /dev/null and b/data/nces_acs_ed/raw/codebook_2010.csv.xz differ diff --git a/data/nces_acs_ed/raw/codebook_2011.csv.xz b/data/nces_acs_ed/raw/codebook_2011.csv.xz new file mode 100644 index 0000000..851aafa Binary files /dev/null and b/data/nces_acs_ed/raw/codebook_2011.csv.xz differ diff --git a/data/nces_acs_ed/raw/codebook_2012.csv.xz b/data/nces_acs_ed/raw/codebook_2012.csv.xz new file mode 100644 index 0000000..f59a4af Binary files /dev/null and b/data/nces_acs_ed/raw/codebook_2012.csv.xz differ diff --git a/data/nces_acs_ed/raw/codebook_2013.csv.xz b/data/nces_acs_ed/raw/codebook_2013.csv.xz new file mode 100644 index 0000000..fd07af8 Binary files /dev/null and b/data/nces_acs_ed/raw/codebook_2013.csv.xz differ diff --git a/data/nces_acs_ed/raw/codebook_2014.csv.xz b/data/nces_acs_ed/raw/codebook_2014.csv.xz new file mode 100644 index 0000000..b88e5a3 Binary files /dev/null and b/data/nces_acs_ed/raw/codebook_2014.csv.xz differ diff --git a/data/nces_acs_ed/raw/codebook_2015.csv.xz b/data/nces_acs_ed/raw/codebook_2015.csv.xz new file mode 100644 index 0000000..12d3370 Binary files /dev/null and b/data/nces_acs_ed/raw/codebook_2015.csv.xz differ diff --git a/data/nces_acs_ed/raw/codebook_2016.csv.xz b/data/nces_acs_ed/raw/codebook_2016.csv.xz new file mode 100644 index 0000000..cf1005f Binary files /dev/null and b/data/nces_acs_ed/raw/codebook_2016.csv.xz differ diff --git a/data/nces_acs_ed/raw/codebook_2017.csv.xz b/data/nces_acs_ed/raw/codebook_2017.csv.xz new file mode 100644 index 0000000..845f2cf Binary files /dev/null and b/data/nces_acs_ed/raw/codebook_2017.csv.xz differ diff --git a/data/nces_acs_ed/raw/codebook_2018.csv.xz b/data/nces_acs_ed/raw/codebook_2018.csv.xz new file mode 100644 index 0000000..e3fa59e Binary files /dev/null and b/data/nces_acs_ed/raw/codebook_2018.csv.xz differ diff --git a/data/nces_acs_ed/raw/codebook_2019.csv.xz b/data/nces_acs_ed/raw/codebook_2019.csv.xz new file mode 100644 index 0000000..0a507d9 Binary files /dev/null and b/data/nces_acs_ed/raw/codebook_2019.csv.xz differ diff --git a/data/nces_acs_ed/raw/codebook_2020.csv.xz b/data/nces_acs_ed/raw/codebook_2020.csv.xz new file mode 100644 index 0000000..4aafd3f Binary files /dev/null and b/data/nces_acs_ed/raw/codebook_2020.csv.xz differ diff --git a/data/nces_acs_ed/raw/codebook_2021.csv.xz b/data/nces_acs_ed/raw/codebook_2021.csv.xz new file mode 100644 index 0000000..3884358 Binary files /dev/null and b/data/nces_acs_ed/raw/codebook_2021.csv.xz differ diff --git a/data/nces_acs_ed/raw/codebook_2022.csv.xz b/data/nces_acs_ed/raw/codebook_2022.csv.xz new file mode 100644 index 0000000..d95a350 Binary files /dev/null and b/data/nces_acs_ed/raw/codebook_2022.csv.xz differ diff --git a/data/nces_acs_ed/raw/codebook_2023.csv.xz b/data/nces_acs_ed/raw/codebook_2023.csv.xz new file mode 100644 index 0000000..9ae53b6 Binary files /dev/null and b/data/nces_acs_ed/raw/codebook_2023.csv.xz differ diff --git a/data/nces_acs_ed/standard/data_lea.csv.gz b/data/nces_acs_ed/standard/data_lea.csv.gz new file mode 100644 index 0000000..909b9ca Binary files /dev/null and b/data/nces_acs_ed/standard/data_lea.csv.gz differ diff --git a/data/nces_acs_ed/standard/data_state.csv.gz b/data/nces_acs_ed/standard/data_state.csv.gz new file mode 100644 index 0000000..a6000fd Binary files /dev/null and b/data/nces_acs_ed/standard/data_state.csv.gz differ diff --git a/data/nces_acs_ed/standard/datapackage.json b/data/nces_acs_ed/standard/datapackage.json new file mode 100644 index 0000000..67a1675 --- /dev/null +++ b/data/nces_acs_ed/standard/datapackage.json @@ -0,0 +1,35641 @@ +{ + "name": "nces_acs_ed", + "title": "Nces Acs Ed", + "licenses": [], + "resources": [ + { + "bytes": 37422048, + "encoding": "windows-1253", + "md5": "ccee05cdcb2cc8aedb006bf3f9adb3f5", + "format": "csv", + "name": "data_lea.csv", + "filename": "data_lea.csv.gz", + "versions": {}, + "source": [], + "data_format": "tall", + "ids": [ + { + "variable": "geography" + } + ], + "id_length": 7, + "time": "time", + "profile": "data-resource", + "created": "2026-09-03 12:09:00.008141", + "last_modified": "2026-09-03 17:01:32.931648", + "vintage": {}, + "row_count": 202075, + "entity_count": 14241, + "schema": { + "fields": [ + { + "name": "geography", + "duplicates": 187834, + "info": { + "id": "geography", + "name": "Location", + "short_name": "Location", + "long_name": "Location identifier", + "category": "identifier", + "short_description": "Identifies the state or school district a row describes.", + "long_description": "In data_state.csv.gz this is a FIPS code: \"00\" for national, otherwise a 2-digit state FIPS, including 11 for DC and 72 for Puerto Rico. In data_lea.csv.gz it is instead a 7-digit NCES LEAID identifying a school district, which is not a FIPS code; the containing state's FIPS is in the separate `state` column and is also the LEAID's first two digits. Together with `time` this is the primary key of each file.", + "measure_type": "id", + "unit": "FIPS code or NCES LEAID", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "string", + "missing": 0, + "table": { + "0100001": 15, + "0100003": 15, + "0100005": 15, + "0100006": 15, + "0100007": 15, + "0100008": 15, + "0100011": 15, + "0100012": 15, + "0100013": 15, + "0100030": 15, + "0100060": 15, + "0100090": 15, + "0100100": 15, + "0100120": 15, + "0100180": 15, + "0100185": 14, + "0100188": 10, + "0100189": 10, + "0100190": 10, + "0100194": 8, + "0100195": 8, + "0100202": 3, + "0100210": 15, + "0100240": 15, + "0100270": 15, + "0100300": 15, + "0100330": 15, + "0100360": 15, + "0100390": 15, + "0100420": 15, + "0100450": 15, + "0100480": 15, + "0100510": 15, + "0100540": 15, + "0100600": 15, + "0100630": 15, + "0100660": 15, + "0100690": 15, + "0100720": 15, + "0100750": 15, + "0100780": 15, + "0100810": 15, + "0100840": 15, + "0100870": 15, + "0100900": 15, + "0100930": 15, + "0100960": 15, + "0100990": 15, + "0101020": 15, + "0101050": 15, + "0101080": 15, + "0101110": 15, + "0101140": 15, + "0101170": 15, + "0101200": 15, + "0101230": 15, + "0101260": 15, + "0101290": 15, + "0101320": 15, + "0101350": 15, + "0101380": 15, + "0101410": 15, + "0101440": 15, + "0101470": 15, + "0101530": 15, + "0101560": 15, + "0101590": 15, + "0101620": 15, + "0101640": 15, + "0101660": 15, + "0101680": 15, + "0101690": 15, + "0101710": 15, + "0101720": 15, + "0101730": 15, + "0101740": 15, + "0101760": 15, + "0101770": 15, + "0101800": 15, + "0101830": 15, + "0101860": 15, + "0101890": 15, + "0101920": 15, + "0101950": 15, + "0101980": 15, + "0102010": 15, + "0102040": 15, + "0102070": 15, + "0102100": 15, + "0102130": 15, + "0102160": 15, + "0102190": 15, + "0102220": 15, + "0102250": 15, + "0102310": 15, + "0102350": 15, + "0102370": 15, + "0102400": 15, + "0102430": 15, + "0102480": 15, + "0102490": 15, + "0102520": 15, + "0102550": 15, + "0102580": 15, + "0102610": 15, + "0102635": 15, + "0102640": 15, + "0102650": 15, + "0102670": 15, + "0102700": 15, + "0102730": 15, + "0102760": 15, + "0102790": 15, + "0102820": 15, + "0102850": 15, + "0102880": 15, + "0102910": 15, + "0102940": 15, + "0102970": 15, + "0103000": 15, + "0103030": 15, + "0103062": 15, + "0103090": 15, + "0103120": 15, + "0103150": 15, + "0103180": 15, + "0103210": 15, + "0103240": 15, + "0103270": 15, + "0103300": 15, + "0103330": 15, + "0103360": 15, + "0103390": 15, + "0103420": 15, + "0103430": 15, + "0103450": 15, + "0103480": 15, + "0103510": 15, + "0103540": 15, + "0103580": 15, + "0103581": 1, + "0200001": 15, + "0200003": 15, + "0200004": 15, + "0200005": 15, + "0200007": 15, + "0200010": 15, + "0200020": 15, + "0200030": 15, + "0200050": 15, + "0200060": 15, + "0200070": 15, + "0200090": 15, + "0200100": 15, + "0200120": 15, + "0200130": 15, + "0200150": 15, + "0200180": 15, + "0200210": 15, + "0200240": 15, + "0200270": 15, + "0200300": 15, + "0200330": 15, + "0200360": 15, + "0200390": 15, + "0200450": 15, + "0200480": 15, + "0200485": 15, + "0200510": 15, + "0200520": 15, + "0200525": 15, + "0200540": 15, + "0200570": 15, + "0200600": 15, + "0200610": 15, + "0200625": 15, + "0200630": 15, + "0200660": 15, + "0200670": 15, + "0200680": 15, + "0200690": 15, + "0200700": 15, + "0200710": 15, + "0200715": 15, + "0200720": 15, + "0200730": 15, + "0200760": 15, + "0200770": 15, + "0200775": 15, + "0200780": 15, + "0200800": 15, + "0200810": 15, + "0200840": 15, + "0200862": 15, + "0400001": 15, + "0400003": 15, + "0400004": 15, + "0400005": 15, + "0400021": 15, + "0400022": 15, + "0400023": 15, + "0400026": 15, + "0400082": 15, + "0400212": 15, + "0400295": 15, + "0400450": 15, + "0400480": 15, + "0400520": 15, + "0400600": 15, + "0400630": 15, + "0400680": 15, + "0400720": 15, + "0400750": 15, + "0400790": 15, + "0400840": 15, + "0400870": 15, + "0400910": 15, + "0400960": 15, + "0401000": 15, + "0401050": 15, + "0401080": 15, + "0401160": 15, + "0401180": 15, + "0401230": 15, + "0401260": 15, + "0401290": 15, + "0401330": 15, + "0401380": 15, + "0401410": 15, + "0401460": 15, + "0401500": 15, + "0401600": 15, + "0401650": 15, + "0401680": 15, + "0401710": 15, + "0401740": 15, + "0401760": 15, + "0401810": 15, + "0401830": 1, + "0401870": 15, + "0401920": 15, + "0401940": 15, + "0402110": 7, + "0402130": 15, + "0402190": 15, + "0402220": 15, + "0402250": 15, + "0402320": 15, + "0402370": 15, + "0402400": 15, + "0402430": 15, + "0402460": 15, + "0402490": 15, + "0402530": 15, + "0402600": 15, + "0402690": 15, + "0402710": 15, + "0402760": 15, + "0402790": 15, + "0402820": 15, + "0402860": 15, + "0402920": 15, + "0403010": 15, + "0403030": 1, + "0403040": 15, + "0403060": 15, + "0403080": 15, + "0403150": 15, + "0403200": 15, + "0403240": 15, + "0403290": 15, + "0403310": 15, + "0403400": 15, + "0403420": 15, + "0403450": 15, + "0403500": 15, + "0403550": 15, + "0403660": 15, + "0403730": 15, + "0403780": 15, + "0403820": 15, + "0403870": 15, + "0403900": 15, + "0403950": 15, + "0403960": 15, + "0403990": 15, + "0404001": 1, + "0404003": 1, + "0404005": 1, + "0404007": 1, + "0404009": 1, + "0404010": 15, + "0404011": 1, + "0404013": 1, + "0404015": 1, + "0404019": 1, + "0404021": 1, + "0404023": 1, + "0404025": 1, + "0404060": 15, + "0404170": 15, + "0404200": 15, + "0404230": 15, + "0404280": 15, + "0404290": 15, + "0404320": 15, + "0404380": 15, + "0404410": 15, + "0404440": 15, + "0404500": 15, + "0404530": 15, + "0404570": 15, + "0404630": 15, + "0404720": 15, + "0404770": 15, + "0404820": 15, + "0404860": 15, + "0404920": 15, + "0404970": 15, + "0405030": 15, + "0405070": 15, + "0405100": 15, + "0405190": 15, + "0405220": 15, + "0405320": 15, + "0405340": 15, + "0405400": 15, + "0405430": 15, + "0405460": 15, + "0405530": 15, + "0405640": 15, + "0405670": 15, + "0405730": 15, + "0405760": 15, + "0405820": 15, + "0405850": 15, + "0405880": 15, + "0405930": 15, + "0405980": 15, + "0406000": 15, + "0406030": 15, + "0406070": 15, + "0406120": 15, + "0406150": 15, + "0406210": 15, + "0406250": 15, + "0406300": 15, + "0406330": 15, + "0406360": 15, + "0406440": 15, + "0406510": 15, + "0406580": 15, + "0406630": 15, + "0406730": 15, + "0406740": 15, + "0406780": 15, + "0406810": 15, + "0406850": 15, + "0406870": 15, + "0406900": 15, + "0406930": 15, + "0406960": 15, + "0407020": 15, + "0407080": 15, + "0407130": 15, + "0407140": 13, + "0407170": 15, + "0407200": 15, + "0407240": 15, + "0407300": 15, + "0407380": 15, + "0407430": 15, + "0407500": 15, + "0407520": 15, + "0407530": 15, + "0407570": 15, + "0407630": 15, + "0407680": 15, + "0407700": 15, + "0407750": 15, + "0407770": 15, + "0407820": 15, + "0407860": 15, + "0407890": 15, + "0407920": 15, + "0408020": 15, + "0408080": 15, + "0408130": 15, + "0408170": 15, + "0408230": 15, + "0408280": 15, + "0408310": 15, + "0408340": 15, + "0408410": 15, + "0408430": 15, + "0408460": 15, + "0408490": 15, + "0408520": 15, + "0408550": 15, + "0408600": 15, + "0408640": 15, + "0408680": 15, + "0408800": 15, + "0408820": 15, + "0408850": 15, + "0408880": 15, + "0408910": 15, + "0409030": 15, + "0409060": 15, + "0409090": 15, + "0409120": 15, + "0409160": 15, + "0409190": 15, + "0409250": 15, + "0409310": 15, + "0409360": 15, + "0409390": 15, + "0409430": 15, + "0409460": 15, + "0409510": 15, + "0409540": 15, + "0409570": 15, + "0409600": 15, + "0409630": 15, + "0409733": 15, + "0499997": 6, + "0500001": 15, + "0500006": 15, + "0500007": 3, + "0500009": 15, + "0500012": 15, + "0500015": 15, + "0500016": 15, + "0500017": 15, + "0500019": 15, + "0500020": 15, + "0500021": 15, + "0500023": 15, + "0500026": 15, + "0500028": 15, + "0500029": 15, + "0500030": 15, + "0500032": 15, + "0500041": 15, + "0500042": 15, + "0500043": 15, + "0500044": 15, + "0500045": 15, + "0500046": 15, + "0500047": 15, + "0500048": 15, + "0500049": 15, + "0500051": 15, + "0500065": 15, + "0500067": 15, + "0500068": 15, + "0500070": 15, + "0500071": 15, + "0500072": 15, + "0500073": 15, + "0500076": 15, + "0500077": 3, + "0500079": 15, + "0500082": 12, + "0500405": 12, + "0500419": 6, + "0502250": 15, + "0502280": 15, + "0502330": 3, + "0502430": 15, + "0502550": 15, + "0502580": 15, + "0502610": 15, + "0502670": 15, + "0502700": 15, + "0502730": 15, + "0502790": 15, + "0502820": 15, + "0502880": 15, + "0502960": 15, + "0503030": 15, + "0503060": 15, + "0503090": 15, + "0503150": 15, + "0503240": 15, + "0503270": 3, + "0503300": 15, + "0503320": 15, + "0503420": 15, + "0503450": 15, + "0503480": 15, + "0503510": 5, + "0503630": 15, + "0503640": 15, + "0503690": 15, + "0503710": 15, + "0503750": 15, + "0503770": 15, + "0503840": 15, + "0503960": 15, + "0504020": 15, + "0504050": 15, + "0504080": 15, + "0504110": 15, + "0504170": 15, + "0504200": 15, + "0504350": 15, + "0504370": 15, + "0504380": 15, + "0504410": 15, + "0504560": 15, + "0504590": 15, + "0504680": 15, + "0504740": 15, + "0504800": 15, + "0504830": 1, + "0504860": 15, + "0504890": 15, + "0504930": 15, + "0504980": 15, + "0505070": 3, + "0505170": 15, + "0505190": 15, + "0505310": 3, + "0505340": 15, + "0505410": 13, + "0505430": 15, + "0505470": 15, + "0505500": 15, + "0505550": 15, + "0505580": 15, + "0505680": 15, + "0505740": 3, + "0505760": 15, + "0505850": 15, + "0505970": 15, + "0506060": 15, + "0506090": 15, + "0506120": 15, + "0506150": 15, + "0506210": 15, + "0506240": 15, + "0506270": 15, + "0506330": 15, + "0506360": 15, + "0506420": 15, + "0506540": 15, + "0506630": 15, + "0506690": 15, + "0506840": 15, + "0506870": 15, + "0506900": 15, + "0506930": 15, + "0506990": 15, + "0507110": 15, + "0507140": 15, + "0507170": 15, + "0507230": 15, + "0507290": 15, + "0507320": 15, + "0507350": 15, + "0507380": 15, + "0507410": 7, + "0507530": 15, + "0507560": 15, + "0507620": 15, + "0507680": 15, + "0507710": 15, + "0507740": 15, + "0507770": 15, + "0507840": 15, + "0507860": 15, + "0507890": 15, + "0507920": 15, + "0507990": 15, + "0508010": 7, + "0508040": 15, + "0508130": 15, + "0508240": 15, + "0508280": 15, + "0508340": 15, + "0508400": 15, + "0508490": 15, + "0508610": 15, + "0508640": 15, + "0508670": 15, + "0508700": 15, + "0508730": 15, + "0508940": 15, + "0509000": 15, + "0509030": 3, + "0509060": 15, + "0509150": 15, + "0509190": 15, + "0509240": 15, + "0509270": 15, + "0509330": 15, + "0509360": 15, + "0509390": 15, + "0509420": 15, + "0509480": 15, + "0509510": 15, + "0509540": 15, + "0509570": 15, + "0509600": 15, + "0509630": 15, + "0509720": 15, + "0509750": 15, + "0509780": 15, + "0509840": 15, + "0509990": 15, + "0510080": 15, + "0510170": 15, + "0510200": 15, + "0510260": 15, + "0510290": 15, + "0510320": 15, + "0510380": 15, + "0510410": 15, + "0510440": 15, + "0510560": 15, + "0510620": 7, + "0510680": 15, + "0510920": 15, + "0510950": 15, + "0510980": 15, + "0511010": 15, + "0511070": 15, + "0511130": 15, + "0511220": 15, + "0511340": 15, + "0511370": 15, + "0511610": 15, + "0511700": 15, + "0511730": 15, + "0511760": 15, + "0511820": 15, + "0511850": 15, + "0511880": 15, + "0511970": 15, + "0512000": 15, + "0512060": 15, + "0512090": 15, + "0512180": 15, + "0512210": 15, + "0512420": 15, + "0512450": 15, + "0512480": 15, + "0512510": 15, + "0512520": 15, + "0512540": 15, + "0512570": 15, + "0512630": 15, + "0512660": 15, + "0512870": 7, + "0512930": 15, + "0512960": 15, + "0513080": 15, + "0513110": 15, + "0513230": 15, + "0513260": 3, + "0513350": 15, + "0513380": 15, + "0513410": 15, + "0513440": 3, + "0513530": 15, + "0513560": 15, + "0513650": 3, + "0513680": 15, + "0513740": 3, + "0513930": 15, + "0513950": 3, + "0514010": 15, + "0514020": 15, + "0514040": 15, + "0514140": 15, + "0514160": 3, + "0514370": 15, + "0514400": 15, + "0514430": 15, + "0514490": 15, + "0600001": 15, + "0600006": 15, + "0600009": 15, + "0600011": 15, + "0600012": 15, + "0600013": 15, + "0600014": 15, + "0600015": 15, + "0600016": 15, + "0600017": 15, + "0600018": 15, + "0600019": 15, + "0600020": 15, + "0600021": 15, + "0600022": 15, + "0600025": 15, + "0600026": 15, + "0600027": 15, + "0600028": 15, + "0600029": 15, + "0600031": 15, + "0600032": 15, + "0600033": 15, + "0600034": 15, + "0600035": 15, + "0600036": 15, + "0600037": 15, + "0600038": 15, + "0600039": 15, + "0600040": 15, + "0600042": 15, + "0600043": 15, + "0600044": 15, + "0600045": 15, + "0600046": 15, + "0600047": 15, + "0600048": 15, + "0600049": 15, + "0600051": 15, + "0600052": 15, + "0600060": 15, + "0600061": 15, + "0600062": 15, + "0600063": 15, + "0600064": 15, + "0600065": 15, + "0600067": 15, + "0600068": 15, + "0600069": 15, + "0600116": 15, + "0600153": 15, + "0600158": 14, + "0600159": 15, + "0600160": 14, + "0601331": 14, + "0601332": 14, + "0601339": 10, + "0601409": 10, + "0601410": 12, + "0601414": 12, + "0601415": 12, + "0601418": 10, + "0601420": 10, + "0601421": 10, + "0601423": 10, + "0601426": 8, + "0601427": 8, + "0601428": 8, + "0601442": 6, + "0601620": 15, + "0601650": 15, + "0601680": 15, + "0601710": 15, + "0601770": 15, + "0601860": 15, + "0601890": 15, + "0601950": 15, + "0601980": 15, + "0602010": 15, + "0602070": 15, + "0602100": 15, + "0602160": 15, + "0602220": 15, + "0602250": 15, + "0602310": 15, + "0602360": 15, + "0602370": 15, + "0602430": 15, + "0602450": 15, + "0602550": 3, + "0602610": 15, + "0602630": 15, + "0602670": 15, + "0602700": 15, + "0602730": 15, + "0602760": 15, + "0602820": 15, + "0602850": 15, + "0602970": 15, + "0603000": 15, + "0603030": 15, + "0603060": 15, + "0603090": 15, + "0603180": 15, + "0603270": 15, + "0603300": 15, + "0603420": 15, + "0603480": 15, + "0603600": 15, + "0603610": 15, + "0603630": 15, + "0603690": 15, + "0603720": 15, + "0603750": 15, + "0603780": 15, + "0603840": 15, + "0603870": 15, + "0604020": 15, + "0604080": 15, + "0604110": 15, + "0604200": 15, + "0604230": 15, + "0604260": 15, + "0604290": 15, + "0604350": 15, + "0604380": 15, + "0604440": 15, + "0604500": 15, + "0604530": 15, + "0604560": 15, + "0604590": 5, + "0604620": 15, + "0604650": 15, + "0604740": 15, + "0604800": 15, + "0604830": 15, + "0604860": 15, + "0604890": 15, + "0604950": 15, + "0604980": 15, + "0605010": 15, + "0605040": 15, + "0605130": 5, + "0605160": 5, + "0605190": 15, + "0605220": 15, + "0605240": 15, + "0605250": 15, + "0605280": 15, + "0605400": 15, + "0605490": 15, + "0605520": 15, + "0605580": 15, + "0605610": 15, + "0605640": 15, + "0605670": 7, + "0605700": 15, + "0605730": 15, + "0605790": 15, + "0605820": 15, + "0605880": 15, + "0605910": 15, + "0605940": 15, + "0606000": 15, + "0606001": 14, + "0606002": 8, + "0606003": 14, + "0606004": 14, + "0606005": 14, + "0606006": 14, + "0606007": 8, + "0606008": 6, + "0606009": 8, + "0606010": 8, + "0606011": 8, + "0606012": 8, + "0606013": 14, + "0606014": 8, + "0606015": 14, + "0606016": 14, + "0606017": 8, + "0606018": 12, + "0606019": 12, + "0606020": 12, + "0606021": 10, + "0606022": 10, + "0606023": 4, + "0606024": 4, + "0606025": 10, + "0606026": 10, + "0606027": 4, + "0606028": 10, + "0606029": 4, + "0606030": 15, + "0606031": 10, + "0606032": 4, + "0606033": 4, + "0606034": 8, + "0606035": 2, + "0606036": 2, + "0606037": 15, + "0606038": 8, + "0606039": 2, + "0606053": 15, + "0606060": 15, + "0606090": 15, + "0606100": 15, + "0606107": 15, + "0606270": 15, + "0606330": 15, + "0606360": 15, + "0606390": 15, + "0606420": 15, + "0606450": 15, + "0606480": 15, + "0606510": 15, + "0606540": 15, + "0606570": 15, + "0606580": 15, + "0606690": 15, + "0606720": 15, + "0606750": 15, + "0606780": 15, + "0606810": 15, + "0606870": 15, + "0606900": 15, + "0606960": 15, + "0606990": 15, + "0607020": 15, + "0607140": 15, + "0607170": 15, + "0607200": 15, + "0607230": 15, + "0607260": 15, + "0607350": 15, + "0607410": 15, + "0607440": 15, + "0607470": 15, + "0607500": 15, + "0607530": 15, + "0607560": 15, + "0607680": 15, + "0607710": 1, + "0607740": 15, + "0607770": 15, + "0607800": 15, + "0607840": 15, + "0607900": 15, + "0607920": 15, + "0607950": 15, + "0607970": 15, + "0607980": 15, + "0608010": 15, + "0608070": 15, + "0608130": 15, + "0608160": 15, + "0608190": 15, + "0608250": 15, + "0608340": 15, + "0608370": 15, + "0608430": 1, + "0608460": 15, + "0608520": 15, + "0608550": 15, + "0608580": 15, + "0608610": 15, + "0608640": 15, + "0608700": 15, + "0608730": 7, + "0608760": 15, + "0608850": 15, + "0608880": 15, + "0608970": 15, + "0609030": 15, + "0609070": 15, + "0609120": 15, + "0609150": 1, + "0609240": 15, + "0609270": 15, + "0609300": 15, + "0609330": 15, + "0609390": 15, + "0609450": 15, + "0609480": 15, + "0609510": 15, + "0609570": 15, + "0609620": 15, + "0609640": 15, + "0609665": 15, + "0609690": 15, + "0609780": 15, + "0609810": 15, + "0609850": 15, + "0609870": 15, + "0609940": 15, + "0609990": 15, + "0610050": 15, + "0610080": 7, + "0610230": 15, + "0610260": 15, + "0610290": 15, + "0610320": 15, + "0610350": 15, + "0610380": 15, + "0610440": 15, + "0610620": 15, + "0610680": 15, + "0610710": 15, + "0610740": 15, + "0610770": 15, + "0610800": 1, + "0610860": 15, + "0610890": 15, + "0610980": 15, + "0611010": 1, + "0611040": 15, + "0611100": 15, + "0611110": 15, + "0611130": 15, + "0611220": 15, + "0611280": 15, + "0611430": 15, + "0611460": 15, + "0611490": 15, + "0611520": 15, + "0611550": 15, + "0611610": 15, + "0611670": 15, + "0611700": 15, + "0611730": 15, + "0611760": 15, + "0611780": 15, + "0611820": 15, + "0611850": 15, + "0611870": 15, + "0611910": 15, + "0611940": 15, + "0612030": 15, + "0612070": 15, + "0612090": 15, + "0612120": 15, + "0612150": 15, + "0612180": 15, + "0612210": 15, + "0612330": 15, + "0612360": 15, + "0612420": 12, + "0612600": 15, + "0612630": 15, + "0612690": 15, + "0612750": 15, + "0612810": 15, + "0612840": 15, + "0612880": 15, + "0612910": 15, + "0612930": 15, + "0612960": 15, + "0613020": 1, + "0613080": 15, + "0613140": 15, + "0613170": 15, + "0613200": 5, + "0613230": 5, + "0613290": 15, + "0613360": 15, + "0613470": 15, + "0613500": 15, + "0613530": 15, + "0613710": 12, + "0613740": 15, + "0613800": 15, + "0613840": 15, + "0613860": 15, + "0613890": 15, + "0613920": 15, + "0613980": 15, + "0614010": 15, + "0614040": 15, + "0614070": 15, + "0614130": 15, + "0614160": 5, + "0614190": 15, + "0614220": 15, + "0614250": 15, + "0614340": 15, + "0614370": 15, + "0614400": 15, + "0614430": 15, + "0614490": 15, + "0614520": 15, + "0614550": 15, + "0614580": 3, + "0614700": 15, + "0614730": 15, + "0614760": 15, + "0614790": 15, + "0614820": 15, + "0614880": 15, + "0614910": 15, + "0614940": 15, + "0614950": 15, + "0614970": 15, + "0615000": 15, + "0615090": 15, + "0615150": 15, + "0615180": 15, + "0615240": 15, + "0615270": 15, + "0615390": 15, + "0615450": 15, + "0615480": 15, + "0615510": 15, + "0615600": 15, + "0615690": 15, + "0615750": 1, + "0615780": 15, + "0615810": 15, + "0615840": 15, + "0615870": 15, + "0615990": 15, + "0616050": 15, + "0616080": 15, + "0616110": 15, + "0616230": 15, + "0616260": 15, + "0616300": 15, + "0616320": 15, + "0616323": 15, + "0616325": 15, + "0616410": 5, + "0616440": 5, + "0616470": 15, + "0616500": 15, + "0616530": 15, + "0616560": 15, + "0616570": 15, + "0616620": 15, + "0616650": 15, + "0616680": 15, + "0616740": 15, + "0616830": 15, + "0616860": 15, + "0616920": 15, + "0617040": 15, + "0617160": 15, + "0617190": 15, + "0617220": 15, + "0617340": 15, + "0617400": 1, + "0617430": 15, + "0617490": 15, + "0617520": 15, + "0617580": 15, + "0617620": 15, + "0617640": 15, + "0617760": 15, + "0617850": 15, + "0617880": 15, + "0618030": 15, + "0618060": 15, + "0618120": 15, + "0618160": 15, + "0618210": 15, + "0618240": 15, + "0618270": 15, + "0618390": 15, + "0618510": 15, + "0618660": 15, + "0618690": 15, + "0618730": 15, + "0618780": 15, + "0618810": 15, + "0618840": 15, + "0618870": 15, + "0618930": 15, + "0618990": 15, + "0619050": 15, + "0619110": 15, + "0619140": 15, + "0619170": 15, + "0619200": 15, + "0619230": 15, + "0619260": 15, + "0619320": 15, + "0619380": 15, + "0619410": 15, + "0619440": 15, + "0619490": 15, + "0619540": 15, + "0619590": 15, + "0619620": 15, + "0619650": 15, + "0619680": 15, + "0619700": 15, + "0619740": 15, + "0619770": 15, + "0619800": 15, + "0619830": 15, + "0619860": 15, + "0619890": 15, + "0619920": 15, + "0619950": 15, + "0619980": 15, + "0620010": 15, + "0620040": 15, + "0620070": 15, + "0620130": 15, + "0620160": 7, + "0620190": 15, + "0620220": 15, + "0620250": 15, + "0620310": 15, + "0620370": 15, + "0620430": 15, + "0620460": 15, + "0620490": 15, + "0620520": 15, + "0620610": 15, + "0620640": 15, + "0620670": 15, + "0620700": 15, + "0620730": 15, + "0620760": 15, + "0620790": 15, + "0620820": 3, + "0620850": 15, + "0620880": 15, + "0620910": 15, + "0621000": 15, + "0621060": 15, + "0621090": 15, + "0621150": 15, + "0621180": 15, + "0621210": 15, + "0621240": 15, + "0621270": 15, + "0621330": 15, + "0621360": 15, + "0621400": 15, + "0621420": 15, + "0621450": 15, + "0621480": 15, + "0621540": 15, + "0621570": 15, + "0621600": 15, + "0621660": 15, + "0621690": 15, + "0621810": 15, + "0621870": 15, + "0621900": 15, + "0621930": 15, + "0621960": 15, + "0621990": 15, + "0622050": 15, + "0622110": 15, + "0622170": 15, + "0622230": 15, + "0622320": 15, + "0622350": 15, + "0622380": 15, + "0622410": 15, + "0622440": 15, + "0622500": 15, + "0622560": 15, + "0622590": 15, + "0622620": 3, + "0622650": 15, + "0622710": 15, + "0622740": 15, + "0622800": 15, + "0622830": 15, + "0622860": 15, + "0622890": 15, + "0622920": 15, + "0622950": 15, + "0623010": 15, + "0623040": 15, + "0623080": 15, + "0623130": 15, + "0623160": 15, + "0623340": 15, + "0623430": 15, + "0623460": 15, + "0623530": 15, + "0623550": 15, + "0623610": 15, + "0623670": 5, + "0623700": 15, + "0623730": 15, + "0623760": 15, + "0623800": 15, + "0623820": 15, + "0623940": 15, + "0623970": 15, + "0624000": 15, + "0624030": 15, + "0624090": 15, + "0624150": 15, + "0624180": 15, + "0624210": 15, + "0624230": 15, + "0624300": 15, + "0624330": 15, + "0624360": 15, + "0624390": 15, + "0624480": 15, + "0624500": 15, + "0624540": 15, + "0624570": 15, + "0624600": 15, + "0624630": 15, + "0624660": 15, + "0624690": 15, + "0624720": 15, + "0624750": 15, + "0624780": 15, + "0624870": 15, + "0624900": 15, + "0624930": 15, + "0625020": 5, + "0625110": 15, + "0625130": 15, + "0625150": 15, + "0625190": 15, + "0625230": 15, + "0625290": 15, + "0625320": 15, + "0625350": 15, + "0625380": 15, + "0625410": 15, + "0625440": 1, + "0625470": 15, + "0625500": 15, + "0625530": 15, + "0625650": 15, + "0625690": 15, + "0625740": 15, + "0625770": 15, + "0625800": 15, + "0625830": 15, + "0625860": 15, + "0625980": 15, + "0626040": 15, + "0626070": 15, + "0626100": 15, + "0626130": 15, + "0626190": 15, + "0626220": 15, + "0626280": 15, + "0626310": 15, + "0626340": 15, + "0626370": 15, + "0626400": 15, + "0626430": 15, + "0626460": 15, + "0626490": 15, + "0626640": 15, + "0626670": 15, + "0626760": 15, + "0626820": 15, + "0626880": 15, + "0626910": 15, + "0626970": 15, + "0627030": 15, + "0627040": 15, + "0627060": 15, + "0627120": 15, + "0627180": 15, + "0627200": 15, + "0627240": 15, + "0627300": 15, + "0627450": 15, + "0627480": 15, + "0627510": 15, + "0627590": 15, + "0627600": 1, + "0627690": 15, + "0627720": 15, + "0627750": 15, + "0627780": 15, + "0627810": 15, + "0627840": 15, + "0627850": 15, + "0627870": 15, + "0627900": 15, + "0627930": 15, + "0628050": 15, + "0628080": 15, + "0628140": 15, + "0628170": 15, + "0628250": 15, + "0628270": 15, + "0628320": 15, + "0628470": 15, + "0628500": 5, + "0628530": 15, + "0628650": 15, + "0628680": 15, + "0628710": 15, + "0628830": 15, + "0628860": 15, + "0628950": 15, + "0629100": 15, + "0629130": 15, + "0629160": 15, + "0629190": 15, + "0629220": 15, + "0629270": 15, + "0629280": 15, + "0629340": 15, + "0629370": 15, + "0629400": 15, + "0629430": 15, + "0629490": 15, + "0629540": 15, + "0629550": 15, + "0629580": 15, + "0629610": 15, + "0629640": 15, + "0629670": 15, + "0629700": 15, + "0629770": 15, + "0629790": 15, + "0629820": 15, + "0629850": 15, + "0629910": 15, + "0629940": 15, + "0630030": 15, + "0630090": 15, + "0630180": 15, + "0630210": 15, + "0630230": 15, + "0630250": 15, + "0630330": 15, + "0630360": 15, + "0630390": 15, + "0630450": 15, + "0630480": 15, + "0630510": 15, + "0630520": 15, + "0630600": 15, + "0630630": 15, + "0630660": 15, + "0630720": 15, + "0630750": 15, + "0630780": 15, + "0630810": 15, + "0630840": 15, + "0630870": 15, + "0630900": 15, + "0630930": 15, + "0630960": 7, + "0630990": 15, + "0631020": 15, + "0631050": 15, + "0631140": 5, + "0631170": 15, + "0631180": 15, + "0631230": 15, + "0631290": 15, + "0631320": 15, + "0631350": 15, + "0631380": 15, + "0631400": 15, + "0631470": 15, + "0631530": 15, + "0631620": 15, + "0631680": 15, + "0631710": 15, + "0631740": 15, + "0631830": 15, + "0631860": 15, + "0631920": 15, + "0631950": 7, + "0631980": 15, + "0632010": 15, + "0632040": 15, + "0632070": 15, + "0632130": 15, + "0632160": 15, + "0632250": 15, + "0632270": 15, + "0632310": 15, + "0632340": 15, + "0632370": 15, + "0632400": 15, + "0632430": 15, + "0632520": 15, + "0632550": 15, + "0632610": 15, + "0632640": 15, + "0632710": 15, + "0632730": 15, + "0632760": 15, + "0632790": 1, + "0632880": 15, + "0633110": 15, + "0633150": 15, + "0633210": 15, + "0633240": 15, + "0633270": 15, + "0633330": 5, + "0633390": 15, + "0633480": 15, + "0633510": 15, + "0633570": 15, + "0633600": 15, + "0633630": 15, + "0633660": 15, + "0633690": 15, + "0633720": 15, + "0633750": 15, + "0633840": 15, + "0633860": 15, + "0633900": 15, + "0633930": 15, + "0633980": 15, + "0634050": 15, + "0634080": 15, + "0634140": 15, + "0634170": 15, + "0634230": 15, + "0634290": 15, + "0634320": 15, + "0634380": 15, + "0634410": 15, + "0634425": 15, + "0634440": 15, + "0634590": 15, + "0634620": 15, + "0634680": 15, + "0634710": 15, + "0634740": 15, + "0634770": 15, + "0634800": 15, + "0634860": 15, + "0634880": 15, + "0634920": 15, + "0634980": 15, + "0635010": 15, + "0635040": 15, + "0635070": 15, + "0635090": 15, + "0635110": 15, + "0635130": 15, + "0635220": 15, + "0635250": 15, + "0635310": 15, + "0635360": 3, + "0635370": 3, + "0635430": 15, + "0635490": 15, + "0635590": 15, + "0635600": 15, + "0635670": 15, + "0635700": 15, + "0635730": 5, + "0635760": 5, + "0635790": 15, + "0635810": 15, + "0635830": 15, + "0635850": 15, + "0635880": 15, + "0635910": 15, + "0635940": 15, + "0635970": 15, + "0636000": 15, + "0636030": 15, + "0636100": 15, + "0636180": 15, + "0636210": 15, + "0636240": 15, + "0636270": 15, + "0636330": 15, + "0636360": 15, + "0636390": 15, + "0636420": 15, + "0636450": 15, + "0636570": 15, + "0636600": 15, + "0636660": 15, + "0636670": 15, + "0636780": 15, + "0636800": 15, + "0636805": 15, + "0636810": 15, + "0636820": 15, + "0636840": 15, + "0636940": 15, + "0636960": 15, + "0636970": 15, + "0636972": 15, + "0636990": 15, + "0637050": 15, + "0637110": 15, + "0637140": 15, + "0637200": 15, + "0637230": 15, + "0637260": 15, + "0637290": 15, + "0637320": 15, + "0637350": 15, + "0637380": 15, + "0637470": 15, + "0637500": 15, + "0637530": 15, + "0637560": 15, + "0637590": 15, + "0637620": 15, + "0637630": 15, + "0637650": 15, + "0637680": 15, + "0637710": 15, + "0637770": 15, + "0637830": 15, + "0637890": 15, + "0637950": 15, + "0638010": 15, + "0638040": 15, + "0638070": 15, + "0638130": 15, + "0638220": 15, + "0638250": 15, + "0638280": 15, + "0638340": 15, + "0638430": 15, + "0638460": 15, + "0638520": 15, + "0638550": 15, + "0638610": 15, + "0638640": 15, + "0638670": 15, + "0638700": 15, + "0638730": 15, + "0638770": 15, + "0638790": 15, + "0638880": 15, + "0638980": 15, + "0639000": 15, + "0639060": 15, + "0639180": 15, + "0639210": 15, + "0639300": 15, + "0639420": 15, + "0639600": 15, + "0639630": 15, + "0639690": 15, + "0639720": 15, + "0639750": 15, + "0639800": 1, + "0639840": 15, + "0639870": 15, + "0639930": 15, + "0639940": 15, + "0640050": 1, + "0640080": 1, + "0640150": 15, + "0640200": 15, + "0640230": 15, + "0640260": 15, + "0640300": 15, + "0640320": 15, + "0640380": 15, + "0640410": 9, + "0640470": 9, + "0640500": 9, + "0640590": 15, + "0640650": 15, + "0640680": 15, + "0640710": 15, + "0640740": 15, + "0640800": 15, + "0640980": 15, + "0641040": 15, + "0641130": 15, + "0641160": 15, + "0641190": 15, + "0641220": 15, + "0641250": 15, + "0641280": 15, + "0641400": 15, + "0641430": 15, + "0641460": 15, + "0641580": 15, + "0641610": 15, + "0641640": 3, + "0641790": 15, + "0641820": 15, + "0641880": 15, + "0641910": 1, + "0641980": 15, + "0642000": 15, + "0642060": 15, + "0642120": 15, + "0642140": 15, + "0642150": 15, + "0642180": 15, + "0642210": 15, + "0642270": 15, + "0642300": 15, + "0642330": 15, + "0642350": 15, + "0642420": 15, + "0642450": 15, + "0642480": 15, + "0642510": 15, + "0642540": 15, + "0642560": 15, + "0642580": 15, + "0642600": 15, + "0642630": 15, + "0642710": 15, + "0642750": 15, + "0642810": 15, + "0642900": 15, + "0642930": 15, + "0642960": 15, + "0642990": 7, + "0643020": 5, + "0643050": 5, + "0643080": 15, + "0643140": 15, + "0643170": 15, + "0643200": 15, + "0643370": 1, + "0643380": 15, + "0643410": 15, + "0643470": 15, + "0643560": 15, + "0684500": 15, + "0691134": 15, + "0691135": 15, + "0691136": 15, + "0691137": 15, + "0699001": 6, + "0699002": 6, + "0699003": 6, + "0699004": 6, + "0699005": 6, + "0699006": 6, + "0699007": 6, + "0699008": 6, + "0699009": 6, + "0699010": 6, + "0699011": 6, + "0699012": 6, + "0699013": 6, + "0699014": 6, + "0699997": 6, + "0699998": 3, + "0800001": 15, + "0800016": 15, + "0800017": 15, + "0800018": 15, + "0800019": 15, + "0801920": 15, + "0801950": 15, + "0801980": 15, + "0802010": 15, + "0802040": 15, + "0802070": 15, + "0802130": 15, + "0802190": 15, + "0802220": 15, + "0802260": 15, + "0802280": 15, + "0802310": 15, + "0802340": 15, + "0802370": 15, + "0802400": 15, + "0802430": 15, + "0802460": 15, + "0802490": 15, + "0802520": 15, + "0802550": 15, + "0802580": 15, + "0802610": 15, + "0802640": 15, + "0802670": 15, + "0802700": 15, + "0802730": 15, + "0802760": 15, + "0802790": 15, + "0802850": 15, + "0802880": 15, + "0802910": 15, + "0802940": 15, + "0803000": 15, + "0803030": 15, + "0803060": 15, + "0803090": 15, + "0803120": 15, + "0803150": 15, + "0803180": 15, + "0803210": 15, + "0803240": 15, + "0803270": 15, + "0803300": 15, + "0803330": 15, + "0803360": 15, + "0803390": 15, + "0803420": 15, + "0803450": 15, + "0803480": 15, + "0803510": 15, + "0803540": 15, + "0803600": 15, + "0803630": 15, + "0803690": 15, + "0803720": 15, + "0803750": 15, + "0803780": 15, + "0803810": 15, + "0803840": 15, + "0803870": 15, + "0803930": 15, + "0803960": 15, + "0803990": 15, + "0804020": 15, + "0804050": 15, + "0804080": 15, + "0804110": 15, + "0804140": 15, + "0804200": 15, + "0804230": 15, + "0804260": 15, + "0804290": 15, + "0804320": 15, + "0804350": 15, + "0804380": 15, + "0804410": 15, + "0804440": 15, + "0804470": 15, + "0804500": 15, + "0804530": 15, + "0804560": 15, + "0804590": 15, + "0804620": 15, + "0804650": 15, + "0804680": 15, + "0804710": 15, + "0804740": 15, + "0804770": 15, + "0804800": 15, + "0804830": 15, + "0804860": 15, + "0804890": 15, + "0804920": 15, + "0804950": 15, + "0804980": 15, + "0805010": 15, + "0805040": 15, + "0805070": 15, + "0805100": 15, + "0805130": 15, + "0805160": 15, + "0805190": 15, + "0805220": 15, + "0805250": 15, + "0805280": 15, + "0805310": 15, + "0805340": 15, + "0805370": 15, + "0805400": 15, + "0805460": 15, + "0805490": 15, + "0805520": 15, + "0805550": 15, + "0805580": 15, + "0805610": 15, + "0805640": 15, + "0805670": 15, + "0805700": 15, + "0805730": 15, + "0805760": 15, + "0805790": 15, + "0805820": 15, + "0805850": 15, + "0805880": 15, + "0805910": 15, + "0805940": 15, + "0805970": 15, + "0806000": 15, + "0806030": 15, + "0806060": 15, + "0806090": 15, + "0806120": 15, + "0806150": 15, + "0806180": 15, + "0806210": 15, + "0806240": 15, + "0806270": 15, + "0806300": 15, + "0806330": 15, + "0806360": 15, + "0806390": 15, + "0806420": 15, + "0806450": 15, + "0806480": 15, + "0806510": 15, + "0806540": 15, + "0806570": 15, + "0806600": 15, + "0806630": 15, + "0806660": 15, + "0806690": 15, + "0806720": 15, + "0806750": 15, + "0806780": 15, + "0806810": 15, + "0806840": 15, + "0806870": 15, + "0806900": 15, + "0806930": 15, + "0806960": 15, + "0806990": 15, + "0807050": 15, + "0807080": 15, + "0807110": 15, + "0807140": 15, + "0807200": 15, + "0807230": 15, + "0807260": 15, + "0807290": 15, + "0807320": 15, + "0807350": 15, + "0807380": 15, + "0807410": 15, + "0900005": 15, + "0900030": 15, + "0900060": 15, + "0900090": 15, + "0900120": 15, + "0900150": 15, + "0900210": 15, + "0900240": 15, + "0900270": 15, + "0900330": 15, + "0900360": 15, + "0900390": 15, + "0900420": 15, + "0900450": 15, + "0900510": 15, + "0900540": 15, + "0900570": 15, + "0900630": 15, + "0900660": 15, + "0900690": 15, + "0900720": 15, + "0900750": 15, + "0900780": 15, + "0900810": 15, + "0900840": 15, + "0900870": 15, + "0900900": 15, + "0900930": 15, + "0900960": 15, + "0900990": 15, + "0901020": 15, + "0901050": 15, + "0901080": 15, + "0901110": 15, + "0901170": 15, + "0901200": 15, + "0901230": 15, + "0901260": 15, + "0901290": 15, + "0901320": 15, + "0901350": 15, + "0901380": 15, + "0901410": 15, + "0901440": 15, + "0901470": 15, + "0901500": 15, + "0901530": 15, + "0901560": 15, + "0901590": 15, + "0901620": 15, + "0901680": 15, + "0901710": 15, + "0901740": 15, + "0901770": 15, + "0901800": 15, + "0901860": 15, + "0901890": 15, + "0901920": 15, + "0901950": 15, + "0902010": 15, + "0902040": 15, + "0902070": 15, + "0902130": 15, + "0902160": 15, + "0902190": 15, + "0902220": 15, + "0902280": 15, + "0902310": 15, + "0902340": 15, + "0902370": 15, + "0902400": 15, + "0902490": 15, + "0902520": 15, + "0902550": 15, + "0902580": 15, + "0902640": 15, + "0902670": 15, + "0902700": 15, + "0902730": 15, + "0902760": 15, + "0902790": 15, + "0902820": 15, + "0902850": 15, + "0902880": 15, + "0902910": 15, + "0902940": 15, + "0902970": 15, + "0903000": 15, + "0903030": 15, + "0903060": 15, + "0903090": 15, + "0903120": 15, + "0903180": 15, + "0903210": 15, + "0903240": 15, + "0903270": 15, + "0903300": 15, + "0903330": 15, + "0903360": 15, + "0903390": 15, + "0903420": 15, + "0903480": 15, + "0903510": 15, + "0903515": 15, + "0903520": 15, + "0903530": 15, + "0903535": 15, + "0903536": 15, + "0903537": 15, + "0903538": 15, + "0903539": 15, + "0903540": 15, + "0903570": 15, + "0903600": 15, + "0903630": 15, + "0903660": 15, + "0903720": 15, + "0903750": 15, + "0903780": 15, + "0903810": 15, + "0903840": 15, + "0903900": 15, + "0903930": 15, + "0903960": 15, + "0903990": 15, + "0904020": 15, + "0904050": 15, + "0904080": 15, + "0904110": 15, + "0904140": 15, + "0904170": 15, + "0904230": 15, + "0904260": 15, + "0904290": 15, + "0904320": 15, + "0904350": 15, + "0904380": 15, + "0904440": 15, + "0904470": 15, + "0904500": 15, + "0904530": 15, + "0904560": 15, + "0904590": 15, + "0904620": 15, + "0904650": 15, + "0904680": 15, + "0904710": 15, + "0904740": 15, + "0904830": 15, + "0904860": 15, + "0904890": 15, + "0904920": 15, + "0904950": 15, + "0904980": 15, + "0905010": 15, + "0905040": 15, + "0905070": 15, + "0905100": 15, + "0905130": 15, + "0905160": 15, + "0905190": 15, + "0905220": 15, + "0905250": 15, + "0905280": 15, + "0905310": 15, + "0905370": 15, + "0999997": 3, + "0999998": 3, + "1000080": 15, + "1000170": 15, + "1000180": 15, + "1000190": 15, + "1000200": 15, + "1000230": 15, + "1000270": 15, + "1000680": 15, + "1000790": 15, + "1000810": 15, + "1001080": 15, + "1001240": 15, + "1001300": 15, + "1001530": 15, + "1001620": 15, + "1001850": 15, + "1100030": 15, + "1200030": 15, + "1200060": 15, + "1200090": 15, + "1200120": 15, + "1200150": 15, + "1200180": 15, + "1200210": 15, + "1200240": 15, + "1200270": 15, + "1200300": 15, + "1200330": 15, + "1200360": 15, + "1200390": 15, + "1200420": 15, + "1200450": 15, + "1200480": 15, + "1200510": 15, + "1200540": 15, + "1200570": 15, + "1200600": 15, + "1200630": 15, + "1200660": 15, + "1200690": 15, + "1200720": 15, + "1200750": 15, + "1200780": 15, + "1200810": 15, + "1200840": 15, + "1200870": 15, + "1200900": 15, + "1200930": 15, + "1200960": 15, + "1200990": 15, + "1201020": 15, + "1201050": 15, + "1201080": 15, + "1201110": 15, + "1201140": 15, + "1201170": 15, + "1201200": 15, + "1201230": 15, + "1201260": 15, + "1201290": 15, + "1201320": 15, + "1201350": 15, + "1201380": 15, + "1201410": 15, + "1201440": 15, + "1201470": 15, + "1201500": 15, + "1201530": 15, + "1201560": 15, + "1201590": 15, + "1201620": 15, + "1201650": 15, + "1201680": 15, + "1201710": 15, + "1201740": 15, + "1201770": 15, + "1201800": 15, + "1201830": 15, + "1201860": 15, + "1201890": 15, + "1201920": 15, + "1201950": 15, + "1201980": 15, + "1202010": 15, + "1300001": 15, + "1300002": 15, + "1300003": 15, + "1300004": 7, + "1300060": 15, + "1300090": 15, + "1300120": 15, + "1300150": 15, + "1300180": 15, + "1300210": 15, + "1300240": 15, + "1300290": 15, + "1300330": 15, + "1300360": 15, + "1300390": 15, + "1300420": 15, + "1300440": 15, + "1300480": 15, + "1300510": 15, + "1300540": 15, + "1300570": 15, + "1300600": 15, + "1300630": 15, + "1300660": 15, + "1300690": 15, + "1300720": 15, + "1300750": 15, + "1300780": 15, + "1300810": 15, + "1300840": 15, + "1300870": 15, + "1300900": 15, + "1300930": 15, + "1300990": 15, + "1301020": 15, + "1301050": 15, + "1301080": 15, + "1301110": 15, + "1301140": 15, + "1301170": 15, + "1301200": 15, + "1301230": 15, + "1301260": 15, + "1301290": 15, + "1301350": 15, + "1301380": 15, + "1301410": 15, + "1301440": 15, + "1301470": 15, + "1301500": 15, + "1301530": 15, + "1301560": 15, + "1301590": 15, + "1301620": 15, + "1301650": 15, + "1301680": 15, + "1301710": 15, + "1301740": 15, + "1301770": 15, + "1301800": 15, + "1301830": 15, + "1301860": 15, + "1301870": 15, + "1301890": 15, + "1301920": 15, + "1301950": 15, + "1301980": 15, + "1302010": 15, + "1302040": 15, + "1302070": 15, + "1302100": 15, + "1302130": 15, + "1302190": 15, + "1302220": 15, + "1302250": 15, + "1302280": 15, + "1302310": 15, + "1302340": 15, + "1302370": 15, + "1302400": 15, + "1302430": 15, + "1302460": 15, + "1302490": 15, + "1302520": 15, + "1302550": 15, + "1302580": 15, + "1302610": 15, + "1302640": 15, + "1302670": 15, + "1302700": 15, + "1302730": 15, + "1302790": 15, + "1302820": 15, + "1302880": 15, + "1302910": 15, + "1302940": 15, + "1302970": 15, + "1303000": 15, + "1303030": 15, + "1303060": 15, + "1303090": 15, + "1303120": 15, + "1303150": 15, + "1303210": 15, + "1303240": 15, + "1303270": 15, + "1303300": 15, + "1303330": 15, + "1303360": 15, + "1303390": 15, + "1303420": 15, + "1303450": 15, + "1303480": 15, + "1303510": 15, + "1303540": 15, + "1303570": 15, + "1303600": 15, + "1303630": 15, + "1303660": 15, + "1303690": 15, + "1303720": 15, + "1303750": 15, + "1303780": 15, + "1303840": 15, + "1303870": 15, + "1303930": 15, + "1303960": 15, + "1303990": 15, + "1304020": 15, + "1304050": 15, + "1304080": 15, + "1304110": 15, + "1304140": 15, + "1304170": 15, + "1304200": 15, + "1304220": 15, + "1304260": 15, + "1304290": 15, + "1304320": 15, + "1304350": 15, + "1304380": 15, + "1304410": 15, + "1304440": 15, + "1304470": 15, + "1304500": 15, + "1304530": 15, + "1304540": 15, + "1304560": 15, + "1304590": 15, + "1304620": 15, + "1304650": 15, + "1304680": 15, + "1304770": 15, + "1304800": 15, + "1304830": 15, + "1304860": 15, + "1304890": 15, + "1304950": 15, + "1304980": 15, + "1305040": 15, + "1305070": 15, + "1305100": 15, + "1305130": 15, + "1305190": 15, + "1305220": 15, + "1305250": 15, + "1305280": 15, + "1305310": 15, + "1305340": 15, + "1305370": 15, + "1305390": 15, + "1305430": 15, + "1305460": 15, + "1305490": 15, + "1305550": 15, + "1305580": 15, + "1305640": 15, + "1305670": 15, + "1305700": 15, + "1305730": 15, + "1305760": 15, + "1305790": 15, + "1305850": 15, + "1313053": 14, + "1313215": 14, + "1500030": 15, + "1600001": 15, + "1600002": 15, + "1600009": 15, + "1600010": 15, + "1600030": 15, + "1600060": 15, + "1600090": 15, + "1600138": 15, + "1600139": 15, + "1600150": 15, + "1600180": 15, + "1600240": 15, + "1600270": 15, + "1600300": 15, + "1600330": 15, + "1600360": 15, + "1600420": 15, + "1600450": 15, + "1600480": 15, + "1600490": 15, + "1600510": 15, + "1600540": 15, + "1600570": 15, + "1600600": 15, + "1600630": 15, + "1600660": 15, + "1600690": 15, + "1600720": 15, + "1600750": 15, + "1600780": 15, + "1600810": 15, + "1600815": 15, + "1600840": 15, + "1600870": 15, + "1600900": 15, + "1600930": 15, + "1600960": 15, + "1601020": 15, + "1601050": 15, + "1601080": 15, + "1601110": 15, + "1601140": 15, + "1601170": 15, + "1601200": 15, + "1601230": 15, + "1601260": 15, + "1601290": 15, + "1601380": 15, + "1601410": 15, + "1601440": 15, + "1601470": 15, + "1601500": 15, + "1601530": 15, + "1601570": 15, + "1601590": 15, + "1601620": 15, + "1601650": 15, + "1601680": 15, + "1601710": 15, + "1601740": 15, + "1601770": 15, + "1601800": 15, + "1601830": 15, + "1601860": 15, + "1601900": 15, + "1601920": 15, + "1601950": 15, + "1601980": 15, + "1602030": 15, + "1602060": 15, + "1602070": 15, + "1602100": 15, + "1602130": 15, + "1602160": 15, + "1602190": 15, + "1602220": 15, + "1602250": 15, + "1602280": 15, + "1602310": 15, + "1602340": 15, + "1602370": 15, + "1602400": 15, + "1602430": 15, + "1602460": 15, + "1602490": 15, + "1602520": 15, + "1602550": 15, + "1602580": 15, + "1602610": 15, + "1602640": 15, + "1602670": 15, + "1602700": 15, + "1602730": 15, + "1602760": 15, + "1602790": 15, + "1602820": 15, + "1602850": 15, + "1602910": 15, + "1602940": 15, + "1602970": 15, + "1603000": 15, + "1603030": 15, + "1603060": 15, + "1603090": 15, + "1603120": 15, + "1603180": 15, + "1603210": 15, + "1603240": 15, + "1603270": 15, + "1603300": 15, + "1603330": 15, + "1603360": 15, + "1603400": 15, + "1603420": 15, + "1603480": 15, + "1700001": 15, + "1700002": 15, + "1700003": 15, + "1700004": 15, + "1700005": 15, + "1700007": 15, + "1700009": 15, + "1700010": 15, + "1700014": 15, + "1700015": 15, + "1700041": 15, + "1700044": 15, + "1700045": 15, + "1700065": 15, + "1700077": 15, + "1700092": 15, + "1700102": 15, + "1700103": 15, + "1700105": 15, + "1700106": 15, + "1700109": 15, + "1700110": 15, + "1700112": 15, + "1700113": 15, + "1700114": 15, + "1700115": 15, + "1700119": 15, + "1700120": 15, + "1700122": 15, + "1700123": 15, + "1700125": 15, + "1700126": 15, + "1700130": 9, + "1700153": 15, + "1700176": 15, + "1700217": 15, + "1700222": 15, + "1700223": 15, + "1700310": 6, + "1700314": 15, + "1700319": 15, + "1700320": 15, + "1700321": 15, + "1700323": 15, + "1700324": 15, + "1700326": 15, + "1700330": 15, + "1700332": 15, + "1700333": 1, + "1701381": 6, + "1701382": 15, + "1701384": 15, + "1701385": 6, + "1701387": 15, + "1701388": 6, + "1701390": 14, + "1701395": 14, + "1701403": 12, + "1701404": 12, + "1701411": 10, + "1701413": 10, + "1701416": 8, + "1701417": 6, + "1701418": 8, + "1701419": 8, + "1701422": 6, + "1701434": 1, + "1703090": 5, + "1703150": 15, + "1703210": 15, + "1703270": 15, + "1703300": 15, + "1703330": 1, + "1703420": 15, + "1703450": 15, + "1703480": 15, + "1703510": 15, + "1703600": 15, + "1703660": 15, + "1703690": 15, + "1703750": 15, + "1703780": 15, + "1703810": 15, + "1703840": 15, + "1703870": 15, + "1703900": 15, + "1703930": 15, + "1703960": 15, + "1703990": 15, + "1704020": 15, + "1704050": 15, + "1704140": 15, + "1704170": 15, + "1704200": 15, + "1704230": 15, + "1704260": 15, + "1704340": 15, + "1704380": 15, + "1704440": 15, + "1704470": 15, + "1704560": 15, + "1704590": 7, + "1704620": 15, + "1704680": 15, + "1704710": 15, + "1704740": 15, + "1704770": 15, + "1704800": 15, + "1704830": 5, + "1704920": 15, + "1704950": 15, + "1705050": 15, + "1705160": 15, + "1705190": 15, + "1705220": 15, + "1705310": 15, + "1705430": 15, + "1705460": 15, + "1705466": 15, + "1705570": 15, + "1705580": 15, + "1705610": 15, + "1705640": 15, + "1705760": 15, + "1705790": 15, + "1705820": 15, + "1705880": 15, + "1705910": 15, + "1705950": 15, + "1705970": 15, + "1706000": 15, + "1706060": 15, + "1706090": 15, + "1706120": 15, + "1706180": 15, + "1706270": 15, + "1706390": 15, + "1706420": 15, + "1706450": 15, + "1706480": 15, + "1706510": 15, + "1706540": 15, + "1706600": 15, + "1706630": 9, + "1706750": 15, + "1706840": 15, + "1706880": 15, + "1706930": 15, + "1706960": 15, + "1707010": 15, + "1707050": 15, + "1707170": 15, + "1707200": 15, + "1707290": 15, + "1707320": 15, + "1707440": 15, + "1707650": 15, + "1707740": 15, + "1707770": 15, + "1707830": 15, + "1707860": 15, + "1707950": 15, + "1707980": 15, + "1708010": 15, + "1708040": 15, + "1708070": 15, + "1708100": 15, + "1708130": 15, + "1708160": 15, + "1708220": 15, + "1708250": 15, + "1708280": 15, + "1708310": 15, + "1708340": 15, + "1708370": 15, + "1708400": 15, + "1708430": 15, + "1708460": 15, + "1708500": 15, + "1708550": 15, + "1708580": 15, + "1708610": 15, + "1708640": 15, + "1708680": 9, + "1708730": 15, + "1708790": 15, + "1708970": 15, + "1709100": 15, + "1709150": 15, + "1709170": 15, + "1709180": 15, + "1709210": 15, + "1709270": 15, + "1709300": 15, + "1709330": 15, + "1709400": 15, + "1709420": 15, + "1709510": 15, + "1709540": 15, + "1709600": 15, + "1709720": 7, + "1709780": 14, + "1709810": 15, + "1709850": 15, + "1709930": 15, + "1709960": 15, + "1709990": 15, + "1710200": 15, + "1710240": 15, + "1710290": 15, + "1710340": 15, + "1710380": 15, + "1710410": 15, + "1710440": 15, + "1710470": 15, + "1710530": 15, + "1710570": 15, + "1710650": 15, + "1710690": 15, + "1710740": 15, + "1710760": 7, + "1710790": 15, + "1710800": 15, + "1710820": 15, + "1710830": 15, + "1710860": 15, + "1710890": 1, + "1710950": 15, + "1710980": 15, + "1711010": 15, + "1711100": 15, + "1711220": 15, + "1711250": 15, + "1711290": 15, + "1711350": 15, + "1711370": 15, + "1711400": 15, + "1711520": 15, + "1711610": 15, + "1711670": 9, + "1711700": 15, + "1711730": 15, + "1711790": 15, + "1711850": 15, + "1711880": 15, + "1711910": 15, + "1711980": 15, + "1712000": 15, + "1712030": 15, + "1712060": 15, + "1712090": 15, + "1712120": 15, + "1712150": 15, + "1712210": 15, + "1712240": 15, + "1712270": 14, + "1712330": 15, + "1712390": 7, + "1712420": 15, + "1712450": 15, + "1712480": 15, + "1712510": 15, + "1712540": 15, + "1712570": 15, + "1712700": 15, + "1712720": 15, + "1712760": 15, + "1712810": 15, + "1712840": 15, + "1712870": 15, + "1712930": 15, + "1712960": 15, + "1712990": 15, + "1713020": 5, + "1713050": 15, + "1713140": 15, + "1713170": 15, + "1713230": 15, + "1713240": 15, + "1713260": 15, + "1713290": 15, + "1713320": 15, + "1713370": 15, + "1713410": 15, + "1713440": 15, + "1713500": 15, + "1713530": 15, + "1713560": 15, + "1713590": 15, + "1713660": 15, + "1713710": 15, + "1713770": 15, + "1713860": 15, + "1713920": 15, + "1713940": 15, + "1713970": 15, + "1714050": 15, + "1714100": 15, + "1714160": 15, + "1714220": 15, + "1714250": 15, + "1714350": 15, + "1714410": 15, + "1714430": 15, + "1714460": 15, + "1714490": 15, + "1714550": 15, + "1714580": 15, + "1714640": 15, + "1714710": 15, + "1714760": 15, + "1714820": 15, + "1714940": 15, + "1715030": 15, + "1715090": 15, + "1715100": 15, + "1715180": 15, + "1715240": 1, + "1715400": 15, + "1715420": 15, + "1715450": 15, + "1715480": 15, + "1715490": 15, + "1715630": 15, + "1715660": 15, + "1715700": 15, + "1715750": 15, + "1715780": 15, + "1715820": 15, + "1715840": 15, + "1715880": 15, + "1715900": 15, + "1715930": 15, + "1716020": 15, + "1716050": 15, + "1716080": 15, + "1716140": 15, + "1716230": 15, + "1716260": 15, + "1716290": 15, + "1716320": 15, + "1716350": 15, + "1716380": 15, + "1716410": 15, + "1716530": 15, + "1716560": 15, + "1716590": 15, + "1716650": 15, + "1716680": 15, + "1716740": 3, + "1716800": 15, + "1716830": 15, + "1716860": 15, + "1716920": 15, + "1716950": 15, + "1717040": 15, + "1717160": 15, + "1717190": 15, + "1717220": 15, + "1717280": 15, + "1717310": 15, + "1717340": 15, + "1717370": 15, + "1717490": 15, + "1717520": 15, + "1717550": 15, + "1717580": 15, + "1717670": 15, + "1717700": 15, + "1717730": 15, + "1717790": 15, + "1717800": 15, + "1717850": 15, + "1717901": 14, + "1717902": 14, + "1717903": 14, + "1718030": 15, + "1718060": 15, + "1718090": 15, + "1718180": 15, + "1718200": 15, + "1718240": 15, + "1718270": 15, + "1718360": 15, + "1718390": 15, + "1718420": 15, + "1718450": 15, + "1718480": 15, + "1718510": 15, + "1718570": 15, + "1718600": 15, + "1718810": 15, + "1718840": 15, + "1718870": 15, + "1718960": 15, + "1718990": 15, + "1719080": 15, + "1719110": 15, + "1719200": 15, + "1719230": 15, + "1719260": 15, + "1719290": 15, + "1719320": 15, + "1719420": 15, + "1719500": 15, + "1719530": 15, + "1719560": 15, + "1719620": 15, + "1719660": 15, + "1719680": 15, + "1719740": 7, + "1719830": 15, + "1719920": 15, + "1719960": 15, + "1719970": 15, + "1720010": 7, + "1720170": 15, + "1720180": 15, + "1720190": 15, + "1720220": 15, + "1720250": 15, + "1720280": 15, + "1720350": 7, + "1720370": 15, + "1720380": 15, + "1720430": 15, + "1720490": 15, + "1720550": 15, + "1720580": 15, + "1720610": 15, + "1720640": 15, + "1720760": 15, + "1720790": 15, + "1720880": 15, + "1720910": 15, + "1720970": 15, + "1721000": 15, + "1721030": 15, + "1721130": 15, + "1721180": 15, + "1721270": 15, + "1721300": 15, + "1721390": 15, + "1721420": 15, + "1721450": 15, + "1721510": 15, + "1721600": 15, + "1721630": 15, + "1721680": 15, + "1721690": 9, + "1721720": 15, + "1721750": 15, + "1721780": 15, + "1721840": 15, + "1721870": 15, + "1721900": 15, + "1722020": 15, + "1722050": 15, + "1722080": 15, + "1722110": 15, + "1722130": 15, + "1722150": 15, + "1722300": 15, + "1722350": 15, + "1722380": 5, + "1722500": 15, + "1722530": 15, + "1722620": 15, + "1722710": 15, + "1722740": 15, + "1722770": 15, + "1722800": 15, + "1722830": 15, + "1722860": 15, + "1722870": 15, + "1722920": 15, + "1722950": 15, + "1722980": 15, + "1723050": 15, + "1723070": 15, + "1723090": 15, + "1723100": 15, + "1723160": 15, + "1723200": 15, + "1723250": 15, + "1723350": 15, + "1723460": 15, + "1723640": 15, + "1723670": 5, + "1723700": 15, + "1723730": 15, + "1723850": 15, + "1723880": 15, + "1723920": 15, + "1723970": 15, + "1724000": 15, + "1724060": 15, + "1724090": 15, + "1724120": 15, + "1724270": 15, + "1724330": 15, + "1724390": 15, + "1724420": 15, + "1724480": 15, + "1724570": 15, + "1724600": 15, + "1724650": 15, + "1724720": 15, + "1724750": 15, + "1724780": 15, + "1724870": 15, + "1724900": 15, + "1724940": 15, + "1725000": 15, + "1725020": 15, + "1725050": 15, + "1725110": 15, + "1725190": 15, + "1725260": 15, + "1725290": 15, + "1725320": 15, + "1725500": 15, + "1725590": 15, + "1725620": 15, + "1725650": 15, + "1725680": 15, + "1725690": 15, + "1725740": 15, + "1725770": 15, + "1725920": 15, + "1725950": 7, + "1725980": 7, + "1726100": 15, + "1726180": 15, + "1726190": 15, + "1726250": 15, + "1726310": 15, + "1726340": 15, + "1726370": 15, + "1726400": 15, + "1726430": 15, + "1726490": 15, + "1726550": 15, + "1726590": 15, + "1726610": 15, + "1726640": 15, + "1726710": 15, + "1726760": 15, + "1726800": 15, + "1726820": 15, + "1726850": 15, + "1726880": 15, + "1726970": 15, + "1727180": 15, + "1727210": 15, + "1727290": 15, + "1727300": 15, + "1727340": 15, + "1727360": 15, + "1727390": 15, + "1727450": 15, + "1727540": 15, + "1727570": 15, + "1727610": 15, + "1727710": 15, + "1727720": 15, + "1727740": 15, + "1727780": 15, + "1727810": 5, + "1727840": 15, + "1727910": 3, + "1727930": 15, + "1727960": 15, + "1727990": 15, + "1728110": 15, + "1728140": 15, + "1728160": 15, + "1728200": 15, + "1728260": 15, + "1728270": 15, + "1728500": 15, + "1728530": 15, + "1728560": 15, + "1728620": 15, + "1728650": 15, + "1728700": 15, + "1728810": 15, + "1728890": 15, + "1728920": 15, + "1728980": 15, + "1729010": 15, + "1729040": 15, + "1729100": 15, + "1729130": 15, + "1729190": 15, + "1729220": 15, + "1729250": 15, + "1729280": 15, + "1729310": 15, + "1729340": 15, + "1729420": 15, + "1729520": 15, + "1729580": 3, + "1729610": 3, + "1729670": 15, + "1729700": 15, + "1729730": 15, + "1729760": 15, + "1729790": 15, + "1729890": 15, + "1729940": 15, + "1730060": 15, + "1730160": 15, + "1730200": 15, + "1730220": 15, + "1730270": 15, + "1730300": 15, + "1730330": 15, + "1730420": 15, + "1730450": 15, + "1730480": 15, + "1730510": 15, + "1730540": 15, + "1730570": 15, + "1730600": 15, + "1730630": 15, + "1730660": 15, + "1730750": 15, + "1730780": 15, + "1730810": 15, + "1730840": 15, + "1730870": 15, + "1730900": 15, + "1730930": 15, + "1730990": 15, + "1731020": 15, + "1731050": 15, + "1731080": 15, + "1731110": 15, + "1731140": 15, + "1731200": 15, + "1731230": 15, + "1731270": 15, + "1731290": 15, + "1731380": 15, + "1731410": 15, + "1731500": 15, + "1731560": 15, + "1731620": 15, + "1731710": 15, + "1731740": 15, + "1731770": 15, + "1731860": 15, + "1731890": 15, + "1731920": 15, + "1731950": 15, + "1732040": 15, + "1732090": 15, + "1732100": 15, + "1732160": 15, + "1732190": 15, + "1732220": 15, + "1732280": 15, + "1732370": 15, + "1732490": 15, + "1732520": 15, + "1732550": 15, + "1732580": 15, + "1732670": 15, + "1732700": 15, + "1732770": 15, + "1732830": 15, + "1732850": 15, + "1732910": 15, + "1732960": 15, + "1732970": 15, + "1733000": 15, + "1733030": 15, + "1733090": 15, + "1733120": 15, + "1733210": 15, + "1733240": 15, + "1733270": 15, + "1733300": 15, + "1733380": 15, + "1733390": 15, + "1733420": 15, + "1733450": 15, + "1733510": 15, + "1733690": 15, + "1733720": 15, + "1733750": 15, + "1733810": 15, + "1733840": 15, + "1733870": 15, + "1733900": 5, + "1733930": 15, + "1733950": 15, + "1733990": 15, + "1734020": 15, + "1734100": 15, + "1734110": 15, + "1734140": 15, + "1734170": 15, + "1734230": 15, + "1734260": 15, + "1734290": 15, + "1734320": 15, + "1734350": 15, + "1734380": 15, + "1734410": 15, + "1734440": 15, + "1734470": 15, + "1734510": 15, + "1734540": 15, + "1734590": 15, + "1734620": 15, + "1734650": 15, + "1734710": 15, + "1734740": 15, + "1734770": 15, + "1734870": 15, + "1734990": 15, + "1735010": 15, + "1735100": 15, + "1735160": 15, + "1735190": 15, + "1735220": 15, + "1735310": 15, + "1735340": 15, + "1735370": 15, + "1735400": 15, + "1735460": 15, + "1735610": 15, + "1735640": 15, + "1735770": 15, + "1735820": 15, + "1735850": 15, + "1735940": 15, + "1735970": 15, + "1736090": 15, + "1736180": 15, + "1736210": 15, + "1736240": 15, + "1736300": 15, + "1736330": 15, + "1736360": 15, + "1736450": 15, + "1736480": 15, + "1736510": 15, + "1736570": 15, + "1736600": 15, + "1736610": 15, + "1736640": 15, + "1736720": 15, + "1736750": 15, + "1736780": 15, + "1736810": 15, + "1736840": 15, + "1736900": 15, + "1736960": 15, + "1737020": 15, + "1737050": 15, + "1737080": 15, + "1737120": 15, + "1737140": 15, + "1737170": 15, + "1737230": 15, + "1737320": 15, + "1737350": 15, + "1737380": 15, + "1737410": 15, + "1737440": 15, + "1737470": 15, + "1737490": 15, + "1737590": 15, + "1737650": 15, + "1737680": 15, + "1737800": 15, + "1737830": 15, + "1737860": 15, + "1737980": 15, + "1738070": 15, + "1738100": 15, + "1738130": 15, + "1738190": 15, + "1738220": 15, + "1738370": 15, + "1738400": 15, + "1738460": 15, + "1738490": 15, + "1738520": 15, + "1738550": 15, + "1738700": 15, + "1738760": 15, + "1738790": 15, + "1738910": 15, + "1738940": 15, + "1738970": 15, + "1739030": 15, + "1739090": 15, + "1739120": 15, + "1739180": 15, + "1739390": 15, + "1739420": 15, + "1739450": 15, + "1739480": 15, + "1739510": 15, + "1739600": 15, + "1739630": 15, + "1739660": 15, + "1739780": 15, + "1739870": 15, + "1739930": 15, + "1739960": 15, + "1740070": 15, + "1740080": 15, + "1740140": 15, + "1740200": 15, + "1740260": 15, + "1740290": 15, + "1740320": 15, + "1740350": 15, + "1740380": 3, + "1740410": 15, + "1740440": 15, + "1740470": 15, + "1740500": 15, + "1740530": 15, + "1740620": 15, + "1740650": 15, + "1740680": 15, + "1740740": 15, + "1740800": 15, + "1740830": 15, + "1740890": 15, + "1740920": 15, + "1740980": 15, + "1741010": 15, + "1741040": 15, + "1741070": 15, + "1741190": 15, + "1741250": 15, + "1741280": 15, + "1741360": 15, + "1741370": 9, + "1741520": 15, + "1741550": 15, + "1741580": 15, + "1741600": 15, + "1741690": 15, + "1741700": 15, + "1741730": 7, + "1741750": 15, + "1741790": 15, + "1741820": 15, + "1741910": 1, + "1741980": 15, + "1742060": 15, + "1742180": 15, + "1742210": 15, + "1742240": 15, + "1742300": 15, + "1742310": 15, + "1742450": 15, + "1742480": 15, + "1742510": 15, + "1742570": 15, + "1742600": 15, + "1742630": 15, + "1742660": 15, + "1742690": 15, + "1742720": 15, + "1742790": 15, + "1742840": 15, + "1742900": 15, + "1742960": 15, + "1742990": 15, + "1743020": 15, + "1743050": 15, + "1743110": 15, + "1743170": 9, + "1743200": 9, + "1743330": 15, + "1743380": 15, + "1743800": 15, + "1743860": 15, + "1743890": 15, + "1743960": 15, + "1743962": 15, + "1799001": 6, + "1799002": 6, + "1799003": 6, + "1799004": 6, + "1799005": 6, + "1799006": 6, + "1799007": 6, + "1799008": 6, + "1799997": 3, + "1799998": 3, + "1800008": 15, + "1800030": 15, + "1800060": 15, + "1800107": 12, + "1800118": 10, + "1800120": 15, + "1800150": 15, + "1800180": 15, + "1800210": 15, + "1800212": 3, + "1800213": 3, + "1800240": 15, + "1800270": 15, + "1800330": 15, + "1800360": 15, + "1800390": 15, + "1800420": 15, + "1800450": 15, + "1800480": 15, + "1800570": 15, + "1800600": 15, + "1800630": 15, + "1800660": 15, + "1800690": 15, + "1800720": 15, + "1800750": 15, + "1800840": 15, + "1800900": 15, + "1800960": 15, + "1801020": 15, + "1801050": 15, + "1801060": 15, + "1801170": 15, + "1801200": 15, + "1801230": 15, + "1801290": 15, + "1801320": 3, + "1801410": 15, + "1801440": 15, + "1801560": 15, + "1801590": 15, + "1801710": 15, + "1801740": 15, + "1801770": 15, + "1801890": 15, + "1801920": 15, + "1802040": 15, + "1802130": 15, + "1802160": 15, + "1802190": 15, + "1802220": 15, + "1802280": 15, + "1802400": 15, + "1802430": 15, + "1802440": 15, + "1802460": 15, + "1802490": 15, + "1802520": 15, + "1802550": 15, + "1802610": 15, + "1802640": 15, + "1802660": 15, + "1802700": 15, + "1802730": 3, + "1802800": 15, + "1802830": 15, + "1802850": 15, + "1802880": 15, + "1802910": 15, + "1802940": 15, + "1802970": 15, + "1803000": 15, + "1803030": 15, + "1803060": 15, + "1803090": 15, + "1803120": 15, + "1803150": 15, + "1803180": 15, + "1803210": 15, + "1803240": 15, + "1803270": 15, + "1803300": 15, + "1803330": 15, + "1803450": 15, + "1803480": 15, + "1803510": 15, + "1803570": 15, + "1803630": 15, + "1803660": 15, + "1803690": 15, + "1803700": 15, + "1803720": 15, + "1803750": 15, + "1803780": 15, + "1803810": 15, + "1803840": 15, + "1803870": 15, + "1803930": 15, + "1803940": 15, + "1803960": 15, + "1803990": 15, + "1804050": 15, + "1804080": 15, + "1804110": 15, + "1804140": 15, + "1804170": 15, + "1804230": 15, + "1804260": 15, + "1804320": 15, + "1804350": 15, + "1804470": 15, + "1804500": 15, + "1804560": 15, + "1804590": 15, + "1804620": 15, + "1804710": 15, + "1804770": 15, + "1804800": 15, + "1804980": 15, + "1805190": 15, + "1805280": 15, + "1805340": 15, + "1805370": 15, + "1805400": 15, + "1805450": 15, + "1805460": 15, + "1805520": 15, + "1805550": 15, + "1805580": 15, + "1805670": 15, + "1805700": 15, + "1805790": 15, + "1805880": 15, + "1805910": 15, + "1806030": 15, + "1806060": 15, + "1806080": 15, + "1806090": 15, + "1806120": 15, + "1806240": 15, + "1806270": 15, + "1806390": 15, + "1806480": 15, + "1806510": 15, + "1806570": 15, + "1806600": 15, + "1806630": 15, + "1806660": 15, + "1806840": 15, + "1806870": 15, + "1806900": 15, + "1807020": 15, + "1807080": 15, + "1807110": 15, + "1807140": 15, + "1807230": 15, + "1807260": 15, + "1807290": 15, + "1807320": 15, + "1807350": 15, + "1807380": 15, + "1807410": 15, + "1807440": 15, + "1807470": 15, + "1807500": 7, + "1807560": 15, + "1807620": 15, + "1807650": 15, + "1807680": 15, + "1807710": 15, + "1807770": 15, + "1807800": 15, + "1807830": 15, + "1807860": 15, + "1807890": 15, + "1807900": 15, + "1807920": 15, + "1807950": 15, + "1807980": 15, + "1808010": 15, + "1808040": 15, + "1808070": 15, + "1808100": 15, + "1808120": 15, + "1808130": 15, + "1808160": 15, + "1808190": 15, + "1808220": 15, + "1808250": 15, + "1808280": 15, + "1808310": 15, + "1808340": 15, + "1808460": 15, + "1808490": 15, + "1808640": 15, + "1808760": 15, + "1808820": 15, + "1808850": 15, + "1808900": 15, + "1808910": 15, + "1808940": 15, + "1808970": 15, + "1809000": 15, + "1809060": 15, + "1809120": 15, + "1809150": 15, + "1809180": 15, + "1809300": 15, + "1809360": 15, + "1809370": 12, + "1809420": 15, + "1809480": 15, + "1809510": 15, + "1809600": 15, + "1809630": 15, + "1809660": 5, + "1809690": 15, + "1809720": 15, + "1809750": 15, + "1809810": 15, + "1809840": 15, + "1809990": 15, + "1810020": 15, + "1810080": 15, + "1810110": 15, + "1810140": 15, + "1810170": 15, + "1810230": 15, + "1810260": 15, + "1810290": 15, + "1810350": 15, + "1810360": 15, + "1810380": 15, + "1810410": 15, + "1810440": 15, + "1810450": 15, + "1810470": 15, + "1810500": 15, + "1810530": 15, + "1810560": 15, + "1810590": 15, + "1810620": 15, + "1810640": 15, + "1810650": 15, + "1810680": 15, + "1810710": 15, + "1810740": 15, + "1810770": 15, + "1810800": 15, + "1810830": 15, + "1810860": 15, + "1810870": 15, + "1810900": 15, + "1810920": 15, + "1810950": 15, + "1810980": 15, + "1811100": 15, + "1811190": 15, + "1811220": 15, + "1811250": 15, + "1811260": 15, + "1811340": 15, + "1811370": 15, + "1811400": 15, + "1811430": 15, + "1811460": 15, + "1811490": 15, + "1811550": 5, + "1811580": 15, + "1811610": 15, + "1811700": 15, + "1811730": 15, + "1811910": 15, + "1811970": 15, + "1812060": 15, + "1812090": 15, + "1812120": 15, + "1812150": 15, + "1812180": 15, + "1812240": 15, + "1812360": 15, + "1812390": 15, + "1812420": 15, + "1812450": 15, + "1812720": 15, + "1812810": 15, + "1812870": 15, + "1812880": 15, + "1812900": 15, + "1812930": 15, + "1812990": 15, + "1813050": 15, + "1813080": 15, + "1813110": 15, + "1813200": 15, + "1813230": 15, + "1899997": 15, + "1899998": 3, + "1900006": 15, + "1900009": 15, + "1900015": 15, + "1900021": 15, + "1900022": 15, + "1900023": 15, + "1900024": 15, + "1900025": 15, + "1900026": 15, + "1900027": 15, + "1900028": 15, + "1900031": 12, + "1900032": 12, + "1900040": 15, + "1900060": 15, + "1903030": 3, + "1903060": 15, + "1903090": 15, + "1903150": 15, + "1903220": 15, + "1903240": 3, + "1903270": 15, + "1903300": 15, + "1903330": 3, + "1903360": 15, + "1903390": 15, + "1903450": 15, + "1903480": 15, + "1903540": 15, + "1903570": 15, + "1903630": 15, + "1903660": 3, + "1903690": 15, + "1903720": 5, + "1903750": 15, + "1903780": 15, + "1903850": 15, + "1903930": 15, + "1903960": 15, + "1904020": 10, + "1904080": 15, + "1904200": 15, + "1904320": 10, + "1904380": 15, + "1904440": 15, + "1904560": 15, + "1904620": 15, + "1904650": 15, + "1904680": 15, + "1904740": 15, + "1904830": 15, + "1904860": 15, + "1904950": 15, + "1905070": 15, + "1905130": 15, + "1905190": 15, + "1905430": 15, + "1905490": 15, + "1905750": 15, + "1905790": 15, + "1905940": 15, + "1905970": 15, + "1906000": 15, + "1906060": 15, + "1906240": 15, + "1906270": 15, + "1906330": 15, + "1906510": 15, + "1906540": 15, + "1906660": 15, + "1906750": 15, + "1906780": 15, + "1906810": 15, + "1906840": 15, + "1906900": 15, + "1906930": 15, + "1906960": 15, + "1907050": 15, + "1907080": 15, + "1907110": 15, + "1907170": 15, + "1907350": 15, + "1907380": 15, + "1907410": 15, + "1907440": 15, + "1907470": 15, + "1907590": 15, + "1907620": 15, + "1907650": 7, + "1907710": 15, + "1907860": 15, + "1907900": 15, + "1907920": 15, + "1907980": 15, + "1908070": 15, + "1908130": 15, + "1908190": 7, + "1908220": 15, + "1908310": 15, + "1908520": 15, + "1908550": 15, + "1908580": 15, + "1908610": 15, + "1908730": 15, + "1908790": 1, + "1908880": 15, + "1908910": 15, + "1908940": 15, + "1908970": 15, + "1909060": 15, + "1909120": 15, + "1909450": 7, + "1909480": 15, + "1909540": 15, + "1909570": 15, + "1909600": 15, + "1909990": 15, + "1910050": 15, + "1910110": 15, + "1910130": 15, + "1910200": 7, + "1910340": 15, + "1910350": 15, + "1910410": 15, + "1910500": 15, + "1910690": 15, + "1910710": 7, + "1910950": 15, + "1910980": 15, + "1911040": 15, + "1911070": 15, + "1911250": 15, + "1911340": 15, + "1911520": 9, + "1911790": 15, + "1911820": 15, + "1911850": 15, + "1911970": 7, + "1912060": 5, + "1912120": 15, + "1912230": 15, + "1912330": 15, + "1912480": 15, + "1912510": 15, + "1912600": 15, + "1912660": 15, + "1912690": 15, + "1912750": 15, + "1912810": 15, + "1913080": 3, + "1913110": 15, + "1913200": 15, + "1913230": 15, + "1913290": 15, + "1913320": 15, + "1913350": 15, + "1913380": 15, + "1913440": 15, + "1913470": 15, + "1913500": 15, + "1913530": 11, + "1913660": 15, + "1914010": 15, + "1914160": 15, + "1914280": 15, + "1914310": 15, + "1914340": 15, + "1914370": 15, + "1914580": 15, + "1914640": 15, + "1914670": 15, + "1914700": 15, + "1914730": 15, + "1914850": 15, + "1914880": 15, + "1915180": 15, + "1915210": 15, + "1915330": 15, + "1915450": 15, + "1915630": 15, + "1915660": 15, + "1915750": 15, + "1915840": 15, + "1916110": 15, + "1916140": 15, + "1916320": 15, + "1916420": 15, + "1916440": 15, + "1916530": 15, + "1916620": 15, + "1916680": 15, + "1917100": 15, + "1917220": 15, + "1917250": 15, + "1917460": 15, + "1917550": 15, + "1917820": 15, + "1917880": 15, + "1918030": 15, + "1918120": 15, + "1918180": 15, + "1918240": 15, + "1918300": 3, + "1918330": 15, + "1918480": 15, + "1918510": 15, + "1918540": 15, + "1918630": 15, + "1918690": 15, + "1918720": 15, + "1918750": 15, + "1918780": 15, + "1918840": 15, + "1918930": 15, + "1918960": 15, + "1919140": 15, + "1919200": 15, + "1919440": 15, + "1919590": 15, + "1919650": 15, + "1919710": 15, + "1919740": 15, + "1919770": 15, + "1919800": 15, + "1919860": 15, + "1919890": 15, + "1920040": 15, + "1920100": 15, + "1920130": 15, + "1920190": 15, + "1920250": 15, + "1920340": 15, + "1920460": 15, + "1920490": 3, + "1920580": 15, + "1920610": 15, + "1920670": 3, + "1920730": 3, + "1920760": 15, + "1920820": 15, + "1920830": 15, + "1920850": 15, + "1920910": 15, + "1920940": 15, + "1921000": 15, + "1921060": 11, + "1921090": 15, + "1921120": 11, + "1921210": 15, + "1921240": 15, + "1921600": 15, + "1921630": 15, + "1921660": 15, + "1921720": 15, + "1921810": 15, + "1921840": 15, + "1921870": 15, + "1922110": 15, + "1922380": 15, + "1922440": 15, + "1922470": 15, + "1922530": 15, + "1923110": 15, + "1923160": 15, + "1923190": 15, + "1923220": 5, + "1923340": 15, + "1923760": 9, + "1923790": 5, + "1924000": 15, + "1924120": 15, + "1924150": 15, + "1924660": 15, + "1924720": 7, + "1924750": 3, + "1924870": 15, + "1924960": 15, + "1924990": 3, + "1925050": 15, + "1925140": 3, + "1925200": 15, + "1925320": 15, + "1925380": 15, + "1925410": 15, + "1925560": 7, + "1925590": 15, + "1925620": 15, + "1925920": 15, + "1925980": 15, + "1926070": 15, + "1926250": 15, + "1926280": 15, + "1926370": 15, + "1926400": 15, + "1926580": 15, + "1926610": 3, + "1926640": 15, + "1926670": 15, + "1926730": 15, + "1926790": 15, + "1926820": 15, + "1926850": 15, + "1926910": 15, + "1927000": 15, + "1927060": 15, + "1927240": 15, + "1927270": 15, + "1927390": 15, + "1927480": 15, + "1927500": 15, + "1927600": 15, + "1927810": 3, + "1927870": 15, + "1927900": 7, + "1927960": 15, + "1927990": 15, + "1928020": 15, + "1928050": 15, + "1928110": 15, + "1928170": 15, + "1928200": 15, + "1928230": 15, + "1928560": 15, + "1928680": 15, + "1928710": 10, + "1928980": 15, + "1929010": 15, + "1929100": 7, + "1929280": 15, + "1929310": 15, + "1929490": 15, + "1929580": 15, + "1929640": 9, + "1929730": 15, + "1929760": 15, + "1930240": 15, + "1930480": 15, + "1930510": 15, + "1930540": 15, + "1930560": 15, + "1930630": 15, + "1930720": 15, + "1930750": 15, + "1930780": 15, + "1930870": 15, + "1930900": 15, + "1930930": 15, + "1930960": 15, + "1930990": 15, + "1931020": 15, + "1931080": 15, + "1931110": 15, + "1931290": 15, + "1931350": 15, + "1931470": 15, + "1931620": 15, + "1931680": 15, + "1931800": 15, + "1931830": 15, + "1931860": 15, + "1931890": 5, + "1931920": 15, + "1931950": 15, + "1932010": 15, + "1999017": 15, + "1999019": 15, + "1999997": 3, + "2000001": 13, + "2000002": 13, + "2000003": 13, + "2000004": 13, + "2000005": 3, + "2000006": 13, + "2000007": 13, + "2000012": 15, + "2000013": 15, + "2000014": 15, + "2000015": 15, + "2000016": 15, + "2000017": 15, + "2000020": 15, + "2000023": 15, + "2000028": 14, + "2000029": 14, + "2000030": 14, + "2000346": 14, + "2000348": 14, + "2000349": 12, + "2000350": 12, + "2000351": 12, + "2000353": 12, + "2003180": 15, + "2003200": 15, + "2003210": 15, + "2003240": 15, + "2003270": 15, + "2003300": 15, + "2003360": 15, + "2003390": 15, + "2003430": 15, + "2003450": 15, + "2003480": 15, + "2003510": 15, + "2003540": 15, + "2003570": 15, + "2003630": 15, + "2003660": 3, + "2003690": 3, + "2003720": 15, + "2003780": 15, + "2003810": 15, + "2003870": 15, + "2003900": 15, + "2003930": 1, + "2003960": 15, + "2004020": 15, + "2004050": 15, + "2004080": 15, + "2004140": 15, + "2004170": 15, + "2004200": 15, + "2004230": 15, + "2004260": 15, + "2004290": 15, + "2004350": 15, + "2004380": 15, + "2004410": 15, + "2004440": 15, + "2004470": 15, + "2004500": 15, + "2004560": 15, + "2004590": 15, + "2004620": 15, + "2004650": 15, + "2004670": 15, + "2004710": 15, + "2004740": 15, + "2004770": 15, + "2004790": 15, + "2004800": 15, + "2004830": 15, + "2004860": 3, + "2004890": 15, + "2004920": 15, + "2004950": 15, + "2004980": 15, + "2005010": 15, + "2005040": 15, + "2005070": 15, + "2005100": 15, + "2005130": 15, + "2005190": 15, + "2005250": 15, + "2005280": 15, + "2005310": 15, + "2005340": 1, + "2005370": 15, + "2005400": 15, + "2005430": 1, + "2005460": 15, + "2005490": 15, + "2005520": 15, + "2005550": 15, + "2005580": 15, + "2005610": 15, + "2005640": 15, + "2005700": 15, + "2005730": 15, + "2005760": 15, + "2005790": 15, + "2005800": 15, + "2005820": 15, + "2005850": 15, + "2005870": 15, + "2005910": 3, + "2005940": 15, + "2006000": 15, + "2006060": 15, + "2006090": 15, + "2006120": 15, + "2006180": 15, + "2006210": 15, + "2006240": 15, + "2006270": 15, + "2006300": 15, + "2006330": 15, + "2006360": 15, + "2006390": 15, + "2006420": 15, + "2006450": 15, + "2006480": 15, + "2006510": 15, + "2006540": 15, + "2006570": 15, + "2006580": 15, + "2006630": 15, + "2006660": 15, + "2006690": 15, + "2006720": 15, + "2006780": 15, + "2006840": 15, + "2006870": 15, + "2006900": 3, + "2006930": 15, + "2006960": 15, + "2006990": 15, + "2007020": 15, + "2007050": 15, + "2007080": 15, + "2007110": 15, + "2007170": 15, + "2007230": 1, + "2007260": 15, + "2007290": 15, + "2007320": 15, + "2007350": 15, + "2007380": 15, + "2007410": 3, + "2007440": 15, + "2007470": 15, + "2007500": 15, + "2007530": 15, + "2007560": 15, + "2007590": 15, + "2007620": 15, + "2007650": 15, + "2007680": 15, + "2007710": 15, + "2007740": 15, + "2007750": 15, + "2007800": 15, + "2007830": 1, + "2007860": 15, + "2007890": 15, + "2007950": 15, + "2007970": 15, + "2008010": 1, + "2008040": 15, + "2008070": 15, + "2008100": 15, + "2008130": 15, + "2008160": 1, + "2008190": 15, + "2008220": 15, + "2008250": 15, + "2008280": 15, + "2008310": 15, + "2008340": 15, + "2008370": 15, + "2008400": 15, + "2008430": 15, + "2008520": 3, + "2008550": 15, + "2008610": 15, + "2008670": 15, + "2008700": 15, + "2008730": 15, + "2008790": 15, + "2008880": 15, + "2008910": 15, + "2008940": 15, + "2008970": 15, + "2009000": 15, + "2009030": 15, + "2009060": 15, + "2009090": 15, + "2009120": 1, + "2009140": 15, + "2009180": 15, + "2009210": 1, + "2009240": 15, + "2009320": 15, + "2009360": 15, + "2009390": 15, + "2009420": 15, + "2009450": 15, + "2009480": 15, + "2009510": 15, + "2009570": 15, + "2009600": 15, + "2009630": 15, + "2009660": 15, + "2009720": 15, + "2009780": 15, + "2009810": 3, + "2009840": 15, + "2009850": 15, + "2009900": 15, + "2009930": 15, + "2009960": 15, + "2009990": 15, + "2010020": 15, + "2010050": 15, + "2010080": 15, + "2010140": 15, + "2010170": 15, + "2010230": 15, + "2010260": 15, + "2010290": 15, + "2010320": 15, + "2010350": 15, + "2010410": 15, + "2010440": 15, + "2010470": 15, + "2010500": 15, + "2010560": 15, + "2010590": 15, + "2010620": 15, + "2010650": 15, + "2010680": 15, + "2010710": 15, + "2010740": 15, + "2010770": 15, + "2010800": 15, + "2010890": 15, + "2010920": 15, + "2010950": 15, + "2010980": 15, + "2011040": 15, + "2011080": 15, + "2011100": 15, + "2011130": 15, + "2011190": 15, + "2011220": 15, + "2011250": 15, + "2011280": 15, + "2011310": 15, + "2011370": 15, + "2011400": 15, + "2011430": 15, + "2011490": 15, + "2011520": 15, + "2011550": 15, + "2011580": 3, + "2011610": 15, + "2011640": 15, + "2011700": 15, + "2011760": 15, + "2011790": 15, + "2011820": 15, + "2011850": 15, + "2011880": 15, + "2011910": 15, + "2011970": 15, + "2012000": 15, + "2012030": 15, + "2012060": 15, + "2012090": 15, + "2012120": 15, + "2012150": 15, + "2012180": 15, + "2012210": 15, + "2012260": 15, + "2012300": 15, + "2012330": 15, + "2012360": 15, + "2012390": 15, + "2012420": 15, + "2012450": 15, + "2012510": 15, + "2012540": 15, + "2012600": 15, + "2012630": 15, + "2012720": 1, + "2012750": 3, + "2012780": 15, + "2012810": 15, + "2012840": 15, + "2012870": 15, + "2012900": 15, + "2012950": 1, + "2012990": 15, + "2013020": 15, + "2013050": 15, + "2013110": 15, + "2100030": 15, + "2100070": 15, + "2100078": 15, + "2100079": 15, + "2100081": 15, + "2100090": 15, + "2100120": 15, + "2100150": 15, + "2100180": 15, + "2100210": 15, + "2100240": 15, + "2100270": 15, + "2100300": 15, + "2100330": 15, + "2100360": 15, + "2100390": 15, + "2100420": 15, + "2100480": 15, + "2100510": 15, + "2100540": 15, + "2100570": 15, + "2100620": 15, + "2100630": 15, + "2100660": 15, + "2100690": 15, + "2100720": 15, + "2100750": 15, + "2100780": 15, + "2100810": 15, + "2100840": 15, + "2100870": 15, + "2100900": 15, + "2100930": 15, + "2100960": 15, + "2100990": 15, + "2101020": 15, + "2101050": 15, + "2101110": 15, + "2101150": 15, + "2101200": 15, + "2101230": 15, + "2101260": 15, + "2101290": 15, + "2101320": 15, + "2101350": 15, + "2101380": 15, + "2101410": 15, + "2101440": 15, + "2101470": 15, + "2101500": 15, + "2101530": 15, + "2101590": 15, + "2101620": 15, + "2101650": 15, + "2101680": 15, + "2101710": 15, + "2101740": 15, + "2101760": 15, + "2101800": 15, + "2101860": 15, + "2101920": 15, + "2101950": 15, + "2101980": 15, + "2102010": 15, + "2102040": 15, + "2102070": 15, + "2102100": 15, + "2102130": 15, + "2102160": 15, + "2102220": 15, + "2102250": 15, + "2102280": 15, + "2102300": 15, + "2102340": 15, + "2102400": 15, + "2102460": 15, + "2102490": 15, + "2102520": 15, + "2102540": 15, + "2102580": 15, + "2102640": 15, + "2102670": 15, + "2102710": 15, + "2102760": 15, + "2102790": 15, + "2102860": 15, + "2102910": 15, + "2102940": 15, + "2102990": 15, + "2103000": 15, + "2103030": 15, + "2103060": 15, + "2103090": 15, + "2103120": 15, + "2103150": 15, + "2103180": 15, + "2103210": 15, + "2103240": 15, + "2103270": 15, + "2103330": 15, + "2103360": 15, + "2103390": 15, + "2103480": 15, + "2103510": 15, + "2103540": 15, + "2103630": 15, + "2103690": 15, + "2103720": 15, + "2103750": 15, + "2103780": 15, + "2103810": 15, + "2103840": 15, + "2103870": 15, + "2103900": 15, + "2103960": 15, + "2103990": 15, + "2104020": 15, + "2104050": 15, + "2104080": 15, + "2104110": 15, + "2104140": 15, + "2104170": 15, + "2104200": 15, + "2104250": 15, + "2104260": 5, + "2104290": 15, + "2104380": 15, + "2104410": 15, + "2104440": 15, + "2104470": 15, + "2104500": 15, + "2104530": 15, + "2104560": 15, + "2104590": 15, + "2104620": 15, + "2104650": 15, + "2104680": 15, + "2104710": 15, + "2104740": 15, + "2104770": 15, + "2104800": 15, + "2104830": 15, + "2104860": 15, + "2104890": 15, + "2104950": 15, + "2104980": 15, + "2105040": 15, + "2105070": 15, + "2105100": 15, + "2105130": 15, + "2105160": 15, + "2105190": 15, + "2105220": 15, + "2105260": 15, + "2105320": 15, + "2105370": 11, + "2105400": 15, + "2105430": 15, + "2105460": 15, + "2105490": 15, + "2105520": 15, + "2105550": 15, + "2105580": 15, + "2105610": 15, + "2105640": 15, + "2105700": 15, + "2105730": 15, + "2105760": 15, + "2105790": 15, + "2105820": 15, + "2105850": 14, + "2105880": 15, + "2105910": 15, + "2105940": 15, + "2105970": 15, + "2106000": 15, + "2121001": 15, + "2121002": 15, + "2121003": 14, + "2121004": 10, + "2121005": 10, + "2199997": 6, + "2200030": 15, + "2200039": 15, + "2200040": 15, + "2200060": 15, + "2200090": 15, + "2200120": 15, + "2200125": 1, + "2200150": 15, + "2200180": 15, + "2200210": 15, + "2200240": 15, + "2200270": 15, + "2200300": 15, + "2200330": 15, + "2200360": 15, + "2200390": 15, + "2200420": 15, + "2200450": 15, + "2200480": 15, + "2200510": 15, + "2200540": 15, + "2200570": 15, + "2200600": 15, + "2200630": 15, + "2200660": 15, + "2200690": 15, + "2200720": 15, + "2200750": 15, + "2200780": 15, + "2200810": 15, + "2200840": 15, + "2200870": 15, + "2200900": 15, + "2200960": 15, + "2200990": 15, + "2201020": 15, + "2201050": 15, + "2201080": 15, + "2201110": 15, + "2201140": 15, + "2201170": 15, + "2201200": 15, + "2201230": 15, + "2201260": 15, + "2201290": 15, + "2201320": 15, + "2201350": 15, + "2201380": 15, + "2201410": 15, + "2201440": 15, + "2201470": 15, + "2201500": 15, + "2201530": 15, + "2201560": 15, + "2201590": 15, + "2201620": 15, + "2201650": 15, + "2201680": 15, + "2201710": 15, + "2201740": 15, + "2201770": 15, + "2201800": 15, + "2201830": 15, + "2201860": 15, + "2201890": 15, + "2201920": 15, + "2201950": 15, + "2201980": 15, + "2202010": 15, + "2206840": 14, + "2300001": 14, + "2300002": 14, + "2300003": 14, + "2300004": 15, + "2300005": 15, + "2300008": 15, + "2300009": 15, + "2300052": 15, + "2300053": 13, + "2300057": 15, + "2300058": 15, + "2300059": 15, + "2300060": 1, + "2300061": 15, + "2300062": 15, + "2300063": 15, + "2300064": 1, + "2300065": 14, + "2300066": 1, + "2300067": 14, + "2300068": 14, + "2300069": 1, + "2302220": 15, + "2302280": 15, + "2302340": 1, + "2302370": 1, + "2302500": 15, + "2302510": 15, + "2302520": 1, + "2302580": 1, + "2302610": 15, + "2302640": 15, + "2302730": 15, + "2302790": 7, + "2302820": 15, + "2302850": 15, + "2302880": 15, + "2302940": 1, + "2302950": 15, + "2302960": 15, + "2302980": 15, + "2303150": 15, + "2303210": 15, + "2303290": 15, + "2303390": 15, + "2303450": 1, + "2303480": 15, + "2303510": 15, + "2303600": 15, + "2303610": 15, + "2303640": 15, + "2303780": 15, + "2303810": 1, + "2303870": 15, + "2303930": 15, + "2303960": 1, + "2303980": 15, + "2303990": 15, + "2304080": 15, + "2304110": 15, + "2304160": 15, + "2304230": 1, + "2304290": 1, + "2304440": 15, + "2304500": 15, + "2304620": 15, + "2304650": 15, + "2304800": 3, + "2304830": 15, + "2304860": 9, + "2304880": 15, + "2304890": 15, + "2304895": 15, + "2304897": 15, + "2304900": 15, + "2305130": 1, + "2305160": 15, + "2305190": 1, + "2305280": 15, + "2305310": 15, + "2305360": 15, + "2305380": 14, + "2305400": 15, + "2305500": 9, + "2305670": 15, + "2305730": 1, + "2305820": 1, + "2305970": 15, + "2305980": 15, + "2306000": 11, + "2306030": 15, + "2306060": 15, + "2306150": 15, + "2306160": 15, + "2306180": 15, + "2306250": 15, + "2306260": 9, + "2306300": 1, + "2306330": 15, + "2306510": 15, + "2306540": 3, + "2306600": 15, + "2306610": 15, + "2306780": 15, + "2306810": 15, + "2306840": 3, + "2306870": 15, + "2306900": 15, + "2307100": 15, + "2307110": 15, + "2307140": 15, + "2307200": 15, + "2307250": 9, + "2307320": 15, + "2307380": 1, + "2307440": 15, + "2307450": 15, + "2307530": 15, + "2307560": 1, + "2307570": 1, + "2307590": 15, + "2307710": 15, + "2307770": 15, + "2307800": 15, + "2307890": 3, + "2307920": 1, + "2307950": 1, + "2307980": 15, + "2308100": 1, + "2308135": 15, + "2308140": 15, + "2308160": 15, + "2308250": 15, + "2308280": 15, + "2308310": 1, + "2308340": 15, + "2308370": 1, + "2308400": 13, + "2308430": 3, + "2308490": 15, + "2308500": 15, + "2308520": 1, + "2308560": 1, + "2308580": 15, + "2308700": 15, + "2308760": 15, + "2308940": 15, + "2309090": 15, + "2309200": 1, + "2309210": 1, + "2309240": 15, + "2309270": 1, + "2309300": 1, + "2309330": 15, + "2309390": 15, + "2309510": 1, + "2309560": 15, + "2309630": 15, + "2309650": 15, + "2309750": 1, + "2309810": 15, + "2309870": 1, + "2309930": 15, + "2309990": 15, + "2310020": 3, + "2310050": 3, + "2310080": 1, + "2310110": 1, + "2310140": 15, + "2310170": 1, + "2310190": 15, + "2310300": 1, + "2310320": 15, + "2310380": 9, + "2310470": 3, + "2310500": 15, + "2310530": 15, + "2310560": 15, + "2310590": 15, + "2310620": 15, + "2310650": 15, + "2310680": 15, + "2310710": 15, + "2310740": 1, + "2310770": 15, + "2310800": 1, + "2310830": 15, + "2310860": 15, + "2310890": 15, + "2310920": 1, + "2310950": 14, + "2310980": 15, + "2311010": 15, + "2311040": 3, + "2311070": 1, + "2311100": 15, + "2311130": 15, + "2311160": 15, + "2311220": 15, + "2311250": 15, + "2311280": 15, + "2311310": 15, + "2311340": 1, + "2311370": 15, + "2311400": 3, + "2311430": 15, + "2311460": 1, + "2311490": 1, + "2311520": 15, + "2311550": 15, + "2311580": 15, + "2311610": 15, + "2311640": 1, + "2311670": 15, + "2311700": 15, + "2311730": 15, + "2311760": 1, + "2311790": 15, + "2311820": 15, + "2311850": 15, + "2311880": 14, + "2311910": 15, + "2311940": 1, + "2311950": 1, + "2312140": 15, + "2312180": 15, + "2312240": 1, + "2312300": 15, + "2312330": 15, + "2312360": 15, + "2312390": 15, + "2312410": 3, + "2312480": 1, + "2312510": 1, + "2312750": 15, + "2312810": 15, + "2312960": 15, + "2312980": 15, + "2313070": 15, + "2313080": 15, + "2313110": 15, + "2313140": 11, + "2313200": 15, + "2313230": 1, + "2313350": 15, + "2313380": 1, + "2313410": 1, + "2313490": 15, + "2313500": 15, + "2313530": 9, + "2313560": 15, + "2313590": 15, + "2313620": 1, + "2313650": 1, + "2313710": 15, + "2313740": 15, + "2313800": 1, + "2313830": 1, + "2313860": 15, + "2313970": 15, + "2313980": 9, + "2314010": 15, + "2314040": 15, + "2314070": 1, + "2314100": 15, + "2314130": 15, + "2314160": 15, + "2314190": 15, + "2314210": 15, + "2314240": 15, + "2314270": 1, + "2314300": 15, + "2314330": 15, + "2314360": 1, + "2314390": 1, + "2314410": 15, + "2314440": 15, + "2314470": 15, + "2314500": 1, + "2314530": 15, + "2314560": 15, + "2314590": 15, + "2314610": 15, + "2314640": 1, + "2314670": 15, + "2314700": 15, + "2314760": 14, + "2314761": 15, + "2314762": 15, + "2314764": 1, + "2314765": 15, + "2314767": 15, + "2314768": 15, + "2314770": 1, + "2314771": 14, + "2314772": 14, + "2314773": 14, + "2314775": 14, + "2314776": 14, + "2314777": 1, + "2314778": 14, + "2314779": 14, + "2314780": 14, + "2314782": 14, + "2314783": 14, + "2314784": 14, + "2314785": 14, + "2314787": 14, + "2314788": 14, + "2314789": 14, + "2314790": 14, + "2314791": 14, + "2314793": 14, + "2314794": 14, + "2314795": 14, + "2314796": 14, + "2314803": 12, + "2314805": 12, + "2314806": 12, + "2314809": 1, + "2314811": 10, + "2314814": 10, + "2314815": 1, + "2314817": 10, + "2314818": 10, + "2314820": 8, + "2314822": 8, + "2314823": 8, + "2314824": 8, + "2314825": 8, + "2314830": 2, + "2314833": 6, + "2314834": 6, + "2314835": 6, + "2314836": 5, + "2314837": 5, + "2314838": 5, + "2314839": 5, + "2314842": 4, + "2382001": 15, + "2382002": 15, + "2382003": 15, + "2382004": 15, + "2382005": 15, + "2382006": 15, + "2382007": 15, + "2382008": 15, + "2382009": 15, + "2382010": 15, + "2382011": 15, + "2382012": 15, + "2382013": 14, + "2399998": 2, + "2400030": 15, + "2400060": 15, + "2400090": 15, + "2400120": 15, + "2400150": 15, + "2400180": 15, + "2400210": 15, + "2400240": 15, + "2400270": 15, + "2400300": 15, + "2400330": 15, + "2400360": 15, + "2400390": 15, + "2400420": 15, + "2400450": 15, + "2400480": 15, + "2400510": 15, + "2400540": 15, + "2400570": 15, + "2400600": 15, + "2400630": 15, + "2400660": 15, + "2400690": 15, + "2400720": 15, + "2500001": 15, + "2500002": 15, + "2500013": 15, + "2500014": 15, + "2500043": 15, + "2500067": 15, + "2500541": 12, + "2500542": 12, + "2500544": 10, + "2501650": 15, + "2501680": 7, + "2501710": 15, + "2501740": 15, + "2501780": 15, + "2501800": 15, + "2501860": 15, + "2501890": 15, + "2501920": 15, + "2501950": 15, + "2501980": 15, + "2502040": 15, + "2502100": 15, + "2502160": 15, + "2502190": 15, + "2502220": 15, + "2502250": 15, + "2502280": 3, + "2502310": 15, + "2502400": 15, + "2502430": 15, + "2502460": 15, + "2502490": 15, + "2502520": 15, + "2502530": 15, + "2502550": 11, + "2502580": 15, + "2502640": 15, + "2502670": 15, + "2502715": 15, + "2502790": 15, + "2502820": 15, + "2502850": 7, + "2502880": 15, + "2502910": 11, + "2502940": 15, + "2502970": 15, + "2503030": 15, + "2503060": 15, + "2503090": 15, + "2503120": 15, + "2503150": 15, + "2503240": 15, + "2503270": 15, + "2503300": 15, + "2503330": 15, + "2503360": 15, + "2503390": 15, + "2503480": 5, + "2503510": 15, + "2503540": 15, + "2503660": 15, + "2503720": 15, + "2503750": 15, + "2503780": 15, + "2503840": 15, + "2503870": 15, + "2503900": 15, + "2503990": 15, + "2504020": 15, + "2504050": 15, + "2504080": 15, + "2504140": 15, + "2504200": 15, + "2504230": 15, + "2504260": 15, + "2504290": 15, + "2504320": 15, + "2504360": 15, + "2504410": 15, + "2504440": 15, + "2504500": 15, + "2504530": 15, + "2504560": 15, + "2504590": 15, + "2504620": 15, + "2504650": 15, + "2504710": 15, + "2504770": 15, + "2504800": 15, + "2504830": 15, + "2504860": 15, + "2504890": 15, + "2504920": 15, + "2504950": 15, + "2504980": 15, + "2505010": 15, + "2505040": 3, + "2505070": 15, + "2505100": 15, + "2505130": 15, + "2505160": 15, + "2505220": 15, + "2505270": 15, + "2505280": 15, + "2505340": 15, + "2505370": 15, + "2505400": 15, + "2505430": 5, + "2505490": 15, + "2505500": 15, + "2505580": 15, + "2505610": 15, + "2505670": 15, + "2505730": 15, + "2505740": 15, + "2505760": 15, + "2505790": 15, + "2505880": 15, + "2505910": 5, + "2505940": 15, + "2505970": 15, + "2506000": 15, + "2506090": 15, + "2506150": 15, + "2506210": 15, + "2506240": 15, + "2506270": 15, + "2506300": 15, + "2506330": 15, + "2506390": 15, + "2506420": 15, + "2506480": 15, + "2506510": 15, + "2506540": 15, + "2506570": 3, + "2506630": 10, + "2506660": 15, + "2506690": 15, + "2506720": 15, + "2506750": 15, + "2506780": 15, + "2506810": 15, + "2506840": 15, + "2506900": 15, + "2506930": 15, + "2506960": 15, + "2506990": 15, + "2507020": 15, + "2507050": 15, + "2507080": 15, + "2507110": 15, + "2507140": 15, + "2507170": 15, + "2507230": 15, + "2507260": 15, + "2507290": 15, + "2507320": 15, + "2507350": 15, + "2507380": 15, + "2507410": 15, + "2507440": 15, + "2507470": 15, + "2507500": 15, + "2507530": 15, + "2507560": 15, + "2507590": 15, + "2507620": 15, + "2507680": 15, + "2507740": 15, + "2507770": 15, + "2507830": 15, + "2507860": 15, + "2507890": 15, + "2507920": 15, + "2507980": 15, + "2507990": 15, + "2508040": 15, + "2508160": 15, + "2508220": 15, + "2508250": 15, + "2508280": 15, + "2508310": 15, + "2508340": 15, + "2508370": 15, + "2508430": 15, + "2508530": 15, + "2508580": 15, + "2508610": 15, + "2508640": 15, + "2508670": 15, + "2508700": 15, + "2508730": 15, + "2508760": 15, + "2508790": 15, + "2508820": 15, + "2508850": 15, + "2508880": 15, + "2508910": 15, + "2508940": 15, + "2509000": 15, + "2509030": 15, + "2509060": 15, + "2509090": 15, + "2509150": 15, + "2509180": 15, + "2509210": 15, + "2509270": 15, + "2509300": 15, + "2509360": 15, + "2509390": 15, + "2509420": 15, + "2509450": 15, + "2509540": 15, + "2509600": 15, + "2509630": 15, + "2509690": 15, + "2509720": 15, + "2509780": 15, + "2509840": 15, + "2509870": 15, + "2509900": 15, + "2509930": 15, + "2509990": 15, + "2510050": 15, + "2510080": 15, + "2510140": 15, + "2510170": 15, + "2510200": 15, + "2510230": 15, + "2510380": 15, + "2510470": 15, + "2510500": 15, + "2510530": 15, + "2510560": 15, + "2510590": 15, + "2510620": 15, + "2510710": 15, + "2510740": 3, + "2510770": 15, + "2510800": 15, + "2510830": 15, + "2510860": 15, + "2510890": 15, + "2510920": 15, + "2510950": 15, + "2510980": 15, + "2511010": 15, + "2511040": 15, + "2511130": 15, + "2511220": 15, + "2511250": 15, + "2511310": 15, + "2511340": 15, + "2511370": 15, + "2511400": 15, + "2511430": 15, + "2511460": 15, + "2511490": 15, + "2511520": 15, + "2511580": 15, + "2511670": 15, + "2511730": 15, + "2511740": 15, + "2511760": 15, + "2511850": 15, + "2511880": 15, + "2511910": 15, + "2511940": 15, + "2511970": 15, + "2512000": 15, + "2512030": 15, + "2512060": 15, + "2512100": 15, + "2512180": 15, + "2512210": 15, + "2512240": 15, + "2512270": 15, + "2512300": 15, + "2512390": 15, + "2512420": 15, + "2512510": 15, + "2512570": 15, + "2512600": 15, + "2512630": 15, + "2512660": 15, + "2512690": 15, + "2512750": 15, + "2512780": 15, + "2512810": 15, + "2512840": 15, + "2512870": 15, + "2512930": 15, + "2512990": 15, + "2513020": 10, + "2513050": 15, + "2513080": 15, + "2513110": 15, + "2513170": 15, + "2513200": 15, + "2513230": 15, + "2513260": 8, + "2513290": 15, + "2513321": 15, + "2522222": 15, + "2525001": 3, + "2525002": 15, + "2525003": 15, + "2525004": 5, + "2525005": 15, + "2525006": 15, + "2525007": 15, + "2525008": 15, + "2525009": 15, + "2525010": 15, + "2525011": 3, + "2525012": 15, + "2525013": 15, + "2525014": 15, + "2525015": 14, + "2599997": 3, + "2599998": 3, + "2600005": 15, + "2600006": 15, + "2600007": 15, + "2600009": 14, + "2600010": 15, + "2600011": 15, + "2600012": 15, + "2600013": 15, + "2600014": 15, + "2600015": 15, + "2600016": 15, + "2600017": 15, + "2600018": 15, + "2600019": 15, + "2600105": 15, + "2601103": 4, + "2601890": 15, + "2601920": 15, + "2601950": 15, + "2601980": 15, + "2602010": 15, + "2602040": 15, + "2602070": 9, + "2602160": 15, + "2602190": 15, + "2602220": 15, + "2602520": 15, + "2602550": 15, + "2602640": 15, + "2602670": 15, + "2602730": 15, + "2602790": 15, + "2602820": 15, + "2603060": 12, + "2603240": 15, + "2603270": 15, + "2603480": 15, + "2603510": 15, + "2603540": 15, + "2603570": 15, + "2603600": 15, + "2603660": 15, + "2603690": 15, + "2603810": 15, + "2603870": 15, + "2603900": 15, + "2603960": 15, + "2603990": 15, + "2604020": 15, + "2604170": 15, + "2604260": 15, + "2604290": 15, + "2604320": 15, + "2604350": 15, + "2604440": 15, + "2604470": 15, + "2604500": 15, + "2604530": 15, + "2604620": 15, + "2604650": 15, + "2604740": 15, + "2604800": 15, + "2604830": 15, + "2604950": 15, + "2605010": 15, + "2605100": 15, + "2605430": 15, + "2605690": 15, + "2605780": 15, + "2605820": 15, + "2605850": 15, + "2606000": 15, + "2606090": 15, + "2606270": 15, + "2606300": 15, + "2606500": 15, + "2606510": 15, + "2606570": 15, + "2606600": 15, + "2606630": 15, + "2606720": 15, + "2606780": 15, + "2606840": 15, + "2606870": 15, + "2606900": 15, + "2606930": 15, + "2606960": 15, + "2606990": 15, + "2607040": 15, + "2607080": 15, + "2607140": 15, + "2607170": 15, + "2607230": 5, + "2607320": 15, + "2607410": 15, + "2607470": 15, + "2607530": 15, + "2607560": 15, + "2607590": 15, + "2607620": 15, + "2607690": 15, + "2607710": 15, + "2607800": 15, + "2607890": 15, + "2608010": 15, + "2608040": 15, + "2608070": 15, + "2608130": 15, + "2608160": 15, + "2608280": 15, + "2608400": 15, + "2608430": 15, + "2608520": 15, + "2608580": 15, + "2608610": 15, + "2608640": 15, + "2608670": 15, + "2608730": 15, + "2608770": 15, + "2608880": 15, + "2608910": 15, + "2608940": 15, + "2609150": 15, + "2609560": 15, + "2609570": 15, + "2609630": 15, + "2609750": 15, + "2609840": 15, + "2609900": 15, + "2609930": 15, + "2610020": 15, + "2610050": 15, + "2610080": 15, + "2610110": 15, + "2610140": 15, + "2610200": 15, + "2610230": 15, + "2610380": 15, + "2610410": 15, + "2610560": 15, + "2610590": 15, + "2610620": 15, + "2610650": 15, + "2610750": 15, + "2610830": 15, + "2610860": 15, + "2610980": 15, + "2611030": 15, + "2611140": 15, + "2611190": 15, + "2611400": 15, + "2611430": 15, + "2611550": 15, + "2611600": 15, + "2611610": 15, + "2611640": 15, + "2611670": 15, + "2611700": 15, + "2611730": 7, + "2611910": 15, + "2611970": 15, + "2612000": 11, + "2612030": 15, + "2612150": 15, + "2612240": 15, + "2612300": 15, + "2612330": 15, + "2612420": 15, + "2612450": 15, + "2612480": 15, + "2612540": 15, + "2612560": 15, + "2612600": 15, + "2612660": 15, + "2612690": 15, + "2612810": 15, + "2612930": 15, + "2612960": 15, + "2612990": 15, + "2613050": 15, + "2613090": 15, + "2613110": 15, + "2613140": 15, + "2613500": 15, + "2613530": 15, + "2613560": 15, + "2613680": 15, + "2614070": 15, + "2614100": 15, + "2614230": 15, + "2614250": 15, + "2614280": 15, + "2614460": 15, + "2614520": 15, + "2614550": 15, + "2614570": 15, + "2614610": 15, + "2614690": 15, + "2614700": 15, + "2614730": 15, + "2614760": 15, + "2614790": 15, + "2614820": 15, + "2615060": 15, + "2615090": 5, + "2615150": 15, + "2615390": 15, + "2615420": 15, + "2615450": 15, + "2615480": 11, + "2615510": 15, + "2615540": 15, + "2615600": 15, + "2615730": 15, + "2615750": 15, + "2615830": 15, + "2615870": 15, + "2615970": 15, + "2615990": 15, + "2616020": 15, + "2616050": 15, + "2616080": 15, + "2616110": 15, + "2616320": 15, + "2616350": 15, + "2616380": 15, + "2616410": 15, + "2616440": 15, + "2616470": 15, + "2616500": 15, + "2616560": 15, + "2616830": 15, + "2617160": 15, + "2617220": 15, + "2617250": 15, + "2617340": 15, + "2617370": 15, + "2617400": 15, + "2617520": 15, + "2617550": 15, + "2617640": 15, + "2617700": 15, + "2617730": 15, + "2617760": 15, + "2617820": 15, + "2617860": 15, + "2617880": 15, + "2617910": 15, + "2617940": 15, + "2617970": 15, + "2618030": 15, + "2618180": 15, + "2618270": 15, + "2618330": 15, + "2618360": 15, + "2618390": 15, + "2618420": 15, + "2618450": 15, + "2618480": 15, + "2618510": 15, + "2618540": 15, + "2618570": 15, + "2618600": 15, + "2618720": 15, + "2618810": 15, + "2618840": 15, + "2618930": 15, + "2618990": 15, + "2619050": 15, + "2619100": 15, + "2619140": 7, + "2619170": 15, + "2619250": 15, + "2619290": 15, + "2619410": 15, + "2619470": 15, + "2619530": 15, + "2619580": 15, + "2619620": 15, + "2619800": 15, + "2619830": 15, + "2619890": 15, + "2619920": 15, + "2619950": 15, + "2620010": 15, + "2620050": 15, + "2620070": 15, + "2620160": 15, + "2620280": 15, + "2620310": 15, + "2620340": 15, + "2620380": 15, + "2620400": 15, + "2620550": 15, + "2620610": 15, + "2620670": 15, + "2620700": 15, + "2620730": 15, + "2620820": 15, + "2620850": 15, + "2620880": 15, + "2620910": 15, + "2620940": 15, + "2620980": 15, + "2621120": 15, + "2621150": 15, + "2621180": 15, + "2621210": 15, + "2621240": 15, + "2621390": 15, + "2621420": 15, + "2621450": 15, + "2621570": 15, + "2621600": 15, + "2621690": 15, + "2621750": 15, + "2621810": 15, + "2621840": 15, + "2621870": 15, + "2622050": 15, + "2622200": 15, + "2622230": 15, + "2622260": 15, + "2622290": 15, + "2622320": 15, + "2622350": 15, + "2622380": 15, + "2622410": 15, + "2622470": 15, + "2622500": 15, + "2622620": 15, + "2622740": 15, + "2622800": 15, + "2622830": 15, + "2622860": 15, + "2622970": 15, + "2622980": 15, + "2623040": 15, + "2623070": 15, + "2623100": 15, + "2623130": 15, + "2623160": 15, + "2623250": 15, + "2623280": 15, + "2623310": 15, + "2623460": 15, + "2623490": 15, + "2623520": 15, + "2623550": 15, + "2623580": 15, + "2623610": 15, + "2623670": 15, + "2623790": 15, + "2623820": 15, + "2623830": 15, + "2623850": 15, + "2623910": 15, + "2624000": 15, + "2624120": 15, + "2624150": 15, + "2624180": 15, + "2624420": 15, + "2624540": 15, + "2624570": 15, + "2624600": 15, + "2624630": 15, + "2624690": 15, + "2624720": 15, + "2624750": 15, + "2624810": 15, + "2624840": 15, + "2624870": 15, + "2624960": 15, + "2625020": 15, + "2625140": 15, + "2625230": 15, + "2625290": 15, + "2625320": 15, + "2625350": 15, + "2625400": 15, + "2625560": 15, + "2625650": 15, + "2625680": 15, + "2625740": 15, + "2625780": 15, + "2625800": 15, + "2625920": 15, + "2625950": 15, + "2625980": 15, + "2626010": 15, + "2626040": 15, + "2626100": 15, + "2626130": 15, + "2626190": 15, + "2626220": 15, + "2626280": 15, + "2626370": 15, + "2626400": 15, + "2626430": 15, + "2626490": 15, + "2626520": 15, + "2626550": 15, + "2626760": 15, + "2626940": 15, + "2626970": 15, + "2627060": 15, + "2627150": 15, + "2627180": 15, + "2627210": 15, + "2627240": 15, + "2627390": 9, + "2627420": 15, + "2627660": 15, + "2627690": 15, + "2627720": 15, + "2627810": 15, + "2627840": 15, + "2627900": 15, + "2627930": 15, + "2627960": 15, + "2628020": 15, + "2628140": 15, + "2628170": 15, + "2628200": 15, + "2628500": 15, + "2628530": 15, + "2628560": 15, + "2628740": 15, + "2628810": 9, + "2628830": 15, + "2628890": 15, + "2628950": 15, + "2629120": 15, + "2629130": 15, + "2629160": 15, + "2629190": 15, + "2629220": 15, + "2629250": 15, + "2629340": 15, + "2629370": 15, + "2629400": 15, + "2629460": 15, + "2629490": 15, + "2629520": 15, + "2629540": 15, + "2629580": 15, + "2629670": 15, + "2629760": 15, + "2629790": 15, + "2629910": 15, + "2629940": 15, + "2630030": 15, + "2630060": 15, + "2630090": 15, + "2630120": 15, + "2630210": 15, + "2630300": 15, + "2630360": 15, + "2630390": 15, + "2630450": 15, + "2630480": 15, + "2630660": 15, + "2630780": 15, + "2630840": 15, + "2630930": 15, + "2630960": 15, + "2630990": 15, + "2631020": 15, + "2631320": 15, + "2631380": 15, + "2631830": 15, + "2632070": 15, + "2632220": 15, + "2632250": 15, + "2632280": 15, + "2632300": 15, + "2632310": 15, + "2632340": 15, + "2632370": 15, + "2632550": 15, + "2632610": 15, + "2632640": 15, + "2632670": 15, + "2632820": 15, + "2632850": 15, + "2632880": 15, + "2632910": 15, + "2632940": 15, + "2632970": 15, + "2633000": 15, + "2633030": 15, + "2633090": 15, + "2633120": 15, + "2633360": 15, + "2633410": 15, + "2633420": 15, + "2633510": 15, + "2633540": 15, + "2633720": 15, + "2633750": 15, + "2633810": 15, + "2633840": 15, + "2633870": 15, + "2633900": 15, + "2633930": 15, + "2634260": 15, + "2634380": 15, + "2634410": 15, + "2634440": 15, + "2634470": 15, + "2634560": 15, + "2634620": 15, + "2634650": 15, + "2634680": 15, + "2634710": 15, + "2634860": 15, + "2634920": 15, + "2634950": 15, + "2635010": 15, + "2635040": 15, + "2635130": 15, + "2635160": 15, + "2635190": 15, + "2635220": 15, + "2635310": 15, + "2635340": 15, + "2635460": 15, + "2635520": 15, + "2635550": 15, + "2635730": 15, + "2635790": 15, + "2635820": 15, + "2635850": 15, + "2635910": 15, + "2635940": 15, + "2635970": 15, + "2636060": 15, + "2636120": 15, + "2636150": 3, + "2636240": 15, + "2636270": 15, + "2636300": 15, + "2636330": 15, + "2636390": 15, + "2636420": 15, + "2636450": 5, + "2636480": 15, + "2636485": 15, + "2636540": 15, + "2636570": 15, + "2636600": 15, + "2636630": 15, + "2636660": 15, + "2699997": 3, + "2699998": 3, + "2700001": 15, + "2700005": 15, + "2700006": 15, + "2700007": 15, + "2700008": 15, + "2700013": 15, + "2700017": 15, + "2700019": 15, + "2700021": 12, + "2700022": 15, + "2700023": 15, + "2700024": 15, + "2700088": 15, + "2700089": 15, + "2700090": 15, + "2700091": 15, + "2700099": 15, + "2700100": 15, + "2700101": 15, + "2700102": 15, + "2700103": 15, + "2700104": 15, + "2700105": 15, + "2700106": 15, + "2700107": 15, + "2700108": 15, + "2700109": 15, + "2700110": 15, + "2700112": 9, + "2700123": 15, + "2700124": 15, + "2700125": 15, + "2700126": 13, + "2700127": 15, + "2700128": 15, + "2700130": 15, + "2700132": 15, + "2700148": 15, + "2700149": 1, + "2700150": 15, + "2700162": 15, + "2700163": 15, + "2700182": 15, + "2700183": 15, + "2700231": 15, + "2700287": 14, + "2700294": 14, + "2700326": 14, + "2700328": 14, + "2700379": 10, + "2700382": 10, + "2700383": 10, + "2700385": 10, + "2700388": 10, + "2700466": 3, + "2700480": 2, + "2702640": 15, + "2702720": 15, + "2702730": 15, + "2702760": 15, + "2702910": 15, + "2702930": 15, + "2702970": 15, + "2703030": 15, + "2703060": 15, + "2703150": 15, + "2703180": 15, + "2703300": 15, + "2703450": 15, + "2703540": 15, + "2703570": 15, + "2703600": 1, + "2703660": 15, + "2703690": 15, + "2703750": 15, + "2703870": 15, + "2704050": 15, + "2704080": 1, + "2704440": 15, + "2704470": 15, + "2705430": 15, + "2705460": 15, + "2705660": 15, + "2705730": 15, + "2705760": 15, + "2705790": 15, + "2706060": 15, + "2706090": 15, + "2706120": 5, + "2706150": 15, + "2706180": 5, + "2706240": 15, + "2706300": 15, + "2707110": 15, + "2707200": 15, + "2707290": 15, + "2707320": 15, + "2707350": 15, + "2707380": 15, + "2707410": 15, + "2707450": 15, + "2707470": 15, + "2707500": 15, + "2707590": 15, + "2708070": 15, + "2708100": 15, + "2708190": 15, + "2708220": 15, + "2708880": 15, + "2708910": 15, + "2708940": 15, + "2709330": 15, + "2709360": 15, + "2709420": 15, + "2709440": 15, + "2709480": 15, + "2709510": 15, + "2709540": 15, + "2709690": 15, + "2709720": 15, + "2709750": 15, + "2709960": 5, + "2710060": 15, + "2710090": 15, + "2710140": 15, + "2710170": 15, + "2710230": 15, + "2710260": 15, + "2711010": 15, + "2711040": 15, + "2711085": 15, + "2711130": 15, + "2711190": 15, + "2711220": 15, + "2711250": 15, + "2711340": 1, + "2711370": 15, + "2711460": 15, + "2711520": 15, + "2711610": 5, + "2711670": 15, + "2711760": 15, + "2711820": 15, + "2711880": 15, + "2711910": 15, + "2712180": 15, + "2712210": 15, + "2712240": 15, + "2712270": 15, + "2712300": 15, + "2712360": 15, + "2712420": 15, + "2712480": 15, + "2712580": 15, + "2712900": 15, + "2713020": 15, + "2713040": 15, + "2713110": 15, + "2713140": 15, + "2713170": 15, + "2713380": 15, + "2713530": 15, + "2713560": 15, + "2713590": 15, + "2713680": 15, + "2713860": 15, + "2713890": 15, + "2713920": 15, + "2713930": 15, + "2713980": 15, + "2714010": 15, + "2714040": 15, + "2714070": 15, + "2714190": 15, + "2714220": 15, + "2714260": 15, + "2714280": 15, + "2714970": 15, + "2715000": 15, + "2715030": 15, + "2715510": 15, + "2715540": 15, + "2715750": 15, + "2716830": 15, + "2716980": 15, + "2717010": 15, + "2717100": 15, + "2717120": 15, + "2717220": 15, + "2717250": 15, + "2717460": 15, + "2717520": 15, + "2717570": 15, + "2717780": 15, + "2717880": 15, + "2717910": 15, + "2717940": 15, + "2718030": 5, + "2718060": 15, + "2718070": 15, + "2718090": 15, + "2718210": 15, + "2718240": 15, + "2718270": 15, + "2718330": 15, + "2718360": 15, + "2718390": 15, + "2718540": 15, + "2718570": 15, + "2718660": 15, + "2718750": 15, + "2718780": 15, + "2718810": 15, + "2718920": 15, + "2718940": 15, + "2718960": 15, + "2719170": 15, + "2719320": 15, + "2720550": 15, + "2720580": 15, + "2720670": 15, + "2721210": 15, + "2721240": 15, + "2721270": 15, + "2721320": 15, + "2721360": 5, + "2721390": 15, + "2721420": 15, + "2721450": 15, + "2721480": 15, + "2721540": 5, + "2722920": 15, + "2722950": 15, + "2723010": 15, + "2723310": 15, + "2723370": 15, + "2723400": 15, + "2723430": 15, + "2723490": 15, + "2723520": 15, + "2723550": 15, + "2723580": 15, + "2723820": 15, + "2723850": 15, + "2723880": 15, + "2723910": 15, + "2723970": 15, + "2724030": 5, + "2725050": 15, + "2725080": 15, + "2725110": 1, + "2725140": 15, + "2725200": 15, + "2727001": 10, + "2727002": 4, + "2727003": 4, + "2727004": 4, + "2727005": 4, + "2727006": 4, + "2727007": 4, + "2728050": 15, + "2728080": 15, + "2728110": 15, + "2728140": 15, + "2728170": 15, + "2728200": 15, + "2728230": 15, + "2728290": 15, + "2728320": 15, + "2728350": 15, + "2728380": 15, + "2728950": 15, + "2728960": 15, + "2728970": 15, + "2729040": 1, + "2729070": 5, + "2730030": 15, + "2730060": 15, + "2730090": 15, + "2730150": 15, + "2730450": 15, + "2730480": 15, + "2730510": 15, + "2730870": 15, + "2731750": 15, + "2731780": 15, + "2731800": 15, + "2732070": 15, + "2732250": 15, + "2732390": 15, + "2732430": 15, + "2732460": 15, + "2732490": 5, + "2732520": 15, + "2732550": 15, + "2732640": 1, + "2732670": 1, + "2732700": 15, + "2732820": 15, + "2732850": 15, + "2732880": 15, + "2732970": 15, + "2733000": 15, + "2733210": 15, + "2733270": 15, + "2733300": 15, + "2733330": 15, + "2733390": 15, + "2733420": 15, + "2733450": 15, + "2733480": 15, + "2733510": 15, + "2733540": 15, + "2733600": 15, + "2733720": 15, + "2733780": 15, + "2733790": 15, + "2733810": 15, + "2733840": 15, + "2733870": 15, + "2733900": 15, + "2738160": 15, + "2738190": 15, + "2738280": 15, + "2738850": 15, + "2738880": 15, + "2740590": 1, + "2740665": 15, + "2740680": 15, + "2740740": 15, + "2740770": 1, + "2740810": 15, + "2740830": 15, + "2740860": 15, + "2740920": 15, + "2741040": 12, + "2741060": 15, + "2741430": 15, + "2741460": 15, + "2741850": 15, + "2741880": 15, + "2741910": 15, + "2742120": 15, + "2742160": 15, + "2742270": 15, + "2742330": 15, + "2742360": 15, + "2742720": 15, + "2742750": 15, + "2742780": 15, + "2744070": 15, + "2744160": 15, + "2744190": 15, + "2745735": 15, + "2791445": 15, + "2791446": 15, + "2791447": 15, + "2791448": 13, + "2791449": 15, + "2791450": 15, + "2791451": 15, + "2799001": 2, + "2799997": 7, + "2799998": 3, + "2800185": 8, + "2800186": 8, + "2800187": 8, + "2800189": 8, + "2800191": 8, + "2800195": 5, + "2800196": 5, + "2800198": 4, + "2800200": 2, + "2800360": 15, + "2800390": 15, + "2800420": 15, + "2800450": 15, + "2800510": 15, + "2800540": 15, + "2800570": 15, + "2800600": 15, + "2800630": 15, + "2800660": 7, + "2800690": 7, + "2800720": 7, + "2800750": 15, + "2800780": 7, + "2800810": 7, + "2800820": 15, + "2800840": 15, + "2800870": 15, + "2800900": 15, + "2800930": 15, + "2800960": 13, + "2800990": 15, + "2801020": 15, + "2801050": 15, + "2801080": 7, + "2801090": 15, + "2801110": 15, + "2801140": 15, + "2801170": 15, + "2801200": 15, + "2801220": 15, + "2801260": 15, + "2801290": 15, + "2801320": 15, + "2801350": 5, + "2801360": 10, + "2801380": 15, + "2801410": 15, + "2801440": 15, + "2801470": 15, + "2801490": 15, + "2801530": 15, + "2801560": 15, + "2801590": 15, + "2801620": 15, + "2801650": 11, + "2801680": 15, + "2801710": 15, + "2801740": 15, + "2801770": 15, + "2801800": 15, + "2801830": 15, + "2801860": 15, + "2801890": 15, + "2801950": 15, + "2801980": 10, + "2802010": 13, + "2802040": 15, + "2802070": 7, + "2802100": 15, + "2802160": 15, + "2802190": 15, + "2802220": 15, + "2802250": 15, + "2802280": 15, + "2802310": 15, + "2802340": 15, + "2802370": 15, + "2802400": 15, + "2802430": 15, + "2802460": 15, + "2802490": 15, + "2802520": 15, + "2802550": 15, + "2802580": 11, + "2802610": 15, + "2802640": 15, + "2802670": 15, + "2802700": 15, + "2802730": 15, + "2802760": 10, + "2802790": 15, + "2802820": 15, + "2802850": 15, + "2802880": 15, + "2802910": 15, + "2802940": 15, + "2802970": 10, + "2803000": 15, + "2803030": 15, + "2803060": 15, + "2803090": 15, + "2803120": 15, + "2803150": 15, + "2803180": 15, + "2803210": 15, + "2803240": 15, + "2803270": 15, + "2803300": 15, + "2803360": 15, + "2803390": 15, + "2803420": 7, + "2803450": 15, + "2803480": 15, + "2803510": 15, + "2803520": 15, + "2803530": 15, + "2803540": 15, + "2803570": 15, + "2803600": 15, + "2803630": 15, + "2803660": 15, + "2803690": 15, + "2803720": 15, + "2803750": 15, + "2803780": 15, + "2803810": 15, + "2803830": 15, + "2803870": 15, + "2803900": 15, + "2803930": 15, + "2803960": 15, + "2803990": 15, + "2804020": 15, + "2804050": 15, + "2804080": 15, + "2804110": 15, + "2804140": 7, + "2804170": 15, + "2804200": 7, + "2804230": 15, + "2804260": 15, + "2804290": 15, + "2804320": 15, + "2804350": 15, + "2804380": 15, + "2804440": 15, + "2804470": 15, + "2804500": 15, + "2804530": 15, + "2804560": 15, + "2804590": 15, + "2804620": 7, + "2804650": 15, + "2804680": 15, + "2804710": 15, + "2804740": 10, + "2804770": 15, + "2804800": 15, + "2900001": 15, + "2900002": 15, + "2900003": 15, + "2900004": 15, + "2901000": 15, + "2902850": 15, + "2902880": 15, + "2902910": 15, + "2902970": 15, + "2903000": 15, + "2903040": 15, + "2903060": 15, + "2903120": 15, + "2903150": 15, + "2903200": 15, + "2903270": 15, + "2903480": 15, + "2904020": 15, + "2904050": 15, + "2904080": 15, + "2904110": 15, + "2904140": 15, + "2904170": 15, + "2904500": 15, + "2904530": 15, + "2904590": 15, + "2904620": 15, + "2904890": 15, + "2904950": 15, + "2904980": 15, + "2905070": 15, + "2905130": 15, + "2905190": 15, + "2905250": 15, + "2905280": 15, + "2905310": 15, + "2905370": 15, + "2905400": 15, + "2905430": 15, + "2905580": 15, + "2905610": 15, + "2905640": 15, + "2905660": 15, + "2905700": 15, + "2905730": 15, + "2905760": 15, + "2905790": 15, + "2905820": 15, + "2905850": 15, + "2905880": 15, + "2905910": 15, + "2905940": 15, + "2906000": 15, + "2906030": 15, + "2906090": 15, + "2906120": 15, + "2906150": 15, + "2906170": 15, + "2906360": 15, + "2906430": 15, + "2906450": 15, + "2906480": 15, + "2906510": 15, + "2906540": 15, + "2906990": 15, + "2907020": 15, + "2907050": 15, + "2907080": 15, + "2907120": 15, + "2907320": 15, + "2907350": 15, + "2907380": 15, + "2907460": 15, + "2907470": 15, + "2908170": 15, + "2908250": 15, + "2908320": 15, + "2908340": 15, + "2908370": 15, + "2908400": 15, + "2908430": 15, + "2908460": 15, + "2908490": 15, + "2908670": 15, + "2908730": 15, + "2908760": 15, + "2908790": 15, + "2909090": 15, + "2909120": 15, + "2909720": 15, + "2909750": 15, + "2909780": 15, + "2909810": 15, + "2909860": 15, + "2909900": 15, + "2909930": 15, + "2910020": 15, + "2910080": 15, + "2910110": 15, + "2910140": 15, + "2910200": 15, + "2910230": 15, + "2910260": 15, + "2910290": 15, + "2910320": 15, + "2910350": 15, + "2910380": 15, + "2910410": 15, + "2910440": 15, + "2910470": 15, + "2910500": 15, + "2910520": 15, + "2910590": 15, + "2910620": 15, + "2910650": 15, + "2910710": 15, + "2910770": 15, + "2910800": 15, + "2910830": 15, + "2910920": 15, + "2910950": 15, + "2911010": 15, + "2911040": 15, + "2911070": 15, + "2911100": 15, + "2911160": 15, + "2911220": 15, + "2911250": 15, + "2911280": 15, + "2911310": 15, + "2911340": 15, + "2911400": 15, + "2911450": 15, + "2911550": 15, + "2911580": 15, + "2911650": 15, + "2911670": 15, + "2911700": 15, + "2911730": 15, + "2911760": 15, + "2911850": 15, + "2911910": 15, + "2911940": 15, + "2911990": 15, + "2912010": 15, + "2912030": 15, + "2912180": 15, + "2912240": 15, + "2912290": 15, + "2912300": 15, + "2912450": 15, + "2912480": 15, + "2912510": 15, + "2912540": 15, + "2912550": 15, + "2912600": 15, + "2912630": 15, + "2912660": 15, + "2912690": 15, + "2912720": 15, + "2912780": 15, + "2912840": 15, + "2912870": 15, + "2912900": 15, + "2912930": 15, + "2913020": 7, + "2913080": 15, + "2913140": 15, + "2913170": 15, + "2913230": 15, + "2913260": 15, + "2913290": 15, + "2913320": 15, + "2913380": 15, + "2913440": 15, + "2913500": 15, + "2913530": 15, + "2913560": 15, + "2913590": 15, + "2913620": 15, + "2913650": 15, + "2913680": 15, + "2913710": 15, + "2913760": 15, + "2913770": 15, + "2913800": 15, + "2913830": 15, + "2914250": 15, + "2914280": 15, + "2914310": 15, + "2914320": 15, + "2914340": 15, + "2914370": 15, + "2914400": 15, + "2914430": 15, + "2914460": 15, + "2914490": 15, + "2914520": 15, + "2914550": 15, + "2914840": 15, + "2915060": 15, + "2915180": 15, + "2915210": 15, + "2915240": 15, + "2915270": 15, + "2915300": 15, + "2915330": 15, + "2915390": 15, + "2915420": 15, + "2915450": 15, + "2915480": 15, + "2915510": 15, + "2915600": 15, + "2915630": 15, + "2915660": 15, + "2916140": 15, + "2916190": 15, + "2916200": 15, + "2916230": 15, + "2916290": 15, + "2916350": 15, + "2916380": 15, + "2916400": 15, + "2916450": 15, + "2916470": 15, + "2916500": 15, + "2916530": 15, + "2916590": 15, + "2916620": 15, + "2916660": 15, + "2916710": 15, + "2916740": 15, + "2916770": 15, + "2916830": 15, + "2916860": 15, + "2916920": 15, + "2916950": 15, + "2917000": 15, + "2917820": 15, + "2917850": 15, + "2917880": 15, + "2917910": 15, + "2917970": 15, + "2918220": 15, + "2918240": 15, + "2918270": 15, + "2918300": 15, + "2918330": 15, + "2918360": 15, + "2918420": 15, + "2918450": 15, + "2918460": 15, + "2918480": 15, + "2918510": 15, + "2918540": 15, + "2918600": 15, + "2918670": 15, + "2918690": 15, + "2919080": 15, + "2919140": 15, + "2919170": 15, + "2919200": 15, + "2919230": 15, + "2919260": 15, + "2919320": 7, + "2919350": 15, + "2919380": 15, + "2919410": 15, + "2919840": 15, + "2919890": 15, + "2919920": 15, + "2919950": 15, + "2919980": 15, + "2920010": 15, + "2920050": 15, + "2920160": 15, + "2920280": 15, + "2920310": 15, + "2920340": 15, + "2920370": 15, + "2920410": 15, + "2920430": 15, + "2920490": 15, + "2920550": 15, + "2920610": 15, + "2920640": 15, + "2920670": 15, + "2920700": 15, + "2920750": 15, + "2920810": 15, + "2920820": 15, + "2920840": 15, + "2920880": 15, + "2920940": 15, + "2921000": 15, + "2921030": 15, + "2921060": 15, + "2921100": 15, + "2921120": 15, + "2921150": 15, + "2921180": 15, + "2921210": 15, + "2921330": 15, + "2921360": 15, + "2921420": 15, + "2921480": 15, + "2921510": 15, + "2921540": 15, + "2921600": 15, + "2921660": 15, + "2921690": 15, + "2921720": 15, + "2921750": 15, + "2921810": 15, + "2921840": 15, + "2921875": 15, + "2921880": 15, + "2921940": 15, + "2921960": 15, + "2922110": 15, + "2922140": 15, + "2922470": 15, + "2922500": 15, + "2922530": 15, + "2922560": 15, + "2922620": 15, + "2922650": 15, + "2922710": 15, + "2922740": 15, + "2922770": 15, + "2922800": 15, + "2922830": 15, + "2922860": 15, + "2922890": 15, + "2922920": 15, + "2922950": 15, + "2922980": 15, + "2923010": 15, + "2923040": 15, + "2923070": 15, + "2923100": 15, + "2923130": 15, + "2923160": 15, + "2923190": 15, + "2923220": 15, + "2923250": 15, + "2923270": 15, + "2923310": 15, + "2923340": 15, + "2923370": 15, + "2923400": 15, + "2923430": 15, + "2923460": 15, + "2923490": 15, + "2923530": 15, + "2923550": 15, + "2923580": 15, + "2923640": 15, + "2923670": 15, + "2923700": 15, + "2923730": 15, + "2923760": 15, + "2923790": 15, + "2924530": 15, + "2924690": 15, + "2925080": 15, + "2925110": 15, + "2925140": 15, + "2925170": 15, + "2925210": 15, + "2925230": 15, + "2925290": 15, + "2925330": 15, + "2925350": 15, + "2925410": 15, + "2925450": 15, + "2925500": 15, + "2925530": 15, + "2925590": 15, + "2925620": 15, + "2925640": 15, + "2925650": 15, + "2925710": 15, + "2926040": 15, + "2926070": 15, + "2926160": 15, + "2926190": 15, + "2926220": 15, + "2926260": 5, + "2926310": 15, + "2926370": 15, + "2926400": 15, + "2926430": 15, + "2926480": 15, + "2926490": 15, + "2926550": 15, + "2926580": 15, + "2926610": 15, + "2926640": 15, + "2926670": 15, + "2926790": 15, + "2926850": 15, + "2926890": 15, + "2926940": 15, + "2926970": 15, + "2927060": 15, + "2927090": 15, + "2927330": 15, + "2927450": 15, + "2927520": 15, + "2927540": 15, + "2927570": 15, + "2927600": 15, + "2927630": 15, + "2927660": 15, + "2927830": 15, + "2927870": 15, + "2927900": 15, + "2927930": 15, + "2928080": 15, + "2928110": 15, + "2928140": 15, + "2928170": 15, + "2928200": 15, + "2928260": 15, + "2928290": 15, + "2928360": 15, + "2928380": 15, + "2928410": 15, + "2928430": 15, + "2928470": 15, + "2928500": 15, + "2928530": 15, + "2928560": 15, + "2928590": 15, + "2928620": 15, + "2928680": 15, + "2928710": 15, + "2928740": 15, + "2928770": 15, + "2928800": 15, + "2928860": 15, + "2928920": 15, + "2928950": 15, + "2929100": 15, + "2929130": 15, + "2929170": 15, + "2929250": 15, + "2929280": 15, + "2929340": 15, + "2929370": 15, + "2929430": 15, + "2929470": 5, + "2929490": 15, + "2929520": 15, + "2929580": 15, + "2929610": 15, + "2929640": 15, + "2929670": 15, + "2929700": 15, + "2929730": 15, + "2929760": 15, + "2929810": 15, + "2929820": 15, + "2929850": 15, + "2929880": 15, + "2929910": 15, + "2929940": 15, + "2930270": 15, + "2930300": 15, + "2930330": 15, + "2930360": 15, + "2930390": 15, + "2930420": 15, + "2930450": 15, + "2930510": 15, + "2930520": 15, + "2930570": 15, + "2930600": 15, + "2930660": 15, + "2930690": 15, + "2930720": 15, + "2930750": 15, + "2930780": 15, + "2930810": 15, + "2930840": 15, + "2930870": 15, + "2930900": 15, + "2930990": 15, + "2931020": 15, + "2931050": 15, + "2931070": 15, + "2931110": 15, + "2931140": 15, + "2931230": 15, + "2931440": 15, + "2931460": 15, + "2931500": 15, + "2931530": 15, + "2931560": 15, + "2931590": 3, + "2931620": 15, + "2931650": 15, + "2931680": 15, + "2931710": 15, + "2931800": 15, + "2931830": 15, + "2931860": 15, + "2931890": 15, + "2931920": 15, + "2931950": 15, + "2932010": 15, + "2932070": 15, + "2932100": 15, + "2932110": 15, + "2932190": 15, + "2932220": 15, + "2932250": 15, + "2932300": 15, + "2932310": 15, + "2932440": 1, + "2932490": 15, + "2999998": 1, + "3000002": 13, + "3000003": 13, + "3000004": 13, + "3000005": 13, + "3000006": 13, + "3000007": 13, + "3000008": 13, + "3000089": 9, + "3000090": 15, + "3000093": 15, + "3000094": 15, + "3000095": 15, + "3000096": 15, + "3000097": 15, + "3000098": 15, + "3000099": 15, + "3000101": 15, + "3000102": 15, + "3000654": 12, + "3000655": 1, + "3000656": 1, + "3000932": 15, + "3000933": 15, + "3001710": 15, + "3001740": 15, + "3001860": 15, + "3001950": 15, + "3001980": 15, + "3002010": 15, + "3002030": 15, + "3002070": 15, + "3002220": 15, + "3002250": 15, + "3002300": 15, + "3002430": 15, + "3002450": 15, + "3002490": 15, + "3002550": 15, + "3002570": 15, + "3002640": 15, + "3002730": 15, + "3002820": 15, + "3002850": 15, + "3003000": 15, + "3003090": 15, + "3003270": 15, + "3003290": 15, + "3003330": 15, + "3003420": 15, + "3003450": 15, + "3003480": 15, + "3003600": 15, + "3003660": 15, + "3003750": 15, + "3003760": 9, + "3003800": 15, + "3003820": 15, + "3003840": 15, + "3003870": 15, + "3003900": 15, + "3003990": 15, + "3004050": 15, + "3004200": 15, + "3004230": 15, + "3004260": 15, + "3004380": 15, + "3004440": 15, + "3004500": 15, + "3004560": 15, + "3004590": 15, + "3004800": 15, + "3004860": 15, + "3004890": 15, + "3004920": 15, + "3004980": 15, + "3005010": 15, + "3005040": 15, + "3005130": 15, + "3005140": 15, + "3005190": 15, + "3005280": 15, + "3005310": 15, + "3005330": 15, + "3005400": 3, + "3005460": 15, + "3005550": 15, + "3005610": 15, + "3005760": 15, + "3005850": 15, + "3005880": 15, + "3005910": 15, + "3005990": 15, + "3006030": 15, + "3006110": 15, + "3006112": 15, + "3006115": 15, + "3006260": 15, + "3006270": 15, + "3006320": 15, + "3006330": 15, + "3006790": 15, + "3006810": 15, + "3006840": 15, + "3006870": 15, + "3007030": 15, + "3007050": 15, + "3007080": 15, + "3007110": 15, + "3007140": 15, + "3007190": 15, + "3007200": 15, + "3007320": 15, + "3007330": 15, + "3007350": 15, + "3007410": 15, + "3007500": 15, + "3007620": 1, + "3007710": 15, + "3007830": 15, + "3007860": 15, + "3007930": 15, + "3007950": 14, + "3007980": 15, + "3008010": 15, + "3008040": 15, + "3008130": 15, + "3008190": 15, + "3008280": 15, + "3008310": 15, + "3008340": 15, + "3008400": 15, + "3008470": 15, + "3008640": 7, + "3008670": 15, + "3008700": 15, + "3008730": 15, + "3008850": 15, + "3008860": 15, + "3008880": 15, + "3008910": 15, + "3009000": 15, + "3009030": 15, + "3009090": 3, + "3009120": 15, + "3009180": 15, + "3009210": 15, + "3009330": 15, + "3009510": 15, + "3009560": 14, + "3009600": 1, + "3009670": 15, + "3009720": 15, + "3009780": 15, + "3009840": 15, + "3009930": 15, + "3010080": 15, + "3010140": 15, + "3010170": 15, + "3010210": 15, + "3010230": 15, + "3010290": 15, + "3010530": 15, + "3010800": 15, + "3010820": 15, + "3010920": 15, + "3010950": 15, + "3011100": 15, + "3011160": 15, + "3011190": 15, + "3011240": 15, + "3011260": 15, + "3011340": 15, + "3011420": 15, + "3011460": 15, + "3011520": 15, + "3011550": 15, + "3011580": 15, + "3011610": 1, + "3011650": 15, + "3011670": 15, + "3011730": 15, + "3011790": 15, + "3011820": 15, + "3011850": 15, + "3011880": 15, + "3011910": 5, + "3011990": 15, + "3012060": 15, + "3012180": 5, + "3012210": 15, + "3012270": 12, + "3012300": 15, + "3012350": 15, + "3012420": 15, + "3012510": 15, + "3012570": 15, + "3012600": 15, + "3012840": 15, + "3012900": 15, + "3012960": 15, + "3012990": 15, + "3013040": 15, + "3013050": 15, + "3013110": 15, + "3013140": 15, + "3013200": 15, + "3013260": 15, + "3013280": 15, + "3013310": 15, + "3013340": 15, + "3013360": 15, + "3013395": 15, + "3013400": 15, + "3013440": 11, + "3013470": 15, + "3013530": 15, + "3013560": 15, + "3013590": 15, + "3013660": 15, + "3013800": 15, + "3013830": 15, + "3013860": 15, + "3013890": 15, + "3014040": 5, + "3014070": 15, + "3014150": 15, + "3014340": 15, + "3014370": 15, + "3014430": 15, + "3014610": 5, + "3014640": 15, + "3014700": 15, + "3014760": 15, + "3014820": 15, + "3015060": 15, + "3015120": 15, + "3015200": 15, + "3015260": 15, + "3015340": 15, + "3015360": 15, + "3015390": 15, + "3015420": 15, + "3015450": 15, + "3015510": 15, + "3015570": 15, + "3015610": 15, + "3015640": 15, + "3015690": 15, + "3015900": 15, + "3015930": 15, + "3015990": 15, + "3016020": 15, + "3016050": 15, + "3016110": 15, + "3016140": 3, + "3016200": 15, + "3016230": 15, + "3016290": 15, + "3016360": 7, + "3016490": 15, + "3016530": 15, + "3016710": 15, + "3016770": 15, + "3016810": 15, + "3016880": 15, + "3016950": 14, + "3017010": 15, + "3017040": 15, + "3017130": 15, + "3017190": 15, + "3017340": 15, + "3017370": 15, + "3017460": 15, + "3017520": 15, + "3017580": 15, + "3017610": 15, + "3017640": 15, + "3017700": 15, + "3018060": 15, + "3018170": 15, + "3018210": 15, + "3018240": 15, + "3018270": 15, + "3018290": 15, + "3018410": 15, + "3018540": 15, + "3018570": 15, + "3018660": 15, + "3018750": 15, + "3018780": 15, + "3018870": 15, + "3018900": 15, + "3018960": 15, + "3019170": 15, + "3019310": 15, + "3019500": 15, + "3019530": 15, + "3019740": 15, + "3019770": 3, + "3019950": 15, + "3019980": 9, + "3020040": 15, + "3020070": 15, + "3020100": 15, + "3020170": 15, + "3020220": 3, + "3020240": 15, + "3020670": 15, + "3020690": 15, + "3020790": 15, + "3020820": 9, + "3020850": 15, + "3020880": 15, + "3020960": 15, + "3021000": 15, + "3021030": 15, + "3021060": 15, + "3021090": 15, + "3021150": 15, + "3021240": 15, + "3021270": 15, + "3021330": 15, + "3021450": 15, + "3021480": 15, + "3021510": 15, + "3021540": 15, + "3021720": 15, + "3021850": 15, + "3021870": 15, + "3021900": 15, + "3021960": 15, + "3022020": 3, + "3022080": 15, + "3022110": 15, + "3022230": 15, + "3022260": 15, + "3022290": 15, + "3022370": 15, + "3022410": 15, + "3022650": 3, + "3022710": 15, + "3022750": 15, + "3022790": 15, + "3022800": 15, + "3022890": 3, + "3022920": 15, + "3023040": 15, + "3023070": 15, + "3023160": 15, + "3023340": 15, + "3023370": 15, + "3023400": 15, + "3023520": 15, + "3023550": 15, + "3023670": 15, + "3023730": 15, + "3023850": 9, + "3023900": 15, + "3023910": 15, + "3023940": 15, + "3023970": 15, + "3024150": 15, + "3024180": 15, + "3024200": 15, + "3024230": 15, + "3024300": 15, + "3024330": 15, + "3024690": 15, + "3024780": 10, + "3024810": 15, + "3024930": 15, + "3024990": 15, + "3025020": 15, + "3025050": 15, + "3025130": 15, + "3025140": 15, + "3025320": 15, + "3025380": 15, + "3025470": 15, + "3025500": 15, + "3025530": 15, + "3025560": 15, + "3025800": 3, + "3025890": 15, + "3025950": 15, + "3026070": 15, + "3026100": 15, + "3026160": 15, + "3026190": 15, + "3026400": 15, + "3026460": 15, + "3026490": 15, + "3026520": 15, + "3026550": 15, + "3026580": 15, + "3026640": 15, + "3026670": 15, + "3026730": 15, + "3026760": 3, + "3026880": 15, + "3027060": 15, + "3027090": 15, + "3027150": 15, + "3027180": 3, + "3027270": 15, + "3027340": 15, + "3027480": 7, + "3027570": 15, + "3027630": 15, + "3027730": 15, + "3027740": 15, + "3027790": 15, + "3027810": 15, + "3027840": 15, + "3027930": 15, + "3027960": 7, + "3028020": 15, + "3028140": 15, + "3028170": 15, + "3028380": 15, + "3028470": 15, + "3028500": 15, + "3028550": 15, + "3028590": 15, + "3028620": 15, + "3028650": 15, + "3028750": 7, + "3028770": 15, + "3028800": 15, + "3028830": 15, + "3028860": 15, + "3028910": 15, + "3028911": 15, + "3100002": 15, + "3100003": 15, + "3100004": 15, + "3100005": 3, + "3100006": 15, + "3100008": 15, + "3100010": 15, + "3100011": 15, + "3100012": 15, + "3100015": 15, + "3100016": 15, + "3100018": 15, + "3100020": 12, + "3100021": 15, + "3100022": 15, + "3100023": 15, + "3100024": 15, + "3100025": 15, + "3100029": 15, + "3100034": 15, + "3100040": 3, + "3100041": 15, + "3100065": 15, + "3100066": 15, + "3100067": 15, + "3100068": 9, + "3100070": 15, + "3100071": 15, + "3100072": 15, + "3100073": 15, + "3100076": 15, + "3100077": 15, + "3100080": 15, + "3100082": 15, + "3100085": 15, + "3100088": 15, + "3100089": 15, + "3100090": 15, + "3100091": 15, + "3100095": 15, + "3100096": 15, + "3100097": 15, + "3100098": 15, + "3100099": 15, + "3100105": 15, + "3100109": 15, + "3100110": 15, + "3100111": 15, + "3100112": 15, + "3100114": 15, + "3100115": 15, + "3100116": 15, + "3100117": 15, + "3100118": 15, + "3100119": 12, + "3100120": 15, + "3100121": 15, + "3100122": 15, + "3100123": 15, + "3100124": 15, + "3100125": 15, + "3100129": 15, + "3100130": 15, + "3100132": 15, + "3100133": 15, + "3100134": 15, + "3100140": 15, + "3100141": 15, + "3100148": 9, + "3100157": 15, + "3100163": 10, + "3100165": 15, + "3100170": 15, + "3100172": 15, + "3100176": 15, + "3100178": 15, + "3100179": 15, + "3100180": 9, + "3100183": 12, + "3100184": 6, + "3100185": 6, + "3100187": 6, + "3100189": 3, + "3101992": 15, + "3102770": 15, + "3102790": 15, + "3102820": 15, + "3102880": 15, + "3102910": 15, + "3103060": 15, + "3103090": 15, + "3103120": 15, + "3103130": 15, + "3103210": 15, + "3103330": 15, + "3103360": 15, + "3103420": 15, + "3103440": 15, + "3103540": 15, + "3103600": 15, + "3103740": 1, + "3103810": 15, + "3103990": 15, + "3104020": 15, + "3104100": 15, + "3104140": 15, + "3104200": 15, + "3104290": 15, + "3104640": 15, + "3104870": 15, + "3104920": 15, + "3104950": 15, + "3104980": 15, + "3105010": 15, + "3105070": 5, + "3105160": 15, + "3105220": 9, + "3105280": 15, + "3105310": 10, + "3105340": 15, + "3105460": 15, + "3105520": 15, + "3105550": 15, + "3105630": 15, + "3105910": 15, + "3105970": 15, + "3109120": 15, + "3119560": 15, + "3162950": 15, + "3169780": 3, + "3169840": 15, + "3170020": 15, + "3170050": 15, + "3170110": 15, + "3170140": 15, + "3170220": 15, + "3170440": 15, + "3170530": 15, + "3170650": 15, + "3170710": 15, + "3170800": 15, + "3170980": 15, + "3171010": 15, + "3171100": 15, + "3171220": 15, + "3171370": 15, + "3171520": 15, + "3171550": 15, + "3171580": 15, + "3171610": 15, + "3171730": 15, + "3171820": 15, + "3171940": 15, + "3172000": 15, + "3172150": 15, + "3172210": 15, + "3172335": 15, + "3172390": 15, + "3172420": 15, + "3172480": 15, + "3172570": 15, + "3172720": 15, + "3172780": 15, + "3172810": 15, + "3172840": 15, + "3172910": 15, + "3172990": 15, + "3173050": 15, + "3173090": 15, + "3173120": 15, + "3173170": 9, + "3173210": 15, + "3173230": 15, + "3173290": 15, + "3173440": 15, + "3173470": 15, + "3173500": 15, + "3173560": 15, + "3173590": 15, + "3173600": 15, + "3173660": 15, + "3173710": 15, + "3173740": 15, + "3173800": 15, + "3173830": 15, + "3173890": 15, + "3174040": 15, + "3174160": 15, + "3174200": 15, + "3174220": 15, + "3174310": 9, + "3174340": 15, + "3174370": 15, + "3174400": 9, + "3174430": 15, + "3174580": 15, + "3174640": 15, + "3174760": 15, + "3174820": 15, + "3174850": 15, + "3174940": 15, + "3175000": 15, + "3175030": 15, + "3175060": 15, + "3175210": 15, + "3175270": 15, + "3175330": 15, + "3175360": 15, + "3175390": 15, + "3175510": 15, + "3175570": 15, + "3175630": 15, + "3175660": 15, + "3175690": 15, + "3175770": 15, + "3175810": 15, + "3175900": 15, + "3175930": 15, + "3175960": 15, + "3175990": 15, + "3176080": 3, + "3176170": 15, + "3176380": 15, + "3176400": 15, + "3176410": 15, + "3176450": 15, + "3176470": 15, + "3176560": 15, + "3176590": 15, + "3176620": 15, + "3176650": 15, + "3176710": 15, + "3176800": 15, + "3176860": 15, + "3176890": 9, + "3176980": 15, + "3177100": 15, + "3177160": 1, + "3177180": 15, + "3177190": 15, + "3177340": 15, + "3177520": 15, + "3177550": 15, + "3177730": 15, + "3178020": 15, + "3178120": 3, + "3178210": 15, + "3178240": 15, + "3178260": 15, + "3178300": 15, + "3178450": 15, + "3178520": 15, + "3178540": 15, + "3178660": 15, + "3178670": 15, + "3178720": 15, + "3178810": 15, + "3178840": 15, + "3178940": 15, + "3178990": 15, + "3179050": 15, + "3179080": 15, + "3199997": 8, + "3199998": 2, + "3200030": 15, + "3200060": 15, + "3200090": 15, + "3200120": 15, + "3200150": 15, + "3200180": 15, + "3200210": 15, + "3200240": 15, + "3200270": 15, + "3200300": 15, + "3200330": 15, + "3200360": 15, + "3200390": 15, + "3200420": 15, + "3200450": 15, + "3200480": 15, + "3200510": 15, + "3300003": 15, + "3300017": 15, + "3300035": 15, + "3300049": 15, + "3300616": 15, + "3301350": 15, + "3301380": 15, + "3301440": 15, + "3301470": 15, + "3301500": 15, + "3301560": 15, + "3301590": 15, + "3301620": 15, + "3301650": 15, + "3301680": 15, + "3301710": 15, + "3301740": 15, + "3301830": 15, + "3301860": 15, + "3301890": 15, + "3301950": 15, + "3302010": 15, + "3302070": 15, + "3302100": 15, + "3302130": 15, + "3302200": 15, + "3302250": 15, + "3302280": 15, + "3302310": 15, + "3302340": 15, + "3302370": 15, + "3302400": 15, + "3302430": 15, + "3302460": 15, + "3302480": 15, + "3302490": 15, + "3302510": 15, + "3302520": 15, + "3302550": 15, + "3302580": 15, + "3302610": 15, + "3302640": 15, + "3302670": 15, + "3302730": 15, + "3302760": 15, + "3302790": 15, + "3302850": 15, + "3302870": 15, + "3302880": 15, + "3302910": 15, + "3302940": 15, + "3302970": 15, + "3302990": 15, + "3303000": 15, + "3303090": 15, + "3303120": 15, + "3303150": 15, + "3303180": 15, + "3303210": 15, + "3303240": 15, + "3303275": 14, + "3303276": 14, + "3303279": 6, + "3303293": 10, + "3303300": 7, + "3303303": 8, + "3303304": 8, + "3303330": 15, + "3303360": 15, + "3303420": 15, + "3303480": 15, + "3303510": 15, + "3303540": 15, + "3303600": 15, + "3303630": 15, + "3303640": 15, + "3303660": 15, + "3303690": 15, + "3303720": 15, + "3303750": 15, + "3303780": 15, + "3303810": 15, + "3303840": 15, + "3303850": 15, + "3303870": 15, + "3303900": 15, + "3303930": 15, + "3303960": 15, + "3303990": 15, + "3304030": 15, + "3304040": 15, + "3304050": 15, + "3304080": 15, + "3304140": 15, + "3304150": 15, + "3304170": 15, + "3304230": 15, + "3304260": 15, + "3304290": 15, + "3304350": 15, + "3304380": 15, + "3304410": 15, + "3304500": 15, + "3304530": 3, + "3304560": 15, + "3304590": 15, + "3304620": 15, + "3304650": 15, + "3304670": 15, + "3304680": 15, + "3304740": 15, + "3304760": 15, + "3304770": 15, + "3304800": 15, + "3304830": 15, + "3304890": 15, + "3304920": 15, + "3304950": 15, + "3304960": 15, + "3304980": 15, + "3305010": 15, + "3305040": 15, + "3305070": 15, + "3305190": 15, + "3305220": 15, + "3305250": 15, + "3305280": 15, + "3305310": 15, + "3305370": 15, + "3305400": 15, + "3305430": 15, + "3305460": 15, + "3305520": 15, + "3305550": 15, + "3305580": 15, + "3305670": 15, + "3305700": 15, + "3305730": 15, + "3305760": 15, + "3305790": 15, + "3305820": 15, + "3305830": 15, + "3305880": 15, + "3305940": 15, + "3305970": 15, + "3306000": 15, + "3306030": 15, + "3306060": 15, + "3306080": 15, + "3306150": 15, + "3306180": 15, + "3306240": 15, + "3306260": 15, + "3306270": 15, + "3306330": 15, + "3306360": 15, + "3306390": 15, + "3306420": 15, + "3306450": 15, + "3306480": 15, + "3306540": 15, + "3306600": 15, + "3306660": 15, + "3306720": 15, + "3306750": 15, + "3306780": 15, + "3306870": 15, + "3306900": 15, + "3306910": 15, + "3306930": 15, + "3306990": 15, + "3307020": 15, + "3307050": 15, + "3307110": 3, + "3307115": 15, + "3307140": 15, + "3307170": 15, + "3307200": 15, + "3307230": 15, + "3307300": 15, + "3333009": 15, + "3399965": 15, + "3399997": 6, + "3399998": 3, + "3400004": 15, + "3400008": 15, + "3400009": 15, + "3400660": 15, + "3400690": 15, + "3400720": 15, + "3400750": 15, + "3400769": 8, + "3400780": 15, + "3400790": 6, + "3400810": 15, + "3400840": 15, + "3400870": 15, + "3400900": 15, + "3400930": 15, + "3400960": 15, + "3401020": 15, + "3401050": 15, + "3401080": 1, + "3401110": 15, + "3401140": 15, + "3401170": 15, + "3401200": 15, + "3401230": 15, + "3401260": 15, + "3401290": 15, + "3401320": 15, + "3401350": 15, + "3401380": 15, + "3401410": 15, + "3401440": 15, + "3401500": 15, + "3401530": 15, + "3401560": 15, + "3401590": 15, + "3401620": 15, + "3401650": 15, + "3401710": 15, + "3401740": 15, + "3401770": 15, + "3401800": 15, + "3401830": 15, + "3401860": 15, + "3401890": 15, + "3401920": 15, + "3401950": 15, + "3401980": 15, + "3402030": 15, + "3402100": 15, + "3402130": 15, + "3402160": 15, + "3402190": 1, + "3402220": 15, + "3402250": 15, + "3402280": 15, + "3402310": 15, + "3402340": 15, + "3402370": 15, + "3402400": 15, + "3402430": 15, + "3402460": 15, + "3402520": 15, + "3402550": 15, + "3402580": 15, + "3402610": 15, + "3402640": 15, + "3402700": 15, + "3402760": 15, + "3402790": 15, + "3402800": 15, + "3402820": 15, + "3402850": 15, + "3402880": 15, + "3402910": 15, + "3403000": 15, + "3403030": 15, + "3403060": 15, + "3403090": 15, + "3403120": 15, + "3403150": 15, + "3403180": 15, + "3403210": 15, + "3403240": 15, + "3403270": 15, + "3403300": 15, + "3403330": 15, + "3403360": 15, + "3403390": 15, + "3403420": 15, + "3403450": 15, + "3403480": 15, + "3403510": 15, + "3403540": 15, + "3403570": 15, + "3403600": 15, + "3403620": 15, + "3403630": 15, + "3403660": 15, + "3403690": 15, + "3403720": 15, + "3403750": 15, + "3403780": 15, + "3403810": 15, + "3403840": 15, + "3403870": 15, + "3403900": 15, + "3403930": 15, + "3403960": 15, + "3403990": 15, + "3404020": 15, + "3404050": 15, + "3404080": 15, + "3404110": 15, + "3404140": 15, + "3404170": 15, + "3404200": 15, + "3404230": 15, + "3404290": 15, + "3404320": 15, + "3404350": 15, + "3404380": 15, + "3404410": 15, + "3404440": 15, + "3404470": 15, + "3404500": 15, + "3404530": 15, + "3404560": 15, + "3404590": 15, + "3404620": 15, + "3404650": 9, + "3404660": 15, + "3404680": 15, + "3404710": 15, + "3404740": 15, + "3404770": 15, + "3404830": 15, + "3404860": 15, + "3404890": 15, + "3404920": 15, + "3404950": 15, + "3404980": 15, + "3405010": 15, + "3405040": 15, + "3405070": 15, + "3405130": 15, + "3405190": 15, + "3405220": 15, + "3405250": 15, + "3405280": 15, + "3405310": 15, + "3405340": 15, + "3405370": 15, + "3405400": 15, + "3405430": 15, + "3405460": 15, + "3405490": 15, + "3405520": 15, + "3405550": 15, + "3405580": 15, + "3405610": 15, + "3405640": 15, + "3405670": 15, + "3405700": 15, + "3405730": 15, + "3405760": 15, + "3405790": 15, + "3405820": 15, + "3405850": 15, + "3405880": 15, + "3405910": 1, + "3405940": 15, + "3405970": 15, + "3406000": 15, + "3406030": 15, + "3406060": 15, + "3406090": 15, + "3406120": 15, + "3406150": 15, + "3406180": 15, + "3406210": 15, + "3406240": 15, + "3406270": 15, + "3406300": 15, + "3406330": 15, + "3406360": 15, + "3406390": 15, + "3406420": 15, + "3406450": 15, + "3406480": 15, + "3406510": 15, + "3406540": 15, + "3406570": 15, + "3406600": 15, + "3406630": 15, + "3406660": 15, + "3406690": 15, + "3406720": 15, + "3406750": 1, + "3406780": 15, + "3406810": 15, + "3406840": 15, + "3406870": 15, + "3406900": 15, + "3406930": 15, + "3406960": 15, + "3406990": 15, + "3407020": 1, + "3407050": 15, + "3407080": 15, + "3407110": 15, + "3407140": 15, + "3407170": 15, + "3407200": 15, + "3407230": 15, + "3407260": 15, + "3407290": 15, + "3407320": 15, + "3407350": 15, + "3407380": 15, + "3407410": 15, + "3407440": 15, + "3407470": 15, + "3407500": 15, + "3407530": 15, + "3407560": 15, + "3407590": 15, + "3407650": 15, + "3407680": 15, + "3407710": 15, + "3407740": 15, + "3407770": 15, + "3407800": 15, + "3407830": 15, + "3407860": 15, + "3407890": 15, + "3407920": 15, + "3407950": 15, + "3407980": 15, + "3408010": 15, + "3408040": 15, + "3408060": 15, + "3408070": 15, + "3408100": 15, + "3408130": 15, + "3408160": 15, + "3408190": 15, + "3408220": 15, + "3408250": 7, + "3408280": 15, + "3408310": 15, + "3408340": 15, + "3408370": 15, + "3408400": 15, + "3408430": 15, + "3408460": 15, + "3408490": 15, + "3408500": 15, + "3408520": 15, + "3408580": 15, + "3408610": 15, + "3408640": 15, + "3408670": 15, + "3408671": 15, + "3408700": 15, + "3408730": 15, + "3408760": 15, + "3408790": 15, + "3408820": 15, + "3408850": 15, + "3408880": 15, + "3408910": 15, + "3408940": 15, + "3409000": 15, + "3409030": 15, + "3409090": 15, + "3409120": 15, + "3409150": 15, + "3409180": 15, + "3409210": 15, + "3409240": 15, + "3409270": 15, + "3409300": 15, + "3409330": 15, + "3409360": 15, + "3409390": 15, + "3409420": 15, + "3409450": 15, + "3409480": 15, + "3409510": 15, + "3409540": 15, + "3409550": 15, + "3409570": 1, + "3409600": 15, + "3409630": 15, + "3409660": 15, + "3409690": 15, + "3409720": 15, + "3409750": 15, + "3409780": 15, + "3409810": 15, + "3409840": 15, + "3409870": 15, + "3409900": 15, + "3409930": 15, + "3409960": 15, + "3409990": 15, + "3410020": 15, + "3410050": 15, + "3410110": 15, + "3410140": 15, + "3410170": 15, + "3410200": 15, + "3410230": 15, + "3410260": 1, + "3410290": 15, + "3410320": 15, + "3410350": 15, + "3410380": 15, + "3410440": 15, + "3410470": 15, + "3410500": 15, + "3410530": 15, + "3410560": 15, + "3410590": 15, + "3410620": 15, + "3410650": 15, + "3410680": 15, + "3410710": 15, + "3410740": 15, + "3410770": 15, + "3410810": 15, + "3410860": 15, + "3410890": 15, + "3410920": 15, + "3410950": 15, + "3410980": 15, + "3411010": 15, + "3411040": 15, + "3411070": 15, + "3411100": 15, + "3411130": 15, + "3411160": 15, + "3411190": 15, + "3411220": 15, + "3411250": 15, + "3411280": 15, + "3411310": 15, + "3411340": 15, + "3411370": 15, + "3411400": 15, + "3411430": 15, + "3411460": 15, + "3411490": 15, + "3411520": 15, + "3411550": 15, + "3411580": 15, + "3411610": 15, + "3411640": 15, + "3411670": 15, + "3411700": 15, + "3411730": 15, + "3411760": 15, + "3411790": 15, + "3411820": 15, + "3411850": 15, + "3411880": 15, + "3411910": 15, + "3411940": 15, + "3411970": 15, + "3412030": 15, + "3412060": 15, + "3412090": 15, + "3412120": 15, + "3412150": 15, + "3412180": 15, + "3412210": 15, + "3412240": 15, + "3412260": 15, + "3412270": 15, + "3412300": 15, + "3412360": 15, + "3412390": 15, + "3412420": 15, + "3412450": 15, + "3412480": 15, + "3412510": 15, + "3412540": 15, + "3412570": 15, + "3412600": 15, + "3412660": 15, + "3412690": 15, + "3412720": 15, + "3412780": 1, + "3412810": 15, + "3412840": 15, + "3412870": 15, + "3412900": 15, + "3412930": 15, + "3412960": 15, + "3412990": 15, + "3413000": 15, + "3413020": 13, + "3413050": 15, + "3413080": 15, + "3413110": 15, + "3413140": 15, + "3413200": 15, + "3413230": 15, + "3413260": 15, + "3413290": 15, + "3413320": 15, + "3413350": 15, + "3413380": 15, + "3413410": 15, + "3413470": 15, + "3413500": 15, + "3413530": 15, + "3413560": 15, + "3413590": 15, + "3413620": 15, + "3413650": 15, + "3413680": 15, + "3413710": 15, + "3413740": 15, + "3413750": 15, + "3413770": 15, + "3413800": 15, + "3413830": 15, + "3413860": 15, + "3413890": 15, + "3413950": 15, + "3413980": 15, + "3414010": 15, + "3414040": 15, + "3414070": 15, + "3414100": 15, + "3414130": 15, + "3414160": 15, + "3414190": 1, + "3414220": 15, + "3414250": 15, + "3414280": 15, + "3414310": 15, + "3414340": 15, + "3414370": 15, + "3414400": 15, + "3414430": 15, + "3414460": 15, + "3414490": 15, + "3414520": 15, + "3414550": 15, + "3414610": 15, + "3414640": 15, + "3414670": 15, + "3414700": 1, + "3414730": 15, + "3414760": 15, + "3414790": 15, + "3414820": 15, + "3414850": 15, + "3414880": 15, + "3414910": 1, + "3414940": 15, + "3414970": 15, + "3415000": 15, + "3415030": 15, + "3415090": 15, + "3415120": 15, + "3415150": 15, + "3415180": 15, + "3415210": 15, + "3415240": 15, + "3415270": 15, + "3415300": 7, + "3415330": 15, + "3415360": 15, + "3415390": 15, + "3415420": 15, + "3415450": 15, + "3415480": 15, + "3415510": 15, + "3415540": 15, + "3415570": 15, + "3415600": 15, + "3415630": 15, + "3415660": 15, + "3415690": 15, + "3415720": 15, + "3415750": 15, + "3415780": 7, + "3415810": 15, + "3415840": 15, + "3415870": 15, + "3415900": 15, + "3415960": 15, + "3415990": 15, + "3416020": 15, + "3416050": 1, + "3416080": 15, + "3416110": 15, + "3416140": 5, + "3416170": 15, + "3416200": 15, + "3416230": 15, + "3416260": 15, + "3416290": 15, + "3416320": 15, + "3416350": 15, + "3416380": 15, + "3416440": 15, + "3416470": 15, + "3416500": 15, + "3416530": 15, + "3416560": 15, + "3416590": 15, + "3416620": 15, + "3416650": 15, + "3416680": 15, + "3416710": 15, + "3416740": 15, + "3416770": 1, + "3416800": 15, + "3416830": 15, + "3416860": 15, + "3416870": 15, + "3416890": 15, + "3416920": 15, + "3416950": 15, + "3416970": 15, + "3416980": 15, + "3417010": 15, + "3417040": 15, + "3417070": 15, + "3417100": 15, + "3417130": 15, + "3417160": 15, + "3417190": 15, + "3417220": 15, + "3417250": 15, + "3417280": 15, + "3417310": 15, + "3417340": 15, + "3417370": 7, + "3417400": 15, + "3417430": 15, + "3417460": 15, + "3417490": 15, + "3417520": 15, + "3417550": 15, + "3417580": 15, + "3417610": 15, + "3417640": 15, + "3417670": 15, + "3417700": 15, + "3417730": 15, + "3417760": 15, + "3417790": 15, + "3417820": 15, + "3417850": 15, + "3417880": 15, + "3417910": 15, + "3417940": 15, + "3417970": 15, + "3418000": 15, + "3418030": 15, + "3418060": 15, + "3418090": 15, + "3418120": 15, + "3418150": 15, + "3418180": 15, + "3418210": 15, + "3418240": 15, + "3418270": 15, + "3418300": 15, + "3418330": 15, + "3418360": 15, + "3434001": 8, + "3499997": 3, + "3499998": 3, + "3500001": 15, + "3500010": 15, + "3500030": 15, + "3500060": 15, + "3500090": 15, + "3500120": 15, + "3500150": 15, + "3500180": 15, + "3500210": 15, + "3500240": 15, + "3500270": 15, + "3500300": 15, + "3500330": 15, + "3500390": 15, + "3500420": 15, + "3500480": 15, + "3500510": 15, + "3500540": 15, + "3500570": 15, + "3500600": 15, + "3500630": 15, + "3500660": 15, + "3500690": 15, + "3500720": 15, + "3500750": 15, + "3500790": 15, + "3500810": 15, + "3500840": 15, + "3500900": 15, + "3500930": 15, + "3500960": 15, + "3500990": 15, + "3501020": 15, + "3501050": 15, + "3501080": 15, + "3501110": 15, + "3501140": 15, + "3501170": 15, + "3501200": 15, + "3501230": 15, + "3501260": 15, + "3501290": 15, + "3501320": 15, + "3501350": 15, + "3501380": 15, + "3501410": 15, + "3501470": 15, + "3501500": 15, + "3501530": 15, + "3501560": 15, + "3501590": 15, + "3501620": 15, + "3501650": 15, + "3501680": 15, + "3501710": 15, + "3501740": 15, + "3501770": 15, + "3501800": 15, + "3501830": 15, + "3501860": 15, + "3501890": 15, + "3501920": 15, + "3501950": 15, + "3501980": 15, + "3502010": 15, + "3502040": 15, + "3502070": 15, + "3502100": 15, + "3502130": 15, + "3502160": 15, + "3502190": 15, + "3502220": 15, + "3502250": 15, + "3502280": 15, + "3502310": 15, + "3502340": 15, + "3502370": 15, + "3502400": 15, + "3502430": 15, + "3502460": 15, + "3502490": 15, + "3502520": 15, + "3502550": 15, + "3502580": 15, + "3502610": 15, + "3502640": 15, + "3502670": 15, + "3502730": 15, + "3502800": 15, + "3600001": 15, + "3600002": 15, + "3600003": 15, + "3600004": 15, + "3600005": 15, + "3600006": 15, + "3600007": 15, + "3600008": 15, + "3600009": 15, + "3600010": 15, + "3600011": 15, + "3600012": 15, + "3600013": 15, + "3600014": 15, + "3600015": 15, + "3600016": 15, + "3600017": 15, + "3600018": 15, + "3600019": 15, + "3600020": 15, + "3600021": 15, + "3600023": 15, + "3600024": 1, + "3600124": 15, + "3600125": 15, + "3600971": 13, + "3601087": 10, + "3601107": 10, + "3601189": 4, + "3602310": 15, + "3602340": 15, + "3602370": 15, + "3602400": 15, + "3602430": 15, + "3602460": 15, + "3602520": 15, + "3602550": 15, + "3602580": 15, + "3602670": 15, + "3602700": 15, + "3602730": 15, + "3602820": 15, + "3602880": 15, + "3602920": 15, + "3602940": 15, + "3602970": 15, + "3603000": 15, + "3603030": 15, + "3603060": 15, + "3603180": 15, + "3603210": 15, + "3603240": 15, + "3603270": 15, + "3603420": 15, + "3603480": 15, + "3603630": 15, + "3603660": 15, + "3603720": 15, + "3603810": 15, + "3603840": 15, + "3603870": 15, + "3603930": 15, + "3603960": 15, + "3603990": 15, + "3604050": 15, + "3604080": 15, + "3604110": 15, + "3604140": 15, + "3604200": 15, + "3604290": 15, + "3604350": 15, + "3604370": 15, + "3604410": 15, + "3604530": 15, + "3604620": 15, + "3604650": 15, + "3604710": 15, + "3604740": 15, + "3604757": 15, + "3604758": 15, + "3604800": 14, + "3604870": 15, + "3604920": 15, + "3605010": 15, + "3605040": 15, + "3605220": 15, + "3605280": 15, + "3605310": 15, + "3605340": 15, + "3605370": 15, + "3605460": 15, + "3605520": 15, + "3605580": 15, + "3605610": 15, + "3605640": 15, + "3605670": 15, + "3605820": 15, + "3605850": 15, + "3605940": 15, + "3606060": 15, + "3606090": 15, + "3606160": 15, + "3606180": 15, + "3606210": 15, + "3606240": 15, + "3606300": 15, + "3606330": 15, + "3606360": 15, + "3606390": 15, + "3606420": 15, + "3606470": 15, + "3606500": 15, + "3606540": 15, + "3606570": 15, + "3606630": 15, + "3606660": 15, + "3606690": 15, + "3606720": 15, + "3606750": 14, + "3606780": 15, + "3606840": 15, + "3606870": 15, + "3606900": 15, + "3606990": 15, + "3607020": 15, + "3607050": 15, + "3607080": 15, + "3607110": 15, + "3607170": 15, + "3607230": 15, + "3607260": 15, + "3607290": 15, + "3607320": 15, + "3607380": 15, + "3607470": 15, + "3607530": 15, + "3607560": 15, + "3607590": 15, + "3607650": 15, + "3607680": 15, + "3607710": 15, + "3607770": 15, + "3607860": 15, + "3607890": 15, + "3607980": 15, + "3608010": 15, + "3608100": 15, + "3608130": 15, + "3608160": 15, + "3608250": 15, + "3608280": 15, + "3608310": 15, + "3608340": 15, + "3608370": 15, + "3608400": 15, + "3608430": 15, + "3608460": 15, + "3608490": 15, + "3608580": 15, + "3608610": 15, + "3608790": 15, + "3608850": 15, + "3608880": 15, + "3608910": 15, + "3608970": 15, + "3609030": 15, + "3609060": 15, + "3609090": 15, + "3609120": 15, + "3609210": 15, + "3609240": 15, + "3609330": 15, + "3609360": 15, + "3609390": 15, + "3609420": 15, + "3609540": 15, + "3609630": 15, + "3609660": 15, + "3609690": 15, + "3609720": 15, + "3609840": 15, + "3609870": 15, + "3609900": 15, + "3609930": 15, + "3609960": 15, + "3609990": 15, + "3610050": 15, + "3610080": 15, + "3610170": 15, + "3610200": 15, + "3610230": 15, + "3610260": 15, + "3610380": 15, + "3610410": 15, + "3610440": 11, + "3610500": 15, + "3610530": 15, + "3610560": 15, + "3610590": 15, + "3610620": 15, + "3610650": 15, + "3610680": 15, + "3610710": 15, + "3610860": 15, + "3610890": 15, + "3610920": 15, + "3610950": 15, + "3610980": 15, + "3611070": 15, + "3611100": 15, + "3611160": 15, + "3611190": 15, + "3611250": 15, + "3611280": 15, + "3611310": 15, + "3611370": 15, + "3611400": 15, + "3611430": 15, + "3611460": 15, + "3611490": 15, + "3611520": 15, + "3611550": 15, + "3611610": 15, + "3611640": 15, + "3611670": 15, + "3611700": 15, + "3611730": 15, + "3611740": 15, + "3611760": 15, + "3611860": 15, + "3611880": 15, + "3611910": 15, + "3611940": 15, + "3611970": 15, + "3612030": 15, + "3612120": 15, + "3612180": 15, + "3612240": 15, + "3612270": 15, + "3612300": 15, + "3612330": 15, + "3612360": 15, + "3612390": 15, + "3612450": 15, + "3612510": 15, + "3612630": 15, + "3612660": 15, + "3612720": 15, + "3612750": 15, + "3612840": 15, + "3612870": 15, + "3612900": 15, + "3612960": 15, + "3612990": 15, + "3613020": 15, + "3613080": 15, + "3613110": 15, + "3613230": 15, + "3613290": 15, + "3613350": 15, + "3613380": 15, + "3613440": 15, + "3613470": 15, + "3613530": 15, + "3613560": 15, + "3613590": 15, + "3613620": 15, + "3613710": 15, + "3613740": 15, + "3613770": 15, + "3613830": 15, + "3613950": 15, + "3613980": 15, + "3614010": 15, + "3614130": 15, + "3614190": 15, + "3614220": 15, + "3614250": 15, + "3614280": 15, + "3614310": 15, + "3614340": 15, + "3614400": 15, + "3614430": 15, + "3614460": 15, + "3614490": 15, + "3614550": 15, + "3614580": 15, + "3614610": 15, + "3614640": 15, + "3614670": 15, + "3614700": 15, + "3614730": 15, + "3614760": 15, + "3614820": 15, + "3614850": 15, + "3614880": 15, + "3614940": 15, + "3614970": 15, + "3615060": 15, + "3615090": 15, + "3615180": 15, + "3615210": 15, + "3615240": 5, + "3615270": 15, + "3615300": 15, + "3615330": 15, + "3615360": 15, + "3615390": 15, + "3615450": 15, + "3615480": 15, + "3615510": 15, + "3615540": 15, + "3615570": 15, + "3615630": 15, + "3615720": 15, + "3615780": 15, + "3615810": 15, + "3615870": 15, + "3615900": 15, + "3615980": 15, + "3615990": 15, + "3616080": 15, + "3616140": 15, + "3616170": 15, + "3616200": 15, + "3616230": 15, + "3616260": 15, + "3616290": 15, + "3616380": 15, + "3616410": 15, + "3616440": 15, + "3616470": 15, + "3616500": 15, + "3616530": 15, + "3616560": 15, + "3616620": 15, + "3616680": 15, + "3616710": 15, + "3616740": 15, + "3616800": 15, + "3616830": 15, + "3616950": 15, + "3616960": 15, + "3616980": 15, + "3617130": 15, + "3617160": 15, + "3617190": 15, + "3617220": 15, + "3617380": 15, + "3617430": 15, + "3617460": 15, + "3617520": 15, + "3617580": 15, + "3617640": 15, + "3617670": 15, + "3617700": 15, + "3617730": 15, + "3617760": 15, + "3617820": 15, + "3617880": 15, + "3617910": 15, + "3617940": 15, + "3617970": 15, + "3618030": 15, + "3618080": 15, + "3618090": 15, + "3618120": 15, + "3618150": 15, + "3618180": 15, + "3618210": 15, + "3618240": 15, + "3618270": 15, + "3618330": 15, + "3618420": 1, + "3618450": 15, + "3618480": 15, + "3618510": 15, + "3618540": 15, + "3618570": 15, + "3618600": 15, + "3618630": 15, + "3618660": 15, + "3618690": 15, + "3618750": 15, + "3618840": 15, + "3618900": 15, + "3618960": 15, + "3618990": 15, + "3619020": 15, + "3619110": 15, + "3619170": 15, + "3619200": 15, + "3619230": 15, + "3619260": 15, + "3619320": 15, + "3619350": 15, + "3619380": 15, + "3619410": 15, + "3619500": 15, + "3619530": 15, + "3619560": 15, + "3619590": 5, + "3619650": 15, + "3619680": 15, + "3619710": 15, + "3619740": 15, + "3619800": 15, + "3619830": 15, + "3619860": 15, + "3619890": 15, + "3619920": 15, + "3619950": 15, + "3620010": 15, + "3620040": 15, + "3620100": 15, + "3620160": 15, + "3620190": 15, + "3620220": 15, + "3620340": 15, + "3620370": 15, + "3620400": 15, + "3620430": 15, + "3620460": 15, + "3620490": 15, + "3620520": 15, + "3620580": 15, + "3620610": 15, + "3620640": 15, + "3620670": 15, + "3620700": 15, + "3620730": 15, + "3620760": 15, + "3620790": 15, + "3620820": 15, + "3620850": 15, + "3620880": 15, + "3620910": 15, + "3620940": 15, + "3620970": 15, + "3621000": 2, + "3621120": 15, + "3621180": 15, + "3621210": 15, + "3621240": 15, + "3621250": 15, + "3621260": 15, + "3621270": 15, + "3621300": 15, + "3621330": 15, + "3621360": 15, + "3621450": 15, + "3621480": 15, + "3621510": 15, + "3621540": 15, + "3621570": 15, + "3621630": 15, + "3621660": 15, + "3621720": 15, + "3621780": 15, + "3621810": 15, + "3621840": 15, + "3621870": 5, + "3621900": 15, + "3621930": 15, + "3621960": 15, + "3622020": 15, + "3622050": 15, + "3622100": 15, + "3622140": 15, + "3622170": 15, + "3622200": 15, + "3622260": 15, + "3622290": 15, + "3622380": 15, + "3622410": 15, + "3622440": 15, + "3622470": 15, + "3622500": 15, + "3622530": 15, + "3622560": 15, + "3622650": 15, + "3622680": 15, + "3622710": 15, + "3622740": 15, + "3622770": 15, + "3622830": 15, + "3622890": 15, + "3622920": 15, + "3623010": 15, + "3623040": 15, + "3623070": 15, + "3623130": 15, + "3623160": 15, + "3623190": 15, + "3623220": 15, + "3623280": 15, + "3623310": 15, + "3623340": 15, + "3623370": 15, + "3623430": 15, + "3623460": 15, + "3623490": 15, + "3623520": 15, + "3623580": 15, + "3623640": 15, + "3623670": 15, + "3623760": 15, + "3623790": 15, + "3623880": 15, + "3623970": 15, + "3624000": 15, + "3624030": 15, + "3624060": 15, + "3624090": 15, + "3624120": 15, + "3624150": 15, + "3624210": 15, + "3624240": 15, + "3624270": 15, + "3624360": 15, + "3624420": 15, + "3624450": 15, + "3624480": 15, + "3624570": 15, + "3624630": 15, + "3624660": 15, + "3624690": 15, + "3624750": 15, + "3624780": 15, + "3624840": 15, + "3624900": 15, + "3624930": 15, + "3624960": 15, + "3624990": 15, + "3625020": 15, + "3625050": 15, + "3625110": 15, + "3625140": 15, + "3625170": 15, + "3625260": 15, + "3625290": 15, + "3625320": 15, + "3625350": 15, + "3625380": 15, + "3625410": 15, + "3625440": 15, + "3625470": 15, + "3625500": 15, + "3625650": 15, + "3625740": 15, + "3625770": 15, + "3625800": 15, + "3625920": 15, + "3625950": 15, + "3625980": 15, + "3626010": 15, + "3626070": 15, + "3626100": 15, + "3626130": 15, + "3626160": 15, + "3626190": 15, + "3626310": 15, + "3626370": 15, + "3626400": 15, + "3626430": 15, + "3626520": 15, + "3626580": 15, + "3626640": 15, + "3626670": 15, + "3626700": 15, + "3626730": 15, + "3626760": 15, + "3626840": 15, + "3626850": 15, + "3626880": 15, + "3626940": 15, + "3627000": 15, + "3627060": 15, + "3627120": 15, + "3627150": 15, + "3627180": 15, + "3627210": 15, + "3627240": 15, + "3627300": 15, + "3627330": 15, + "3627360": 15, + "3627450": 15, + "3627540": 15, + "3627570": 15, + "3627620": 15, + "3627660": 15, + "3627750": 15, + "3627780": 15, + "3627810": 15, + "3627900": 15, + "3627930": 5, + "3627960": 15, + "3627990": 15, + "3628020": 15, + "3628050": 15, + "3628110": 15, + "3628140": 15, + "3628200": 15, + "3628320": 15, + "3628380": 15, + "3628500": 15, + "3628560": 15, + "3628590": 15, + "3628620": 15, + "3628650": 15, + "3628680": 15, + "3628710": 15, + "3628740": 15, + "3628800": 15, + "3628890": 15, + "3628950": 15, + "3628980": 15, + "3629040": 15, + "3629070": 15, + "3629130": 15, + "3629160": 15, + "3629190": 15, + "3629240": 15, + "3629250": 15, + "3629280": 15, + "3629370": 15, + "3629400": 15, + "3629430": 15, + "3629460": 15, + "3629490": 15, + "3629520": 15, + "3629610": 15, + "3629640": 15, + "3629670": 15, + "3629760": 15, + "3629790": 15, + "3629820": 15, + "3629850": 15, + "3629880": 15, + "3629910": 15, + "3629940": 15, + "3629970": 15, + "3630030": 15, + "3630060": 15, + "3630120": 15, + "3630160": 15, + "3630210": 15, + "3630240": 15, + "3630270": 15, + "3630330": 15, + "3630360": 15, + "3630390": 15, + "3630420": 15, + "3630450": 15, + "3630480": 15, + "3630540": 15, + "3630600": 15, + "3630630": 15, + "3630660": 15, + "3630690": 15, + "3630780": 15, + "3630900": 15, + "3630930": 15, + "3630960": 15, + "3630990": 15, + "3631020": 15, + "3631050": 15, + "3631080": 11, + "3631170": 15, + "3631200": 15, + "3631260": 15, + "3631290": 15, + "3631320": 15, + "3631350": 15, + "3631380": 15, + "3631410": 15, + "3631440": 15, + "3631470": 15, + "3631500": 15, + "3631560": 15, + "3631590": 15, + "3631710": 15, + "3631740": 15, + "3631800": 14, + "3631830": 15, + "3631860": 15, + "3631920": 15, + "3631950": 15, + "3631980": 15, + "3632010": 15, + "3699997": 6, + "3699998": 3, + "3700011": 15, + "3700012": 15, + "3700013": 14, + "3700014": 14, + "3700030": 15, + "3700090": 15, + "3700120": 15, + "3700148": 1, + "3700153": 1, + "3700180": 15, + "3700210": 15, + "3700240": 15, + "3700270": 15, + "3700300": 15, + "3700330": 15, + "3700360": 15, + "3700383": 1, + "3700390": 15, + "3700420": 15, + "3700450": 15, + "3700480": 15, + "3700530": 15, + "3700580": 15, + "3700600": 15, + "3700630": 15, + "3700660": 15, + "3700690": 15, + "3700720": 15, + "3700750": 15, + "3700780": 15, + "3700840": 15, + "3700870": 15, + "3700900": 15, + "3700930": 15, + "3700960": 15, + "3701080": 15, + "3701110": 15, + "3701140": 15, + "3701170": 15, + "3701200": 15, + "3701260": 15, + "3701320": 15, + "3701380": 15, + "3701500": 15, + "3701530": 15, + "3701620": 15, + "3701680": 15, + "3701770": 15, + "3701800": 15, + "3701830": 15, + "3701920": 15, + "3701950": 15, + "3702010": 15, + "3702040": 15, + "3702100": 15, + "3702160": 15, + "3702190": 15, + "3702250": 15, + "3702280": 15, + "3702310": 15, + "3702340": 15, + "3702370": 15, + "3702400": 15, + "3702430": 15, + "3702560": 15, + "3702610": 15, + "3702640": 15, + "3702680": 15, + "3702760": 15, + "3702820": 15, + "3702880": 15, + "3702940": 15, + "3702970": 15, + "3703000": 15, + "3703060": 15, + "3703090": 15, + "3703120": 15, + "3703210": 15, + "3703270": 15, + "3703310": 15, + "3703330": 15, + "3703360": 15, + "3703420": 15, + "3703450": 15, + "3703480": 15, + "3703510": 15, + "3703540": 15, + "3703570": 15, + "3703600": 15, + "3703630": 15, + "3703720": 15, + "3703780": 15, + "3703870": 15, + "3703900": 15, + "3703930": 15, + "3703990": 15, + "3704050": 15, + "3704080": 15, + "3704140": 15, + "3704200": 15, + "3704320": 15, + "3704380": 15, + "3704410": 15, + "3704440": 15, + "3704500": 15, + "3704530": 15, + "3704590": 15, + "3704620": 15, + "3704650": 15, + "3704720": 15, + "3704740": 15, + "3704800": 15, + "3704830": 15, + "3704880": 15, + "3704890": 15, + "3704920": 15, + "3704950": 15, + "3705020": 15, + "3705040": 15, + "3705070": 15, + "3737099": 14, + "3800014": 15, + "3800015": 15, + "3800016": 15, + "3800017": 15, + "3800018": 15, + "3800021": 15, + "3800023": 15, + "3800024": 15, + "3800025": 15, + "3800027": 15, + "3800029": 15, + "3800031": 15, + "3800032": 15, + "3800033": 15, + "3800036": 15, + "3800037": 12, + "3800038": 15, + "3800039": 15, + "3800040": 15, + "3800041": 15, + "3800042": 15, + "3800043": 15, + "3800044": 15, + "3800045": 15, + "3800046": 15, + "3800047": 15, + "3800048": 15, + "3800049": 15, + "3800050": 15, + "3800051": 15, + "3800052": 15, + "3800053": 1, + "3800054": 15, + "3800056": 15, + "3800057": 15, + "3800058": 15, + "3800059": 15, + "3800060": 15, + "3800061": 15, + "3800389": 14, + "3800390": 14, + "3800392": 1, + "3800397": 12, + "3800401": 1, + "3800404": 3, + "3800405": 2, + "3800406": 2, + "3800825": 15, + "3801680": 10, + "3801760": 15, + "3801950": 15, + "3802014": 15, + "3802170": 15, + "3802240": 15, + "3802320": 5, + "3802380": 15, + "3802530": 15, + "3802640": 1, + "3802840": 15, + "3803060": 15, + "3803090": 15, + "3803200": 15, + "3803590": 15, + "3803790": 14, + "3804090": 15, + "3804140": 15, + "3804560": 15, + "3805040": 15, + "3805160": 15, + "3805340": 15, + "3805460": 15, + "3805670": 15, + "3805850": 15, + "3805910": 3, + "3805950": 15, + "3806010": 15, + "3806090": 15, + "3806210": 15, + "3806360": 15, + "3806600": 3, + "3806690": 15, + "3806780": 15, + "3806910": 15, + "3806930": 15, + "3807170": 15, + "3807200": 15, + "3807590": 15, + "3807830": 15, + "3807850": 15, + "3807950": 15, + "3808060": 13, + "3808130": 15, + "3808460": 15, + "3808610": 15, + "3808710": 15, + "3808890": 15, + "3809000": 15, + "3809130": 15, + "3809180": 15, + "3809410": 15, + "3809570": 15, + "3809710": 12, + "3809810": 15, + "3810180": 15, + "3810260": 15, + "3810270": 15, + "3810500": 15, + "3810600": 15, + "3810740": 15, + "3810810": 15, + "3810860": 15, + "3810980": 15, + "3811140": 15, + "3811430": 15, + "3811540": 15, + "3811610": 15, + "3811700": 15, + "3811820": 15, + "3811850": 15, + "3811970": 15, + "3812000": 15, + "3812020": 15, + "3812030": 15, + "3812120": 15, + "3812350": 15, + "3812430": 15, + "3812540": 15, + "3812660": 15, + "3812720": 15, + "3812920": 15, + "3812930": 15, + "3812990": 15, + "3813030": 15, + "3813050": 15, + "3813200": 15, + "3813230": 15, + "3813400": 15, + "3813440": 15, + "3813510": 15, + "3813530": 1, + "3813660": 15, + "3813710": 15, + "3813760": 13, + "3813870": 1, + "3813920": 15, + "3814190": 5, + "3814290": 15, + "3814340": 15, + "3814500": 15, + "3814520": 15, + "3814730": 12, + "3814880": 14, + "3814940": 15, + "3815120": 1, + "3815150": 15, + "3815360": 12, + "3815960": 9, + "3816050": 15, + "3816090": 15, + "3816130": 15, + "3816430": 15, + "3816470": 15, + "3816510": 15, + "3816950": 1, + "3816980": 15, + "3817040": 15, + "3817130": 15, + "3817170": 15, + "3817220": 1, + "3817460": 15, + "3817520": 13, + "3817570": 15, + "3817670": 15, + "3817730": 1, + "3817760": 15, + "3817910": 15, + "3817940": 15, + "3818120": 1, + "3818280": 15, + "3818500": 15, + "3818540": 1, + "3818600": 15, + "3818660": 15, + "3818730": 15, + "3818820": 3, + "3818850": 15, + "3819020": 15, + "3819260": 15, + "3819290": 15, + "3819310": 1, + "3819410": 15, + "3819470": 15, + "3819680": 15, + "3819880": 13, + "3820130": 15, + "3820190": 15, + "3820230": 12, + "3820310": 15, + "3820340": 15, + "3820400": 15, + "3830049": 13, + "3900094": 15, + "3900537": 15, + "3904348": 15, + "3904349": 15, + "3904350": 15, + "3904351": 15, + "3904352": 15, + "3904353": 15, + "3904354": 15, + "3904355": 15, + "3904357": 15, + "3904358": 15, + "3904359": 15, + "3904360": 15, + "3904361": 15, + "3904362": 15, + "3904363": 15, + "3904364": 15, + "3904365": 15, + "3904366": 15, + "3904367": 15, + "3904368": 15, + "3904369": 15, + "3904370": 15, + "3904371": 15, + "3904373": 15, + "3904374": 15, + "3904375": 15, + "3904376": 15, + "3904377": 15, + "3904378": 15, + "3904379": 15, + "3904380": 15, + "3904381": 15, + "3904382": 15, + "3904383": 15, + "3904384": 15, + "3904385": 15, + "3904386": 15, + "3904387": 15, + "3904388": 15, + "3904389": 15, + "3904390": 15, + "3904391": 15, + "3904392": 15, + "3904393": 15, + "3904394": 15, + "3904395": 15, + "3904396": 15, + "3904397": 15, + "3904399": 15, + "3904400": 15, + "3904401": 15, + "3904402": 15, + "3904403": 15, + "3904404": 15, + "3904405": 15, + "3904406": 15, + "3904407": 15, + "3904408": 15, + "3904409": 15, + "3904410": 15, + "3904411": 15, + "3904412": 15, + "3904413": 15, + "3904414": 15, + "3904415": 15, + "3904416": 15, + "3904418": 15, + "3904419": 15, + "3904420": 15, + "3904421": 15, + "3904422": 15, + "3904423": 15, + "3904424": 15, + "3904425": 15, + "3904426": 15, + "3904427": 15, + "3904428": 15, + "3904429": 15, + "3904430": 15, + "3904431": 15, + "3904433": 15, + "3904434": 15, + "3904435": 15, + "3904436": 15, + "3904437": 15, + "3904438": 15, + "3904439": 15, + "3904440": 15, + "3904441": 15, + "3904443": 15, + "3904444": 15, + "3904445": 15, + "3904446": 15, + "3904447": 15, + "3904448": 15, + "3904449": 15, + "3904450": 15, + "3904451": 15, + "3904452": 15, + "3904453": 15, + "3904454": 15, + "3904455": 15, + "3904456": 15, + "3904457": 15, + "3904458": 15, + "3904459": 15, + "3904460": 15, + "3904461": 15, + "3904463": 15, + "3904464": 15, + "3904465": 15, + "3904467": 15, + "3904468": 15, + "3904469": 15, + "3904470": 15, + "3904471": 15, + "3904472": 15, + "3904474": 15, + "3904475": 15, + "3904476": 15, + "3904479": 15, + "3904480": 15, + "3904481": 15, + "3904482": 15, + "3904483": 15, + "3904484": 15, + "3904485": 15, + "3904486": 15, + "3904487": 15, + "3904488": 15, + "3904489": 15, + "3904490": 15, + "3904491": 15, + "3904492": 15, + "3904493": 15, + "3904494": 15, + "3904495": 15, + "3904498": 15, + "3904499": 15, + "3904500": 15, + "3904502": 15, + "3904503": 15, + "3904504": 15, + "3904505": 15, + "3904506": 15, + "3904507": 15, + "3904508": 15, + "3904509": 15, + "3904510": 15, + "3904511": 15, + "3904513": 15, + "3904514": 15, + "3904515": 15, + "3904516": 15, + "3904517": 15, + "3904518": 15, + "3904519": 15, + "3904520": 15, + "3904521": 15, + "3904522": 15, + "3904523": 15, + "3904524": 15, + "3904525": 15, + "3904526": 15, + "3904527": 15, + "3904528": 15, + "3904529": 15, + "3904531": 15, + "3904532": 15, + "3904533": 15, + "3904535": 15, + "3904536": 15, + "3904537": 15, + "3904538": 15, + "3904539": 15, + "3904540": 15, + "3904541": 15, + "3904542": 15, + "3904543": 15, + "3904545": 15, + "3904546": 15, + "3904547": 15, + "3904548": 15, + "3904549": 15, + "3904550": 15, + "3904551": 15, + "3904552": 15, + "3904553": 15, + "3904554": 15, + "3904555": 15, + "3904556": 15, + "3904557": 15, + "3904558": 15, + "3904560": 15, + "3904561": 15, + "3904563": 15, + "3904564": 15, + "3904565": 15, + "3904566": 15, + "3904567": 15, + "3904575": 15, + "3904576": 15, + "3904577": 15, + "3904578": 15, + "3904579": 15, + "3904580": 15, + "3904582": 15, + "3904583": 15, + "3904585": 15, + "3904586": 15, + "3904587": 15, + "3904588": 15, + "3904590": 15, + "3904591": 15, + "3904592": 15, + "3904594": 15, + "3904595": 15, + "3904596": 15, + "3904597": 15, + "3904599": 15, + "3904600": 15, + "3904601": 15, + "3904603": 15, + "3904604": 15, + "3904606": 15, + "3904607": 15, + "3904609": 15, + "3904610": 15, + "3904611": 15, + "3904612": 15, + "3904613": 15, + "3904614": 15, + "3904615": 15, + "3904617": 15, + "3904619": 15, + "3904620": 15, + "3904621": 15, + "3904623": 15, + "3904624": 15, + "3904625": 15, + "3904626": 15, + "3904627": 15, + "3904628": 15, + "3904630": 15, + "3904631": 15, + "3904632": 15, + "3904633": 15, + "3904634": 15, + "3904635": 15, + "3904636": 15, + "3904638": 15, + "3904639": 15, + "3904640": 15, + "3904642": 15, + "3904643": 15, + "3904644": 15, + "3904645": 15, + "3904647": 15, + "3904648": 15, + "3904650": 15, + "3904651": 15, + "3904652": 15, + "3904655": 15, + "3904656": 15, + "3904657": 15, + "3904659": 15, + "3904660": 15, + "3904662": 15, + "3904663": 15, + "3904664": 15, + "3904667": 15, + "3904668": 15, + "3904670": 15, + "3904671": 15, + "3904672": 15, + "3904674": 15, + "3904675": 15, + "3904676": 15, + "3904678": 15, + "3904679": 15, + "3904680": 15, + "3904681": 15, + "3904682": 15, + "3904684": 15, + "3904685": 15, + "3904686": 15, + "3904687": 15, + "3904688": 15, + "3904689": 15, + "3904690": 15, + "3904694": 15, + "3904695": 15, + "3904696": 15, + "3904697": 15, + "3904699": 15, + "3904700": 15, + "3904701": 15, + "3904702": 15, + "3904704": 15, + "3904705": 15, + "3904706": 15, + "3904707": 15, + "3904708": 15, + "3904709": 15, + "3904716": 15, + "3904717": 15, + "3904718": 15, + "3904719": 15, + "3904720": 7, + "3904721": 12, + "3904722": 15, + "3904724": 15, + "3904725": 15, + "3904726": 15, + "3904727": 15, + "3904730": 15, + "3904733": 15, + "3904734": 15, + "3904736": 15, + "3904737": 15, + "3904738": 15, + "3904739": 15, + "3904742": 15, + "3904743": 15, + "3904744": 15, + "3904745": 15, + "3904747": 15, + "3904749": 15, + "3904750": 15, + "3904751": 15, + "3904752": 15, + "3904754": 15, + "3904757": 15, + "3904758": 15, + "3904759": 15, + "3904761": 15, + "3904762": 15, + "3904763": 15, + "3904768": 15, + "3904769": 15, + "3904771": 15, + "3904772": 15, + "3904773": 15, + "3904774": 15, + "3904776": 15, + "3904778": 15, + "3904779": 15, + "3904780": 15, + "3904782": 15, + "3904783": 15, + "3904785": 15, + "3904787": 15, + "3904788": 15, + "3904790": 15, + "3904792": 15, + "3904793": 15, + "3904794": 15, + "3904795": 15, + "3904796": 15, + "3904798": 15, + "3904799": 15, + "3904800": 15, + "3904801": 15, + "3904802": 15, + "3904803": 15, + "3904804": 15, + "3904807": 15, + "3904808": 15, + "3904809": 15, + "3904811": 15, + "3904812": 15, + "3904813": 15, + "3904814": 15, + "3904815": 15, + "3904816": 15, + "3904817": 15, + "3904820": 15, + "3904821": 15, + "3904822": 15, + "3904823": 15, + "3904825": 15, + "3904826": 15, + "3904827": 15, + "3904829": 15, + "3904830": 15, + "3904831": 15, + "3904832": 15, + "3904833": 15, + "3904834": 15, + "3904835": 15, + "3904836": 15, + "3904837": 15, + "3904838": 15, + "3904839": 15, + "3904841": 15, + "3904842": 15, + "3904843": 15, + "3904844": 15, + "3904846": 15, + "3904847": 15, + "3904848": 15, + "3904849": 15, + "3904851": 15, + "3904852": 15, + "3904853": 15, + "3904857": 15, + "3904858": 15, + "3904859": 15, + "3904861": 15, + "3904862": 15, + "3904863": 15, + "3904865": 15, + "3904867": 15, + "3904868": 15, + "3904869": 15, + "3904870": 15, + "3904871": 15, + "3904872": 15, + "3904873": 15, + "3904874": 15, + "3904875": 15, + "3904877": 15, + "3904879": 15, + "3904880": 15, + "3904881": 15, + "3904883": 15, + "3904884": 15, + "3904885": 15, + "3904887": 15, + "3904888": 15, + "3904890": 15, + "3904892": 15, + "3904893": 15, + "3904894": 15, + "3904895": 15, + "3904896": 15, + "3904897": 15, + "3904899": 15, + "3904900": 15, + "3904903": 15, + "3904905": 15, + "3904906": 15, + "3904908": 15, + "3904909": 15, + "3904910": 15, + "3904912": 15, + "3904913": 15, + "3904914": 15, + "3904915": 15, + "3904917": 15, + "3904918": 15, + "3904919": 15, + "3904920": 15, + "3904921": 15, + "3904922": 15, + "3904923": 15, + "3904924": 15, + "3904926": 15, + "3904927": 15, + "3904928": 15, + "3904931": 15, + "3904932": 15, + "3904933": 15, + "3904934": 15, + "3904935": 15, + "3904936": 15, + "3904937": 15, + "3904938": 15, + "3904939": 15, + "3904941": 15, + "3904942": 15, + "3904943": 15, + "3904944": 15, + "3904945": 15, + "3904946": 15, + "3904947": 15, + "3904949": 15, + "3904950": 15, + "3904951": 15, + "3904952": 15, + "3904953": 15, + "3904954": 15, + "3904956": 15, + "3904957": 15, + "3904959": 15, + "3904961": 15, + "3904962": 15, + "3904963": 15, + "3904964": 15, + "3904965": 15, + "3904966": 15, + "3904968": 15, + "3904969": 7, + "3904970": 15, + "3904971": 15, + "3904976": 15, + "3904977": 15, + "3904978": 15, + "3904979": 15, + "3904981": 15, + "3904983": 15, + "3904984": 15, + "3904985": 15, + "3904986": 15, + "3904987": 15, + "3904988": 15, + "3904989": 15, + "3904990": 15, + "3904991": 15, + "3904992": 15, + "3904993": 15, + "3904994": 15, + "3904995": 15, + "3904997": 15, + "3904998": 15, + "3904999": 15, + "3905000": 15, + "3905001": 15, + "3905002": 15, + "3905003": 15, + "3905004": 15, + "3905005": 15, + "3905006": 15, + "3905007": 15, + "3905009": 15, + "3905011": 15, + "3905012": 15, + "3905013": 15, + "3905015": 15, + "3905016": 15, + "3905017": 15, + "3905018": 15, + "3905019": 15, + "3905020": 15, + "3905021": 15, + "3905022": 15, + "3905023": 15, + "3905024": 15, + "3905025": 15, + "3905027": 15, + "3905028": 15, + "3905029": 15, + "3905030": 15, + "3905032": 15, + "3905033": 15, + "3905035": 15, + "3905039": 15, + "3905041": 15, + "3905042": 15, + "3905043": 15, + "3905044": 15, + "3905045": 15, + "3905046": 15, + "3905048": 15, + "3905049": 15, + "3905051": 15, + "3905053": 15, + "3905054": 15, + "3905055": 15, + "3905056": 15, + "3905058": 15, + "3905059": 15, + "3905061": 15, + "3905062": 15, + "3905063": 15, + "3905064": 15, + "3905065": 15, + "3905067": 15, + "3905068": 15, + "3905069": 15, + "3905070": 15, + "3905071": 15, + "3905072": 15, + "3905074": 15, + "3906190": 15, + "3906496": 15, + "3906568": 15, + "3906968": 15, + "3910000": 15, + "3910001": 15, + "3910002": 15, + "3910003": 15, + "3910004": 15, + "3910005": 15, + "3910006": 15, + "3910007": 15, + "3910008": 15, + "3910009": 15, + "3910010": 15, + "3910011": 15, + "3910012": 15, + "3910013": 15, + "3910014": 15, + "3910015": 15, + "3910016": 15, + "3910017": 15, + "3910018": 15, + "3910019": 15, + "3910020": 15, + "3910021": 15, + "3910022": 15, + "3910023": 15, + "3910024": 15, + "3910025": 15, + "3910026": 15, + "3910027": 15, + "3910028": 15, + "3910029": 15, + "3910030": 15, + "3910031": 15, + "3910032": 15, + "3910033": 15, + "3999997": 15, + "3999998": 3, + "4000013": 15, + "4000014": 15, + "4000015": 15, + "4000020": 15, + "4000021": 15, + "4000032": 15, + "4000033": 1, + "4000782": 10, + "4000797": 6, + "4000798": 1, + "4000802": 1, + "4002370": 15, + "4002430": 15, + "4002460": 15, + "4002520": 15, + "4002550": 15, + "4002580": 15, + "4002670": 15, + "4002720": 15, + "4002760": 15, + "4002790": 15, + "4002850": 15, + "4002880": 15, + "4002910": 15, + "4003000": 15, + "4003010": 15, + "4003060": 15, + "4003120": 15, + "4003180": 15, + "4003210": 15, + "4003240": 15, + "4003300": 15, + "4003360": 15, + "4003450": 15, + "4003510": 15, + "4003540": 15, + "4003570": 15, + "4003630": 15, + "4003660": 15, + "4003690": 15, + "4003750": 15, + "4003810": 15, + "4003840": 15, + "4003870": 3, + "4003930": 15, + "4004020": 15, + "4004110": 15, + "4004230": 15, + "4004350": 15, + "4004360": 15, + "4004470": 15, + "4004500": 15, + "4004630": 15, + "4004650": 15, + "4004680": 15, + "4004830": 15, + "4004860": 15, + "4004950": 15, + "4005000": 3, + "4005010": 15, + "4005040": 15, + "4005130": 15, + "4005160": 15, + "4005190": 3, + "4005280": 15, + "4005310": 5, + "4005340": 15, + "4005400": 15, + "4005430": 15, + "4005460": 15, + "4005490": 15, + "4005520": 15, + "4005580": 15, + "4005760": 15, + "4005820": 15, + "4005910": 15, + "4005970": 1, + "4006000": 15, + "4006030": 7, + "4006060": 15, + "4006120": 15, + "4006150": 15, + "4006180": 15, + "4006240": 15, + "4006270": 15, + "4006330": 15, + "4006390": 15, + "4006420": 15, + "4006480": 15, + "4006510": 15, + "4006630": 15, + "4006690": 15, + "4006810": 15, + "4006850": 15, + "4006870": 15, + "4006930": 15, + "4006960": 15, + "4007140": 15, + "4007170": 15, + "4007290": 15, + "4007320": 15, + "4007350": 15, + "4007380": 15, + "4007410": 15, + "4007500": 15, + "4007560": 15, + "4007620": 15, + "4007670": 15, + "4007710": 15, + "4007740": 15, + "4007800": 15, + "4008010": 15, + "4008040": 15, + "4008070": 15, + "4008130": 15, + "4008220": 15, + "4008250": 15, + "4008310": 15, + "4008370": 15, + "4008460": 15, + "4008490": 15, + "4008610": 15, + "4008640": 15, + "4008730": 15, + "4008790": 15, + "4008850": 15, + "4008940": 15, + "4009000": 15, + "4009060": 15, + "4009090": 15, + "4009150": 15, + "4009240": 15, + "4009300": 15, + "4009360": 15, + "4009390": 15, + "4009420": 15, + "4009450": 15, + "4009480": 14, + "4009510": 15, + "4009570": 15, + "4009720": 15, + "4009750": 15, + "4009780": 15, + "4009810": 15, + "4009870": 15, + "4009910": 15, + "4010050": 15, + "4010170": 15, + "4010200": 15, + "4010260": 15, + "4010290": 15, + "4010350": 15, + "4010410": 5, + "4010440": 15, + "4010500": 15, + "4010560": 15, + "4010590": 15, + "4010650": 15, + "4010680": 9, + "4010710": 15, + "4010740": 15, + "4010860": 15, + "4010890": 15, + "4010920": 15, + "4011040": 15, + "4011160": 15, + "4011250": 15, + "4011280": 15, + "4011400": 15, + "4011430": 15, + "4011450": 5, + "4011580": 15, + "4011700": 15, + "4011760": 15, + "4011850": 15, + "4011880": 15, + "4011970": 15, + "4012000": 15, + "4012060": 15, + "4012090": 15, + "4012150": 15, + "4012180": 15, + "4012210": 15, + "4012240": 15, + "4012300": 15, + "4012330": 9, + "4012390": 15, + "4012420": 15, + "4012570": 15, + "4012630": 15, + "4012690": 15, + "4012720": 15, + "4012750": 15, + "4012840": 3, + "4012870": 15, + "4012900": 15, + "4013080": 15, + "4013140": 5, + "4013200": 15, + "4013230": 15, + "4013260": 15, + "4013290": 15, + "4013320": 13, + "4013380": 15, + "4013500": 15, + "4013530": 15, + "4013560": 15, + "4013590": 15, + "4013600": 15, + "4013620": 15, + "4013650": 15, + "4013680": 15, + "4013740": 15, + "4013830": 15, + "4013890": 15, + "4013920": 15, + "4013950": 15, + "4014080": 15, + "4014100": 15, + "4014130": 15, + "4014160": 15, + "4014340": 15, + "4014370": 15, + "4014520": 15, + "4014610": 15, + "4014670": 15, + "4014700": 15, + "4014730": 15, + "4014790": 15, + "4014820": 5, + "4014850": 15, + "4014890": 15, + "4014970": 15, + "4015090": 15, + "4015120": 15, + "4015210": 15, + "4015240": 15, + "4015370": 15, + "4015420": 15, + "4015450": 15, + "4015480": 15, + "4015690": 15, + "4015720": 15, + "4015750": 15, + "4015840": 15, + "4015900": 15, + "4015930": 15, + "4015990": 15, + "4016050": 1, + "4016170": 15, + "4016320": 15, + "4016350": 15, + "4016380": 15, + "4016410": 12, + "4016440": 14, + "4016470": 15, + "4016500": 15, + "4016530": 15, + "4016560": 15, + "4016590": 15, + "4016620": 15, + "4016650": 15, + "4016710": 15, + "4016720": 15, + "4016740": 15, + "4017020": 15, + "4017040": 15, + "4017190": 15, + "4017220": 15, + "4017250": 15, + "4017280": 15, + "4017310": 15, + "4017370": 15, + "4017520": 1, + "4017580": 15, + "4017610": 1, + "4017700": 15, + "4017760": 15, + "4017850": 15, + "4017880": 15, + "4018000": 15, + "4018090": 15, + "4018240": 15, + "4018270": 15, + "4018390": 15, + "4018420": 1, + "4018480": 15, + "4018570": 15, + "4018630": 15, + "4018660": 15, + "4018700": 15, + "4018780": 15, + "4018840": 15, + "4018870": 15, + "4018900": 15, + "4018960": 15, + "4018990": 15, + "4019080": 15, + "4019200": 15, + "4019260": 15, + "4019290": 15, + "4019380": 15, + "4019410": 15, + "4019440": 15, + "4019500": 15, + "4019560": 15, + "4019620": 15, + "4019680": 15, + "4019800": 15, + "4019860": 15, + "4019890": 15, + "4019950": 15, + "4019980": 15, + "4020010": 5, + "4020040": 15, + "4020080": 15, + "4020100": 15, + "4020160": 15, + "4020190": 15, + "4020250": 15, + "4020280": 15, + "4020310": 15, + "4020340": 15, + "4020430": 15, + "4020460": 15, + "4020550": 15, + "4020640": 15, + "4020880": 15, + "4020910": 15, + "4020970": 15, + "4021000": 15, + "4021030": 15, + "4021120": 15, + "4021180": 15, + "4021360": 15, + "4021510": 15, + "4021540": 15, + "4021600": 15, + "4021630": 15, + "4021720": 15, + "4021780": 15, + "4021840": 14, + "4021870": 12, + "4021900": 15, + "4021930": 15, + "4022160": 15, + "4022350": 15, + "4022410": 15, + "4022560": 15, + "4022590": 15, + "4022620": 15, + "4022650": 15, + "4022770": 15, + "4022800": 15, + "4022830": 15, + "4022860": 15, + "4022920": 9, + "4022950": 15, + "4023040": 15, + "4023070": 15, + "4023190": 15, + "4023220": 15, + "4023280": 15, + "4023340": 15, + "4023370": 15, + "4023400": 15, + "4023430": 15, + "4023550": 15, + "4023580": 15, + "4023610": 15, + "4023700": 15, + "4023730": 15, + "4023800": 15, + "4023850": 15, + "4023880": 1, + "4023910": 3, + "4023970": 15, + "4024150": 15, + "4024180": 15, + "4024240": 15, + "4024270": 3, + "4024330": 15, + "4024360": 3, + "4024510": 15, + "4024630": 15, + "4024690": 15, + "4024720": 15, + "4024840": 15, + "4024870": 15, + "4024930": 15, + "4025050": 15, + "4025080": 15, + "4025170": 15, + "4025200": 15, + "4025230": 15, + "4025290": 15, + "4025320": 15, + "4025410": 15, + "4025470": 15, + "4025500": 15, + "4025530": 15, + "4025590": 15, + "4025800": 15, + "4025860": 15, + "4025920": 15, + "4025950": 15, + "4026010": 15, + "4026100": 15, + "4026250": 15, + "4026280": 15, + "4026310": 15, + "4026550": 15, + "4026580": 15, + "4026610": 15, + "4026640": 15, + "4026730": 15, + "4026790": 15, + "4026880": 15, + "4026910": 15, + "4026940": 15, + "4027000": 15, + "4027060": 15, + "4027090": 15, + "4027240": 15, + "4027300": 15, + "4027330": 15, + "4027390": 15, + "4027420": 15, + "4027450": 15, + "4027540": 15, + "4027570": 15, + "4027630": 15, + "4027640": 15, + "4027750": 15, + "4027840": 15, + "4027930": 15, + "4027960": 15, + "4027990": 15, + "4028110": 9, + "4028170": 15, + "4028200": 15, + "4028350": 15, + "4028590": 15, + "4028620": 15, + "4028650": 15, + "4028680": 15, + "4028710": 15, + "4028800": 15, + "4028920": 15, + "4028980": 15, + "4029010": 15, + "4029040": 15, + "4029070": 15, + "4029100": 15, + "4029160": 15, + "4029310": 15, + "4029340": 11, + "4029380": 15, + "4029400": 15, + "4029430": 15, + "4029520": 15, + "4029610": 15, + "4029640": 15, + "4029670": 15, + "4029760": 15, + "4029820": 15, + "4029850": 15, + "4029886": 15, + "4030030": 15, + "4030048": 15, + "4030060": 15, + "4030090": 1, + "4030120": 15, + "4030197": 15, + "4030240": 15, + "4030270": 15, + "4030290": 15, + "4030300": 15, + "4030330": 15, + "4030360": 15, + "4030390": 15, + "4030420": 15, + "4030450": 15, + "4030480": 15, + "4030600": 15, + "4030630": 15, + "4030870": 15, + "4030960": 15, + "4030990": 15, + "4031020": 15, + "4031080": 15, + "4031110": 15, + "4031140": 15, + "4031170": 15, + "4031290": 15, + "4031350": 15, + "4031380": 15, + "4031420": 3, + "4031470": 15, + "4031500": 15, + "4031590": 15, + "4031650": 15, + "4031670": 3, + "4031710": 15, + "4031770": 15, + "4031830": 3, + "4031860": 15, + "4031950": 15, + "4031980": 15, + "4032010": 15, + "4032040": 15, + "4032070": 15, + "4032130": 15, + "4032190": 15, + "4032220": 15, + "4032280": 15, + "4032370": 15, + "4032400": 15, + "4032430": 15, + "4032460": 15, + "4032610": 15, + "4032640": 15, + "4032670": 15, + "4032700": 15, + "4032730": 15, + "4032760": 15, + "4032790": 15, + "4032880": 15, + "4032940": 15, + "4032970": 15, + "4033090": 15, + "4033180": 15, + "4033210": 15, + "4033240": 15, + "4033300": 15, + "4033330": 15, + "4033360": 15, + "4033390": 15, + "4033480": 15, + "4033540": 15, + "4033600": 15, + "4033601": 15, + "4033602": 15, + "4033603": 15, + "4040001": 9, + "4040002": 2, + "4099001": 3, + "4100003": 15, + "4100014": 15, + "4100015": 15, + "4100016": 15, + "4100019": 15, + "4100020": 15, + "4100021": 15, + "4100023": 15, + "4100040": 15, + "4100047": 15, + "4100048": 15, + "4100640": 15, + "4100990": 15, + "4101020": 15, + "4101120": 15, + "4101200": 15, + "4101230": 15, + "4101350": 15, + "4101470": 15, + "4101500": 15, + "4101560": 15, + "4101590": 15, + "4101620": 15, + "4101660": 15, + "4101710": 15, + "4101740": 15, + "4101800": 15, + "4101830": 15, + "4101920": 15, + "4101980": 15, + "4102040": 15, + "4102160": 15, + "4102190": 15, + "4102310": 15, + "4102490": 15, + "4102580": 15, + "4102610": 15, + "4102640": 15, + "4102780": 15, + "4102800": 15, + "4102840": 15, + "4102910": 15, + "4102940": 15, + "4103260": 15, + "4103265": 15, + "4103270": 15, + "4103330": 15, + "4103390": 15, + "4103420": 15, + "4103480": 15, + "4103540": 15, + "4103600": 15, + "4103630": 15, + "4103660": 15, + "4103690": 15, + "4103720": 15, + "4103780": 15, + "4103840": 15, + "4103860": 15, + "4103940": 15, + "4103960": 15, + "4103990": 15, + "4104020": 15, + "4104170": 15, + "4104290": 15, + "4104350": 15, + "4104380": 15, + "4104410": 15, + "4104500": 15, + "4104530": 15, + "4104590": 15, + "4104620": 15, + "4104700": 15, + "4104740": 15, + "4104950": 15, + "4105020": 15, + "4105080": 15, + "4105100": 15, + "4105160": 15, + "4105250": 15, + "4105310": 15, + "4105430": 15, + "4105610": 15, + "4105640": 15, + "4105670": 15, + "4105760": 15, + "4105910": 15, + "4106000": 15, + "4106120": 15, + "4106270": 15, + "4106300": 15, + "4106510": 15, + "4106600": 15, + "4106630": 15, + "4106710": 15, + "4106740": 15, + "4106750": 15, + "4106780": 15, + "4106820": 15, + "4106870": 15, + "4106900": 15, + "4106930": 15, + "4106960": 15, + "4107020": 15, + "4107080": 15, + "4107200": 15, + "4107230": 15, + "4107280": 15, + "4107380": 15, + "4107500": 15, + "4107530": 15, + "4107590": 15, + "4107710": 15, + "4107740": 15, + "4107880": 15, + "4107980": 15, + "4108010": 15, + "4108040": 15, + "4108100": 15, + "4108160": 15, + "4108280": 15, + "4108310": 15, + "4108430": 15, + "4108460": 15, + "4108520": 15, + "4108550": 15, + "4108650": 15, + "4108700": 15, + "4108720": 15, + "4108820": 15, + "4108830": 15, + "4108880": 15, + "4108940": 15, + "4109000": 15, + "4109120": 15, + "4109150": 15, + "4109270": 15, + "4109330": 15, + "4109430": 15, + "4109480": 15, + "4109510": 15, + "4109530": 15, + "4109600": 15, + "4109630": 15, + "4109660": 15, + "4109690": 15, + "4109720": 15, + "4109750": 15, + "4109870": 15, + "4109960": 15, + "4110020": 15, + "4110040": 15, + "4110080": 15, + "4110110": 15, + "4110200": 15, + "4110350": 15, + "4110410": 15, + "4110520": 15, + "4110530": 15, + "4110560": 15, + "4110680": 15, + "4110710": 15, + "4110820": 15, + "4110890": 5, + "4110920": 10, + "4110980": 15, + "4111040": 15, + "4111100": 15, + "4111220": 15, + "4111250": 15, + "4111290": 15, + "4111400": 15, + "4111450": 5, + "4111470": 10, + "4111490": 15, + "4111580": 15, + "4111610": 15, + "4111640": 15, + "4111670": 15, + "4111720": 15, + "4111760": 15, + "4111790": 15, + "4111910": 15, + "4111940": 15, + "4111970": 15, + "4112240": 15, + "4112320": 15, + "4112360": 15, + "4112540": 15, + "4112600": 15, + "4112690": 15, + "4112930": 15, + "4112990": 15, + "4113080": 15, + "4113170": 15, + "4113350": 15, + "4113490": 15, + "4113530": 15, + "4113650": 15, + "4141034": 1, + "4141035": 1, + "4199997": 6, + "4200824": 14, + "4202010": 15, + "4202040": 15, + "4202100": 15, + "4202130": 15, + "4202190": 15, + "4202280": 15, + "4202310": 15, + "4202340": 15, + "4202400": 15, + "4202440": 15, + "4202480": 15, + "4202490": 15, + "4202550": 15, + "4202590": 15, + "4202670": 15, + "4202700": 15, + "4202760": 15, + "4202790": 15, + "4202820": 15, + "4202850": 15, + "4202910": 15, + "4202970": 15, + "4203000": 15, + "4203120": 15, + "4203180": 15, + "4203210": 15, + "4203240": 15, + "4203300": 15, + "4203330": 15, + "4203360": 15, + "4203390": 15, + "4203420": 15, + "4203450": 15, + "4203480": 15, + "4203510": 15, + "4203570": 15, + "4203600": 15, + "4203630": 15, + "4203660": 15, + "4203688": 15, + "4203690": 15, + "4203750": 15, + "4203840": 15, + "4203870": 15, + "4203900": 15, + "4203960": 15, + "4204020": 15, + "4204050": 15, + "4204080": 15, + "4204090": 15, + "4204140": 15, + "4204200": 15, + "4204230": 15, + "4204260": 15, + "4204320": 15, + "4204500": 15, + "4204530": 15, + "4204590": 15, + "4204710": 15, + "4204740": 15, + "4204830": 15, + "4204860": 15, + "4204890": 15, + "4204920": 15, + "4204980": 15, + "4205010": 15, + "4205040": 15, + "4205070": 15, + "4205160": 15, + "4205190": 15, + "4205210": 1, + "4205310": 15, + "4205340": 15, + "4205370": 15, + "4205400": 15, + "4205430": 15, + "4205460": 15, + "4205490": 15, + "4205550": 15, + "4205640": 15, + "4205700": 15, + "4205730": 15, + "4205760": 15, + "4205860": 15, + "4205880": 15, + "4205910": 15, + "4206030": 15, + "4206060": 15, + "4206090": 15, + "4206120": 15, + "4206150": 15, + "4206240": 15, + "4206270": 15, + "4206360": 15, + "4206390": 15, + "4206420": 15, + "4206430": 15, + "4206480": 15, + "4206550": 15, + "4206590": 15, + "4206660": 15, + "4206780": 15, + "4206810": 15, + "4206840": 15, + "4206860": 15, + "4206930": 15, + "4206960": 15, + "4207050": 15, + "4207080": 15, + "4207110": 15, + "4207140": 15, + "4207200": 15, + "4207230": 15, + "4207290": 15, + "4207320": 15, + "4207530": 15, + "4207540": 15, + "4207560": 15, + "4207590": 15, + "4207650": 15, + "4207680": 15, + "4207710": 15, + "4207830": 15, + "4207980": 15, + "4208010": 15, + "4208060": 15, + "4208280": 15, + "4208460": 15, + "4208490": 15, + "4208550": 15, + "4208580": 15, + "4208670": 15, + "4208790": 15, + "4208820": 15, + "4208850": 15, + "4209090": 15, + "4209120": 15, + "4209150": 15, + "4209240": 15, + "4209270": 15, + "4209300": 15, + "4209360": 15, + "4209480": 15, + "4209540": 15, + "4209570": 15, + "4209600": 15, + "4209660": 15, + "4209690": 15, + "4209750": 15, + "4209780": 15, + "4209870": 15, + "4209930": 15, + "4209940": 15, + "4209960": 15, + "4209990": 15, + "4210070": 15, + "4210110": 15, + "4210115": 15, + "4210200": 15, + "4210230": 15, + "4210350": 15, + "4210380": 15, + "4210440": 15, + "4210530": 15, + "4210590": 15, + "4210620": 15, + "4210650": 15, + "4210710": 15, + "4210740": 15, + "4210830": 15, + "4210860": 15, + "4210870": 15, + "4210920": 15, + "4210950": 15, + "4210980": 15, + "4211010": 15, + "4211160": 15, + "4211190": 15, + "4211220": 15, + "4211310": 15, + "4211340": 15, + "4211400": 15, + "4211420": 15, + "4211450": 15, + "4211490": 15, + "4211520": 15, + "4211580": 15, + "4211610": 15, + "4211670": 15, + "4211700": 15, + "4211730": 15, + "4211760": 15, + "4211790": 15, + "4211820": 15, + "4211880": 15, + "4211940": 15, + "4212030": 15, + "4212090": 15, + "4212150": 15, + "4212170": 15, + "4212210": 15, + "4212300": 15, + "4212330": 15, + "4212390": 15, + "4212420": 15, + "4212480": 15, + "4212540": 15, + "4212570": 15, + "4212600": 15, + "4212630": 15, + "4212660": 15, + "4212690": 15, + "4212720": 15, + "4212725": 15, + "4212750": 15, + "4212840": 15, + "4212930": 15, + "4212990": 15, + "4213020": 15, + "4213050": 15, + "4213080": 15, + "4213110": 15, + "4213140": 15, + "4213290": 15, + "4213320": 15, + "4213380": 15, + "4213440": 15, + "4213470": 15, + "4213500": 15, + "4213590": 15, + "4213710": 15, + "4213770": 15, + "4213980": 15, + "4214100": 15, + "4214160": 15, + "4214190": 15, + "4214250": 15, + "4214310": 15, + "4214430": 15, + "4214460": 15, + "4214550": 15, + "4214580": 15, + "4214730": 15, + "4214760": 15, + "4214790": 15, + "4214850": 15, + "4214880": 15, + "4214940": 15, + "4215030": 15, + "4215120": 15, + "4215150": 15, + "4215170": 15, + "4215210": 15, + "4215240": 15, + "4215270": 15, + "4215290": 15, + "4215330": 15, + "4215360": 15, + "4215450": 15, + "4215480": 15, + "4215510": 15, + "4215540": 15, + "4215570": 1, + "4215600": 15, + "4215660": 15, + "4215720": 15, + "4215750": 15, + "4215810": 15, + "4215830": 15, + "4215900": 15, + "4215960": 15, + "4215990": 15, + "4216020": 15, + "4216050": 15, + "4216110": 15, + "4216170": 15, + "4216200": 15, + "4216230": 15, + "4216290": 15, + "4216380": 15, + "4216410": 15, + "4216440": 15, + "4216500": 15, + "4216530": 15, + "4216620": 15, + "4216740": 15, + "4216860": 15, + "4216890": 15, + "4216980": 15, + "4217010": 15, + "4217100": 15, + "4217130": 15, + "4217160": 15, + "4217220": 15, + "4217280": 15, + "4217310": 15, + "4217370": 15, + "4217430": 15, + "4217460": 15, + "4217520": 15, + "4217580": 15, + "4217610": 15, + "4217640": 15, + "4217670": 15, + "4217700": 15, + "4217730": 15, + "4217760": 15, + "4217770": 15, + "4217790": 15, + "4217850": 15, + "4217880": 15, + "4217940": 15, + "4218030": 15, + "4218090": 15, + "4218120": 15, + "4218150": 15, + "4218210": 15, + "4218240": 15, + "4218270": 15, + "4218300": 15, + "4218330": 15, + "4218360": 15, + "4218390": 15, + "4218450": 15, + "4218510": 15, + "4218570": 15, + "4218580": 15, + "4218590": 15, + "4218630": 15, + "4218660": 15, + "4218740": 15, + "4218750": 15, + "4218780": 15, + "4218810": 15, + "4218840": 15, + "4218900": 15, + "4218930": 15, + "4218960": 15, + "4218990": 15, + "4219020": 15, + "4219050": 15, + "4219140": 15, + "4219170": 15, + "4219200": 15, + "4219290": 15, + "4219350": 15, + "4219470": 15, + "4219500": 15, + "4219530": 15, + "4219560": 15, + "4219650": 15, + "4219680": 15, + "4219710": 15, + "4219800": 15, + "4219830": 15, + "4219860": 15, + "4219890": 15, + "4219920": 15, + "4220040": 15, + "4220100": 15, + "4220130": 15, + "4220220": 15, + "4220250": 15, + "4220310": 15, + "4220370": 15, + "4220400": 15, + "4220430": 15, + "4220460": 15, + "4220520": 15, + "4220550": 15, + "4220580": 15, + "4220640": 15, + "4220730": 15, + "4220760": 15, + "4220850": 15, + "4220910": 15, + "4220970": 15, + "4221090": 15, + "4221120": 15, + "4221150": 15, + "4221180": 15, + "4221200": 15, + "4221240": 15, + "4221270": 15, + "4221330": 15, + "4221420": 15, + "4221490": 15, + "4221510": 15, + "4221540": 15, + "4221570": 15, + "4221660": 15, + "4221690": 15, + "4221810": 15, + "4221840": 15, + "4221870": 15, + "4221910": 15, + "4221930": 15, + "4222050": 15, + "4222060": 15, + "4222140": 15, + "4222170": 15, + "4222200": 15, + "4222230": 15, + "4222260": 15, + "4222290": 15, + "4222320": 15, + "4222350": 15, + "4222370": 15, + "4222380": 15, + "4222400": 15, + "4222410": 15, + "4222440": 15, + "4222470": 15, + "4222530": 15, + "4222560": 15, + "4222590": 15, + "4222600": 15, + "4222620": 15, + "4222710": 15, + "4222740": 15, + "4222770": 15, + "4222790": 15, + "4222800": 15, + "4222830": 15, + "4222860": 15, + "4222920": 15, + "4222980": 15, + "4223010": 15, + "4223040": 15, + "4223220": 15, + "4223250": 15, + "4223490": 15, + "4223550": 15, + "4223640": 15, + "4223700": 15, + "4223760": 15, + "4223790": 15, + "4223820": 15, + "4223850": 15, + "4223880": 15, + "4223970": 15, + "4224000": 15, + "4224030": 15, + "4224060": 15, + "4224090": 15, + "4224120": 15, + "4224150": 15, + "4224210": 15, + "4224240": 15, + "4224300": 15, + "4224320": 15, + "4224360": 15, + "4224390": 15, + "4224480": 15, + "4224510": 15, + "4224540": 15, + "4224570": 15, + "4224630": 15, + "4224650": 15, + "4224750": 15, + "4224790": 15, + "4224820": 15, + "4224870": 15, + "4224960": 15, + "4224970": 15, + "4224990": 15, + "4225080": 15, + "4225110": 15, + "4225140": 15, + "4225170": 15, + "4225200": 15, + "4225230": 15, + "4225290": 15, + "4225440": 15, + "4225590": 15, + "4225650": 15, + "4225680": 15, + "4225740": 15, + "4225830": 15, + "4225950": 15, + "4225980": 15, + "4226010": 15, + "4226040": 15, + "4226070": 15, + "4226130": 15, + "4226250": 15, + "4226300": 15, + "4226370": 15, + "4226390": 15, + "4226400": 15, + "4226430": 15, + "4226460": 15, + "4226520": 15, + "4226550": 15, + "4226580": 15, + "4226610": 15, + "4226700": 15, + "4226730": 15, + "4226760": 15, + "4226820": 15, + "4226850": 15, + "4299997": 12, + "4299998": 3, + "4400030": 15, + "4400065": 15, + "4400090": 15, + "4400120": 15, + "4400150": 15, + "4400210": 15, + "4400240": 15, + "4400270": 15, + "4400300": 15, + "4400330": 15, + "4400360": 15, + "4400390": 15, + "4400420": 15, + "4400450": 15, + "4400510": 15, + "4400540": 15, + "4400570": 15, + "4400600": 15, + "4400630": 15, + "4400660": 15, + "4400690": 15, + "4400720": 15, + "4400750": 15, + "4400780": 15, + "4400810": 15, + "4400840": 15, + "4400870": 15, + "4400900": 15, + "4400960": 15, + "4400990": 15, + "4401020": 15, + "4401050": 15, + "4401110": 15, + "4401140": 15, + "4401170": 15, + "4401200": 15, + "4499997": 3, + "4499998": 3, + "4500002": 15, + "4500005": 15, + "4500006": 15, + "4500012": 5, + "4500690": 15, + "4500720": 15, + "4500750": 15, + "4500780": 15, + "4500810": 15, + "4500840": 15, + "4500870": 15, + "4500900": 15, + "4500930": 14, + "4500960": 14, + "4501020": 14, + "4501050": 14, + "4501080": 15, + "4501110": 15, + "4501170": 15, + "4501250": 15, + "4501440": 15, + "4501500": 15, + "4501530": 15, + "4501560": 15, + "4501740": 14, + "4501770": 14, + "4501800": 14, + "4501830": 15, + "4501860": 15, + "4501890": 5, + "4501920": 15, + "4501950": 15, + "4502010": 15, + "4502070": 15, + "4502100": 15, + "4502130": 15, + "4502160": 15, + "4502190": 15, + "4502220": 14, + "4502250": 15, + "4502280": 15, + "4502310": 15, + "4502340": 15, + "4502370": 15, + "4502400": 15, + "4502430": 14, + "4502460": 14, + "4502490": 15, + "4502520": 15, + "4502550": 15, + "4502580": 15, + "4502610": 15, + "4502640": 15, + "4502670": 15, + "4502700": 15, + "4502730": 15, + "4502760": 15, + "4502790": 15, + "4502820": 15, + "4502850": 5, + "4502880": 5, + "4502970": 15, + "4503000": 15, + "4503030": 15, + "4503060": 15, + "4503150": 11, + "4503180": 11, + "4503210": 11, + "4503330": 15, + "4503360": 15, + "4503390": 15, + "4503460": 15, + "4503480": 15, + "4503510": 15, + "4503540": 15, + "4503570": 15, + "4503600": 15, + "4503630": 15, + "4503660": 15, + "4503690": 3, + "4503720": 3, + "4503750": 15, + "4503780": 15, + "4503810": 15, + "4503840": 15, + "4503870": 15, + "4503900": 15, + "4503902": 12, + "4503908": 10, + "4503910": 4, + "4503912": 1, + "4503914": 1, + "4503915": 1, + "4503916": 1, + "4545013": 15, + "4545079": 15, + "4599997": 6, + "4600002": 15, + "4600003": 15, + "4600025": 15, + "4600028": 15, + "4600036": 15, + "4600041": 15, + "4600042": 15, + "4600045": 15, + "4600046": 15, + "4600052": 15, + "4600053": 15, + "4601026": 15, + "4601027": 15, + "4601028": 15, + "4602070": 15, + "4602640": 15, + "4603720": 15, + "4603780": 15, + "4603932": 15, + "4604270": 15, + "4604680": 15, + "4605610": 15, + "4606240": 15, + "4606360": 15, + "4606960": 15, + "4607050": 15, + "4607400": 15, + "4607670": 15, + "4607800": 15, + "4607950": 15, + "4608230": 3, + "4608520": 15, + "4609300": 15, + "4609512": 15, + "4610320": 15, + "4610560": 15, + "4611070": 1, + "4611280": 15, + "4611760": 15, + "4612000": 15, + "4612300": 15, + "4612940": 15, + "4614100": 15, + "4614130": 15, + "4616050": 1, + "4616230": 7, + "4616950": 15, + "4617850": 15, + "4618120": 15, + "4619170": 15, + "4619410": 15, + "4619450": 15, + "4619580": 15, + "4620100": 15, + "4620850": 15, + "4621300": 15, + "4621340": 15, + "4621390": 15, + "4621400": 15, + "4621420": 15, + "4622410": 15, + "4622500": 15, + "4622560": 15, + "4622940": 15, + "4623040": 1, + "4624030": 15, + "4624390": 15, + "4624540": 15, + "4624850": 15, + "4625500": 15, + "4626370": 15, + "4626490": 15, + "4626970": 15, + "4629340": 9, + "4629880": 15, + "4630490": 15, + "4630800": 15, + "4631350": 15, + "4631560": 1, + "4631710": 15, + "4632340": 15, + "4632430": 15, + "4633360": 15, + "4634440": 15, + "4634480": 15, + "4634600": 15, + "4635010": 3, + "4635400": 5, + "4635480": 15, + "4635500": 1, + "4636060": 15, + "4636150": 15, + "4636270": 1, + "4636990": 15, + "4638220": 15, + "4639540": 15, + "4639600": 15, + "4639990": 15, + "4640860": 15, + "4641300": 15, + "4641520": 15, + "4641550": 15, + "4641640": 15, + "4644770": 15, + "4644940": 15, + "4645450": 15, + "4646260": 15, + "4646380": 15, + "4647100": 15, + "4647942": 14, + "4647972": 1, + "4648390": 15, + "4648450": 1, + "4648780": 15, + "4649650": 15, + "4650670": 15, + "4650850": 15, + "4651750": 15, + "4651790": 1, + "4652770": 15, + "4654270": 15, + "4654300": 15, + "4655260": 15, + "4655710": 15, + "4657970": 1, + "4659820": 15, + "4660450": 15, + "4663360": 15, + "4663400": 3, + "4664140": 15, + "4665180": 15, + "4665250": 3, + "4665460": 15, + "4666270": 15, + "4666300": 15, + "4666900": 1, + "4666930": 15, + "4669540": 7, + "4669930": 15, + "4670140": 15, + "4671880": 15, + "4672090": 15, + "4672450": 15, + "4674370": 15, + "4674520": 15, + "4675420": 15, + "4675600": 15, + "4675660": 15, + "4676020": 15, + "4676620": 15, + "4676680": 15, + "4676740": 15, + "4676990": 15, + "4677460": 15, + "4678300": 15, + "4678510": 15, + "4678570": 15, + "4679350": 15, + "4679710": 15, + "4680100": 15, + "4680130": 1, + "4680190": 15, + "4680430": 15, + "4680437": 15, + "4680438": 15, + "4680439": 15, + "4680440": 14, + "4680441": 14, + "4680445": 8, + "4700001": 15, + "4700030": 15, + "4700060": 15, + "4700078": 15, + "4700090": 15, + "4700120": 15, + "4700148": 10, + "4700149": 8, + "4700150": 8, + "4700151": 8, + "4700152": 8, + "4700153": 8, + "4700154": 8, + "4700180": 15, + "4700210": 15, + "4700240": 15, + "4700270": 15, + "4700300": 15, + "4700330": 15, + "4700360": 15, + "4700420": 15, + "4700450": 15, + "4700510": 15, + "4700570": 15, + "4700600": 15, + "4700630": 15, + "4700660": 15, + "4700690": 15, + "4700720": 15, + "4700750": 15, + "4700780": 15, + "4700850": 15, + "4700900": 15, + "4700930": 15, + "4700960": 15, + "4700990": 15, + "4701020": 15, + "4701050": 15, + "4701080": 15, + "4701110": 15, + "4701140": 15, + "4701170": 15, + "4701200": 15, + "4701230": 15, + "4701260": 15, + "4701290": 15, + "4701390": 15, + "4701400": 15, + "4701410": 15, + "4701440": 15, + "4701470": 15, + "4701500": 15, + "4701530": 15, + "4701590": 15, + "4701620": 15, + "4701650": 15, + "4701680": 15, + "4701740": 15, + "4701770": 15, + "4701800": 15, + "4701830": 15, + "4701860": 15, + "4701890": 15, + "4701920": 15, + "4701950": 15, + "4701980": 15, + "4702010": 15, + "4702070": 15, + "4702100": 15, + "4702130": 15, + "4702160": 15, + "4702190": 15, + "4702220": 15, + "4702280": 15, + "4702310": 15, + "4702340": 15, + "4702370": 15, + "4702400": 15, + "4702430": 15, + "4702460": 15, + "4702490": 15, + "4702520": 15, + "4702550": 15, + "4702580": 15, + "4702610": 15, + "4702640": 15, + "4702670": 15, + "4702700": 15, + "4702760": 15, + "4702790": 15, + "4702820": 15, + "4702880": 15, + "4702910": 15, + "4702940": 5, + "4702970": 15, + "4703000": 15, + "4703030": 15, + "4703060": 15, + "4703090": 15, + "4703150": 15, + "4703180": 15, + "4703210": 15, + "4703240": 15, + "4703270": 15, + "4703300": 15, + "4703330": 15, + "4703360": 15, + "4703390": 15, + "4703420": 15, + "4703450": 15, + "4703480": 15, + "4703510": 15, + "4703540": 15, + "4703590": 15, + "4703600": 15, + "4703660": 15, + "4703690": 15, + "4703720": 15, + "4703750": 15, + "4703780": 15, + "4703810": 5, + "4703870": 15, + "4703900": 15, + "4703960": 15, + "4703990": 15, + "4704020": 15, + "4704050": 15, + "4704080": 15, + "4704100": 15, + "4704170": 15, + "4704200": 15, + "4704230": 15, + "4704260": 15, + "4704290": 15, + "4704320": 15, + "4704350": 15, + "4704380": 15, + "4704440": 15, + "4704470": 15, + "4704490": 15, + "4704500": 15, + "4704530": 15, + "4704550": 15, + "4747001": 15, + "4747002": 8, + "4747029": 15, + "4747031": 15, + "4747033": 15, + "4747034": 15, + "4747073": 15, + "4747077": 15, + "4747079": 15, + "4747103": 5, + "4747107": 15, + "4747108": 15, + "4747123": 15, + "4747143": 15, + "4747149": 15, + "4747187": 15, + "4747189": 15, + "4799997": 3, + "4800001": 15, + "4800002": 15, + "4800003": 15, + "4800005": 15, + "4800006": 15, + "4800007": 15, + "4800008": 15, + "4800009": 15, + "4800010": 15, + "4800011": 15, + "4800012": 15, + "4807350": 15, + "4807380": 15, + "4807410": 15, + "4807440": 15, + "4807470": 15, + "4807500": 15, + "4807530": 15, + "4807590": 15, + "4807650": 15, + "4807680": 15, + "4807710": 15, + "4807780": 15, + "4807800": 15, + "4807830": 15, + "4807890": 15, + "4807950": 15, + "4807980": 15, + "4808090": 15, + "4808100": 15, + "4808130": 15, + "4808160": 15, + "4808190": 15, + "4808230": 15, + "4808280": 15, + "4808310": 15, + "4808340": 15, + "4808400": 15, + "4808430": 15, + "4808460": 15, + "4808490": 15, + "4808520": 15, + "4808550": 15, + "4808580": 15, + "4808610": 15, + "4808670": 15, + "4808700": 15, + "4808730": 15, + "4808870": 15, + "4808880": 15, + "4808910": 15, + "4808940": 15, + "4809000": 15, + "4809030": 15, + "4809060": 15, + "4809090": 15, + "4809150": 15, + "4809200": 15, + "4809280": 15, + "4809300": 15, + "4809330": 15, + "4809360": 15, + "4809390": 15, + "4809410": 15, + "4809450": 15, + "4809540": 15, + "4809570": 15, + "4809630": 15, + "4809670": 15, + "4809690": 15, + "4809720": 15, + "4809750": 15, + "4809780": 15, + "4809810": 15, + "4809860": 15, + "4809870": 15, + "4809980": 15, + "4810140": 15, + "4810170": 15, + "4810200": 15, + "4810230": 15, + "4810260": 15, + "4810320": 15, + "4810350": 15, + "4810380": 15, + "4810440": 15, + "4810470": 15, + "4810500": 15, + "4810590": 15, + "4810620": 15, + "4810650": 15, + "4810710": 15, + "4810740": 15, + "4810780": 15, + "4810800": 15, + "4810830": 15, + "4810860": 15, + "4810890": 15, + "4810910": 15, + "4810950": 15, + "4810990": 15, + "4811010": 15, + "4811040": 15, + "4811070": 15, + "4811110": 15, + "4811190": 15, + "4811220": 15, + "4811250": 15, + "4811280": 15, + "4811310": 15, + "4811340": 15, + "4811400": 15, + "4811430": 15, + "4811460": 15, + "4811490": 15, + "4811520": 15, + "4811550": 15, + "4811580": 15, + "4811610": 15, + "4811640": 15, + "4811680": 15, + "4811700": 15, + "4811730": 15, + "4811790": 15, + "4811820": 15, + "4811850": 15, + "4811910": 15, + "4811990": 15, + "4812060": 15, + "4812090": 15, + "4812120": 15, + "4812150": 15, + "4812180": 15, + "4812220": 15, + "4812240": 15, + "4812330": 5, + "4812360": 15, + "4812390": 15, + "4812420": 15, + "4812460": 15, + "4812480": 15, + "4812510": 15, + "4812540": 15, + "4812640": 15, + "4812660": 15, + "4812700": 15, + "4812750": 15, + "4812780": 15, + "4812810": 15, + "4812870": 15, + "4812990": 15, + "4813020": 15, + "4813050": 15, + "4813110": 15, + "4813170": 15, + "4813200": 15, + "4813230": 15, + "4813260": 15, + "4813290": 15, + "4813320": 15, + "4813350": 15, + "4813380": 15, + "4813410": 15, + "4813440": 15, + "4813500": 15, + "4813530": 15, + "4813590": 15, + "4813620": 15, + "4813650": 15, + "4813680": 15, + "4813710": 15, + "4813740": 15, + "4813770": 15, + "4813800": 15, + "4813860": 15, + "4813890": 15, + "4813920": 15, + "4813960": 15, + "4813980": 15, + "4814010": 15, + "4814070": 15, + "4814130": 15, + "4814160": 15, + "4814190": 15, + "4814250": 15, + "4814280": 15, + "4814310": 15, + "4814370": 15, + "4814400": 15, + "4814430": 15, + "4814450": 15, + "4814490": 15, + "4814520": 15, + "4814550": 15, + "4814580": 15, + "4814600": 15, + "4814640": 15, + "4814670": 15, + "4814700": 15, + "4814730": 15, + "4814760": 15, + "4814790": 15, + "4814820": 15, + "4814850": 15, + "4814880": 15, + "4814920": 15, + "4814970": 15, + "4815000": 15, + "4815120": 15, + "4815150": 15, + "4815180": 15, + "4815210": 15, + "4815240": 15, + "4815270": 15, + "4815300": 15, + "4815330": 15, + "4815360": 15, + "4815400": 15, + "4815420": 15, + "4815480": 15, + "4815510": 15, + "4815540": 15, + "4815570": 15, + "4815600": 15, + "4815690": 15, + "4815720": 15, + "4815750": 15, + "4815810": 15, + "4815840": 15, + "4815870": 15, + "4815910": 15, + "4815930": 15, + "4815960": 15, + "4815990": 15, + "4816020": 15, + "4816080": 15, + "4816110": 15, + "4816140": 15, + "4816180": 15, + "4816200": 15, + "4816230": 15, + "4816260": 15, + "4816290": 15, + "4816320": 15, + "4816350": 15, + "4816380": 15, + "4816410": 15, + "4816440": 15, + "4816500": 15, + "4816530": 15, + "4816570": 15, + "4816620": 15, + "4816650": 15, + "4816710": 15, + "4816740": 15, + "4816770": 15, + "4816860": 15, + "4816890": 15, + "4816920": 15, + "4816950": 15, + "4816980": 15, + "4817010": 15, + "4817040": 15, + "4817070": 15, + "4817100": 15, + "4817130": 15, + "4817160": 15, + "4817190": 15, + "4817280": 15, + "4817390": 15, + "4817400": 15, + "4817460": 15, + "4817550": 15, + "4817580": 15, + "4817610": 15, + "4817640": 15, + "4817700": 15, + "4817730": 15, + "4817760": 15, + "4817790": 15, + "4817830": 15, + "4817850": 15, + "4817880": 15, + "4817960": 15, + "4818000": 15, + "4818030": 15, + "4818060": 15, + "4818070": 15, + "4818120": 15, + "4818150": 15, + "4818180": 15, + "4818210": 15, + "4818280": 15, + "4818300": 15, + "4818330": 15, + "4818360": 15, + "4818390": 15, + "4818480": 15, + "4818540": 15, + "4818600": 15, + "4818660": 14, + "4818690": 15, + "4818720": 15, + "4818750": 15, + "4818780": 15, + "4818810": 15, + "4818840": 15, + "4818890": 15, + "4818900": 15, + "4818940": 15, + "4819020": 15, + "4819050": 15, + "4819080": 15, + "4819110": 15, + "4819140": 15, + "4819170": 15, + "4819280": 15, + "4819320": 15, + "4819350": 15, + "4819380": 15, + "4819440": 15, + "4819500": 15, + "4819530": 15, + "4819560": 15, + "4819620": 15, + "4819650": 15, + "4819700": 15, + "4819740": 15, + "4819770": 15, + "4819820": 15, + "4819830": 15, + "4819840": 15, + "4819950": 15, + "4819980": 15, + "4820010": 15, + "4820040": 15, + "4820070": 15, + "4820100": 15, + "4820130": 15, + "4820160": 15, + "4820190": 15, + "4820220": 15, + "4820250": 15, + "4820280": 15, + "4820310": 15, + "4820340": 15, + "4820370": 15, + "4820400": 15, + "4820460": 15, + "4820500": 15, + "4820520": 15, + "4820550": 15, + "4820600": 15, + "4820610": 15, + "4820640": 15, + "4820700": 15, + "4820760": 15, + "4820790": 15, + "4820850": 15, + "4820960": 15, + "4820970": 15, + "4821000": 15, + "4821030": 15, + "4821060": 15, + "4821090": 15, + "4821150": 15, + "4821180": 15, + "4821270": 15, + "4821300": 15, + "4821330": 15, + "4821360": 15, + "4821390": 15, + "4821420": 15, + "4821450": 15, + "4821480": 15, + "4821540": 15, + "4821560": 15, + "4821590": 15, + "4821600": 15, + "4821630": 15, + "4821660": 15, + "4821720": 15, + "4821750": 15, + "4821780": 15, + "4821810": 15, + "4821840": 15, + "4821900": 15, + "4821930": 15, + "4821960": 15, + "4821990": 15, + "4822020": 15, + "4822050": 15, + "4822120": 15, + "4822140": 15, + "4822170": 15, + "4822230": 15, + "4822260": 15, + "4822320": 15, + "4822350": 15, + "4822380": 15, + "4822410": 15, + "4822470": 15, + "4822500": 15, + "4822530": 15, + "4822560": 15, + "4822590": 15, + "4822620": 15, + "4822650": 15, + "4822680": 15, + "4822710": 15, + "4822740": 15, + "4822770": 15, + "4822800": 15, + "4822830": 15, + "4822850": 15, + "4822890": 15, + "4822920": 15, + "4822970": 15, + "4822980": 15, + "4823010": 15, + "4823040": 15, + "4823070": 15, + "4823100": 15, + "4823140": 12, + "4823160": 15, + "4823190": 15, + "4823250": 15, + "4823280": 15, + "4823310": 15, + "4823370": 15, + "4823400": 15, + "4823430": 15, + "4823460": 15, + "4823490": 15, + "4823640": 15, + "4823670": 15, + "4823700": 15, + "4823730": 15, + "4823760": 15, + "4823790": 15, + "4823820": 15, + "4823850": 15, + "4823880": 15, + "4823910": 15, + "4823970": 15, + "4824000": 15, + "4824030": 15, + "4824060": 15, + "4824100": 15, + "4824120": 15, + "4824150": 15, + "4824180": 15, + "4824210": 15, + "4824240": 15, + "4824260": 15, + "4824300": 15, + "4824330": 15, + "4824360": 15, + "4824420": 15, + "4824450": 15, + "4824480": 15, + "4824530": 15, + "4824590": 15, + "4824600": 15, + "4824630": 15, + "4824660": 15, + "4824730": 15, + "4824750": 15, + "4824780": 15, + "4824810": 15, + "4824840": 15, + "4824900": 15, + "4824930": 15, + "4824960": 15, + "4824990": 15, + "4825020": 15, + "4825110": 15, + "4825140": 15, + "4825170": 15, + "4825200": 15, + "4825230": 15, + "4825260": 15, + "4825290": 15, + "4825320": 15, + "4825380": 3, + "4825410": 15, + "4825440": 15, + "4825470": 15, + "4825500": 15, + "4825530": 15, + "4825560": 15, + "4825590": 15, + "4825620": 15, + "4825660": 15, + "4825680": 15, + "4825710": 15, + "4825740": 15, + "4825790": 15, + "4825800": 15, + "4825870": 15, + "4825890": 15, + "4825920": 15, + "4825950": 15, + "4825980": 15, + "4826040": 15, + "4826070": 15, + "4826100": 15, + "4826130": 15, + "4826160": 9, + "4826190": 15, + "4826220": 15, + "4826250": 15, + "4826280": 15, + "4826310": 15, + "4826340": 15, + "4826370": 15, + "4826400": 15, + "4826430": 15, + "4826470": 15, + "4826490": 15, + "4826580": 15, + "4826610": 15, + "4826640": 15, + "4826670": 15, + "4826700": 15, + "4826790": 15, + "4826850": 15, + "4826910": 15, + "4826970": 15, + "4827000": 15, + "4827030": 15, + "4827060": 15, + "4827090": 15, + "4827120": 15, + "4827180": 15, + "4827210": 15, + "4827240": 15, + "4827270": 15, + "4827300": 15, + "4827330": 15, + "4827390": 15, + "4827420": 15, + "4827450": 15, + "4827510": 15, + "4827540": 15, + "4827570": 15, + "4827600": 15, + "4827630": 15, + "4827690": 15, + "4827720": 15, + "4827750": 15, + "4827780": 15, + "4827810": 15, + "4827870": 15, + "4827890": 15, + "4827930": 15, + "4827960": 15, + "4827990": 15, + "4828020": 15, + "4828110": 15, + "4828140": 15, + "4828170": 15, + "4828200": 15, + "4828230": 15, + "4828290": 15, + "4828350": 15, + "4828380": 15, + "4828410": 15, + "4828500": 15, + "4828530": 15, + "4828550": 15, + "4828590": 15, + "4828620": 15, + "4828650": 15, + "4828680": 15, + "4828710": 15, + "4828740": 15, + "4828780": 15, + "4828800": 15, + "4828830": 15, + "4828890": 15, + "4828920": 15, + "4828980": 15, + "4829010": 15, + "4829040": 15, + "4829070": 1, + "4829100": 15, + "4829130": 15, + "4829160": 15, + "4829190": 15, + "4829220": 15, + "4829250": 15, + "4829280": 15, + "4829370": 15, + "4829400": 15, + "4829460": 15, + "4829520": 15, + "4829580": 15, + "4829670": 15, + "4829700": 15, + "4829760": 15, + "4829820": 15, + "4829850": 15, + "4829880": 15, + "4829910": 15, + "4829940": 15, + "4830000": 15, + "4830030": 15, + "4830060": 15, + "4830120": 15, + "4830180": 15, + "4830210": 15, + "4830250": 15, + "4830300": 15, + "4830340": 15, + "4830360": 15, + "4830390": 15, + "4830420": 15, + "4830450": 15, + "4830480": 15, + "4830570": 15, + "4830600": 15, + "4830640": 15, + "4830660": 15, + "4830690": 15, + "4830720": 15, + "4830750": 15, + "4830780": 15, + "4830810": 15, + "4830870": 15, + "4830930": 15, + "4830950": 15, + "4831040": 15, + "4831170": 15, + "4831200": 15, + "4831230": 15, + "4831260": 15, + "4831290": 15, + "4831320": 15, + "4831380": 15, + "4831410": 15, + "4831470": 15, + "4831500": 15, + "4831560": 15, + "4831620": 15, + "4831650": 15, + "4831760": 15, + "4831770": 15, + "4831860": 15, + "4831890": 15, + "4831920": 15, + "4831950": 15, + "4831970": 15, + "4832010": 15, + "4832090": 15, + "4832130": 15, + "4832160": 15, + "4832190": 15, + "4832220": 15, + "4832250": 15, + "4832280": 15, + "4832310": 15, + "4832340": 15, + "4832370": 15, + "4832400": 15, + "4832430": 15, + "4832460": 15, + "4832490": 15, + "4832610": 15, + "4832640": 15, + "4832700": 15, + "4832730": 15, + "4832740": 15, + "4832790": 15, + "4832880": 15, + "4832910": 15, + "4832940": 15, + "4832970": 15, + "4833010": 15, + "4833030": 15, + "4833060": 5, + "4833090": 15, + "4833120": 15, + "4833180": 15, + "4833210": 5, + "4833240": 15, + "4833270": 15, + "4833340": 15, + "4833360": 15, + "4833390": 15, + "4833420": 15, + "4833570": 15, + "4833630": 15, + "4833660": 15, + "4833690": 15, + "4833720": 15, + "4833780": 15, + "4833840": 15, + "4833870": 15, + "4833900": 15, + "4833960": 15, + "4833980": 15, + "4834020": 15, + "4834050": 15, + "4834110": 15, + "4834140": 15, + "4834170": 15, + "4834230": 15, + "4834260": 15, + "4834290": 15, + "4834320": 15, + "4834380": 15, + "4834410": 15, + "4834440": 15, + "4834470": 15, + "4834500": 15, + "4834550": 15, + "4834560": 15, + "4834630": 15, + "4834650": 15, + "4834680": 15, + "4834710": 15, + "4834770": 15, + "4834800": 15, + "4834830": 15, + "4834860": 15, + "4834920": 15, + "4834980": 15, + "4835010": 15, + "4835040": 15, + "4835070": 15, + "4835100": 15, + "4835130": 15, + "4835190": 15, + "4835250": 15, + "4835310": 15, + "4835340": 15, + "4835370": 15, + "4835400": 15, + "4835430": 15, + "4835490": 15, + "4835520": 15, + "4835550": 15, + "4835560": 15, + "4835570": 15, + "4835580": 15, + "4835700": 15, + "4835730": 15, + "4835740": 15, + "4835760": 15, + "4835800": 15, + "4835820": 15, + "4835850": 15, + "4835890": 15, + "4835910": 15, + "4836000": 15, + "4836180": 15, + "4836210": 15, + "4836240": 15, + "4836300": 15, + "4836360": 15, + "4836390": 15, + "4836420": 15, + "4836450": 15, + "4836480": 15, + "4836510": 15, + "4836540": 15, + "4836570": 15, + "4836630": 15, + "4836660": 15, + "4836750": 15, + "4836780": 15, + "4836930": 15, + "4836960": 15, + "4836970": 15, + "4836990": 15, + "4837020": 15, + "4837080": 15, + "4837110": 15, + "4837140": 15, + "4837170": 15, + "4837200": 15, + "4837230": 15, + "4837260": 15, + "4837320": 15, + "4837380": 15, + "4837410": 15, + "4837440": 15, + "4837470": 15, + "4837500": 15, + "4837590": 15, + "4837650": 15, + "4837710": 15, + "4837740": 15, + "4837800": 15, + "4837830": 15, + "4837860": 15, + "4837900": 15, + "4838040": 15, + "4838080": 15, + "4838100": 15, + "4838160": 11, + "4838190": 15, + "4838220": 15, + "4838280": 15, + "4838310": 15, + "4838360": 15, + "4838400": 15, + "4838430": 15, + "4838460": 15, + "4838490": 15, + "4838520": 15, + "4838580": 15, + "4838610": 15, + "4838640": 15, + "4838670": 5, + "4838700": 15, + "4838730": 15, + "4838760": 15, + "4838790": 15, + "4838820": 15, + "4838850": 15, + "4838900": 15, + "4838910": 15, + "4838970": 15, + "4839000": 15, + "4839030": 15, + "4839060": 15, + "4839120": 15, + "4839150": 15, + "4839180": 15, + "4839210": 15, + "4839270": 15, + "4839300": 15, + "4839330": 15, + "4839360": 15, + "4839390": 15, + "4839450": 15, + "4839480": 15, + "4839510": 15, + "4839540": 15, + "4839570": 15, + "4839600": 15, + "4839630": 15, + "4839690": 15, + "4839750": 15, + "4839780": 15, + "4839870": 15, + "4839900": 15, + "4839930": 15, + "4839960": 15, + "4839990": 15, + "4840020": 15, + "4840080": 15, + "4840110": 15, + "4840170": 15, + "4840200": 15, + "4840230": 15, + "4840290": 15, + "4840320": 15, + "4840350": 15, + "4840380": 15, + "4840410": 15, + "4840440": 15, + "4840470": 15, + "4840500": 15, + "4840550": 15, + "4840590": 15, + "4840620": 15, + "4840650": 15, + "4840680": 15, + "4840710": 15, + "4840740": 15, + "4840770": 15, + "4840800": 15, + "4840890": 15, + "4840920": 15, + "4840950": 15, + "4841010": 15, + "4841070": 15, + "4841100": 15, + "4841130": 15, + "4841190": 15, + "4841220": 15, + "4841250": 15, + "4841280": 15, + "4841340": 15, + "4841350": 15, + "4841400": 15, + "4841430": 15, + "4841460": 7, + "4841520": 15, + "4841550": 15, + "4841580": 15, + "4841610": 15, + "4841670": 15, + "4841700": 15, + "4841760": 15, + "4841790": 15, + "4841820": 15, + "4841850": 15, + "4841880": 15, + "4841910": 15, + "4841970": 15, + "4842000": 15, + "4842030": 15, + "4842060": 15, + "4842090": 15, + "4842120": 15, + "4842210": 15, + "4842240": 15, + "4842280": 15, + "4842300": 15, + "4842330": 15, + "4842360": 15, + "4842390": 15, + "4842420": 15, + "4842450": 15, + "4842480": 15, + "4842510": 15, + "4842540": 15, + "4842570": 15, + "4842630": 15, + "4842660": 15, + "4842690": 15, + "4842720": 15, + "4842780": 15, + "4842810": 15, + "4842840": 15, + "4842870": 15, + "4842900": 15, + "4842930": 15, + "4842960": 15, + "4842990": 15, + "4843110": 15, + "4843140": 15, + "4843170": 15, + "4843200": 15, + "4843230": 15, + "4843260": 15, + "4843290": 15, + "4843320": 15, + "4843350": 15, + "4843400": 15, + "4843470": 15, + "4843530": 15, + "4843560": 15, + "4843650": 15, + "4843680": 15, + "4843720": 15, + "4843740": 15, + "4843760": 15, + "4843800": 15, + "4843860": 15, + "4843890": 15, + "4843920": 15, + "4843950": 15, + "4843980": 15, + "4844010": 15, + "4844040": 15, + "4844110": 15, + "4844150": 15, + "4844160": 15, + "4844250": 15, + "4844280": 15, + "4844310": 15, + "4844370": 15, + "4844410": 15, + "4844430": 15, + "4844470": 15, + "4844490": 15, + "4844520": 15, + "4844580": 15, + "4844670": 15, + "4844710": 15, + "4844730": 15, + "4844800": 15, + "4844810": 15, + "4844820": 15, + "4844890": 15, + "4844910": 15, + "4844940": 15, + "4844960": 15, + "4845000": 15, + "4845040": 15, + "4845090": 15, + "4845120": 15, + "4845150": 15, + "4845180": 15, + "4845210": 15, + "4845240": 15, + "4845330": 15, + "4845380": 15, + "4845420": 15, + "4845450": 15, + "4845480": 15, + "4845540": 15, + "4845570": 15, + "4845600": 15, + "4845630": 15, + "4845670": 15, + "4845690": 15, + "4845720": 15, + "4845780": 15, + "4845840": 15, + "4845900": 15, + "4845950": 15, + "4845990": 15, + "4846080": 15, + "4846110": 10, + "4846170": 15, + "4846200": 15, + "4846230": 15, + "4846260": 15, + "4846320": 15, + "4846350": 15, + "4846380": 15, + "4846410": 15, + "4846440": 15, + "4846470": 15, + "4846500": 15, + "4846530": 15, + "4846590": 15, + "4846620": 15, + "4846650": 15, + "4846680": 15, + "4846710": 15, + "4846740": 15, + "4846770": 15, + "4848021": 8, + "4848143": 10, + "4848285": 15, + "4848309": 4, + "4848355": 5, + "4848449": 9, + "4848483": 1, + "4848489": 4, + "4899130": 15, + "4900030": 15, + "4900060": 15, + "4900090": 15, + "4900120": 15, + "4900142": 14, + "4900150": 15, + "4900180": 15, + "4900210": 15, + "4900240": 15, + "4900270": 15, + "4900300": 15, + "4900330": 15, + "4900360": 15, + "4900390": 15, + "4900420": 15, + "4900450": 15, + "4900480": 15, + "4900510": 15, + "4900540": 15, + "4900570": 15, + "4900600": 15, + "4900630": 15, + "4900660": 15, + "4900690": 15, + "4900720": 15, + "4900750": 15, + "4900780": 15, + "4900810": 15, + "4900840": 15, + "4900870": 15, + "4900900": 15, + "4900930": 15, + "4900960": 15, + "4900990": 15, + "4901020": 15, + "4901050": 15, + "4901080": 15, + "4901110": 15, + "4901140": 15, + "4901170": 15, + "4901200": 15, + "5000001": 7, + "5000002": 7, + "5000003": 7, + "5000004": 4, + "5000006": 9, + "5000007": 4, + "5000008": 7, + "5000009": 7, + "5000011": 9, + "5000012": 9, + "5000013": 9, + "5000014": 9, + "5000015": 9, + "5000016": 9, + "5000017": 9, + "5000018": 9, + "5000019": 9, + "5000020": 1, + "5000024": 15, + "5000026": 3, + "5000027": 3, + "5000385": 6, + "5000386": 2, + "5000390": 2, + "5000392": 2, + "5000393": 2, + "5000395": 5, + "5000396": 2, + "5000397": 2, + "5000398": 2, + "5000399": 2, + "5000400": 2, + "5000401": 2, + "5000402": 2, + "5000403": 2, + "5000404": 1, + "5000405": 3, + "5000406": 1, + "5000407": 1, + "5000408": 2, + "5000409": 2, + "5000410": 2, + "5000411": 2, + "5000412": 2, + "5000414": 2, + "5000415": 2, + "5000417": 2, + "5000418": 2, + "5000419": 2, + "5000421": 2, + "5000422": 2, + "5000423": 2, + "5000425": 2, + "5000426": 2, + "5000427": 2, + "5000429": 2, + "5000430": 2, + "5000431": 2, + "5000432": 2, + "5000433": 2, + "5000434": 2, + "5000435": 2, + "5000436": 2, + "5000437": 2, + "5000438": 2, + "5000439": 2, + "5000440": 2, + "5000441": 2, + "5000442": 2, + "5000443": 2, + "5000444": 2, + "5000445": 2, + "5000446": 2, + "5000447": 2, + "5000448": 2, + "5000449": 2, + "5000450": 2, + "5001710": 7, + "5001740": 7, + "5001770": 9, + "5001830": 9, + "5001860": 4, + "5001890": 7, + "5001920": 7, + "5001950": 7, + "5001980": 7, + "5002010": 7, + "5002040": 7, + "5002060": 7, + "5002070": 7, + "5002085": 7, + "5002100": 7, + "5002130": 7, + "5002160": 7, + "5002190": 7, + "5002220": 7, + "5002250": 7, + "5002280": 7, + "5002310": 7, + "5002340": 7, + "5002370": 7, + "5002400": 7, + "5002480": 7, + "5002490": 7, + "5002520": 7, + "5002550": 7, + "5002580": 7, + "5002610": 9, + "5002640": 7, + "5002670": 7, + "5002700": 7, + "5002730": 7, + "5002760": 7, + "5002790": 7, + "5002820": 15, + "5002850": 9, + "5002880": 7, + "5002910": 9, + "5002940": 9, + "5003010": 7, + "5003030": 7, + "5003060": 9, + "5003090": 7, + "5003120": 7, + "5003210": 7, + "5003240": 15, + "5003270": 7, + "5003330": 7, + "5003360": 9, + "5003390": 9, + "5003430": 7, + "5003450": 9, + "5003480": 9, + "5003510": 7, + "5003540": 7, + "5003570": 7, + "5003660": 7, + "5003690": 7, + "5003720": 7, + "5003750": 7, + "5003780": 7, + "5003810": 7, + "5003840": 10, + "5003870": 7, + "5003900": 7, + "5003930": 9, + "5003960": 7, + "5004020": 7, + "5004050": 7, + "5004080": 9, + "5004110": 7, + "5004140": 9, + "5004170": 7, + "5004200": 7, + "5004230": 4, + "5004260": 7, + "5004290": 7, + "5004320": 7, + "5004440": 7, + "5004470": 7, + "5004500": 9, + "5004530": 7, + "5004560": 7, + "5004580": 7, + "5004590": 15, + "5004620": 9, + "5004650": 7, + "5004680": 7, + "5004710": 9, + "5004740": 4, + "5004770": 7, + "5004800": 7, + "5004830": 9, + "5004860": 7, + "5004890": 7, + "5004920": 7, + "5004950": 6, + "5004960": 3, + "5004980": 7, + "5005010": 7, + "5005040": 7, + "5005050": 9, + "5005060": 7, + "5005070": 2, + "5005100": 7, + "5005120": 7, + "5005130": 7, + "5005160": 7, + "5005190": 2, + "5005220": 9, + "5005250": 7, + "5005280": 7, + "5005310": 7, + "5005340": 7, + "5005370": 7, + "5005400": 9, + "5005460": 7, + "5005490": 7, + "5005520": 7, + "5005550": 7, + "5005580": 7, + "5005610": 15, + "5005620": 7, + "5005640": 7, + "5005670": 7, + "5005700": 12, + "5005730": 7, + "5005760": 9, + "5005790": 7, + "5005810": 9, + "5005820": 7, + "5005840": 7, + "5005860": 7, + "5005880": 7, + "5005910": 7, + "5005940": 7, + "5005970": 7, + "5006000": 9, + "5006030": 9, + "5006060": 9, + "5006090": 7, + "5006120": 7, + "5006150": 7, + "5006180": 15, + "5006210": 7, + "5006240": 7, + "5006270": 7, + "5006300": 7, + "5006360": 7, + "5006390": 9, + "5006420": 2, + "5006450": 9, + "5006480": 7, + "5006540": 7, + "5006570": 7, + "5006600": 7, + "5006630": 7, + "5006660": 7, + "5006690": 7, + "5006720": 7, + "5006750": 7, + "5006780": 9, + "5006810": 7, + "5006840": 7, + "5006870": 7, + "5006900": 7, + "5006930": 9, + "5006960": 7, + "5006990": 7, + "5007020": 7, + "5007050": 15, + "5007080": 9, + "5007140": 7, + "5007170": 9, + "5007200": 9, + "5007230": 7, + "5007260": 9, + "5007320": 7, + "5007350": 7, + "5007380": 7, + "5007410": 7, + "5007440": 7, + "5007470": 15, + "5007500": 9, + "5007530": 15, + "5007560": 7, + "5007600": 7, + "5007620": 7, + "5007650": 15, + "5007680": 9, + "5007710": 6, + "5007740": 7, + "5007770": 7, + "5007800": 7, + "5007830": 9, + "5007860": 9, + "5007890": 7, + "5007920": 7, + "5007950": 7, + "5007980": 7, + "5008010": 9, + "5008040": 7, + "5008100": 7, + "5008130": 9, + "5008160": 7, + "5008190": 7, + "5008220": 7, + "5008224": 12, + "5008225": 9, + "5008228": 7, + "5008230": 5, + "5008235": 7, + "5008237": 7, + "5008240": 7, + "5008241": 7, + "5008242": 9, + "5008243": 9, + "5008244": 7, + "5008245": 7, + "5008246": 9, + "5008247": 7, + "5008248": 7, + "5008250": 7, + "5008280": 7, + "5008310": 9, + "5008370": 7, + "5008400": 7, + "5008430": 7, + "5008460": 7, + "5008520": 7, + "5008550": 7, + "5008580": 7, + "5008640": 7, + "5008670": 7, + "5008700": 9, + "5008760": 7, + "5008820": 7, + "5008850": 7, + "5008880": 7, + "5008910": 6, + "5008940": 7, + "5008970": 8, + "5009000": 7, + "5009020": 2, + "5009060": 7, + "5009120": 7, + "5009150": 7, + "5009180": 7, + "5009210": 7, + "5009240": 7, + "5009270": 9, + "5009300": 7, + "5009330": 9, + "5009360": 15, + "5009390": 9, + "5009420": 7, + "5009450": 7, + "5009480": 7, + "5009510": 7, + "5009540": 7, + "5009570": 4, + "5009600": 9, + "5050001": 4, + "5050002": 4, + "5050003": 4, + "5050004": 3, + "5099001": 2, + "5099002": 2, + "5099003": 2, + "5099004": 2, + "5099901": 6, + "5099902": 6, + "5099903": 6, + "5099904": 6, + "5099905": 6, + "5099906": 6, + "5099908": 5, + "5099909": 6, + "5099912": 6, + "5099913": 3, + "5099914": 6, + "5099918": 3, + "5099919": 6, + "5099920": 6, + "5099921": 6, + "5099922": 6, + "5099923": 6, + "5099924": 6, + "5099925": 6, + "5099926": 6, + "5099927": 6, + "5099928": 6, + "5099929": 5, + "5099930": 6, + "5099931": 6, + "5099932": 6, + "5099933": 6, + "5099934": 6, + "5099935": 6, + "5099936": 6, + "5099937": 3, + "5099938": 3, + "5099941": 4, + "5099942": 6, + "5099943": 3, + "5099946": 6, + "5099947": 6, + "5099948": 6, + "5099949": 6, + "5099950": 3, + "5099951": 6, + "5099952": 6, + "5099960": 3, + "5100022": 15, + "5100023": 15, + "5100036": 15, + "5100060": 15, + "5100090": 15, + "5100120": 15, + "5100152": 15, + "5100180": 15, + "5100210": 15, + "5100240": 15, + "5100270": 15, + "5100300": 15, + "5100330": 15, + "5100360": 15, + "5100365": 5, + "5100390": 15, + "5100420": 15, + "5100450": 15, + "5100480": 15, + "5100510": 15, + "5100540": 15, + "5100560": 15, + "5100600": 15, + "5100660": 15, + "5100690": 15, + "5100720": 15, + "5100750": 15, + "5100780": 15, + "5100810": 15, + "5100840": 15, + "5100870": 15, + "5100930": 15, + "5100960": 15, + "5100990": 14, + "5101020": 15, + "5101050": 15, + "5101080": 15, + "5101110": 15, + "5101140": 15, + "5101170": 15, + "5101190": 15, + "5101200": 15, + "5101230": 15, + "5101260": 15, + "5101290": 15, + "5101320": 15, + "5101350": 15, + "5101380": 15, + "5101410": 15, + "5101440": 15, + "5101470": 15, + "5101510": 15, + "5101560": 15, + "5101590": 15, + "5101620": 15, + "5101650": 15, + "5101690": 15, + "5101710": 15, + "5101740": 15, + "5101770": 15, + "5101800": 15, + "5101830": 15, + "5101860": 15, + "5101890": 15, + "5101920": 15, + "5101950": 15, + "5101980": 15, + "5102010": 15, + "5102070": 15, + "5102100": 15, + "5102120": 15, + "5102160": 15, + "5102190": 15, + "5102220": 15, + "5102250": 15, + "5102280": 15, + "5102310": 15, + "5102340": 15, + "5102360": 15, + "5102370": 15, + "5102390": 15, + "5102400": 15, + "5102430": 15, + "5102460": 15, + "5102490": 15, + "5102520": 15, + "5102580": 15, + "5102610": 15, + "5102640": 15, + "5102670": 15, + "5102710": 15, + "5102730": 15, + "5102760": 15, + "5102790": 15, + "5102820": 15, + "5102850": 15, + "5102880": 15, + "5102910": 15, + "5102940": 15, + "5102980": 15, + "5103000": 15, + "5103030": 15, + "5103060": 15, + "5103090": 15, + "5103130": 15, + "5103150": 15, + "5103180": 15, + "5103210": 15, + "5103240": 15, + "5103270": 15, + "5103300": 15, + "5103330": 15, + "5103370": 15, + "5103390": 15, + "5103420": 15, + "5103460": 15, + "5103480": 15, + "5103510": 15, + "5103520": 15, + "5103600": 15, + "5103640": 15, + "5103660": 15, + "5103690": 15, + "5103710": 15, + "5103750": 15, + "5103780": 15, + "5103810": 15, + "5103840": 15, + "5103870": 15, + "5103900": 15, + "5103930": 15, + "5103950": 15, + "5103980": 15, + "5104020": 15, + "5104050": 15, + "5104080": 15, + "5104110": 15, + "5104150": 15, + "5300001": 15, + "5300002": 15, + "5300003": 15, + "5300030": 15, + "5300060": 15, + "5300090": 15, + "5300150": 15, + "5300240": 15, + "5300280": 15, + "5300300": 15, + "5300330": 15, + "5300380": 15, + "5300390": 15, + "5300420": 15, + "5300450": 15, + "5300480": 15, + "5300510": 15, + "5300570": 15, + "5300630": 15, + "5300660": 15, + "5300690": 15, + "5300720": 15, + "5300750": 15, + "5300780": 15, + "5300810": 15, + "5300840": 15, + "5300870": 15, + "5300950": 15, + "5300960": 15, + "5300990": 15, + "5301050": 15, + "5301080": 15, + "5301110": 15, + "5301140": 15, + "5301170": 15, + "5301200": 15, + "5301230": 15, + "5301260": 15, + "5301290": 15, + "5301320": 15, + "5301350": 15, + "5301380": 15, + "5301410": 15, + "5301440": 15, + "5301470": 15, + "5301500": 15, + "5301560": 15, + "5301590": 15, + "5301630": 15, + "5301660": 15, + "5301680": 15, + "5301710": 15, + "5301800": 15, + "5301830": 15, + "5301860": 15, + "5301890": 15, + "5301920": 15, + "5301950": 15, + "5301980": 15, + "5302010": 15, + "5302040": 15, + "5302070": 15, + "5302130": 15, + "5302160": 15, + "5302280": 15, + "5302310": 15, + "5302340": 15, + "5302370": 15, + "5302400": 15, + "5302460": 15, + "5302490": 15, + "5302520": 15, + "5302550": 15, + "5302610": 15, + "5302640": 15, + "5302670": 15, + "5302700": 15, + "5302730": 15, + "5302820": 15, + "5302850": 15, + "5302880": 15, + "5302910": 15, + "5302940": 15, + "5302970": 15, + "5303000": 15, + "5303030": 15, + "5303090": 15, + "5303130": 15, + "5303150": 15, + "5303180": 15, + "5303210": 15, + "5303240": 15, + "5303270": 15, + "5303300": 15, + "5303330": 15, + "5303360": 15, + "5303440": 15, + "5303510": 15, + "5303540": 15, + "5303570": 15, + "5303600": 15, + "5303660": 15, + "5303720": 15, + "5303750": 15, + "5303780": 15, + "5303810": 15, + "5303870": 15, + "5303930": 15, + "5303960": 15, + "5303990": 15, + "5304020": 15, + "5304050": 15, + "5304080": 15, + "5304110": 15, + "5304150": 15, + "5304170": 15, + "5304200": 15, + "5304230": 15, + "5304260": 15, + "5304290": 15, + "5304380": 15, + "5304410": 15, + "5304470": 15, + "5304500": 15, + "5304530": 15, + "5304560": 15, + "5304590": 15, + "5304620": 15, + "5304650": 15, + "5304710": 15, + "5304740": 15, + "5304800": 15, + "5304830": 15, + "5304860": 15, + "5304890": 15, + "5304920": 15, + "5304950": 15, + "5304980": 15, + "5305010": 15, + "5305020": 15, + "5305040": 15, + "5305130": 15, + "5305160": 15, + "5305190": 15, + "5305220": 15, + "5305250": 15, + "5305280": 15, + "5305310": 15, + "5305340": 15, + "5305370": 15, + "5305400": 15, + "5305430": 15, + "5305460": 15, + "5305490": 15, + "5305520": 15, + "5305550": 15, + "5305610": 15, + "5305640": 15, + "5305670": 15, + "5305700": 15, + "5305730": 15, + "5305760": 15, + "5305790": 15, + "5305820": 15, + "5305850": 15, + "5305880": 15, + "5305910": 15, + "5305940": 15, + "5305970": 15, + "5306000": 15, + "5306060": 15, + "5306090": 15, + "5306120": 15, + "5306150": 15, + "5306180": 15, + "5306220": 15, + "5306240": 15, + "5306270": 15, + "5306300": 15, + "5306330": 15, + "5306360": 15, + "5306390": 15, + "5306420": 15, + "5306450": 15, + "5306480": 15, + "5306510": 15, + "5306540": 15, + "5306570": 15, + "5306600": 15, + "5306630": 15, + "5306660": 15, + "5306690": 15, + "5306750": 15, + "5306780": 15, + "5306820": 15, + "5306840": 15, + "5306870": 15, + "5306900": 15, + "5306930": 15, + "5306960": 15, + "5306990": 15, + "5307020": 15, + "5307050": 15, + "5307080": 15, + "5307110": 15, + "5307140": 15, + "5307210": 15, + "5307230": 15, + "5307260": 15, + "5307320": 15, + "5307350": 15, + "5307380": 15, + "5307440": 15, + "5307470": 15, + "5307530": 15, + "5307560": 15, + "5307620": 15, + "5307650": 15, + "5307680": 15, + "5307710": 15, + "5307740": 15, + "5307770": 15, + "5307800": 15, + "5307830": 15, + "5307860": 15, + "5307900": 15, + "5307920": 15, + "5307950": 15, + "5307980": 15, + "5308020": 15, + "5308040": 15, + "5308070": 15, + "5308100": 15, + "5308130": 15, + "5308160": 15, + "5308190": 15, + "5308220": 15, + "5308250": 15, + "5308280": 15, + "5308310": 15, + "5308340": 15, + "5308370": 15, + "5308400": 15, + "5308430": 15, + "5308460": 15, + "5308490": 15, + "5308520": 15, + "5308550": 15, + "5308580": 15, + "5308610": 15, + "5308670": 15, + "5308700": 15, + "5308730": 15, + "5308760": 15, + "5308790": 15, + "5308820": 15, + "5308850": 15, + "5308910": 15, + "5308940": 15, + "5308970": 15, + "5309000": 15, + "5309030": 15, + "5309060": 15, + "5309100": 15, + "5309150": 15, + "5309180": 15, + "5309240": 15, + "5309270": 15, + "5309300": 15, + "5309330": 15, + "5309360": 15, + "5309390": 15, + "5309450": 15, + "5309480": 15, + "5309510": 15, + "5309540": 15, + "5309570": 15, + "5309600": 15, + "5309630": 15, + "5309660": 15, + "5309690": 15, + "5309720": 15, + "5309750": 15, + "5309780": 15, + "5309810": 15, + "5309840": 15, + "5309870": 15, + "5309900": 15, + "5309930": 15, + "5309990": 15, + "5310020": 15, + "5310050": 15, + "5310110": 15, + "5310140": 15, + "5310170": 15, + "5400030": 15, + "5400060": 15, + "5400090": 15, + "5400120": 15, + "5400150": 15, + "5400180": 15, + "5400210": 15, + "5400240": 15, + "5400270": 15, + "5400300": 15, + "5400330": 15, + "5400360": 15, + "5400390": 15, + "5400420": 15, + "5400450": 15, + "5400480": 15, + "5400510": 15, + "5400540": 15, + "5400570": 15, + "5400600": 15, + "5400630": 15, + "5400660": 15, + "5400690": 15, + "5400720": 15, + "5400750": 15, + "5400780": 15, + "5400810": 15, + "5400840": 15, + "5400870": 15, + "5400900": 15, + "5400930": 15, + "5400960": 15, + "5400990": 15, + "5401020": 15, + "5401050": 15, + "5401080": 15, + "5401110": 15, + "5401140": 15, + "5401170": 15, + "5401200": 15, + "5401230": 15, + "5401260": 15, + "5401290": 15, + "5401320": 15, + "5401350": 15, + "5401380": 15, + "5401410": 15, + "5401440": 15, + "5401470": 15, + "5401500": 15, + "5401530": 15, + "5401560": 15, + "5401590": 15, + "5401620": 15, + "5401650": 15, + "5500013": 15, + "5500016": 15, + "5500017": 15, + "5500030": 15, + "5500052": 15, + "5500056": 15, + "5500058": 14, + "5500060": 15, + "5500061": 12, + "5500075": 6, + "5500080": 5, + "5500120": 15, + "5500150": 15, + "5500180": 15, + "5500210": 15, + "5500240": 15, + "5500270": 15, + "5500300": 15, + "5500330": 15, + "5500360": 15, + "5500390": 15, + "5500420": 15, + "5500450": 15, + "5500510": 15, + "5500540": 15, + "5500570": 15, + "5500600": 15, + "5500630": 15, + "5500720": 15, + "5500750": 15, + "5500780": 15, + "5500810": 15, + "5500840": 15, + "5500870": 15, + "5500900": 15, + "5500960": 15, + "5500990": 15, + "5501020": 15, + "5501050": 15, + "5501080": 15, + "5501110": 15, + "5501140": 15, + "5501170": 15, + "5501230": 15, + "5501260": 15, + "5501310": 15, + "5501350": 15, + "5501470": 15, + "5501500": 15, + "5501530": 15, + "5501560": 15, + "5501590": 15, + "5501650": 15, + "5501680": 15, + "5501710": 15, + "5501740": 15, + "5501770": 15, + "5501800": 15, + "5501830": 15, + "5501890": 15, + "5501920": 15, + "5502040": 15, + "5502070": 15, + "5502100": 15, + "5502130": 15, + "5502160": 15, + "5502340": 15, + "5502400": 15, + "5502430": 15, + "5502460": 15, + "5502490": 3, + "5502520": 15, + "5502550": 15, + "5502580": 15, + "5502610": 15, + "5502640": 15, + "5502670": 15, + "5502700": 15, + "5502730": 15, + "5502760": 15, + "5502790": 15, + "5502820": 15, + "5502880": 15, + "5502910": 15, + "5502970": 15, + "5503030": 15, + "5503060": 15, + "5503090": 15, + "5503150": 15, + "5503180": 15, + "5503210": 15, + "5503240": 15, + "5503270": 15, + "5503510": 15, + "5503640": 15, + "5503660": 15, + "5503690": 15, + "5503750": 15, + "5503810": 15, + "5503840": 15, + "5503860": 15, + "5504020": 15, + "5504050": 15, + "5504080": 15, + "5504110": 15, + "5504170": 15, + "5504200": 15, + "5504230": 15, + "5504260": 15, + "5504290": 15, + "5504320": 15, + "5504350": 15, + "5504380": 15, + "5504410": 15, + "5504440": 15, + "5504500": 15, + "5504530": 15, + "5504590": 15, + "5504620": 15, + "5504650": 15, + "5504680": 15, + "5504720": 15, + "5504740": 15, + "5504770": 15, + "5504800": 15, + "5504830": 15, + "5504860": 15, + "5504890": 15, + "5504920": 15, + "5504960": 15, + "5504980": 15, + "5505100": 15, + "5505130": 15, + "5505160": 15, + "5505220": 15, + "5505250": 15, + "5505280": 15, + "5505370": 15, + "5505460": 15, + "5505490": 15, + "5505520": 15, + "5505550": 1, + "5505580": 15, + "5505610": 15, + "5505640": 15, + "5505670": 15, + "5505730": 15, + "5505820": 15, + "5505880": 15, + "5505910": 15, + "5505940": 15, + "5505970": 15, + "5506000": 15, + "5506030": 15, + "5506060": 15, + "5506090": 15, + "5506120": 15, + "5506140": 15, + "5506180": 15, + "5506270": 15, + "5506300": 15, + "5506390": 9, + "5506420": 15, + "5506450": 15, + "5506480": 15, + "5506540": 15, + "5506570": 15, + "5506600": 15, + "5506630": 15, + "5506660": 15, + "5506690": 15, + "5506750": 15, + "5506780": 15, + "5506810": 15, + "5506840": 15, + "5506870": 15, + "5506960": 15, + "5507020": 15, + "5507050": 15, + "5507170": 15, + "5507230": 15, + "5507260": 15, + "5507290": 15, + "5507320": 15, + "5507380": 15, + "5507410": 15, + "5507440": 15, + "5507470": 15, + "5507500": 15, + "5507530": 15, + "5507560": 15, + "5507590": 15, + "5507620": 15, + "5507650": 15, + "5507680": 15, + "5507710": 15, + "5507770": 15, + "5507830": 15, + "5507860": 15, + "5508040": 15, + "5508070": 15, + "5508130": 15, + "5508160": 15, + "5508190": 15, + "5508220": 15, + "5508250": 15, + "5508280": 15, + "5508340": 15, + "5508520": 15, + "5508550": 15, + "5508610": 15, + "5508640": 15, + "5508670": 15, + "5508700": 15, + "5508730": 15, + "5508760": 15, + "5508790": 15, + "5508820": 15, + "5508850": 15, + "5508880": 15, + "5508910": 15, + "5508940": 15, + "5508970": 15, + "5509000": 15, + "5509030": 15, + "5509060": 15, + "5509070": 15, + "5509090": 15, + "5509130": 15, + "5509150": 15, + "5509210": 15, + "5509240": 15, + "5509300": 15, + "5509360": 15, + "5509390": 15, + "5509510": 15, + "5509570": 15, + "5509600": 15, + "5509630": 15, + "5509660": 15, + "5509690": 15, + "5509720": 15, + "5509750": 15, + "5509780": 15, + "5509810": 15, + "5509840": 15, + "5509870": 15, + "5509900": 15, + "5509960": 15, + "5509990": 15, + "5510060": 15, + "5510140": 15, + "5510170": 15, + "5510230": 15, + "5510320": 15, + "5510350": 15, + "5510380": 15, + "5510410": 9, + "5510440": 15, + "5510470": 15, + "5510500": 15, + "5510530": 15, + "5510560": 15, + "5510590": 15, + "5510620": 15, + "5510680": 15, + "5510710": 15, + "5510740": 15, + "5510770": 15, + "5510800": 15, + "5510830": 15, + "5510860": 15, + "5510890": 15, + "5510920": 15, + "5510950": 15, + "5510980": 15, + "5511010": 15, + "5511070": 15, + "5511100": 15, + "5511130": 15, + "5511160": 15, + "5511190": 15, + "5511220": 15, + "5511310": 15, + "5511350": 15, + "5511370": 15, + "5511400": 15, + "5511430": 1, + "5511550": 15, + "5511580": 15, + "5511610": 15, + "5511640": 15, + "5511710": 15, + "5511730": 15, + "5511790": 15, + "5511820": 15, + "5511850": 15, + "5511880": 15, + "5511940": 15, + "5511970": 15, + "5512000": 15, + "5512030": 15, + "5512060": 15, + "5512090": 15, + "5512120": 15, + "5512150": 15, + "5512180": 15, + "5512210": 15, + "5512240": 15, + "5512300": 15, + "5512330": 15, + "5512360": 15, + "5512390": 15, + "5512420": 15, + "5512450": 15, + "5512480": 15, + "5512510": 15, + "5512540": 15, + "5512660": 15, + "5512690": 15, + "5512720": 15, + "5512780": 15, + "5512810": 15, + "5512880": 10, + "5512900": 10, + "5512960": 15, + "5512990": 15, + "5513020": 15, + "5513050": 15, + "5513100": 15, + "5513140": 15, + "5513170": 15, + "5513200": 9, + "5513230": 15, + "5513260": 15, + "5513290": 15, + "5513350": 15, + "5513410": 15, + "5513470": 15, + "5513500": 15, + "5513530": 15, + "5513560": 15, + "5513620": 15, + "5513650": 15, + "5513680": 15, + "5513710": 15, + "5513770": 15, + "5513800": 15, + "5513830": 15, + "5513860": 15, + "5513890": 15, + "5513950": 15, + "5513980": 15, + "5514010": 15, + "5514040": 15, + "5514130": 15, + "5514160": 15, + "5514190": 15, + "5514220": 15, + "5514250": 15, + "5514340": 15, + "5514430": 15, + "5514490": 15, + "5514520": 15, + "5514550": 15, + "5514580": 15, + "5514610": 15, + "5514640": 15, + "5514670": 15, + "5514700": 15, + "5514820": 15, + "5514850": 15, + "5514880": 15, + "5514910": 15, + "5514940": 15, + "5514970": 15, + "5515060": 15, + "5515090": 15, + "5515120": 15, + "5515150": 15, + "5515180": 15, + "5515210": 15, + "5515330": 15, + "5515360": 15, + "5515390": 15, + "5515450": 15, + "5515480": 15, + "5515540": 15, + "5515570": 15, + "5515600": 15, + "5515660": 15, + "5515700": 15, + "5515720": 15, + "5515750": 15, + "5515780": 15, + "5515810": 15, + "5515840": 15, + "5515870": 15, + "5515900": 15, + "5515930": 15, + "5515960": 15, + "5515990": 15, + "5516020": 15, + "5516230": 15, + "5516260": 15, + "5516290": 15, + "5516320": 15, + "5516350": 15, + "5516410": 15, + "5516440": 15, + "5516470": 15, + "5516500": 15, + "5516530": 3, + "5516560": 15, + "5516590": 15, + "5516620": 15, + "5516650": 15, + "5516680": 15, + "5516710": 15, + "5516740": 15, + "5516770": 15, + "5516830": 15, + "5516860": 15, + "5517040": 15, + "5517070": 15, + "5517100": 15, + "5517130": 15, + "5517160": 15, + "5517190": 15, + "5517220": 15, + "5599997": 6, + "5599998": 3, + "5600730": 15, + "5600960": 15, + "5601030": 15, + "5601090": 15, + "5601260": 15, + "5601420": 15, + "5601460": 15, + "5601470": 15, + "5601700": 15, + "5601980": 15, + "5602070": 15, + "5602140": 15, + "5602150": 15, + "5602370": 15, + "5602670": 15, + "5602760": 15, + "5602820": 15, + "5602830": 15, + "5602870": 15, + "5602990": 15, + "5603170": 15, + "5603180": 15, + "5603310": 15, + "5603770": 15, + "5604030": 15, + "5604060": 15, + "5604120": 15, + "5604230": 15, + "5604260": 15, + "5604380": 15, + "5604450": 15, + "5604500": 15, + "5604510": 15, + "5604830": 15, + "5604860": 15, + "5605090": 15, + "5605160": 15, + "5605220": 15, + "5605302": 15, + "5605680": 15, + "5605690": 15, + "5605695": 15, + "5605700": 15, + "5605762": 15, + "5605820": 15, + "5605830": 15, + "5606090": 15, + "5606240": 15, + "5699997": 7, + "7200030": 15 + } + }, + { + "name": "geography_name", + "duplicates": 187804, + "info": { + "id": "geography_name", + "name": "Location name", + "short_name": "Location name", + "long_name": "Location name", + "category": "identifier", + "short_description": "Name of the state or school district.", + "long_description": "Name as published by NCES, with the trailing state name and postal abbreviation stripped, so \"A-C Central Community Unit School District 262, Illinois, IL\" becomes \"A-C Central Community Unit School District 262\". Names are refreshed with each vintage and are not stable across vintages; join on `geography` rather than on the name.", + "measure_type": "id", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "string", + "missing": 0, + "table": { + "A-C Central Community Unit School District 262": 15, + "A-H-S-T Community School District": 9, + "A.C.G.C. Public School District": 10, + "Abbeville County School District": 15, + "Abbotsford School District": 15, + "Abbott Independent School District": 15, + "ABC Unified School District": 15, + "Aberdeen School District": 30, + "Aberdeen School District 06-1": 15, + "Aberdeen School District 58": 15, + "Abernathy Independent School District": 15, + "Abilene Independent School District": 15, + "Abilene Unified School District 435": 15, + "Abingdon-Avon Community Unit School District 276": 10, + "Abingdon Community Unit School District 217": 5, + "Abington Heights School District": 15, + "Abington School District": 30, + "Absarokee Elementary School District": 15, + "Absarokee High School District": 15, + "Absecon City School District": 15, + "Academy Independent School District": 15, + "Academy School District 20": 15, + "Acadia Parish School District": 15, + "Acalanes Union High School District": 15, + "Accomack County Public Schools": 15, + "ACGC": 2, + "ACGC School District": 3, + "Achille Public Schools": 15, + "Ackerman Elementary School District": 15, + "Acton": 14, + "Acton-Agua Dulce Unified School District": 15, + "Acton-Boxborough Regional School District": 8, + "Acton-Boxborough School District": 7, + "Acton School District": 8, + "Acushnet School District": 15, + "Ada-Borup-West Public Schools": 2, + "Ada-Borup Public School District": 13, + "Ada Exempted Village School District": 15, + "Ada Public Schools": 15, + "Adair-Casey Community School District": 15, + "Adair County R-I School District": 15, + "Adair County R-II School District": 15, + "Adair County School District": 15, + "Adair Public Schools": 15, + "Adams-Arapahoe School District 28J": 15, + "Adams-Cheshire School District": 11, + "Adams-Cheshire School District in Savoy (7-12)": 11, + "Adams-Friendship Area School District": 15, + "Adams 12 Five Star Schools": 5, + "Adams Central Community Schools": 15, + "Adams Central Public Schools": 15, + "Adams County School District 14": 15, + "Adams County/Ohio Valley Local School District": 15, + "Adams Public School District 128": 10, + "Adams Township School District": 15, + "Addison Central School District": 15, + "Addison Central Supervisory Union": 3, + "Addison Central Unified School District": 5, + "Addison Community Schools": 15, + "Addison Northeast Supervisory Union": 3, + "Addison Northwest Supervisory Union": 3, + "Addison Northwest Unified School District": 5, + "Addison Rutland Supervisory District": 1, + "Addison Rutland Supervisory Union": 4, + "Addison School District": 7, + "Addison School District 4": 15, + "Adel-De Soto-Minburn Community School District": 15, + "Adel School District 21": 15, + "Adelanto Elementary School District": 15, + "Adena Local School District": 15, + "Adirondack Central School District": 15, + "Adlai E. Stevenson High School District 125": 15, + "Adna School District": 15, + "Adrian City School District": 15, + "Adrian County R-III School District": 5, + "Adrian Independent School District": 15, + "Adrian Public School District": 15, + "Adrian R-III School District": 10, + "Adrian School District 61": 15, + "Advance R-IV School District": 15, + "Affton 101 School District": 10, + "Affton School District": 5, + "Afton Central School District": 15, + "Afton Public Schools": 15, + "Agar-Blunt-Onida School District 58-3": 15, + "Agate School District 300": 15, + "Agawam School District": 15, + "Agra Public Schools": 15, + "Agua Dulce Independent School District": 15, + "Agua Fria Union High School District": 15, + "Aguila Elementary District": 15, + "Aguilar Reorganized School District 6": 15, + "AGWSR Community School District": 15, + "AHSTW Community School District": 6, + "Aiken County School District": 15, + "Ainsworth Community Schools": 15, + "Airline Community School District": 15, + "Airport Community School District": 15, + "Aitkin Public School District": 15, + "Ajo Unified District": 15, + "Akin Community Consolidated School District 91": 15, + "Akron-Fairgrove Schools": 15, + "Akron-Westfield Community School District": 15, + "Akron Central School District": 15, + "Akron City School District": 15, + "Akron School District R-1": 15, + "Alabaster City School District": 10, + "Alachua County School District": 15, + "Alamance-Burlington Schools": 15, + "Alameda City Unified School District": 15, + "Alamo City School District": 8, + "Alamo Heights Independent School District": 15, + "Alamo Town School District": 7, + "Alamogordo Public Schools": 15, + "Alamosa School District RE-11J": 15, + "Alanson Public Schools": 12, + "Alaska Gateway School District": 15, + "Alba-Golden Independent School District": 15, + "Alba Public Schools": 15, + "Albany City School District": 15, + "Albany City Unified School District": 15, + "Albany County School District 1": 15, + "Albany Independent School District": 15, + "Albany Public School District": 15, + "Albany R-III School District": 15, + "Albany School District": 37, + "Albemarle County Public Schools": 15, + "Albers School District 63": 15, + "Albert City-Truesdale Community School District": 15, + "Albert Gallatin Area School District": 15, + "Albert Lea Public School District": 15, + "Alberton K-12 Schools": 15, + "Albertville City School District": 15, + "Albia Community School District": 15, + "Albion Central School District": 15, + "Albion Public School": 15, + "Albion Public Schools": 9, + "Albuquerque Public Schools": 15, + "Alburg School District": 2, + "Alburgh School District": 7, + "Alburnett Community School District": 15, + "Alcester-Hudson School District 61-1": 15, + "Alcoa City School District": 15, + "Alcona Community Schools": 15, + "Alcorn School District": 15, + "Alden-Conger Public School District": 14, + "Alden-Hebron School District 19": 15, + "Alden Central School District": 15, + "Alden Community School District": 15, + "Alden Public School District": 1, + "Alder Elementary School District": 15, + "Aldine Independent School District": 15, + "Aledo Community Unit School District 201": 1, + "Aledo Independent School District": 15, + "Aleutian Region School District": 15, + "Aleutians East Borough School District": 15, + "Alex Public Schools": 15, + "Alexander": 14, + "Alexander Central School District": 15, + "Alexander City City School District": 15, + "Alexander County Schools": 15, + "Alexander Local School District": 15, + "Alexander Public School District 2": 15, + "Alexander School District": 1, + "Alexander Valley Union Elementary School District": 7, + "Alexander Valley Union School District": 8, + "Alexandria Central School District": 15, + "Alexandria City Public Schools": 15, + "Alexandria Community School Corporation": 15, + "Alexandria Public School District": 15, + "Alexandria Township School District": 15, + "Alfred-Almond Central School District": 15, + "Algoma School District": 15, + "Algona Community School District": 15, + "Algonac Community School District": 15, + "Alhambra Elementary District": 15, + "Alhambra Unified (9-12) School District": 9, + "Alhambra Unified School District": 15, + "Alhambra Unified School District (9-12)": 6, + "Alice Independent School District": 15, + "Alief Independent School District": 15, + "Aline-Cleo Public Schools": 15, + "Aliquippa School District": 15, + "Alisal Union Elementary School District": 15, + "Allamakee Community School District": 15, + "Allamuchy Township School District": 15, + "Allegan Public Schools": 15, + "Allegany-Limestone Central School District": 15, + "Allegany County Public Schools": 15, + "Alleghany County Public Schools": 14, + "Alleghany County Schools": 15, + "Alleghany Highlands Public Schools": 1, + "Allegheny-Clarion Valley School District": 15, + "Allegheny Valley School District": 15, + "Allen-Bowden Public School": 15, + "Allen Consolidated Schools": 15, + "Allen County School District": 15, + "Allen East Local School District": 15, + "Allen Independent School District": 15, + "Allen Parish School District": 15, + "Allen Park Public Schools": 15, + "Allen Public Schools": 15, + "Allen Township Community Consolidated School District 65": 15, + "Allendale Borough School District": 15, + "Allendale Community Consolidated School District 17": 15, + "Allendale County School District": 15, + "Allendale Public School District": 15, + "Allenhurst Borough School District": 15, + "Allenstown School District": 15, + "Allensworth Elementary School District": 15, + "Allentown City School District": 15, + "Alliance City School District": 15, + "Alliance Public Schools": 15, + "Allison-Bristow Community School District": 3, + "Alloway Township School District": 15, + "Alma Center School District": 15, + "Alma Public Schools": 30, + "Alma School District": 30, + "Almira School District": 15, + "Almond-Bancroft School District": 15, + "Almont Community Schools": 15, + "Alna School District": 1, + "Alpaugh Unified School District": 15, + "Alpena Public Schools": 15, + "Alpena School District": 15, + "Alpha Borough School District": 15, + "Alpine Borough School District": 15, + "Alpine County Unified School District": 15, + "Alpine Elementary District": 15, + "Alpine Independent School District": 15, + "Alpine School District": 15, + "Alpine Union Elementary School District": 15, + "Alsea School District 7J": 15, + "Alsip-Hazelgreen-Oaklawn School District 126": 15, + "Alta-Aurelia Community School District": 5, + "Alta-Dutch Flat Union Elementary School District": 15, + "Alta Community School District": 10, + "Alta Loma Elementary School District": 15, + "Alta Vista Elementary School District": 15, + "Altamont Community Unit School District 10": 15, + "Altar Valley Elementary District": 15, + "Altenburg 48 School District": 15, + "Altheimer Unified School District": 3, + "Altmar-Parish-Williamstown Central School District": 15, + "Alto Independent School District": 15, + "Alton Community Unit School District 11": 15, + "Alton R-IV School District": 15, + "Alton School District": 16, + "Altoona-Midway Unified School District 387": 15, + "Altoona Area School District": 15, + "Altoona School District": 15, + "Altus Public Schools": 15, + "Alum Rock Union Elementary School District": 15, + "Alva Public Schools": 15, + "Alvarado Independent School District": 15, + "Alview-Dairyland Union Elementary School District": 15, + "Alvin Independent School District": 15, + "Alvina Elementary School District": 15, + "Alvord Independent School District": 15, + "Alvord Unified School District": 15, + "Alwood Community Unit School District 225": 15, + "Alzada Elementary School District": 15, + "Amador County Unified School District": 15, + "Amagansett Union Free School District": 15, + "Amanda-Clearcreek Local School District": 15, + "Amarillo Independent School District": 15, + "Amber-Pocasset Public Schools": 15, + "Amboy Community Unit School District 272": 15, + "Ambridge Area School District": 15, + "Amelia County Public Schools": 15, + "American Falls Joint School District 381": 15, + "American Union Elementary School District": 3, + "Amery School District": 15, + "Ames Community School District": 15, + "Amesbury School District": 15, + "Amherst-Pelham School District": 15, + "Amherst Central School District": 15, + "Amherst County Public Schools": 15, + "Amherst Exempted Village School District": 15, + "Amherst Independent School District": 15, + "Amherst Public Schools": 15, + "Amherst School District": 30, + "Amite County School District": 15, + "Amity School District 4J": 15, + "Amityville Union Free School District": 15, + "Amory School District": 15, + "Amphitheater Unified District": 15, + "Amsterdam City School District": 15, + "Amsterdam Elementary School District": 15, + "Anaconda Elementary School District": 15, + "Anaconda High School District": 15, + "Anacortes School District": 15, + "Anadarko Public Schools": 15, + "Anaheim Elementary School District": 15, + "Anaheim Union High School District": 15, + "Anahuac Independent School District": 15, + "Anamoose Public School District 14": 15, + "Anamosa Community School District": 15, + "Anchor Bay School District": 15, + "Anchorage Independent School District": 15, + "Anchorage School District": 15, + "Andalusia City School District": 15, + "Anderson-Shiro Consolidated Independent School District": 15, + "Anderson Community School Corporation": 15, + "Anderson County School District": 30, + "Anderson County School District in Clinton": 15, + "Anderson Elementary School District": 15, + "Anderson Public School": 15, + "Anderson School District 1": 15, + "Anderson School District 2": 15, + "Anderson School District 3": 15, + "Anderson School District 4": 15, + "Anderson School District 5": 15, + "Anderson Union High School District": 15, + "Anderson Valley Unified School District": 15, + "Andes Central School District": 15, + "Andes Central School District 11-1": 15, + "Andover Central School District": 15, + "Andover Public Schools": 8, + "Andover Regional School District": 15, + "Andover School District": 45, + "Andover Unified School District 385": 15, + "Andrew Community School District": 15, + "Andrews Independent School District": 15, + "Angleton Independent School District": 15, + "Animas Public Schools": 15, + "Anita Community School District": 3, + "Ankeny Community School District": 15, + "Ann Arbor Public Schools": 15, + "Anna Community Consolidated School District 37": 15, + "Anna Independent School District": 15, + "Anna Jonesboro Community High School District 81": 15, + "Anna Local School District": 15, + "Annandale Public School District": 15, + "Annawan Community Unit School District 226": 15, + "Anne Arundel County Public Schools": 15, + "Annette Island School District": 15, + "Annex School District 29": 15, + "Anniston City School District": 15, + "Annville-Cleona School District": 15, + "Anoka-Hennepin Public School District": 15, + "Anselmo-Merna Public Schools": 15, + "Ansley Public Schools": 15, + "Anson County Schools": 15, + "Anson Independent School District": 15, + "Ansonia Local School District": 15, + "Ansonia School District": 15, + "Antelope Elementary School District": 15, + "Antelope Union High School District": 15, + "Antelope Valley Union High School District": 3, + "Antelope Valley Union Joint High School District": 12, + "Anthon-Oto Community School District": 5, + "Anthony-Harper Unified School District 361": 14, + "Anthony Independent School District": 15, + "Anthony Wayne Local School District": 15, + "Antietam School District": 15, + "Antigo School District": 15, + "Antioch Community Consolidated School District 34": 15, + "Antioch Community High School District 117": 15, + "Antioch Unified School District": 15, + "Antlers Public Schools": 15, + "Anton Independent School District": 15, + "Antwerp Local School District": 15, + "Apache County High School District": 1, + "Apache Elementary District": 15, + "Apache Junction Unified District": 15, + "Aplington-Parkersburg Community School District": 15, + "Apollo-Ridge School District": 15, + "Apple Creek Public School District 39": 15, + "Apple Springs Independent School District": 15, + "Apple Valley Unified School District": 15, + "Appleton": 14, + "Appleton Area School District": 15, + "Appleton City R-II School District": 15, + "Appleton School District": 1, + "Appling County School District": 15, + "Appomattox County Public Schools": 15, + "Appoquinimink School District": 15, + "Aptakisic-Tripp Community Consolidated School District": 15, + "Aquilla Independent School District": 15, + "Ar-We-Va Community School District": 15, + "Arab City School District": 15, + "Aransas County Independent School District": 15, + "Aransas Pass Independent School District": 15, + "Arapaho Public Schools": 15, + "Arapahoe Public Schools": 15, + "Arbon Elementary School District 383": 15, + "Arbor Park School District 145": 15, + "Arcadia Local School District": 15, + "Arcadia Public Schools": 15, + "Arcadia School District": 15, + "Arcadia Unified School District": 15, + "Arcadia Valley R-II School District": 15, + "Arcanum-Butler Local School District": 15, + "Arcata Elementary School District": 15, + "Archbold Area Local School District": 15, + "Archer City Independent School District": 15, + "Archie R-V School District": 10, + "Archuleta County School District 50-JT": 15, + "Arcohe Union Elementary School District": 15, + "Arcola Consolidated Unit School District 306": 15, + "Ardmore Public Schools": 15, + "Ardsley Union Free School District": 15, + "Arena Union Elementary School District": 15, + "Arenac Eastern School District": 12, + "Argenta-Oreana Community Unit School District 1": 15, + "Argo Community High School District 217": 15, + "Argonia Public Schools Unified School District 359": 15, + "Argos Community Schools": 15, + "Argyle Central School District": 15, + "Argyle Independent School District": 15, + "Argyle School District": 15, + "Arickaree School District R-2": 15, + "Arkadelphia School District": 15, + "Arkansas City Unified School District 470": 15, + "Arkoma Public Schools": 15, + "Arkport Central School District": 15, + "Arlee Elementary School District": 15, + "Arlee High School District": 15, + "Arlington Central School District": 15, + "Arlington Community School District": 8, + "Arlington Community Schools in Lakeland (6-12)": 2, + "Arlington Community Schools in Lakeland (9-12)": 6, + "Arlington County Public Schools": 15, + "Arlington Elementary District": 15, + "Arlington Heights School District 25": 15, + "Arlington Independent School District": 15, + "Arlington Local School District": 15, + "Arlington Public Schools": 15, + "Arlington School District": 39, + "Arlington School District 3": 15, + "Arlington School District 38-1": 15, + "Armada Area Schools": 15, + "Armona Union Elementary School District": 15, + "Armorel School District": 15, + "Armour School District 21-1": 15, + "Armstrong-Ellis Consolidated School District 61": 15, + "Armstrong-Ringsted Community School District": 7, + "Armstrong School District": 15, + "Armstrong Township High School District 225": 15, + "Arnett Public Schools": 15, + "Arnold Public Schools": 15, + "Arock School District 81": 15, + "Aromas-San Juan Unified School District": 15, + "Aroostook Unorganized Territory": 15, + "Arp Independent School District": 15, + "Arriba-Flagler School District C-20": 15, + "Arrowhead Elementary School District": 15, + "Arrowhead Union High School District": 15, + "Arrowsic School District": 1, + "Artesia Public Schools": 15, + "Artesian-Letcher School District 55-5": 1, + "Arthur Community Unit School District 305": 15, + "Arthur County Schools": 15, + "Arundel School District": 1, + "Arvin Union Elementary School District": 7, + "Arvin Union School District": 8, + "Arvon Township School District": 15, + "Asbury Park City School District": 15, + "Ascension Parish School District": 15, + "Ash Creek Elementary District": 15, + "Ash Fork Joint Unified District": 15, + "Ash Grove R-IV School District": 15, + "Ashburnham-Westminster School District": 15, + "Ashby Public School District": 15, + "Ashdown School District": 15, + "Ashe County Schools": 15, + "Asheboro City Schools": 15, + "Asher Public Schools": 15, + "Asheville City Schools": 15, + "Ashford School District": 15, + "Ashland-Greenwood Public Schools": 15, + "Ashland City School District": 15, + "Ashland Elementary School District": 13, + "Ashland Independent School District": 15, + "Ashland School District": 45, + "Ashland School District 5": 15, + "Ashland Unified School District 220": 15, + "Ashley Community Consolidated School District 15": 15, + "Ashley Community Schools": 15, + "Ashley Public School District 9": 15, + "Ashtabula Area City School District": 15, + "Ashton-Franklin Center CUSD 275": 1, + "Ashton Community Unit School District 275": 14, + "Ashwaubenon School District": 15, + "Ashwood School District 8": 15, + "Asotin-Anatone School District": 15, + "Aspen School District 1": 15, + "Aspermont Independent School District": 15, + "Assumption Parish School District": 15, + "Astoria Community Unit School District 1": 15, + "Astoria School District 1": 15, + "Atascadero Unified School District": 15, + "Atchison County Community Schools Unified School District 377": 15, + "Atchison Public Schools Unified School District 409": 15, + "Athena-Weston School District 29J": 15, + "Athens": 10, + "Athens Area School District": 15, + "Athens Area Schools": 15, + "Athens City Elementary School District": 7, + "Athens City School District": 30, + "Athens City Schools": 8, + "Athens Community Unit School District 213": 15, + "Athens Independent School District": 15, + "Athens School District": 19, + "Athens/Grafton Joint Contract School District": 3, + "Atherton Community Schools": 15, + "Athol-Royalston School District": 15, + "Atkins Public Schools": 15, + "Atkinson County School District": 15, + "Atlanta C-3 Schools": 15, + "Atlanta City School District": 15, + "Atlanta Community Schools": 15, + "Atlanta Independent School District": 15, + "Atlantic City School District": 15, + "Atlantic Community School District": 15, + "Atlantic Highlands Borough School District": 15, + "Atoka Public Schools": 15, + "Attala County School District": 15, + "Attalla City School District": 15, + "Attica Central School District": 15, + "Attica Consolidated School Corporation": 15, + "Attica Unified School District 511": 15, + "Attleboro School District": 15, + "Atwater Elementary School District": 15, + "Atwood-Hammond Community Unit School District 39": 7, + "Atwood Heights School District 125": 15, + "Au Gres-Sims School District": 15, + "Aubrey Independent School District": 15, + "Auburn": 14, + "Auburn-Washburn Unified School District 437": 15, + "Auburn City School District": 30, + "Auburn Community Unit School District 10": 15, + "Auburn Public Schools": 15, + "Auburn School District": 46, + "Auburn Union Elementary School District": 15, + "Auburndale School District": 15, + "Auchard Creek Elementary School District": 15, + "Audubon Borough School District": 15, + "Audubon Community School District": 15, + "Audubon Park Borough School District": 1, + "Augusta": 14, + "Augusta County Public Schools": 15, + "Augusta Elementary School District": 15, + "Augusta High School District": 15, + "Augusta Independent School District": 15, + "Augusta School District": 31, + "Augusta Unified School District 402": 15, + "Ault-Highland School District RE-9": 15, + "Aurelia Community School District": 10, + "Aurora City School District": 15, + "Aurora East Unit School District 131": 15, + "Aurora Public Schools": 15, + "Aurora R-8 School District": 5, + "Aurora R-VIII School District": 10, + "Aurora West Unit School District 129": 15, + "AuSable Valley Central School District": 15, + "Austin Area School District": 15, + "Austin Independent School District": 15, + "Austin Public School District": 15, + "Austintown Local School District": 15, + "Austwell-Tivoli Independent School District": 15, + "Autauga County School District": 15, + "Autrain-Onota Public Schools": 15, + "Ava R-I School District": 15, + "Avalon Borough School District": 15, + "Avalon Independent School District": 15, + "Avant Public School": 15, + "Avella Area School District": 15, + "Avenue City R-IX School District": 15, + "Averill Park Central School District": 15, + "Averill School District": 9, + "Avery's Gore School District": 7, + "Avery County Schools": 15, + "Avery Independent School District": 15, + "Avery School District 394": 15, + "Averys Gore School District": 2, + "Avilla R-XIII School District": 15, + "Avinger Independent School District": 15, + "Aviston School District 21": 15, + "Avoca Central School District": 15, + "Avoca School District 37": 15, + "Avon-by-the-Sea Borough School District": 15, + "Avon Central School District": 15, + "Avon Community School Corporation": 15, + "Avon Community Unit School District 176": 5, + "Avon Elementary School District": 15, + "Avon Grove School District": 15, + "Avon Lake City School District": 15, + "Avon Local School District": 15, + "Avon School District": 30, + "Avon School District 04-1": 15, + "Avondale Elementary District": 15, + "Avondale School District": 15, + "Avonworth School District": 15, + "Avoyelles Parish School District": 15, + "Axtell Community Schools": 15, + "Axtell Independent School District": 15, + "Axtell Unified School District 488": 3, + "Ayer-Shirley School District": 12, + "Ayer School District": 3, + "Ayer/Lunenberg School Districts in Shirley (9-12)": 3, + "Ayers Elementary School District": 15, + "Ayersville Local School District": 15, + "Azle Independent School District": 15, + "Aztec Municipal Schools": 15, + "Azusa Unified School District": 15, + "B and B Unified School District 451": 3, + "Babylon Union Free School District": 15, + "Bacon County School District": 15, + "Bad Axe Public Schools": 15, + "Badger Public School District": 15, + "Bagdad Unified School District": 15, + "Bagley Public School District": 15, + "Baileyville": 14, + "Baileyville School District": 1, + "Bainbridge-Guilford Central School District": 15, + "Bainbridge Island School District": 15, + "Bainville K-12 Schools": 15, + "Baird Independent School District": 15, + "Baker City School District": 15, + "Baker County School District": 30, + "Baker K-12 Schools": 15, + "Baker School District 5J": 15, + "Baker Valley Unified School District": 15, + "Bakersfield City Elementary School District": 7, + "Bakersfield City School District": 8, + "Bakersfield R-IV School District": 15, + "Bakersfield School District": 7, + "Bakker Public School District 10": 15, + "Balaton Public School District": 1, + "Bald Eagle Area School District": 15, + "Bald Knob School District": 15, + "Baldwin-Whitehall School District": 15, + "Baldwin-Woodville Area School District": 15, + "Baldwin City Unified School District 348": 15, + "Baldwin Community Schools": 15, + "Baldwin County School District": 30, + "Baldwin Park Unified School District": 15, + "Baldwin Public School District 29": 5, + "Baldwin Union Free School District": 15, + "Baldwinsville Central School District": 15, + "Baldwyn School District": 15, + "Balko Public Schools": 15, + "Ball-Chatham Community Unit School District 5": 15, + "Ballard Community School District": 15, + "Ballard County School District": 15, + "Ballard Elementary School District": 15, + "Ballard R-II School District": 15, + "Ballico-Cressey Elementary School District": 15, + "Ballinger Independent School District": 15, + "Ballston Spa Central School District": 15, + "Balmorhea Independent School District": 15, + "Balsz Elementary District": 15, + "Baltic School District 49-1": 15, + "Baltimore City Public Schools": 15, + "Baltimore County Public Schools": 15, + "Baltimore School District": 7, + "Bamberg County School District": 1, + "Bamberg School District 1": 14, + "Bamberg School District 2": 14, + "Bancroft": 6, + "Bancroft-Rosalie Community Schools": 15, + "Bancroft School District": 1, + "Bandera Independent School District": 15, + "Bandon School District 54": 15, + "Bangor": 14, + "Bangor Area School District": 15, + "Bangor Public Schools": 15, + "Bangor School District": 16, + "Bangor Township School District 8": 15, + "Bangor Township Schools": 15, + "Bangor Union Elementary School District": 15, + "Bangs Independent School District": 15, + "Banks County School District": 15, + "Banks School District 13": 15, + "Banner County Public Schools": 15, + "Banner Public School": 15, + "Banning Unified School District": 15, + "Bannockburn School District 106": 15, + "Banquete Independent School District": 15, + "Banta Elementary School District": 15, + "Bar Harbor": 14, + "Bar Harbor School District": 1, + "Baraboo School District": 15, + "Baraga Area Schools": 15, + "Barber County North Unified School District 254": 15, + "Barbers Hill Independent School District": 15, + "Barberton City School District": 15, + "Barbour County School District": 30, + "Barbourville Independent School District": 15, + "Bardstown Independent School District": 15, + "Baring Plantation": 14, + "Baring Plantation School District": 1, + "Bark River-Harris School District": 15, + "Barker Central School District": 15, + "Barkhamsted School District": 15, + "Barnard School District": 7, + "Barnegat Township School District": 15, + "Barnes County North Public School District 2": 6, + "Barnes County North Public School District 7": 9, + "Barnes Unified School District 223": 15, + "Barnesville Exempted Village School District": 15, + "Barnesville Public School District": 15, + "Barnet School District": 7, + "Barneveld School District": 15, + "Barnsdall Public Schools": 15, + "Barnstable School District": 15, + "Barnstead School District": 15, + "Barnum Public School District": 15, + "Barnwell County Consolidated School District": 1, + "Barnwell School District 19": 14, + "Barnwell School District 29": 14, + "Barnwell School District 45": 15, + "Barr-Reeve Community School Corporation": 15, + "Barre City School District": 7, + "Barre Supervisory Union": 4, + "Barre Town School District": 7, + "Barre Unified Union School District #97": 1, + "Barre Unified Union School District 97": 1, + "Barren County School District": 15, + "Barrington Borough School District": 15, + "Barrington Community Unit School District 220": 15, + "Barrington School District": 30, + "Barron Area School District": 15, + "Barrow County School District": 15, + "Barstow Joint Contract School District": 3, + "Barstow Unified School District": 17, + "Bartelso School District 57": 15, + "Bartholomew County School Corporation": 15, + "Bartlesville Public Schools": 15, + "Bartlett City School District": 8, + "Bartlett Independent School District": 15, + "Bartlett School District": 15, + "Barton-Lexa School District": 15, + "Barton Incorporated School District": 7, + "Bartonville School District 66": 15, + "Bartow County School District": 15, + "Basehor-Linwood Unified School District 458": 15, + "Basin Elementary School District": 15, + "Basin School District 72": 15, + "Bass Lake Joint Elementary School District": 1, + "Bass Lake Joint Union Elementary School District": 14, + "Bass River Township School District": 15, + "Bassett Unified School District": 15, + "Bastrop Independent School District": 15, + "Batavia City School District": 15, + "Batavia Local School District": 15, + "Batavia Unit School District 101": 15, + "Batesville Community School Corporation": 15, + "Batesville School District": 15, + "Bath Central School District": 15, + "Bath Community Schools": 15, + "Bath County Public Schools": 15, + "Bath County School District": 15, + "Bath Local School District": 15, + "Bath School District": 16, + "Battenkill Valley Supervisory Union": 4, + "Battiest Public Schools": 15, + "Battle Creek-Ida Grove Community School District": 10, + "Battle Creek Public Schools": 30, + "Battle Ground School District": 15, + "Battle Lake Public School District": 15, + "Baugo Community Schools": 15, + "Bauxite School District": 15, + "Baxter Community School District": 15, + "Baxter Springs Unified School District 508": 15, + "Bay City Independent School District": 15, + "Bay City School District": 15, + "Bay County School District": 15, + "Bay Head Borough School District": 15, + "Bay School District": 15, + "Bay Shore Union Free School District": 15, + "Bay St. Louis-Waveland School District": 3, + "Bay St. Louis School District": 12, + "Bay Village City School District": 15, + "Bayard Public Schools": 15, + "Bayfield School District": 15, + "Bayfield School District 10 JT-R": 5, + "Bayfield School District R-10-JT": 10, + "Bayless School District": 15, + "Bayonne City School District": 15, + "Bayport-Blue Point Union Free School District": 15, + "Bayshore Elementary School District": 15, + "BCLUW Community School District": 15, + "Beach Haven Borough School District": 15, + "Beach Park Community Consolidated School District 3": 15, + "Beach Public School District 3": 15, + "Beachwood City School District": 15, + "Beacon City School District": 15, + "Beal City Public Schools": 15, + "Beals": 14, + "Beals School District": 1, + "Bear Lake County School District 33": 15, + "Bear Lake School District": 15, + "Bear Paw Elementary School District": 15, + "Bear Valley Unified School District": 15, + "Bearden Public School": 15, + "Bearden School District": 15, + "Beardsley Elementary School District": 15, + "Beardstown Community Unit School District 15": 15, + "Beatrice Public Schools": 15, + "Beaufort County School District": 15, + "Beaufort County School District within Beaufort Marine Corps Air Station": 15, + "Beaufort County Schools": 15, + "Beaufort Marine Corps Air Station School District": 15, + "Beaumont Independent School District": 15, + "Beaumont Unified School District": 15, + "Beauregard Parish School District": 15, + "Beaver Area School District": 15, + "Beaver Cove": 14, + "Beaver Cove School District": 1, + "Beaver Creek Elementary District": 15, + "Beaver Dam School District": 15, + "Beaver Island Community School": 15, + "Beaver Local School District": 15, + "Beaver Public Schools": 15, + "Beaver River Central School District": 15, + "Beaver School District": 15, + "Beavercreek City School District": 15, + "Beaverhead County High School District": 15, + "Beaverton Rural Schools": 15, + "Beaverton School District 48J": 15, + "Becker Public School District": 15, + "Beckville Independent School District": 15, + "Beddington": 14, + "Beddington School District": 1, + "Bedford Area School District": 15, + "Bedford Central School District": 15, + "Bedford City Public Schools": 5, + "Bedford City School District": 15, + "Bedford Community School District": 15, + "Bedford County Public Schools": 15, + "Bedford County School District": 15, + "Bedford Public Schools": 15, + "Bedford School District": 30, + "Bedminster Township School District": 15, + "Beebe School District": 15, + "Beech Grove City Schools": 15, + "Beecher-Dunbar-Pembine School District": 15, + "Beecher City Community Unit School District 20": 15, + "Beecher Community School District": 15, + "Beecher Community Unit School District 200U": 15, + "Beechwood Independent School District": 15, + "Beekmantown Central School District": 15, + "Beemer Public School": 1, + "Beeville Independent School District": 15, + "Beggs Public Schools": 15, + "Belchertown School District": 15, + "Belcourt Public School District 7": 15, + "Belding Area School District": 15, + "Belen Consolidated Schools": 15, + "Belfast Central School District": 15, + "Belfield Public School District 13": 15, + "Belfonte Public School": 15, + "Belfry K-12 Schools": 15, + "Belgrade-Brooten-Elrosa Public School District": 10, + "Belgrade-Brooten-Elrosa School District": 5, + "Belgrade Elementary School District": 15, + "Belgrade High School District": 15, + "Bell City R-II School District": 15, + "Bell County School District": 15, + "Bell Public School": 3, + "Bell Public School District 10": 1, + "Bella Vista Elementary School District": 15, + "Bellaire Local School District": 15, + "Bellaire Public Schools": 15, + "Bellbrook-Sugarcreek Local School District": 12, + "Belle Fourche School District 09-1": 15, + "Belle Plaine Community School District": 15, + "Belle Plaine Public School District": 15, + "Belle Plaine Unified School District 357": 15, + "Belle Valley School District 119": 15, + "Belle Vernon Area School District": 15, + "Bellefontaine City School District": 15, + "Bellefonte Area School District": 15, + "Belleview Elementary School District": 15, + "Belleview R-III School District": 15, + "Belleville Henderson Central School District": 15, + "Belleville School District": 15, + "Belleville School District 118": 15, + "Belleville Town School District": 15, + "Belleville Township High School District 201": 15, + "Bellevue City School District": 15, + "Bellevue Community School District": 15, + "Bellevue Community Schools": 15, + "Bellevue Independent School District": 30, + "Bellevue Public Schools": 15, + "Bellevue School District": 15, + "Bellevue Union Elementary School District": 7, + "Bellevue Union School District": 8, + "Bellflower Unified School District": 15, + "Bellingham Public School District": 1, + "Bellingham School District": 30, + "Bellmawr Borough School District": 15, + "Bellmore-Merrick Central High School District": 15, + "Bellmore Union Free School District": 15, + "Bellows Falls UHSD #27": 1, + "Bellows Falls UHSD 27": 1, + "Bellows Falls Union High School District 27": 7, + "Bellows Free Academy Union High School District 38": 1, + "Bellows Free Academy Union High School District 48": 6, + "Bells City School District": 15, + "Bells Independent School District": 15, + "Bellville Independent School District": 15, + "Bellwood-Antis School District": 15, + "Bellwood School District 88": 15, + "Belmar Borough School District": 15, + "Belmond-Klemme Community School District": 15, + "Belmont-Redwood Shores Elementary School District": 15, + "Belmont Community School District": 15, + "Belmont School District": 15, + "Beloit School District": 15, + "Beloit Turner School District": 15, + "Beloit Unified School District 273": 15, + "Belpre City School District": 15, + "Belridge Elementary School District": 15, + "Belt Elementary School District": 15, + "Belt High School District": 15, + "Belton 124 School District": 15, + "Belton Independent School District": 15, + "Belvidere Consolidated Unit School District 100": 15, + "Belvidere School District": 7, + "Belvidere Town School District": 15, + "Bement Community Unit School District 5": 15, + "Bemidji Public School District": 15, + "Bemus Point Central School District": 15, + "Ben Bolt-Palito Blanco Independent School District": 15, + "Ben Hill County School District": 15, + "Benavides Independent School District": 15, + "Bend-La Pine Administrative School District 1": 15, + "Bend Elementary School District": 5, + "Bendle Public Schools": 15, + "Benge School District": 15, + "Benicia Unified School District": 15, + "Benjamin Independent School District": 15, + "Benjamin Logan Local School District": 15, + "Benjamin School District 25": 15, + "Bennett Community School District": 15, + "Bennett County School District 03-1": 15, + "Bennett School District 29-J": 15, + "Bennett Valley Union Elementary School District": 15, + "Bennington Incorporated School District": 7, + "Bennington Public Schools": 30, + "Bennington Rutland Supervisory Union": 6, + "Benoit School District": 7, + "Bensalem Township School District": 15, + "Bensenville School District 2": 15, + "Benson Public School District": 15, + "Benson School District": 7, + "Benson Unified School District": 15, + "Bentley Community Schools": 15, + "Benton-Carroll-Salem Local School District": 15, + "Benton Area School District": 15, + "Benton Community Consolidated School District 47": 15, + "Benton Community School Corporation": 15, + "Benton Community School District": 15, + "Benton Consolidated High School District 103": 15, + "Benton County School District": 30, + "Benton Harbor Area Schools": 15, + "Benton Lake Elementary School District": 15, + "Benton School District": 45, + "Bentonville Public Schools": 15, + "Bentworth School District": 15, + "Benzie County Central School": 15, + "Berea City School District": 15, + "Berea Independent School District": 15, + "Beresford School District 61-2": 15, + "Bergenfield Borough School District": 15, + "Bergman School District": 15, + "Bering Strait School District": 15, + "Berkeley County School District": 30, + "Berkeley Heights Township School District": 15, + "Berkeley School District 87": 15, + "Berkeley Township School District": 15, + "Berkeley Unified School District": 15, + "Berkley School District": 30, + "Berkshire Hills School District": 15, + "Berkshire Local School District": 15, + "Berkshire School District": 7, + "Berlin-Boylston School District": 15, + "Berlin-Milan Local School District": 3, + "Berlin Area School District": 15, + "Berlin Borough School District": 15, + "Berlin Brothersvalley School District": 15, + "Berlin Central School District": 15, + "Berlin School District": 48, + "Berlin Township School District": 15, + "Berlin Township School District 3": 15, + "Bermudian Springs School District": 15, + "Bernalillo Public Schools": 15, + "Bernards Township School District": 15, + "Berne-Knox-Westerlo Central School District": 15, + "Berne Union Local School District": 15, + "Bernie R-XIII School District": 10, + "Bernie School District": 5, + "Berrien County School District": 15, + "Berrien Springs Public Schools": 15, + "Berryessa Union Elementary School District": 15, + "Berryhill Public Schools": 15, + "Berryville Public Schools": 15, + "Bertha-Hewitt Public School District": 15, + "Bertie County Schools": 15, + "Bertrand Public Schools": 15, + "Berwick Area School District": 15, + "Berwyn North School District 98": 15, + "Berwyn South School District 100": 15, + "Bessemer Area School District": 15, + "Bessemer City School District": 15, + "Bethalto Consolidated Unit School District 8": 15, + "Bethany Public Schools": 15, + "Bethany School District": 15, + "Bethel-Tate Local School District": 15, + "Bethel Local School District": 15, + "Bethel Park School District": 15, + "Bethel Public Schools": 15, + "Bethel School District": 37, + "Bethel School District 52": 15, + "Bethel School District 82": 15, + "Bethlehem-Center School District": 15, + "Bethlehem Area School District": 15, + "Bethlehem Central School District": 15, + "Bethlehem School District": 15, + "Bethlehem Township School District": 15, + "Bethpage Union Free School District": 15, + "Bethune School District R-5": 15, + "Bettendorf Community School District": 15, + "Bettsville Local School District": 7, + "Beulah Public School District 27": 15, + "Beverly City School District": 15, + "Beverly Hills Unified School District": 15, + "Beverly School District": 15, + "Bevier C-4 School District": 15, + "Bexley City School District": 15, + "Bibb County School District": 30, + "Bicentennial Union High School District": 15, + "Bickleton School District": 15, + "Biddeford": 14, + "Biddeford School District": 1, + "Biddle Elementary School District": 15, + "Bienville Parish School District": 15, + "Big Bay de Noc School District": 15, + "Big Beaver Falls Area School District": 15, + "Big Creek Elementary School District": 15, + "Big Dry Creek Elementary School District": 5, + "Big Foot Union High School District": 15, + "Big Hollow School District 38": 15, + "Big Horn County School District 1": 15, + "Big Horn County School District 2": 15, + "Big Horn County School District 3": 15, + "Big Horn County School District 4": 15, + "Big Jackson School District": 15, + "Big Lagoon Union Elementary School District": 15, + "Big Lake Public School District": 15, + "Big Oak Flat-Groveland Unified School District": 15, + "Big Pasture Public Schools": 15, + "Big Pine Unified School District": 15, + "Big Rapids Public Schools": 15, + "Big Sandy Elementary School District": 9, + "Big Sandy High School District": 9, + "Big Sandy Independent School District (Polk County)": 15, + "Big Sandy Independent School District (Upshur and Wood Counties)": 15, + "Big Sandy K-12 Schools": 6, + "Big Sandy School District 100J": 15, + "Big Sky K-12 Schools": 4, + "Big Sky School K-12": 6, + "Big Spring Independent School District": 15, + "Big Spring School District": 15, + "Big Springs Union Elementary School District": 15, + "Big Stone City School District 25-1": 15, + "Big Sur Unified School District": 6, + "Big Timber Elementary School District": 15, + "Big Valley Joint Unified School District": 15, + "Big Walnut Local School District": 15, + "Bigfork Elementary School District": 15, + "Bigfork High School District": 15, + "Biggs Unified School District": 15, + "Billerica School District": 15, + "Billings County Public School District 1": 15, + "Billings Elementary School District": 15, + "Billings High School District": 15, + "Billings Public Schools": 15, + "Billings R-IV School District": 15, + "Biloxi Public School District": 15, + "Binger-Oney Public Schools": 15, + "Binghamton City School District": 15, + "Binghamton Common School District": 14, + "Birch Run Area School District": 15, + "Birchwood School District": 15, + "Bird Island-Olivia-Lake Lillian": 3, + "Bird Island-Olivia-Lake Lillian Public School District": 12, + "Birdville Independent School District": 15, + "Birmingham City School District": 30, + "Birney Elementary School District": 15, + "Bisbee-Egeland Public School District 2": 1, + "Bisbee Unified District": 15, + "Bishop Consolidated Independent School District": 15, + "Bishop Joint Union High School District": 5, + "Bishop Public School": 15, + "Bishop Unified School District": 10, + "Bishop Unified School District (9-12)": 6, + "Bishop Unified School District in Round Valley (9-12)": 4, + "Bishop Union Elementary School District": 5, + "Bismarck-Henning Consolidated Unit School District": 15, + "Bismarck Public School District 1": 15, + "Bismarck Public Schools": 15, + "Bismarck R-V School District": 15, + "Bison School District 52-1": 15, + "Bitterwater-Tully Union Elementary School District": 15, + "Bixby Public Schools": 15, + "Blachly School District 090": 15, + "Black Butte School District 41": 15, + "Black Butte Union Elementary School District": 15, + "Black Hawk School District": 15, + "Black Horse Pike Regional School District": 15, + "Black Oak Mine Unified School District": 15, + "Black River Falls School District": 15, + "Black River Local School District": 15, + "Black River Union School District 39": 7, + "Black Rock School District": 3, + "Blackduck Public School District": 15, + "Blackfoot School District 55": 15, + "Blackford County Schools": 15, + "Blackhawk School District": 15, + "Blacklick Valley School District": 15, + "Blackstone-Millville School District": 15, + "Blackwater R-II School District": 15, + "Blackwell Consolidated Independent School District": 15, + "Blackwell Public Schools": 15, + "Bladen County Schools": 15, + "Blaine County School District 61": 15, + "Blaine School District": 15, + "Blair-Taylor School District": 15, + "Blair Community Schools": 15, + "Blair Oaks R-II School District": 10, + "Blair Public Schools": 15, + "Blairstown Township School District": 15, + "Blairsville-Saltsburg School District": 15, + "Blake Elementary School District": 15, + "Blanchard Public Schools": 15, + "Blanchester Local School District": 15, + "Blanco Independent School District": 15, + "Bland County Public Schools": 15, + "Bland Independent School District": 15, + "Blanket Independent School District": 15, + "Bleckley County School District": 15, + "Bledsoe County School District": 15, + "Blevins School District": 15, + "Blind Brook-Rye Union Free School District": 15, + "Bliss Joint School District 234": 15, + "Blissfield Community Schools": 15, + "Blochman Union Elementary School District": 15, + "Bloom-Carroll Local School District": 15, + "Bloom-Vernon Local School District": 15, + "Bloom Township High School District 206": 15, + "Bloomburg Independent School District": 15, + "Bloomer School District": 15, + "Bloomfield-Mespo Local School District": 15, + "Bloomfield Central School District": 5, + "Bloomfield Community Schools": 15, + "Bloomfield Elementary School District": 15, + "Bloomfield Hills School District": 15, + "Bloomfield Municipal Schools": 15, + "Bloomfield R-XIV School District": 10, + "Bloomfield School District": 42, + "Bloomfield Township School District": 15, + "Bloomfield Township School District 7F": 14, + "Blooming Grove Independent School District": 15, + "Blooming Prairie Public School District": 15, + "Bloomingdale Borough School District": 15, + "Bloomingdale Public School District": 15, + "Bloomingdale School District 13": 15, + "Bloomington Independent School District": 15, + "Bloomington Public School District": 15, + "Bloomington School District 87": 15, + "Bloomsburg Area School District": 15, + "Bloomsbury Borough School District": 15, + "Blount County School District": 30, + "Blue Creek Elementary School District": 15, + "Blue Earth Area Public School District": 3, + "Blue Earth Area Public Schools": 12, + "Blue Elementary District": 15, + "Blue Eye R-V School District": 10, + "Blue Eye School District": 5, + "Blue Hill": 14, + "Blue Hill Public Schools": 15, + "Blue Hill School District": 1, + "Blue Lake Union Elementary School District": 15, + "Blue Mountain School District": 15, + "Blue Mountain Union High School District 21": 1, + "Blue Mountain Union School District 21": 9, + "Blue Mountain USD #21": 1, + "Blue Mountain USD 21": 1, + "Blue Ridge Community Unit School District 18": 15, + "Blue Ridge Independent School District": 15, + "Blue Ridge School District": 15, + "Blue Ridge Unified District": 15, + "Blue River Valley Schools": 15, + "Blue Springs R-IV School District": 15, + "Blue Valley Unified School District 229": 15, + "Blue Valley Unified School District 384": 15, + "Bluejacket Public Schools": 15, + "Bluestem Unified School District 205": 15, + "Bluff Dale Independent School District": 15, + "Bluffton-Harrison Metropolitan School District": 15, + "Bluffton Exempted Village School District": 15, + "Bluford Community Consolidated School District 114": 9, + "Bluford Unit School District 318": 6, + "Bluford Unit School District 318 (9-12) in Farrington": 6, + "Bluford Unit School District 318 (9-12) in Opdyke-Belle Rive": 6, + "Bluford Unit School District 318 (KG-8) in Mount Vernon": 6, + "Blum Independent School District": 15, + "Blytheville School District": 15, + "Boardman Local School District": 15, + "Boaz City School District": 15, + "Boerne Independent School District": 15, + "Bogalusa City School District": 15, + "Bogota Borough School District": 15, + "Bogus Elementary School District": 15, + "Bois Blanc Pines School District": 15, + "Boise City Independent School District 1": 15, + "Boise City Public Schools": 15, + "Boistfort School District": 15, + "Bokoshe Public Schools": 15, + "Boles Independent School District": 15, + "Boley Public School": 3, + "Bolinas-Stinson Union Elementary School District": 15, + "Boling Independent School District": 15, + "Bolivar-Richburg Central School District": 15, + "Bolivar R-I School District": 15, + "Bolton Central School District": 15, + "Bolton School District": 22, + "Bon Homme School District 04-2": 15, + "Boncl R-X School District": 15, + "Bond County Community Unit School District 2": 15, + "Bonduel School District": 15, + "Bondurant-Farrar Community School District": 15, + "Bonesteel-Fairfax School District 26-5": 1, + "Bonham Independent School District": 15, + "Bonita Elementary District": 15, + "Bonita Unified School District": 15, + "Bonner Elementary School District": 15, + "Bonner Springs Unified School District 204": 15, + "Bonneville Joint School District 93": 15, + "Bonny Doon Union Elementary School District": 15, + "Bonsall Unified School District": 7, + "Bonsall Unified School District (San Diego County)": 1, + "Bonsall Union Elementary School District": 7, + "Booker Independent School District": 15, + "Boone-Apache Public Schools": 15, + "Boone Central Schools": 15, + "Boone Community School District": 15, + "Boone County R-IV School District": 5, + "Boone County School District": 30, + "Boone Township Metropolitan School District": 15, + "Booneville School District": 30, + "Boonton Town School District": 15, + "Boonton Township School District": 15, + "Boonville R-I School District": 10, + "Boonville School District": 5, + "Boothbay-Boothbay Harbor Community School District": 15, + "Boquet Valley Central School District at Elizabethtown-Lewis-Westport": 4, + "Borden-Henryville School Corp": 3, + "Borden County Independent School District": 15, + "Bordentown Regional School District": 15, + "Borger Independent School District": 15, + "Borrego Springs Unified School District": 15, + "Boscobel Area School District": 15, + "Bosqueville Independent School District": 15, + "Bossier Parish School District": 15, + "Boston School District": 15, + "Boswell Public Schools": 15, + "Bosworth R-V School District": 15, + "Botetourt County Public Schools": 15, + "Botkins Local School District": 15, + "Bottineau Public School District 1": 15, + "Boulder Elementary School District": 15, + "Boulder Valley School District RE-2": 15, + "Bound Brook Borough School District": 15, + "Boundary County School District 101": 15, + "Bourbon County School District": 15, + "Bourbonnais School District 53": 15, + "Bourne School District": 15, + "Bouse Elementary District": 15, + "Bovina Independent School District": 15, + "Bow School District": 15, + "Bowbells Public School District 14": 15, + "Bowdle School District 22-1": 15, + "Bowerbank": 14, + "Bowerbank School District": 1, + "Bowie Independent School District": 15, + "Bowie Unified District": 15, + "Bowlegs Public Schools": 15, + "Bowler School District": 15, + "Bowling Green City School District": 15, + "Bowling Green Independent School District": 15, + "Bowling Green R-I School District": 15, + "Bowman County Public School District 1": 15, + "Bowring Public School": 15, + "Box Elder Elementary School District": 15, + "Box Elder High School District": 15, + "Box Elder School District": 15, + "Boxborough School District": 7, + "Boxford School District": 15, + "Boyceville Community School District": 15, + "Boyd County School District": 15, + "Boyd County Schools": 6, + "Boyd Independent School District": 15, + "Boyden-Hull Community School District": 15, + "Boyer Valley Community School District": 15, + "Boyertown Area School District": 15, + "Boyle County School District": 15, + "Boylston School District": 11, + "Boyne City Public Schools": 15, + "Boyne Falls Public School District": 15, + "Boynton Public Schools": 3, + "Boys Ranch Independent School District": 15, + "Bozeman Elementary School District": 15, + "Bozeman High School District": 15, + "Bozrah School District": 15, + "Braceville School District 75": 15, + "Bracken County School District": 15, + "Brackett Independent School District": 15, + "Bradford Area School District": 15, + "Bradford Central School District": 15, + "Bradford Community Unit School District 1": 15, + "Bradford County School District": 15, + "Bradford Exempted Village School District": 15, + "Bradford Incorporated School District": 7, + "Bradford School District": 15, + "Bradford Special School District": 15, + "Bradley-Bourbonnais Consolidated High School District 307": 15, + "Bradley Beach Borough School District": 15, + "Bradley County School District": 15, + "Bradley School District": 6, + "Bradley School District 61": 15, + "Bradley Union Elementary School District": 15, + "Bradleyville R-I School District": 15, + "Brady Independent School District": 15, + "Brady Public Schools": 15, + "Braggs Public Schools": 15, + "Braham Public School District": 15, + "Brainerd Public School District": 15, + "Braintree School District": 22, + "Braman Public Schools": 5, + "Branchburg Township School District": 15, + "Branchville Borough School District": 1, + "Brandon-Evansville Public Schools": 10, + "Brandon Public School District": 5, + "Brandon School District": 22, + "Brandon Valley School District 49-2": 15, + "Brandywine Community Schools": 8, + "Brandywine Heights Area School District": 15, + "Brandywine Public School District": 7, + "Brandywine School District": 15, + "Branford School District": 15, + "Branson R-IV School District": 15, + "Branson Reorganized School District 82": 15, + "Brantley County School District": 15, + "Brasher Falls Central School District": 15, + "Brattleboro School District": 7, + "Brattleboro Union High School District 6": 7, + "Brattleboro Union High School District 6 (9-12)": 4, + "Brawley Elementary School District": 15, + "Brawley Union High School District": 15, + "Braxton County School District": 15, + "Bray-Doyle Public Schools": 15, + "Braymer C-4 School District": 15, + "Brazos Independent School District": 15, + "Brazosport Independent School District": 15, + "Brea-Olinda Unified School District": 15, + "Breathitt County School District": 15, + "Breckenridge Community Schools": 15, + "Breckenridge Independent School District": 15, + "Breckenridge Public School District": 15, + "Breckenridge R-I School District": 15, + "Breckinridge County School District": 15, + "Brecksville-Broadview Heights City School District": 15, + "Breese School District 12": 15, + "Breitung Township Schools": 15, + "Bremen": 14, + "Bremen City School District": 15, + "Bremen Community High School District 228": 15, + "Bremen Public Schools": 15, + "Bremen School District": 1, + "Bremerton School District": 15, + "Bremond Independent School District": 15, + "Brenham Independent School District": 15, + "Brentwood Borough School District": 15, + "Brentwood School District": 30, + "Brentwood Union Elementary School District": 15, + "Brentwood Union Free School District": 15, + "Bret Harte Union High School District": 15, + "Brevard County School District": 15, + "Brewer": 14, + "Brewer School District": 1, + "Brewster Central School District": 15, + "Brewster Public School District": 5, + "Brewster School District": 30, + "Brewster Unified School District 314": 15, + "Brewton City School District": 15, + "Briarcliff Manor Union Free School District": 15, + "Brick Township School District": 15, + "Bridge City Independent School District": 15, + "Bridge Creek Public Schools": 15, + "Bridgehampton Union Free School District": 15, + "Bridgeport-Spaulding Community School District": 15, + "Bridgeport Exempted Village School District": 15, + "Bridgeport Independent School District": 15, + "Bridgeport Public Schools": 15, + "Bridgeport School District": 30, + "Bridger K-12 Schools": 15, + "Bridgeton City School District": 15, + "Bridgeville Elementary School District": 15, + "Bridgewater": 14, + "Bridgewater-Emery School District 30-3": 12, + "Bridgewater-Raritan Regional School District": 15, + "Bridgewater-Raynham School District": 15, + "Bridgewater-West Winfield Central School District": 1, + "Bridgewater School District": 8, + "Bridgewater School District 43-6": 3, + "Bridgman Public Schools": 15, + "Bridport School District": 7, + "Brielle Borough School District": 15, + "Brigantine City School District": 15, + "Briggs Elementary School District": 15, + "Briggs Public School": 15, + "Briggsdale School District RE-10": 15, + "Bright Local School District": 15, + "Brighton Area Schools": 15, + "Brighton Central School District": 15, + "Brighton No. 1 School District": 15, + "Brighton Plantation": 10, + "Brighton School District": 9, + "Brighton School District 27J": 10, + "Brillion School District": 15, + "Brimfield Community Unit School District 309": 15, + "Brimfield School District": 15, + "Brimley Area Schools": 15, + "Brinkley School District": 15, + "Brinnon School District": 15, + "Brisbane Elementary School District": 15, + "Bristol": 14, + "Bristol-Warren Regional School District": 15, + "Bristol Bay Borough School District": 15, + "Bristol Borough School District": 15, + "Bristol City Public Schools": 15, + "Bristol City School District": 15, + "Bristol Local School District": 15, + "Bristol No. 1 School District": 15, + "Bristol School District": 23, + "Bristol Township School District": 15, + "Bristow Public Schools": 15, + "Brittan Elementary School District": 15, + "Britton-Hecla School District 45-4": 15, + "Britton-Macon Area School District": 7, + "Britton Deerfield School District": 8, + "Broadalbin-Perth Central School District": 15, + "Broaddus Independent School District": 15, + "Broadus Elementary School District": 13, + "Broadview Elementary School District": 15, + "Broadview High School District": 15, + "Brock Independent School District": 15, + "Brockport Central School District": 15, + "Brockton Elementary School District": 15, + "Brockton High School District": 15, + "Brockton School District": 15, + "Brockway Area School District": 15, + "Brocton Central School District": 15, + "Brodhead School District": 15, + "Broken Arrow Public Schools": 15, + "Broken Bow Public Schools": 30, + "Bronaugh R-VII School District": 15, + "Bronson Community School District": 15, + "Bronte Independent School District": 15, + "Bronxville Union Free School District": 15, + "Brooke County School District": 15, + "Brookeland Independent School District": 15, + "Brookesmith Independent School District": 15, + "Brookfield Central School District": 15, + "Brookfield Lagrange Park SD 95": 1, + "Brookfield Local School District": 15, + "Brookfield R-III School District": 15, + "Brookfield School District": 37, + "Brookfield School District 95": 14, + "Brookhaven-Comsewogue Union Free School District": 15, + "Brookhaven School District": 15, + "Brookings-Harbor School District 17": 15, + "Brookings School District 05-1": 15, + "Brookland School District": 15, + "Brooklawn Borough School District": 15, + "Brooklin": 14, + "Brooklin School District": 1, + "Brookline School District": 37, + "Brooklyn-Guernsey-Malcom Community School District": 15, + "Brooklyn Center School District": 15, + "Brooklyn City School District": 15, + "Brooklyn Community Unit School District 188": 15, + "Brooklyn School District": 15, + "Brooks County Independent School District": 14, + "Brooks County School District": 15, + "Brooks Independent School District": 1, + "Brooksville": 14, + "Brooksville School District": 1, + "Brookville Area School District": 15, + "Brookville Local School District": 15, + "Brookwood School District 167": 15, + "Brorson Elementary School District": 15, + "Broward County School District": 15, + "Browerville Public School District": 15, + "Brown City Community School District": 15, + "Brown County Community Unit School District 1": 15, + "Brown County County School Corporation": 15, + "Brown Deer School District": 15, + "Brown Local School District": 15, + "Brownfield Independent School District": 15, + "Browning Elementary School District": 15, + "Browning High School District": 15, + "Brownington School District": 7, + "Browns Elementary School District": 15, + "Browns Valley Public School District": 15, + "Brownsboro Independent School District": 15, + "Brownsburg Community School Corporation": 15, + "Brownstown Central Community School Corporation": 15, + "Brownstown Community Unit School District 201": 15, + "Brownsville Area School District": 15, + "Brownsville Independent School District": 15, + "Brownwood Independent School District": 15, + "Bruce School District": 15, + "Bruceville-Eddy Independent School District": 15, + "Bruneau-Grand View Joint School District 365": 15, + "Bruning-Davenport Unified School System": 15, + "Brunswick": 14, + "Brunswick Central School District (Brittonkill)": 15, + "Brunswick City School District": 15, + "Brunswick County Public Schools": 15, + "Brunswick County Schools": 15, + "Brunswick R-II School District": 15, + "Brunswick School District": 8, + "Brush School District RE-2J": 15, + "Brushton-Moira Central School District": 15, + "Brushy Public School": 15, + "Brussels Community Unit School District 42": 15, + "Bryan City School District": 15, + "Bryan County School District": 15, + "Bryan Independent School District": 15, + "Bryant Public Schools": 15, + "Bryn Athyn School District": 15, + "Bryson Independent School District": 15, + "Buchanan Community School District": 15, + "Buchanan County Public Schools": 15, + "Buchanan County R-IV School District": 15, + "Buckeye Central Local School District": 15, + "Buckeye Elementary District": 15, + "Buckeye Local School District (Ashtabula County)": 15, + "Buckeye Local School District (Belmont, Harrison, and Jefferson Counties)": 15, + "Buckeye Local School District (Lorain and Medina Counties)": 15, + "Buckeye Union Elementary School District": 15, + "Buckeye Union High School District": 15, + "Buckeye Valley Local School District": 15, + "Buckholts Independent School District": 15, + "Buckingham County Public Schools": 15, + "Buckley Community School District": 15, + "Bucklin R-II School District": 15, + "Bucklin Unified School District 459": 15, + "Bucksport School District": 1, + "Bucyrus City School District": 15, + "Buellton Union Elementary School District": 15, + "Buels Gore School District": 9, + "Buena Park Elementary School District": 15, + "Buena Regional School District": 15, + "Buena Vista City Public Schools": 15, + "Buena Vista Elementary School District": 15, + "Buena Vista Independent School District": 15, + "Buena Vista School District": 5, + "Buena Vista School District R-31": 15, + "Buffalo-Hanover-Montrose Public Schools": 12, + "Buffalo City School District": 15, + "Buffalo Independent School District": 15, + "Buffalo Island Central School District": 15, + "Buffalo Lake-Hector-Stewart Public Schools": 12, + "Buffalo Lake-Hector School District": 3, + "Buffalo Public School District": 3, + "Buffalo Public Schools": 15, + "Buffalo School District RE-4": 15, + "Buffalo Valley Public Schools": 15, + "Buford City School District": 15, + "Buhl Joint School District 412": 15, + "Buhler Unified School District 313": 15, + "Bullard Independent School District": 15, + "Bullhead City School District": 15, + "Bullitt County School District": 15, + "Bulloch County School District": 15, + "Bullock County School District": 15, + "Bullock Creek School District": 15, + "Buna Independent School District": 15, + "Buncombe Consolidated School District 43": 15, + "Buncombe County Schools": 15, + "Bunker Hill Community Unit School District 8": 15, + "Bunker R-III School District": 15, + "Burbank School District 111": 15, + "Burbank Unified School District": 15, + "Bureau Valley Community Unit School District 340": 15, + "Burgettstown Area School District": 15, + "Burgin Independent School District": 15, + "Burkburnett Independent School District": 15, + "Burke Central Public School District 36": 15, + "Burke County School District": 15, + "Burke County Schools": 15, + "Burke School District": 7, + "Burke School District 26-2": 15, + "Burkeville Independent School District": 15, + "Burleson Independent School District": 15, + "Burlingame Elementary School District": 15, + "Burlingame Public School Unified School District 454": 15, + "Burlington-Edison School District": 15, + "Burlington Area School District": 15, + "Burlington City School District": 15, + "Burlington Community School District": 15, + "Burlington Public Schools": 21, + "Burlington School District": 30, + "Burlington School District RE-6J": 15, + "Burlington Township School District": 15, + "Burlington Unified School District 244": 15, + "Burnet Consolidated Independent School District": 15, + "Burnham School District 154-5": 15, + "Burns Flat-Dill City Schools": 15, + "Burnsville Public School District": 15, + "Burnt Hills-Ballston Lake Central School District": 15, + "Burnt Ranch Elementary School District": 15, + "Burnt River School District 30J": 15, + "Burr Oak Community School District": 15, + "Burrel Union Elementary School District": 15, + "Burrell School District": 15, + "Burrillville School District": 15, + "Burrton Unified School District 369": 15, + "Burt Township School District": 15, + "Burton Elementary School District": 15, + "Burton Independent School District": 15, + "Burwell Public Schools": 15, + "Bushland Independent School District": 15, + "Bushnell-Prairie City Community Unit School District 170": 15, + "Butler Area School District": 15, + "Butler Borough School District": 15, + "Butler County School District": 30, + "Butler Public Schools": 1, + "Butler R-V School District": 15, + "Butler School District 53": 15, + "Butner Public Schools": 15, + "Butte County Joint School District 111": 15, + "Butte Elementary School District": 15, + "Butte Falls School District 91": 15, + "Butte High School District": 15, + "Butte Valley Unified School District": 15, + "Butterfield Public School District": 15, + "Butternut School District": 15, + "Butteville Union Elementary School District": 15, + "Buttonwillow Union Elementary School District": 15, + "Butts County School District": 15, + "Byars Public School": 7, + "Byers Independent School District": 5, + "Byers School District 32J": 15, + "Byng Public Schools": 15, + "Bynum Elementary School District": 15, + "Bynum Independent School District": 15, + "Byram Hills Central School District": 15, + "Byram Township School District": 15, + "Byron-Bergen Central School District": 15, + "Byron Area Schools": 15, + "Byron Center Public Schools": 15, + "Byron Community Unit School District 226": 15, + "Byron Public School District": 15, + "Byron Public Schools": 6, + "Byron Union Elementary School District": 15, + "C and M Community School District": 3, + "C. A. Beard Memorial School Corporation": 15, + "Ca±on City School District RE-1": 1, + "Cañon City School District RE-1": 2, + "Cabarrus County Schools": 15, + "Cabell County School District": 15, + "Cabool R-IV School District": 10, + "Cabool School District": 5, + "Cabot Public Schools": 15, + "Cabot School District": 9, + "Cabrillo Unified School District": 15, + "Cache Public Schools": 15, + "Cache School District": 15, + "Caddo Hills School District": 15, + "Caddo Mills Independent School District": 15, + "Caddo Parish School District": 15, + "Caddo Public Schools": 15, + "Cadillac Area Public Schools": 15, + "Cadott Community School District": 15, + "Caesar Rodney School District": 15, + "Cahokia Community Unit School District 187": 15, + "Cainsville R-I School District": 15, + "Cairo-Durham Central School District": 15, + "Cairo Community Unit School District 1": 15, + "Cajon Valley Union Elementary School District": 15, + "Cal Community School District": 15, + "Calais": 14, + "Calais School District": 8, + "Calallen Independent School District": 15, + "Calamus-Wheatland Community School District": 15, + "Calaveras Unified School District": 15, + "Calcasieu Parish School District": 15, + "Caldwell-West Caldwell School District": 15, + "Caldwell County School District": 15, + "Caldwell County Schools": 15, + "Caldwell Exempted Village School District": 15, + "Caldwell Independent School District": 15, + "Caldwell Parish School District": 15, + "Caldwell School District 132": 15, + "Caldwell Unified School District 360": 15, + "Caledonia-Mumford Central School District": 15, + "Caledonia Central Supervisory Union": 6, + "Caledonia Community Schools": 15, + "Caledonia Cooperative Unified School District": 2, + "Caledonia North Supervisory Union": 3, + "Caledonia Public School District": 15, + "Calera Public Schools": 15, + "Calexico Unified School District": 15, + "Calhan School District RJ-1": 15, + "Calhoun City School District": 15, + "Calhoun Community Unit School District 40": 15, + "Calhoun County Independent School District": 15, + "Calhoun County School District": 90, + "Calhoun R-VIII School District": 15, + "Calico Rock School District": 15, + "Caliente Union Elementary School District": 15, + "Califon Borough School District": 15, + "California Area School District": 15, + "Calipatria Unified School District": 15, + "Calistoga Joint Unified School District": 15, + "Callao C-8 School District": 15, + "Callaway Public Schools": 15, + "Callisburg Independent School District": 15, + "Calloway County School District": 15, + "Calumet City School District 155": 15, + "Calumet Public School District 132": 15, + "Calumet Public Schools": 30, + "Calvert County Public Schools": 15, + "Calvert Independent School District": 15, + "Calvin Public Schools": 15, + "CAM Community School District": 12, + "Camanche Community School District": 15, + "Camas County School District 121": 15, + "Camas Prairie Elementary School District": 3, + "Camas School District": 15, + "Camas Valley School District 21J": 15, + "Cambria-Friesland School District": 15, + "Cambria Heights School District": 15, + "Cambrian Elementary School District": 15, + "Cambridge-Isanti Public School District": 15, + "Cambridge Central School District": 15, + "Cambridge City School District": 15, + "Cambridge Community Unit School District 227": 15, + "Cambridge Joint School District 432": 15, + "Cambridge Public Schools": 15, + "Cambridge School District": 39, + "Camden-Frontier School District": 15, + "Camden Central School District": 15, + "Camden City School District": 15, + "Camden County R-II School District": 5, + "Camden County School District": 15, + "Camden County Schools": 15, + "Camden Fairview School District": 15, + "Camdenton R-III School District": 15, + "Cameron County School District": 15, + "Cameron Independent School District": 15, + "Cameron Parish School District": 15, + "Cameron Public Schools": 15, + "Cameron R-I School District": 15, + "Cameron School District": 15, + "Camino Union Elementary School District": 15, + "Camp Hill School District": 15, + "Camp Lejeune Schools": 15, + "Camp Point Community Unit School District 3": 14, + "Camp Verde Unified District": 15, + "Campbell-Savona Central School District": 15, + "Campbell-Tintah Public School District": 15, + "Campbell City School District": 15, + "Campbell County Public Schools": 15, + "Campbell County School District": 30, + "Campbell County School District 1": 15, + "Campbell County School District in Southgate ISD": 10, + "Campbell Independent School District": 15, + "Campbell R-II School District": 15, + "Campbell Union Elementary School District": 15, + "Campbell Union High School District": 15, + "Campbellsport School District": 15, + "Campbellsville Independent School District": 15, + "Campo School District RE-6": 15, + "Campton School District": 15, + "Camptonville Elementary School District": 15, + "Canaan School District": 24, + "Canadian Independent School District": 15, + "Canadian Public Schools": 15, + "Canajoharie Central School District": 15, + "Canal Winchester Local School District": 15, + "Canandaigua City School District": 15, + "Canaseraga Central School District": 15, + "Canastota Central School District": 15, + "Canby Public School District": 15, + "Canby School District 86": 15, + "Candia School District": 15, + "Candler County School District": 15, + "Candor Central School District": 15, + "Caney Public Schools": 15, + "Caney Valley Public Schools": 15, + "Caney Valley Unified School District 436": 15, + "Canfield Local School District": 15, + "Canisteo-Greenwood Central School District": 15, + "Canistota School District 43-1": 15, + "Cannelton City Schools": 15, + "Cannon County School District": 15, + "Cannon Falls Public School District": 15, + "Canon-McMillan School District": 15, + "Cañon City School District RE-1": 11, + "Canon Elementary District": 15, + "Canterbury School District": 15, + "Canton-Galva Unified School District 419": 15, + "Canton Area School District": 15, + "Canton Central School District": 15, + "Canton City School District": 15, + "Canton Independent School District": 15, + "Canton Local School District": 15, + "Canton Public School District": 15, + "Canton Public Schools": 15, + "Canton R-V School District": 10, + "Canton School District": 35, + "Canton School District 41-1": 15, + "Canton Union School District 66": 15, + "Canute Public Schools": 15, + "Canutillo Independent School District": 15, + "Canyon Creek Elementary School District": 15, + "Canyon Elementary School District": 15, + "Canyon Independent School District": 15, + "Canyons School District": 14, + "Capac Community School District": 15, + "Capay Joint Union Elementary School District": 15, + "Cape Elizabeth": 14, + "Cape Elizabeth School District": 1, + "Cape Flattery School District": 15, + "Cape Girardeau 63 School District": 15, + "Cape Henlopen School District": 15, + "Cape May City School District": 15, + "Cape May Point Borough School District": 15, + "Capistrano Unified School District": 15, + "Capital School District": 15, + "Capitan Municipal Schools": 15, + "Caratunk": 14, + "Caratunk School District": 1, + "Carbon Cliff-Barstow School District 36": 15, + "Carbon County School District 1": 15, + "Carbon County School District 2": 15, + "Carbon School District": 15, + "Carbonado School District": 15, + "Carbondale Area School District": 15, + "Carbondale Community High School District 165": 15, + "Carbondale Elementary School District 95": 15, + "Cardiff Elementary School District": 15, + "Cardinal Community School District": 15, + "Cardinal Local School District": 15, + "Cardington-Lincoln Local School District": 15, + "Cardwell Elementary School District": 15, + "Carey Exempted Village School District": 15, + "Caribou School District": 1, + "Carl Junction R-I School District": 15, + "Carle Place Union Free School District": 15, + "Carlinville Community Unit School District 1": 15, + "Carlisle Area School District": 15, + "Carlisle Community School District": 15, + "Carlisle County School District": 15, + "Carlisle Independent School District": 15, + "Carlisle Local School District": 15, + "Carlisle School District": 30, + "Carlsbad Municipal Schools": 15, + "Carlsbad Unified School District": 15, + "Carlstadt-East Rutherford School District": 15, + "Carlstadt Borough School District": 15, + "Carlton Public School District": 15, + "Carlyle Community Unit School District 1": 15, + "Carlynton School District": 15, + "Carman-Ainsworth Community School District": 15, + "Carmel Central School District": 15, + "Carmel Clay Schools": 15, + "Carmel Unified School District": 15, + "Carmi-White County Community Unit School District 5": 15, + "Carmichaels Area School District": 15, + "Carnegie Public Schools": 15, + "Carney-Nadeau Public Schools": 15, + "Carney Public Schools": 15, + "Caro Community Schools": 15, + "Caroline County Public Schools": 30, + "Carpinteria Unified School District": 15, + "Carrabassett Valley": 14, + "Carrabassett Valley School District": 1, + "Carrier Mills-Stonefort Community Unit School District": 15, + "Carrington Public School District 10": 14, + "Carrington Public School District 49": 1, + "Carrizo Springs Consolidated Independent School District": 15, + "Carrizozo Municipal Schools": 15, + "Carroll Community School District": 15, + "Carroll Consolidated School Corporation": 15, + "Carroll County Public Schools": 30, + "Carroll County School District": 45, + "Carroll Independent School District": 15, + "Carroll Plantation": 14, + "Carroll Plantation School District": 1, + "Carrollton-Farmers Branch Independent School District": 15, + "Carrollton City School District": 15, + "Carrollton Community Unit School District 1": 15, + "Carrollton Exempted Village School District": 15, + "Carrollton R-VII School District": 15, + "Carrollton School District": 15, + "Carson City-Crystal Area School District": 15, + "Carson City School District": 15, + "Carsonville-Port Sanilac School District": 15, + "Carter County High School District": 15, + "Carter County School District": 30, + "Carter Elementary School District": 15, + "Carteret Borough School District": 15, + "Carteret County Schools": 15, + "Cartersville City School District": 15, + "Carterville Community Unit School District 5": 15, + "Carthage Central School District": 15, + "Carthage Elementary School District 317": 15, + "Carthage Independent School District": 15, + "Carthage R-IX School District": 15, + "Carthage School District 48-2": 1, + "Cartwright Elementary District": 15, + "Caruthers Unified School District": 15, + "Caruthers Unified School District (9-12)": 6, + "Caruthersville 18 School District": 10, + "Caruthersville School District": 5, + "Carver School District": 15, + "Cary Community Consolidated School District 26": 15, + "Cary Plantation Public Schools": 2, + "Casa Grande Elementary District": 15, + "Casa Grande Union High School District": 15, + "Cascade Elementary School District": 15, + "Cascade High School District": 15, + "Cascade School District": 15, + "Cascade School District 422": 15, + "Cascade School District 5": 15, + "Cascade Union Elementary School District": 15, + "Caseville Public Schools": 15, + "Casey-Westfield Community Unit School District 4C": 15, + "Casey County School District": 15, + "Cashion Public Schools": 15, + "Cashmere School District": 15, + "Cashton School District": 15, + "Casmalia Elementary School District": 1, + "Cass City Public Schools": 15, + "Cass County R-V School District": 5, + "Cass Lake-Bena Public Schools": 12, + "Cass Lake-Bena Schools Public Schools": 3, + "Cass School District 63": 15, + "Cass Township Schools": 3, + "Cassadaga Valley Central School District": 15, + "Cassia County Joint School District 151": 15, + "Cassopolis Public Schools": 15, + "Cassville R-IV School District": 15, + "Cassville School District": 15, + "Castaic Union Elementary School District": 7, + "Castaic Union School District": 8, + "Castine": 14, + "Castine School District": 1, + "Castle Rock School District": 15, + "Castle Rock Union Elementary School District": 15, + "Castleberry Independent School District": 15, + "Castleford School District 417": 15, + "Castleton-Hubbardton Union School District 42": 7, + "Castlewood School District 28-1": 15, + "Caston School Corporation": 15, + "Castro Valley Unified School District": 15, + "Caswell": 14, + "Caswell County Schools": 15, + "Caswell School District": 1, + "Catahoula Parish School District": 15, + "Catalina Foothills Unified District": 15, + "Catasauqua Area School District": 15, + "Catawba County Schools": 15, + "Catlin Community Unit School District 5": 7, + "Cato-Meridian Central School District": 15, + "Catoosa County School District": 15, + "Catoosa Public Schools": 15, + "Catskill Central School District": 15, + "Cattaraugus-Little Valley Central School District": 15, + "Cavalier Public School District 6": 15, + "Cave City School District": 15, + "Cave Creek Unified District": 15, + "Cave Springs Public Schools": 15, + "Cavendish School District": 7, + "Caverna Independent School District": 15, + "Cayucos Elementary School District": 15, + "Cayuga Independent School District": 15, + "Cayuse Prairie Elementary School District": 15, + "Cazenovia Central School District": 15, + "Cecil County Public Schools": 15, + "Cedar Bluffs Public Schools": 15, + "Cedar Cliff Local School District": 15, + "Cedar Falls Community School District": 15, + "Cedar Grove-Belgium Area School District": 15, + "Cedar Grove Township School District": 15, + "Cedar Hill Independent School District": 15, + "Cedar Mountain School District": 15, + "Cedar Rapids Community School District": 15, + "Cedar Rapids Public Schools": 9, + "Cedar Ridge School District": 15, + "Cedar Springs Public Schools": 15, + "Cedar Unified District": 15, + "Cedar Vale Unified School District 285": 15, + "Cedarburg School District": 15, + "Cedarville School District": 15, + "Celeste Independent School District": 15, + "Celina City School District": 15, + "Celina Independent School District": 15, + "Cement Public Schools": 15, + "Centennial Public School District": 15, + "Centennial Public Schools": 15, + "Centennial School District": 15, + "Centennial School District 28J": 15, + "Centennial School District R-1": 15, + "Center-Stanton Public School District 1": 15, + "Center 58 School District": 15, + "Center Area School District": 1, + "Center Cass School District 66": 15, + "Center Grove Community School Corporation": 15, + "Center Independent School District": 15, + "Center Joint Unified School District": 15, + "Center Line Public Schools": 15, + "Center Moriches Union Free School District": 15, + "Center Point-Urbana Community School District": 15, + "Center Point Independent School District": 15, + "Center School District 26-JT": 15, + "Center Valley School District": 2, + "Centerburg Local School District": 15, + "Centerpoint School District": 15, + "Centerville-Abington Community Schools": 15, + "Centerville City School District": 15, + "Centerville Community School District": 15, + "Centerville Elementary School District": 15, + "Centerville High School District": 15, + "Centerville Independent School District (Leon County)": 15, + "Centerville Independent School District (Trinity County)": 15, + "Centerville R-I School District": 15, + "Centerville School District": 15, + "Centerville School District 60-1": 15, + "Centinela Valley Union High School District": 15, + "Central A & M Community Unit School District 21": 15, + "Central Berkshire School District": 15, + "Central Bucks School District": 15, + "Central Cambria School District": 15, + "Central Cass Public School District 17": 15, + "Central City Community School District": 15, + "Central City Public Schools": 15, + "Central City School District 133": 15, + "Central Clinton Community School District": 7, + "Central Columbia School District": 15, + "Central Community High School District 71": 15, + "Central Community School District": 29, + "Central Community School District (East Baton Rouge County)": 1, + "Central Community Unit School District 301": 15, + "Central Community Unit School District 4": 15, + "Central Consolidated Schools": 15, + "Central Curry School District 1": 15, + "Central CUSD 3": 1, + "Central Dauphin School District": 15, + "Central Decatur Community School District": 15, + "Central DeWitt Community School District": 8, + "Central Elementary Public School District 32": 12, + "Central Elementary School District": 15, + "Central Falls School District": 15, + "Central Fulton School District": 15, + "Central Greene School District": 15, + "Central Heights Independent School District": 15, + "Central Heights Unified School District 288": 15, + "Central High Public Schools": 15, + "Central Independent School District": 15, + "Central Islip Union Free School District": 15, + "Central Kitsap School District": 15, + "Central Lake Public Schools": 15, + "Central Lee Community School District": 15, + "Central Linn School District 552": 15, + "Central Local School District": 15, + "Central Lyon Community School District": 15, + "Central Montcalm Public Schools": 15, + "Central Noble Community School Corporation": 15, + "Central Plains Unified School District 112": 12, + "Central Point School District 6": 15, + "Central Public School District": 12, + "Central Public Schools": 15, + "Central R-III School District": 15, + "Central Regional School District": 15, + "Central School District 104": 15, + "Central School District 13J": 15, + "Central School District 51": 15, + "Central Springs Community School District": 12, + "Central Square Central School District": 15, + "Central Stickney School District 110": 15, + "Central Unified School District": 15, + "Central Unified School District 462": 15, + "Central Union Elementary School District": 15, + "Central Union High School District": 15, + "Central Valley Central School District": 3, + "Central Valley Public School District 3": 15, + "Central Valley Public Schools": 6, + "Central Valley School District": 34, + "Central Vermont Supervisory Union": 3, + "Central York School District": 15, + "Centralia Elementary School District": 15, + "Centralia High School District 200": 15, + "Centralia R-VI School District": 15, + "Centralia School District": 15, + "Centralia School District 135": 15, + "Centre Unified School District 397": 15, + "Centreville Public Schools": 15, + "Centura Public Schools": 15, + "Century Community Unit School District 100": 15, + "Ceres Unified School District": 15, + "Cerro Gordo Community Unit School District 100": 15, + "Chadron Public Schools": 15, + "Chadwick-Milledgeville Community Unit School District 399": 15, + "Chadwick R-I School District": 15, + "Chaffee R-II School District": 10, + "Chaffey Joint Union High School District": 15, + "Chagrin Falls Exempted Village School District": 15, + "Challis Joint School District 181": 15, + "Chama Valley Independent Schools": 15, + "Chamberlain School District 07-1": 15, + "Chambers County School District": 15, + "Chambers Public Schools": 15, + "Chambersburg Area School District": 15, + "Champaign Community Unit School District 4": 15, + "Champie Elementary District": 1, + "Champion Local School District": 15, + "Champlain Islands Unified Union School District #66": 1, + "Champlain Islands Unified Union School District 66": 1, + "Champlain Valley Unified School District": 5, + "Champlain Valley Union High School District 15": 7, + "Chandler Public Schools": 15, + "Chandler Unified District": 15, + "Chaney-Monge School District 88": 15, + "Channahon School District 17": 15, + "Channelview Independent School District": 15, + "Channing Independent School District": 15, + "Chanute Public Schools Unified School District 413": 15, + "Chaparral Schools Unified School District 361": 1, + "Chapel Hill-Carrboro Schools": 15, + "Chapel Hill Independent School District (Smith County)": 15, + "Chapel Hill Independent School District (Titus County)": 15, + "Chaplin School District": 15, + "Chapman Unified School District 473": 15, + "Chappaqua Central School District": 15, + "Chardon Local School District": 15, + "Chariho Regional School District": 15, + "Chariton Community School District": 15, + "Charleroi School District": 15, + "Charles City Community School District": 15, + "Charles City County Public Schools": 15, + "Charles County Public Schools": 15, + "Charleston Community Unit School District 1": 15, + "Charleston County School District": 15, + "Charleston R-I School District": 15, + "Charleston School District": 24, + "Charlevoix Public Schools": 15, + "Charlo Elementary School District": 15, + "Charlo High School District": 15, + "Charlotte": 14, + "Charlotte-Mecklenburg Schools": 15, + "Charlotte County Public Schools": 15, + "Charlotte County School District": 15, + "Charlotte Independent School District": 15, + "Charlotte Public Schools": 15, + "Charlotte School District": 8, + "Charlotte Valley Central School District": 15, + "Charlottesville City Public Schools": 15, + "Charlton County School District": 15, + "Charter Oak-Ute Community School District": 15, + "Charter Oak Unified School District": 15, + "Chartiers-Houston School District": 15, + "Chartiers Valley School District": 15, + "Chase-Raymond Unified School District 401": 15, + "Chase County Schools": 15, + "Chase County Unified School District 284": 15, + "Chassell Township School District": 15, + "Chateaugay Central School District": 15, + "Chatfield Public Schools": 15, + "Chatham Central School District": 15, + "Chatham County School District": 15, + "Chatham County Schools": 15, + "Chatham School District": 35, + "Chatom Union Elementary School District": 15, + "Chattahoochee County for Fort Benning": 14, + "Chattahoochee County School District": 15, + "Chattanooga Public Schools": 15, + "Chattooga County School District": 15, + "Chautauqua County Community Unified School District 286": 15, + "Chautauqua Lake Central School District": 15, + "Chawanakee Joint Unified School District": 1, + "Chawanakee Unified School District": 14, + "Chazy Union Free School District": 15, + "Cheatham County School District": 15, + "Chebeague Island": 14, + "Cheboygan Area Schools": 15, + "Checotah Public Schools": 15, + "Cheektowaga-Maryvale Union Free School District": 15, + "Cheektowaga-Sloan Union Free School District": 15, + "Cheektowaga Central School District": 15, + "Chehalis School District": 15, + "Chelmsford School District": 15, + "Chelsea Public Schools": 15, + "Chelsea School District": 38, + "Cheltenham School District": 3, + "Cheltenham Township School District": 12, + "Chenango Forks Central School District": 15, + "Chenango Valley Central School District": 15, + "Cheney School District": 15, + "Cheney Unified School District 268": 15, + "Chequamegon School District": 14, + "Cheraw School District 31": 15, + "Cherokee Central Schools": 1, + "Cherokee Community School District": 15, + "Cherokee County School District": 45, + "Cherokee County Schools": 15, + "Cherokee Independent School District": 15, + "Cherokee Public Schools": 15, + "Cherokee Unified School District 247": 15, + "Cherry Creek School District 5": 15, + "Cherry Hill Township School District": 15, + "Cherry School District 92": 7, + "Cherry Valley-Springfield Central School District": 15, + "Cherryfield": 10, + "Cherryvale Unified School District 447": 15, + "Chesaning Union Schools": 15, + "Chesapeake City Public Schools": 15, + "Chesapeake Union Exempted Village School District": 15, + "Cheshire School District": 15, + "Chesilhurst Borough School District": 15, + "Chester-Andover Union School District 29": 7, + "Chester-East Lincoln Community Csd 61": 14, + "Chester-East Lincoln Community CSD 61": 1, + "Chester-Joplin-Inverness Elementary School District": 15, + "Chester-Joplin-Inverness High School District": 15, + "Chester-Upland School District": 15, + "Chester Community Unit School District 139": 15, + "Chester County School District": 30, + "Chester Independent School District": 15, + "Chester Non-High School District 122": 15, + "Chester School District": 30, + "Chester School District 39-1": 15, + "Chester Township School District": 15, + "Chester Union Free School District": 15, + "Chesterfield-Goshen School District": 15, + "Chesterfield County Public Schools": 15, + "Chesterfield County School District": 15, + "Chesterfield School District": 15, + "Chesterfield Township School District": 15, + "Chestnut Ridge School District": 15, + "Chetek-Weyerhaeuser Area School District": 12, + "Chetek School District": 3, + "Chetopa-St. Paul Unified School District 505": 15, + "Chevelon Butte School District": 15, + "Chewelah School District": 15, + "Cheyenne County School District RE-5": 15, + "Cheyenne Mountain School District 12": 15, + "Cheyenne Public Schools": 15, + "Cheylin Unified School District 103": 15, + "Chicago Heights School District 170": 15, + "Chicago Park Elementary School District": 15, + "Chicago Public School District 299": 15, + "Chicago Ridge School District 127-5": 15, + "Chichester School District": 30, + "Chickamauga City School District": 15, + "Chickasaw City School District": 10, + "Chickasaw County School District": 15, + "Chickasha Public Schools": 15, + "Chico Independent School District": 15, + "Chico Unified School District": 15, + "Chicopee School District": 15, + "Childress Independent School District": 15, + "Chilhowee R-IV School District": 15, + "Chillicothe City School District": 15, + "Chillicothe Independent School District": 15, + "Chillicothe R-II School District": 15, + "Chilton County School District": 15, + "Chilton Independent School District": 15, + "Chilton School District": 15, + "Chimacum School District": 15, + "China School District": 1, + "China Spring Independent School District": 15, + "Chinese Camp Elementary School District": 1, + "Chinle Unified District": 15, + "Chino Valley Unified District": 15, + "Chino Valley Unified School District": 15, + "Chinook Elementary School District": 15, + "Chinook High School District": 15, + "Chippewa Falls Area School District": 15, + "Chippewa Hills School District": 15, + "Chippewa Local School District": 15, + "Chippewa Valley Schools": 15, + "Chireno Independent School District": 15, + "Chisago Lakes School District": 15, + "Chisholm Public School District": 15, + "Chisholm Public Schools": 15, + "Chisum Independent School District": 15, + "Chittenango Central School District": 15, + "Chittenden Central Supervisory Union": 3, + "Chittenden Central Supervisory Union in Essex Junction (PK-8)": 3, + "Chittenden East Supervisory Union": 6, + "Chittenden School District": 7, + "Chittenden South Supervisory Union": 3, + "Choctaw County School District": 30, + "Choctaw/Nicoma Park Schools": 15, + "Chokio-Alberta Public School District": 15, + "Choteau Elementary School District": 15, + "Choteau High School District": 15, + "Chouteau-Mazie Public Schools": 15, + "Chowchilla Elementary School District": 15, + "Chowchilla Union High School District": 15, + "Christian County School District": 15, + "Christina School District": 15, + "Christopher Community Unit School District 99": 15, + "Christoval Independent School District": 15, + "Chualar Union Elementary School District": 15, + "Chugach School District": 15, + "Chula Vista Elementary School District": 15, + "Church School District": 15, + "Churchill County School District": 15, + "Churchville-Chili Central School District": 15, + "Cicero School District 99": 15, + "Cienega Union Elementary School District": 15, + "Cimarron-Ensign Unified School District 102": 15, + "Cimarron Public Schools": 30, + "Cincinnati City School District": 15, + "Cincinnatus Central School District": 15, + "Cinnabar Elementary School District": 15, + "Cinnaminson Township School District": 15, + "Circle Elementary School District": 15, + "Circle High School District": 15, + "Circle Unified School District 375": 15, + "Circleville City School District": 15, + "Cisco Independent School District": 15, + "Cissna Park Community Unit School District 6": 15, + "Citrus County School District": 15, + "Citrus South Tule Elementary School District": 7, + "City of East Chicago School District": 14, + "City View Independent School District": 15, + "Claflin Unified School District 354": 3, + "Claiborne County School District": 30, + "Claiborne Parish School District": 15, + "Clairton City School District": 15, + "Clancy Elementary School District": 15, + "Clare Public Schools": 15, + "Claremont School District": 15, + "Claremont Unified School District": 15, + "Claremore Public Schools": 15, + "Clarence Central School District": 15, + "Clarenceville School District": 15, + "Clarendon County School District": 1, + "Clarendon Independent School District": 15, + "Clarendon School District": 22, + "Clarendon School District 1": 14, + "Clarendon School District 2": 14, + "Clarendon School District 3": 14, + "Clarinda Community School District": 15, + "Clarion-Goldfield-Dows Community School District": 8, + "Clarion-Goldfield Community School District": 7, + "Clarion-Limestone Area School District": 15, + "Clarion Area School District": 15, + "Clark-Pleasant Community School Corporation": 15, + "Clark-Shawnee Local School District": 15, + "Clark County R-I School District": 15, + "Clark County School District": 30, + "Clark County School District 161": 15, + "Clark School District 12-2": 15, + "Clark Township School District": 15, + "Clarkdale-Jerome Elementary District": 15, + "Clarke Community School District": 15, + "Clarke County Public Schools": 15, + "Clarke County School District": 30, + "Clarksburg C-2 School District": 15, + "Clarksburg School District": 15, + "Clarksdale Municipal School District": 15, + "Clarkson Public Schools": 15, + "Clarkston Community School District": 15, + "Clarkston School District": 15, + "Clarkstown Central School District": 15, + "Clarksville-Montgomery County School System": 8, + "Clarksville Community School Corporation": 15, + "Clarksville Community School District": 15, + "Clarksville Independent School District": 15, + "Clarksville School District": 30, + "Clarkton C-4 School District": 15, + "Clatskanie School District 6J": 15, + "Claude Independent School District": 15, + "Clawson City School District": 15, + "Clay Center Public Schools": 9, + "Clay Center Unified School District 379": 15, + "Clay Central-Everly Community School District": 15, + "Clay City Community Unit District 10": 15, + "Clay Community Schools": 15, + "Clay County School District": 97, + "Clay County Schools": 15, + "Clay Joint Elementary School District": 15, + "Clay Local School District": 15, + "Claymont City School District": 15, + "Claysburg-Kimmel School District": 15, + "Clayton Borough School District": 15, + "Clayton County School District": 15, + "Clayton Public Schools": 30, + "Clayton Ridge Community School District": 15, + "Clayton School District": 30, + "Cle Elum-Roslyn School District": 15, + "Clear Creek-Amana Community School District": 15, + "Clear Creek Elementary School District": 15, + "Clear Creek Independent School District": 15, + "Clear Creek School District RE-1": 15, + "Clear Fork Valley Local School District": 15, + "Clear Lake Community School District": 15, + "Clear Lake School District": 15, + "Clearbrook-Gonvick School District": 15, + "Clearfield Area School District": 15, + "Clearfield Community School District": 7, + "Clearview Local School District": 15, + "Clearview Regional School District": 15, + "Clearwater R-I School District": 15, + "Clearwater Unified School District 264": 15, + "Cleburne County School District": 15, + "Cleburne Independent School District": 15, + "Clementon Borough School District": 15, + "Cleora Public School": 15, + "Clermont Northeastern Local School District": 15, + "Cleveland City School District": 15, + "Cleveland County School District": 15, + "Cleveland County Schools": 15, + "Cleveland Elementary School District": 15, + "Cleveland Heights-University Heights City School District": 15, + "Cleveland Hill Union Free School District": 15, + "Cleveland Independent School District": 15, + "Cleveland Municipal School District": 15, + "Cleveland Public School District": 15, + "Cleveland Public Schools": 15, + "Cleveland School District": 15, + "Clever R-V School District": 15, + "Cliffside Park Borough School District": 15, + "Clifton-Clyde Unified School District 224": 15, + "Clifton-Fine Central School District": 15, + "Clifton City School District": 15, + "Clifton Independent School District": 15, + "Clifton Unified District": 7, + "Climax-Scotts Community School District": 15, + "Climax-Shelly Public Schools": 12, + "Climax Public School District": 3, + "Climax Springs R-IV School District": 15, + "Clinch County School District": 15, + "Clint Independent School District": 15, + "Clinton-Graceville-Beardsley": 12, + "Clinton-Graceville-Beardsley-Wheaton-Sisseton/Wilmot (SD) in Browns Valley (9-12)": 4, + "Clinton-Graceville-Beardsley Public School District": 3, + "Clinton-Massie Local School District": 15, + "Clinton Central School Corporation": 15, + "Clinton Central School District": 15, + "Clinton City Elementary School District": 7, + "Clinton City School District": 8, + "Clinton City Schools": 15, + "Clinton Community School District": 30, + "Clinton Community Schools": 15, + "Clinton Community Unit School District 15": 15, + "Clinton County R-III School District": 15, + "Clinton County School District": 15, + "Clinton Elementary School District": 15, + "Clinton Prairie School Corporation": 15, + "Clinton Public School District": 15, + "Clinton Public Schools": 15, + "Clinton School District": 60, + "Clinton Town-Glen Gardner School District": 12, + "Clinton Town School District": 3, + "Clinton Township School District": 15, + "Clintondale Community Schools": 15, + "Clintonville School District": 15, + "Clio Area School District": 15, + "Cloquet Public School District": 15, + "Closter Borough School District": 15, + "Cloudcroft Municipal Schools": 15, + "Clover Park School District": 15, + "Cloverdale Community Schools": 15, + "Cloverdale Unified School District": 15, + "Cloverleaf Local School District": 15, + "Cloverport Independent School District": 15, + "Clovis Municipal Schools": 15, + "Clovis Unified School District": 15, + "Clyde-Green Springs Exempted Village School District": 15, + "Clyde-Savannah Central School District": 15, + "Clyde Consolidated Independent School District": 15, + "Clymer Central School District": 15, + "Coachella Valley Unified School District": 15, + "Coahoma County School District": 15, + "Coahoma Independent School District": 15, + "Coal City Community Unit School District 1": 15, + "Coalgate Public Schools": 15, + "Coalinga-Huron Joint Unified School District": 7, + "Coalinga-Huron Unified School District": 8, + "Coarsegold Union Elementary School District": 1, + "Coast Unified School District": 15, + "Coast Unified School District (9-12)": 6, + "Coatesville Area School District": 15, + "Cobb County School District": 15, + "Cobden School Unit District 17": 15, + "Cobleskill-Richmondville Central School District": 15, + "Cobre Consolidated Schools": 15, + "Cocalico School District": 15, + "Cochise County High School District": 1, + "Cochise Elementary District": 15, + "Cochrane-Fountain City School District": 15, + "Cocke County School District": 15, + "Cocke County School District in Newport": 15, + "Coconino County High School District": 1, + "Cody-Kilgore Public Schools": 15, + "Coeur d'Alene School District 271": 15, + "Coffee County School District": 45, + "Coffee County School District in Manchester": 15, + "Coffee Creek Elementary School District": 15, + "Coffeeville School District": 15, + "Coffeyville Unified School District 445": 15, + "Cohagen Elementary School District": 15, + "Cohasset School District": 15, + "Cohoes City School District": 15, + "Colbert County School District": 15, + "Colbert Public Schools": 15, + "Colby Public Schools Unified School District 315": 15, + "Colby School District": 15, + "Colchester School District": 30, + "Colcord Public Schools": 15, + "Cold Spring Elementary School District": 15, + "Cold Spring Harbor Central School District": 15, + "Coldspring-Oakhurst Consolidated Independent School District": 15, + "Coldwater Community Schools": 15, + "Coldwater Exempted Village School District": 15, + "Cole Camp R-I School District": 15, + "Cole County R-I School District": 15, + "Cole County R-II School District": 5, + "Cole County R-V School District": 15, + "Colebrook School District": 30, + "Coleman Community School District": 15, + "Coleman Independent School District": 15, + "Coleman Public Schools": 15, + "Coleman School District": 15, + "Coleridge Community Schools": 10, + "Colfax-Mingo Community School District": 15, + "Colfax Elementary School District": 15, + "Colfax School District": 30, + "Colfax Township School District 1F": 15, + "College Community School District": 15, + "College Corner Local School District": 15, + "College Elementary School District": 15, + "College Place School District": 15, + "College Station Independent School District": 15, + "Colleton County School District": 15, + "Collier County School District": 15, + "Collierville School District": 8, + "Collingswood Borough School District": 15, + "Collins-Maxwell Community School District": 15, + "Collinsville Community Unit School District 10": 15, + "Collinsville Independent School District": 15, + "Collinsville Public Schools": 15, + "Colman-Egan School District 50-5": 15, + "Colmesneil Independent School District": 15, + "Colo-Nesco Community School District": 15, + "Coloma Community Schools": 15, + "Colome Consolidated School District 59-3": 14, + "Colome School District 59-1": 1, + "Colon Community School District": 15, + "Colona School District 190": 15, + "Colonel Crawford Local School District": 15, + "Colonial Beach Town Public Schools": 15, + "Colonial Heights City Public Schools": 15, + "Colonial School District": 30, + "Colorado City Unified District": 15, + "Colorado Independent School District": 15, + "Colorado River Union High School District": 15, + "Colorado Springs School District 11": 15, + "Colquitt County School District": 15, + "Colstrip Elementary School District": 15, + "Colstrip High School District": 15, + "Colton-Pierrepont Central School District": 15, + "Colton Joint Unified School District": 15, + "Colton School District": 15, + "Colton School District 53": 15, + "Colts Neck Township School District": 15, + "Columbia-Brazoria Independent School District": 15, + "Columbia (Stevens) School District": 4, + "Columbia (Walla Walla) School District": 4, + "Columbia 93 School District": 10, + "Columbia Borough School District": 15, + "Columbia Community Unit School District 4": 15, + "Columbia County School District": 30, + "Columbia Elementary School District": 15, + "Columbia Falls Elementary School District": 15, + "Columbia Falls High School District": 15, + "Columbia Heights Public School District": 15, + "Columbia Local School District": 15, + "Columbia Public Schools": 5, + "Columbia School District": 68, + "Columbia School District (Stevens County)": 3, + "Columbia School District (Walla Walla County)": 3, + "Columbia School District (Walla Walla)": 8, + "Columbia Union Elementary School District": 15, + "Columbiana Exempted Village School District": 15, + "Columbine Elementary School District": 15, + "Columbus City School District": 15, + "Columbus Community School District": 15, + "Columbus County Schools": 15, + "Columbus Elementary School District": 15, + "Columbus Grove Local School District": 15, + "Columbus High School District": 15, + "Columbus Independent School District": 15, + "Columbus Municipal School District": 15, + "Columbus Public Schools": 15, + "Columbus School District": 15, + "Columbus Unified School District 493": 15, + "Colusa Unified School District": 15, + "Colville School District": 15, + "Comal Independent School District": 15, + "Comanche County Unified School District 300": 15, + "Comanche Independent School District": 15, + "Comanche Public Schools": 15, + "Comfort Independent School District": 15, + "Comfrey Public School District": 15, + "Commack Union Free School District": 15, + "Commerce City School District": 15, + "Commerce Independent School District": 15, + "Commerce Public Schools": 15, + "Commercial Township School District": 15, + "Commodore Perry School District": 15, + "Community Consolidated School District 146": 15, + "Community Consolidated School District 168": 15, + "Community Consolidated School District 180": 15, + "Community Consolidated School District 204": 15, + "Community Consolidated School District 59": 15, + "Community Consolidated School District 93": 15, + "Community High School District 155": 15, + "Community High School District 218": 15, + "Community High School District 94": 15, + "Community High School District 99": 15, + "Community Independent School District": 15, + "Community R-VI School District": 15, + "Community Unit School District 16": 14, + "Community Unit School District 2": 14, + "Community Unit School District 200": 15, + "Community Unit School District 300": 15, + "Community Unit School District 4": 15, + "Como-Pickton Consolidated Independent School District": 15, + "Compton Unified School District": 15, + "Comstock Independent School District": 15, + "Comstock Park Public Schools": 15, + "Comstock Public Schools": 15, + "Concho Elementary District": 15, + "Concord-Carlisle School District": 15, + "Concord Community Schools": 30, + "Concord Public Schools": 15, + "Concord School District": 37, + "Concordia Parish School District": 15, + "Concordia R-II School District": 10, + "Concordia School District": 5, + "Concordia Unified School District 333": 15, + "Concrete School District": 15, + "Conde School District 56-1": 1, + "Condon School District 25J": 15, + "Conecuh County School District": 15, + "Conejo Valley Unified School District": 15, + "Conemaugh Township Area School District": 15, + "Conemaugh Valley School District": 15, + "Conestoga Public Schools": 15, + "Conestoga Valley School District": 15, + "Conewago Valley School District": 15, + "Congress Elementary District": 15, + "Connally Independent School District": 15, + "Conneaut Area City School District": 15, + "Conneaut School District": 15, + "Connellsville Area School District": 15, + "Connetquot Central School District": 15, + "Conotton Valley Union Local School District": 15, + "Conrad Elementary School District": 15, + "Conrad High School District": 15, + "Conrad Weiser Area School District": 15, + "Conroe Independent School District": 15, + "Consolidated High School District 230": 15, + "Constantine Public School District": 15, + "Continental Elementary District": 15, + "Continental Local School District": 15, + "Contoocook Valley School District": 15, + "Converse County School District 1": 15, + "Converse County School District 2": 15, + "Conway Public Schools": 15, + "Conway School District": 45, + "Conway Springs Unified School District 356": 15, + "Cook County Public Schools": 15, + "Cook County School District": 15, + "Cook County School District 130": 15, + "Cooke City Elementary School District": 15, + "Coolidge Independent School District": 15, + "Coolidge Unified District": 15, + "Coon Rapids-Bayard Community School District": 15, + "Cooper": 14, + "Cooper County C-4 School District": 5, + "Cooper County R-IV School District": 10, + "Cooper Independent School District": 15, + "Cooper School District": 1, + "Cooperstown Central School District": 15, + "Coopersville Public School District": 15, + "Coos Bay School District 9": 15, + "Coos County School District": 15, + "Coosa County School District": 15, + "Cooter R-IV School District": 15, + "Copake-Taconic Hills Central School District": 3, + "Copan Public Schools": 15, + "Copeland Unified School District 476": 15, + "Copenhagen Central School District": 15, + "Copiague Union Free School District": 15, + "Copiah County School District": 15, + "Copley-Fairlawn City School District": 15, + "Coplin Plantation": 14, + "Coplin Plantation School District": 1, + "Coppell Independent School District": 15, + "Copper River School District": 15, + "Copperas Cove Independent School District": 15, + "Coquille School District 8": 15, + "Corbett School District 39": 15, + "Corbin City School District": 15, + "Corbin Independent School District": 15, + "Corcoran Joint Unified School District": 15, + "Cordell Public Schools": 15, + "Cordova City School District": 15, + "Corinth Central School District": 15, + "Corinth School District": 15, + "Cornell Community Consolidated School District 426": 15, + "Cornell Community High School District 70": 1, + "Cornell School District": 30, + "Corning City School District": 15, + "Corning Community School District": 15, + "Corning Public Schools": 15, + "Corning Union Elementary School District": 15, + "Corning Union High School District": 15, + "Cornish School District": 15, + "Cornwall-Lebanon School District": 15, + "Cornwall Central School District": 15, + "Cornwall School District": 22, + "Corona-Norco Unified School District": 15, + "Corona Municipal Schools": 15, + "Coronado Unified School District": 15, + "Corpus Christi Independent School District": 15, + "Corrigan-Camden Independent School District": 15, + "Corry Area School District": 15, + "Corsica-Stickney 21-3": 4, + "Corsica-Stickney School District 21-3": 4, + "Corsica School District 21-2": 7, + "Corsicana Independent School District": 15, + "Cortland City School District": 15, + "Corunna Public School District": 15, + "Corvallis K-12 Schools": 15, + "Corvallis School District 509J": 15, + "Corwith-Wesley Community School District": 7, + "Cory-Rawson Local School District": 15, + "Coshocton City School District": 15, + "Cosmopolis School District": 15, + "Cossatot River School District": 12, + "Cotati-Rohnert Park Unified School District": 15, + "Cotopaxi School District RE-3": 14, + "Cotter School District": 15, + "Cotton Center Independent School District": 15, + "Cottonwood-Oak Creek Elementary District": 15, + "Cottonwood Elementary School District (Custer County)": 9, + "Cottonwood Elementary School District (Gallatin County)": 15, + "Cottonwood Elementary School District (Hill County)": 15, + "Cottonwood Joint School District 242": 15, + "Cottonwood Public School": 15, + "Cottonwood Union Elementary School District": 15, + "Cotulla Independent School District": 15, + "Couch R-I School District": 15, + "Coudersport Area School District": 15, + "Coulee-Hartline School District": 15, + "Coulterville Unit School District 1": 15, + "Council Bluffs Community School District": 15, + "Council Rock School District": 15, + "Council School District 13": 15, + "Country Club Hills School District 160": 15, + "County Line School District": 15, + "County of Winnebago SD 320": 1, + "County of Woodford School": 1, + "Coupeville School District": 15, + "Coupland Independent School District": 15, + "Cove School District 15": 15, + "Coventry Local School District": 15, + "Coventry School District": 39, + "Covert Public Schools": 15, + "Covina-Valley Unified School District": 15, + "Covington-Douglas Schools": 15, + "Covington City Public Schools": 14, + "Covington Community School Corporation": 15, + "Covington County School District": 30, + "Covington Exempted Village School District": 15, + "Covington Independent School District": 30, + "Cowan Community School Corporation": 15, + "Cowden-Herrick Community Unit School District 3A": 15, + "Coweta County School District": 15, + "Coweta Public Schools": 15, + "Cowgill R-VI School District": 15, + "Cox Bar Elementary School District": 7, + "Coxsackie-Athens Central School District": 15, + "Coyle Public Schools": 15, + "Cozad City Schools": 10, + "Cozad Community Schools": 5, + "Crab Orchard Community Unit School District 3": 15, + "Craftsbury School District": 9, + "Craig City School District": 15, + "Craig County Public Schools": 15, + "Craig Elementary School District": 1, + "Craig R-III School District": 15, + "Cranberry Area School District": 15, + "Cranberry Isles": 14, + "Cranberry Isles School District": 1, + "Cranbury Township School District": 15, + "Crandall Independent School District": 15, + "Crandon School District": 15, + "Crane Elementary District": 15, + "Crane Independent School District": 15, + "Crane R-III School District": 15, + "Cranfills Gap Independent School District": 15, + "Cranford Township School District": 15, + "Cranston School District": 15, + "Craven County Schools": 15, + "Crawford": 14, + "Crawford AuSable Schools": 15, + "Crawford Central School District": 15, + "Crawford County Community School Corporation": 15, + "Crawford County R-2 School District": 15, + "Crawford County R-I School District": 15, + "Crawford County School District": 15, + "Crawford Independent School District": 15, + "Crawford Public Schools": 15, + "Crawford School District": 1, + "Crawfordsville Community Schools": 15, + "Creede Consolidated School District 1": 10, + "Creede School District": 5, + "Creek Valley Schools": 15, + "Creighton Community Public Schools": 5, + "Creighton Elementary District": 15, + "Creighton Public Schools": 10, + "Crenshaw County School District": 15, + "Crescent Iroquois Community Unit School District 249": 15, + "Crescent Public Schools": 15, + "Crescent School District": 15, + "Cresskill Borough School District": 15, + "Crest Unified School District 479": 15, + "Crestline Exempted Village School District": 15, + "Creston Community Consolidated School District 161": 15, + "Creston Community School District": 15, + "Creston Elementary School District": 15, + "Creston School District": 15, + "Crestview Local School District (Ashland and Richland Counties)": 15, + "Crestview Local School District (Columbiana County)": 15, + "Crestview Local School District (Van Wert County)": 15, + "Crestwood Local School District": 15, + "Crestwood School District": 30, + "Creswell School District 40": 15, + "Crete-Monee Community Unit School District 201-U": 15, + "Crete Public Schools": 15, + "Creve Coeur School District 76": 15, + "Cripple Creek-Victor School District RE-1": 15, + "Crisp County School District": 15, + "Crittenden County School District": 15, + "Crivitz School District": 15, + "Crocker R-II School District": 10, + "Crocker School District": 5, + "Crockett County Consolidated Common School District": 15, + "Crockett County School District": 15, + "Crockett County School District in Alamo": 15, + "Crockett County School District in Bells": 15, + "Crockett Independent School District": 15, + "Crofton Community Schools": 15, + "Cromwell-Wright Public Schools": 15, + "Cromwell School District": 15, + "Crook County School District": 15, + "Crook County School District 1": 15, + "Crooked Oak Public Schools": 15, + "Crookston Public School District": 15, + "Crooksville Exempted Village School District": 15, + "Crosby-Ironton Public School District": 15, + "Crosby Independent School District": 15, + "Crosbyton Consolidated Independent School District": 15, + "Cross County Community Schools": 15, + "Cross County School District": 15, + "Cross Plains Independent School District": 15, + "Cross Roads Independent School District": 15, + "Crossett School District": 15, + "Croswell-Lexington Community School District": 15, + "Crothersville Community Schools": 15, + "Croton-Harmon Union Free School District": 15, + "Crow-Applegate-Lorane Sd 66": 15, + "Crowder Public Schools": 15, + "Crowell Independent School District": 15, + "Crowley County School District RE-1-J": 15, + "Crowley Independent School District": 15, + "Crown King Elementary District": 15, + "Crown Point Central School District": 15, + "Crown Point Community School Corporation": 15, + "Croydon School District": 15, + "Crutcho Public School": 15, + "Crystal City 47 School District": 15, + "Crystal City Independent School District": 15, + "Crystal Lake Community Consolidated School District 47": 15, + "Cuba-Rushford Central School District": 15, + "Cuba City School District": 15, + "Cuba Independent Schools": 15, + "Cucamonga Elementary School District": 15, + "Cudahy School District": 15, + "Cuddeback Union Elementary School District": 15, + "Cuero Independent School District": 15, + "Culberson County-Allamoore Independent School District": 15, + "Culbertson Elementary School District": 15, + "Culbertson High School District": 15, + "Culdesac Joint School District 342": 15, + "Cullman City School District": 15, + "Cullman County School District": 15, + "Culpeper County Public Schools": 15, + "Culver City Unified School District": 15, + "Culver Community Schools Corporation": 15, + "Culver School District 4": 15, + "Cumberland Community Unit School District 77": 15, + "Cumberland County Public Schools": 15, + "Cumberland County School District": 30, + "Cumberland County Schools": 15, + "Cumberland Regional School District": 15, + "Cumberland School District": 30, + "Cumberland Valley School District": 15, + "Cumby Collegiate Independent School District": 1, + "Cumby Independent School District": 14, + "Cunningham Unified School District 332": 15, + "Cupertino Union Elementary School District": 15, + "Curlew School District": 15, + "Currier Memorial Union School District 23": 7, + "Currituck County Schools": 15, + "Curtis Creek Elementary School District": 15, + "Curwensville Area School District": 15, + "Cushing Independent School District": 15, + "Cushing Public Schools": 15, + "Cushman School District": 1, + "Cusick School District": 15, + "Custer County High School District": 15, + "Custer County School District C-1": 15, + "Custer K-12 Schools": 15, + "Custer School District 16-1": 15, + "Cut Bank Elementary School District": 13, + "Cut Bank High School District": 15, + "Cutler": 14, + "Cutler-Orosi Joint Unified School District": 15, + "Cutten Elementary School District": 15, + "Cutter-Morning Star School District": 15, + "Cuyahoga Falls City School District": 15, + "Cuyahoga Heights Local School District": 15, + "Cuyama Joint Unified School District": 15, + "Cypress-Fairbanks Independent School District": 15, + "Cypress Elementary School District": 15, + "Cypress School District 64": 15, + "Cyril Public Schools": 15, + "Cyrus Public School District": 5, + "D'Hanis Independent School District": 15, + "D.C. Everest Area School District": 15, + "Dade County School District": 30, + "Dadeville R-II School District": 15, + "Daggett School District": 15, + "Dahlgren Department of Defense School District": 15, + "Dahlonegah Public School": 15, + "Daingerfield-Lone Star Independent School District": 15, + "Dakota Community Unit School District 201": 15, + "Dakota Prairie Public School District 1": 15, + "Dakota Valley School District 61-8": 15, + "Dale County School District": 15, + "Dale Public Schools": 15, + "Daleville City School District": 15, + "Daleville Community Schools": 15, + "Dalhart Independent School District": 15, + "Dallas Center-Grimes Community School District": 15, + "Dallas County R-I School District": 15, + "Dallas County School District": 15, + "Dallas Elementary School District 327": 15, + "Dallas Independent School District": 15, + "Dallas Plantation": 2, + "Dallas Plantation School District": 1, + "Dallas School District": 15, + "Dallas School District 2": 15, + "Dallastown Area School District": 15, + "Dalton-Nunda Central School District (Keshequa)": 10, + "Dalton City School District": 15, + "Dalton Local School District": 15, + "Dalzell School District 98": 15, + "Damariscotta": 14, + "Damariscotta School District": 1, + "Damiansville School District 62": 15, + "Damman School District": 15, + "Damon Independent School District": 15, + "Danbury Independent School District": 15, + "Danbury Local School District": 15, + "Danbury School District": 15, + "Danby School District": 7, + "Daniel Boone Area School District": 15, + "Daniel Freeman Public Schools": 1, + "Dansville Central School District": 15, + "Dansville Schools": 15, + "Danvers School District": 15, + "Danville Area School District": 15, + "Danville City Public Schools": 15, + "Danville Community Consolidated School District 118": 15, + "Danville Community School Corporation": 15, + "Danville Community School District": 15, + "Danville Independent School District": 15, + "Danville Local School District": 15, + "Danville School District": 24, + "Darby K-12 Schools": 15, + "Dardanelle Public Schools": 15, + "Dare County Schools": 15, + "Darien School District": 15, + "Darien School District 61": 15, + "Darlington Community School District": 15, + "Darlington County School District": 15, + "Darlington Public School": 15, + "Darrington School District": 15, + "Darrouzett Independent School District": 15, + "Dartmouth School District": 15, + "Dassel-Cokato Public School District": 15, + "Davenport Community School District": 15, + "Davenport Public Schools": 15, + "Davenport School District": 15, + "Davey Elementary School District": 15, + "David City Public Schools": 15, + "David Douglas School District 40": 15, + "Davidson County Schools": 15, + "Davidson Public Schools": 15, + "Davie County Schools": 15, + "Daviess County School District": 15, + "Davis County Community School District": 15, + "Davis Joint Unified School District": 15, + "Davis Public Schools": 15, + "Davis R-XII School District": 15, + "Davis School District": 15, + "Davison Community Schools": 15, + "Dawson-Boyd Public School District": 15, + "Dawson-Bryant Local School District": 15, + "Dawson County School District": 15, + "Dawson High School District": 15, + "Dawson Independent School District (Dawson, Lynn, and Terry Counties)": 15, + "Dawson Independent School District (Hill and Navarro Counties)": 15, + "Dawson Springs Independent School District": 15, + "Days Creek School District 15": 14, + "Dayton City Elementary School District": 15, + "Dayton City School District": 15, + "Dayton Independent School District": 30, + "Dayton Public Schools": 8, + "Dayton School District": 16, + "Dayton School District 8": 15, + "Dayville School District 16J": 15, + "De Beque School District 49-JT": 15, + "De Kalb Independent School District": 11, + "De Leon Independent School District": 12, + "De Pere Unified School District": 15, + "De Queen School District": 15, + "De Smet Elementary School District": 9, + "De Smet School District 38-2": 15, + "De Soto 73 School District": 10, + "De Soto Area School District": 15, + "De Soto Consolidated School District 86": 15, + "De Soto Parish School District": 15, + "De Soto School District": 5, + "De Soto Unified School District 232": 15, + "De Valls Bluff Schools": 3, + "Deal Borough School District": 15, + "Dearborn City School District": 15, + "Dearborn Heights School District 7": 15, + "Death Valley Unified School District": 15, + "Deblois": 14, + "Deblois School District": 1, + "Decatur City School District": 30, + "Decatur County Community Schools": 15, + "Decatur County School District": 30, + "Decatur Independent School District": 15, + "Decatur Public Schools": 15, + "Decatur School District": 15, + "Decatur School District 61": 15, + "Decatur Township Metropolitan School District": 15, + "Deckerville Community School District": 15, + "Decorah Community School District": 15, + "Dedham": 14, + "Dedham School District": 16, + "Deep Creek Elementary School District": 7, + "Deep River-Millersburg Community School District": 1, + "Deep River School District": 15, + "Deer Creek-Lamont Schools": 15, + "Deer Creek-Mackinaw Community Unit School District 701": 15, + "Deer Creek Elementary School District": 15, + "Deer Creek Public Schools": 15, + "Deer Isle-Stonington Community School District": 15, + "Deer Lakes School District": 15, + "Deer Lodge Elementary School District": 15, + "Deer Park Community City School District": 15, + "Deer Park Community Consolidated School District 82": 15, + "Deer Park Elementary School District": 15, + "Deer Park Independent School District": 15, + "Deer Park School District": 15, + "Deer Park Union Free School District": 15, + "Deer River Public School District": 15, + "Deer Trail School District 26J": 15, + "Deer Valley Unified District": 15, + "Deer/Mount Judea School District": 15, + "Deerfield Community School District": 15, + "Deerfield Elementary School District": 15, + "Deerfield Public Schools": 7, + "Deerfield School District": 30, + "Deerfield School District 109": 15, + "Deerfield Township School District": 15, + "Deerfield Unified School District 216": 15, + "Defiance City School District": 15, + "DeForest Area School District": 15, + "Dehesa Elementary School District": 15, + "DeKalb Community Unit School District 428": 15, + "DeKalb County Central United School District": 15, + "DeKalb County Eastern Community School District": 15, + "DeKalb County School District": 45, + "DeKalb Independent School District": 4, + "Del Mar Union Elementary School District": 15, + "Del Norte County Unified School District": 15, + "Del Norte School District C-7": 11, + "Del Paso Heights Elementary School District": 1, + "Del Valle Independent School District": 15, + "Delanco Township School District": 15, + "DeLand-Weldon Community Unit School District 57": 15, + "Delano Joint Union High School District": 15, + "Delano Public School District": 15, + "Delano Union Elementary School District": 15, + "Delavan-Darien School District": 15, + "Delavan Community Unit School District 703": 15, + "Delaware Academy Central School District at Delhi": 1, + "Delaware City School District": 15, + "Delaware Community School Corporation": 15, + "Delaware Township School District": 15, + "Delaware Valley Regional School District": 15, + "Delaware Valley School District": 15, + "DeLeon Independent School District": 3, + "Delhi Central School District": 14, + "Delhi Unified School District": 15, + "Delight School District": 3, + "Dell City Independent School District": 15, + "Dell Rapids School District 49-3": 15, + "Delmar School District": 15, + "Delphi Community School Corporation": 15, + "Delphic Elementary School District": 15, + "Delphos City School District": 15, + "Delran Township School District": 15, + "Delsea Regional High School School District": 15, + "Delta C-7 School District": 15, + "Delta County School District 50J": 15, + "Delta R-V School District": 15, + "Delta View Joint Union Elementary School District": 1, + "Delta/Greely School District": 15, + "Delton-Kellogg School District": 15, + "Delwood Community School District": 15, + "Demarest Borough School District": 15, + "Deming Public Schools": 15, + "Demopolis City School District": 15, + "Denair Unified School District": 15, + "Denali Borough School District": 15, + "Denison Community School District": 15, + "Denison Independent School District": 15, + "Denison Public School": 15, + "Denmark School District": 15, + "Dennis-Yarmouth School District": 15, + "Dennis Township School District": 15, + "Dennistown Plantation": 14, + "Dennistown Plantation School District": 1, + "Dennysville": 14, + "Dennysville School District": 1, + "Dent-Phelps R-III School District": 15, + "Denton Elementary School District": 15, + "Denton High School District": 15, + "Denton Independent School District": 15, + "Denver City Independent School District": 15, + "Denver Community School District": 15, + "Denver County School District 1": 15, + "Denville Township School District": 15, + "Depew Public Schools": 15, + "Depew Union Free School District": 15, + "Deposit Central School District": 15, + "Deptford Township School District": 15, + "Depue Community Unit School District 103": 15, + "Derby School District": 24, + "Derby Unified School District 260": 15, + "Dermott School District": 15, + "Derry Area School District": 15, + "Derry School District": 15, + "Derry Township School District": 15, + "DeRuyter Central School District": 15, + "Des Arc Public Schools": 15, + "Des Moines Independent Community School District": 15, + "Des Moines Municipal Schools": 15, + "Des Plaines Community Consolidated School District 62": 15, + "Desert Center Unified School District": 15, + "Desert Sands Unified School District": 15, + "Deshler Public Schools": 15, + "DeSmet Elementary School District": 6, + "DeSoto County School District": 30, + "DeSoto Independent School District": 15, + "DeTour Area Schools": 15, + "Detroit City School District": 11, + "Detroit Independent School District": 15, + "Detroit Lakes Public School District": 15, + "Detroit Public Schools Community District": 4, + "Deubrook School District 05-6": 15, + "Deuel School District 19-4": 15, + "Devers Independent School District": 15, + "Devils Lake Public School District 1": 15, + "Devine Independent School District": 15, + "Dew Independent School District": 15, + "Dewar Public Schools": 15, + "Dewey Public Schools": 15, + "Dewey Township Schools": 3, + "Deweyville Independent School District": 15, + "DeWitt Public Schools": 15, + "DeWitt School District": 15, + "Dexter Community School District": 15, + "Dexter Consolidated Schools": 15, + "Dexter R-XI School District": 15, + "Dexter Unified School District 471": 15, + "Di Giorgio Elementary School District": 15, + "Diagonal Community School District": 15, + "Diamond Lake School District 76": 15, + "Diamond R-IV School District": 15, + "Diamond School District 7": 15, + "Dibble Public Schools": 15, + "Diboll Independent School District": 15, + "Dickenson County Public Schools": 15, + "Dickinson Independent School District": 15, + "Dickinson Public School District 1": 15, + "Dickson County School District": 15, + "Dickson Public Schools": 15, + "Dieringer School District": 15, + "Dierks School District": 15, + "Dieterich Community Unit School District 30": 15, + "Dietrich School District 314": 15, + "Dighton-Rehoboth School District": 15, + "Dighton Unified School District 482": 15, + "Dike-New Hartford Community School District": 15, + "Diller-Odell Public Schools": 15, + "Dilley Independent School District": 15, + "Dillingham City School District": 15, + "Dillon Elementary School District": 15, + "Dillon School District 1": 5, + "Dillon School District 2": 5, + "Dillon School District 3": 15, + "Dillon School District 4": 10, + "Dilworth-Glyndon-Felton": 12, + "Dilworth-Glyndon-Felton School District": 3, + "Dime Box Independent School District": 15, + "Dimmick Community Consolidated School District 175": 15, + "Dimmitt Independent School District": 15, + "Dinuba Unified (9-12) in Kings River Union": 8, + "Dinuba Unified (9-12) in Monson-Sultana Joint Union": 8, + "Dinuba Unified School District": 15, + "Dinuba Unified School District (9-12)": 6, + "Dinwiddie County Public Schools": 15, + "District 11 Area Schools": 1, + "District 50 Schools": 15, + "District of Columbia Public Schools": 15, + "Divide County Public School District 1": 15, + "Divide Elementary School District": 15, + "Divide Independent School District": 15, + "Dixie County School District": 15, + "Dixie Elementary School District": 15, + "Dixie School District": 15, + "Dixon Elementary School District": 15, + "Dixon R-I School District": 15, + "Dixon Unified School District": 15, + "Dixon Unit School District 170": 15, + "Dobbs Ferry Union Free School District": 15, + "Dodd City Independent School District": 15, + "Doddridge County School District": 15, + "Dodds Community Consolidated School District 7": 7, + "Dodge-Howells Unified School District": 2, + "Dodge City Unified School District 443": 15, + "Dodge County School District": 15, + "Dodge Public Schools": 3, + "Dodgeland School District": 15, + "Dodgeville School District": 15, + "Dodson Elementary School District": 3, + "Dodson High School District": 3, + "Dodson K-12": 12, + "Doland School District 56-2": 15, + "Dolgeville Central School District": 15, + "Dollar Bay-Tamarack City Area Schools": 15, + "Dollarway School District": 13, + "Dolores County School District RE-2": 15, + "Dolores School District RE-4A": 15, + "Dolton School District 148": 15, + "Dolton School District 149": 15, + "Donegal School District": 15, + "Dongola School Unit District 66": 15, + "Doniphan-Trumbull Public Schools": 14, + "Doniphan-Trumbull Public Schools (Adams": 1, + "Doniphan R-I School District": 15, + "Doniphan West Unified School District 111": 12, + "Donna Independent School District": 15, + "Donovan Community Unit School District 3": 15, + "Dooly County School District": 15, + "Dora Consolidated Schools": 15, + "Dora R-III School District": 15, + "Dorchester County Public Schools": 15, + "Dorchester Public Schools": 15, + "Dorchester School District 2": 15, + "Dorchester School District 4": 15, + "Dorset School District": 7, + "Dos Palos-Oro Loma Joint Unified School District": 15, + "Doss Consolidated Common School District": 15, + "Dothan City School District": 15, + "Double Adobe Elementary District": 15, + "Double O School District 28": 15, + "Dougherty School District": 15, + "Douglas City Elementary School District": 15, + "Douglas County School District": 30, + "Douglas County School District RE-1": 15, + "Douglas County SD 15": 1, + "Douglas County SD 4": 1, + "Douglas County West Community Schools": 15, + "Douglas School District": 15, + "Douglas School District 51-1": 15, + "Douglas Unified District": 15, + "Douglass Independent School District": 15, + "Douglass Public Schools Unified School District 396": 15, + "Dover-Eyota Public School District": 15, + "Dover-Sherborn School District": 15, + "Dover Area School District": 15, + "Dover City School District": 15, + "Dover No. 1 School District": 15, + "Dover Public Schools": 15, + "Dover School District": 52, + "Dover Town School District": 15, + "Dover Union Free School District": 15, + "Dowagiac Union Schools": 15, + "Downe Township School District": 15, + "Downers Grove Grade School District 58": 15, + "Downey Unified School District": 15, + "Downingtown Area School District": 15, + "Downsville Central School District": 15, + "Dows Community School District": 7, + "Dracut School District": 15, + "Drake Public School District 57": 15, + "Drayton Public School District 19": 15, + "Dresden School District": 16, + "Drew Central School District": 15, + "Drew Plantation": 14, + "Drew Plantation School District": 1, + "Drew School District": 5, + "Drewsey School District 13": 15, + "Drexel R-IV School District": 15, + "Dripping Springs Independent School District": 15, + "Driscoll Independent School District": 15, + "Drummond Area School District": 15, + "Drummond Elementary School District": 15, + "Drummond High School District": 15, + "Drummond Public Schools": 15, + "Drumright Public Schools": 15, + "Dry Creek Joint Elementary School District": 15, + "Dryden Central School District": 15, + "Dryden Community Schools": 15, + "Du Quoin Community Unit School District 300": 15, + "Duanesburg Central School District": 15, + "Duarte Unified School District": 15, + "Dublin City School District": 30, + "Dublin Independent School District": 15, + "Dublin Unified School District": 15, + "DuBois Area School District": 15, + "Dubuque Community School District": 15, + "Duchesne School District": 15, + "Ducor Union Elementary School District": 15, + "Dudley-Charlton Regional School District": 15, + "Dufur School District 29": 15, + "Duke Public Schools": 15, + "Dulce Independent Schools": 15, + "Duluth Public School District": 15, + "Dumas Independent School District": 15, + "Dumas School District": 15, + "Dummer School District": 15, + "Dummerston School District": 7, + "Dumont Borough School District": 15, + "Dunbarton School District": 15, + "Duncan Public Schools": 15, + "Duncan Unified District": 15, + "Duncanville Independent School District": 15, + "Dundee Central School District": 15, + "Dundee Community Schools": 15, + "Dundy County Public Schools": 10, + "Dundy County Stratton Public Schools": 5, + "Duneland School Corporation": 15, + "Dunellen Borough School District": 15, + "Dunham Elementary School District": 15, + "Dunkerton Community School District": 15, + "Dunkirk City School District": 15, + "Dunklin R-V School District": 15, + "Dunlap Community Unit School District 323": 15, + "Dunmore School District": 15, + "Dunseith Public School District 1": 15, + "Dunsmuir Elementary School District": 15, + "Dunsmuir Joint Union High School District": 15, + "DuPage High School District 88": 15, + "Duplin County Schools": 15, + "Dupo Community Unit School District 196": 15, + "Dupree School District 64-2": 15, + "Dupuyer Elementary School District": 15, + "Duquesne City School District": 15, + "Durand Area Schools": 15, + "Durand Community Unit School District 322": 15, + "Durand School District": 15, + "Durango School District 9-R": 15, + "Durant Community School District": 15, + "Durant Public School District": 10, + "Durant Public Schools": 15, + "Durham-Hillsboro-Lehigh Unified School District 410": 15, + "Durham Public Schools": 15, + "Durham School District": 1, + "Durham Unified School District": 15, + "Dustin Public Schools": 5, + "Dutton/Brady K-12 Schools": 15, + "Duval County School District": 15, + "Duxbury School District": 15, + "Duxbury/Waterbury Union School District 45": 7, + "Dwight Common School District 232": 15, + "Dwight Township High School District 230": 15, + "Dyer County School District": 15, + "Dyersburg City School District": 15, + "Dysart Unified District": 15, + "Eads School District RE-1": 14, + "Eagle Butte School District 20-1": 15, + "Eagle County School District RE 50": 15, + "Eagle Elementary District": 15, + "Eagle Grove Community School District": 15, + "Eagle Lake Public Schools": 5, + "Eagle Mountain-Saginaw Independent School District": 15, + "Eagle Pass Independent School District": 15, + "Eagle Point School District 9": 15, + "Eagle Valley Public School District": 9, + "Eagleswood Township School District": 15, + "Eagletown Public Schools": 15, + "Eanes Independent School District": 15, + "Earl Public School District 18": 15, + "Earle School District": 15, + "Earlham Community School District": 15, + "Earlimart Elementary School District": 15, + "Earlsboro Public Schools": 15, + "Earlville Community Unit School District 9": 15, + "Early County School District": 15, + "Early Independent School District": 15, + "East Allegheny School District": 15, + "East Allen County Schools": 15, + "East Alton-Wood River Community High School District 14": 15, + "East Alton School District 13": 15, + "East Amwell Township School District": 15, + "East Aurora Union Free School District": 15, + "East Baton Rouge Parish School District": 15, + "East Bernard Independent School District": 15, + "East Bernstadt Independent School District": 15, + "East Bloomfield Central School District": 10, + "East Bridgewater School District": 15, + "East Brunswick Township School District": 15, + "East Buchanan Community School District": 15, + "East Buchanan County C-1 School District": 15, + "East Butler Public Schools": 15, + "East Carroll Parish School District": 15, + "East Carter County R-II School District": 15, + "East Central Community School District": 5, + "East Central Independent School District": 15, + "East Central School District": 15, + "East Chambers Independent School District": 15, + "East Chicago School City": 1, + "East China School District": 15, + "East Cleveland City School District": 15, + "East Clinton Local School District": 15, + "East Coloma-Nelson Consolidated Elementary School District 20": 10, + "East Coloma School District 12": 5, + "East Detroit Public Schools": 14, + "East Dubuque Community Unit School District 119": 15, + "East End School District": 15, + "East Feliciana Parish School District": 15, + "East Gibson School Corporation": 15, + "East Glacier Park Elementary School District": 15, + "East Granby School District": 15, + "East Grand Forks Public School District": 15, + "East Grand Rapids Public School District": 15, + "East Grand School District 2": 15, + "East Greenbush Central School District": 15, + "East Greene Community School District": 7, + "East Greenwich School District": 15, + "East Greenwich Township School District": 15, + "East Guernsey Local School District": 15, + "East Haddam School District": 15, + "East Hampton School District": 15, + "East Hampton Union Free School District": 15, + "East Hanover Township School District": 15, + "East Hartford School District": 15, + "East Haven School District": 22, + "East Helena Elementary School District": 10, + "East Helena K-12": 5, + "East Holmes Local School District": 15, + "East Irondequoit Central School District": 15, + "East Islip Union Free School District": 15, + "East Jackson Community Schools": 15, + "East Jasper School District": 15, + "East Jordan Public Schools": 15, + "East Kingston School District": 15, + "East Knox Local School District": 15, + "East Lansing School District": 15, + "East Liverpool City School District": 15, + "East Longmeadow School District": 15, + "East Lycoming School District": 15, + "East Lyme School District": 15, + "East Lynne 40 School District": 15, + "East Machias": 14, + "East Machias School District": 1, + "East Maine School District 63": 15, + "East Marshall Community School District": 15, + "East Meadow Union Free School District": 15, + "East Millinocket": 14, + "East Millinocket School District": 1, + "East Mills Community School District": 12, + "East Moline School District 37": 15, + "East Montpelier School District": 7, + "East Moriches Union Free School District": 15, + "East Muskingum Local School District": 15, + "East Newark Borough School District": 15, + "East Newton County R-VI School District": 15, + "East Nicolaus Joint Union High School District": 15, + "East Noble School Corporation": 15, + "East Orange City School District": 15, + "East Otero School District R-1": 15, + "East Palestine City School District": 15, + "East Penn School District": 15, + "East Pennsboro Area School District": 15, + "East Peoria Community High School District 309": 15, + "East Peoria School District 86": 15, + "East Poinsett County School District": 15, + "East Porter County School Corporation": 15, + "East Prairie R-II School District": 15, + "East Prairie School District 73": 15, + "East Providence School District": 15, + "East Quogue Union Free School District": 15, + "East Ramapo (Spring Valley) Central School District": 2, + "East Ramapo Central School District": 3, + "East Ramapo Central School District (Spring Valley)": 10, + "East Range Community School District": 14, + "East Richland Community Unit School District 1": 10, + "East Rochester Union Free School District": 15, + "East Rockaway Union Free School District": 15, + "East Rutherford Borough School District": 15, + "East Sac County Community School District": 12, + "East Side Union High School District": 15, + "East St. Louis School District 189": 15, + "East Stroudsburg Area School District": 15, + "East Syracuse-Minoa Central School District": 15, + "East Tallahatchie School District": 15, + "East Troy Community School District": 15, + "East Union Community School District": 15, + "East Valley School District (Spokane County)": 1, + "East Valley School District (Spokane)": 14, + "East Valley School District (Yakima County)": 1, + "East Valley School District (Yakima)": 14, + "East Washington School Corporation": 15, + "East Whittier City Elementary School District": 15, + "East Williston Union Free School District": 15, + "East Windsor Regional School District": 15, + "East Windsor School District": 15, + "Eastampton Township School District": 15, + "Eastbrook Community School Corporation": 15, + "Eastchester Union Free School District": 15, + "Eastern Allamakee Community School District": 15, + "Eastern Camden County Regional School District": 15, + "Eastern Carver County District 112 Public Schools": 3, + "Eastern Carver County Public Schools": 12, + "Eastern Cherokee Reservation": 14, + "Eastern Greene County School District": 15, + "Eastern Hancock County Community School Corporation": 15, + "Eastern Heights Unified School District 324": 1, + "Eastern Howard School Corporation": 15, + "Eastern Lancaster County School District": 15, + "Eastern Lebanon County School District": 15, + "Eastern Local School District (Adams, Brown, and Highland Counties)": 15, + "Eastern Local School District (Jackson, Pike, and Scioto Counties)": 15, + "Eastern Local School District (Meigs County)": 15, + "Eastern Pulaski Community School Corporation": 15, + "Eastern Sierra Unified School District": 15, + "Eastern York School District": 15, + "Eastford School District": 15, + "Eastham School District": 15, + "Easthampton School District": 15, + "Eastland Community Unit School District 308": 15, + "Eastland Independent School District": 15, + "Eastmont School District": 15, + "Easton": 14, + "Easton Area School District": 15, + "Easton School District": 46, + "Easton Township School District 6": 15, + "Easton Unified School District 449": 15, + "Easton Valley Community School District": 10, + "Eastpointe Community Schools": 1, + "Eastport": 14, + "Eastport-South Manor Central School District": 15, + "Eastport School District": 1, + "Eastside Union Elementary School District": 15, + "Eastwood Local School District": 15, + "Eaton Community City School District": 15, + "Eaton Rapids Public Schools": 15, + "Eaton School District": 15, + "Eaton School District RE-2": 14, + "Eatontown Borough School District": 15, + "Eatonville School District": 15, + "Eau Claire Area School District": 15, + "Eau Claire Public Schools": 15, + "Echo School District 5": 15, + "Echo Valley Community School District": 2, + "Echols County School District": 15, + "Ecorse Public School District": 15, + "Ector County Independent School District": 15, + "Ector Independent School District": 15, + "Edcouch-Elsa Independent School District": 15, + "Eddyville-Blakesburg-Fremont Community School District": 10, + "Eddyville-Blakesburg Community School District": 5, + "Eden Central School District": 15, + "Eden Consolidated Independent School District": 15, + "Eden Prairie Public School District": 15, + "Eden School District": 7, + "Eden Valley-Watkins School District": 15, + "Edenton-Chowan Schools": 15, + "Edgar County Community Unit District 6": 15, + "Edgar Elementary School District": 1, + "Edgar School District": 15, + "Edgartown School District": 15, + "Edgecomb": 14, + "Edgecomb School District": 1, + "Edgecombe County Schools": 15, + "Edgefield County School District": 15, + "Edgeley Public School District 3": 15, + "Edgemont School District 23-1": 15, + "Edgemont Union Free School District": 15, + "Edgerton Local School District": 15, + "Edgerton Public School District": 15, + "Edgerton School District": 15, + "Edgewater Borough School District": 15, + "Edgewater Park Township School District": 15, + "Edgewood-Colesburg Community School District": 15, + "Edgewood City School District": 15, + "Edgewood Independent School District (Bexar County)": 15, + "Edgewood Independent School District (Van Zandt County)": 15, + "Edina Public School District": 15, + "Edinburg Common School District": 15, + "Edinburg Community Unit School District 4": 15, + "Edinburg Consolidated Independent School District": 15, + "Edinburg Public School District 106": 3, + "Edinburgh Community School Corporation": 15, + "Edison Elementary School District": 15, + "Edison Local (formerly Berlin-Milan) School District": 12, + "Edison Local School District": 15, + "Edison School District 54-JT": 15, + "Edison Township School District": 15, + "Edmeston Central School District": 15, + "Edmond Public Schools": 15, + "Edmonds School District": 15, + "Edmonson County School District": 15, + "Edmore Public School District 2": 15, + "Edmunds Central School District 22-5": 15, + "Edna Independent School District": 15, + "Edon Northwest Local School District": 15, + "Edwards-Knox Central School District": 15, + "Edwards County Community Unit School District 1": 15, + "Edwardsburg Public Schools": 15, + "Edwardsville Community Unit School District 7": 15, + "Effingham Community Unit School District 40": 15, + "Effingham County School District": 15, + "Egg Harbor City School District": 15, + "Egg Harbor Township School District": 15, + "Egyptian Community Unit School District 5": 15, + "Eightmile Public School District 6": 15, + "Ekalaka Elementary School District": 15, + "El Campo Independent School District": 15, + "El Centro Elementary School District": 15, + "El Dorado School District": 15, + "El Dorado Springs R-II School District": 15, + "El Dorado Unified School District 490": 15, + "El Dorado Union High School District": 15, + "El Monte City Elementary School District": 7, + "El Monte City School District": 8, + "El Monte Union High School District": 15, + "El Nido Elementary School District": 15, + "El Paso-Gridley Community Unit School District 11": 15, + "El Paso County School District 49": 1, + "El Paso Independent School District": 15, + "El Rancho Unified School District": 15, + "El Reno Public Schools": 15, + "El Segundo Unified School District": 15, + "El Tejon Unified School District": 15, + "Elaine School District": 3, + "Elba Central School District": 15, + "Elba City School District": 15, + "Elba Public Schools": 15, + "Elbert County School District": 15, + "Elbert School District 200": 15, + "Elcho School District": 15, + "Elder Grove Elementary School District": 15, + "Eldon R-I School District": 15, + "Eldora-New Providence Community School District": 15, + "Eldorado Community Unit School District 4": 15, + "Eldorado Public Schools": 9, + "Eldred Central School District": 15, + "Electra Independent School District": 15, + "Elementary School District 159": 15, + "Eleva-Strum School District": 15, + "Elfrida Elementary District": 15, + "Elgin-Millville Public School District": 1, + "Elgin-New Leipzig Public School District 49": 15, + "Elgin Independent School District": 15, + "Elgin Local School District": 15, + "Elgin Public Schools": 30, + "Elgin School District 23": 15, + "Elgin/Giddings Independent School Districts (9-12) in McDade": 8, + "Elida Local School District": 15, + "Elida Municipal Schools": 15, + "Elizabeth City School District": 15, + "Elizabeth Forward School District": 15, + "Elizabeth School District": 5, + "Elizabeth School District C-1": 10, + "Elizabethton City School District": 15, + "Elizabethtown-Lewis Central School District": 11, + "Elizabethtown Area School District": 15, + "Elizabethtown Independent School District": 15, + "Elizabethtown Independent School District for West Point ISD": 14, + "Elk City Public Schools": 15, + "Elk Grove Unified School District": 15, + "Elk Hills Elementary School District": 15, + "Elk Horn-Kimballton Community School District": 7, + "Elk Lake School District": 15, + "Elk Mound Area School District": 15, + "Elk Mountain School District 16-2": 15, + "Elk Point-Jefferson School District 61-7": 15, + "Elk Rapids Schools": 15, + "Elk River Public School District": 11, + "Elk River School District": 4, + "Elk Township School District": 15, + "Elk Valley Unified School District 283": 15, + "Elkhart Community Schools": 15, + "Elkhart Independent School District": 15, + "Elkhart Lake-Glenbeulah School District": 15, + "Elkhart Unified School District 218": 15, + "Elkhorn Area School District": 15, + "Elkhorn Public Schools": 15, + "Elkhorn Valley Schools": 15, + "Elkin City Schools": 15, + "Elkins Elementary School District": 12, + "Elkins School District": 15, + "Elko County School District": 15, + "Elkton-Pigeon-Bay Port Schools": 15, + "Elkton School District 05-3": 15, + "Elkton School District 05-3 in Lake Benton (7-12)": 2, + "Elkton School District 34": 15, + "Ell-Saline Unified School District 307": 15, + "Ellendale Public School District 40": 15, + "Ellensburg School District": 15, + "Ellenville Central School District": 15, + "Ellicott School District 22": 15, + "Ellicottville Central School District": 15, + "Ellington School District": 15, + "Ellinwood Public Schools Unified School District 355": 15, + "Elliott County School District": 15, + "Ellis Unified School District 388": 15, + "Elliston Elementary School District": 15, + "Ellsworth Community School District": 15, + "Ellsworth Community Schools": 15, + "Ellsworth Public School District": 15, + "Ellsworth Public Schools": 8, + "Ellsworth School District": 16, + "Ellsworth Unified School District 327": 15, + "Ellwood City Area School District": 15, + "Elm Creek Public Schools": 15, + "Elm River Township School District": 15, + "Elm Valley School District 06-2": 1, + "Elma School District": 15, + "Elmbrook School District": 15, + "Elmer Borough School District": 9, + "Elmhurst School District 205": 15, + "Elmira City School District": 15, + "Elmira Heights Central School District": 15, + "Elmont Union Free School District": 15, + "Elmore City-Pernell Schools": 15, + "Elmore County School District": 15, + "Elmore School District": 7, + "Elmsford Union Free School District": 15, + "Elmwood-Murdock Public Schools": 15, + "Elmwood Community Unit School District 322": 15, + "Elmwood Local School District": 15, + "Elmwood Park Borough School District": 15, + "Elmwood Park Community Unit School District 401": 15, + "Elmwood School District": 15, + "Eloy Elementary District": 15, + "Elsberry R-II School District": 15, + "Elsinboro Township School District": 15, + "Elverado Community Unit School District 196": 15, + "Elverta Joint Elementary School District": 15, + "Elwood Community Consolidated School District 203": 15, + "Elwood Community School Corporation": 15, + "Elwood Public Schools": 15, + "Elwood Unified School District 486": 3, + "Elwood Union Free School District": 15, + "Ely Public School District": 15, + "Elyria City School District": 15, + "Elysian Elementary School District": 15, + "Elysian Fields Independent School District": 15, + "Emanuel County School District": 15, + "Emerado Public School District 127": 15, + "Emerson-Hubbard Public Schools": 15, + "Emerson-Taylor-Bradley School District": 10, + "Emerson-Taylor School District": 5, + "Emerson Borough School District": 15, + "Emery School District": 15, + "Emery School District 30-2": 3, + "Emery Unified School District": 15, + "Eminence Community School Corporation": 15, + "Eminence Independent School District": 15, + "Eminence R-I School District": 15, + "Emmetsburg Community School District": 15, + "Emmett Independent School District 221": 15, + "Emmons School District 33": 15, + "Empire Elementary District": 15, + "Empire Public Schools": 15, + "Empire Union Elementary School District": 15, + "Emporia City Public Schools": 15, + "Emporia Unified School District 253": 15, + "Encinitas Union Elementary School District": 15, + "Enderlin Area Public School District 24": 15, + "Endicott School District": 15, + "Enfield School District": 15, + "Engadine Consolidated Schools": 15, + "England School District": 15, + "Englewood City School District": 15, + "Englewood Cliffs Borough School District": 15, + "Englewood School District 1": 15, + "English Valleys Community School District": 15, + "Enid Public Schools": 15, + "Ennis Independent School District": 15, + "Ennis K-12 Schools": 15, + "Enosburg Falls Incorporated School District": 1, + "Enosburgh-Richford Unified Union School District #88": 1, + "Enosburgh-Richford Unified Union School District 88": 1, + "Enosburgh School District": 6, + "Enterprise City School District": 15, + "Enterprise Elementary School District": 15, + "Enterprise School District": 15, + "Enterprise School District 21": 15, + "Entiat School District": 15, + "Enumclaw School District": 15, + "Ephrata Area School District": 15, + "Ephrata School District": 15, + "Epping School District": 15, + "Epsom School District": 15, + "Era Independent School District": 15, + "Erick Public Schools": 15, + "Erie-Galesburg Unified School District 101": 1, + "Erie City School District": 15, + "Erie Community Unit School District 1": 15, + "Erie Unified School District 101": 14, + "Erin School District": 15, + "Erlanger-Elsmere Independent School District": 15, + "Errol School District": 15, + "Erving School District": 15, + "Escalon Unified School District": 15, + "Escambia County School District": 30, + "Escanaba Area Public Schools": 15, + "Escondido Union Elementary School District": 15, + "Escondido Union High School District": 15, + "Esko Public School District": 15, + "Esmeralda County School District": 15, + "Espa±ola Municipal Schools": 1, + "Española Municipal Schools": 2, + "Española Municipal Schools": 12, + "Esparto Unified School District": 15, + "Essex-Westford Educational Community Unified School District": 5, + "Essex Caledonia Supervisory Union": 3, + "Essex Community Education Center": 9, + "Essex Community School District": 15, + "Essex County Public Schools": 15, + "Essex Fells Borough School District": 15, + "Essex Junction Incorporated School District": 7, + "Essex North Supervisory Union": 6, + "Essex School District": 15, + "Essex Town School District": 10, + "Essexville-Hampton Public Schools": 15, + "Estacada School District 108": 15, + "Estancia Municipal Schools": 15, + "Estell Manor City School District": 15, + "Estelline School District 28-2": 15, + "Estes Park School District R-3": 5, + "Estherville Lincoln Central Community School District": 15, + "Estill County School District": 15, + "Eswood Community Consolidated District 269": 15, + "Ethan School District 17-1": 15, + "Etiwanda Elementary School District": 15, + "Etna Union High School District": 1, + "Etoile Independent School District": 14, + "Etowah City Elementary School District": 7, + "Etowah City School District": 8, + "Etowah County School District": 15, + "Euclid City School District": 15, + "Eudora Public Schools": 3, + "Eudora Unified School District 491": 15, + "Eufaula City School District": 15, + "Eufaula Public Schools": 15, + "Eugene School District 4J": 15, + "Eula Independent School District": 15, + "Eunice Municipal Schools": 15, + "Eureka City Unified School District": 15, + "Eureka City Unified School District (7-12)": 6, + "Eureka City Unified School District (9-12)": 6, + "Eureka Community Unit District 140": 15, + "Eureka County School District": 15, + "Eureka Elementary School District": 15, + "Eureka Public School District 19": 3, + "Eureka School District 44-1": 15, + "Eureka Springs School District": 15, + "Eureka Unified School District 389": 15, + "Eureka Union Elementary School District": 15, + "Eustace Independent School District": 15, + "Eustis": 10, + "Eustis-Farnam Public Schools": 15, + "Evadale Independent School District": 15, + "Evaline School District": 15, + "Evangeline Parish School District": 15, + "Evans-Brant (Lake Shore) Central School District": 2, + "Evans-Brant Central School District": 3, + "Evans-Brant Central School District (Lake Shore)": 10, + "Evans County School District": 15, + "Evanston Community Consolidated School District 65": 15, + "Evanston Township High School District 202": 15, + "Evansville-Vanderburgh School Corporation": 15, + "Evansville Community School District": 15, + "Evansville Public School District": 5, + "Evant Independent School District": 15, + "Evart Public Schools": 15, + "Eveleth-Gilbert School District": 12, + "Everett Area School District": 15, + "Everett School District": 30, + "Evergreen Elementary School District": 30, + "Evergreen Local School District": 15, + "Evergreen Park Community High School District 231": 15, + "Evergreen Park Elementary School District 124": 15, + "Evergreen School District": 2, + "Evergreen School District (Clark)": 14, + "Evergreen School District (Stevens)": 14, + "Evergreen Union Elementary School District": 15, + "Everman Independent School District": 15, + "Everton R-III School District": 15, + "Evesham Township School District": 15, + "Ewen-Trout Creek Consolidated Schools": 15, + "Ewing Northern Community Consolidated District 115": 15, + "Ewing Public Schools": 12, + "Ewing Township School District": 15, + "Excelsior Independent School District": 15, + "Excelsior Springs 40 School District": 15, + "Excelsior Township School District 1": 15, + "Exeter-Milligan Public Schools": 15, + "Exeter-West Greenwich Regional School District": 15, + "Exeter R-VI School District": 15, + "Exeter Regional Cooperative School District": 15, + "Exeter School District": 15, + "Exeter Township School District": 15, + "Exeter Unified School District": 10, + "Exeter Unified School District (9-12)": 6, + "Exeter Unified School District (9-12) in Outside Creek": 4, + "Exeter Unified School District (9-12) in Sequoia Union": 4, + "Exeter Union Elementary School District": 5, + "Exeter Union High School District": 5, + "Exira-Elk Horn-Kimballton Community School District": 8, + "Exira Community School District": 7, + "Ezzell Independent School District": 15, + "Fabens Independent School District": 15, + "Fabius-Pompey Central School District": 15, + "Fair-Mont-Egan Elementary School District": 15, + "Fair Grove R-10 School District": 5, + "Fair Grove R-X School District": 10, + "Fair Haven Borough School District": 15, + "Fair Haven School District": 7, + "Fair Haven Union High School District 16": 7, + "Fair Lawn Borough School District": 15, + "Fair Play R-II School District": 15, + "Fairbanks Local School District": 15, + "Fairbanks North Star Borough School District": 15, + "Fairborn City School District": 15, + "Fairbury Public Schools": 15, + "Fairfax City Public Schools": 15, + "Fairfax County Public Schools": 15, + "Fairfax Elementary School District": 15, + "Fairfax R-III School District": 15, + "Fairfax School District": 9, + "Fairfield-Suisun Unified School District": 15, + "Fairfield Area School District": 15, + "Fairfield City School District": 30, + "Fairfield Community High School District 225": 15, + "Fairfield Community School District": 15, + "Fairfield Community Schools": 15, + "Fairfield County School District": 15, + "Fairfield Elementary School District": 15, + "Fairfield High School District": 15, + "Fairfield Independent School District": 15, + "Fairfield Local School District": 15, + "Fairfield Public School District 112": 15, + "Fairfield School District": 22, + "Fairfield Township School District (Cumberland County)": 15, + "Fairfield Township School District (Essex County)": 15, + "Fairfield Unified School District 310": 15, + "Fairfield Union Local School District": 15, + "Fairhaven School District": 15, + "Fairhaven/New Bedford School Districts in Acushnet (9-12)": 15, + "Fairland Local School District": 15, + "Fairland Public Schools": 15, + "Fairlawn Local School District": 15, + "Fairless Local School District": 15, + "Fairmont Area School District": 15, + "Fairmont School District 89": 15, + "Fairmount Public School District 18": 15, + "Fairport Central School District": 15, + "Fairport Harbor Exempted Village School District": 15, + "Fairview Area School District": 15, + "Fairview Borough School District": 15, + "Fairview Elementary School District": 15, + "Fairview High School District": 15, + "Fairview Independent School District": 15, + "Fairview Park City School District": 15, + "Fairview Public Schools": 15, + "Fairview R-XI School District": 15, + "Fairview School District": 15, + "Faith School District 46-2": 15, + "Falcon School District 49": 10, + "Falconer Central School District": 15, + "Fall Creek School District": 15, + "Fall Mountain Regional School District": 15, + "Fall River Joint Unified School District": 15, + "Fall River School District": 30, + "Fallbrook Union Elementary School District": 15, + "Fallbrook Union High School District": 15, + "Falls Church City Public Schools": 15, + "Falls City Independent School District": 15, + "Falls City Public Schools": 15, + "Falls City School District 57": 15, + "Fallsburg Central School District": 15, + "Falmouth": 14, + "Falmouth School District": 16, + "Fannett-Metal School District": 15, + "Fannin County School District": 15, + "Fannindel Independent School District": 15, + "Fanshawe Public School": 15, + "Fargo Public School District 1": 15, + "Fargo Public Schools": 15, + "Faribault Public School District": 15, + "Farmersville Independent School District": 15, + "Farmersville Unified School District": 15, + "Farmingdale Borough School District": 15, + "Farmingdale Union Free School District": 15, + "Farmington Central Community Unit School District 265": 15, + "Farmington Municipal Schools": 15, + "Farmington Public School District": 30, + "Farmington R-7 School District": 5, + "Farmington R-VII School District": 10, + "Farmington River Regional School District": 15, + "Farmington School District": 45, + "Farragut Community School District": 9, + "Farrell Area School District": 15, + "Farrington Community Consolidated School District 99": 15, + "Farris Public School": 5, + "Farwell Area Schools": 15, + "Farwell Independent School District": 15, + "Faulkton School District 24-3": 1, + "Faulkton School District 24-4": 14, + "Fauquier County Public Schools": 15, + "Fayette": 14, + "Fayette County School Corporation": 15, + "Fayette County School District": 75, + "Fayette Local School District": 15, + "Fayette R-III School District": 15, + "Fayette School District": 1, + "Fayetteville-Manlius Central School District": 15, + "Fayetteville-Perry Local School District": 15, + "Fayetteville City Elementary School District": 5, + "Fayetteville City School District": 10, + "Fayetteville Independent School District": 15, + "Fayetteville School District": 15, + "Fayston School District": 7, + "Feather Falls Union Elementary School District": 12, + "Federal Hocking Local School District": 15, + "Federal Way School District": 15, + "Felicity-Franklin Local School District": 15, + "Felt Public Schools": 15, + "Fennimore Community School District": 15, + "Fennville Public Schools": 15, + "Fenton Area Public Schools": 15, + "Fenton Community High School District 100": 15, + "Fentress County School District": 15, + "Ferdinand School District": 9, + "Fergus Falls Public School District": 15, + "Fergus High School District": 15, + "Ferguson-Florissant R-II School District": 10, + "Ferguson-Florissant School District": 5, + "Fern Ridge School District 28J": 15, + "Ferndale Area School District": 15, + "Ferndale Public Schools": 15, + "Ferndale School District": 15, + "Ferndale Unified School District": 15, + "Ferris Independent School District": 15, + "Ferrisburg School District": 7, + "Fertile-Beltrami School District": 15, + "Fessenden-Bowdon Public School District 25": 15, + "Festus R-6 School District": 5, + "Festus R-VI School District": 10, + "Field Community Consolidated School District 3": 15, + "Field Local School District": 15, + "Fieldbrook Elementary School District": 15, + "Fieldcrest Community Unit School District 6": 15, + "Fife Public Schools": 14, + "Fife School District": 1, + "Filer School District 413": 15, + "Fillmore Central": 12, + "Fillmore Central Public Schools": 15, + "Fillmore Central School District": 15, + "Fillmore Central Schools": 3, + "Fillmore Unified School District": 15, + "Findlay City School District": 15, + "Finley-Sharon Public School District 19": 15, + "Finley School District": 15, + "Finneytown Local School District": 15, + "Fire Island Union Free School District": 15, + "Firebaugh-Las Deltas Joint Unified School District": 7, + "Firebaugh-Las Deltas Unified School District": 8, + "Firelands Local School District": 15, + "First Branch Unified School District": 2, + "Firth School District 59": 15, + "Fisher Community Unit School District 1": 15, + "Fisher Public School District": 15, + "Fishers Island Union Free School District": 15, + "Fishtail Elementary School District": 15, + "Fitchburg School District": 15, + "Fitzgerald Public Schools": 15, + "Five Town Community School District": 13, + "Flagler County School District": 15, + "Flagstaff Unified District": 15, + "Flambeau School District": 15, + "Flanagan-Cornell District 74": 14, + "Flanagan-Cornell District 74 in Cornell": 14, + "Flanagan-Cornell District 74 in Pontiac": 14, + "Flanagan-Cornell District 74 in Rooks Creek": 14, + "Flanagan Community Unit School District 4": 1, + "Flanders Bay Community School District": 1, + "Flandreau School District 50-3": 15, + "Flasher Public School District 39": 15, + "Flat Rock-Hawcreek School Corporation": 15, + "Flat Rock Community Schools": 15, + "Flathead High School District": 15, + "Flatonia Independent School District": 15, + "Fleetwood Area School District": 15, + "Fleming County School District": 15, + "Flemington-Raritan Regional School District": 15, + "Fletcher Public Schools": 15, + "Fletcher School District": 9, + "Flint City School District": 15, + "Flinthills Unified School District 492": 15, + "Flippin School District": 15, + "Flood Brook Union School District 20": 5, + "Floodwood Public School District": 15, + "Flora Community Unit School District 35": 15, + "Floral Park-Bellerose Union Free School District": 15, + "Florence-Carlton K-12 Schools": 15, + "Florence City School District": 15, + "Florence Independent School District": 15, + "Florence School District": 15, + "Florence School District 1": 15, + "Florence School District 14-1": 15, + "Florence School District 2": 15, + "Florence School District 3": 15, + "Florence School District 4": 14, + "Florence School District 5": 15, + "Florence School District RE-2": 10, + "Florence Township School District": 15, + "Florence Unified School District": 15, + "Floresville Independent School District": 15, + "Florham Park Borough School District": 15, + "Florida School District": 15, + "Florida Union Free School District": 15, + "Flossmoor School District 161": 15, + "Flour Bluff Independent School District": 15, + "Flournoy Union Elementary School District": 15, + "Flower Mound Public School": 15, + "Flowing Wells Unified District": 15, + "Floyd County Public Schools": 15, + "Floyd County School District": 30, + "Floyd Municipal Schools": 15, + "Floydada Collegiate Independent School District": 1, + "Floydada Independent School District": 14, + "Flushing Community Schools": 15, + "Fluvanna County Public Schools": 15, + "Foley Public School District": 15, + "Follett Independent School District": 15, + "Folsom-Cordova Unified School District": 15, + "Folsom Borough School District": 15, + "Fond du Lac School District": 15, + "Fonda-Fultonville Central School District": 15, + "Fontana Joint No. 8 School District": 15, + "Fontana Unified School District": 15, + "Forbes Road School District": 15, + "Ford Heights School District 169": 15, + "Fordland R-III School District": 15, + "Fordville-Lankin Public School District 5": 15, + "Fordyce School District": 15, + "Foreman School District": 15, + "Forest Area Community Schools": 15, + "Forest Area School District": 15, + "Forest City Community School District": 15, + "Forest City Regional School District": 15, + "Forest Grove Public School": 15, + "Forest Grove School District 15": 15, + "Forest Hills Local School District": 15, + "Forest Hills Public Schools": 15, + "Forest Hills School District": 15, + "Forest Lake Public School District": 15, + "Forest Municipal School District": 15, + "Forest Park School District": 15, + "Forest Park School District 91": 15, + "Forest Ridge School District 142": 15, + "Forestburg Independent School District": 15, + "Foresthill Union Elementary School District": 15, + "Forestville Central School District": 15, + "Forestville Union Elementary School District": 15, + "Forgan Public Schools": 15, + "Forks of Salmon Elementary School District": 15, + "Forney Independent School District": 15, + "Forrest City School District": 15, + "Forrest County Schools": 15, + "Forrest Elementary District": 1, + "Forrestville Valley Community Unit School District 221": 15, + "Forsan Independent School District": 15, + "Forsyth County School District": 15, + "Forsyth County Schools": 15, + "Forsyth Elementary School District": 15, + "Forsyth High School District": 15, + "Forsyth R-III School District": 15, + "Fort Ann Central School District": 15, + "Fort Atkinson School District": 15, + "Fort Bend Independent School District": 15, + "Fort Benning Schools": 15, + "Fort Benton Elementary School District": 15, + "Fort Benton High School District": 15, + "Fort Bragg Schools": 15, + "Fort Bragg Unified School District": 15, + "Fort Calhoun Community Schools": 15, + "Fort Campbell Dependent Schools": 15, + "Fort Campbell Schools": 15, + "Fort Cherry School District": 15, + "Fort Cobb-Broxton Schools": 15, + "Fort Davis Independent School District": 15, + "Fort Dodge Community School District": 15, + "Fort Edward Union Free School District": 15, + "Fort Elliott Consolidated Independent School District": 15, + "Fort Frye Local School District": 15, + "Fort Gibson Public Schools": 15, + "Fort Hancock Independent School District": 15, + "Fort Huachuca Accommodation District": 15, + "Fort Jackson Schools": 15, + "Fort Knox Dependent Schools": 15, + "Fort Larned Unified School District 495": 15, + "Fort Leavenworth Unified School District 207": 15, + "Fort LeBoeuf School District": 15, + "Fort Lee Borough School District": 15, + "Fort Loramie Local School District": 15, + "Fort Madison Community School District": 15, + "Fort Morgan School District RE-3": 15, + "Fort Osage R-I School District": 15, + "Fort Payne City School District": 15, + "Fort Plain Central School District": 15, + "Fort Ransom Public School District 6": 15, + "Fort Recovery Local School District": 15, + "Fort Ross Elementary School District": 15, + "Fort Rucker School District": 15, + "Fort Sage Unified School District": 15, + "Fort Sam Houston Independent School District": 15, + "Fort Scott Unified School District 234": 15, + "Fort Smith Public Schools": 15, + "Fort Stewart School District": 15, + "Fort Stockton Independent School District": 15, + "Fort Sumner Municipal Schools": 15, + "Fort Supply Public Schools": 15, + "Fort Thomas Independent School District": 15, + "Fort Thomas Unified District": 15, + "Fort Totten Public School District 30": 15, + "Fort Towson Public Schools": 15, + "Fort Wayne Community Schools": 15, + "Fort Worth Independent School District": 15, + "Fort Yates Public School District 4": 15, + "Fort Zumwalt R-II School District": 15, + "Fortine Elementary School District": 15, + "Fortuna Elementary School District": 10, + "Fortuna Union Elementary School District": 5, + "Fortuna Union High School District": 15, + "Fossil School District 21J": 15, + "Fosston Public School District": 15, + "Foster-Glocester Regional School District": 15, + "Foster Elementary School District": 15, + "Fostoria City School District": 15, + "Fouke School District": 15, + "Fountain Hills Unified District": 15, + "Fountain Lake School District": 15, + "Fountain School District 8": 15, + "Fountain Valley Elementary School District": 15, + "Fowler Elementary District": 15, + "Fowler Public Schools": 15, + "Fowler School District R-4J": 15, + "Fowler Unified School District": 15, + "Fowler Unified School District 225": 15, + "Fowlerville Community Schools": 15, + "Fox C-6 School District": 15, + "Fox Chapel Area School District": 15, + "Fox Lake Grade School District 114": 15, + "Fox Point Joint No. 2 School District": 15, + "Fox Public Schools": 15, + "Fox River Grove Consolidated School District 3": 15, + "Foxborough School District": 15, + "Foyil Public Schools": 15, + "Framingham School District": 15, + "Francis Howell R-III School District": 10, + "Francis Howell School District": 5, + "Franconia Public School District": 15, + "Frankenmuth School District": 15, + "Frankford Township School District": 15, + "Frankfort-Elberta Area Schools": 15, + "Frankfort-Schuyler Central School District": 15, + "Frankfort Community Consolidated School District 157C": 15, + "Frankfort Community Schools": 15, + "Frankfort Community Unit School District 168": 15, + "Frankfort Independent School District": 15, + "Franklin-McKinley Elementary School District": 15, + "Franklin Area School District": 15, + "Franklin Borough School District": 15, + "Franklin Central School District": 15, + "Franklin Central Supervisory Union": 3, + "Franklin City Public Schools": 15, + "Franklin City School District": 15, + "Franklin Community School Corporation": 15, + "Franklin Community Unit School District 1": 15, + "Franklin County Community School Corporation": 15, + "Franklin County Public Schools": 15, + "Franklin County R-II School District": 15, + "Franklin County School District": 90, + "Franklin County Schools": 15, + "Franklin Elementary School District": 15, + "Franklin Independent School District": 15, + "Franklin Lakes Borough School District": 15, + "Franklin Local School District": 15, + "Franklin Monroe Local School District": 15, + "Franklin Northeast Supervisory Union": 6, + "Franklin Northwest Supervisory Union": 5, + "Franklin Parish School District": 15, + "Franklin Park School District 84": 15, + "Franklin Pierce School District": 15, + "Franklin Public School District": 15, + "Franklin Public Schools": 15, + "Franklin Regional School District": 15, + "Franklin School District": 53, + "Franklin Special School District": 15, + "Franklin Square Union Free School District": 15, + "Franklin Township Community School Corporation": 15, + "Franklin Township School District": 15, + "Franklin Township School District (Gloucester County)": 15, + "Franklin Township School District (Hunterdon County)": 15, + "Franklin Township School District (Warren County)": 15, + "Franklin Unorganized Territory": 15, + "Franklin West Supervisory Union": 6, + "Franklinville Central School District": 15, + "Frankston Independent School District": 15, + "Frankton-Lapel Community Schools": 15, + "Fraser Public Schools": 15, + "Frazee-Vergas Public School District": 15, + "Frazer Elementary School District": 15, + "Frazer High School District": 15, + "Frazier School District": 15, + "Frederic School District": 15, + "Frederick Area School District 06-2": 14, + "Frederick County Public Schools": 30, + "Frederick Public Schools": 15, + "Frederick Public Schools in Davidson (9-12)": 3, + "Fredericksburg City Public Schools": 15, + "Fredericksburg Community School District": 7, + "Fredericksburg Independent School District": 15, + "Fredericktown Local School District": 15, + "Fredericktown R-I School District": 15, + "Fredon Township School District": 15, + "Fredonia-Moccasin Unified District": 15, + "Fredonia Central School District": 15, + "Fredonia Unified School District 484": 15, + "Free Soil Community Schools": 5, + "Freeburg Community Consolidated School District 70": 15, + "Freeburg Community High School District 77": 15, + "Freedom Area School District": 30, + "Freedom Public Schools": 15, + "Freedom School District": 15, + "Freehold Borough School District": 15, + "Freehold Regional School District": 15, + "Freehold Township School District": 15, + "Freeland Community School District": 15, + "Freeman Public Schools": 14, + "Freeman School District": 15, + "Freeman School District 33-1": 15, + "Freeport Area School District": 15, + "Freeport School District": 1, + "Freeport School District 145": 15, + "Freeport Union Free School District": 15, + "Freer Independent School District": 15, + "Freetown-Lakeville School District": 15, + "Freetown School District": 3, + "Frelinghuysen Township School District": 15, + "Fremont-Mills Community School District": 15, + "Fremont City School District": 15, + "Fremont Community School District": 5, + "Fremont Community Schools": 15, + "Fremont County Joint School District 215": 15, + "Fremont County School District 1": 15, + "Fremont County School District 14": 15, + "Fremont County School District 2": 15, + "Fremont County School District 21": 15, + "Fremont County School District 24": 15, + "Fremont County School District 25": 15, + "Fremont County School District 38": 15, + "Fremont County School District 6": 15, + "Fremont Public School District": 15, + "Fremont Public Schools": 15, + "Fremont RE-1": 1, + "Fremont RE-2": 5, + "Fremont RE-3": 1, + "Fremont School District": 15, + "Fremont School District 79": 15, + "Fremont Unified School District": 15, + "Fremont Union High School District": 15, + "French Gulch-Whiskeytown Elementary School District": 15, + "Frenchboro": 14, + "Frenchboro School District": 1, + "Frenchglen School District 16": 15, + "Frenchman School District RE-3": 15, + "Frenchtown Borough School District": 15, + "Frenchtown K-12 Schools": 15, + "Frenship Independent School District": 15, + "Freshwater Elementary School District": 15, + "Fresno Unified School District": 15, + "Frewsburg Central School District": 15, + "Fridley Public School District": 15, + "Friend Public School": 15, + "Friend Public Schools": 15, + "Friendship Central School District": 15, + "Friendswood Independent School District": 15, + "Friess Lake School District": 10, + "Frink-Chambers Public School": 15, + "Friona Independent School District": 15, + "Frisco Independent School District": 15, + "Froid Elementary School District": 15, + "Froid High School District": 15, + "Fromberg Elementary School District": 1, + "Fromberg High School District": 1, + "Fromberg K-12": 6, + "Fromberg K-12 Schools": 8, + "Frontenac Public Schools Unified School District 249": 15, + "Frontier Central School District": 15, + "Frontier Elementary School District": 15, + "Frontier Local School District": 15, + "Frontier Public Schools": 15, + "Frontier School Corporation": 15, + "Frontier School District": 15, + "Frost Independent School District": 15, + "Fruitland School District 373": 15, + "Fruitport Community Schools": 15, + "Fruitvale Elementary School District": 15, + "Fruitvale Independent School District": 15, + "Fulda Public School District": 15, + "Fullerton Elementary School District": 15, + "Fullerton Joint Union High School District": 15, + "Fullerton Public Schools": 15, + "Fulton 58 School District": 10, + "Fulton City School District": 15, + "Fulton County Community Unit School District 3": 15, + "Fulton County School District": 30, + "Fulton Independent School District": 15, + "Fulton School District": 5, + "Fulton Schools": 15, + "G.F.W.": 9, + "G.F.W. Schools": 3, + "Gackle-Streeter Public School District 56": 15, + "Gadsden City School District": 15, + "Gadsden County School District": 15, + "Gadsden Elementary District": 15, + "Gadsden Independent Schools": 15, + "Gage Public Schools": 9, + "Gahanna-Jefferson City School District": 15, + "Gainesville City School District": 15, + "Gainesville Independent School District": 15, + "Gainesville R-V School District": 15, + "Galata Elementary School District": 15, + "Galatia Community Unit School District 1": 15, + "Galax City Public Schools": 15, + "Galena City School District": 15, + "Galena Park Independent School District": 15, + "Galena R-II School District": 15, + "Galena Unified School District 499": 15, + "Galena Unit School District 120": 15, + "Galesburg-Augusta Community School District": 15, + "Galesburg Community Unit School District 205": 15, + "Galesville-Ettrick-Trempealeau School District": 15, + "Galeton Area School District": 15, + "Galien Township School District": 11, + "Galion City School District": 15, + "Gallatin Community Unit School District 7": 15, + "Gallatin County School District": 15, + "Gallatin Gateway Elementary School District": 15, + "Gallatin R-V School District": 15, + "Gallia County Local School District": 15, + "Gallipolis City School District": 15, + "Galloway Township School District": 15, + "Gallup-Mckinley County Schools": 6, + "Gallup-McKinley County Schools": 9, + "Galt Joint Union Elementary School District": 15, + "Galt Joint Union High School District": 15, + "Galva-Holstein Community School District": 15, + "Galva Community Unit School District 224": 15, + "Galveston Independent School District": 15, + "Galway Central School District": 15, + "Ganado Independent School District": 15, + "Ganado Unified District": 15, + "Gananda Central School District": 15, + "Ganges School District 4": 14, + "Gans Public Schools": 15, + "Garaway Local School District": 15, + "Garber Public Schools": 15, + "Garden City School District": 15, + "Garden City Unified School District 457": 15, + "Garden City Union Free School District": 15, + "Garden County Schools": 15, + "Garden Grove Unified School District": 15, + "Garden Valley School District 71": 15, + "Gardiner Elementary School District": 15, + "Gardiner High School District": 15, + "Gardner-South Wilmington Township High School District": 15, + "Gardner Community Consolidated School District 72C": 15, + "Gardner Edgerton Unified School District 231": 15, + "Gardner School District": 15, + "Garfield City School District": 15, + "Garfield County High School District": 15, + "Garfield County School District 16": 15, + "Garfield Elementary School District": 15, + "Garfield Heights City School District": 15, + "Garfield School District": 30, + "Garfield School District RE-2": 15, + "Garland Independent School District": 15, + "Garner-Hayfield-Ventura Community School District": 8, + "Garner-Hayfield Community School District": 7, + "Garner Independent School District": 15, + "Garnet Valley School District": 15, + "Garnett Unified School District 365": 15, + "Garrard County School District": 15, + "Garretson School District 49-4": 15, + "Garrett-Keyser-Butler Community Schools": 15, + "Garrett County Public Schools": 15, + "Garrison Elementary School District": 15, + "Garrison Independent School District": 15, + "Garrison Public School District 51": 15, + "Garrison Union Free School District": 15, + "Garvey Elementary School District": 15, + "Garwood Borough School District": 15, + "Gary Community School Corporation": 15, + "Gary Independent School District": 15, + "Gasconade C-4 School District": 15, + "Gasconade County R-I School District": 15, + "Gasconade County R-II School District": 15, + "Gaston County Schools": 15, + "Gaston School District 511J": 15, + "Gates-Chili Central School District": 15, + "Gates County Schools": 15, + "Gatesville Independent School District": 15, + "Gateway Regional School District": 15, + "Gateway School District": 30, + "Gateway Unified School District": 15, + "Gause Independent School District": 15, + "Gavin School District 37": 15, + "Gaylord Community Schools": 15, + "Gayville-Volin School District 63-1": 15, + "Gazelle Union Elementary School District": 15, + "Geary County Schools Unified School District 475": 15, + "Geary Public Schools": 15, + "Geff Community Consolidated School District 14": 15, + "General Brown Central School District": 15, + "General George Patton School District 133": 15, + "General McLane School District": 15, + "General Shafter Elementary School District": 15, + "Genesee Joint School District 282": 15, + "Genesee School District": 15, + "Genesee Valley Central School District": 12, + "Genesee Valley Central School District at Angelica-Belmont": 3, + "Geneseo Central School District": 15, + "Geneseo Community Unit School District 228": 15, + "Geneva Area City School District": 15, + "Geneva City School District": 30, + "Geneva Community Unit School District 304": 15, + "Geneva County School District": 15, + "Geneva Joint No. 4 School District": 15, + "Genoa-Hugo School District C-113": 15, + "Genoa-Kingston Community Unit School District 424": 15, + "Genoa Area Local School District": 15, + "Genoa Central School District": 15, + "Genoa City Joint No. 2 School District": 15, + "Gentry County R-II School District": 5, + "Gentry Public Schools": 15, + "George-Little Rock Community School District": 15, + "George County School District": 15, + "George West Independent School District": 15, + "Georgetown": 14, + "Georgetown-Ridge Farm Consolidated Unit School District 4": 15, + "Georgetown-South Otselic Central School District": 15, + "Georgetown County School District": 15, + "Georgetown Exempted Village School District": 15, + "Georgetown Independent School District": 15, + "Georgetown School District": 16, + "Georgia School District": 9, + "Geraldine Elementary School District": 5, + "Geraldine High School District": 5, + "Geraldine K-12": 6, + "Geraldine K-12 Schools": 4, + "Gerber Union Elementary School District": 15, + "Gering Public Schools": 15, + "Germantown Central School District": 15, + "Germantown Hills School District 69": 15, + "Germantown Municipal School District": 8, + "Germantown School District": 15, + "Germantown School District 60": 15, + "Geronimo Public Schools": 15, + "Gerrish-Higgins School District": 7, + "Gervais School District 1": 15, + "Gettysburg Area School District": 15, + "Gettysburg School District 53-1": 15, + "Geyser Elementary School District": 12, + "Geyser High School District": 12, + "Geyser K-12 Schools": 3, + "Geyserville Unified School District": 15, + "GFW Schools": 3, + "Gholson Independent School District": 15, + "Giant City Community Consolidated School District 130": 15, + "Gibbon Public Schools": 15, + "Gibbsboro Borough School District": 15, + "Gibraltar Area School District": 15, + "Gibraltar School District": 15, + "Gibson City-Melvin-Sibley Community Unit School District 5": 15, + "Gibson County School District": 15, + "Gibsonburg Exempted Village School District": 15, + "Giddings Independent School District": 15, + "Gideon 37 School District": 10, + "Gideon School District": 5, + "Gifford Community Consolidated School District 188": 15, + "Gila Bend Unified District": 15, + "Gila County High School District": 1, + "Gilbert Community School District": 15, + "Gilbert Unified District": 15, + "Gilbertsville-Mount Upton Central School District": 15, + "Gilboa-Conesville Central School District": 15, + "Gilchrist County School District": 15, + "Gildford Colony Elementary School District": 15, + "Gilead": 14, + "Gilead School District": 1, + "Giles County Public Schools": 15, + "Giles County School District": 15, + "Gilford School District": 15, + "Gill-Montague School District": 15, + "Gill-Montague School District in Erving (7-12)": 15, + "Gillespie Community Unit School District 7": 15, + "Gillett School District": 15, + "Gilliam C-4 School District": 15, + "Gilman City R-IV School District": 15, + "Gilman School District": 15, + "Gilmanton School District": 30, + "Gilmer County School District": 30, + "Gilmer Independent School District": 15, + "Gilmore City-Bradgate Community School District": 15, + "Gilpin County School District RE-1": 15, + "Gilroy Unified School District": 15, + "Giltner Public Schools": 15, + "Girard City School District": 15, + "Girard Community Unit School District 3": 3, + "Girard School District": 15, + "Girard Unified School District 248": 15, + "Gladbrook-Reinbeck Community School District": 15, + "Glades County School District": 15, + "Gladewater Independent School District": 15, + "Gladstone Area Schools": 15, + "Gladstone School District 115": 15, + "Gladwin Community Schools": 15, + "Glascock County School District": 15, + "Glasgow Independent School District": 15, + "Glasgow K-12 Schools": 15, + "Glasgow School District": 10, + "Glassboro Borough School District": 15, + "Glasscock County Independent School District": 15, + "Glastenbury School District": 9, + "Glastonbury School District": 15, + "Glen Cove City School District": 15, + "Glen Ellyn Community Consolidated School District 89": 15, + "Glen Ellyn School District 41": 15, + "Glen Gardner Borough School District": 1, + "Glen Lake Community Schools": 15, + "Glen Ridge Borough School District": 15, + "Glen Rock Borough School District": 15, + "Glen Rose Independent School District": 15, + "Glen Rose School District": 15, + "Glen Ullin Public School District 48": 15, + "Glenbard Township High School District 87": 15, + "Glenburn": 10, + "Glenburn Public School District 26": 15, + "Glenburn School District": 1, + "Glencoe-Silver Lake School District": 15, + "Glencoe Public Schools": 15, + "Glencoe School District 35": 15, + "Glendale-River Hills School District": 15, + "Glendale Elementary District": 15, + "Glendale School District": 15, + "Glendale School District 77": 15, + "Glendale Unified School District": 15, + "Glendale Union High School District": 15, + "Glendive Elementary School District": 15, + "Glendora Unified School District": 15, + "Glenn Public School District": 1, + "Glenns Ferry Joint School District 192": 15, + "Glenpool Public Schools": 15, + "Glens Falls City School District": 15, + "Glens Falls Common School District": 15, + "Glenview Community Consolidated School District 34": 15, + "Glenville-Emmons School District": 15, + "Glenwood City School District": 15, + "Glenwood Community School District": 15, + "Glenwood Plantation": 14, + "Glenwood Plantation School District": 1, + "Glenwood R-VIII School District": 15, + "Glenwood School District": 15, + "Glidden-Ralston Community School District": 15, + "Glidden School District": 1, + "Glide School District 12": 15, + "Globe Unified District": 15, + "Glocester Elementary School District": 15, + "Gloucester City School District": 15, + "Gloucester County Public Schools": 15, + "Gloucester School District": 15, + "Gloucester Township School District": 15, + "Glover Public School": 15, + "Glover School District": 7, + "Gloversville City School District": 15, + "Glynn County School District": 15, + "GMG Community School District": 15, + "Gobles Public School District": 15, + "Goddard Unified School District 265": 15, + "Godfrey-Lee Public Schools": 15, + "Godley Independent School District": 15, + "Godwin Heights Public Schools": 15, + "Goessel Unified School District 411": 15, + "Goffstown School District": 15, + "Gold-Burg Independent School District": 15, + "Gold Creek Elementary School District": 15, + "Gold Oak Union Elementary School District": 15, + "Gold Trail Union Elementary School District": 15, + "Golden City R-III School District": 10, + "Golden City School District": 5, + "Golden Feather Union Elementary School District": 15, + "Golden Plains Unified School District": 15, + "Golden Plains Unified School District 316": 15, + "Golden Ridge Elementary School District": 15, + "Golden Valley Unified School District": 15, + "Goldendale School District": 15, + "Goldthwaite Consolidated Independent School District": 8, + "Goldthwaite Independent School District": 7, + "Goleta Union Elementary School District": 15, + "Golf Elementary School District 67": 15, + "Goliad Independent School District": 15, + "Gonzales Independent School District": 15, + "Gonzales Unified (9-12) School District": 9, + "Gonzales Unified School District": 15, + "Gonzales Unified School District (9-12)": 6, + "Goochland County Public Schools": 15, + "Goodhue Public School District": 15, + "Gooding Joint School District 231": 15, + "Goodland Public School": 3, + "Goodland Unified School District 352": 15, + "Goodman-Armstrong School District": 15, + "Goodrich Area Schools": 15, + "Goodrich Independent School District": 15, + "Goodrich Public School District 16": 15, + "Goodridge Public School District": 15, + "Goodwell Public Schools": 15, + "Goose Creek Consolidated Independent School District": 15, + "Gordon-Rushville Public Schools": 15, + "Gordon County School District": 15, + "Gordon Independent School District": 15, + "Gore Public Schools": 15, + "Goreville Community Unit School District 1": 15, + "Gorham": 14, + "Gorham-Middlesex (Marcus Whitman) Central School District": 2, + "Gorham-Middlesex Central School District (Marcus Whitman)": 10, + "Gorham Randolph Shelburne Cooperative School District": 15, + "Gorham School District": 1, + "Gorin R-III School District": 7, + "Gorman Elementary School District": 15, + "Gorman Independent School District": 15, + "Goshen-Lempster Cooperative School District": 7, + "Goshen Central School District": 15, + "Goshen Community Schools": 15, + "Goshen County School District 1": 15, + "Goshen Local School District": 15, + "Goshen School District": 15, + "Gosnell School District": 15, + "Gosnold School District": 15, + "Gothenburg Public Schools": 15, + "Gouverneur Central School District": 15, + "Governor Mifflin School District": 15, + "Governor Wentworth Regional School District": 15, + "Gowanda Central School District": 15, + "Gower School District 62": 15, + "Grace Joint School District 148": 15, + "Gracemont Public Schools": 15, + "Grady County School District": 15, + "Grady Independent School District": 15, + "Grady Municipal Schools": 15, + "Graettinger-Terril Community School District": 12, + "Graettinger Community School District": 3, + "Graford Independent School District": 15, + "Grafton 18": 2, + "Grafton Public School District 3": 13, + "Grafton School District": 34, + "Graham-Dustin Public Schools": 10, + "Graham County High School District": 1, + "Graham County Schools": 15, + "Graham County Unified School District 281": 1, + "Graham Independent School District": 15, + "Graham Local School District": 15, + "Graham Public Schools": 5, + "Grain Valley R-V School District": 15, + "Grainger County School District": 15, + "Granada-Huntley-East Chain": 12, + "Granada-Huntley-East Chain Public School District": 3, + "Granada School District RE-1": 15, + "Granbury Independent School District": 15, + "Granby School District": 37, + "Grand Blanc Community Schools": 15, + "Grand Canyon Unified District": 15, + "Grand Coulee Dam School District": 14, + "Grand Coulee School District": 1, + "Grand Forks AFB Public School District 140": 15, + "Grand Forks Public School District 1": 15, + "Grand Haven Area Public Schools": 15, + "Grand Island Central School District": 15, + "Grand Island Public Schools": 15, + "Grand Isle": 14, + "Grand Isle School District": 8, + "Grand Isle Supervisory Union": 6, + "Grand Ledge Public Schools": 15, + "Grand Meadow Public School District": 15, + "Grand Prairie Community Consolidated School District 6": 15, + "Grand Prairie Independent School District": 15, + "Grand Rapids Public School District": 15, + "Grand Rapids Public Schools": 15, + "Grand Ridge Community Consolidated School District 95": 15, + "Grand Saline Independent School District": 15, + "Grand School District": 15, + "Grand Valley Local School District": 15, + "Grand View Public School": 15, + "Grandfalls-Royalty Independent School District": 15, + "Grandfield Public Schools": 15, + "Grandview-Hopkins Independent School District": 15, + "Grandview C-4 School District": 15, + "Grandview Heights City School District": 15, + "Grandview Independent School District": 15, + "Grandview Public School": 15, + "Grandview R-II School District": 15, + "Grandview School District": 15, + "Grandville Public Schools": 15, + "Granger Independent School District": 15, + "Granger School District": 15, + "Granite City Community Unit School District 9": 15, + "Granite Falls School District": 15, + "Granite Public Schools": 15, + "Granite School District": 15, + "Grant-Deuel School District 25-3": 9, + "Grant Community Consolidated School District 110": 15, + "Grant Community High School District 124": 15, + "Grant County School District": 30, + "Grant Elementary School District": 30, + "Grant Joint Union High School District": 1, + "Grant Parish School District": 15, + "Grant Park Community Unit School District 6": 15, + "Grant Public School": 13, + "Grant Public School District": 15, + "Grant Township School District 2": 15, + "Grantham School District": 15, + "Granton Area School District": 15, + "Grants-Cibola County Schools": 15, + "Grants Pass School District 7": 15, + "Grantsburg School District": 15, + "Granville Central School District": 15, + "Granville County Schools": 15, + "Granville Exempted Village School District": 15, + "Granville Hancock Unified School District": 2, + "Granville School District": 12, + "Granville/Hancock Joint Contract School District": 1, + "Grape Creek Independent School District": 15, + "Grapeland Independent School District": 15, + "Grapeview School District": 15, + "Grapevine-Colleyville Independent School District": 15, + "Grass Lake Community Schools": 15, + "Grass Lake School District 36": 15, + "Grass Range Elementary School District": 15, + "Grass Range High School District": 15, + "Grass Valley Elementary School District": 15, + "Gratton Elementary School District": 15, + "Gravenstein Union Elementary School District": 15, + "Graves County School District": 15, + "Graves Elementary School District": 15, + "Gravette School District": 15, + "Grayslake Community High School District 127": 15, + "Grayslake Consolidated Community School District 46": 15, + "Grayson County Public Schools": 15, + "Grayson County School District": 15, + "Grayville Community Unit School District 1": 15, + "Greasy Public School": 12, + "Great Bend Unified School District 428": 15, + "Great Falls Elementary School District": 15, + "Great Falls High School District": 15, + "Great Lake Stream Plantation": 14, + "Great Lake Stream Plantation School District": 1, + "Great Meadows Regional School District": 15, + "Great Neck Union Free School District": 15, + "Great Northern School District": 15, + "Great Salt Bay Community School District": 15, + "Great Valley School District": 15, + "Greater Albany School District 8J": 15, + "Greater Clark County Schools": 15, + "Greater Egg Harbor Regional School District": 15, + "Greater Hoyt School District 61-4": 3, + "Greater Jasper Consolidated Schools": 15, + "Greater Johnstown School District": 15, + "Greater Latrobe School District": 15, + "Greater Nanticoke Area School District": 15, + "Greater Rutland County Supervisory Union": 3, + "Greater Scott School District 61-5": 3, + "Greece Central School District": 15, + "Greeley-Wolbach Public Schools": 9, + "Greeley County Schools Unified School District 200": 15, + "Greeley School District 6": 15, + "Green Bay Area School District": 15, + "Green Brook Township School District": 15, + "Green City R-I School District": 15, + "Green County School District": 15, + "Green Forest R-II School District": 15, + "Green Forest School District": 15, + "Green Island Union Free School District": 15, + "Green Lake School District": 15, + "Green Local School District (Scioto County)": 15, + "Green Local School District (Summit County)": 15, + "Green Local School District (Wayne County)": 15, + "Green Mountain School District": 15, + "Green Mountain Unified School District": 2, + "Green Mountain Union High School District 35": 7, + "Green Point Elementary School District": 15, + "Green Ridge R-VIII School District": 15, + "Green Township School District": 15, + "Greenbrier County School District": 15, + "Greenbrier School District": 15, + "Greenburgh Central School District": 15, + "Greenbush": 14, + "Greenbush-Middle River School District": 15, + "Greenbush School District": 1, + "Greencastle-Antrim School District": 15, + "Greencastle Community School Corporation": 15, + "Greendale School District": 15, + "Greene Central School District": 15, + "Greene Community School District": 3, + "Greene County Community School District": 8, + "Greene County Public Schools": 15, + "Greene County R-VIII School District": 5, + "Greene County School District": 60, + "Greene County Schools": 15, + "Greene County Technical School District": 15, + "Greeneview Local School District": 15, + "Greeneville City School District": 15, + "Greenfield-Central Community Schools": 15, + "Greenfield Community Unit School District 10": 15, + "Greenfield Elementary School District": 15, + "Greenfield Exempted Village School District": 15, + "Greenfield R-IV School District": 15, + "Greenfield School District": 30, + "Greenfield Union Elementary School District": 8, + "Greenfield Union Elementary School District (Kern County)": 7, + "Greenfield Union Elementary School District (Monterey County)": 7, + "Greenfield Union School District": 8, + "Greenland Public Schools": 15, + "Greenland School District": 15, + "Greenlee County High School District": 1, + "Greenon Local School District": 15, + "Greenport Union Free School District": 15, + "Greensburg Community Schools": 15, + "Greensburg Salem School District": 15, + "Greensburg Unified School District 422": 14, + "Greensville County Public Schools": 15, + "Greenup County School District": 15, + "Greenview Community Unit School District 200": 15, + "Greenville": 14, + "Greenville Area School District": 15, + "Greenville Central School District": 15, + "Greenville City School District": 15, + "Greenville County School District": 15, + "Greenville Independent School District": 15, + "Greenville Public School": 15, + "Greenville Public School District": 15, + "Greenville Public Schools": 15, + "Greenville R-II School District": 15, + "Greenville School District": 1, + "Greenway Public School District": 15, + "Greenwich Central School District": 15, + "Greenwich School District": 15, + "Greenwich Township School District": 12, + "Greenwich Township School District (Cumberland County)": 3, + "Greenwich Township School District (Gloucester County)": 15, + "Greenwich Township School District (Warren County)": 15, + "Greenwood-Leflore Consolidated School District": 4, + "Greenwood Community School Corporation": 15, + "Greenwood Independent School District": 15, + "Greenwood Lake Union Free School District": 15, + "Greenwood Public School District": 11, + "Greenwood School District": 45, + "Greenwood School District 50": 15, + "Greenwood School District 51": 15, + "Greenwood School District 52": 15, + "Gregory-Portland Independent School District": 15, + "Gregory School District 26-4": 15, + "Grenada Elementary School District": 15, + "Grenada School District": 15, + "Grenora Public School District 99": 15, + "Gresham-Barlow School District 1J": 15, + "Gresham School District": 15, + "Gretna Public Schools": 15, + "Greycliff Elementary School District": 15, + "Gridley Unified School District": 15, + "Gridley Unified School District (9-12)": 6, + "Griffin School District": 15, + "Griffith Public Schools": 15, + "Griggs County Central School District 18": 15, + "Griggsville-Perry Community Unit School District 4": 15, + "Grinnell-Newburg Community School District": 15, + "Grinnell Public Schools Unified School District 291": 15, + "Griswold Community School District": 15, + "Griswold School District": 15, + "Groesbeck Independent School District": 15, + "Groom Independent School District": 15, + "Grosse Ile Township Schools": 15, + "Grosse Pointe Public Schools": 15, + "Grossmont Union High School District": 15, + "Groton-Dunstable School District": 15, + "Groton Area School District 06-6": 15, + "Groton Central School District": 15, + "Groton School District": 15, + "Grove City Area School District": 15, + "Grove Public School": 15, + "Grove Public Schools": 15, + "Groveport Madison Local School District": 15, + "Groveton Independent School District": 15, + "Grundy Center Community School District": 15, + "Grundy County R-V School District": 15, + "Grundy County School District": 15, + "Gruver Independent School District": 15, + "Grygla Public School District": 15, + "Guadalupe Union Elementary School District": 15, + "Guerneville Elementary School District": 15, + "Guilderland Central School District": 15, + "Guildhall School District": 7, + "Guilford County Schools": 15, + "Guilford School District": 22, + "Gulf County School District": 15, + "Gulf Shores City School District": 3, + "Gulfport School District": 15, + "Gull Lake Community Schools": 15, + "Gunnison Watershed School District RE-1J": 15, + "Gunter Independent School District": 15, + "Guntersville City School District": 15, + "Gurdon School District": 15, + "Gurnee School District 56": 15, + "Gustine Independent School District": 15, + "Gustine Unified School District": 15, + "Guthrie Center Community School District": 15, + "Guthrie Common School District": 15, + "Guthrie Public Schools": 15, + "Guttenberg Town School District": 15, + "Guy-Perkins Schools": 15, + "Guymon Public Schools": 15, + "Gwinn Area Community Schools": 15, + "Gwinnett County School District": 15, + "Gypsy Public School": 15, + "H-L-V Community School District": 15, + "Haakon School District 27-1": 15, + "Habersham County School District": 15, + "Hacienda La Puente Unified School District": 15, + "Hackberry School District": 15, + "Hackensack City School District": 15, + "Hackett Public Schools": 15, + "Hackettstown Town School District": 15, + "Haddon Heights Borough School District": 15, + "Haddon Township School District": 15, + "Haddonfield Borough School District": 15, + "Hadley-Luzerne Central School District": 15, + "Hadley School District": 15, + "Hagar Township School District 6": 15, + "Hagerman Joint School District 233": 15, + "Hagerman Municipal Schools": 15, + "Haileyville Public Schools": 15, + "Haines Borough School District": 15, + "Hainesport Township School District": 15, + "Haldane Central School District": 15, + "Hale's Location School District": 6, + "Hale Area Schools": 15, + "Hale Center Independent School District": 15, + "Hale County School District": 15, + "Hale R-I School District": 15, + "Haledon Borough School District": 15, + "Haleyville City School District": 15, + "Half Hollow Hills Central School District": 15, + "Halfway R-III School District": 15, + "Halifax": 2, + "Halifax Area School District": 15, + "Halifax County Public Schools": 15, + "Halifax County Schools": 15, + "Halifax School District": 22, + "Hall County School District": 15, + "Hall Elementary School District": 15, + "Hall High School District 502": 15, + "Hallettsville Independent School District": 15, + "Hallettsville Independent School District (9-12) in Vysehrad": 15, + "Halliday Public School District 19": 15, + "Hallsburg Independent School District": 15, + "Hallsville Independent School District": 15, + "Hallsville R-IV School District": 10, + "Halstead Unified School District 440": 15, + "Hamblen County School District": 15, + "Hamburg Area School District": 15, + "Hamburg Borough School District": 15, + "Hamburg Central School District": 15, + "Hamburg Community School District": 15, + "Hamburg School District": 15, + "Hamden School District": 15, + "Hamilton-Wenham School District": 15, + "Hamilton Central School District": 15, + "Hamilton City School District": 15, + "Hamilton Community Consolidated School District 328": 15, + "Hamilton Community Schools": 30, + "Hamilton County Community Unit School District 10": 15, + "Hamilton County School District": 30, + "Hamilton Heights School Corporation": 15, + "Hamilton Independent School District": 15, + "Hamilton K-12 Schools": 15, + "Hamilton Local School District": 15, + "Hamilton R-II School District": 15, + "Hamilton School District": 15, + "Hamilton Southeastern Schools": 15, + "Hamilton Township School District": 30, + "Hamilton Unified School District": 10, + "Hamilton Unified School District (9-12)": 6, + "Hamilton Unified School District 390": 15, + "Hamilton Unified School District in Capay (9-12)": 4, + "Hamilton Union Elementary School District": 5, + "Hamilton Union High School District": 5, + "Hamlin Independent School District": 15, + "Hamlin School District 28-3": 15, + "Hammon Public Schools": 15, + "Hammond Central School District": 15, + "Hammond School City": 15, + "Hammondsport Central School District": 15, + "Hammonton Town School District": 15, + "Hampden-Wilbraham School District": 15, + "Hampshire County School District": 15, + "Hampshire School District": 15, + "Hampstead School District": 15, + "Hampton-Dumont Community School District": 15, + "Hampton Bays Union Free School District": 15, + "Hampton Borough School District": 15, + "Hampton City Public Schools": 15, + "Hampton County School District": 1, + "Hampton Falls School District": 15, + "Hampton Public Schools": 15, + "Hampton School District": 45, + "Hampton School District 1": 14, + "Hampton School District 2": 14, + "Hampton School District 29": 15, + "Hampton Township School District": 30, + "Hamshire-Fannett Independent School District": 15, + "Hamtramck Public Schools": 15, + "Hancock Central School District": 15, + "Hancock County School District": 75, + "Hancock Place School District": 15, + "Hancock Public School District": 15, + "Hancock Public Schools": 23, + "Hancock School District": 23, + "Hancock Unorganized Territory": 15, + "Hanford Elementary School District": 15, + "Hanford Joint Union High School District": 15, + "Hankinson Public School District 8": 15, + "Hanna Public Schools": 15, + "Hannibal 60 School District": 10, + "Hannibal Central School District": 15, + "Hannibal School District": 5, + "Hanover-Horton Schools": 15, + "Hanover Area School District": 15, + "Hanover Community School Corporation": 15, + "Hanover County Public Schools": 15, + "Hanover Park Regional School District": 15, + "Hanover Public School District": 15, + "Hanover School District": 31, + "Hanover School District 28": 15, + "Hanover Township School District": 15, + "Hansen School District 415": 15, + "Hanson School District 30-1": 15, + "Hanston Unified School District 228": 3, + "Happy Camp Union Elementary School District": 15, + "Happy Independent School District": 15, + "Happy Valley Elementary School District": 15, + "Happy Valley Union Elementary School District": 15, + "Haralson County School District": 15, + "Harbor Beach Community Schools": 15, + "Harbor Creek School District": 15, + "Harbor Springs School District": 15, + "Harborfields Central School District": 15, + "Hardee County School District": 15, + "Hardeman County School District": 15, + "Hardeman R-X School District": 15, + "Hardesty Public Schools": 15, + "Hardin-Central C-2 School District": 15, + "Hardin-Houston Local School District": 15, + "Hardin-Jefferson Independent School District": 15, + "Hardin County Community Unit School District 1": 15, + "Hardin County School District": 30, + "Hardin Elementary School District": 15, + "Hardin High School District": 15, + "Hardin Independent School District": 15, + "Hardin Northern Local School District": 15, + "Harding County School District 31-1": 15, + "Harding Township School District": 15, + "Hardwick School District": 7, + "Hardwick Township School District": 1, + "Hardy County School District": 15, + "Hardyston Township School District": 15, + "Harford County Public Schools": 15, + "Harlan Community School District": 15, + "Harlan County School District": 15, + "Harlan Independent School District": 15, + "Harlandale Independent School District": 15, + "Harlem Elementary School District": 15, + "Harlem High School District": 15, + "Harlem Unit School District 122": 15, + "Harleton Independent School District": 15, + "Harlingen Consolidated Independent School District": 15, + "Harlowton Elementary School District": 11, + "Harlowton High School District": 11, + "Harlowton K-12 Schools": 4, + "Harmony": 14, + "Harmony Area School District": 15, + "Harmony Community School District": 11, + "Harmony Emge School District 175": 15, + "Harmony Grove School District (Clark, Dallas, and Ouachita Counties)": 15, + "Harmony Grove School District (Saline County)": 15, + "Harmony Independent School District": 15, + "Harmony Public School": 15, + "Harmony School District": 1, + "Harmony Township School District": 15, + "Harmony Union Elementary School District": 7, + "Harmony Union School District": 8, + "Harnett County Schools": 15, + "Harney County School District 3": 15, + "Harney County School District 4": 15, + "Harney County Union High School District 1J": 15, + "Harper Creek Community Schools": 15, + "Harper Independent School District": 15, + "Harper School District 66": 15, + "Harper Woods City Schools": 15, + "Harpursville Central School District": 15, + "Harrah Public Schools": 15, + "Harrington Park Borough School District": 15, + "Harrington School District": 15, + "Harris-Lake Park Community School District": 15, + "Harris County School District": 15, + "Harrisburg City School District": 15, + "Harrisburg Community Unit School District 3": 15, + "Harrisburg R-VIII School District": 15, + "Harrisburg School District": 15, + "Harrisburg School District 41-2": 15, + "Harrisburg School District 7J": 15, + "Harrison Central School District": 15, + "Harrison Community Schools": 15, + "Harrison County School District": 45, + "Harrison Hills City School District": 15, + "Harrison K-12 Schools": 15, + "Harrison School District": 15, + "Harrison School District 2": 15, + "Harrison School District 36": 15, + "Harrison Town School District": 15, + "Harrison Township School District": 15, + "Harrisonburg City Public Schools": 15, + "Harrisonville R-IX School District": 15, + "Harrisville Central School District": 15, + "Harrisville School District": 15, + "Harrold Independent School District": 15, + "Harrold School District 32-1": 1, + "Hart's Location School District": 15, + "Hart-Ransom Union Elementary School District": 15, + "Hart County School District": 30, + "Hart Independent School District": 15, + "Hart Public School District": 15, + "Hartford Central School District": 15, + "Hartford Joint No. 1 School District": 15, + "Hartford Public School District": 15, + "Hartford School District": 37, + "Hartford Union High School District": 15, + "Hartington Newcastle Public Schools": 6, + "Hartington Public Schools": 9, + "Hartland-Lakeside Joint No. 3 School District": 15, + "Hartland Consolidated Schools": 15, + "Hartland School District": 24, + "Hartley-Melvin-Sanborn Community School District": 15, + "Hartley Independent School District": 15, + "Harts Bluff Independent School District": 15, + "Hartsburg-Emden Community Unit School District 21": 15, + "Hartselle City School District": 15, + "Hartshorne Public Schools": 15, + "Hartville R-II School District": 15, + "Harvard Community Unit School District 50": 15, + "Harvard Public Schools": 15, + "Harvard School District": 15, + "Harvey Public School District 38": 15, + "Harvey School District 152": 15, + "Harwich School District": 5, + "Harwood Unified School District": 5, + "Harwood Union High School District 19": 7, + "Harwood Union High School District 19 (9-12)": 4, + "Hasbrouck Heights Borough School District": 15, + "Haskell Consolidated Independent School District": 15, + "Haskell Public Schools": 15, + "Haslett Public Schools": 15, + "Hastings-on-Hudson Union Free School District": 15, + "Hastings Area School District": 15, + "Hastings Public School District": 15, + "Hastings Public Schools": 15, + "Hatboro-Horsham School District": 15, + "Hatch Valley Municipal Schools": 15, + "Hatfield School District": 15, + "Hattiesburg Public School District": 15, + "Hatton Public School District 7": 15, + "Hauppauge Union Free School District": 15, + "Havana Community Unit School District 126": 15, + "Haven Public Schools Unified School District 312": 15, + "Haverford Township School District": 15, + "Haverhill Cooperative School District": 15, + "Haverhill School District": 15, + "Haverstraw-Stony Point (North Rockland) Central School District": 2, + "Haverstraw-Stony Point Central School District": 3, + "Haverstraw-Stony Point Central School District (North Rockland)": 10, + "Haviland Unified School District 474": 15, + "Havre Elementary School District": 15, + "Havre High School District": 15, + "Hawaii Department of Education": 15, + "Hawkins County School District": 15, + "Hawkins County School District in Rogersville": 15, + "Hawkins Independent School District": 15, + "Hawks Home Elementary School District": 15, + "Hawlemont School District": 15, + "Hawley Independent School District": 15, + "Hawley Public School District": 15, + "Haworth Borough School District": 15, + "Haworth Public Schools": 15, + "Hawthorn Community Consolidated School District 73": 15, + "Hawthorne Borough School District": 15, + "Hawthorne Elementary School District": 15, + "Haxtun School District RE-2J": 15, + "Hay Springs Public Schools": 15, + "Hayden-Winkelman Unified District": 15, + "Hayden School District RE-1": 15, + "Hayes Center Public Schools": 15, + "Hayfield Public School District": 15, + "Hays-Lodge Pole K-12 Schools": 15, + "Hays Consolidated Independent School District": 15, + "Hays Unified School District 489": 15, + "Haysville Unified School District 261": 15, + "Hayti R-II School District": 15, + "Hayward Community School District": 15, + "Hayward Unified School District": 15, + "Haywood County School District": 15, + "Haywood County Schools": 15, + "Haywood Public School": 15, + "Hazard Independent School District": 15, + "Hazel Crest School District 152-5": 15, + "Hazel Park City School District": 15, + "Hazelton-Moffit-Braddock Public School District 6": 15, + "Hazelwood School District": 15, + "Hazen Public School District 3": 15, + "Hazen School District": 15, + "Hazen UHSD #26": 1, + "Hazen UHSD 26": 1, + "Hazen Union High School District 26": 7, + "Hazlehurst City School District": 15, + "Hazlet Township School District": 15, + "Hazleton Area School District": 15, + "Healdsburg Unified (7-12) in Alexander Valley Union": 2, + "Healdsburg Unified (9-12) in West Side Union": 2, + "Healdsburg Unified School District": 15, + "Healdsburg Unified School District (7-12)": 6, + "Healdton Public Schools": 15, + "Healy Public Schools Unified School District 468": 15, + "Heard County School District": 15, + "Hearne Independent School District": 15, + "Heart Butte K-12 Schools": 15, + "Heartland Community Schools": 15, + "Heath City School District": 15, + "Heavener Public Schools": 15, + "Heber-Overgaard Unified District": 15, + "Heber Elementary School District": 15, + "Heber Springs School District": 15, + "Hebron Public School District 13": 15, + "Hebron School District": 15, + "Hector School District": 15, + "Hedley Independent School District": 15, + "Helena-West Helena School District": 15, + "Helena Elementary School District": 13, + "Helena Flats Elementary School District": 15, + "Helena High School District": 15, + "Helendale Elementary School District": 15, + "Helix School District 1": 15, + "Hellgate Elementary School District": 15, + "Helmetta Borough School District": 1, + "Helmville Elementary School District": 15, + "Hemet Unified School District": 15, + "Hemingford Public Schools": 15, + "Hemlock Public School District": 15, + "Hempfield Area School District": 15, + "Hempfield School District": 15, + "Hemphill Independent School District": 15, + "Hempstead Independent School District": 15, + "Hempstead Union Free School District": 15, + "Henderson County School District": 30, + "Henderson County School District in Lexington": 15, + "Henderson County Schools": 15, + "Henderson Independent School District": 15, + "Hendrick Hudson Central School District": 15, + "Hendricks Public School District": 15, + "Hendry County School District": 15, + "Hennessey Public Schools": 15, + "Henniker School District": 15, + "Henning Public School District": 15, + "Henrico County Public Schools": 15, + "Henrietta Independent School District": 15, + "Henry-Senachwine Consolidated Unit School District 5": 15, + "Henry County Public Schools": 15, + "Henry County R-I School District": 15, + "Henry County School District": 60, + "Henry County School District in Paris": 15, + "Henry Hudson Regional School District": 15, + "Henry School District 14-2": 15, + "Henryetta Public Schools": 15, + "Hereford Independent School District": 15, + "Herington Unified School District 487": 15, + "Heritage Community Unit School District 8": 15, + "Herkimer Central School District": 15, + "Herman-Neosho-Rubicon School District": 6, + "Herman-Norcross School District": 15, + "Herman No. 22 School District": 9, + "Hermantown Public School District": 15, + "Hermiston School District 8": 15, + "Hermitage R-IV School District": 15, + "Hermitage School District": 30, + "Hermleigh Independent School District": 15, + "Hermon": 14, + "Hermon-DeKalb Central School District": 15, + "Hermon School District": 1, + "Hermosa Beach City Elementary School District": 15, + "Hernando County School District": 15, + "Heron Lake-Okabena-Fulda-Worthington in Round Lake-Brewster (9-12)": 4, + "Heron Lake-Okabena School District": 15, + "Herreid School District 10-1": 15, + "Herricks Union Free School District": 15, + "Herrin Community Unit School District 4": 15, + "Herscher Community Unit School District 2": 15, + "Hersey": 2, + "Hersey School District": 1, + "Hershey Public Schools": 15, + "Hertford County Schools": 15, + "Hesperia Community Schools": 15, + "Hesperia Unified School District": 15, + "Hesston Unified School District 460": 15, + "Hettinger Public School District 13": 15, + "Heuvelton Central School District": 15, + "Hewlett-Woodmere Union Free School District": 15, + "Heyworth Community Unit School District 4": 15, + "Hi-Nella Borough School District": 15, + "Hi-Plains School District R-23": 15, + "Hiawatha Community Unit School District 426": 15, + "Hiawatha Unified School District 415": 13, + "Hibbing Public School District": 15, + "Hickman Community Charter School District": 8, + "Hickman County School District": 30, + "Hickman Elementary School District": 7, + "Hickman Mills C-1 School District": 15, + "Hickory City Schools": 15, + "Hickory County R-I School District": 15, + "Hicksville Exempted Village School District": 15, + "Hicksville Union Free School District": 15, + "Hico Independent School District": 15, + "Hidalgo Independent School District": 15, + "Higbee R-VIII School District": 15, + "Higgins Independent School District": 12, + "High Bridge Borough School District": 15, + "High Island Independent School District": 15, + "High Mount School District 116": 15, + "High Plains Community Schools": 15, + "High Point R-III School District": 15, + "High Point Regional School District": 15, + "Highgate School District": 7, + "Highland Central School District": 15, + "Highland Community School District": 15, + "Highland Community Unit School District 5": 15, + "Highland County Public Schools": 15, + "Highland Falls Central School District": 15, + "Highland Independent School District": 15, + "Highland Joint School District 305": 15, + "Highland Local School District (Delaware and Morrow Counties)": 15, + "Highland Local School District (Medina abd Summit Counties)": 1, + "Highland Local School District (Medina and Summit Counties)": 14, + "Highland Park Borough School District": 15, + "Highland Park City Schools": 15, + "Highland Park Independent School District (Dallas County)": 15, + "Highland Park Independent School District (Potter County)": 15, + "Highland Plantation": 14, + "Highland Plantation School District": 1, + "Highland School District": 45, + "Highland School Town": 15, + "Highland Unified School District 425": 1, + "Highlands Borough School District": 15, + "Highlands County School District": 15, + "Highlands School District": 15, + "Highline School District": 15, + "Highmore-Harrold School District 34-2": 14, + "Highwood Elementary School District": 5, + "Highwood High School District": 5, + "Highwood K-12": 6, + "Highwood K-12 Schools": 4, + "Higley Unified District": 15, + "Hilbert School District": 15, + "Hill City Public School District": 15, + "Hill City School District 51-2": 15, + "Hill City Unified School District 281": 14, + "Hill School District": 15, + "Hillcrest Rural Schools Unified School District 455": 1, + "Hillcrest School District": 15, + "Hilldale Public Schools": 15, + "Hilliard City School District": 15, + "Hillman Community Schools": 15, + "Hills-Beaver Creek School District": 15, + "Hillsboro-Deering Cooperative School District": 15, + "Hillsboro City School District": 15, + "Hillsboro Community Unit School District 3": 15, + "Hillsboro Independent School District": 15, + "Hillsboro Public School District 9": 15, + "Hillsboro R-III School District": 15, + "Hillsboro School District": 15, + "Hillsboro School District 1J": 15, + "Hillsborough City Elementary School District": 15, + "Hillsborough County School District": 15, + "Hillsborough Township School District": 15, + "Hillsdale Borough School District": 15, + "Hillsdale Community Schools": 15, + "Hillsdale Local School District": 15, + "Hillside Elementary District": 15, + "Hillside School District 93": 15, + "Hillside Township School District": 15, + "Hilmar Unified School District": 15, + "Hilton Central School District": 15, + "Hinckley-Big Rock Community Unit School District 429": 15, + "Hinckley-Finlayson School District": 15, + "Hinds County School District": 15, + "Hinesburg School District": 7, + "Hingham School District": 15, + "Hinsdale Central School District": 15, + "Hinsdale Community Consolidated School District 181": 15, + "Hinsdale County School District RE-1": 15, + "Hinsdale Elementary School District": 15, + "Hinsdale High School District": 15, + "Hinsdale School District": 15, + "Hinsdale Township High School District 86": 15, + "Hinton Community School District": 15, + "Hinton Public Schools": 15, + "Hitchcock-Tulare School District 56-6": 15, + "Hitchcock County School System": 14, + "Hitchcock County Unified School System": 1, + "Hitchcock Independent School District": 15, + "Ho-Ho-Kus Borough School District": 15, + "Hobart Public Schools": 15, + "Hobart School City": 15, + "Hobbs Municipal Schools": 15, + "Hoboken City School District": 15, + "Hobson K-12 Schools": 15, + "Hockinson School District": 15, + "Hodgeman County Schools Unified School District 227": 1, + "Hodgen Public School": 15, + "Hoehne Reorganized School District 3": 15, + "Hoisington Unified School District 431": 15, + "Hoke County Schools": 15, + "Holbrook School District": 15, + "Holbrook Unified District": 15, + "Holcomb R-III School District": 15, + "Holcomb Unified School District 363": 15, + "Holden R-III School District": 15, + "Holdenville Public Schools": 15, + "Holderness School District": 15, + "Holdingford Public School District": 15, + "Holdrege Public Schools": 15, + "Holgate Local School District": 15, + "Holland Central School District": 15, + "Holland City School District": 15, + "Holland Independent School District": 15, + "Holland Patent Central School District": 15, + "Holland School District": 24, + "Holland Township School District": 15, + "Hollandale School District": 15, + "Holley Central School District": 15, + "Holliday C-2 School District": 15, + "Holliday Independent School District": 15, + "Hollidaysburg Area School District": 15, + "Hollis-Brookline Cooperative School District": 15, + "Hollis Consolidated School District 328": 15, + "Hollis Public Schools": 15, + "Hollis School District": 15, + "Hollister R-V School District": 15, + "Hollister School District": 15, + "Holliston School District": 15, + "Hollow Rock-Bruceton Special School District": 15, + "Holly Area School District": 15, + "Holly Creek Public School": 15, + "Holly School District RE-3": 15, + "Holly Springs School District": 15, + "Holmdel Township School District": 15, + "Holmen School District": 15, + "Holmes County Consolidated School District": 5, + "Holmes County School District": 25, + "Holt County R-II School District": 5, + "Holt Public Schools": 15, + "Holt Union Elementary School District": 1, + "Holton Public Schools": 15, + "Holton Unified School District 336": 15, + "Holtville Unified School District": 15, + "Holy Hill Area School District": 5, + "Holyoke School District": 15, + "Holyoke School District RE-1J": 15, + "Homedale Joint School District 370": 15, + "Homer-Center School District": 15, + "Homer Central School District": 15, + "Homer Community Consolidated School District 33C": 15, + "Homer Community Schools": 30, + "Homewood-Flossmoor Community High School District 233": 15, + "Homewood City School District": 15, + "Homewood School District 153": 15, + "Hominy Public Schools": 15, + "Hondo Independent School District": 15, + "Hondo Valley Public Schools": 15, + "Honeoye Central School District": 15, + "Honeoye Falls-Lima Central School District": 15, + "Honey Grove Independent School District": 15, + "Hononegah Community High School District 207": 15, + "Hood Canal School District": 15, + "Hood River County School District 1": 15, + "Hooker Public Schools": 15, + "Hooks Independent School District": 15, + "Hooksett School District": 15, + "Hoonah City School District": 15, + "Hoopeston Area Community Unit School District 11": 15, + "Hoosac Valley School District": 4, + "Hoosac Valley School District in Savoy (7-12)": 4, + "Hoosic Valley Central School District": 15, + "Hoosick Falls Central School District": 15, + "Hoover-Schrum Memorial School District 157": 15, + "Hoover City School District": 15, + "Hopatcong Borough School District": 15, + "Hope": 14, + "Hope-Page Public School District 85": 3, + "Hope Elementary School District (Santa Barbara County)": 15, + "Hope Elementary School District (Tulare County)": 15, + "Hope Public School District 10": 12, + "Hope School District": 16, + "Hope Township School District": 15, + "Hopedale School District": 15, + "Hopewell-Loudon Local School District": 15, + "Hopewell Area School District": 15, + "Hopewell City Public Schools": 15, + "Hopewell Township School District": 15, + "Hopewell Valley Regional School District": 15, + "Hopkins County School District": 15, + "Hopkins Public School District": 15, + "Hopkins Public Schools": 15, + "Hopkinton School District": 30, + "Hoquiam School District": 15, + "Horatio School District": 15, + "Horicon Elementary School District": 15, + "Horicon School District": 15, + "Hornbrook Elementary School District": 15, + "Hornell City School District": 15, + "Horry County School District": 15, + "Horse Creek Public School District 32": 15, + "Horseheads Central School District": 15, + "Horseshoe Bend School District 73": 15, + "Hortonville School District": 15, + "Hot Springs County School District 1": 15, + "Hot Springs Elementary School District": 20, + "Hot Springs High School District": 5, + "Hot Springs K-12": 6, + "Hot Springs K-12 Schools": 4, + "Hot Springs School District": 15, + "Hot Springs School District 23-2": 15, + "Houghton-Portage Township Schools": 15, + "Houghton Lake Community School District": 15, + "House Municipal Schools": 15, + "Houston County School District": 45, + "Houston Independent School District": 15, + "Houston Public School District": 15, + "Houston R-I School District": 15, + "Houston School District": 13, + "Hoven School District 53-2": 15, + "Howard-Suamico School District": 15, + "Howard-Winneshiek Community School District": 15, + "Howard County Public Schools": 15, + "Howard County R-II School District": 5, + "Howard Lake-Waverly-Winsted": 12, + "Howard Lake-Waverly-Winsted Public School District": 3, + "Howard School District 48-3": 15, + "Howards Grove School District": 15, + "Howe Independent School District": 15, + "Howe Public Schools": 15, + "Howell Mountain Elementary School District": 15, + "Howell Public Schools": 15, + "Howell Township School District": 15, + "Howell Valley R-I School District": 15, + "Howells-Dodge Consolidated Schools": 5, + "Howells-Dodge Public Schools": 5, + "Howells Public Schools": 3, + "Howland Local School District": 15, + "Hoxie Community Schools Unified School District 412": 15, + "Hoxie School District": 15, + "Hoyleton Consolidated School District 29": 7, + "Hubbard-Radcliffe Community School District": 15, + "Hubbard Exempted Village School District": 15, + "Hubbard Independent School District (Bowie County)": 15, + "Hubbard Independent School District (Hill, Limestone, and Navarro Counties)": 15, + "Hubbardton School District": 4, + "Huber Heights City School District": 15, + "Huckabay Independent School District": 15, + "Hudson Area Schools": 15, + "Hudson City School District": 30, + "Hudson Community School District": 15, + "Hudson Falls Central School District": 15, + "Hudson Independent School District": 15, + "Hudson R-IX School District": 15, + "Hudson School District": 45, + "Hudsonville Public School District": 15, + "Hueneme Elementary School District": 15, + "Huerfano School District RE-1": 15, + "Huffman Independent School District": 15, + "Hughes-Elizabeth Lakes Union Elementary School District": 15, + "Hughes School District": 7, + "Hughes Springs Independent School District": 15, + "Hughson Unified School District": 15, + "Hughson Unified School District (9-12)": 6, + "Hugo Public Schools": 15, + "Hugoton Public Schools Unified School District 210": 15, + "Hulbert Public Schools": 15, + "Hull-Daisetta Independent School District": 15, + "Hull School District": 15, + "Humansville R-IV School District": 15, + "Humble Independent School District": 15, + "Humboldt City School District": 15, + "Humboldt Community School District": 15, + "Humboldt County School District": 15, + "Humboldt Table Rock Steinauer Public Schools": 15, + "Humboldt Unified District": 15, + "Humboldt Unified School District 258": 15, + "Hume R-VIII School District": 15, + "Humphrey Public Schools": 15, + "Humphreys County School District": 30, + "Hunt Independent School District": 15, + "Hunter-Tannersville Central School District": 15, + "Hunterdon Central Regional School District": 15, + "Huntingdon Area School District": 15, + "Huntingdon Special School District": 15, + "Huntington Beach City Elementary School District": 15, + "Huntington Beach Union High School District": 15, + "Huntington County Community School Corporation": 15, + "Huntington Independent School District": 15, + "Huntington Local School District": 15, + "Huntington School District": 7, + "Huntington School District 16J": 15, + "Huntington Union Free School District": 15, + "Huntley Consolidated School District 158": 15, + "Huntley Project K-12 Schools": 15, + "Huntsville City School District": 15, + "Huntsville Independent School District": 15, + "Huntsville School District": 15, + "Hurley R-I School District": 15, + "Hurley School District": 15, + "Hurley School District 60-2": 5, + "Huron City School District": 15, + "Huron School District": 15, + "Huron School District 02-2": 15, + "Huron Valley Schools": 15, + "Hurst-Euless-Bedford Independent School District": 15, + "Hustisford School District": 15, + "Hutchinson Public School District": 15, + "Hutchinson Public Schools Unified School District 308": 15, + "Hutsonville Community Unit School District 1": 15, + "Hutto Independent School District": 15, + "Hyannis Area Schools": 14, + "Hydaburg City School District": 15, + "Hyde County Schools": 15, + "Hyde Park Central School District": 15, + "Hyde Park School District": 7, + "Hyde School District 34-1": 1, + "Hyder Elementary District": 15, + "Hydesville Elementary School District": 15, + "Hydro-Eakly Public Schools": 15, + "Hysham K-12 Schools": 15, + "Iberia Parish School District": 15, + "Iberia R-V School District": 15, + "Iberville Parish School District": 15, + "Ida Public School District": 15, + "Idabel Public Schools": 15, + "Idaho Falls School District 91": 15, + "Idalia School District RJ-3": 15, + "Idalou Independent School District": 15, + "Iditarod Area School District": 15, + "Ignacio School District 11-JT": 15, + "Igo, Ono, Platina Union Elementary School District": 15, + "IKM-Manning Community School District": 12, + "IKM Community School District": 3, + "Ilion Central School District": 5, + "Illini Bluffs Community Unit School District 327": 15, + "Illini Central Community Unit School District 189": 15, + "Illini West High School District 307": 15, + "Illinois Valley Central Unit School District 321": 15, + "Imbler School District 11": 15, + "Imlay City Community Schools": 15, + "Imperial Unified School District": 15, + "Ina Community Consolidated School District 8": 7, + "Inchelium School District": 15, + "Independence 30 School District": 10, + "Independence Community School District": 15, + "Independence Local School District": 15, + "Independence Public Schools": 5, + "Independence School District": 15, + "Independence Unified School District 446": 15, + "Independent Elementary School District": 15, + "Index School District": 15, + "Indiahoma Public Schools": 15, + "Indian Creek Community Unit District 425": 15, + "Indian Creek Local School District": 15, + "Indian Diggings Elementary School District": 15, + "Indian Hill Exempted Village School District": 15, + "Indian Island": 14, + "Indian Lake Central School District": 15, + "Indian Lake Local School District": 15, + "Indian Oasis-Baboquivari Unified District": 15, + "Indian Prairie Community Unit School District 204": 15, + "Indian River Central School District": 15, + "Indian River County School District": 15, + "Indian River School District": 15, + "Indian Springs Elementary School District": 15, + "Indian Springs School District 109": 15, + "Indian Township": 14, + "Indian Valley Local School District": 15, + "Indiana Area School District": 15, + "Indianapolis Public Schools": 15, + "Indianola Community School District": 15, + "Indianola Public Schools": 15, + "Indianola School District": 7, + "Industrial Independent School District": 15, + "Ingalls Unified School District 477": 15, + "Ingleside Independent School District": 15, + "Inglewood Unified School District": 15, + "Ingram Independent School District": 15, + "Inkster City School District": 7, + "Inland Lakes Schools": 15, + "Inlet Common School District": 15, + "Inman Unified School District 448": 15, + "Inola Public Schools": 15, + "Inter-Lakes School District": 15, + "Interboro School District": 15, + "Interlaken Borough School District": 15, + "International Falls Public School District": 3, + "International Falls School District": 12, + "Interstate 35 Community School District": 15, + "Inver Grove Heights Schools": 15, + "Iola-Scandinavia School District": 15, + "Iola Independent School District": 15, + "Iola Unified School District 257": 15, + "Ione School District 2": 15, + "Ionia Public Schools": 15, + "Ionia Township School District 2": 15, + "Iowa-Grant School District": 15, + "Iowa City Community School District": 15, + "Iowa Falls Community School District": 15, + "Iowa Park Consolidated Independent School District": 15, + "Iowa Valley Community School District": 15, + "Ipswich School District": 15, + "Ipswich School District 22-6": 15, + "Ira Independent School District": 15, + "Ira School District": 9, + "Iraan-Sheffield Collegiate Independent School District": 1, + "Iraan-Sheffield Independent School District": 14, + "Irasburg School District": 7, + "Iredell-Statesville Schools": 15, + "Iredell Independent School District": 15, + "Irene-Wakonda School District 13-3": 15, + "Irion County Independent School District": 15, + "Iron County C-4 School District": 15, + "Iron Mountain Public Schools": 15, + "Iron School District": 15, + "Ironton City School District": 15, + "Ironwood Area Schools": 15, + "Iroquois Central School District": 15, + "Iroquois County Community Unit School District 9": 15, + "Iroquois School District": 15, + "Iroquois School District 02-3": 15, + "Iroquois West Community Unit School District 10": 15, + "Irvine Unified School District": 15, + "Irving Independent School District": 15, + "Irvington County Community Unit School District 11": 15, + "Irvington Township School District": 15, + "Irvington Union Free School District": 15, + "Irwin County School District": 15, + "Isaac Elementary District": 15, + "Isabel School District 20-2": 1, + "Ishpeming Public School District": 15, + "Island Heights Borough School District": 15, + "Island Park Union Free School District": 15, + "Island Trees Union Free School District": 15, + "Island Union Elementary School District": 15, + "Isle au Haut": 14, + "Isle au Haut School District": 1, + "Isle La Motte School District": 7, + "Isle of Wight County Public Schools": 15, + "Isle Public School District": 15, + "Islesboro": 14, + "Islesboro School District": 1, + "Islip Union Free School District": 15, + "Issaquah School District": 15, + "Italy Independent School District": 15, + "Itasca Independent School District": 15, + "Itasca School District 10": 15, + "Itawamba County School District": 15, + "Ithaca City School District": 15, + "Ithaca Public Schools": 15, + "Ithaca School District": 15, + "Iuka Community Consolidated School District 7": 15, + "Ivanhoe Public School District": 15, + "Izard Cty Consolidated Schools": 15, + "J. O. Combs Unified School District": 15, + "J. Sterling Morton High School District 201": 15, + "Jac-Cen-Del Community School Corporation": 15, + "Jacksboro Independent School District": 15, + "Jackson-Madison Consolidated School District": 7, + "Jackson-Madison County School System": 8, + "Jackson-Milton Local School District": 15, + "Jackson Center Local School District": 15, + "Jackson City School District": 15, + "Jackson County Central School District": 15, + "Jackson County School District": 120, + "Jackson County Schools": 15, + "Jackson Elementary School District": 15, + "Jackson Independent School District": 15, + "Jackson Local School District": 15, + "Jackson Parish School District": 15, + "Jackson Public School District": 15, + "Jackson Public Schools": 15, + "Jackson R-II School District": 15, + "Jackson School District": 15, + "Jackson Township School District": 15, + "Jacksonville City School District": 15, + "Jacksonville Independent School District": 15, + "Jacksonville North Pulaski School District": 6, + "Jacksonville School District 117": 15, + "Jacoby Creek Elementary School District": 15, + "Jaffrey-Rindge Cooperative School District": 15, + "Jal Public Schools": 15, + "Jamaica Community Unit School District 12": 7, + "Jamaica School District": 7, + "James A. Garfield Local School District": 15, + "James City County Public Schools": 15, + "Jamesburg Borough School District": 15, + "Jamestown Area School District": 15, + "Jamestown C-1 School District": 10, + "Jamestown City School District": 15, + "Jamestown Elementary School District": 15, + "Jamestown Public School District 1": 15, + "Jamestown School District": 15, + "Jamesville-DeWitt Central School District": 15, + "Jamul-Dulzura Union Elementary School District": 15, + "Janesville-Waldorf-Pemberton": 12, + "Janesville-Waldorf-Pemberton Public School District": 3, + "Janesville Consolidated School District": 15, + "Janesville School District": 15, + "Janesville Union Elementary School District": 15, + "Jarrell Independent School District": 15, + "Jasper-Troupsburg Central School District": 15, + "Jasper City School District": 15, + "Jasper Community Consolidated School District 17": 15, + "Jasper County Community Unit School District 1": 15, + "Jasper County R-V School District": 15, + "Jasper County School District": 30, + "Jasper Independent School District": 15, + "Jasper School District": 15, + "Jay": 2, + "Jay Public Schools": 15, + "Jay School Corporation": 15, + "Jay School District": 7, + "Jay/Westfield Joint Elementary School District": 3, + "Jayhawk Unified School District 346": 15, + "Jayton-Girard Independent School District": 15, + "Jeannette City School District": 15, + "Jeff Davis County School District": 15, + "Jefferson": 14, + "Jefferson-Morgan School District": 15, + "Jefferson-Scranton Community School District": 7, + "Jefferson Area Local School District": 15, + "Jefferson C-123 School District": 15, + "Jefferson Central School District": 15, + "Jefferson City Public Schools": 15, + "Jefferson City School District": 15, + "Jefferson County Joint School District 251": 15, + "Jefferson County North Unified School District 339": 15, + "Jefferson County R-VII School District": 15, + "Jefferson County School District": 105, + "Jefferson County School District 509J": 15, + "Jefferson County School District in Anchorage ISD": 10, + "Jefferson County School District R-1": 15, + "Jefferson Davis County School District": 15, + "Jefferson Davis Parish School District": 15, + "Jefferson Elementary School District (San Benito County)": 15, + "Jefferson Elementary School District (San Joaquin County)": 15, + "Jefferson Elementary School District (San Mateo County)": 15, + "Jefferson High School District": 15, + "Jefferson Independent School District": 15, + "Jefferson Local School District": 15, + "Jefferson Parish School District": 15, + "Jefferson School District": 16, + "Jefferson School District 14J": 15, + "Jefferson Schools": 15, + "Jefferson Township Local School District": 15, + "Jefferson Township School District": 15, + "Jefferson Union High School District": 15, + "Jefferson West Unified School District 340": 15, + "Jemez Mountain Public Schools": 15, + "Jemez Valley Public Schools": 15, + "Jenison Public Schools": 15, + "Jenkins County School District": 15, + "Jenkins Independent School District": 15, + "Jenkintown School District": 15, + "Jenks Public Schools": 15, + "Jennings County Schools": 15, + "Jennings Local School District": 15, + "Jennings Public School": 15, + "Jennings School District": 15, + "Jericho School District": 7, + "Jericho Union Free School District": 15, + "Jerome Joint School District 261": 15, + "Jersey City School District": 15, + "Jersey Community Unit School District 100": 15, + "Jersey Shore Area School District": 15, + "Jessamine County School District": 15, + "Jessieville School District": 15, + "Jesup Community School District": 15, + "Jetmore Unified School District 227": 14, + "Jewell School District 8": 15, + "Jewell Unified School District 279": 1, + "Jim Hogg County Independent School District": 15, + "Jim Ned Consolidated Independent School District": 15, + "Jim Thorpe Area School District": 15, + "Joaquin Independent School District": 15, + "Johannesburg-Lewiston Area School District": 15, + "John Day School District 3": 15, + "John Glenn School Corporation": 15, + "John Stark Regional School District": 15, + "John Swett Unified School District": 15, + "Johnsburg Central School District": 15, + "Johnsburg Community Unit School District 12": 15, + "Johnson-Brock Public Schools": 15, + "Johnson City Central School District": 15, + "Johnson City Independent School District": 15, + "Johnson City School District": 15, + "Johnson County Central Public Schools": 14, + "Johnson County R-VII School District": 15, + "Johnson County School District": 46, + "Johnson County School District 1": 15, + "Johnson Creek School District": 15, + "Johnson School District": 7, + "Johnsonburg Area School District": 15, + "Johnston City Community Unit School District 1": 15, + "Johnston Community School District": 15, + "Johnston County Schools": 15, + "Johnston School District": 15, + "Johnstonville Elementary School District": 15, + "Johnstown-Milliken School District RE-5J": 15, + "Johnstown-Monroe Local School District": 15, + "Johnstown City School District": 15, + "Joint Base McGuire-Dix-Lakehurst": 8, + "Joliet Elementary School District": 15, + "Joliet High School District": 15, + "Joliet Public School District 86": 15, + "Joliet Township High School District 204": 15, + "Jonathan Alder Local School District": 15, + "Jones County School District": 30, + "Jones County School District 37-3": 15, + "Jones County Schools": 15, + "Jones Public Schools": 15, + "Jonesboro": 14, + "Jonesboro Community Consolidated School District 43": 15, + "Jonesboro Independent School District": 15, + "Jonesboro Public Schools": 15, + "Jonesboro School District": 1, + "Jonesport": 14, + "Jonesport School District": 1, + "Jonesville Community Schools": 15, + "Joplin R-VIII School District": 5, + "Joplin School District": 10, + "Joppa-Maple Grove Unit District 38": 15, + "Jordan-Elbridge Central School District": 15, + "Jordan Elementary School District": 15, + "Jordan Public School District": 15, + "Jordan School District": 15, + "Jordan Valley School District 3": 15, + "Joseph Badger Local School District": 15, + "Joseph City Unified District": 15, + "Joseph School District 6": 15, + "Joshua Independent School District": 15, + "Jourdanton Independent School District": 15, + "Juab School District": 15, + "Juda School District": 15, + "Judith Gap Elementary School District": 15, + "Judith Gap High School District": 15, + "Judson Independent School District": 15, + "Julesburg School District RE-1": 15, + "Julian Union Elementary School District": 15, + "Julian Union High School District": 15, + "Junction City Elementary School District": 15, + "Junction City School District": 15, + "Junction City School District 69": 15, + "Junction Elementary School District (Shasta County)": 15, + "Junction Elementary School District (Siskiyou County)": 15, + "Junction Hill C-12 School District": 15, + "Junction Independent School District": 15, + "Juneau Borough School District": 15, + "Juniata County School District": 15, + "Juniata Valley School District": 15, + "Juntura School District 12": 15, + "Jurupa Unified School District": 15, + "Justice Public School": 15, + "Justus-Tiawah Public School": 15, + "Kadoka School District 35-2": 15, + "Kahlotus School District": 15, + "Kake City School District": 15, + "Kalama School District": 15, + "Kalamazoo Public School District": 15, + "Kaleva Norman Dickson School District": 15, + "Kalida Local School District": 15, + "Kalispell Elementary School District": 15, + "Kalkaska Public Schools": 15, + "Kamiah Joint School District 304": 15, + "Kanawha County School District": 15, + "Kane Area School District": 15, + "Kane School District": 15, + "Kaneland Community Unit School District 302": 15, + "Kankakee School District 111": 15, + "Kankakee Valley School Corporation": 15, + "Kannapolis City Schools": 15, + "Kansas City 33 School District": 10, + "Kansas City School District": 5, + "Kansas City Unified School District 500": 15, + "Kansas Community Unit School District 3": 15, + "Kansas Public Schools": 15, + "Karnack Independent School District": 15, + "Karnes City Independent School District": 15, + "Karns City Area School District": 15, + "Karval School District RE-23": 15, + "Kashia Elementary School District": 15, + "Kashunamiut School District": 15, + "Kasson-Mantorville School District": 15, + "Katonah-Lewisboro Union Free School District": 15, + "Katy Independent School District": 15, + "Kaufman Independent School District": 15, + "Kaukauna Area School District": 15, + "Kaw City Public Schools": 1, + "Kaw Valley Unified School District 321": 15, + "Kayenta Unified District": 15, + "Keansburg Borough School District": 15, + "Kearney Public Schools": 15, + "Kearney R-I School District": 15, + "Kearny Town School District": 15, + "Kearsarge Regional School District": 15, + "Kearsley Community Schools": 15, + "Keene Central School District": 15, + "Keene Independent School District": 15, + "Keene School District": 15, + "Keenesburg School District RE-3J": 10, + "Keeneyville School District 20": 15, + "Kell Consolidated School District 2": 15, + "Keller Independent School District": 15, + "Keller School District": 15, + "Kelleys Island Local School District": 15, + "Kelliher Public School District": 15, + "Kellogg Joint School District 391": 15, + "Kelloggsville Public Schools": 15, + "Kellyville Public Schools": 15, + "Kelseyville Unified School District": 15, + "Kelso C-7 School District": 15, + "Kelso School District": 15, + "Kelton Independent School District": 15, + "Kemp Independent School District": 15, + "Kemper County School District": 15, + "Kenai Peninsula Borough School District": 15, + "Kendall Central School District": 15, + "Kendleton Independent School District": 3, + "Kendrick Joint School District 283": 15, + "Kenedy County-wide Common School District": 3, + "Kenedy County-Wide Common School District": 12, + "Kenedy Independent School District": 15, + "Kenesaw Public Schools": 15, + "Kenilworth Borough School District": 15, + "Kenilworth School District 38": 15, + "Kenmare Public School District 28": 15, + "Kenmore-Tonawanda Union Free School District": 15, + "Kennard Independent School District": 15, + "Kennebec Unorganized Territory": 15, + "Kennedale Independent School District": 15, + "Kennett 39 School District": 15, + "Kennett Consolidated School District": 15, + "Kennewick School District": 15, + "Kenosha School District": 15, + "Kenowa Hills Public Schools": 15, + "Kensal Public School District 19": 15, + "Kensington School District": 15, + "Kenston Local School District": 15, + "Kent City Community Schools": 15, + "Kent City School District": 15, + "Kent County Public Schools": 15, + "Kent School District": 30, + "Kentfield Elementary School District": 15, + "Kenton City School District": 15, + "Kenton County School District": 15, + "Kentwood Public Schools": 15, + "Kenwood Elementary School District": 15, + "Kenwood Public School": 15, + "Kenyon-Wanamingo School District": 15, + "Keokuk Community School District": 15, + "Keota Community School District": 15, + "Keota Public Schools": 15, + "Keppel Union Elementary School District": 15, + "Kerens Independent School District": 15, + "Kerkhoven-Murdock-Sunburg": 12, + "Kerkhoven-Murdock-Sunburg Public School District": 3, + "Kerman Unified School District": 15, + "Kermit Independent School District": 15, + "Kern High School District": 8, + "Kern Union High School District": 7, + "Kernville Union Elementary School District": 15, + "Kerrville Independent School District": 15, + "Kershaw County School District": 15, + "Keshequa Central School District": 5, + "Kester Elementary School District": 15, + "Ketchikan Gateway Borough School District": 15, + "Ketchum Public Schools": 15, + "Kettering City School District": 15, + "Kettle Falls School District": 15, + "Kettle Moraine School District": 15, + "Kewanee Community Unit School District 229": 15, + "Kewaskum School District": 15, + "Kewaunee School District": 15, + "Keya Paha County Schools": 15, + "Keyes Public Schools": 12, + "Keyes Union Elementary School District": 15, + "Keyport Borough School District": 15, + "Keys Public Schools": 15, + "Keystone Central School District": 15, + "Keystone Local School District": 15, + "Keystone Oaks School District": 15, + "Keystone Public School": 15, + "Keystone School District": 15, + "Keytesville R-III School District": 15, + "Kickapoo Area School District": 15, + "Kidder County School District": 8, + "Kidder County School District 1": 6, + "Kiefer Public Schools": 15, + "Kiel Area School District": 15, + "Kila Elementary School District": 15, + "Kildare Public School": 15, + "Kildeer Countryside Community Consolidated School District 96": 15, + "Kilgore Independent School District": 15, + "Killdeer Public School District 16": 15, + "Killeen Independent School District": 15, + "Killingly School District": 15, + "Killington School District": 2, + "Kim Reorganized School District 88": 15, + "Kimball Public School District": 15, + "Kimball Public Schools": 15, + "Kimball School District 07-2": 15, + "Kimberly Area School District": 15, + "Kimberly School District 414": 15, + "Kinderhook (Ichabod Crane) Central School District": 2, + "Kinderhook Central School District": 3, + "Kinderhook Central School District (Ichabod Crane)": 10, + "Kindred Public School District 2": 15, + "King and Queen County Public Schools": 15, + "King City Joint Union High School District": 9, + "King City R-I School District": 15, + "King City Union Elementary School District": 15, + "King Colony Elementary School District": 15, + "King George County Public Schools": 15, + "King Philip School District": 15, + "King William County Public Schools": 15, + "Kingdom East Supervisory District": 3, + "Kingdom East Unified Union School District": 2, + "Kingfisher Public Schools": 15, + "Kingman-Norwich Unified School District 331": 15, + "Kingman Unified School District": 15, + "Kings Canyon Joint Unified School District": 15, + "Kings Consolidated School District 144": 15, + "Kings Local School District": 15, + "Kings Park Central School District": 15, + "Kings River-Hardwick Union Elementary School District": 15, + "Kings River Union Elementary School District": 15, + "Kingsburg Elementary Charter School District": 6, + "Kingsburg Joint Union Elementary School District": 9, + "Kingsburg Joint Union High School District": 15, + "Kingsbury Plantation": 14, + "Kingsbury Plantation School District": 1, + "Kingsland Public School District": 15, + "Kingsley-Pierson Community School District": 15, + "Kingsley Area Schools": 15, + "Kingsport City School District": 15, + "Kingston 42 School District": 15, + "Kingston City School District": 15, + "Kingston Community School District": 15, + "Kingston K-14 School District": 15, + "Kingston Public Schools": 15, + "Kingston School District": 15, + "Kingsville Independent School District": 15, + "Kingsville R-I School District": 15, + "Kingsway Regional School District": 15, + "Kingwood Township School District": 15, + "Kinnelon Borough School District": 15, + "Kinnikinnick Community Consolidated School District 131": 15, + "Kinsey Elementary School District": 15, + "Kinsley-Offerle Unified School District 347": 15, + "Kinta Public Schools": 15, + "Kiona-Benton City School District": 4, + "Kiona-Benton School District": 11, + "Kiowa County School District No. RE-1": 1, + "Kiowa County Unified School District 422": 1, + "Kiowa Public Schools": 15, + "Kiowa School District C-2": 15, + "Kirby School District": 22, + "Kirby School District 140": 15, + "Kirbyville Consolidated Independent School District": 14, + "Kirbyville Independent School District": 1, + "Kirbyville R-VI School District": 15, + "Kircher Elementary School District": 15, + "Kirkland Elementary District": 15, + "Kirksville R-III School District": 15, + "Kirkwood Elementary School District": 15, + "Kirkwood R-VII School District": 10, + "Kirkwood School District": 5, + "Kirtland Local School District": 15, + "Kiryas Joel Village Union Free School District": 15, + "Kiski Area School District": 15, + "Kismet-Plains Unified School District 483": 15, + "Kit Carson School District R-1": 15, + "Kit Carson Union Elementary School District": 15, + "Kittatinny Regional School District": 15, + "Kittery": 14, + "Kittery School District": 1, + "Kittitas School District": 15, + "Kittson Central School District": 15, + "Klamath-Trinity Joint Unified School District": 15, + "Klamath County Overlap Area": 1, + "Klamath County School District": 15, + "Klamath Falls City Overlap Area": 1, + "Klamath Falls City Schools": 15, + "Klamath River Union Elementary School District": 15, + "Klawock City School District": 15, + "Klein Independent School District": 15, + "Klickitat School District": 15, + "Klondike Independent School District": 15, + "Klondyke Elementary District": 15, + "Knappa School District 4": 15, + "Kneeland Elementary School District": 15, + "Knees Elementary School District": 15, + "Knights Ferry Elementary School District": 15, + "Knightsen Elementary School District": 15, + "Knippa Independent School District": 15, + "Knob Noster R-VIII School District": 15, + "Knott County School District": 15, + "Knowlton Township School District": 15, + "Knox City-O'Brien Consolidated Independent School District": 10, + "Knox City-O'Brien Independent School District": 5, + "Knox Community School Corporation": 15, + "Knox County R-I School District": 15, + "Knox County School District": 30, + "Knox Unorganized Territory": 15, + "Knoxville Community School District": 15, + "Knoxville Community Unit School District 202": 15, + "Kodiak Island Borough School District": 15, + "Kohler School District": 15, + "Kokomo-Center Township Consolidated School Corporation": 15, + "Komarek School District 94": 15, + "Konawa Public Schools": 15, + "Konocti Unified School District": 15, + "Kootenai Joint School District 274": 15, + "Kopperl Independent School District": 15, + "Kosciusko School District": 15, + "Kountze Independent School District": 15, + "Krebs Public School": 15, + "Kremlin-Hillsdale Schools": 15, + "Kress Independent School District": 15, + "Krum Independent School District": 15, + "Kulm Public School District 7": 15, + "Kuna Joint School District 3": 15, + "Kuspuk School District": 15, + "Kutztown Area School District": 15, + "Kyrene Elementary District": 15, + "L'Anse Area Schools": 15, + "L'Anse Creuse Public Schools": 15, + "La Ca±ada Unified School District": 1, + "La Cañada Unified School District": 2, + "La Cañada Unified School District": 12, + "La Center School District": 15, + "La Conner School District": 15, + "La Crescent-Hokah School District": 15, + "La Crosse School District": 15, + "La Farge School District": 15, + "La Fargeville Central School District": 10, + "La Feria Independent School District": 15, + "La Gloria Independent School District": 15, + "La Grande School District 1": 15, + "La Grange Elementary School District": 7, + "La Grange Independent School District": 15, + "La Habra City Elementary School District": 15, + "La Harpe Community School District 347": 15, + "La Honda-Pescadero Unified School District": 15, + "La Joya Independent School District": 15, + "La Marque Independent School District": 9, + "La Mesa-Spring Valley School District": 15, + "La Moille Community Unit School District 303": 15, + "La Monte R-IV School District": 15, + "La Motte Elementary School District": 9, + "La Plata R-II School District": 15, + "La Porte Community School Corporation": 15, + "La Porte Independent School District": 15, + "La Pryor Independent School District": 15, + "La Salle Parish School District": 15, + "La Vega Independent School District": 15, + "La Vernia Independent School District": 15, + "La Veta School District RE-2": 15, + "La Villa Independent School District": 15, + "Labette County Unified School District 506": 15, + "LaBrae Local School District": 15, + "Lac du Flambeau No. 1 School District": 15, + "Lac qui Parle Valley School District": 1, + "Lac Qui Parle Valley School District": 14, + "Lacey Township School District": 15, + "Lackawanna City School District": 15, + "Lackawanna Trail School District": 15, + "Lackland Independent School District": 15, + "Laclede County C-5 School District": 15, + "Laclede County R-I School District": 15, + "Laconia School District": 15, + "LaCrosse School District": 15, + "LaCrosse Unified School District 395": 15, + "Ladd Community Consolidated School District 94": 15, + "Ladue School District": 15, + "Ladysmith-Hawkins School District": 5, + "Ladysmith School District": 10, + "LaFargeville Central School District": 5, + "LaFayette Central School District": 15, + "Lafayette County C-1 School District": 15, + "Lafayette County School District": 45, + "Lafayette Elementary School District": 15, + "Lafayette Parish School District": 15, + "Lafayette Regional School District": 15, + "Lafayette School Corporation": 15, + "Lafayette Township School District": 15, + "Lafourche Parish School District": 15, + "Lago Vista Independent School District": 15, + "LaGrange Highlands School District 106": 15, + "LaGrange School District 102": 15, + "LaGrange School District 105": 15, + "Laguna Beach Unified School District": 15, + "Laguna Joint Elementary School District": 15, + "Laguna Salada Union Elementary School District": 3, + "Lagunita Elementary School District": 15, + "Lagunitas Elementary School District": 15, + "Laingsburg Community School District": 15, + "Lake-Lehman School District": 15, + "Lake and Peninsula Borough School District": 8, + "Lake And Peninsula School District": 7, + "Lake Arthur Municipal Schools": 15, + "Lake Benton Public School District": 15, + "Lake Bluff Elementary School District 65": 15, + "Lake Central School Corporation": 15, + "Lake Central School District 39-2": 1, + "Lake Chelan School District": 15, + "Lake City Area School District": 15, + "Lake City Public School District": 15, + "Lake Como Borough School District": 15, + "Lake Country School District": 15, + "Lake County School District": 30, + "Lake County School District R-1": 15, + "Lake Crystal-Wellcome Memorial": 12, + "Lake Crystal-Wellcome Memorial School District": 3, + "Lake Dallas Independent School District": 15, + "Lake Elementary School District": 15, + "Lake Elsinore Unified School District": 15, + "Lake Fenton Community Schools": 15, + "Lake Forest Community High School District 115": 15, + "Lake Forest School District": 15, + "Lake Forest School District 67": 15, + "Lake Geneva-Genoa City Union High School District": 15, + "Lake Geneva Joint No. 1 School District": 15, + "Lake George Central School District": 15, + "Lake Hamilton School District": 15, + "Lake Havasu Unified District": 15, + "Lake Holcombe School District": 15, + "Lake Linden-Hubbell School District": 15, + "Lake Local School District (Ottawa and Wood Counties)": 15, + "Lake Local School District (Portage and Stark Counties)": 15, + "Lake Mills Area School District": 15, + "Lake Mills Community School District": 15, + "Lake of the Woods School District": 15, + "Lake Orion Community Schools": 15, + "Lake Oswego School District 7J": 15, + "Lake Park Audubon School District": 15, + "Lake Park Community High School District 108": 15, + "Lake Pend Oreille School District 84": 15, + "Lake Placid Central School District": 15, + "Lake Pleasant Central School District": 15, + "Lake Preston School District 38-3": 15, + "Lake Quinault School District": 14, + "Lake Region UHSD #24": 1, + "Lake Region UHSD 24": 1, + "Lake Region Union Elementary Middle School District": 2, + "Lake Region Union High School District 24": 7, + "Lake Ridge Schools": 15, + "Lake Shore Public Schools": 15, + "Lake Station Community Schools": 15, + "Lake Stevens School District": 15, + "Lake Superior Public School District": 15, + "Lake Tahoe Unified School District": 15, + "Lake Travis Independent School District": 15, + "Lake View Plantation": 14, + "Lake View Plantation School District": 1, + "Lake Villa Community Consolidated School District 41": 15, + "Lake Washington School District": 15, + "Lake Worth Independent School District": 15, + "Lake Zurich Community Unit School District 95": 15, + "Lakehurst Borough School District": 15, + "Lakeland Central School District": 15, + "Lakeland Joint School District 272": 15, + "Lakeland R-III School District": 15, + "Lakeland Regional School District": 15, + "Lakeland School Corporation": 15, + "Lakeland School District": 15, + "Lakeland School System District": 8, + "Lakeland Union High School District": 15, + "Lakeport Unified School District": 15, + "Lakeshore School District": 15, + "Lakeside Joint Elementary School District": 15, + "Lakeside School District (Ashley and Chicot Counties)": 15, + "Lakeside School District (Garland County)": 15, + "Lakeside Union Elementary School District (Kern County)": 7, + "Lakeside Union Elementary School District (Kings and Tulare Counties)": 1, + "Lakeside Union Elementary School District (Kings County)": 14, + "Lakeside Union Elementary School District (San Diego County)": 15, + "Lakeside Union School District": 8, + "Lakeview Community Schools": 30, + "Lakeview Local School District": 15, + "Lakeview Public Schools": 15, + "Lakeview School District": 45, + "Lakeview School District 7": 15, + "Lakeview Union School District 43": 7, + "Lakeville": 14, + "Lakeville Community Schools": 15, + "Lakeville Public School District": 15, + "Lakeville School District": 4, + "Lakewood City School District": 15, + "Lakewood Local School District": 15, + "Lakewood Public Schools": 15, + "Lakewood School District": 15, + "Lakewood Township School District": 15, + "Lakin Unified School District 215": 15, + "Lakota Local School District (Butler County)": 15, + "Lakota Local School District (Sandusky, Seneca, and Wood Counties)": 15, + "Lakota Public School District 66": 15, + "Lamar Consolidated Independent School District": 15, + "Lamar County School District": 45, + "Lamar R-I School District": 15, + "Lamar School District": 15, + "Lamar School District RE-2": 15, + "Lambert Elementary School District": 15, + "Lambert High School District": 15, + "Lambertville City School District": 7, + "Lame Deer Elementary School District": 15, + "Lame Deer High School District": 15, + "Lamesa Independent School District": 15, + "Lammersville Elementary School District": 3, + "Lammersville Joint Unified School District": 12, + "Lammersville Joint Unified School District (9-12)": 12, + "Lamoille North Modified USD #058A": 1, + "Lamoille North Modified USD #058B": 1, + "Lamoille North Modified USD 058A": 1, + "Lamoille North Modified USD 058B": 1, + "Lamoille North Supervisory Union": 6, + "Lamoille South Supervisory Union": 6, + "Lamoille South Unified Union School District #90": 1, + "Lamoille South Unified Union School District 90": 1, + "Lamoille Union High School District 18": 7, + "Lamoine Public Schools": 8, + "Lamoine School District": 1, + "Lamoni Community School District": 15, + "Lamont Elementary School District": 15, + "Lamont School District": 15, + "LaMotte Elementary School District": 6, + "LaMoure Public School District 8": 15, + "Lampasas Independent School District": 15, + "Lampeter-Strasburg School District": 15, + "Lamphere Public Schools": 15, + "Lancaster Central School District": 15, + "Lancaster City School District": 15, + "Lancaster Community School District": 15, + "Lancaster County Public Schools": 15, + "Lancaster County School District": 15, + "Lancaster Elementary School District": 15, + "Lancaster Independent School District": 15, + "Lancaster Public School District": 15, + "Lancaster School District": 15, + "Landaff School District": 15, + "Lander County School District": 15, + "Landgrove School District": 2, + "Landusky Elementary School District": 3, + "Lane Public School": 15, + "Lanesboro Public School District": 15, + "Lanesborough School District": 10, + "Lanesville Community School Corporation": 15, + "Lanett City School District": 15, + "Laneville Independent School District": 15, + "Langdon-Milton-Osnabrock School District 23": 15, + "Langford School District 45-2": 3, + "Langford School District 45-5": 12, + "Lanier County School District": 15, + "Lansing Central School District": 15, + "Lansing Public School District": 15, + "Lansing School District 158": 15, + "Lansing Unified School District 469": 15, + "Lansingburgh Central School District": 15, + "Laona School District": 15, + "Lapeer Community Schools": 15, + "Laporte Public School District": 15, + "LaPoyner Independent School District": 6, + "Lapoynor Independent School District": 9, + "Lapwai School District 341": 15, + "Laquey R-V School District": 15, + "Laramie County School District 1": 15, + "Laramie County School District 2": 15, + "Laraway Community Consolidated School District 70C": 15, + "Laredo Independent School District": 15, + "Laredo R-VII School District": 15, + "Larimore Public School District 44": 15, + "Larkspur Elementary School District": 15, + "Larue County School District": 15, + "Las Animas School District RE-1": 15, + "Las Cruces Public Schools": 15, + "Las Lomitas Elementary School District": 15, + "Las Vegas City Public Schools": 15, + "Las Virgenes Unified School District": 15, + "LaSalle-Peru Township High School District 120": 15, + "LaSalle Elementary School District 122": 15, + "Lasara Independent School District": 15, + "Lassen Union High School District": 15, + "Lassen View Union Elementary School District": 15, + "Latexo Independent School District": 15, + "Lathrop R-II School District": 15, + "Laton Joint Unified School District": 15, + "Latrobe Elementary School District": 15, + "Latta Public Schools": 15, + "Lauderdale County School District": 45, + "Laurel-Concord-Coleridge School": 5, + "Laurel-Concord Public Schools": 10, + "Laurel County School District": 15, + "Laurel County School District for East Bernstadt ISD": 15, + "Laurel Elementary School District": 15, + "Laurel High School District": 15, + "Laurel Highlands School District": 15, + "Laurel School District": 45, + "Laurel Springs Borough School District": 15, + "Laurens-Marathon Community School District": 15, + "Laurens Central School District": 15, + "Laurens County School District": 15, + "Laurens School District 55": 15, + "Laurens School District 56": 15, + "Lavaca Public Schools": 15, + "Lavallette Borough School District": 15, + "Laveen Elementary District": 15, + "Laverne Public Schools": 15, + "Lavina K-12 Schools": 15, + "Lawndale Elementary School District": 15, + "Lawnside Borough School District": 15, + "Lawrence County Community Unit District 20": 15, + "Lawrence County School District": 72, + "Lawrence Public School District": 15, + "Lawrence School District": 15, + "Lawrence Township Metropolitan School District": 15, + "Lawrence Township School District": 6, + "Lawrence Township School District (Cumberland County)": 12, + "Lawrence Township School District (Mercer County)": 12, + "Lawrence Unified School District 497": 15, + "Lawrence Union Free School District": 15, + "Lawrenceburg Community School Corporation": 15, + "Lawson R-XIV School District": 15, + "Lawton-Bronson Community School District": 15, + "Lawton Community School District": 15, + "Lawton Public Schools": 15, + "Laytonville Unified School District": 15, + "Lazbuddie Independent School District": 15, + "Le Center Public School District": 1, + "Le Grand Union Elementary School District": 15, + "Le Grand Union High School District": 15, + "Le Mars Community School District": 15, + "Le Roy Central School District": 15, + "Le Roy Community Unit School District 2": 15, + "Le Roy Public School District": 1, + "Le Sueur-Henderson School District": 6, + "Leach Public School": 15, + "Lead-Deadwood School District 40-1": 15, + "Lead Hill School District": 15, + "Leake County School District": 15, + "Leakey Independent School District": 15, + "Leander Independent School District": 15, + "Leary Independent School District": 15, + "Leavenworth Unified School District 453": 15, + "Lebanon Borough School District": 15, + "Lebanon City School District": 15, + "Lebanon Community School Corporation": 15, + "Lebanon Community School District 9": 15, + "Lebanon Community Unit School District 9": 15, + "Lebanon R-III School District": 10, + "Lebanon School District": 50, + "Lebanon Special School District": 15, + "Lebanon Township School District": 15, + "Lebo-Waverly Unified School District 243": 15, + "LeCenter Public School District": 4, + "Ledgemont Local School District": 7, + "Ledyard School District": 15, + "Lee's Summit R-7 School District": 5, + "Lee's Summit R-VII School District": 10, + "Lee Center Community Unit School District 271": 14, + "Lee County Public Schools": 15, + "Lee County School District": 105, + "Lee County Schools": 15, + "Lee School District": 15, + "Lee/Berkshire Hills in Farmington River Regional (7-12)": 14, + "Leechburg Area School District": 15, + "Leedey Public Schools": 15, + "Leeds City School District": 15, + "Leeds Public School District 6": 15, + "Leepertown Community Consolidated School District 175": 5, + "Leesville R-IX School District": 15, + "Leeton R-X School District": 15, + "Leetonia Exempted Village School District": 15, + "Leflore County School District": 11, + "LeFlore Public Schools": 15, + "Lefors Independent School District": 15, + "Leggett Independent School District": 15, + "Leggett Valley Unified School District": 15, + "Lehighton Area School District": 15, + "Leicester School District": 22, + "Leigh Community Schools": 15, + "Leipsic Local School District": 15, + "Leland and Gray Union High School District 34": 7, + "Leland Community Unit School District 1": 15, + "Leland Public School District": 15, + "Leland School District": 15, + "Lemington School District": 7, + "Lemmon School District 52-2": 1, + "Lemmon School District 52-4": 14, + "Lemon Grove Elementary School District": 15, + "Lemont-Bromberek Combined School District 113A": 15, + "Lemont Township High School District 210": 15, + "Lemoore Union Elementary School District": 15, + "Lemoore Union High School District": 15, + "Lempster School District": 8, + "Lena-Winslow Community Unit School District 202": 15, + "Lena School District": 15, + "Lenape Regional School District": 15, + "Lenape Valley Regional School District": 15, + "Lennep Elementary School District": 7, + "Lennox Elementary School District": 15, + "Lennox School District 41-4": 15, + "Lenoir City School District": 15, + "Lenoir County Schools": 15, + "Lenox Community School District": 15, + "Lenox School District": 15, + "Leola School District 44-2": 15, + "Leominster School District": 15, + "Leon County School District": 15, + "Leon Independent School District": 15, + "Leonard Independent School District": 15, + "Leonard Public Schools": 1, + "Leonia Borough School District": 15, + "Leopold R-III School District": 15, + "Leoti Unified School District 467": 15, + "Leroy-Gridley Unified School District 245": 15, + "LeRoy-Ostrander Public Schools": 12, + "LeRoy Public School District": 2, + "Les Cheneaux Community Schools": 15, + "Leslie County School District": 15, + "Leslie Public Schools": 15, + "Lester Prairie Public School District": 15, + "Lesterville R-IV School District": 15, + "LeSueur-Henderson School District": 9, + "Letcher County School District": 15, + "Letchworth Central School District": 15, + "Levelland Independent School District": 15, + "Leverett School District": 15, + "Leveretts Chapel Independent School District": 15, + "Levittown Union Free School District": 15, + "Levy County School District": 15, + "Lewis-Palmer School District 38": 15, + "Lewis and Clark Public School District 161": 15, + "Lewis Cass Schools": 1, + "Lewis Central Community School District": 15, + "Lewis County C-1 School District": 15, + "Lewis County School District": 45, + "Lewis School District": 9, + "Lewis Unified School District 502": 15, + "Lewisburg Area School District": 15, + "Lewiston": 14, + "Lewiston-Altura Public School District": 15, + "Lewiston-Porter Central School District": 15, + "Lewiston Consolidated Schools": 15, + "Lewiston Elementary School District": 15, + "Lewiston Independent School District 340": 15, + "Lewiston School District": 1, + "Lewistown Community Unit School District 97": 15, + "Lewistown Elementary School District": 15, + "Lewisville Independent School District": 15, + "Lexington City Elementary School District": 7, + "Lexington City Public Schools": 15, + "Lexington City School System": 8, + "Lexington City Schools": 15, + "Lexington Community Unit School District 7": 15, + "Lexington Independent School District": 15, + "Lexington Local School District": 15, + "Lexington Public Schools": 30, + "Lexington R-V School District": 15, + "Lexington School District": 15, + "Lexington School District 1": 15, + "Lexington School District 2": 15, + "Lexington School District 3": 15, + "Lexington School District 4": 15, + "Lexington School District 5": 15, + "Leyden Community High School District 212": 15, + "Leyton Public Schools": 15, + "Libby K-12 Schools": 15, + "Liberal R-II School District": 15, + "Liberal Unified School District 480": 15, + "Liberty-Benton Local School District": 15, + "Liberty-Eylau Independent School District": 15, + "Liberty-Perry Community School Corporation": 15, + "Liberty 53 School District": 10, + "Liberty Center Local School District": 15, + "Liberty Central School District": 15, + "Liberty Community Unit School District 2": 15, + "Liberty County School District": 30, + "Liberty Elementary District": 15, + "Liberty Elementary School District": 15, + "Liberty Elementary School District (Sonoma County)": 15, + "Liberty Elementary School District (Tulare County)": 15, + "Liberty Hill Independent School District": 15, + "Liberty Independent School District": 15, + "Liberty Local School District": 15, + "Liberty Public School": 15, + "Liberty Public Schools": 16, + "Liberty School District": 15, + "Liberty School District J-4": 15, + "Liberty Schools": 5, + "Liberty Union-Thurston Local School District": 15, + "Liberty Union High School District": 15, + "Libertyville Community High School District 128": 15, + "Libertyville School District 70": 15, + "Lick Creek Community Consolidated School District 16": 15, + "Licking Heights Local School District": 15, + "Licking R-VIII School District": 10, + "Licking School District": 5, + "Licking Valley Local School District": 15, + "Lidgerwood Public School District 28": 15, + "Ligonier Valley School District": 15, + "Lima City School District": 15, + "Lima K-12 Schools": 15, + "Limestone Community High School District 310": 15, + "Limestone County School District": 15, + "Limestone Public Schools": 4, + "Limestone School District": 1, + "Limestone Walters Community Consolidated School District 316": 15, + "Limon School District RE-4J": 15, + "Lincoln-Sudbury School District": 15, + "Lincoln-Woodstock School District": 15, + "Lincoln Community High School District 404": 15, + "Lincoln Consolidated School District": 15, + "Lincoln County High School District": 15, + "Lincoln County School District": 105, + "Lincoln County School District 1": 15, + "Lincoln County School District 2": 15, + "Lincoln County School District in Fayetteville": 5, + "Lincoln County Schools": 15, + "Lincoln Elementary School District": 15, + "Lincoln Elementary School District 156": 15, + "Lincoln Elementary School District 27": 15, + "Lincoln K-12 Schools": 15, + "Lincoln Parish School District": 15, + "Lincoln Park Borough School District": 15, + "Lincoln Park Public Schools": 15, + "Lincoln Plantation": 14, + "Lincoln Plantation School District": 1, + "Lincoln Public Schools": 15, + "Lincoln R-II School District": 15, + "Lincoln School District": 52, + "Lincoln Unified School District": 15, + "Lincoln Unified School District 298": 15, + "Lincoln Unorganized Territory": 15, + "Lincoln Way Community High School District 210": 15, + "Lincolnshire-Prairieview School District 103": 15, + "Lincolnview Local School District": 15, + "Lincolnville": 14, + "Lincolnville School District": 1, + "Lincolnwood School District 74": 15, + "Lind School District": 15, + "Lindale Independent School District": 15, + "Lindbergh R-VIII School District": 5, + "Lindbergh School District": 10, + "Linden-Kildare Consolidated Independent School District": 15, + "Linden City School District": 30, + "Linden Community Schools": 15, + "Linden Unified School District": 15, + "Lindenhurst Union Free School District": 15, + "Lindenwold Borough School District": 15, + "Lindop School District 92": 15, + "Lindsay Elementary School District": 15, + "Lindsay Independent School District": 15, + "Lindsay Public Schools": 15, + "Lindsay Unified School District": 15, + "Line Mountain School District": 15, + "Lineville-Clio Community School District": 3, + "Lingleville Independent School District": 15, + "Linn-Mar Community School District": 15, + "Linn County R-I School District": 15, + "Linn Joint No. 4 School District": 15, + "Linn Joint No. 6 School District": 15, + "Linns Valley-Poso Flat Union School District": 15, + "Linton-Stockton School Corporation": 15, + "Linton Public School District 36": 15, + "Linwood City School District": 15, + "Lipan Independent School District": 15, + "Lisbon": 14, + "Lisbon Central School District": 15, + "Lisbon Community Consolidated School District 90": 15, + "Lisbon Community School District": 15, + "Lisbon Exempted Village School District": 15, + "Lisbon Public School District 19": 15, + "Lisbon Regional School District": 15, + "Lisbon School District": 16, + "Lisle Community Unit School District 202": 15, + "Litchfield Community Schools": 15, + "Litchfield Community Unit School District 12": 15, + "Litchfield Elementary District": 15, + "Litchfield Public School District": 15, + "Litchfield Public Schools": 15, + "Litchfield School District": 31, + "Litchville-Marion Public School District 46": 15, + "Little Axe Public Schools": 15, + "Little Chute Area School District": 15, + "Little Compton School District": 15, + "Little Cypress-Mauriceville Consolidated Independent School District": 15, + "Little Egg Harbor Township School District": 15, + "Little Elm Independent School District": 15, + "Little Falls City School District": 15, + "Little Falls Public School District": 15, + "Little Falls Township School District": 15, + "Little Ferry Borough School District": 15, + "Little Heart Public School District 4": 15, + "Little Lake City Elementary School District": 15, + "Little Miami Local School District": 15, + "Little River Unified School District 444": 15, + "Little Rock School District": 15, + "Little Shasta Elementary School District": 15, + "Little Silver Borough School District": 15, + "Littlefield Independent School District": 15, + "Littlefield Schools": 3, + "Littlefield Unified District": 15, + "Littlefork-Big Falls School District": 15, + "Littlestown Area School District": 15, + "Littleton Elementary District": 15, + "Littleton School District": 30, + "Littleton School District 6": 15, + "Live Oak Elementary School District": 15, + "Live Oak Unified School District": 15, + "Livermore Valley Joint Unified School District": 15, + "Liverpool Central School District": 15, + "Livingston County R-III School District": 15, + "Livingston County School District": 15, + "Livingston Elementary School District": 15, + "Livingston Independent School District": 15, + "Livingston Manor Central School District": 15, + "Livingston Parish School District": 15, + "Livingston Township School District": 15, + "Livingston Union Elementary School District": 7, + "Livingston Union School District": 8, + "Livonia Central School District": 15, + "Livonia Public Schools": 15, + "Llano Independent School District": 15, + "Loch Arbour School District": 6, + "Lockesburg School District": 3, + "Lockhart Independent School District": 15, + "Lockland Local School District": 15, + "Lockney Independent School District": 15, + "Lockport City School District": 15, + "Lockport School District 91": 15, + "Lockport Township High School District 205": 15, + "Lockwood Elementary School District": 10, + "Lockwood K-12": 5, + "Lockwood R-I School District": 15, + "Locust Grove Public Schools": 15, + "Locust Valley Central School District": 15, + "Lodge Grass Elementary School District": 15, + "Lodge Grass High School District": 15, + "Lodi Borough School District": 15, + "Lodi School District": 15, + "Lodi Unified School District": 15, + "Logan-Hocking Local School District": 15, + "Logan-Magnolia Community School District": 15, + "Logan-Rogersville R-VIII School District": 10, + "Logan County School District": 30, + "Logan Elm Local School District": 15, + "Logan Municipal Schools": 15, + "Logan School District": 15, + "Logan Township School District": 15, + "Logan Unified School District 326": 15, + "Logan View Public Schools": 15, + "Logansport Community School Corporation": 15, + "Lohn Independent School District": 15, + "Loleta Union Elementary School District": 15, + "Lolo Elementary School District": 15, + "Loma Prieta Joint Union Elementary School District": 15, + "Lombard School District 44": 15, + "Lomega Public Schools": 15, + "Lometa Independent School District": 15, + "Lomira School District": 15, + "Lompoc Unified School District": 15, + "London City School District": 15, + "London Independent School District": 15, + "Londonderry School District": 17, + "Lone Grove Public Schools": 15, + "Lone Jack C-6 School District": 15, + "Lone Oak Independent School District": 15, + "Lone Pine Unified School District": 15, + "Lone Rock Elementary School District": 15, + "Lone Star Public School": 15, + "Lone Star School District 101": 15, + "Lone Tree Community School District": 15, + "Lone Wolf Public Schools": 15, + "Lonedell R-XIV School District": 15, + "Lonetree Public School District 6": 15, + "Long Beach City School District": 15, + "Long Beach Island School District": 15, + "Long Beach School District": 15, + "Long Beach Unified School District": 15, + "Long Branch City School District": 15, + "Long County School District": 15, + "Long Creek School District 17": 15, + "Long Hill Township School District": 15, + "Long Island": 14, + "Long Island School District": 1, + "Long Lake Central School District": 15, + "Long Prairie-Grey Eagle School District": 15, + "Longmeadow School District": 15, + "Longport Borough School District": 15, + "Longview Independent School District": 15, + "Longview Public Schools": 14, + "Longview School District": 1, + "Longwood Central School District": 15, + "Lonoke School District": 15, + "Loogootee Community School Corporation": 15, + "Lookeba-Sickles Public Schools": 15, + "Loomis Public Schools": 15, + "Loomis Union Elementary School District": 15, + "Loon Lake School District": 15, + "Loop Independent School District": 15, + "Lopatcong Township School District": 15, + "Lopez School District": 15, + "Lorain City School District": 15, + "Loraine Independent School District": 15, + "Lordsburg Municipal Schools": 15, + "Lordstown Local School District": 15, + "Lorena Independent School District": 15, + "Lorenzo Independent School District": 15, + "Lorraine Unified School District 328": 3, + "Los Alamitos Unified School District": 15, + "Los Alamos Elementary School District": 3, + "Los Alamos Public Schools": 15, + "Los Altos Elementary School District": 15, + "Los Angeles Unified School District": 15, + "Los Banos Unified School District": 15, + "Los Fresnos Consolidated Independent School District": 15, + "Los Gatos-Saratoga Joint Union School District": 15, + "Los Gatos Union Elementary School District": 15, + "Los Lunas Public Schools": 15, + "Los Molinos Unified School District": 15, + "Los Nietos Elementary School District": 15, + "Los Olivos Elementary School District": 15, + "Lost City Public Schools": 1, + "Lost Hills Union Elementary School District": 15, + "Lostant Community Unit School District 425": 15, + "Loudon County School District": 15, + "Loudonville-Perrysville Exempted Village School District": 15, + "Loudoun County Public Schools": 15, + "Louds Island Unorganized Territory": 14, + "Louisa-Muscatine Community School District": 15, + "Louisa County Public Schools": 15, + "Louisburg Unified School District 416": 15, + "Louise Independent School District": 15, + "Louisiana R-II School District": 15, + "Louisville City School District": 15, + "Louisville Municipal School District": 15, + "Louisville Public Schools": 15, + "Loup City Public Schools": 15, + "Loup County Public Schools": 15, + "Lovejoy Independent School District": 15, + "Lovelady Independent School District": 15, + "Loveland City School District": 15, + "Loving Municipal Schools": 15, + "Lovington Community Unit School District 303": 5, + "Lovington Public Schools": 15, + "Lowell": 14, + "Lowell Area Schools": 15, + "Lowell Joint Elementary School District": 15, + "Lowell School District": 25, + "Lowell School District 71": 15, + "Lowellville Local School District": 15, + "Lower Alloways Creek Township School District": 15, + "Lower Cape May Regional School District": 15, + "Lower Dauphin School District": 15, + "Lower Kuskokwim School District": 15, + "Lower Merion School District": 15, + "Lower Moreland Township School District": 15, + "Lower Township School District": 15, + "Lower Yukon School District": 15, + "Lowndes County School District": 45, + "Lowpoint-Washburn Community Unit School District 21": 15, + "Lowrey Public School": 15, + "Lowville Academy and Central School District": 15, + "Loyal School District": 15, + "Loyalsock Township School District": 15, + "Lu Verne Community School District": 15, + "Lubbock-Cooper Independent School District": 15, + "Lubbock Independent School District": 15, + "Lucas Local School District": 15, + "Lucerne Elementary School District": 15, + "Lucerne Valley Unified School District": 15, + "Lucia Mar Unified School District": 15, + "Luck School District": 15, + "Ludington Area School District": 15, + "Ludlow Community Consolidated School District 142": 15, + "Ludlow Independent School District": 15, + "Ludlow Mt. Holly Unified Union School District": 2, + "Ludlow School District": 22, + "Lueders-Avoca Independent School District": 15, + "Lufkin Independent School District": 15, + "Lukfata Public School": 15, + "Luling Independent School District": 15, + "Lumberton Independent School District": 15, + "Lumberton Public School District": 10, + "Lumberton Township School District": 15, + "Lumpkin County School District": 15, + "Lunenburg County Public Schools": 15, + "Lunenburg School District": 22, + "Luray 33 School District": 7, + "Lustre Elementary School District": 15, + "Luther Burbank Elementary School District": 15, + "Luther Elementary School District": 15, + "Luther Public Schools": 15, + "Lutie R-VI School District": 15, + "Luverne Public School District": 15, + "Luxemburg-Casco School District": 15, + "Lyford Consolidated Independent School District": 15, + "Lyle Public School District": 15, + "Lyle School District": 15, + "Lyman School District 42-1": 15, + "Lyme Central School District": 15, + "Lyme School District": 15, + "Lynbrook Union Free School District": 15, + "Lynch Public Schools": 9, + "Lynchburg-Clay Local School District": 15, + "Lynchburg City Public Schools": 15, + "Lyncourt Union Free School District": 15, + "Lynd Public School District": 15, + "Lyndeborough School District": 3, + "Lynden School District": 15, + "Lyndhurst Township School District": 15, + "Lyndon School District": 7, + "Lyndon Unified School District 421": 15, + "Lyndonville Central School District": 15, + "Lynn School District": 15, + "Lynnfield School District": 15, + "Lynnville-Sully Community School District": 15, + "Lynwood Unified School District": 15, + "Lyon County School District": 30, + "Lyons-Decatur Northeast Schools": 15, + "Lyons Central School District": 15, + "Lyons School District 103": 15, + "Lyons Township High School District 204": 15, + "Lyons Unified School District 405": 15, + "Lytle Independent School District": 15, + "M.A.C.C.R.A.Y. School District": 7, + "Mabank Independent School District": 15, + "Mabel-Canton Public School District": 15, + "Mabton School District": 15, + "MACCRAY School District": 8, + "Machias": 14, + "Machias School District": 1, + "Machiasport": 14, + "Mackay Joint School District 182": 15, + "Mackinac Island Public Schools": 15, + "Mackinaw City Public Schools": 15, + "Macks Creek R-V School District": 15, + "Macksville Unified School District 351": 15, + "Macomb Community Unit School District 185": 15, + "Macomb Public Schools": 15, + "Macon County R-I School District": 15, + "Macon County R-IV School District": 15, + "Macon County School District": 45, + "Macon County Schools": 15, + "Maconaquah School Corporation": 15, + "Macwahoc Plantation": 14, + "Macwahoc Plantation School District": 1, + "Mad River Local School District": 15, + "Madawaska": 14, + "Madawaska School District": 1, + "Maddock Public School District 9": 15, + "Madeira City School District": 15, + "Madelia Public School District": 15, + "Madera Unified School District": 15, + "Madill Public Schools": 15, + "Madison-Grant United School Corporation": 15, + "Madison-Plains Local School District": 15, + "Madison-Virgil Unified School District 386": 15, + "Madison Borough School District": 15, + "Madison C-3 School District": 15, + "Madison Central School District": 15, + "Madison Central School District 39-2": 14, + "Madison City School District": 15, + "Madison Community Unit School District 12": 15, + "Madison Consolidated Schools": 15, + "Madison County Public Schools": 15, + "Madison County School District": 75, + "Madison County Schools": 15, + "Madison Elementary District": 15, + "Madison Local School District (Butler County)": 15, + "Madison Local School District (Geauga and Lake Counties)": 15, + "Madison Local School District (Richland County)": 15, + "Madison Metropolitan School District": 15, + "Madison Parish School District": 15, + "Madison Public Schools": 30, + "Madison School District": 45, + "Madison School District 321": 15, + "Madisonville Consolidated Independent School District": 15, + "Madrid-Waddington Central School District": 15, + "Madrid Community School District": 15, + "Maercker School District 60": 15, + "Magalloway Plantation": 2, + "Magalloway Plantation School District": 1, + "Magazine Schools": 15, + "Magdalena Municipal Schools": 15, + "Magnet Cove School District": 15, + "Magnolia Borough School District": 15, + "Magnolia Elementary School District": 15, + "Magnolia Independent School District": 15, + "Magnolia School District": 15, + "Magnolia Union Elementary School District": 15, + "Magoffin County School District": 15, + "Mahanoy Area School District": 15, + "Mahnomen Public School District": 15, + "Mahomet-Seymour Community Unit School District 3": 15, + "Mahopac Central School District": 15, + "Mahtomedi Public School District": 15, + "Mahwah Township School District": 15, + "Maidstone School District": 7, + "Maine-Endwell Central School District": 15, + "Maine Consolidated School District": 15, + "Maine Indian Education Unit 1": 1, + "Maine Indian Education Unit 2": 1, + "Maine Indian Education Unit 3": 1, + "Maine Township High School District 207": 15, + "Mainland Regional School District": 15, + "Maize Unified School District 266": 15, + "Malakoff Independent School District": 15, + "Malcolm Public Schools": 15, + "Malden Community Consolidated School District 84": 15, + "Malden R-I School District": 15, + "Malden School District": 15, + "Malmborg Elementary School District": 15, + "Malone Central School District": 15, + "Malone Independent School District": 15, + "Malta Bend R-V School District": 15, + "Malta Independent School District": 15, + "Malta K-12 Schools": 15, + "Malvern Community School District": 3, + "Malvern Special School District": 15, + "Malverne Union Free School District": 15, + "Mamaroneck Union Free School District": 15, + "Mammoth-San Manuel Unified District": 15, + "Mammoth Spring Schools": 15, + "Mammoth Unified School District": 15, + "Manalapan-Englishtown Regional School District": 15, + "Manasquan Borough School District": 15, + "Manassas City Public Schools": 15, + "Manassas Park City Public Schools": 15, + "Manatee County School District": 15, + "Manawa School District": 15, + "Mancelona Public Schools": 15, + "Manchester-Shortsville Central School District": 12, + "Manchester-Shortsville Central School District (Red Jacket)": 3, + "Manchester City School District": 15, + "Manchester Community Schools": 30, + "Manchester Essex Regional School District": 15, + "Manchester Local School District (Adams County)": 15, + "Manchester Local School District (Summit County)": 15, + "Manchester School District": 38, + "Manchester Township School District": 15, + "Manchester Union Elementary School District": 15, + "Mancos School District RE-6": 15, + "Mandan Public School District 1": 15, + "Mandaree Public School District 36": 15, + "Manes R-V School District": 15, + "Mangum Public Schools": 15, + "Manhasset Union Free School District": 15, + "Manhattan-Ogden Unified School District 383": 1, + "Manhattan Beach Unified School District": 15, + "Manhattan Elementary School District": 9, + "Manhattan High School District": 15, + "Manhattan School": 6, + "Manhattan School District 114": 15, + "Manhattan Unified School District 383": 14, + "Manheim Central School District": 15, + "Manheim Township School District": 15, + "Manila School District": 15, + "Manistee Area Schools": 15, + "Manistique Area Schools": 15, + "Manitou Springs School District 14": 15, + "Manitowoc School District": 15, + "Mankato Public School District": 15, + "Mankato Unified School District 278": 1, + "Mannford Public Schools": 15, + "Mannheim School District 83": 15, + "Manning Community School District": 3, + "Manning Public School District 45": 15, + "Mannington Township School District": 15, + "Mannsville Public School": 15, + "Manor Independent School District": 15, + "Mansfield City School District": 15, + "Mansfield Independent School District": 15, + "Mansfield R-IV School District": 15, + "Mansfield School District": 60, + "Mansfield Township School District (Burlington County)": 15, + "Mansfield Township School District (Warren County)": 15, + "Manson Northwest Webster Community School District": 15, + "Manson School District": 15, + "Manteca Unified School District": 15, + "Manteno Community Unit School District 5": 15, + "Mantoloking Borough School District": 1, + "Manton Consolidated Schools": 15, + "Manton Joint Union Elementary School District": 5, + "Mantua Township School District": 15, + "Manvel Public School District 125": 15, + "Manville Borough School District": 15, + "Manzanita Elementary School District": 15, + "Manzanola School District 3J": 15, + "Maple Creek Elementary School District": 15, + "Maple Dale-Indian Hill School District": 15, + "Maple Elementary School District": 15, + "Maple Heights City School District": 15, + "Maple Lake Public School District": 15, + "Maple Public School": 15, + "Maple River School District": 15, + "Maple Run Unified School District": 5, + "Maple School District": 15, + "Maple Shade Township School District": 15, + "Maple Valley-Anthon Oto Community School District": 10, + "Maple Valley Community School District": 5, + "Maple Valley Public School District 4": 15, + "Maple Valley Schools": 15, + "Mapleton Local School District": 15, + "Mapleton Public School District 7": 15, + "Mapleton School District 1": 15, + "Mapleton School District 32": 15, + "Maplewood-Richmond Heights School District": 15, + "Maplewood Common School District": 1, + "Maplewood Local School District": 15, + "Maquoketa Community School District": 15, + "Maquoketa Valley Community School District": 15, + "Mar Lee School District": 15, + "Marais des Cygnes Valley Unified School District 456": 15, + "Marana Unified District": 15, + "Maranacook Community School District": 1, + "Marathon Central School District": 15, + "Marathon City School District": 15, + "Marathon Independent School District": 15, + "Marble City Public School": 15, + "Marble Falls Independent School District": 15, + "Marblehead School District": 15, + "Marceline R-V School District": 15, + "Marcellus Central School District": 15, + "Marcellus Community Schools": 15, + "Marcola School District 79J": 15, + "Marcum-Illinois Union Elementary School District": 15, + "Marcus-Meriden-Cleghorn Community School District": 15, + "Marcus Whitman Central School District": 3, + "Marengo-Union Elementary Consolidated District 165": 15, + "Marengo Community High School District 154": 15, + "Marengo County School District": 15, + "Marfa Independent School District": 15, + "Margaretta Local School District": 15, + "Margaretville Central School District": 15, + "Margate City School District": 15, + "Mariaville School District": 1, + "Maricopa County High School District": 1, + "Maricopa Unified School District": 30, + "Mariemont City School District": 15, + "Maries County R-I School District": 15, + "Maries County R-II School District": 15, + "Marietta City School District": 30, + "Marietta Independent School District": 1, + "Marietta Public School": 15, + "Marinette School District": 15, + "Marion-Adams Schools": 3, + "Marion-Florence Unified School District 408": 15, + "Marion C. Early R-V School District": 10, + "Marion Center Area School District": 15, + "Marion Central School District": 15, + "Marion City School District": 15, + "Marion Community Schools": 15, + "Marion Community Unit School District 2": 15, + "Marion County Early R-V School District": 5, + "Marion County R-II School District": 15, + "Marion County School District": 105, + "Marion Elementary School District": 15, + "Marion Independent School District": 30, + "Marion Local School District": 15, + "Marion Public Schools": 15, + "Marion School District": 45, + "Marion School District 1": 5, + "Marion School District 10": 10, + "Marion School District 2": 5, + "Marion School District 60-3": 15, + "Marion School District 7": 5, + "Marionville R-IX School District": 15, + "Mariposa County Unified School District": 15, + "Marissa Community Unit School District 40": 15, + "Mark Twain R-VIII School District": 15, + "Mark Twain Union Elementary School District": 15, + "Mark West Union Elementary School District": 15, + "Marked Tree School District": 15, + "Markesan School District": 15, + "Marlboro Central School District": 15, + "Marlboro County School District": 15, + "Marlboro School District": 9, + "Marlboro Township School District": 15, + "Marlborough School District": 45, + "Marlette Community Schools": 15, + "Marlin Independent School District": 15, + "Marlington Local School District": 15, + "Marlow Public Schools": 15, + "Marlow School District": 15, + "Marmaduke School District": 15, + "Marmarth Public School District 12": 15, + "Marmaton Valley Unified School District 256": 15, + "Maroa-Forsyth Community Unit School District 2": 15, + "Marple Newtown School District": 15, + "Marquand-Zion R-VI School District": 10, + "Marquand-Zion School District": 5, + "Marquardt School District 15": 15, + "Marquette Area Public Schools": 15, + "Mars Area School District": 15, + "Marseilles Elementary School District 150": 15, + "Marsh Valley Joint School District 21": 15, + "Marshall-Minneota-RTR Public Schools in Lynd (9-12)": 4, + "Marshall-Tracy Public Schools in Milroy (9-12)": 4, + "Marshall Community Unit School District 2C": 15, + "Marshall County Central Schools": 15, + "Marshall County School District": 75, + "Marshall Independent School District": 15, + "Marshall Public School District": 15, + "Marshall Public Schools": 15, + "Marshall School District": 30, + "Marshalltown Community School District": 15, + "Marshfield": 14, + "Marshfield R-I School District": 15, + "Marshfield School District": 31, + "Marsing Joint School District 363": 15, + "Mart Independent School District": 15, + "Martensdale-St. Marys Community School District": 15, + "Martha's Vineyard School District": 15, + "Martin County School District": 30, + "Martin County Schools": 15, + "Martin County West Public School District": 3, + "Martin County West School District": 12, + "Martin Public Schools": 15, + "Martinez Unified School District": 15, + "Martins Ferry City School District": 15, + "Martins Mill Independent School District": 15, + "Martinsville City Public Schools": 15, + "Martinsville Community Unit School District 3C": 15, + "Martinsville Independent School District": 15, + "Martinsville Schools Metropolitan School District": 15, + "Marvell School District": 15, + "Mary M. Knight School District": 15, + "Mary Walker School District": 15, + "Maryetta Public Schools": 15, + "Marysville Exempted Village School District": 15, + "Marysville Joint Unified School District": 15, + "Marysville Public Schools": 15, + "Marysville School District": 15, + "Marysville Unified School District 364": 15, + "Maryville City School District": 15, + "Maryville R-II Schools": 15, + "Mascenic Regional School District": 15, + "Mascoma Valley Regional School District": 15, + "Masconomet School District": 15, + "Mascoutah Community Unit School District 19": 15, + "Mashpee School District": 15, + "Mason City Community School District": 15, + "Mason City School District": 15, + "Mason Consolidated Schools": 15, + "Mason County Central Schools": 15, + "Mason County Eastern District": 10, + "Mason County Eastern Schools": 5, + "Mason County School District": 30, + "Mason Independent School District": 15, + "Mason Public Schools": 30, + "Mason School District": 14, + "Massac Unit School District 1": 15, + "Massapequa Union Free School District": 15, + "Massena Central School District": 15, + "Massillon City School District": 15, + "Matagorda Independent School District": 15, + "Matanuska-Susitna Borough School District": 15, + "Matawan-Aberdeen Regional School District": 15, + "Mathews County Public Schools": 15, + "Mathews Local School District": 15, + "Mathis Independent School District": 15, + "Mattapoisett School District": 15, + "Mattawan Consolidated School": 15, + "Matteson Elementary School District 162": 15, + "Mattituck-Cutchogue Union Free School District": 15, + "Mattole Unified School District": 15, + "Mattoon Community Unit School District 2": 15, + "Maud Independent School District": 15, + "Maud Public Schools": 15, + "Maumee City School District": 15, + "Maurice River Township School District": 15, + "Maury County School District": 15, + "Mauston School District": 15, + "Max Public School District 50": 15, + "Maxwell AFB School District": 15, + "Maxwell Municipal Schools": 15, + "Maxwell Public Schools": 15, + "Maxwell Unified School District": 15, + "May-Port CG Public School District 14": 15, + "May Independent School District": 15, + "Mayer Unified District": 15, + "Mayfield Central School District": 15, + "Mayfield City School District": 15, + "Mayfield Independent School District": 15, + "Mayflower School District": 15, + "Maynard School District": 30, + "Maypearl Independent School District": 15, + "Maysville Local School District": 15, + "Maysville Public Schools": 15, + "Maysville R-I School District": 15, + "Mayville Community School District": 15, + "Mayville School District": 15, + "Maywood-Melrose Park-Broadview School District 89": 15, + "Maywood Borough School District": 15, + "Maywood Public Schools": 15, + "Mazon-Verona-Kinsman Elementary School District 2C": 15, + "McAlester Public Schools": 15, + "McAllen Independent School District": 15, + "McBain Rural Agricultural Schools": 15, + "McCabe Union Elementary School District": 15, + "McCall-Donnelly Joint School District 421": 15, + "McCamey Independent School District": 15, + "McClave School District RE-2": 15, + "McCleary School District": 15, + "McClellan Community Consolidated School District 12": 15, + "McCloud Union Elementary School District": 15, + "McClusky Public School District 19": 15, + "McComb Local School District": 15, + "McComb School District": 15, + "McCook Central School District 43-7": 15, + "McCook Public Schools": 15, + "McCool Junction Public Schools": 15, + "McCord Public School": 15, + "McCormick County School District": 15, + "McCormick Elementary School District": 15, + "McCracken County School District": 15, + "McCreary County School District": 15, + "McCrory School District": 15, + "McCurtain Public Schools": 15, + "McDade Independent School District": 15, + "McDermitt School District 51": 15, + "McDonald County R-I School District": 15, + "McDonald Local School District": 15, + "McDowell County School District": 15, + "McDowell County Schools": 15, + "Mcduffie County School District": 6, + "McDuffie County School District": 9, + "McFarland School District": 15, + "McFarland Unified School District": 15, + "McGehee School District": 15, + "McGraw Central School District": 15, + "McGregor Independent School District": 15, + "McGregor Public School District": 15, + "McGuffey School District": 15, + "McHenry Community Consolidated School District 15": 15, + "McHenry Community High School District 156": 15, + "Mcintosh County School District": 6, + "McIntosh County School District": 9, + "McIntosh School District 15-1": 15, + "McKeesport Area School District": 15, + "McKenzie County Public School District 1": 15, + "McKenzie School District 68": 15, + "McKenzie Special School District": 15, + "McKinleyville Union Elementary School District": 15, + "McKinney Independent School District": 15, + "McKittrick Elementary School District": 15, + "McLaughlin School District 15-2": 15, + "McLean County School District": 15, + "McLean County Unit School District 5": 15, + "McLean Independent School District": 15, + "McLeod Elementary School District": 15, + "McLeod Independent School District": 15, + "McLeod West Public School District": 1, + "McLoud Public Schools": 15, + "McLouth Unified School District 342": 15, + "McMinn County School District": 15, + "McMinn County School District in Athens": 15, + "McMinn County School District in Etowah": 15, + "McMinnville School District 40": 15, + "McMullen County Independent School District": 15, + "McNairy County School District": 15, + "McNary Elementary District": 15, + "McNeal Elementary District": 15, + "McPherson County Schools": 15, + "McPherson Unified School District 418": 15, + "McSwain Union Elementary School District": 15, + "Mead Public Schools": 15, + "Mead School District": 15, + "Meade County School District": 15, + "Meade School District 46-1": 15, + "Meade Unified School District 226": 15, + "Meadow Heights R-II School District": 15, + "Meadow Independent School District": 15, + "Meadows Union Elementary School District": 15, + "Meadows Valley School District 11": 15, + "Meadville R-IV School District": 15, + "Mechanic Falls School District": 1, + "Mechanicsburg Area School District": 15, + "Mechanicsburg Exempted Village School District": 15, + "Mechanicville City School District": 15, + "Mecklenburg County Public Schools": 15, + "Meddybemps": 14, + "Meddybemps School District": 1, + "Medfield School District": 15, + "Medford": 14, + "Medford Area School District": 15, + "Medford Lakes Borough School District": 15, + "Medford Public School District": 15, + "Medford Public Schools": 15, + "Medford School District": 16, + "Medford School District 549": 15, + "Medford Township School District": 15, + "Mediapolis Community School District": 15, + "Medical Lake School District": 15, + "Medicine Lake K-12 Schools": 15, + "Medicine Valley Public Schools": 15, + "Medina Central School District": 15, + "Medina City School District": 15, + "Medina Independent School District": 15, + "Medina Public School District 3": 15, + "Medina Valley Independent School District": 15, + "Medinah School District 11": 15, + "Medora Community School Corporation": 15, + "Medway": 14, + "Medway School District": 16, + "Meeker Public Schools": 15, + "Meeker School District RE1": 15, + "Mehlville R-IX School District": 10, + "Mehlville School District": 5, + "Meigs County School District": 15, + "Meigs Local School District": 15, + "Melba Joint School District 136": 15, + "Melbourne School District": 15, + "Melcher-Dallas Community School District": 15, + "Melissa Independent School District": 15, + "Mellen School District": 15, + "Melrose-Mindoro School District": 15, + "Melrose Elementary School District": 15, + "Melrose Public School District": 15, + "Melrose Public Schools": 15, + "Melrose School District": 15, + "Melstone Elementary School District": 15, + "Melstone High School District": 15, + "Melville Elementary School District": 15, + "Melvindale-North Allen Park School District": 15, + "Memphis City School District": 5, + "Memphis Community Schools": 15, + "Memphis Independent School District": 15, + "Mena Public Schools": 15, + "Menahga Public School District": 15, + "Menands Union Free School District": 15, + "Menard Independent School District": 15, + "Menasha School District": 15, + "Mendham Borough School District": 15, + "Mendham Township School District": 15, + "Mendocino Unified School District": 15, + "Mendon-Upton School District": 15, + "Mendon Community School District": 15, + "Mendon School District": 7, + "Mendota Community Consolidated School District 289": 15, + "Mendota Township High School District 280": 15, + "Mendota Unified School District": 15, + "Menifee County School District": 15, + "Menifee Union Elementary School District": 7, + "Menifee Union School District": 8, + "Menlo Park City Elementary School District": 15, + "Menno School District 33-2": 15, + "Menoken Public School District 33": 15, + "Menominee Area Public Schools": 15, + "Menominee Indian School District": 15, + "Menomonee Falls School District": 15, + "Menomonie Area School District": 15, + "Mentor Exempted Village School District": 15, + "Mequon-Thiensville School District": 15, + "Meramec Valley R-III School District": 15, + "Merced City Elementary School District": 15, + "Merced River Union Elementary School District": 15, + "Merced Union High School District": 15, + "Mercedes Independent School District": 15, + "Mercer Area School District": 15, + "Mercer County School District": 30, + "Mercer County School District 404": 14, + "Mercer Island School District": 15, + "Mercer School District": 15, + "Merchantville Borough School District": 15, + "Meredosia-Chambersburg Community Unit School District 11": 15, + "Meriden School District": 15, + "Meridian Community Unit School District 101": 15, + "Meridian Community Unit School District 15": 15, + "Meridian Community Unit School District 223": 15, + "Meridian Elementary School District": 15, + "Meridian Independent School District": 15, + "Meridian Joint School District 2": 15, + "Meridian Public School District": 15, + "Meridian Public Schools": 30, + "Meridian School District": 15, + "Meriwether County School District": 15, + "Merkel Independent School District": 15, + "Merrick Union Free School District": 15, + "Merrill Area School District": 15, + "Merrill Community Schools": 15, + "Merrillville Community School": 15, + "Merrimack School District": 15, + "Merrimack Valley School District": 15, + "Merritt Public Schools": 15, + "Merton Community School District": 15, + "Mesa County Valley School District 51": 15, + "Mesa Unified District": 15, + "Mesa Union Elementary School District": 15, + "Mesa Vista Consolidated Schools": 15, + "Mesabi East School District": 15, + "Mesick Consolidated Schools": 15, + "Mesquite Independent School District": 15, + "Metamora Community Consolidated School District 1": 15, + "Metamora Township High School District 122": 14, + "Metcalfe County School District": 15, + "Methacton School District": 15, + "Methow Valley School District": 15, + "Methuen School District": 15, + "Metropolitan Nashville Public School District": 8, + "Mettawee Community Union School District 47": 7, + "Mettawee School District": 2, + "Metuchen Borough School District": 15, + "Mexia Independent School District": 15, + "Mexico 59 School District": 15, + "Mexico Central School District": 15, + "Meyersdale Area School District": 15, + "Meyersville Independent School District": 15, + "MFL MarMac Community School District": 15, + "Miami-Yoder School District 60-JT": 15, + "Miami East Local School District": 15, + "Miami Elementary School District": 15, + "Miami Independent School District": 15, + "Miami Public Schools": 15, + "Miami R-I School District": 30, + "Miami Trace Local School District": 15, + "Miami Unified District": 15, + "Miamisburg City School District": 15, + "Michigan Center School District": 15, + "Michigan City Area Schools": 15, + "Mid-Buchanan County R-V School District": 15, + "Mid-Prairie Community School District": 15, + "Mid Peninsula School District": 15, + "Mid Valley School District": 15, + "Midd-West School District": 15, + "Middle Bass Local School District": 15, + "Middle Country Central School District": 15, + "Middle Grove C-1 School District": 15, + "Middle Township School District": 15, + "Middleberg Public School": 15, + "Middleborough School District": 15, + "Middleburgh Central School District": 15, + "Middlebury Community Schools": 15, + "Middlebury Incorporated School District": 7, + "Middlebury Union High School District 3": 7, + "Middlesboro Independent School District": 15, + "Middlesex Borough School District": 15, + "Middlesex County Public Schools": 15, + "Middlesex School District": 7, + "Middleton-Cross Plains School District": 15, + "Middleton School District": 30, + "Middleton School District 134": 15, + "Middletown Area School District": 15, + "Middletown City School District": 30, + "Middletown School District": 30, + "Middletown Springs School District": 7, + "Middletown Township School District": 15, + "Middletown Unified School District": 15, + "Midfield City School District": 15, + "Midkota Public School District 7": 15, + "Midland Borough School District": 15, + "Midland Community School District": 15, + "Midland Community Unit School District 7": 15, + "Midland Independent School District": 15, + "Midland Park Borough School District": 15, + "Midland Public Schools": 15, + "Midland School District": 15, + "Midlothian Independent School District": 15, + "Midlothian School District 143": 15, + "Midvale School District 433": 15, + "Midview Local School District": 15, + "Midway Elementary School District": 15, + "Midway Independent School District (Clay and Jack Counties)": 15, + "Midway Independent School District (McLennan County)": 15, + "Midway Public School District 128": 15, + "Midway Public Schools": 15, + "Midway R-I School District": 8, + "Midway School District": 7, + "Midway Schools Unified School District 433": 1, + "Midwest Central Community Unit School District 191": 15, + "Midwest City-Del City Schools": 15, + "Mifflin County School District": 15, + "Mifflinburg Area School District": 15, + "Milaca Public School District": 15, + "Milan Area Schools": 15, + "Milan C-2 School District": 15, + "Milan City Special School District": 7, + "Milan Community Schools": 15, + "Milan School District": 15, + "Milan Special School District": 8, + "Milano Independent School District": 15, + "Milbank School District 25-4": 15, + "Milburn Public Schools": 15, + "Mildred Independent School District": 15, + "Miles City Elementary School District": 15, + "Miles Independent School District": 15, + "Milfay Public School": 5, + "Milford": 14, + "Milford Area Public School District 124": 8, + "Milford Borough School District": 15, + "Milford Central School District": 15, + "Milford Community Consolidated School District 280": 7, + "Milford Exempted Village School District": 15, + "Milford Independent School District": 15, + "Milford Public Schools": 15, + "Milford School District": 61, + "Milford Township High School District 233": 7, + "Mill A School District": 15, + "Mill Creek Community School Corporation": 15, + "Mill Creek Public Schools": 15, + "Mill Creek Valley Unified School District 329": 14, + "Mill River Unified School District": 5, + "Mill River Union School District 40": 7, + "Mill Valley Elementary School District": 15, + "Millard Public Schools": 15, + "Millard School District": 15, + "Millbrae Elementary School District": 15, + "Millbrook Central School District": 15, + "Millburn Community Consolidated School District 24": 15, + "Millburn Township School District": 15, + "Millbury School District": 15, + "Millcreek-West Unity Local School District": 15, + "Millcreek Township School District": 15, + "Miller Area School District 29-3": 1, + "Miller Area School District 29-4": 14, + "Miller City-New Cleveland Local School District": 15, + "Miller County R-III School District": 15, + "Miller County School District": 15, + "Miller Grove Independent School District": 15, + "Miller Place Union Free School District": 15, + "Miller R-II School District": 15, + "Miller Township Community Consolidated School District": 15, + "Millers Run Union School District 37": 7, + "Millersburg Area School District": 15, + "Millington Community Schools": 15, + "Millington Municipal School District": 8, + "Millinocket": 14, + "Millinocket School District": 1, + "Millis School District": 15, + "Millsap Independent School District": 15, + "Millstadt Consolidated Community School District 160": 15, + "Millstone Borough School District": 1, + "Millstone Township School District": 15, + "Milltown Borough School District": 15, + "Millville Area School District": 15, + "Millville City School District": 15, + "Millville Elementary School District": 15, + "Millwood Public Schools": 15, + "Milnor Public School District 2": 15, + "Milpitas Unified School District": 15, + "Milroy Public School District": 15, + "Milton-Freewater School District 7": 15, + "Milton-Union Exempted Village School District": 15, + "Milton Area School District": 15, + "Milton Incorporated School District": 6, + "Milton School District": 54, + "Milwaukee School District": 15, + "Minatare Public Schools": 15, + "Minco Public Schools": 15, + "Minden Public Schools": 15, + "Mine Hill Township School District": 15, + "Mineola Independent School District": 15, + "Mineola Union Free School District": 15, + "Mineral County School District": 30, + "Mineral Elementary School District": 5, + "Mineral Point School District": 15, + "Mineral Springs School District": 15, + "Mineral Wells Independent School District": 15, + "Minersville Area School District": 15, + "Minerva Central School District": 15, + "Minerva Local School District": 15, + "Minford Local School District": 15, + "Mingo County School District": 15, + "Mingus Union High School District": 15, + "Minidoka County Joint School District 331": 15, + "Minisink Valley Central School District": 15, + "Minneapolis Public School District": 15, + "Minneola Unified School District 219": 15, + "Minneota-Ivanhoe Public School Districts in Ivanhoe (7-12)": 4, + "Minneota Public School District": 15, + "Minnetonka Public School District": 15, + "Minnewaska School District": 15, + "Minnewaukan Public School District 5": 15, + "Minocqua Joint No. 1 School District": 15, + "Minooka Community Consolidated School District 201": 15, + "Minooka Community High School District 111": 15, + "Minot Public School District 1": 15, + "Minot School District": 1, + "Minster Local School District": 15, + "Minto Public School District 20": 15, + "Mio-AuSable Schools": 15, + "Mirabile C-1 School District": 15, + "Mishawaka School City": 15, + "Mishicot School District": 15, + "Mission Consolidated Independent School District": 15, + "Mission Union Elementary School District": 15, + "Mission Valley Unified School District 330": 1, + "Missisquoi Valley School District": 1, + "Missisquoi Valley School District #89": 1, + "Missisquoi Valley School District 89": 1, + "Missisquoi Valley Union High School District 7": 7, + "Mississinawa Valley Local School District": 15, + "Mississinewa Community School Corporation": 15, + "Missoula Elementary School District": 15, + "Missoula High School District": 15, + "Missouri City 56 School District": 15, + "Missouri Valley Community School District": 15, + "Mitchell Community Schools": 15, + "Mitchell County School District": 15, + "Mitchell County Schools": 15, + "Mitchell Public Schools": 15, + "Mitchell School District 17-2": 15, + "Mitchell School District 55": 15, + "Moberly School District": 15, + "Mobile County School District": 15, + "Mobile Elementary District": 15, + "Mobridge-Pollock School District 62-6": 14, + "Mobridge School District 62-3": 1, + "MOC-Floyd Valley Community School District": 15, + "Modesto City Elementary School District": 15, + "Modesto City High School District": 15, + "Modoc Joint Unified School District": 15, + "Moffat Consolidated School District 2": 10, + "Moffat County School District RE-1": 15, + "Moffat School District 2": 5, + "Moffett Public School": 15, + "Mogadore Local School District": 15, + "Mohall-Lansford-Sherwood Public School District 1": 15, + "Mohave County High School District": 1, + "Mohave Valley Elementary District": 15, + "Mohawk Area School District": 15, + "Mohawk Central School District": 5, + "Mohawk Local School District": 15, + "Mohawk Trail Regional School District in Hawley and Charlemont towns": 15, + "Mohawk Trail School District": 15, + "Mohawk Trail School District in Rowe (7-12)": 15, + "Mohawk Valley Elementary District": 15, + "Mojave Unified School District": 15, + "Mokena School District 159": 15, + "Molalla River School District 35": 15, + "Moline-Coal Valley School District 40": 4, + "Moline Unit School District 40": 11, + "Molt Elementary School District": 15, + "Momence Community Unit School District 1": 15, + "Mona Shores Public School District": 15, + "Monaca School District": 1, + "Monadnock Regional School District": 15, + "Monahans-Wickett-Pyote Independent School District": 15, + "Mondovi School District": 15, + "Monessen City School District": 15, + "Monett R-I School District": 15, + "Monforton Elementary School District": 15, + "Monhegan Plantation": 14, + "Monhegan Plantation School District": 1, + "Moniteau County C-1 School District": 5, + "Moniteau County R-I School District": 15, + "Moniteau County R-V School District": 15, + "Moniteau County R-VI School District": 5, + "Moniteau School District": 15, + "Monkton School District": 7, + "Monmouth-Roseville Community Unit School District 238": 15, + "Monmouth Beach Borough School District": 15, + "Monmouth Regional School District": 15, + "Monmouth School District": 1, + "Monomoy Regional School District": 10, + "Monona Grove School District": 15, + "Monongalia School District": 15, + "Monroe-Gregg School District": 15, + "Monroe-Woodbury Central School District": 15, + "Monroe Central School Corporation": 15, + "Monroe City R-I School District": 15, + "Monroe City School District": 15, + "Monroe County Community School Corporation": 15, + "Monroe County School District": 105, + "Monroe County School District in Sweetwater": 15, + "Monroe Elementary School District": 15, + "Monroe Local School District": 15, + "Monroe Public School": 15, + "Monroe Public Schools": 15, + "Monroe School District": 60, + "Monroe School District 1J": 15, + "Monroe School District 70": 15, + "Monroe Township School District (Gloucester County)": 15, + "Monroe Township School District (Middlesex County)": 15, + "Monroeville Local School District": 15, + "Monrovia Unified School District": 15, + "Monson-Sultana Joint Union Elementary School District": 15, + "Monson School District": 15, + "Mont Vernon School District": 15, + "Montabella Community Schools": 15, + "Montague Area Public Schools": 15, + "Montague Elementary School District": 15, + "Montague Independent School District": 15, + "Montague Township School District": 15, + "Montana City Elementary School District": 15, + "Montauk Union Free School District": 15, + "Montclair Town School District": 15, + "Monte Alto Independent School District": 15, + "Monte Rio Union Elementary School District": 15, + "Monte Vista School District C-8": 15, + "Montebello Elementary School District": 1, + "Montebello Unified School District": 15, + "Montecito Union Elementary School District": 15, + "Montefiore Public School District 1": 5, + "Montello School District": 15, + "Monterey Peninsula Unified School District": 15, + "Montesano School District": 15, + "Montevideo Public School District": 15, + "Montezuma-Cortez School District RE-1": 15, + "Montezuma Community School District": 15, + "Montezuma Unified School District 371": 15, + "Montgomery-Lonsdale School District": 5, + "Montgomery Area School District": 15, + "Montgomery County Public Schools": 30, + "Montgomery County R-II School District": 15, + "Montgomery County School District": 62, + "Montgomery County Schools": 15, + "Montgomery Elementary School District": 15, + "Montgomery Independent School District": 15, + "Montgomery School District": 7, + "Montgomery Township School District": 15, + "Monticello Central School District": 15, + "Monticello Community School District": 15, + "Monticello Community Unit School District 25": 15, + "Monticello Independent School District": 5, + "Monticello Public School District": 15, + "Monticello School District": 30, + "Montmorency Community Consolidated School District 145": 15, + "Montour School District": 15, + "Montoursville Area School District": 15, + "Montpelier-Roxbury Supervisory Union": 3, + "Montpelier Exempted Village School District": 15, + "Montpelier Public School District 14": 15, + "Montpelier Roxbury Unified Union School District": 2, + "Montpelier School District": 10, + "Montrose Area School District": 15, + "Montrose Community Schools": 15, + "Montrose County School District RE-1J": 15, + "Montrose R-XIV School District": 15, + "Montrose School District 43-2": 15, + "Montvale Borough School District": 15, + "Montville School District": 15, + "Montville Township School District": 15, + "Monument School District 8": 15, + "Moody Independent School District": 15, + "Moon Area School District": 15, + "Moonachie Borough School District": 15, + "Moore County School District": 15, + "Moore County Schools": 15, + "Moore Elementary School District": 15, + "Moore High School District": 15, + "Moore Public Schools": 15, + "Mooreland Public Schools": 15, + "Moorestown Township School District": 15, + "Mooresville City Schools": 15, + "Mooresville Consolidated School Corporation": 15, + "Moorhead Public School District": 15, + "Moorpark Unified School District": 15, + "Moosabec Community School District": 13, + "Moose Lake Public School District": 15, + "Mora Independent Schools": 15, + "Mora Public School District": 15, + "Moraga Elementary School District": 15, + "Moran Independent School District": 15, + "Moran Township School District": 15, + "Moravia Central School District": 15, + "Moravia Community School District": 15, + "Morehouse Parish School District": 15, + "Moreland Elementary School District": 7, + "Moreland School District": 8, + "Morenci Area Schools": 15, + "Morenci Unified District": 15, + "Moreno Valley Unified School District": 15, + "Moretown School District": 7, + "Morgan County R-I School District": 15, + "Morgan County R-II School District": 15, + "Morgan County School District": 75, + "Morgan Hill Unified School District": 15, + "Morgan Independent School District": 15, + "Morgan Local School District": 15, + "Morgan Mill Independent School District": 15, + "Morgan School District": 24, + "Moriah Central School District": 15, + "Moriarty Municipal Schools": 15, + "Morin Elementary School District": 15, + "Morley Stanwood Community Schools": 15, + "Mormon Trail Community School District": 15, + "Morning Sun Community School District": 15, + "Moro Plantation": 2, + "Moro Plantation Public Schools": 5, + "Moro Plantation School District": 1, + "Morongo Unified School District": 15, + "Morrice Area Schools": 15, + "Morrill Public Schools": 15, + "Morris Area Public Schools": 10, + "Morris Central School District": 15, + "Morris Community High School District 101": 15, + "Morris County Unified School District 417": 15, + "Morris Hills Regional School District": 15, + "Morris Plains Borough School District": 15, + "Morris Public School District": 5, + "Morris Public Schools": 15, + "Morris School District 54": 15, + "Morris Township School District": 15, + "Morrison Community Unit School District 6": 15, + "Morrison Public Schools": 15, + "Morrisonville Community Unit School District 1": 15, + "Morristown Central School District": 15, + "Morristown Elementary District": 15, + "Morristown School District": 7, + "Morrisville-Eaton Central School District": 15, + "Morrisville Borough School District": 15, + "Morrow School District 1": 15, + "Morton Community Unit School District 709": 15, + "Morton Grove School District 70": 15, + "Morton Independent School District": 15, + "Morton School District": 15, + "Moscow Public Schools Unified School District 209": 15, + "Moscow School District 281": 15, + "Moseley Public School": 15, + "Moses Lake School District": 15, + "Moshannon Valley School District": 15, + "Mosinee School District": 15, + "Mosquero Municipal Schools": 15, + "Moss Point School District": 15, + "Moss Public Schools": 15, + "Mossyrock School District": 15, + "Mother Lode Union Elementary School District": 15, + "Motley County Independent School District": 15, + "Mott-Regent Public School District 1": 15, + "Moulton-Udell Community School District": 15, + "Moulton Independent School District": 15, + "Moultonborough School District": 15, + "Mound Bayou Public School": 7, + "Mound City R-II School District": 10, + "Moundridge Unified School District 423": 15, + "Mounds Public Schools": 15, + "Mounds View Public School District": 15, + "Mount Abraham Union High School District 28": 7, + "Mount Adams School District": 15, + "Mount Airy City Schools": 15, + "Mount Angel School District 91": 15, + "Mount Anthony UHSD #14": 1, + "Mount Anthony UHSD #14 (6-12)": 1, + "Mount Anthony UHSD 14": 1, + "Mount Anthony UHSD 14 (6-12)": 1, + "Mount Anthony Union High School District 14": 7, + "Mount Anthony Union High School District 14 (7-12)": 4, + "Mount Arlington Borough School District": 15, + "Mount Ascutney School District #86": 1, + "Mount Ascutney School District 86": 1, + "Mount Ayr Community School District": 15, + "Mount Baker School District": 15, + "Mount Baldy Joint Elementary School District": 15, + "Mount Calm Independent School District": 15, + "Mount Carmel Area School District": 15, + "Mount Clemens Community School District": 15, + "Mount Desert": 14, + "Mount Desert Community School District": 15, + "Mount Desert School District": 1, + "Mount Diablo Unified School District": 15, + "Mount Enterprise Independent School District": 15, + "Mount Ephraim Borough School District": 15, + "Mount Gilead Exempted Village School District": 15, + "Mount Greylock School District": 15, + "Mount Greylock/New Lebanon (NY) School Districts in Hancock (7-12)": 15, + "Mount Healthy City School District": 15, + "Mount Holly School District": 7, + "Mount Holly Township School District": 15, + "Mount Horeb Area School District": 15, + "Mount Ida School District": 15, + "Mount Laurel Township School District": 15, + "Mount Lebanon School District": 8, + "Mount Mansfield Unified Union School District #401": 1, + "Mount Mansfield Unified Union School District 401": 1, + "Mount Mansfield Union School District 17": 7, + "Mount Markham (Bridgewater-W. Winfield) Central School District": 3, + "Mount Markham Central School District": 11, + "Mount Morris Central School District": 15, + "Mount Morris Consolidated School District": 15, + "Mount Olive Community Unit School District 5": 15, + "Mount Olive Township School District": 15, + "Mount Pleasant Area School District": 15, + "Mount Pleasant Central School District": 15, + "Mount Pleasant City School District": 15, + "Mount Pleasant Community School District": 15, + "Mount Pleasant Elementary School District": 15, + "Mount Pleasant Independent School District": 15, + "Mount Pleasant Independent School District (9-12) in Winfield": 9, + "Mount Pleasant Public School District 4": 15, + "Mount Pleasant School District": 15, + "Mount Pleasant Township Community School Corporation": 14, + "Mount Prospect School District 57": 15, + "Mount Pulaski Community Unit District 23": 15, + "Mount Shasta Union Elementary School District": 15, + "Mount Sinai Union Free School District": 15, + "Mount Tabor School District": 7, + "Mount Union Area School District": 15, + "Mount Vernon-Enola School District": 15, + "Mount Vernon City School District": 20, + "Mount Vernon Community School Corporation": 15, + "Mount Vernon Community School District": 15, + "Mount Vernon Independent School District": 15, + "Mount Vernon Metropolitan School District": 15, + "Mount Vernon R-V School District": 15, + "Mount Vernon School District": 26, + "Mount Vernon School District 17-3": 15, + "Mount Vernon School District 80": 15, + "Mount Vernon Township High School District 201": 15, + "Mount Zion Community Unit School District 3": 15, + "Mountain Brook City School District": 15, + "Mountain Elementary School District": 15, + "Mountain Empire Unified School District": 15, + "Mountain Grove R-III School District": 15, + "Mountain Home School District": 15, + "Mountain Home School District 193": 15, + "Mountain House Elementary School District": 15, + "Mountain Iron-Buhl School District": 15, + "Mountain Lake Public Schools": 15, + "Mountain Lakes Borough School District": 15, + "Mountain Pine School District": 15, + "Mountain Towns RED School District": 2, + "Mountain Union Elementary School District": 15, + "Mountain Valley School District RE-1": 15, + "Mountain Valley Unified School District": 15, + "Mountain View-Birch Tree R-III School District": 15, + "Mountain View-Gotebo Schools": 15, + "Mountain View-Los Altos Union School District": 15, + "Mountain View Elementary School District": 13, + "Mountain View Elementary School District (Los Angeles County)": 15, + "Mountain View Elementary School District (San Bernardino County)": 15, + "Mountain View School District": 30, + "Mountain View School District 244": 15, + "Mountain View Whisman Elementary School District": 15, + "Mountainair Public Schools": 15, + "Mountainburg Schools": 15, + "Mountainside Borough School District": 15, + "Moyers Public Schools": 15, + "Mt. Abraham Unified School District": 5, + "Mt. Lebanon School District": 7, + "Muenster Independent School District": 15, + "Muhlenberg County School District": 15, + "Muhlenberg School District": 15, + "Mukilteo School District": 15, + "Mukwonago School District": 15, + "Mulberry Elementary School District": 15, + "Mulberry Grove Community Unit School District 1": 15, + "Mulberry School District": 15, + "Muldrow Public Schools": 15, + "Muleshoe Independent School District": 15, + "Mulhall-Orlando Public Schools": 15, + "Mullan School District 392": 15, + "Mullen Public Schools": 15, + "Mullica Township School District": 15, + "Mullin Independent School District": 15, + "Mullinville Unified School District 424": 3, + "Mulvane Unified School District 263": 15, + "Mumford Independent School District": 15, + "Muncie Community Schools": 15, + "Muncy School District": 15, + "Munday Consolidated Independent School District": 15, + "Mundelein Consolidated High School District 120": 15, + "Mundelein Elementary School District 75": 15, + "Munich Public School District 19": 15, + "Munising Public Schools": 15, + "Munster School Town": 15, + "Mupu Elementary School District": 15, + "Murchison Independent School District": 15, + "Murfreesboro City Elementary School District": 7, + "Murfreesboro City School District": 8, + "Murfreesboro School District": 3, + "Muroc Joint Unified School District": 15, + "Murphy Elementary District": 15, + "Murphysboro Community Unit School District 186": 15, + "Murray Community School District": 15, + "Murray County Central School District": 15, + "Murray County School District": 15, + "Murray Independent School District": 15, + "Murray School District": 15, + "Murrieta Valley Unified School District": 15, + "Murtaugh Joint School District 418": 15, + "Muscatine Community School District": 15, + "Muscle Shoals City School District": 15, + "Muscogee County for Fort Benning": 14, + "Muscogee County School District": 15, + "Muskego-Norway School District": 15, + "Muskegon City School District": 15, + "Muskegon Heights School District": 15, + "Muskogee Public Schools": 15, + "Mustang Public Schools": 15, + "Myrtle Point School District 41": 15, + "N.I.C.E. Community Schools": 15, + "Naches Valley School District": 15, + "Naco Elementary District": 15, + "Nacogdoches Independent School District": 15, + "Nadaburg Unified School District": 15, + "Nahant School District": 15, + "Nampa School District 131": 15, + "Nantucket School District": 15, + "Nanuet Union Free School District": 15, + "Napa Valley Unified School District": 15, + "Napavine School District": 15, + "Naperville Community Unit District 203": 15, + "Naples Central School District": 15, + "Napoleon Area City School District": 15, + "Napoleon Community Schools": 15, + "Napoleon Public School District 2": 15, + "Narragansett School District": 30, + "Naselle-Grays River Valley School District": 14, + "Naselle-Grays School District": 1, + "Nash-Rocky Mount Schools": 15, + "Nash Public School District 51": 1, + "Nashoba Public School": 15, + "Nashoba School District": 15, + "Nashua-Plainfield Community School District": 15, + "Nashua K-12 Schools": 15, + "Nashua School District": 15, + "Nashville-Davidson County School District": 7, + "Nashville Community High School District 99": 15, + "Nashville Consolidated Community School District 49": 15, + "Nashville Plantation": 14, + "Nashville Plantation School District": 1, + "Nashville School District": 15, + "Nashwauk-Keewatin School District": 15, + "Nassau County School District": 15, + "Natalia Independent School District": 15, + "Natchez-Adams School District": 15, + "Natchitoches Parish School District": 15, + "Natick School District": 15, + "National Elementary School District": 15, + "National Park Borough School District": 15, + "National Trail Local School District": 15, + "Natomas Unified School District": 15, + "Natrona County School District 1": 15, + "Naugatuck School District": 15, + "Naughton Public School District 25": 15, + "Nauset School District": 15, + "Nauset/Provincetown School Districts in Turo (7-12)": 15, + "Nauvoo-Colusa Community Unit School District 325": 15, + "Navajo Public Schools": 15, + "Navarro Independent School District": 15, + "Navasota Independent School District": 15, + "Naylor R-II School District": 15, + "Nazareth Area School District": 15, + "Nazareth Independent School District": 15, + "Neah-Kah-Nie School District 56": 15, + "Nebo School District": 15, + "Nebraska City Public Schools": 15, + "Nebraska Unified District 1": 12, + "Necedah Area School District": 15, + "Neches Independent School District": 15, + "Nederland Independent School District": 15, + "Nedrose Public School District 4": 15, + "Needham School District": 15, + "Needles Unified School District": 15, + "Needville Independent School District": 15, + "Neelyville R-IV School District": 15, + "Neenah School District": 15, + "Negaunee Public Schools": 15, + "Neillsville School District": 15, + "Nekoosa School District": 15, + "Neligh-Oakdale Schools": 15, + "Nell Holcomb R-IV School District": 15, + "Nelson County Public Schools": 15, + "Nelson County School District": 15, + "Nelson Public School District 8": 5, + "Nelson School District": 15, + "Nelsonville-York City School District": 15, + "Nemaha Unified School District 115": 12, + "Nemaha Valley Schools Unified School District 442": 3, + "Nemo Vista School District": 15, + "Nenana City School District": 15, + "Neodesha Unified School District 461": 15, + "Neoga Community Unit School District 3": 15, + "Neosho Joint No. 3 School District": 9, + "Neosho R-5 School District": 5, + "Neosho R-V School District": 10, + "Neponset Community Consolidated District 307": 3, + "Neptune City School District": 15, + "Neptune Township School District": 15, + "Neshaminy School District": 15, + "Neshannock Township School District": 15, + "Neshoba County School District": 15, + "Nespelem School District": 15, + "Ness City Unified School District 303": 15, + "Nesson Public School District 2": 15, + "Nestucca Valley School District 101J": 15, + "Netcong Borough School District": 15, + "Nett Lake Public School District": 15, + "Nettle Creek Community Consolidated School District 24C": 15, + "Nettle Creek School Corporation": 15, + "Nettleton School District": 30, + "Nevada City Elementary School District": 15, + "Nevada Community School District": 15, + "Nevada Joint Union High School District": 15, + "Nevada Joint Union High School District (9-12)": 6, + "Nevada R-V School District": 15, + "Nevada School District": 15, + "Nevis Public School District": 15, + "New Albany-Floyd County Consolidated Schools": 15, + "New Albany-Plain Local School District": 15, + "New Albany Public Schools": 15, + "New Athens Community Unit School District 60": 15, + "New Auburn School District": 15, + "New Bedford School District": 15, + "New Berlin CUSD 16": 1, + "New Berlin School District": 15, + "New Bloomfield R-III School District": 15, + "New Boston Independent School District": 15, + "New Boston Local School District": 15, + "New Boston School District": 15, + "New Braunfels Independent School District": 15, + "New Bremen Local School District": 15, + "New Brighton Area School District": 15, + "New Britain School District": 15, + "New Brunswick City School District": 15, + "New Buffalo Area School District": 15, + "New Canaan School District": 15, + "New Caney Independent School District": 15, + "New Castle Area School District": 15, + "New Castle Community School Corporation": 15, + "New Castle School District": 15, + "New Deal Independent School District": 15, + "New Diana Independent School District": 15, + "New Durham Township Metropolitan School District": 15, + "New England Public School District 9": 15, + "New Fairfield School District": 15, + "New Franklin R-I School District": 15, + "New Glarus School District": 15, + "New Hampton Community School District": 15, + "New Hanover County Schools": 15, + "New Hanover Township School District": 15, + "New Harmony Town and Township Consolidated Schools": 7, + "New Hartford Central School District": 15, + "New Hartford School District": 15, + "New Haven Community Schools": 15, + "New Haven School District": 37, + "New Haven Unified School District": 15, + "New Holland-Middletown Elementary School District 88": 15, + "New Holstein School District": 15, + "New Home Independent School District": 15, + "New Hope-Solebury School District": 15, + "New Hope Community Consolidated School District 6": 15, + "New Hope Elementary School District": 15, + "New Hyde Park-Garden City Park Union Free School District": 15, + "New Jerusalem Elementary School District": 15, + "New Kensington-Arnold School District": 15, + "New Kent County Public Schools": 15, + "New Knoxville Local School District": 15, + "New Lebanon Central School District": 15, + "New Lebanon Local School District": 15, + "New Lenox School District 122": 15, + "New Lexington City School District": 15, + "New Lima Public Schools": 15, + "New Lisbon School District": 15, + "New London-Spicer School District": 15, + "New London Community School District": 15, + "New London Local School District": 15, + "New London School District": 30, + "New Lothrop Area Public School": 15, + "New Madrid County R-I School District": 15, + "New Market Community School District": 3, + "New Miami Local School District": 15, + "New Milford Borough School District": 15, + "New Milford School District": 15, + "New Paltz Central School District": 15, + "New Philadelphia City School District": 15, + "New Plymouth School District 372": 15, + "New Prague Area Schools": 15, + "New Prairie United School Corporation": 15, + "New Providence Borough School District": 15, + "New Public School District 8": 10, + "New Richmond Exempted Village School District": 15, + "New Richmond School District": 15, + "New Riegel Local School District": 15, + "New Rochelle City School District": 15, + "New Rockford-Sheyenne Public School District 2": 15, + "New Salem-Almont School District": 14, + "New Salem-Wendell School District": 15, + "New Salem Public School District 7": 1, + "New Shoreham School District": 15, + "New Simpson Hill Consolidated District 32": 15, + "New Suffolk Common School District": 15, + "New Summerfield Independent School District": 15, + "New Sweden": 14, + "New Sweden School District": 1, + "New Town Public School District 1": 15, + "New Trier Township High School District 203": 15, + "New Ulm Public School District": 15, + "New Underwood School District 51-3": 15, + "New Waverly Independent School District": 15, + "New York City Department Of Education": 15, + "New York Mills Public School District": 15, + "New York Mills Union Free School District": 15, + "New York R-IV School District": 15, + "Newark Central School District": 15, + "Newark City School District": 30, + "Newark Community Consolidated School District 66": 15, + "Newark Community High School District 18": 15, + "Newark School District": 7, + "Newark Unified School District": 15, + "Newark Valley Central School District": 15, + "Newaygo Public School District": 15, + "Newberg School District 29J": 15, + "Newberry County School District": 15, + "Newburg R-II School District": 15, + "Newburg United Public School District 54": 15, + "Newburgh City School District": 15, + "Newbury Local School District": 12, + "Newbury School District": 7, + "Newburyport School District": 15, + "Newcastle": 14, + "Newcastle Elementary School District": 15, + "Newcastle Independent School District": 15, + "Newcastle Public Schools": 24, + "Newcastle School District": 1, + "Newcomb Central School District": 15, + "Newcomerstown Exempted Village School District": 15, + "Newell-Fonda Community School District": 15, + "Newell School District 09-2": 15, + "Newfane Central School District": 15, + "Newfane School District": 7, + "Newfield Central School District": 15, + "Newfield Elementary School District": 15, + "Newfields School District": 15, + "Newfound Area School District": 15, + "Newhall Elementary School District": 15, + "Newington School District": 30, + "Newkirk Public Schools": 15, + "Newman-Crows Landing Unified School District": 15, + "Newman Grove Public Schools": 15, + "Newmarket School District": 15, + "Newport-Mesa Unified School District": 15, + "Newport City Elementary School District": 7, + "Newport City School District": 17, + "Newport Independent School District": 15, + "Newport News City Public Schools": 15, + "Newport School District": 75, + "Newport Town School District": 9, + "Newton-Conover City Schools": 15, + "Newton Community School District": 15, + "Newton County School District": 30, + "Newton Falls Exempted Village School District": 15, + "Newton Independent School District": 15, + "Newton Local School District": 15, + "Newton Municipal School": 15, + "Newton School District": 15, + "Newton Town School District": 15, + "Newton Unified School District 373": 15, + "Newtown-Harris R-III School District": 15, + "Newtown School District": 15, + "Nezperce Joint School District 302": 15, + "Niagara-Wheatfield Central School District": 15, + "Niagara Falls City School District": 15, + "Niagara School District": 15, + "Niangua R-V School District": 15, + "Nicasio Elementary School District": 15, + "Nicholas County School District": 30, + "Nickerson Unified School District 309": 15, + "Nicolet Union High School District": 15, + "Nicollet Public School District": 15, + "Niles City School District": 15, + "Niles Community School District": 15, + "Niles Elementary School District 71": 15, + "Niles Township Community High School District 219": 15, + "Nine Mile Falls School District": 15, + "Nineveh-Hensley-Jackson United School Corporation": 15, + "Ninnekah Public Schools": 15, + "Niobrara County School District 1": 15, + "Niobrara Public Schools": 15, + "Nippersink School District 2": 15, + "Nishna Valley Community School District": 3, + "Niskayuna Central School District": 15, + "Nixa School District": 15, + "Nixon-Smiley Consolidated Independent School District": 15, + "Noble Local School District": 15, + "Noble Public Schools": 15, + "Nobleboro": 14, + "Nobleboro School District": 1, + "Noblesville Schools": 15, + "Nocona Independent School District": 15, + "Nodaway-Holt R-VII School District": 15, + "Nodaway Valley Community School District": 15, + "Nogales Unified District": 15, + "Nokomis Community Unit School District 22": 15, + "Nome School District": 15, + "Nooksack Valley School District": 15, + "Nora Springs-Rock Falls Community School District": 3, + "Norborne R-VIII School District": 15, + "Nordheim Independent School District": 15, + "Nordonia Hills City School District": 15, + "Norfolk City Public Schools": 15, + "Norfolk Public Schools": 15, + "Norfolk School District": 30, + "Norfork Schools": 15, + "Norman County East School District": 15, + "Norman County West School District": 13, + "Norman Public Schools": 15, + "Normandy School District": 7, + "Normandy Schools Collaborative": 8, + "Normangee Independent School District": 15, + "Norphlet School District": 7, + "Norridge School District 80": 15, + "Norris City-Omaha-Enfield Community Unit School District 3": 15, + "Norris Elementary School District": 15, + "Norris School District": 15, + "Norris School District 160": 15, + "Norristown Area School District": 15, + "North Adams-Jerome Schools": 15, + "North Adams Community Schools": 15, + "North Adams School District": 15, + "North Adams School District in Clarksburg (9-12)": 15, + "North Adams School District in Florida (9-12)": 15, + "North Adams School District in Monroe (9-12)": 15, + "North Allegheny School District": 15, + "North Andover School District": 15, + "North Andrew County R-VI School District": 15, + "North Arlington Borough School District": 15, + "North Attleborough School District": 15, + "North Babylon Union Free School District": 15, + "North Baltimore Local School District": 15, + "North Bass Local School District": 15, + "North Beach School District": 15, + "North Bellmore Union Free School District": 15, + "North Bend Central Public Schools": 15, + "North Bend School District 13": 15, + "North Bennington Incorporated School District": 9, + "North Bergen Township School District": 15, + "North Bolivar Consolidated School District": 8, + "North Bolivar School District": 7, + "North Boone Community Unit School District 200": 15, + "North Border School District 100": 15, + "North Branch Area Schools": 15, + "North Branch Public Schools": 15, + "North Branford School District": 15, + "North Brookfield School District": 15, + "North Brunswick Township School District": 15, + "North Butler Community School District": 12, + "North Caldwell Borough School District": 15, + "North Callaway County R-I School District": 10, + "North Callaway R-I School District": 5, + "North Canaan School District": 15, + "North Canton City School District": 15, + "North Cape School District": 15, + "North Cedar Community School District": 15, + "North Central-Washington Schools Unified School District 108": 8, + "North Central - Washington Schools Unified School District 108": 5, + "North Central Area Schools": 15, + "North Central Community School District": 3, + "North Central Local School District": 12, + "North Central Local School District (Medina and Wayne Counties)": 3, + "North Central Local School District (Williams County)": 3, + "North Central Parke Community School Corporation": 10, + "North Central Public School District 28": 5, + "North Central Unified School District 221": 1, + "North Chicago School District 187": 15, + "North Clackamas School District 12": 15, + "North Clarion County School District": 15, + "North Clay Community Unit School District 25": 15, + "North College Hill City School District": 15, + "North Collins Central School District": 15, + "North Colonie Central School District": 14, + "North Colonie Central School District (Albany County)": 1, + "North Conejos School District RE-1J": 15, + "North Country Junior/Senior UHSD #22 (7-12)": 1, + "North Country Junior/Senior UHSD 22 (7-12)": 1, + "North Country Senior UHSD #22": 1, + "North Country Senior UHSD 22": 1, + "North Country Supervisory Union": 6, + "North Country Union High School District 22": 3, + "North Country Union High School District 22 (7-12)": 4, + "North Country Union High School District 22 (9-12)": 4, + "North County Joint Union Elementary School District": 15, + "North Cow Creek Elementary School District": 15, + "North Crawford School District": 15, + "North Daviess Community Schools": 15, + "North Daviess R-III School District": 15, + "North Dickinson County Schools": 15, + "North Douglas School District 22": 15, + "North East Independent School District": 15, + "North East School District": 15, + "North Fayette Community School District": 10, + "North Fayette Valley Community School District": 5, + "North Fond du Lac School District": 15, + "North Forest Independent School District": 5, + "North Fork Local School District": 15, + "North Franklin School District": 15, + "North Gem School District 149": 15, + "North Gibson School Corporation": 15, + "North Greenbush Common School District": 5, + "North Greenbush Common School District (Williams)": 10, + "North Greene Unit School District 3": 15, + "North Haledon Borough School District": 15, + "North Hampton School District": 15, + "North Hanover Township School District": 15, + "North Harlem Colony Elementary School District": 15, + "North Harrison Community School Corporation": 15, + "North Harrison R-III School District": 15, + "North Haven School District": 15, + "North Hero School District": 7, + "North Hills School District": 15, + "North Hopkins Independent School District": 15, + "North Hunterdon-Voorhees Regional School District": 15, + "North Huron School District": 15, + "North Iowa Community School District": 15, + "North Jackson Unified School District 335": 15, + "North Judson-San Pierre School Corporation": 15, + "North Kansas City 74 School District": 10, + "North Kansas City School District": 5, + "North Kingstown School District": 15, + "North Kitsap School District": 15, + "North Knox School Corporation": 15, + "North Kossuth Community School District": 15, + "North Lake School District": 15, + "North Lake School District 14": 15, + "North Lakeland School District": 15, + "North Lamar Independent School District": 15, + "North Lawrence Community Schools": 15, + "North Linn Community School District": 15, + "North Little Rock School District": 15, + "North Loup Scotia Public Schools": 9, + "North Lyon County Unified School District 251": 15, + "North Mac Community Unit School District 34": 12, + "North Mahaska Community School District": 15, + "North Marion School District 15": 15, + "North Mason School District": 15, + "North Mercer County R-III School District": 15, + "North Merrick Union Free School District": 15, + "North Miami Community Schools": 15, + "North Middlesex School District": 15, + "North Monterey County Unified School District": 15, + "North Montgomery Community School Corporation": 15, + "North Muskegon Public Schools": 15, + "North Newton School Corporation": 15, + "North Nodaway County R-VI School District": 15, + "North Olmsted City School District": 15, + "North Ottawa County Unified School District 239": 15, + "North Palos School District 117": 15, + "North Panola School District": 15, + "North Park School District R-1": 15, + "North Pekin-Marquette Heights School District 102": 15, + "North Pemiscot County R-I School District": 15, + "North Penn School District": 15, + "North Pike School District": 15, + "North Plainfield Borough School District": 15, + "North Platte County R-I School District": 15, + "North Platte Public Schools": 15, + "North Pocono School District": 15, + "North Polk Community School District": 15, + "North Posey County Schools Metropolitan School District": 15, + "North Powder School District 8J": 15, + "North Providence School District": 15, + "North Putnam Community Schools": 15, + "North Reading School District": 15, + "North Ridgeville City School District": 15, + "North River School District": 15, + "North Rock Creek Public School": 15, + "North Rose-Wolcott Central School District": 15, + "North Royalton City School District": 15, + "North Sacramento Elementary School District": 1, + "North Salem Central School District": 15, + "North Sanpete School District": 15, + "North Santiam School District 29J": 15, + "North Sargent Public School District 3": 15, + "North Schuylkill School District": 15, + "North Scott Community School District": 15, + "North Shelby School District": 10, + "North Shore Central School District": 15, + "North Shore School District 112": 15, + "North Slope Borough School District": 15, + "North Smithfield School District": 15, + "North Spencer County School Corporation": 15, + "North St. Francis County R-I School District": 15, + "North St. Paul-Maplewood-Oakdale School District": 6, + "North St. Paul-Maplewood School District": 9, + "North Star Elementary School District": 15, + "North Star High School District": 15, + "North Star School District": 29, + "North Stonington School District": 15, + "North Summit School District": 15, + "North Syracuse Central School District": 15, + "North Tama County Community School District": 15, + "North Thurston Public Schools": 14, + "North Thurston School District": 1, + "North Tippah School District": 15, + "North Tonawanda City School District": 15, + "North Union Community School District": 8, + "North Union Local School District": 15, + "North Vermillion Community School Corporation": 15, + "North Wamac School District 186": 15, + "North Warren Central School District": 15, + "North Warren Regional School District": 15, + "North Wasco School District 21": 15, + "North Wayne Community Unit School District 200": 15, + "North West Hendricks Schools": 15, + "North White School Corporation": 15, + "North Wildwood City School District": 15, + "North Winneshiek Community School District": 11, + "North Wood R-IV School District": 15, + "North Zulch Independent School District": 15, + "Northampton Area School District": 15, + "Northampton County Public Schools": 15, + "Northampton County Schools": 15, + "Northampton School District": 15, + "Northborough-Southborough School District": 15, + "Northborough School District": 15, + "Northbridge School District": 15, + "Northbrook Elementary School District 27": 15, + "Northbrook School District 28": 15, + "Northbrook/Glenview School District 30": 15, + "Northeast (Webutuck) Central School District": 3, + "Northeast Bradford School District": 15, + "Northeast Central School District": 12, + "Northeast Community School District": 15, + "Northeast Dubois County School Corporation": 15, + "Northeast Hamilton Community School District": 11, + "Northeast Kingdom Choice School District": 2, + "Northeast Nodaway County R-V School District": 15, + "Northeast Randolph County R-IV School District": 15, + "Northeast School Corporation": 15, + "Northeast Unified School District 246": 15, + "Northeast Vernon County R-I School District": 15, + "Northeastern Clinton Central School District": 15, + "Northeastern Local School District (Champaign and Clark Counties)": 15, + "Northeastern Local School District (Defiance County)": 14, + "Northeastern Local School District (Defiance County) ": 1, + "Northeastern Wayne Schools": 15, + "Northeastern York School District": 15, + "Northern Adirondack Central School District": 15, + "Northern Bedford County School District": 15, + "Northern Burlington Regional School District": 15, + "Northern Cambria School District": 15, + "Northern Cass Public School District 97": 15, + "Northern Highlands Regional School District": 15, + "Northern Humboldt Union High School District": 15, + "Northern Lebanon School District": 15, + "Northern Lehigh School District": 15, + "Northern Local School District": 15, + "Northern Mountain Valley Unified Union School District #85": 1, + "Northern Mountain Valley Unified Union School District 85": 1, + "Northern Ozaukee School District": 15, + "Northern Potter School District": 15, + "Northern Tioga School District": 15, + "Northern Valley Regional School District": 15, + "Northern Valley Unified School District 212": 15, + "Northern Wells Community Schools": 15, + "Northern York County School District": 15, + "Northfield": 14, + "Northfield City School District": 15, + "Northfield Public School District": 15, + "Northfield School District": 8, + "Northfield Township High School District 225": 15, + "Northgate School District": 15, + "Northglenn-Thornton School District 12": 10, + "Northland Community Schools": 15, + "Northland Pines School District": 15, + "Northmont City School District": 15, + "Northmor Local School District": 15, + "Northport-East Northport Union Free School District": 15, + "Northport Public School District": 15, + "Northport Public Schools": 8, + "Northport School District": 15, + "Northridge Local School District (Delaware, Knox, and Licking Counties)": 12, + "Northridge Local School District (Knox and Licking Counties)": 3, + "Northridge Local School District (Montgomery County)": 15, + "Northshore School District": 15, + "Northside Independent School District (Bandera, Bexar, and Medina Counties)": 15, + "Northside Independent School District (Wilbarger County)": 15, + "Northumberland County Public Schools": 15, + "Northumberland School District": 15, + "Northvale Borough School District": 15, + "Northview Public School District": 15, + "Northville Central School District": 15, + "Northville Public Schools": 15, + "Northwest Allen County Schools": 15, + "Northwest Arctic Borough School District": 15, + "Northwest Area School District": 15, + "Northwest Independent School District": 15, + "Northwest Local School District (Butler and Hamilton Counties)": 15, + "Northwest Local School District (Scioto County)": 15, + "Northwest Local School District (Stark, Summit, and Wayne Counties)": 15, + "Northwest Public Schools": 15, + "Northwest R-I School District": 15, + "Northwest School District": 15, + "Northwest School District 52-3": 1, + "Northwestern Area School District 56-7": 14, + "Northwestern Community Unit School District 2": 15, + "Northwestern Consolidated School Corporation": 15, + "Northwestern Lehigh School District": 15, + "Northwestern Local School District (Ashland and Wayne Counties)": 15, + "Northwestern Local School District (Champaign and Clark Counties)": 15, + "Northwestern R-I School District": 15, + "Northwestern School Corporation": 15, + "Northwestern School District": 15, + "Northwestern School District 56-3": 1, + "Northwood-Kensett Community School District": 15, + "Northwood Local School District": 15, + "Northwood Public School District 129": 15, + "Northwood School District": 30, + "Norton City Public Schools": 15, + "Norton City School District": 15, + "Norton Community Schools Unified School District 211": 15, + "Norton School District": 22, + "Norwalk-La Mirada Unified School District": 15, + "Norwalk-Ontario-Wilton School District": 15, + "Norwalk City School District": 15, + "Norwalk Community School District": 15, + "Norwalk School District": 15, + "Norway-Vulcan Area Schools": 15, + "Norway Joint No. 7 School District": 15, + "Norwayne Local School District": 12, + "Norwell School District": 15, + "Norwich City School District": 15, + "Norwich School District": 30, + "Norwin School District": 15, + "Norwood-Norfolk Central School District": 15, + "Norwood Borough School District": 15, + "Norwood City School District": 15, + "Norwood Elementary School District 63": 15, + "Norwood Public School": 15, + "Norwood Public School District": 3, + "Norwood R-I School District": 15, + "Norwood School District": 15, + "Norwood School District R-2J": 15, + "Nottawa Community School": 15, + "Nottingham School District": 15, + "Nottoway County Public Schools": 15, + "Notus School District 135": 15, + "Novato Unified School District": 15, + "Novi Community School District": 15, + "Novice Independent School District": 5, + "Nowata Public Schools": 15, + "Noxon Elementary School District": 15, + "Noxon High School District": 15, + "Noxubee County School District": 15, + "NRHEG School District": 15, + "Nueces Canyon Consolidated Independent School District": 15, + "Nuestro Elementary School District": 15, + "Nursery Independent School District": 15, + "Nutley Town School District": 15, + "Nuview Union Elementary School District": 15, + "Nyack Union Free School District": 15, + "Nye County School District": 15, + "Nye Elementary School District": 15, + "Nyssa School District 26": 15, + "O'Donnell Independent School District": 15, + "O'Fallon Community Consolidated School District 90": 15, + "O'Fallon Township High School District 203": 15, + "O'Neill Public Schools": 15, + "Oak Bluffs School District": 15, + "Oak Creek-Franklin School District": 15, + "Oak Grove Elementary School District": 15, + "Oak Grove Public School": 15, + "Oak Grove R-VI School District": 15, + "Oak Grove School District 68 (Lake County)": 15, + "Oak Grove School District 68 (Peoria County)": 15, + "Oak Grove Union Elementary School District": 15, + "Oak Harbor School District": 15, + "Oak Hill Community School District": 1, + "Oak Hill R-I School District": 15, + "Oak Hill Union Local School District": 15, + "Oak Hill United School Corporation": 15, + "Oak Hills Local School District": 15, + "Oak Lawn-Hometown School District 123": 15, + "Oak Lawn Community High School District 229": 15, + "Oak Park and River Forest District 200": 15, + "Oak Park City School District": 15, + "Oak Park Elementary School District 97": 15, + "Oak Park Unified School District": 15, + "Oak Ridge City School District": 15, + "Oak Ridge R-VI School District": 15, + "Oak Run Elementary School District": 15, + "Oak Valley Union Elementary School District": 15, + "Oak View Union Elementary School District": 15, + "Oakdale Community Consolidated School District 1": 15, + "Oakdale Joint Unified School District": 15, + "Oakdale Joint Unified School District (9-12)": 6, + "Oakdale Public School": 15, + "Oakes Public School District 41": 15, + "Oakesdale School District": 15, + "Oakfield-Alabama Central School District": 15, + "Oakfield School District": 15, + "Oakland Borough School District": 15, + "Oakland Community Unit School District 5": 15, + "Oakland Craig Public Schools": 15, + "Oakland School District 1": 15, + "Oakland Unified School District": 15, + "Oakley Unified School District 274": 15, + "Oakley Union Elementary School District": 15, + "Oaklyn Borough School District": 15, + "Oakridge Public Schools": 15, + "Oakridge School District 76": 15, + "Oaks-Mission Public Schools": 15, + "Oakville School District": 15, + "Oakwood City School District": 15, + "Oakwood Community Unit School District 76": 15, + "Oakwood Independent School District": 15, + "Oberlin City School District": 15, + "Oberlin Unified School District 294": 15, + "Oberon Public School District 16": 15, + "Obion County School District": 15, + "Oblong Community Unit School District 4": 15, + "Ocean Beach School District": 15, + "Ocean City School District": 15, + "Ocean Gate Borough School District": 15, + "Ocean Springs School District": 15, + "Ocean Township School District": 6, + "Ocean Township School District (Monmouth County)": 12, + "Ocean Township School District (Ocean County)": 12, + "Ocean View Elementary School District (Orange County)": 15, + "Ocean View Elementary School District (Ventura County)": 15, + "Oceanport Borough School District": 15, + "Oceanside Unified School District": 15, + "Oceanside Union Free School District": 15, + "Oconee County School District": 30, + "Oconomowoc Area School District": 15, + "Oconto Falls School District": 15, + "Oconto School District": 15, + "Ocosta School District": 15, + "Octorara Area School District": 15, + "Odebolt-Arthur Community School District": 10, + "Odebolt Arthur Battle Creek Ida Grove Community School District": 5, + "Odell Community Consolidated School District 435": 15, + "Odem-Edroy Independent School District": 15, + "Odessa-Montour Central School District": 15, + "Odessa R-VII School District": 15, + "Odessa School District": 15, + "Odin Community High School District 700": 3, + "Odin Public School District 722": 12, + "Odin School District 122": 3, + "Oelrichs School District 23-3": 15, + "Oelwein Community School District": 15, + "Ogallala Public Schools": 15, + "Ogden Community School District": 15, + "Ogden School District": 15, + "Ogdensburg Borough School District": 15, + "Ogdensburg City School District": 15, + "Ogilvie Public School District": 15, + "Oglala Lakota County School District 65-1": 4, + "Oglesby Elementary School District 125": 15, + "Oglesby Independent School District": 15, + "Oglethorpe County School District": 15, + "Ohio Community Consolidated School District 17": 15, + "Ohio Community High School District 505": 15, + "Ohio County School District": 30, + "Oil City Area School District": 15, + "Oilton Public Schools": 15, + "Ojai Unified School District": 15, + "Okaloosa County School District": 15, + "Okanogan School District": 15, + "Okarche Public Schools": 15, + "Okaw Valley Community Unit School District 302": 15, + "Okay Public Schools": 15, + "Okeechobee County School District": 15, + "Okeene Public Schools": 15, + "Okemah Public Schools": 15, + "Okemos Public Schools": 15, + "Oklahoma City Public Schools": 15, + "Oklahoma Union Public Schools": 15, + "Oklee Public School District": 5, + "Okmulgee Public Schools": 15, + "Okoboji Community School District": 15, + "Okolona Separate School District": 15, + "Oktaha Public Schools": 15, + "Oktibbeha County School District": 7, + "Olathe Unified School District 233": 15, + "Old Adobe Union Elementary School District": 15, + "Old Bridge Township School District": 15, + "Old Forge School District": 15, + "Old Fort Local School District": 15, + "Old Orchard Beach School District": 1, + "Old Rochester School District": 15, + "Old Saybrook School District": 15, + "Old Tappan Borough School District": 15, + "Old Town School District": 1, + "Oldham-Ramona School District 39-5": 15, + "Oldham County School District": 15, + "Oldmans Township School District": 15, + "Olean City School District": 15, + "Olentangy Local School District": 15, + "Oley Valley School District": 15, + "Olfen Independent School District": 15, + "Olin Consolidated School District": 15, + "Olive Public Schools": 15, + "Olivet Community Schools": 15, + "Olmsted Falls City School District": 15, + "Olney-Bissell Elementary School District": 15, + "Olney Independent School District": 15, + "Olton Independent School District": 15, + "Olustee-Eldorado Public Schools": 6, + "Olustee Public Schools": 9, + "Olympia Community Unit School District 16": 15, + "Olympia School District": 15, + "Omaha Public Schools": 15, + "Omaha School District": 15, + "Omak School District": 15, + "Omro School District": 15, + "Onaga-Havensville-Wheaton Unified School District 322": 15, + "Onalaska Independent School District": 15, + "Onalaska School District": 30, + "Onamia Public School District": 15, + "Onaway Area Community School District": 15, + "Oneida City School District": 15, + "Oneida County School District 351": 15, + "Oneida Special School District": 15, + "Oneida Township School District 3": 15, + "Onekama Consolidated Schools": 15, + "Oneonta City School District": 30, + "Onion Creek School District": 15, + "Onondaga Central School District": 15, + "Onslow County Schools": 15, + "Onsted Community Schools": 15, + "Ontario-Montclair Elementary School District": 7, + "Ontario-Montclair School District": 8, + "Ontario Local School District": 15, + "Ontario School District 8": 15, + "Onteora Central School District": 15, + "Ontonagon Area Schools": 15, + "Oologah-Talala Public Schools": 15, + "Oostburg School District": 15, + "Opdyke-Belle Rive Community Consolidated School District 5": 15, + "Opelika City School District": 15, + "Opheim K-12 Schools": 15, + "Ophir Elementary School District": 8, + "Ophir K-12": 2, + "Opp City School District": 15, + "Oppenheim-Ephratah-St. Johnsville Central School District": 10, + "Oppenheim-Ephratah Central School District": 5, + "Optima Public School": 15, + "Oracle Elementary District": 15, + "Oradell Borough School District": 15, + "Oran R-III School District": 15, + "Orange Beach City School District": 1, + "Orange Center Elementary School District": 15, + "Orange City School District": 15, + "Orange City Township School District": 15, + "Orange County Public Schools": 15, + "Orange County School District": 15, + "Orange County Schools": 15, + "Orange East Supervisory Union": 6, + "Orange Grove Independent School District": 15, + "Orange North Supervisory Union": 3, + "Orange School District": 37, + "Orange Southwest Supervisory Union": 3, + "Orange Southwest Unified School District": 5, + "Orange Unified School District": 15, + "Orange Windsor Supervisory Union": 3, + "Orangeburg County School District": 4, + "Orangeburg School District 3": 11, + "Orangeburg School District 4": 11, + "Orangeburg School District 5": 11, + "Orangefield Independent School District": 15, + "Orangeville Community Unit School District 203": 15, + "Orcas Island School District": 15, + "Orchard Elementary School District": 15, + "Orchard Farm R-V School District": 10, + "Orchard Park Central School District": 15, + "Orchard Prairie School District": 15, + "Orchard View Schools": 15, + "Orcutt Union Elementary School District": 15, + "Ord Public Schools": 15, + "Ore City Independent School District": 15, + "Orearville R-IV School District": 15, + "Oregon-Davis School Corporation": 15, + "Oregon-Howell R-III School District": 15, + "Oregon City School District": 15, + "Oregon City School District 62": 15, + "Oregon Community Unit School District 220": 15, + "Oregon School District": 15, + "Oregon Trail School District 46": 15, + "Orick Elementary School District": 15, + "Orient": 14, + "Orient-Macksburg Community School District": 15, + "Orient School District": 16, + "Orinda Union Elementary School District": 15, + "Orion Community Unit School District 223": 15, + "Oriskany Central School District": 15, + "Orland Joint Unified School District": 15, + "Orland Joint Unified School District (9-12)": 6, + "Orland School District": 1, + "Orland School District 135": 15, + "Orleans Central Supervisory Union": 6, + "Orleans Community Schools": 15, + "Orleans Incorporated School District": 7, + "Orleans Parish School District": 15, + "Orleans School District": 15, + "Orleans Southwest Supervisory Union": 6, + "Orleans Southwest Union Elementary School District #94": 1, + "Orleans Southwest Union Elementary School District 94": 1, + "Oro Grande Elementary School District": 15, + "Orofino Joint School District 171": 15, + "Orondo School District": 15, + "Orono Public School District": 15, + "Orono School District": 1, + "Oroville City Elementary School District": 15, + "Oroville School District": 15, + "Oroville Union High School District": 15, + "Orrick R-XI School District": 15, + "Orrington": 14, + "Orrington School District": 1, + "Orrville City School District": 15, + "Orting School District": 15, + "Ortonville -Bellingham Public School District": 2, + "Ortonville Public School District": 1, + "Ortonville Public Schools": 12, + "Orwell School District": 7, + "Osage City Unified School District 420": 15, + "Osage Community School District": 15, + "Osage County R-I School District": 15, + "Osage County R-II School District": 15, + "Osage County R-III School District": 15, + "Osage Hills Public School": 15, + "Osage Public School": 15, + "Osakis Public School District": 15, + "Osawatomie Unified School District 367": 15, + "Osborn Elementary District": 15, + "Osborn R-O School District": 15, + "Osborne County Unified School District 392": 15, + "Osceola County School District": 15, + "Osceola Public Schools": 15, + "Osceola School District": 45, + "Oscoda Area Schools": 15, + "Oshkosh Area School District": 15, + "Oskaloosa Community School District": 15, + "Oskaloosa Public Schools Unified School District 341": 15, + "Osmond Community Schools": 5, + "Osmond Public Schools": 10, + "Osnaburg Local School District": 15, + "Osseo-Fairchild School District": 15, + "Osseo Public School District": 15, + "Ossining Union Free School District": 15, + "Oswayo Valley School District": 15, + "Oswego City School District": 15, + "Oswego Community Unit School District 308": 15, + "Oswego Unified School District 504": 15, + "Otego-Unadilla (Unatego) Central School District": 3, + "Otego-Unadilla Central School District": 12, + "Othello School District": 15, + "Otis": 14, + "Otis-Bison Unified School District 403": 15, + "Otis School District": 1, + "Otis School District R-3": 15, + "Otsego Local School District": 15, + "Otsego Public Schools": 15, + "Ottawa-Glandorf Local School District": 15, + "Ottawa Elementary School District 141": 15, + "Ottawa Hills Local School District": 15, + "Ottawa Township High School District 140": 15, + "Ottawa Unified School District 290": 15, + "Otter Valley Unified Union School District #53": 1, + "Otter Valley Unified Union School District 53": 1, + "Otter Valley Union High School District 8": 7, + "Otterville R-VI School District": 15, + "Otto-Eldred School District": 15, + "Ottoville Local School District": 15, + "Ottumwa Community School District": 15, + "Ouachita Parish School District": 15, + "Ouachita River School District": 15, + "Ouachita School District": 15, + "Ouray School District R-1": 15, + "Outside Creek Elementary School District": 15, + "Ovando Elementary School District": 15, + "Overton County School District": 15, + "Overton Independent School District": 15, + "Overton Public Schools": 15, + "Ovid-Elsie Area Schools": 15, + "Owasso Public Schools": 15, + "Owatonna Public School District": 15, + "Owego-Apalachin Central School District": 15, + "Owen-Withee School District": 15, + "Owen County School District": 15, + "Owen D. Young Central School District": 3, + "Owen J. Roberts School District": 15, + "Owendale-Gagetown Area Schools": 15, + "Owens-Whitney Elementary District": 15, + "Owens Valley Unified School District": 15, + "Owensboro Independent School District": 15, + "Owosso Public Schools": 15, + "Owsley County School District": 15, + "Oxbow Unified Union School District #91": 1, + "Oxbow Unified Union School District 91": 1, + "Oxbow Union High School District 30": 7, + "Oxford Academy and Central School District": 15, + "Oxford Area Community Schools": 15, + "Oxford Area School District": 15, + "Oxford City School District": 15, + "Oxford School District": 45, + "Oxford Township School District": 15, + "Oxford Unified School District 358": 15, + "Oxford Unorganized Territory": 15, + "Oxnard Elementary School District": 15, + "Oxnard Union High School District": 15, + "Oyster Bay-East Norwich Central School District": 15, + "Oyster River Cooperative School District": 15, + "Oysterponds Union Free School District": 15, + "Ozark City School District": 15, + "Ozark Mountain School District": 15, + "Ozark R-VI School District": 15, + "Ozark School District": 15, + "Pacheco Union Elementary School District": 15, + "Pacific Elementary School District": 15, + "Pacific Grove Unified School District": 15, + "Pacific Unified School District": 9, + "Pacific Union Elementary School District (Fresno County)": 15, + "Pacific Union Elementary School District (Humboldt County)": 15, + "Pacifica School District": 12, + "Paden Public Schools": 15, + "Paducah Independent School District": 30, + "Page County Public Schools": 15, + "Page Public School District 80": 12, + "Page Unified District": 15, + "Paine Mountain School District": 2, + "Painesville City Local School District": 15, + "Paint Creek Independent School District": 15, + "Paint Rock Independent School District": 15, + "Paint Valley Local School District": 15, + "Paintsville Independent School District": 15, + "Paisley School District 11": 15, + "Pajaro Valley Joint Unified School District": 15, + "Palacios Independent School District": 15, + "Palatine Community Consolidated School District 15": 15, + "Palco Unified School District 269": 15, + "Palermo School District": 1, + "Palermo Union Elementary School District": 15, + "Palestine-Wheatley School District": 15, + "Palestine Community Unit School District 3": 15, + "Palestine Independent School District": 15, + "Palisades Park Borough School District": 15, + "Palisades School District": 30, + "Palm Beach County School District": 15, + "Palm Springs Unified School District": 15, + "Palmdale Elementary School District": 15, + "Palmer Independent School District": 15, + "Palmer Public Schools": 15, + "Palmer School District": 15, + "Palmerton Area School District": 15, + "Palmyra-Eagle Area School District": 15, + "Palmyra-Macedon Central School District": 15, + "Palmyra Area School District": 15, + "Palmyra Borough School District": 15, + "Palmyra District OR-1": 15, + "Palmyra R-I School District": 15, + "Palo Alto Unified School District": 15, + "Palo Community School District": 9, + "Palo Pinto Independent School District": 15, + "Palo Verde Elementary District": 15, + "Palo Verde Unified School District": 15, + "Palo Verde Union Elementary School District": 15, + "Paloma School District": 15, + "Palominas Elementary District": 15, + "Palos Community Consolidated School District 118": 15, + "Palos Heights School District 128": 15, + "Palos Verdes Peninsula Unified School District": 15, + "Palouse School District": 15, + "Pamlico County Schools": 15, + "Pampa Independent School District": 15, + "Pana Community Unit School District 8": 15, + "Panama-Buena Vista School District": 8, + "Panama-Buena Vista Union Elementary School District": 7, + "Panama Central School District": 15, + "Panama Public Schools": 15, + "Pandora-Gilboa Local School District": 15, + "Pangburn School District": 15, + "Panhandle Community Unit School District 2": 15, + "Panhandle Independent School District": 15, + "Panoche Elementary School District": 15, + "Panola Public Schools": 15, + "Panorama Community School District": 15, + "Panther Creek Consolidated Independent School District": 15, + "Panther Valley School District": 15, + "Paola Unified School District 368": 15, + "Paoli Community School Corporation": 15, + "Paoli Public Schools": 15, + "Papillion-La Vista Community Schools": 5, + "Papillion-La Vista Public Schools": 10, + "Paradise Elementary School District": 24, + "Paradise Independent School District": 15, + "Paradise Unified School District": 15, + "Paradise Unified School District 399": 15, + "Paradise Valley Unified District": 15, + "Paragould School District": 15, + "Paramount Unified School District": 15, + "Paramus Borough School District": 15, + "Parchment School District": 15, + "Pardeeville Area School District": 15, + "Paris-Union School District 95": 15, + "Paris City Special School District": 7, + "Paris Community Unit School District 4": 15, + "Paris Independent School District": 30, + "Paris Joint No. 1 School District": 15, + "Paris R-II School District": 15, + "Paris School District": 15, + "Paris Special School District": 8, + "Parishville-Hopkinton Central School District": 15, + "Park City Elementary School District": 15, + "Park City High School District": 15, + "Park City School District": 15, + "Park County School District 1": 15, + "Park County School District 16": 15, + "Park County School District 6": 15, + "Park County School District RE-2": 15, + "Park Falls School District": 1, + "Park Forest School District 163": 15, + "Park High School District": 15, + "Park Hill School District": 15, + "Park Rapids Public School District": 15, + "Park Rapids Public School District in Pine Point (9-12)": 10, + "Park Ridge Borough School District": 15, + "Park Ridge Consolidated Community School District 64": 15, + "Park River Area Public School District 8": 5, + "Park River Public School District 78": 10, + "Park School District R-3": 10, + "Parker School District 60-4": 15, + "Parker Unified School District": 15, + "Parkers Chapel School District": 15, + "Parkers Prairie Public School District": 15, + "Parkland School District": 15, + "Parkrose School District 3": 15, + "Parkston School District 33-3": 15, + "Parkview School District": 15, + "Parkway C-2 School District": 10, + "Parkway Local School District": 15, + "Parkway School District": 5, + "Parlier Unified School District": 15, + "Parma City School District": 15, + "Parma School District 137": 15, + "Parshall Public School District 3": 15, + "Parsippany-Troy Hills Township School District": 15, + "Parsons Unified School District 503": 15, + "Pasadena Independent School District": 15, + "Pasadena Unified School District": 15, + "Pascack Valley Regional School District": 15, + "Pascagoula-Gautier School District": 8, + "Pascagoula School District": 2, + "Pascagoula Separate School District": 5, + "Pasco County School District": 15, + "Pasco School District": 15, + "Paso Robles Joint Unified School District": 15, + "Paso Robles Joint Unified School District (9-12)": 6, + "Pasquotank County Schools": 15, + "Pass Christian Public School District": 15, + "Pass Creek Elementary School District": 15, + "Passaic City School District": 15, + "Passaic County Manchester Regional School District": 15, + "Passaic Valley Regional School District": 15, + "Patagonia Elementary District": 15, + "Patagonia Union High School District": 15, + "Patchogue-Medford Union Free School District": 15, + "Pateros School District": 15, + "Paterson City School District": 15, + "Paterson School District": 15, + "Patoka Community Unit School District 100": 15, + "Paton-Churdan Community School District": 15, + "Patrick County Public Schools": 15, + "Patrick Henry Local School District": 15, + "Patterson Joint Unified School District": 15, + "Patton Springs Independent School District": 15, + "Pattonsburg R-II School District": 15, + "Pattonville R-III School District": 10, + "Pattonville School District": 5, + "Paulding County School District": 15, + "Paulding Exempted Village School District": 15, + "Pauls Valley Public Schools": 15, + "Paulsboro Borough School District": 15, + "Pavilion Central School District": 15, + "Paw Paw CUSD 271": 1, + "Paw Paw Public School District": 15, + "Pawhuska Public Schools": 15, + "Pawlet School District": 7, + "Pawling Central School District": 15, + "Pawnee City Public Schools": 15, + "Pawnee Community Unit School District 11": 15, + "Pawnee Heights Unified School District 496": 15, + "Pawnee Independent School District": 15, + "Pawnee Public Schools": 15, + "Pawnee School District RE-12": 15, + "Pawtucket School District": 15, + "Paxton-Buckley-Loda Community Unit School District 10": 15, + "Paxton Consolidated Schools": 15, + "Payette Joint School District 371": 15, + "Paynesville Public School District": 15, + "Payson Community Unit School District 1": 15, + "Payson Unified District": 15, + "PCM Community School District": 15, + "Pe Ell School District": 15, + "Pe±asco Independent Schools": 1, + "Pea Ridge School District": 15, + "Peñasco Independent Schools": 2, + "Peabody-Burns Unified School District 398": 15, + "Peabody School District": 15, + "Peach County School District": 15, + "Peach Springs Unified District": 15, + "Peacham School District": 9, + "Pearce Elementary District": 15, + "Pearl City Community Unit School District 200": 15, + "Pearl Public School District": 15, + "Pearl River County School District": 15, + "Pearl River Union Free School District": 15, + "Pearland Independent School District": 15, + "Pearsall Independent School District": 15, + "Peaster Independent School District": 15, + "Peavine Public School": 15, + "Pecatonica Area School District": 15, + "Pecatonica Community Unit School District 321": 15, + "Peck Community School District": 15, + "Peckham Public School": 15, + "Pecos-Barstow-Toyah Independent School District": 15, + "Pecos Independent Schools": 15, + "Peekskill City School District": 15, + "Peerless K-12 Schools": 3, + "Peggs Public School": 15, + "Pekin Community High School District 303": 15, + "Pekin Community School District": 15, + "Pekin Public School District108": 15, + "Pelham City School District": 23, + "Pelham School District": 30, + "Pelham Union Free School District": 15, + "Pelican City School District": 15, + "Pelican Rapids Public School District": 15, + "Pell City City School District": 15, + "Pella Community School District": 15, + "Pellston Public Schools": 15, + "Pemberton Borough School District": 1, + "Pemberton Township School District": 15, + "Pembroke": 14, + "Pembroke Central School District": 15, + "Pembroke Consolidated Community School District 259": 15, + "Pembroke School District": 31, + "Pemi-Baker Regional School District": 15, + "Pemiscot County R-3 School District": 5, + "Pemiscot County R-III School District": 10, + "Pen Argyl Area School District": 15, + "Peñasco Independent Schools": 12, + "Pender County Schools": 15, + "Pender Public Schools": 15, + "Pendergast Elementary District": 15, + "Pendleton County School District": 30, + "Pendleton School District 16": 15, + "Pendroy Elementary School District": 15, + "Penelope Independent School District": 15, + "Penfield Central School District": 15, + "Peninsula Community School District": 1, + "Peninsula School District": 15, + "Peninsula Union Elementary School District": 15, + "Penn-Delco School District": 15, + "Penn-Harris-Madison School Corporation": 15, + "Penn-Trafford School District": 15, + "Penn Cambria School District": 15, + "Penn Hills School District": 15, + "Penn Manor School District": 15, + "Penn Valley Union Elementary School District": 8, + "Penn Yan Central School District": 15, + "Penncrest School District": 15, + "Pennfield School District": 15, + "Pennoyer School District 79": 15, + "Pennridge School District": 15, + "Penns Grove-Carneys Point Regional School District": 15, + "Penns Manor Area School District": 15, + "Penns Valley Area School District": 15, + "Pennsauken Township School District": 15, + "Pennsbury School District": 15, + "Pennsville Township School District": 15, + "Penobscot": 14, + "Penobscot School District": 1, + "Penobscot Unorganized Territory": 15, + "Pentucket School District": 15, + "Pentwater Public School District": 15, + "Peoria Heights Community Unit School District 325": 15, + "Peoria School District 150": 15, + "Peoria Unified School District": 15, + "Peotone Community Unit School District 207U": 15, + "Pepin Area School District": 15, + "Pequannock Township School District": 15, + "Pequea Valley School District": 15, + "Pequot Lakes Public School District": 3, + "Pequot Lakes Public Schools": 12, + "Perham-Dent Public School District": 12, + "Perham Public School District": 3, + "Perkins-Tryon Public Schools": 15, + "Perkins County Schools": 15, + "Perkins Local School District": 15, + "Perkiomen Valley School District": 15, + "Perquimans County Schools": 15, + "Perrin-Whitt Consolidated Independent School District": 15, + "Perris Elementary School District": 15, + "Perris Union High School District": 15, + "Perris Union High School District (9-12)": 6, + "Perris Union High School District in Menifee (9-12)": 2, + "Perris Union High School District in Nuview (9-12)": 2, + "Perris Union High School District in Romoland (9-12)": 2, + "Perry": 14, + "Perry Central Community School Corporation": 15, + "Perry Central School District": 15, + "Perry Community School District": 15, + "Perry County 32 School District": 15, + "Perry County School District": 45, + "Perry County Schools": 15, + "Perry Local School District (Allen County)": 15, + "Perry Local School District (Lake County)": 15, + "Perry Local School District (Stark County)": 15, + "Perry Public School District": 15, + "Perry Public Schools": 15, + "Perry Public Schools Unified School District 343": 15, + "Perry School District": 1, + "Perry Township Metropolitan School District": 15, + "Perrydale School District 21": 15, + "Perrysburg Exempted Village School District": 15, + "Perryton Independent School District": 15, + "Perryville School District": 15, + "Pershing County School District": 15, + "Person County Schools": 15, + "Perth Amboy City School District": 15, + "Peru Central School District": 15, + "Peru Community Schools": 15, + "Peru Elementary School District 124": 15, + "Peru School District": 2, + "Peshtigo School District": 15, + "Petal School District": 15, + "Petaluma City Elementary School District": 15, + "Petaluma Joint Union High School District": 15, + "Peters Township School District": 15, + "Petersburg Borough School District": 10, + "Petersburg City Public Schools": 15, + "Petersburg City School District": 5, + "Petersburg Independent School District": 15, + "Petersham School District": 15, + "Petoskey Public Schools": 7, + "Petrolia Consolidated Independent School District": 10, + "Petrolia Independent School District": 5, + "Pettibone-Tuttle Public School District 11": 1, + "Pettis County R-V School District": 15, + "Pettis County R-XII School District": 15, + "Pettisville Local School District": 15, + "Pettus Independent School District": 15, + "Pewamo-Westphalia Community School District": 15, + "Pewaukee School District": 15, + "Pewitt Consolidated Independent School District": 15, + "Peyton School District 23-JT": 15, + "Pflugerville Independent School District": 15, + "Pharr-San Juan-Alamo Independent School District": 15, + "Phelps-Clifton Springs Central School District": 15, + "Phelps County R-III School District": 15, + "Phelps School District": 15, + "Phenix City City School District": 15, + "Philadelphia City School District": 15, + "Philadelphia Public School District": 15, + "Philipsburg-Osceola Area School District": 15, + "Philipsburg K-12 Schools": 15, + "Phillips School District": 15, + "Phillipsburg Town School District": 15, + "Phillipsburg Unified School District 325": 15, + "Philomath School District 17J": 15, + "Phippsburg School District": 1, + "Phoenix-Talent School District 4": 15, + "Phoenix Central School District": 15, + "Phoenix Elementary District": 15, + "Phoenix Union High School District": 15, + "Phoenixville Area School District": 15, + "Picacho Elementary District": 15, + "Picayune School District": 15, + "Picher-Cardin Public Schools": 1, + "Pickens County School District": 45, + "Pickerington Local School District": 15, + "Pickett-Center Public School": 3, + "Pickett County School District": 15, + "Pickford Public Schools": 15, + "Piedmont City School District": 15, + "Piedmont City Unified School District": 15, + "Piedmont Public Schools": 15, + "Pierce City R-VI School District": 15, + "Pierce County School District": 15, + "Pierce Joint Unified School District": 15, + "Pierce Public Schools": 15, + "Piermont School District": 15, + "Pierre School District 32-2": 15, + "Pierz Public School District": 15, + "Piggott School District": 15, + "Pike-Delta-York Local School District": 15, + "Pike County R-III School District": 15, + "Pike County School Corporation": 15, + "Pike County School District": 45, + "Pike Road City School District": 8, + "Pike Township Metropolitan School District": 15, + "Pike Valley Unified School District 426": 15, + "Pikeland Community Unit School District 10": 15, + "Pikeville Independent School District": 15, + "Pillager Public School District": 15, + "Pilot Grove C-4 School District": 15, + "Pilot Point Independent School District": 15, + "Pilot Rock School District 2": 15, + "Pima County High School District": 1, + "Pima Unified District": 15, + "Pinal County High School District": 1, + "Pinckney Community Schools": 15, + "Pinckneyville Community High School District 101": 15, + "Pinckneyville School District 50": 15, + "Pinconning Area Schools": 15, + "Pine-Eagle School District 61": 15, + "Pine-Richland School District": 15, + "Pine Bluff School District": 15, + "Pine Bush Central School District": 15, + "Pine City Public School District": 15, + "Pine Creek Elementary School District": 15, + "Pine Creek School District 5": 15, + "Pine Grove Area School District": 15, + "Pine Grove Elementary School District": 15, + "Pine Hill Borough School District": 15, + "Pine Island Public School District": 15, + "Pine Plains Central School District": 15, + "Pine Point Public School District": 15, + "Pine Ridge Elementary School District": 15, + "Pine River-Backus Public School District": 15, + "Pine River Area Schools": 15, + "Pine Strawberry Elementary District": 15, + "Pine Tree Independent School District": 15, + "Pine Valley (South Dayton) Central School District": 2, + "Pine Valley Borough School District": 13, + "Pine Valley Central School District": 3, + "Pine Valley Central School District (South Dayton)": 10, + "Pinehurst School District 94": 15, + "Pinelands Regional School District": 15, + "Pinellas County School District": 15, + "Piner-Olivet Union Elementary School District": 15, + "Pineville Independent School District": 15, + "Pingree-Buchanan Public School District 10": 15, + "Pinon Unified District": 15, + "Pioneer-Pleasant Vale Schools": 15, + "Pioneer Elementary School District": 15, + "Pioneer Public School": 15, + "Pioneer Regional School Corporation": 15, + "Pioneer School District": 15, + "Pioneer Union Elementary School District (Butte County)": 15, + "Pioneer Union Elementary School District (El Dorado County)": 15, + "Pioneer Union Elementary School District (Kings County)": 15, + "Pioneer Valley School District": 15, + "Piper-Kansas City Unified School District 203": 1, + "Piper Unified School District 203": 14, + "Pipestone Area School District": 15, + "Piqua City School District": 15, + "Piscataquis Unorganized Territory": 15, + "Piscataway Township School District": 15, + "Piseco Common School District": 15, + "Pitman Borough School District": 15, + "Pitt County Schools": 15, + "Pittsburg Independent School District": 15, + "Pittsburg Public Schools": 15, + "Pittsburg School District": 15, + "Pittsburg Unified School District": 15, + "Pittsburg Unified School District 250": 15, + "Pittsburgh School District": 15, + "Pittsfield School District": 39, + "Pittsfield School District in Richmond (9-12)": 15, + "Pittsford Area Schools": 15, + "Pittsford Central School District": 15, + "Pittsford School District": 7, + "Pittsgrove Township School District": 15, + "Pittston Area School District": 15, + "Pittsville School District": 15, + "Pittsylvania County Public Schools": 15, + "Piute School District": 15, + "Pixley Union Elementary School District": 15, + "Placentia-Yorba Linda Unified School District": 15, + "Placer Hills Union Elementary School District": 15, + "Placer Union High School District": 15, + "Placerville Union Elementary School District": 15, + "Plain Local School District": 15, + "Plainedge Union Free School District": 15, + "Plainfield City School District": 15, + "Plainfield Community School Corporation": 15, + "Plainfield School District": 30, + "Plainfield School District 202": 15, + "Plains Elementary School District": 9, + "Plains High School District": 9, + "Plains Independent School District": 15, + "Plains K-12 Schools": 6, + "Plainsburg Union Elementary School District": 15, + "Plainview-Elgin-Millville": 12, + "Plainview-Elgin-Millville Public School District": 2, + "Plainview-Old Bethpage Central School District": 15, + "Plainview Independent School District": 15, + "Plainview Public School": 3, + "Plainview Public School District": 1, + "Plainview Public Schools": 30, + "Plainview R-VIII School District": 15, + "Plainview School District RE-2": 15, + "Plainville School District": 30, + "Plainville Unified School District 270": 15, + "Plainwell Community Schools": 15, + "Planada Elementary School District": 15, + "Plankinton School District 01-1": 15, + "Plano Community Unit School District 88": 15, + "Plano Independent School District": 15, + "Plaquemines Parish School District": 15, + "Plateau School District RE-5": 15, + "Plateau Valley School District 50": 15, + "Plato R-V School District": 15, + "Platte-Geddes School District 11-5": 15, + "Platte Canyon School District 1": 15, + "Platte County R-III School District": 15, + "Platte County School District 1": 15, + "Platte County School District 2": 15, + "Platte Valley School District RE-3": 10, + "Platte Valley School District RE-7": 15, + "Platteville School District": 15, + "Plattsburgh City School District": 15, + "Plattsmouth Community Schools": 15, + "Plaza Elementary School District": 15, + "Pleasant Grove Independent School District": 15, + "Pleasant Grove Joint Union Elementary School District": 15, + "Pleasant Grove Public School": 18, + "Pleasant Hill Community Unit School District 3": 15, + "Pleasant Hill R-III School District": 15, + "Pleasant Hill School District 1": 15, + "Pleasant Hill School District 69": 15, + "Pleasant Hope R-VI School District": 15, + "Pleasant Local School District": 15, + "Pleasant Plains Community Unit School District 8": 15, + "Pleasant Point": 14, + "Pleasant Ridge Plantation": 14, + "Pleasant Ridge Plantation School District": 1, + "Pleasant Ridge Union Elementary School District": 15, + "Pleasant Valley Community School District": 15, + "Pleasant Valley Elementary School District": 23, + "Pleasant Valley Elementary School District (Nevada County)": 7, + "Pleasant Valley Elementary School District (Ventura County)": 7, + "Pleasant Valley Elementary School District 364": 15, + "Pleasant Valley Joint Union Elementary School District": 15, + "Pleasant Valley Public School District 35": 12, + "Pleasant Valley School District": 15, + "Pleasant Valley School District 62": 15, + "Pleasant View Elementary School District": 15, + "Pleasant View R-VI School District": 15, + "Pleasantdale School District 107": 15, + "Pleasanton Independent School District": 15, + "Pleasanton Public Schools": 15, + "Pleasanton Unified School District": 15, + "Pleasanton Unified School District 344": 15, + "Pleasants County School District": 15, + "Pleasantville City School District": 15, + "Pleasantville Community School District": 15, + "Pleasantville Union Free School District": 15, + "Plemons-Stinnett-Phillips Consolidated Independent School District": 15, + "Plenty Coups High School District": 15, + "Plentywood K-12 Schools": 15, + "Plevna K-12 Schools": 15, + "Plum Borough School District": 15, + "Plum City School District": 15, + "Plum Valley Elementary School District": 5, + "Plumas Elementary School District": 3, + "Plumas Lake Elementary School District": 12, + "Plumas Unified School District": 15, + "Plummer-Worley Joint School District 44": 15, + "Plummer Public School District": 5, + "Plumsted Township School District": 15, + "Plush School District 18": 15, + "Plymouth-Canton Community Schools": 15, + "Plymouth-Shiloh Local School District": 15, + "Plymouth Community School Corporation": 15, + "Plymouth School District": 67, + "Plympton School District": 15, + "Pocahontas Area Community School District": 15, + "Pocahontas County School District": 15, + "Pocahontas School District": 15, + "Pocantico Hills Central School District": 15, + "Pocatello School District 25": 15, + "Pocola Public Schools": 15, + "Pocono Mountain School District": 15, + "Pohatcong Township School District": 15, + "Point Arena Joint Union High School District": 15, + "Point Isabel Independent School District": 15, + "Point Pleasant Beach Borough School District": 15, + "Point Pleasant Borough School District": 15, + "Pointe Coupee Parish School District": 15, + "Pojoaque Valley Public Schools": 15, + "Poland Central School District": 15, + "Poland Local School District": 15, + "Poland School District": 1, + "Polaris Elementary School District": 15, + "Polk County School District": 45, + "Polk County Schools": 15, + "Pollock Pines Elementary School District": 15, + "Pollock School District 10-2": 1, + "Polo Community Unit School District 222": 15, + "Polo R-VII School District": 15, + "Polo School District 29-2": 1, + "Polson Elementary School District": 15, + "Polson High School District": 15, + "Pomerene Elementary District": 15, + "Pomeroy-Palmer Community School District": 5, + "Pomeroy School District": 15, + "Pomfret School District": 22, + "Pomona Unified School District": 15, + "Pompton Lakes Borough School District": 15, + "Ponca City Public Schools": 15, + "Ponca Public Schools": 15, + "Pond Creek-Hunter Schools": 15, + "Pond Union Elementary School District": 15, + "Ponder Independent School District": 15, + "Pontiac-William Holliday School District 105": 15, + "Pontiac City School District": 15, + "Pontiac Community Consolidated School District 429": 15, + "Pontiac Township High School District 90": 15, + "Pontotoc City Schools": 15, + "Pontotoc County Schools": 15, + "Poolville Independent School District": 15, + "Pope County Community Unit School District 1": 15, + "Pope Valley Union Elementary School District": 15, + "Poplar Bluff R-I School District": 15, + "Poplar Elementary School District": 15, + "Poplar High School District": 15, + "Poplarville Separate School District": 15, + "Poquoson City Public Schools": 15, + "Port Allegany School District": 15, + "Port Angeles School District": 15, + "Port Aransas Independent School District": 15, + "Port Arthur Independent School District": 15, + "Port Byron Central School District": 15, + "Port Chester-Rye Union Free School District": 15, + "Port Clinton City School District": 15, + "Port Edwards School District": 15, + "Port Hope Community Schools": 9, + "Port Huron Area School District": 15, + "Port Jefferson Union Free School District": 15, + "Port Jervis City School District": 15, + "Port Neches-Groves Independent School District": 15, + "Port Orford-Langlois School District 2J": 15, + "Port Republic City School District": 15, + "Port Townsend School District": 15, + "Port Washington-Saukville School District": 15, + "Port Washington Union Free School District": 15, + "Porta Community Unit School District 202": 15, + "Portage Area School District": 15, + "Portage Community School District": 15, + "Portage Public Schools": 15, + "Portage Township Schools": 15, + "Portageville School District": 15, + "Portales Municipal Schools": 15, + "Porter Consolidated Schools": 15, + "Porter Township School Corporation": 15, + "Porterville Unified (9-12) School District": 9, + "Porterville Unified School District": 15, + "Porterville Unified School District (9-12)": 6, + "Portland": 14, + "Portland Public School District": 15, + "Portland School District": 16, + "Portland School District 1J": 15, + "Portola Valley Elementary School District": 15, + "Portsmouth City Public Schools": 15, + "Portsmouth City School District": 15, + "Portsmouth School District": 30, + "Portville Central School District": 15, + "Porum Public Schools": 15, + "Posen-Robbins Elementary School District 143-5": 15, + "Posen Consolidated School District": 15, + "Post Falls School District 273": 15, + "Post Independent School District": 15, + "Postville Community School District": 15, + "Poteau Public Schools": 15, + "Poteet Independent School District": 15, + "Poth Independent School District": 15, + "Potlatch School District 285": 15, + "Potomac Community Unit School District 10": 15, + "Potomac Elementary School District": 15, + "Potosi R-III School District": 15, + "Potosi School District": 15, + "Potsdam Central School District": 15, + "Potter-Dix Public Schools": 15, + "Potter Valley Community Unified School District": 15, + "Potterville Public Schools": 15, + "Pottsboro Independent School District": 15, + "Pottsgrove School District": 15, + "Pottstown School District": 15, + "Pottsville Area School District": 15, + "Pottsville Public Schools": 15, + "Poudre School District R-1": 15, + "Poughkeepsie City School District": 15, + "Poultney School District": 7, + "Poway Unified School District": 15, + "Powder River County High School District": 15, + "Powell County High School District": 15, + "Powell County School District": 15, + "Powell Township Schools": 15, + "Power Elementary School District": 15, + "Power High School District": 15, + "Powers Lake Public School District 27": 15, + "Powers School District 31": 15, + "Powhatan County Public Schools": 15, + "Pownal School District": 7, + "Poyen School District": 15, + "Poynette School District": 15, + "Prague Public Schools": 18, + "Prairie-Hills Elementary School District 144": 15, + "Prairie Central Community Unit School District 8": 15, + "Prairie City School District 4": 15, + "Prairie du Chien Area School District": 15, + "Prairie du Rocher Community Consolidated School District 134": 15, + "Prairie Elementary School District 191": 15, + "Prairie Farm School District": 15, + "Prairie Grove Community School District 46": 15, + "Prairie Grove School District": 15, + "Prairie Heights Community School Corporation": 15, + "Prairie Hill Community Consolidated School District 133": 15, + "Prairie Hills Unified School District 113": 12, + "Prairie Home R-V School District": 15, + "Prairie Lea Independent School District": 15, + "Prairie School District RE-11": 15, + "Prairie Valley Community School District": 15, + "Prairie Valley Independent School District": 15, + "Prairie View Unified School District 362": 15, + "Prairieview-Ogden Community Consolidated School District 197": 15, + "Prairiland Independent School District": 15, + "Pratt Unified School District 382": 15, + "Prattsburgh Central School District": 15, + "Preble Shawnee Local School District": 15, + "Premont Independent School District": 15, + "Prentice School District": 15, + "Prentiss County School District": 15, + "Prescott Community School District": 9, + "Prescott School District": 45, + "Prescott Unified District": 15, + "Presidio Independent School District": 15, + "Preston Community School District": 5, + "Preston County School District": 15, + "Preston Joint School District 201": 15, + "Preston Public Schools": 15, + "Preston School District": 15, + "Pretty Prairie Unified School District 311": 15, + "Pretty Water Public School": 15, + "Pribilof School District": 15, + "Priddy Independent School District": 15, + "Primero Reorganized School District 2": 15, + "Prince Edward County Public Schools": 15, + "Prince George's County Public Schools": 15, + "Prince George County Public Schools": 15, + "Prince William County Public Schools": 15, + "Princeton": 14, + "Princeton City School District": 15, + "Princeton Elementary School District 115": 15, + "Princeton High School District 500": 15, + "Princeton Independent School District": 15, + "Princeton Joint Unified School District": 15, + "Princeton Public School District": 15, + "Princeton Public Schools": 10, + "Princeton R-V School District": 15, + "Princeton Regional School District": 5, + "Princeton School District": 16, + "Princeville Community Unit School District 326": 15, + "Pringle-Morse Consolidated Independent School District": 15, + "Prinsburg Public School District": 15, + "Prior Lake-Savage Area Schools": 15, + "Pritchett School District RE-3": 15, + "Proctor Public School District": 15, + "Proctor School District": 7, + "Profile School District": 15, + "Progreso Independent School District": 15, + "Prophetstown-Lyndon-Tampico Community Unit School District 3": 15, + "Prospect Heights School District 23": 15, + "Prospect Mountain High School Joint Maintenance Agreement District": 15, + "Prospect Park Borough School District": 15, + "Prospect School District 59": 15, + "Prosper Independent School District": 15, + "Prosser School District": 15, + "Providence School District": 15, + "Provincetown School District": 15, + "Proviso Township High School District 209": 15, + "Provo School District": 15, + "Prue Public Schools": 15, + "Pryor Elementary School District": 15, + "Pryor Public Schools": 15, + "Public Schools of Petoskey": 8, + "Pueblo City School District 60": 15, + "Pueblo County School District 70": 15, + "Puerto Rico Department of Education": 15, + "Pulaski Central School District": 15, + "Pulaski Community School District": 15, + "Pulaski County Public Schools": 15, + "Pulaski County R-IV School District": 5, + "Pulaski County School District": 30, + "Pulaski County School District for Science Hill ISD": 15, + "Pulaski County Special School District": 15, + "Pullman School District": 15, + "Punxsutawney Area School District": 15, + "Purcell Public Schools": 15, + "Purchase Line School District": 15, + "Purdy R-II School District": 15, + "Put-in-Bay Local School District": 15, + "Putnam Central School District": 15, + "Putnam City Public Schools": 15, + "Putnam County Community Unit School District 535": 15, + "Putnam County R-I School District": 15, + "Putnam County School District": 60, + "Putnam School District": 15, + "Putnam Valley Central School District": 15, + "Putney School District": 7, + "Puxico R-VIII School District": 15, + "Puyallup School District": 15, + "Pymatuning Valley Local School District": 15, + "Quabbin School District": 15, + "Quaboag Regional School District": 15, + "Quaker Valley School District": 15, + "Quakertown Community School District": 15, + "Quanah Independent School District": 15, + "Quantico Marine Corps Center School District": 15, + "Quapaw Public Schools": 15, + "Quarry Valley Unified Union School District #70": 1, + "Quarry Valley Unified Union School District 70": 1, + "Quartzsite Elementary District": 15, + "Queen Annes County Public Schools": 15, + "Queen Bee School District 16": 15, + "Queen City Independent School District": 15, + "Queen Creek Unified District": 15, + "Queensbury Union Free School District": 15, + "Queets-Clearwater School District": 15, + "Quemado Independent Schools": 15, + "Questa Independent Schools": 15, + "Quilcene School District": 15, + "Quillayute Valley School District": 15, + "Quinault School District": 1, + "Quincy Community School District": 15, + "Quincy School District": 30, + "Quincy School District 172": 15, + "Quinlan Independent School District": 15, + "Quinter Public Schools Unified School District 293": 15, + "Quinton Public Schools": 15, + "Quinton Township School District": 15, + "Quitman County School District": 30, + "Quitman Independent School District": 15, + "Quitman School District": 30, + "Quogue Union Free School District": 15, + "Rabun County School District": 15, + "Raccoon Consolidated School District 1": 15, + "Raceland-Worthington Independent School District": 15, + "Racine School District": 15, + "Radford City Public Schools": 15, + "Radnor Township School District": 15, + "Rahway City School District": 15, + "Rainier School District": 15, + "Rainier School District 13": 15, + "Rains Independent School District": 15, + "Raisin City Elementary School District": 15, + "Raleigh County School District": 15, + "Ralls County R-II School District": 15, + "Ralls Independent School District": 15, + "Ralph C. Mahar School District": 15, + "Ralston Public Schools": 15, + "Ramapo-Indian Hill Regional School District": 15, + "Ramapo (Suffern) Central School District": 2, + "Ramapo Central School District": 3, + "Ramapo Central School District (Suffern)": 6, + "Ramirez Common School District": 15, + "Ramona City Unified School District": 15, + "Ramsay Elementary School District": 15, + "Ramsey Borough School District": 15, + "Ramsey Community Unit School District 204": 15, + "Rancho Santa Fe Elementary School District": 15, + "Rancocas Valley Regional School District": 15, + "Randall Joint No. 1 School District": 15, + "Randolph Central School Corporation": 15, + "Randolph Central School District": 15, + "Randolph County School District": 45, + "Randolph County Schools": 15, + "Randolph Eastern School Corporation": 15, + "Randolph Field Independent School District": 15, + "Randolph Public School District": 15, + "Randolph Public Schools": 15, + "Randolph School District": 37, + "Randolph Southern School Corporation": 15, + "Randolph Township School District": 15, + "Randolph Union High School District 2": 7, + "Random Lake School District": 15, + "Rangeley": 2, + "Rangeley Plantation": 2, + "Rangeley Plantation School District": 1, + "Rangeley School District": 1, + "Rangely School District RE-4": 15, + "Ranger Independent School District": 15, + "Rankin Community School District 98": 15, + "Rankin County School District": 15, + "Rankin Independent School District": 15, + "Rantoul City School District 137": 15, + "Rantoul Township High School District 193": 15, + "Rapelje Elementary School District": 15, + "Rapelje High School District": 15, + "Rapid City School District 51-4": 15, + "Rapid River Public Schools": 15, + "Rapides Parish School District": 15, + "Rappahannock County Public Schools": 15, + "Raquette Lake Union Free School District": 15, + "Raton Public Schools": 15, + "Rattan Public Schools": 15, + "Rau Elementary School District": 15, + "Ravena-Coeymans-Selkirk Central School District": 15, + "Ravendale-Termo Elementary School District": 15, + "Ravenna City School District": 15, + "Ravenna Public Schools": 30, + "Ravenswood City Elementary School District": 15, + "Ravia Public School": 15, + "Rawlins County Unified School District 105": 15, + "Ray Unified District": 15, + "Raymond-Knowles Union Elementary School District": 15, + "Raymond Central Public Schools": 5, + "Raymond Central Schools": 10, + "Raymond No. 14 School District": 15, + "Raymond School District": 31, + "Raymondville Independent School District": 15, + "Raymondville R-7 School District": 7, + "Raymondville R-VII School District": 8, + "Raymondville/Lyford Independent School Districts (11-12) in Lasara": 4, + "Raymore-Peculiar R-II School District": 15, + "Raynesford Elementary School District": 3, + "Raytown C-2 School District": 15, + "Readfield School District": 1, + "Reading Community City School District": 15, + "Reading Community Schools": 15, + "Reading School District": 37, + "Readington Township School District": 15, + "Readsboro": 2, + "Readsboro School District": 7, + "Ready Springs Union Elementary School District": 7, + "Reagan County Independent School District": 15, + "Reardan-Edwall School District": 15, + "Reavis Township High School District 220": 15, + "Rector School District": 15, + "Red Bank Borough School District": 15, + "Red Bank Regional School District": 15, + "Red Bluff Joint Union High School District": 15, + "Red Bluff Union Elementary School District": 15, + "Red Bud Community Unit School District 132": 15, + "Red Clay Consolidated School District": 15, + "Red Cloud Community Schools": 15, + "Red Creek Central School District": 15, + "Red Hill Community Unit School District 10": 15, + "Red Hook Central School District": 15, + "Red Lake County Central Public Schools": 10, + "Red Lake Falls Public School District": 15, + "Red Lake Public School District": 15, + "Red Lick Independent School District": 15, + "Red Lion Area School District": 15, + "Red Lodge Elementary School District": 15, + "Red Lodge High School District": 15, + "Red Mesa Unified District": 15, + "Red Oak Community School District": 15, + "Red Oak Independent School District": 15, + "Red Oak Public Schools": 15, + "Red River Parish School District": 15, + "Red Rock Central School District": 15, + "Red Rock Elementary District": 15, + "Red Wing Public School District": 15, + "Redbank Valley School District": 15, + "Redding Elementary School District": 15, + "Redding School District": 15, + "Redfield School District 56-4": 15, + "Redford Union School District": 15, + "Redington Elementary District": 15, + "Redlands Unified School District": 15, + "Redmond School District 2J": 15, + "Redondo Beach Unified School District": 15, + "Redwater Independent School District": 15, + "Redwood Area School District": 15, + "Redwood City Elementary School District": 15, + "Reed City Area Public Schools": 15, + "Reed Custer Community Unit School District 255U": 15, + "Reed Plantation": 14, + "Reed Plantation School District": 1, + "Reed Point Elementary School District": 6, + "Reed Point High School District": 6, + "Reed Union Elementary School District": 15, + "Reedpoint Elementary School District": 9, + "Reedpoint High School District": 9, + "Reeds Creek Elementary School District": 15, + "Reeds Spring R-IV School District": 15, + "Reedsburg School District": 15, + "Reedsport School District 105": 15, + "Reedsville School District": 15, + "Reef-Sunset Unified School District": 15, + "Reese Public Schools": 15, + "Reeths-Puffer Schools": 15, + "Refugio Independent School District": 15, + "Regional High School District 01": 15, + "Regional High School District 04": 15, + "Regional High School District 05": 15, + "Regional High School District 07": 15, + "Regional High School District 08": 15, + "Regional High School District 09": 15, + "Regional High School District 11": 15, + "Regional High School District 19": 15, + "Regional School District 06": 15, + "Regional School District 10": 15, + "Regional School District 12": 15, + "Regional School District 13": 15, + "Regional School District 14": 15, + "Regional School District 15": 15, + "Regional School District 16": 15, + "Regional School District 17": 15, + "Regional School District 18": 15, + "Regional School Unit 01": 14, + "Regional School Unit 02": 14, + "Regional School Unit 04": 14, + "Regional School Unit 05": 14, + "Regional School Unit 09": 1, + "Regional School Unit 10": 14, + "Regional School Unit 12": 14, + "Regional School Unit 13": 14, + "Regional School Unit 14": 14, + "Regional School Unit 16": 14, + "Regional School Unit 18": 14, + "Regional School Unit 19": 14, + "Regional School Unit 20": 14, + "Regional School Unit 21": 14, + "Regional School Unit 22": 9, + "Regional School Unit 22 (Penobscot and Waldo Counties)": 1, + "Regional School Unit 23": 14, + "Regional School Unit 24": 14, + "Regional School Unit 25": 14, + "Regional School Unit 26": 14, + "Regional School Unit 34": 14, + "Regional School Unit 38": 14, + "Regional School Unit 39": 14, + "Regional School Unit 50": 12, + "Regional School Unit 56": 6, + "Regional School Unit 67": 1, + "Regional School Unit 71": 8, + "Regional School Unit 73": 12, + "Regional School Unit 78": 12, + "Regional School Unit 89": 5, + "Reichle Elementary School District": 15, + "Remington-Whitewater Unified School District 206": 15, + "Remsen-Union Community School District": 15, + "Remsen Central School District": 15, + "Remsenburg-Speonk Union Free School District": 15, + "Renick R-V School District": 15, + "Rensselaer Central School Corporation": 15, + "Rensselaer City School District": 15, + "Renton School District": 15, + "Renville County West School District": 15, + "Renwick Unified School District 267": 15, + "Republic-Michigamme Schools": 15, + "Republic County-Hillcrest Rural Schools Unified School District 109": 9, + "Republic County - Hillcrest Rural Schools Unified School District 109": 5, + "Republic County Unified School District 427": 1, + "Republic R-III School District": 10, + "Republic School District": 20, + "Rescue Union Elementary School District": 15, + "Reserve Independent Schools": 15, + "Revere C-3 School District": 5, + "Revere Local School District": 15, + "Revere School District": 20, + "Reydon Public Schools": 15, + "Reynolds School District": 15, + "Reynolds School District 7": 15, + "Reynoldsburg City School District": 15, + "Rhea County School District": 15, + "Rhea County School District in Dayton": 15, + "Rhinebeck Central School District": 15, + "Rhinelander School District": 15, + "Rhodes School District 84-5": 15, + "Rialto Unified School District": 15, + "Rib Lake School District": 15, + "Ricardo Independent School District": 15, + "Rice Consolidated Independent School District": 15, + "Rice Independent School District": 15, + "Rice Lake Area School District": 15, + "Riceville Community School District": 15, + "Rich Hill R-IV School District": 15, + "Rich School District": 15, + "Rich Township High School District 227": 15, + "Richard City Special School District": 15, + "Richards Independent School District": 15, + "Richards R-V School District": 15, + "Richardson Independent School District": 15, + "Richardton-Taylor Public School District 34": 15, + "Richey Elementary School District": 15, + "Richey High School District": 15, + "Richfield Elementary School District": 15, + "Richfield Joint No. 1 School District": 10, + "Richfield Public School District": 15, + "Richfield School District 316": 15, + "Richfield Springs Central School District": 15, + "Richford School District": 7, + "Richgrove Elementary School District": 15, + "Richland-Bean Blossom Community School Corporation": 15, + "Richland-Lerdo Union Elementary School District": 7, + "Richland County Community Unit School District 1": 5, + "Richland County School District 2 within Fort Jackson": 15, + "Richland Parish School District": 15, + "Richland Public School District 44": 15, + "Richland R-I School District": 15, + "Richland R-IV School District": 10, + "Richland School District": 45, + "Richland School District 1": 15, + "Richland School District 2": 15, + "Richland School District 88A": 15, + "Richland Springs Independent School District": 15, + "Richland Union School District": 8, + "Richmond-Burton Community High School District 157": 15, + "Richmond City Public Schools": 15, + "Richmond Community School Corporation": 15, + "Richmond Community Schools": 15, + "Richmond County Public Schools": 15, + "Richmond County School District": 15, + "Richmond County Schools": 15, + "Richmond Elementary School District": 15, + "Richmond Heights Local School District": 15, + "Richmond R-XVI School District": 15, + "Richmond School District": 38, + "Richton School District": 15, + "Richwoods R-VII School District": 15, + "Riddle School District 70": 15, + "Ridgedale Local School District": 15, + "Ridgefield Borough School District": 15, + "Ridgefield Park Township School District": 15, + "Ridgefield School District": 30, + "Ridgeland School District 122": 15, + "Ridgemont Local School District": 15, + "Ridgeview Community Unit School District 19": 15, + "Ridgeway R-V School District": 15, + "Ridgewood Community High School District 234": 15, + "Ridgewood Local School District": 15, + "Ridgewood Village School District": 15, + "Ridgway Area School District": 15, + "Ridgway School District R-2": 15, + "Ridley School District": 15, + "Riesel Independent School District": 15, + "Riley Community Consolidated School District 18": 15, + "Riley County Unified School District 378": 15, + "Rim of the World Unified School District": 15, + "Rincon Valley Union Elementary School District": 15, + "Ringgold School District": 15, + "Ringling Elementary School District": 3, + "Ringling Public Schools": 15, + "Ringwood Borough School District": 15, + "Ringwood Public Schools": 15, + "Rio Bravo-Greeley Union Elementary School District": 15, + "Rio Community School District": 15, + "Rio Dell Elementary School District": 15, + "Rio Elementary School District": 15, + "Rio Grande City Consolidated Independent School District": 13, + "Rio Grande City Grulla Independent School District": 1, + "Rio Grande City Independent School District": 1, + "Rio Hondo Independent School District": 15, + "Rio Linda Union Elementary School District": 1, + "Rio Rancho Public Schools": 15, + "Rio Vista Independent School District": 15, + "Ripley-Union-Lewis-Huntington Local School District": 15, + "Ripley Central School District": 15, + "Ripley County R-III School District": 15, + "Ripley County R-IV School District": 15, + "Ripley Public Schools": 15, + "Ripon Area School District": 15, + "Ripon Unified School District": 15, + "Ripton School District": 7, + "Ririe Joint School District 252": 15, + "Risco R-II School District": 15, + "Rising City Public Schools": 3, + "Rising Star Independent School District": 15, + "Rising Sun-Ohio County Community Schools": 15, + "Ritchie County School District": 15, + "Ritenour School District": 15, + "Rittman Exempted Village School District": 15, + "Ritzville School District": 15, + "Rivendell Interstate School District": 30, + "River Bend Community Unit District 2": 15, + "River Dell Regional School District": 15, + "River Delta Joint Unified School District": 15, + "River Edge Borough School District": 15, + "River Falls School District": 15, + "River Forest Community School Corporation": 15, + "River Forest School District 90": 15, + "River Grove School District 85-5": 15, + "River Ridge Community Unit School District 210": 15, + "River Ridge School District": 15, + "River Road Independent School District": 15, + "River Rouge School District": 15, + "River Trails School District 26": 15, + "River Vale Township School District": 15, + "River Valley Community School District": 15, + "River Valley Local School District": 15, + "River Valley School District": 30, + "River Valleys Unified School District #73": 1, + "River Valleys Unified School District 73": 1, + "River View Local School District": 15, + "Riverbank Unified School District": 15, + "Rivercrest Independent School District": 15, + "Rivercrest School District": 8, + "Riverdale Borough School District": 15, + "Riverdale Community Unit School District 100": 15, + "Riverdale Joint Unified School District": 15, + "Riverdale Joint Unified School District (9-12)": 6, + "Riverdale Local School District": 15, + "Riverdale School District": 15, + "Riverdale School District 14": 5, + "Riverdale School District 51J": 15, + "Riverhead Central School District": 15, + "Riverside Beaver County School District": 15, + "Riverside Brookfield Township School District 208": 15, + "Riverside Community School District": 15, + "Riverside Elementary District": 15, + "Riverside Local School District (Geauga and Lake Counties)": 15, + "Riverside Local School District (Logan County)": 15, + "Riverside Public School": 15, + "Riverside Public Schools": 6, + "Riverside School District": 45, + "Riverside School District 96": 15, + "Riverside Township School District": 15, + "Riverside Unified School District": 15, + "Riverside Unified School District 114": 12, + "Riverton Borough School District": 15, + "Riverton Community Unit School District 14": 15, + "Riverton Unified School District 404": 15, + "Riverview Community School District": 15, + "Riverview Consolidated Community School District 2": 15, + "Riverview Gardens School District": 15, + "Riverview School District": 45, + "Riviera Independent School District": 15, + "Roane County School District": 30, + "Roanoke-Benson Community Unit School District 60": 15, + "Roanoke City Public Schools": 15, + "Roanoke City School District": 15, + "Roanoke County Public Schools": 15, + "Roanoke Rapids City Schools": 15, + "Roaring Fork School District RE-1": 15, + "Robbinsdale Public School District": 15, + "Robbinston": 14, + "Robbinston School District": 1, + "Robbinsville Township School District": 15, + "Robein School District 85": 15, + "Robert Lee Independent School District": 15, + "Roberts Ferry Union Elementary School District": 15, + "Roberts K-12 Schools": 15, + "Robertson County School District": 30, + "Robeson County Schools": 15, + "Robin Hill Public School": 15, + "Robins AFB School District": 7, + "Robinson Community Unit School District 2": 15, + "Robinson Independent School District": 15, + "Robinson Public School District 14": 9, + "Robla Elementary School District": 15, + "Robstown Independent School District": 15, + "Roby Consolidated Independent School District": 15, + "Rochelle Community Consolidated District 231": 15, + "Rochelle Independent School District": 15, + "Rochelle Park Township School District": 15, + "Rochelle Township High School District 212": 15, + "Rochester Area School District": 15, + "Rochester City School District": 15, + "Rochester Community School Corporation": 15, + "Rochester Community School District": 15, + "Rochester Community Unit School District 3A": 15, + "Rochester Public School District": 15, + "Rochester School District": 52, + "Rochester Stockbridge Unified School District": 2, + "Rock County Public Schools": 15, + "Rock Creek Public Schools": 15, + "Rock Creek Unified School District 323": 13, + "Rock Falls Elementary School District 13": 15, + "Rock Falls Township High School District 301": 15, + "Rock Hill Local School District": 15, + "Rock Hills Unified School District 107": 14, + "Rock Island-Milan School District 41": 4, + "Rock Island School District 41": 11, + "Rock Port R-II School District": 15, + "Rock Ridge Public Schools": 3, + "Rock Valley Community School District": 15, + "Rockaway Borough School District": 15, + "Rockaway Township School District": 15, + "Rockbridge County Public Schools": 15, + "Rockcastle County School District": 15, + "Rockdale County School District": 15, + "Rockdale Independent School District": 15, + "Rockdale School District 84": 15, + "Rockford Elementary School District": 15, + "Rockford Public School District": 15, + "Rockford Public Schools": 15, + "Rockford School District 205": 15, + "Rockingham County Public Schools": 15, + "Rockingham County Schools": 15, + "Rockingham School District": 9, + "Rockland School District": 15, + "Rockland School District 382": 15, + "Rockleigh Borough School District": 15, + "Rocklin Unified School District": 15, + "Rockport School District": 15, + "Rockridge Community Unit School District 300": 15, + "Rocksprings Independent School District": 15, + "Rockton School District 140": 15, + "Rockville Centre Union Free School District": 15, + "Rockville Community Schools": 5, + "Rockwall Independent School District": 15, + "Rockwell-Swaledale Community School District": 3, + "Rockwell City-Lytton Community School District": 7, + "Rockwood Area School District": 15, + "Rockwood R-VI School District": 10, + "Rockwood School District": 5, + "Rocky Boy Elementary School District": 15, + "Rocky Boy High School District": 15, + "Rocky Ford School District R-2": 15, + "Rocky Hill Borough School District": 1, + "Rocky Hill School District": 15, + "Rocky Mountain Public School": 15, + "Rocky Point Union Free School District": 15, + "Rocky River City School District": 15, + "Rocori Public School District": 12, + "ROCORI Public School District": 3, + "Roff Public Schools": 15, + "Rogers City Area Schools": 15, + "Rogers Independent School District": 15, + "Rogers Public Schools": 15, + "Rogersville City Schools": 8, + "Rogersville Town Elementary School District": 7, + "Rogue River School District 35": 15, + "Rohnerville Elementary School District": 5, + "Roland-Story Community School District": 15, + "Roland Public Schools": 15, + "Rolette Public School District 29": 15, + "Rolla 31 School District": 15, + "Rolla Unified School District 217": 15, + "Rolling Hills Local School District": 15, + "Rollinsford School District": 15, + "Roma Independent School District": 15, + "Rome City School District": 30, + "Rome Community Consolidated School District 2": 15, + "Rome School District": 1, + "Romeo Community Schools": 15, + "Romoland Elementary School District": 15, + "Romulus Central School District": 15, + "Romulus Community Schools": 15, + "Ronan Elementary School District": 15, + "Ronan High School District": 15, + "Rondout School District 72": 15, + "Rondout Valley Central School District": 15, + "Rooks Creek Community Consolidated School District 425": 15, + "Roosevelt Borough School District": 15, + "Roosevelt Elementary District": 15, + "Roosevelt Independent School District": 15, + "Roosevelt Public School District 18": 15, + "Roosevelt School District": 15, + "Roosevelt Union Free School District": 15, + "Rootstown Local School District": 15, + "Ropes Independent School District": 15, + "Roque Bluffs": 14, + "Roque Bluffs School District": 1, + "Rosalia School District": 15, + "Roscoe C-1 School District": 15, + "Roscoe Central School District": 15, + "Roscoe Collegiate Independent School District": 10, + "Roscoe Independent School District": 5, + "Roscommon Area Public Schools": 8, + "Rose Bud School District": 15, + "Rose Hill Public Schools Unified School District 394": 15, + "Rose Tree Media School District": 15, + "Roseau Public School District": 15, + "Rosebud-Lott Independent School District": 15, + "Rosebud Elementary School District": 3, + "Rosebud High School District": 3, + "Rosebud K-12": 12, + "Roseburg School District 4": 14, + "Rosedale Union Elementary School District": 15, + "Roseland Borough School District": 15, + "Roseland Elementary School District": 7, + "Roseland School District": 8, + "Roselle Borough School District": 15, + "Roselle Park Borough School District": 15, + "Roselle School District 12": 15, + "Rosemead Elementary School District": 15, + "Rosemont Elementary School District 78": 15, + "Rosemount-Apple Valley-Eagan": 12, + "Rosemount-Apple Valley-Eagan School District": 3, + "Rosendale-Brandon School District": 15, + "Roseville City Elementary School District": 15, + "Roseville Community Schools": 15, + "Roseville Joint Union High School District": 15, + "Roseville Public School District": 15, + "Rosholt School District": 15, + "Rosholt School District 54-4": 15, + "Roslyn School District 18-2": 3, + "Roslyn Union Free School District": 15, + "Ross Elementary School District": 30, + "Ross Local School District": 15, + "Ross Valley Elementary School District": 15, + "Rossford Exempted Village School District": 15, + "Rossville-Alvin Community Unit School District 7": 15, + "Rossville Consolidated School District": 15, + "Roswell Independent Schools": 15, + "Rotan Independent School District": 15, + "Rothsay Public School District": 15, + "Rotterdam-Mohonasen Central School District": 15, + "Round Lake-Brewster Public Schools": 10, + "Round Lake Community Unit School District 116": 15, + "Round Lake Public School District": 5, + "Round Rock Independent School District": 15, + "Round Top-Carmine Independent School District": 15, + "Round Valley Joint Elementary School District": 15, + "Round Valley Unified District": 15, + "Round Valley Unified School District": 15, + "Roundup Elementary School District": 15, + "Roundup High School District": 15, + "Rowan-Salisbury Schools": 15, + "Rowan County School District": 15, + "Rowe School District": 15, + "Rowland Unified School District": 15, + "ROWVA Community Unit School District 208": 15, + "Roxana Community Unit School District 1": 15, + "Roxbury Central School District": 15, + "Roxbury School District": 7, + "Roxbury Township School District": 15, + "Roxton Independent School District": 11, + "Roy K-12 Schools": 15, + "Roy Municipal Schools": 15, + "Royal Independent School District": 15, + "Royal Oak City School District": 15, + "Royal School District": 15, + "Royal Valley Unified School District 337": 15, + "Royall School District": 15, + "Royalton-Hartland Central School District": 15, + "Royalton Public School District": 15, + "Royalton School District": 7, + "Royse City Independent School District": 15, + "RTR Public School District": 2, + "RTR Public Schools": 12, + "Rubicon Joint No. 6 School District": 9, + "Rucker Elementary District": 13, + "Rudd-Rockford-Marble Rock Community School District": 15, + "Rudyard Area Schools": 15, + "Rugby Public School District 5": 15, + "Ruidoso Municipal Schools": 15, + "Rule Independent School District": 15, + "Rumney School District": 15, + "Rumson-Fair Haven Regional School District": 15, + "Rumson Borough School District": 15, + "Runge Independent School District": 15, + "Runnemede Borough School District": 15, + "Rupert School District": 7, + "Rural Vista Unified School District 481": 15, + "Rusell Public Schools": 1, + "Rush-Henrietta Central School District": 15, + "Rush City Public School District": 15, + "Rush County Schools": 15, + "Rush Springs Public Schools": 15, + "Rushford-Peterson Public Schools": 15, + "Rusk Independent School District": 15, + "Russell Community School District": 3, + "Russell County Public Schools": 15, + "Russell County School District": 30, + "Russell County Unified School District 407": 15, + "Russell Independent School District": 15, + "Russellville City School District": 15, + "Russellville Independent School District": 15, + "Russellville Schools": 15, + "Russia Local School District": 15, + "Rutherford Borough School District": 15, + "Rutherford County School District": 15, + "Rutherford County School District in Murfreesboro": 15, + "Rutherford County Schools": 15, + "Ruthton Public School District": 1, + "Ruthven-Ayrshire Community School District": 15, + "Rutland Central Supervisory Union": 3, + "Rutland City School District": 15, + "Rutland Community Consolidated School District 230": 15, + "Rutland Northeast Supervisory Union": 6, + "Rutland School District 39-4": 15, + "Rutland South Supervisory Union": 3, + "Rutland Southwest Supervisory Union": 3, + "Rutland Town School District": 9, + "Ryal Public School": 15, + "Ryan Public Schools": 15, + "Rye City School District": 15, + "Rye Neck Union Free School District": 15, + "Rye School District": 15, + "Ryegate K-12 Schools": 15, + "S and S Consolidated Independent School District": 15, + "S H Elementary School District": 15, + "S Y Elementary School District": 15, + "Sabattus School District": 1, + "Sabetha Unified School District 441": 3, + "Sabinal Independent School District": 15, + "Sabine Independent School District": 15, + "Sabine Parish School District": 15, + "Sabine Pass Independent School District": 15, + "Sac Community School District": 3, + "Sacaton Elementary District": 15, + "Sachem Central School District": 15, + "Sackets Harbor Central School District": 15, + "Saco Elementary School District": 15, + "Saco High School District": 15, + "Saco Public Schools": 8, + "Saco School District": 1, + "Sacramento City Unified School District": 15, + "Saddle Brook Township School District": 15, + "Saddle Mountain Unified School District": 15, + "Saddle River Borough School District": 15, + "Saddleback Valley Unified School District": 15, + "Safford Unified District": 15, + "Sag Harbor Union Free School District": 15, + "Sagadahoc Unorganized Territory": 15, + "Sagaponack Common School District": 15, + "Saginaw City School District": 15, + "Saginaw Township Community Schools": 15, + "Sahuarita Unified District": 15, + "Saint Clair Area School District": 7, + "Saint Jo Independent School District": 9, + "Saint Regis Falls Central School District": 3, + "Salado Independent School District": 15, + "Salamanca City School District": 15, + "Salem-Keizer School District 24J": 15, + "Salem Central School District": 15, + "Salem City Public Schools": 15, + "Salem City School District": 30, + "Salem Community High School District 600": 15, + "Salem Community Schools": 15, + "Salem R-80 School District": 15, + "Salem School District": 75, + "Salem School District 111": 15, + "Salida School District R-32": 15, + "Salida Union Elementary School District": 15, + "Salina Public Schools": 15, + "Salina Unified School District 305": 15, + "Salinas City Elementary School District": 15, + "Salinas Union High School District": 15, + "Saline Area Schools": 15, + "Salisbury-Elk Lick School District": 15, + "Salisbury R-IV School District": 15, + "Salisbury School District": 22, + "Salisbury Township School District": 15, + "Sallisaw Public Schools": 15, + "Salmon River Central School District": 15, + "Salmon River School District 243": 15, + "Salmon School District 291": 15, + "Salome Consolidated Elementary District": 15, + "Salt Creek School District 48": 15, + "Salt Fork Community Unit School District 512": 8, + "Salt Lake City School District": 15, + "Saltillo Independent School District": 15, + "Saluda County School District": 15, + "Sam Rayburn Independent School District": 15, + "Samnorwood Independent School District": 5, + "Sampson County Schools": 15, + "San Angelo Independent School District": 15, + "San Antonio Independent School District": 15, + "San Antonio Union Elementary School District": 15, + "San Ardo Union Elementary School District": 15, + "San Augustine Independent School District": 15, + "San Benito Consolidated Independent School District": 15, + "San Benito High School District": 15, + "San Bernardino City Unified School District": 15, + "San Bruno Park Elementary School District": 15, + "San Carlos Elementary School District": 15, + "San Carlos Unified District": 15, + "San Diego City Unified School District": 15, + "San Diego Independent School District": 15, + "San Dieguito Union High School District": 15, + "San Elizario Independent School District": 15, + "San Felipe-Del Rio Consolidated Independent School District": 15, + "San Fernando Elementary District": 15, + "San Francisco Unified School District": 15, + "San Gabriel Unified School District": 15, + "San Isidro Independent School District": 15, + "San Jacinto Unified School District": 15, + "San Jon Municipal Schools": 15, + "San Jose Unified School District": 15, + "San Juan Island School District": 15, + "San Juan School District": 15, + "San Juan Unified School District": 15, + "San Leandro Unified School District": 15, + "San Lorenzo Unified School District": 15, + "San Lorenzo Valley Unified School District": 15, + "San Lucas Union Elementary School District": 15, + "San Luis Coastal Unified School District": 15, + "San Marcos Consolidated Independent School District": 15, + "San Marcos Unified School District": 15, + "San Marino Unified School District": 15, + "San Mateo-Foster City Elementary School District": 15, + "San Mateo Union High School District": 15, + "San Miguel Joint Union Element School District": 1, + "San Miguel Joint Union Elementary School District": 14, + "San Pasqual Union Elementary School District": 15, + "San Pasqual Valley Unified School District": 15, + "San Perlita Independent School District": 15, + "San Rafael City Elementary School District": 15, + "San Rafael City High School District": 15, + "San Ramon Valley Unified School District": 15, + "San Saba Independent School District": 15, + "San Simon Unified District": 15, + "San Vicente Independent School District": 10, + "San Vincente Independent School District": 5, + "San Ysidro Elementary School District": 15, + "Sanborn Central School District 55-5": 14, + "Sanborn Regional School District": 15, + "Sand Creek Community Schools": 15, + "Sand Springs Elementary School District": 15, + "Sand Springs Public Schools": 15, + "Sanders Unified District": 15, + "Sandgate School District": 9, + "Sandhills Public Schools": 15, + "Sandoval Community Unit School District 501": 15, + "Sandridge School District 172": 15, + "Sands Consolidated Independent School District": 15, + "Sandusky City School District": 15, + "Sandusky Community School District": 15, + "Sandwich Community Unit School District 430": 15, + "Sandwich School District": 15, + "Sandy Creek Central School District": 15, + "Sandy River Plantation": 2, + "Sandy River Plantation School District": 1, + "Sandy Valley Local School District": 15, + "Sandyston-Walpack Township School District": 15, + "Sanford": 14, + "Sanford-Fritch Independent School District": 15, + "Sanford School District": 1, + "Sanford School District 6J": 15, + "Sangamon Valley Community Unit School District 9": 15, + "Sanger Independent School District": 15, + "Sanger Unified School District": 15, + "Sangre de Cristo School District RE-22J": 15, + "Santa Ana Unified School District": 15, + "Santa Anna Independent School District": 15, + "Santa Barbara Elementary School District": 3, + "Santa Barbara High School District": 3, + "Santa Barbara Unified School District": 12, + "Santa Barbara Unified School District (7-12)": 12, + "Santa Clara Elementary School District": 15, + "Santa Clara Unified School District": 15, + "Santa Cruz City Elementary School District": 15, + "Santa Cruz City High School District": 15, + "Santa Cruz City High School District (6-12)": 6, + "Santa Cruz City High School District (9-12)": 6, + "Santa Cruz City High School District (9-12) in Soquel": 8, + "Santa Cruz County High School District": 1, + "Santa Cruz Elementary District": 15, + "Santa Cruz Valley Unified District": 15, + "Santa Cruz Valley Union High School District": 15, + "Santa Fe Independent School District": 15, + "Santa Fe Public Schools": 15, + "Santa Fe R-X School District": 15, + "Santa Fe Trail Unified School District 434": 15, + "Santa Gertrudis Independent School District": 15, + "Santa Maria-Bonita Elementary School District": 15, + "Santa Maria Independent School District": 15, + "Santa Maria Joint Union High School District": 15, + "Santa Monica-Malibu Unified School District": 15, + "Santa Paula Elementary School District": 5, + "Santa Paula Unified (9-12) in Briggs": 4, + "Santa Paula Unified (9-12) in Mupu": 4, + "Santa Paula Unified (9-12) in Santa Clara": 4, + "Santa Paula Unified School District": 10, + "Santa Paula Unified School District (9-12)": 6, + "Santa Paula Union High School District": 5, + "Santa Rita Union Elementary School District": 15, + "Santa Rosa Consolidated Schools": 15, + "Santa Rosa County School District": 15, + "Santa Rosa Elementary School District": 15, + "Santa Rosa High School District": 15, + "Santa Rosa Independent School District": 15, + "Santa Ynez Valley Union High School District": 15, + "Santee Community Schools": 15, + "Santee Elementary School District": 7, + "Santee School District": 8, + "Santiam Canyon School District 129J": 15, + "Santo Independent School District": 15, + "Sapulpa Public Schools": 15, + "Saraland City School District": 14, + "Saranac Central School District": 15, + "Saranac Community Schools": 15, + "Saranac Lake Central School District": 15, + "Sarasota County School District": 15, + "Saratoga Community Consolidated School District 60C": 15, + "Saratoga Springs City School District": 15, + "Saratoga Union Elementary School District": 15, + "Sarcoxie R-II School District": 15, + "Sargent Central Public School District 6": 15, + "Sargent Public Schools": 15, + "Sargent School District RE-33J": 15, + "Sartell-St. Stephen School District": 15, + "Sasakwa Public Schools": 15, + "Satanta Unified School District 507": 15, + "Satsop School District": 15, + "Satsuma City School District": 10, + "Saucelito Elementary School District": 15, + "Saucon Valley School District": 15, + "Saugatuck Public Schools": 15, + "Saugerties Central School District": 15, + "Saugus School District": 15, + "Saugus Union Elementary School District": 15, + "Sauk Centre Public School District": 15, + "Sauk Prairie School District": 15, + "Sauk Rapids-Rice Public Schools": 12, + "Sauk Rapids Public School District": 3, + "Sault Ste. Marie Area Schools": 15, + "Saunemin Community Consolidated School District 438": 15, + "Sauquoit Valley Central School District": 15, + "Sausalito Elementary School District": 15, + "Savage Elementary School District": 15, + "Savage High School District": 15, + "Savanna Elementary School District": 15, + "Savanna Public Schools": 15, + "Savannah R-III School District": 15, + "Savoy Independent School District": 15, + "Savoy School District": 15, + "Sawyer Public School District 16": 15, + "Saydel Community School District": 15, + "Sayre Area School District": 15, + "Sayre Public Schools": 15, + "Sayreville Borough School District": 15, + "Sayville Union Free School District": 15, + "Scales Mound Community Unit School District 211": 15, + "Scappoose School District 1J": 15, + "Scarborough": 14, + "Scarborough School District": 1, + "Scarsdale Union Free School District": 15, + "Schaller-Crestland Community School District": 15, + "Schalmont Central School District": 15, + "Schaumburg Community Consolidated School District 54": 15, + "Schenectady City School District": 15, + "Schenevus Central School District": 15, + "Schertz-Cibolo-Universal City Independent School District": 15, + "Schiller Park School District 81": 15, + "Schleicher Independent School District": 15, + "Schleswig Community School District": 15, + "Schley County School District": 15, + "Schodack Central School District": 15, + "Schoharie Central School District": 15, + "Schoodic Community School District": 1, + "School Administration District 10": 14, + "School Administration District 10 Allagash": 1, + "School Administrative District 01": 14, + "School Administrative District 03": 14, + "School Administrative District 04": 14, + "School Administrative District 06": 14, + "School Administrative District 07": 14, + "School Administrative District 08": 14, + "School Administrative District 09": 13, + "School Administrative District 1 Presque Isle": 1, + "School Administrative District 11": 14, + "School Administrative District 11 Gardiner": 1, + "School Administrative District 12": 14, + "School Administrative District 12 Jackman": 1, + "School Administrative District 13": 14, + "School Administrative District 13 Bingham": 1, + "School Administrative District 14": 14, + "School Administrative District 14 Danforth": 1, + "School Administrative District 15": 14, + "School Administrative District 15 Gray": 1, + "School Administrative District 16 Hallowell": 1, + "School Administrative District 17": 14, + "School Administrative District 17 Norway": 1, + "School Administrative District 18 Verona": 1, + "School Administrative District 19": 14, + "School Administrative District 19 Lubec": 1, + "School Administrative District 20": 14, + "School Administrative District 20 Fort Fairfield": 1, + "School Administrative District 21 Dixfield": 1, + "School Administrative District 22": 4, + "School Administrative District 22 Hampden": 1, + "School Administrative District 23": 14, + "School Administrative District 23 Carmel": 1, + "School Administrative District 24": 14, + "School Administrative District 24 Van Buren": 1, + "School Administrative District 25": 2, + "School Administrative District 25 Sherman": 1, + "School Administrative District 26 Eastbrook": 1, + "School Administrative District 27": 14, + "School Administrative District 27 Fort Kent": 1, + "School Administrative District 28": 15, + "School Administrative District 29": 14, + "School Administrative District 29 Houlton": 1, + "School Administrative District 3 Thorndike": 1, + "School Administrative District 30": 14, + "School Administrative District 30 Lee": 1, + "School Administrative District 31": 14, + "School Administrative District 31 Howland": 1, + "School Administrative District 32": 14, + "School Administrative District 32 Ashland": 1, + "School Administrative District 33": 14, + "School Administrative District 33 St. Agatha": 1, + "School Administrative District 34 Belfast": 1, + "School Administrative District 35": 14, + "School Administrative District 35 Eliot": 1, + "School Administrative District 36": 2, + "School Administrative District 36 Livermore Falls": 1, + "School Administrative District 37": 14, + "School Administrative District 37 Harrington": 1, + "School Administrative District 38 Dixmont": 1, + "School Administrative District 39 Buckfield": 1, + "School Administrative District 4 Guilford": 1, + "School Administrative District 40": 14, + "School Administrative District 40 Waldoboro": 1, + "School Administrative District 41": 14, + "School Administrative District 41 Milo": 1, + "School Administrative District 42": 14, + "School Administrative District 42 Mars Hill": 1, + "School Administrative District 43 Mexico": 1, + "School Administrative District 44": 14, + "School Administrative District 44 Bethel": 1, + "School Administrative District 45": 14, + "School Administrative District 45 Washburn": 1, + "School Administrative District 46": 14, + "School Administrative District 46 Dexter": 1, + "School Administrative District 47 Oakland": 1, + "School Administrative District 48 Newport": 1, + "School Administrative District 49": 14, + "School Administrative District 49 Fairfield": 1, + "School Administrative District 5 Rockland": 1, + "School Administrative District 50 Thomaston": 1, + "School Administrative District 51": 14, + "School Administrative District 51 Cumberland": 1, + "School Administrative District 52": 14, + "School Administrative District 52 Turner": 1, + "School Administrative District 53": 14, + "School Administrative District 53 Pittsfield": 1, + "School Administrative District 54": 14, + "School Administrative District 54 Skowhegan": 1, + "School Administrative District 55": 14, + "School Administrative District 55 Porter": 1, + "School Administrative District 56 Searsport": 1, + "School Administrative District 57": 14, + "School Administrative District 57 Waterboro": 1, + "School Administrative District 58": 14, + "School Administrative District 58 Kingfield": 1, + "School Administrative District 59": 14, + "School Administrative District 59 Madison": 1, + "School Administrative District 6 Buxton": 1, + "School Administrative District 60": 14, + "School Administrative District 60 Berwick": 1, + "School Administrative District 61": 14, + "School Administrative District 61 Bridgton": 1, + "School Administrative District 62 Pownal": 1, + "School Administrative District 63": 14, + "School Administrative District 63 Eddington": 1, + "School Administrative District 64": 14, + "School Administrative District 64 Corinth": 1, + "School Administrative District 65": 14, + "School Administrative District 65 Matinicus Isle Plantation": 1, + "School Administrative District 67": 13, + "School Administrative District 67 Lincoln": 1, + "School Administrative District 68": 14, + "School Administrative District 68 Dover-Foxcroft": 1, + "School Administrative District 7 North Haven": 1, + "School Administrative District 70": 14, + "School Administrative District 70 Hodgdon": 1, + "School Administrative District 71 Kennebunk": 1, + "School Administrative District 72": 14, + "School Administrative District 72 Fryeburg": 1, + "School Administrative District 74": 14, + "School Administrative District 74 Anson": 1, + "School Administrative District 75": 14, + "School Administrative District 75 Topsham": 1, + "School Administrative District 76": 14, + "School Administrative District 76 Swans Island": 1, + "School Administrative District 77 Cutler": 1, + "School Administrative District 8 Vinalhaven": 1, + "School Administrative District 9 Farmington": 1, + "School District 27J": 5, + "School District 49": 4, + "School District Not Defined": 138, + "School District Not Defined (Water)": 45, + "School District U-46": 15, + "School of The Osage R-II School District": 5, + "School of The Osage School District": 10, + "Schoolcraft Community Schools": 15, + "Schroon Lake Central School District": 15, + "Schulenburg Independent School District": 15, + "Schulter Public Schools": 15, + "Schuyler-Industry Community Unit School District 5": 15, + "Schuyler Community Schools": 15, + "Schuyler County R-I School District": 15, + "Schuylerville Central School District": 15, + "Schuylkill Haven Area School District": 15, + "Schuylkill Valley School District": 15, + "Science Hill Independent School District": 15, + "Scio Central School District": 15, + "Scio School District 95": 15, + "Scioto Valley Local School District": 15, + "Scituate School District": 30, + "Scobey K-12 Schools": 15, + "Scotch Plains-Fanwood Regional School District": 15, + "Scotia-Glenville Central School District": 15, + "Scotia Union Elementary School District": 15, + "Scotland County R-I School District": 15, + "Scotland County Schools": 15, + "Scotland School District": 15, + "Scotland School District 04-3": 15, + "Scott-Morgan Consolidated Unit School District 2": 15, + "Scott City R-I School District": 15, + "Scott County Central Schools": 15, + "Scott County Public Schools": 15, + "Scott County R-II School District": 5, + "Scott County R-IV School District": 15, + "Scott County School District": 45, + "Scott County School District 1": 15, + "Scott County School District 2": 15, + "Scott County Unified School District 466": 15, + "Scott Valley Unified School District": 15, + "Scott Valley Unified School District (9-12)": 6, + "Scott Valley Unified School District in Forks of Salmon": 8, + "Scotts Valley Unified School District": 15, + "Scottsbluff Public Schools": 15, + "Scottsboro City School District": 15, + "Scottsdale Unified District": 15, + "Scranton Public School District 33": 15, + "Scranton School District": 30, + "Screven County School District": 15, + "Scribner-Snyder Community Schools": 15, + "Scurry-Rosser Independent School District": 15, + "SD 45 DuPage County": 1, + "Sea Bright Borough School District": 1, + "Sea Girt Borough School District": 15, + "Sea Isle City School District": 15, + "Seabrook School District": 15, + "Seaford School District": 15, + "Seaford Union Free School District": 15, + "Seagraves Independent School District": 15, + "Sealy Independent School District": 15, + "Seaman Unified School District 345": 15, + "Searcy County School District": 15, + "Searcy School District": 15, + "Searsburg School District": 9, + "Seaside Heights Borough School District": 15, + "Seaside Park Borough School District": 15, + "Seaside School District 10": 15, + "Seattle Public Schools": 5, + "Seattle School District": 10, + "Sebago Public Schools": 5, + "Sebastopol Union Elementary School District": 15, + "Sebeka Public School District": 15, + "Seboeis Plantation": 14, + "Seboeis School District": 1, + "Sebring Local School District": 15, + "Secaucus Town School District": 15, + "Secondary Coverage Area in Braman Public Schools (9-12)": 2, + "Secondary Coverage Area in White Oak Public Schools (9-12)": 9, + "Sedalia 200 School District": 15, + "Sedgwick": 14, + "Sedgwick Public Schools Unified School District 439": 15, + "Sedgwick School District": 1, + "Sedona-Oak Creek Joint Unified District": 15, + "Sedro-Woolley School District": 15, + "Seekonk School District": 15, + "Seeley Lake Elementary School District": 15, + "Seeley Union Elementary School District": 15, + "Seguin Independent School District": 15, + "Seiad Elementary School District": 15, + "Seiling Public Schools": 15, + "Selah School District": 15, + "Selby School District 62-5": 15, + "Selfridge Public School District 8": 15, + "Seligman Unified District": 15, + "Selinsgrove Area School District": 15, + "Selkirk School District": 15, + "Selma City School District": 15, + "Selma Unified School District": 15, + "Selmaville Community Consolidated School District 10": 15, + "Seminole County School District": 30, + "Seminole Independent School District": 15, + "Seminole Public Schools": 15, + "Semitropic Elementary School District": 15, + "Senath-Hornersville C-8 School District": 15, + "Senatobia Municipal School District": 15, + "Seneca Community Consolidated School District 170": 15, + "Seneca East Local School District": 15, + "Seneca Falls Central School District": 15, + "Seneca R-VII School District": 15, + "Seneca School District": 15, + "Seneca Township High School District 160": 15, + "Seneca Valley School District": 15, + "Sentinel Elementary District": 15, + "Sentinel Public Schools": 15, + "Sentral Community School District": 7, + "Sequatchie County School District": 15, + "Sequim School District": 15, + "Sequoia Union Elementary School District": 15, + "Sequoia Union High School District": 15, + "Sequoyah Public Schools": 15, + "Serena CUSD 2": 1, + "Sergeant Bluff-Luton Community School District": 15, + "Sesser-Valier Community Unit School District 196": 15, + "Sevastopol School District": 15, + "Sevier County School District": 15, + "Sevier School District": 15, + "Sewanhaka Central High School District": 15, + "Seward Public Schools": 15, + "Seymour Community School District": 30, + "Seymour Community Schools": 15, + "Seymour Independent School District": 15, + "Seymour R-II School District": 15, + "Seymour School District": 15, + "Shade-Central City School District": 15, + "Shady Grove Public School": 15, + "Shady Point Public School": 15, + "Shadyside Local School District": 15, + "Shaffer Union Elementary School District": 15, + "Shaftsbury School District": 7, + "Shakamak Schools Metropolitan School District": 15, + "Shaker Heights City School District": 15, + "Shaker Regional School District": 15, + "Shakopee Public School District": 15, + "Shaler Area School District": 15, + "Shallowater Independent School District": 15, + "Shamokin Area School District": 15, + "Shamong Township School District": 15, + "Shamrock Independent School District": 15, + "Shandon Joint Unified School District": 15, + "Shanksville-Stonycreek School District": 15, + "Shannon County School District 65-1": 11, + "Sharon-Mutual Public Schools": 15, + "Sharon City School District": 15, + "Sharon Joint No. 11 School District": 15, + "Sharon School District": 39, + "Sharon Springs Central School District": 15, + "Sharpsville Area School District": 15, + "Sharyland Independent School District": 15, + "Shasta Union Elementary School District": 15, + "Shasta Union High School District": 15, + "Shattuck Public Schools": 15, + "Shaw Island School District": 15, + "Shaw School District": 7, + "Shawano School District": 15, + "Shawmut Elementary School District": 9, + "Shawnee Community Unit School District 84": 15, + "Shawnee Heights Unified School District 450": 15, + "Shawnee Local School District": 15, + "Shawnee Mission Public Schools Unified School District": 15, + "Shawnee Public Schools": 15, + "Shawnee R-III School District": 15, + "Sheboygan Area School District": 15, + "Sheboygan Falls School District": 15, + "Sheffield-Sheffield Lake City School District": 15, + "Sheffield Chapin Meservey Thornton Community School District": 3, + "Sheffield City School District": 15, + "Shelburne School District": 7, + "Shelby-Rising City Public Schools": 5, + "Shelby City School District": 15, + "Shelby County C-1 School District": 5, + "Shelby County R-IV School District": 15, + "Shelby County School District": 45, + "Shelby Eastern Schools": 15, + "Shelby Elementary School District": 15, + "Shelby High School District": 15, + "Shelby Public Schools": 25, + "Shelbyville Central Schools": 15, + "Shelbyville Community Unit School District 4": 15, + "Shelbyville Independent School District": 15, + "Sheldon Community School District": 15, + "Sheldon Independent School District": 15, + "Sheldon R-VIII School District": 15, + "Sheldon School District": 7, + "Shell Knob 78 School District": 15, + "Shell Lake School District": 15, + "Shelley Joint School District 60": 15, + "Shelter Island Union Free School District": 15, + "Shelton Public Schools": 15, + "Shelton School District": 30, + "Shenandoah Community School District": 15, + "Shenandoah County Public Schools": 15, + "Shenandoah School Corporation": 15, + "Shenandoah Valley School District": 15, + "Shenango Area School District": 15, + "Shenendehowa Central School District": 15, + "Shepherd Elementary School District": 15, + "Shepherd High School District": 15, + "Shepherd Independent School District": 15, + "Shepherd Public School District": 15, + "Sherborn School District": 15, + "Sherburne-Earlville Central School District": 15, + "Sherburne School District": 5, + "Sheridan Community Schools": 12, + "Sheridan County School District 1": 15, + "Sheridan County School District 2": 15, + "Sheridan County School District 3": 15, + "Sheridan Elementary School District": 15, + "Sheridan High School District": 15, + "Sheridan School District": 15, + "Sheridan School District 2": 15, + "Sheridan School District 48J": 15, + "Sherman Central School District": 15, + "Sherman Independent School District": 15, + "Sherman School District": 15, + "Sherman School District 1": 15, + "Sherrard Community Unit School District 200": 15, + "Sherrill City School District": 15, + "Sherwood Cass R-VIII School District": 15, + "Sherwood School District 88J": 15, + "Shickley Public Schools": 15, + "Shidler Public Schools": 15, + "Shields Valley Elementary School District": 15, + "Shields Valley High School District": 15, + "Shikellamy School District": 15, + "Shiloh Borough School District": 1, + "Shiloh Community Unit School District 1": 15, + "Shiloh Elementary School District": 15, + "Shiloh Village School District 85": 15, + "Shiner Independent School District": 15, + "Shiocton School District": 15, + "Shippensburg Area School District": 15, + "Shirland Community Consolidated School District 134": 15, + "Shirley": 14, + "Shirley School District": 19, + "Shoals Community School Corporation": 15, + "Shore Regional School District": 15, + "Shoreham-Wading River Central School District": 15, + "Shoreham School District": 7, + "Shoreline School District": 15, + "Shoreline Unified School District": 15, + "Shorewood School District": 15, + "Shoshone Joint School District 312": 15, + "Show Low Unified District": 15, + "Shrewsbury Borough School District": 15, + "Shrewsbury School District": 22, + "Shullsburg School District": 15, + "Shutesbury School District": 15, + "Sibley-Ocheyedan Community School District": 15, + "Sibley East School District": 15, + "Sidney Central School District": 15, + "Sidney City School District": 15, + "Sidney Community School District": 15, + "Sidney Elementary School District": 15, + "Sidney High School District": 15, + "Sidney Independent School District": 15, + "Sidney Public Schools": 15, + "Sierra-Plumas Joint Unified School District": 15, + "Sierra Blanca Independent School District": 15, + "Sierra Grande School District R-30": 15, + "Sierra Sands Unified School District": 15, + "Sierra Unified School District": 15, + "Sierra Unified School District (9-12)": 6, + "Sierra Vista Unified District": 15, + "Sigel Township School District 3F": 15, + "Sigel Township School District 4F": 15, + "Sigel Township School District 6": 15, + "Signal Hill School District 181": 15, + "Sigourney Community School District": 15, + "Sikeston R-VI School District": 10, + "Sikeston School District": 5, + "Silex R-I School District": 15, + "Silo Public Schools": 15, + "Siloam Springs Schools": 15, + "Silsbee Independent School District": 15, + "Silver City Consolidated Schools": 15, + "Silver Creek Central School District": 15, + "Silver Creek School Corporation": 3, + "Silver Falls School District 4J": 15, + "Silver Fork Elementary School District": 15, + "Silver Grove Independent School District": 11, + "Silver Lake Joint No. 1 School District": 15, + "Silver Lake Public Schools": 15, + "Silver Lake School District": 15, + "Silver Lake Unified School District 372": 15, + "Silver Valley Unified School District": 15, + "Silverton Independent School District": 15, + "Silverton School District 1": 15, + "Silvis School District 34": 15, + "Simi Valley Unified School District": 15, + "Simms High School District": 15, + "Simms Independent School District": 15, + "Simpson County School District": 30, + "Sims Public School District 8": 1, + "Simsbury School District": 15, + "Sinton Independent School District": 15, + "Sioux Center Community School District": 15, + "Sioux Central Community School District": 15, + "Sioux City Community School District": 15, + "Sioux County Public Schools": 15, + "Sioux Falls School District 49-5": 15, + "Sioux Valley School District 05-5": 15, + "Siren School District": 15, + "Siskiyou Union High School District": 15, + "Sisseton School District 54-2": 15, + "Sisters School District 6": 15, + "Sitka Borough School District": 7, + "Sitka School District": 8, + "Siuslaw School District 97J": 15, + "Sivells Bend Independent School District": 15, + "Skagway School District": 15, + "Skamania School District": 15, + "Skaneateles Central School District": 15, + "Skelly Public School": 5, + "Skiatook Public Schools": 15, + "Skidmore-Tynan Independent School District": 15, + "Skokie-Fairview School District 72": 15, + "Skokie School District 68": 15, + "Skokie School District 69": 15, + "Skokie School District 73-5": 15, + "Skull Valley Elementary District": 15, + "Skykomish School District": 15, + "Skyline R-II School District": 15, + "Skyline Schools Unified School District 438": 15, + "Slate Valley Unified Union School District": 1, + "Slate Valley Unified Union School District #62": 1, + "Slate Valley Unified Union School District 62": 1, + "Slater School District": 15, + "Slaton Independent School District": 15, + "Sleepy Eye Public School District": 15, + "Slidell Independent School District": 15, + "Slinger School District": 15, + "Slippery Rock Area School District": 15, + "Sloan-Hendrix School District": 15, + "Slocum Independent School District": 15, + "Smackover-Norphlet School District": 8, + "Smackover School District": 7, + "Smee School District 15-3": 15, + "Smethport Area School District": 15, + "Smith-Green Community Schools": 15, + "Smith Center Unified School District 237": 13, + "Smith County School District": 30, + "Smith Valley Elementary School District": 15, + "Smithfield School District": 15, + "Smithton Community Consolidated School District 130": 15, + "Smithton R-VI School District": 15, + "Smithtown Central School District": 15, + "Smithville Independent School District": 15, + "Smithville Public Schools": 15, + "Smithville R-II School District": 10, + "Smithville School District": 5, + "Smoky Valley Unified School District 400": 13, + "Smyer Independent School District": 15, + "Smyrna School District": 15, + "Smyth County Public Schools": 15, + "Snake River School District 52": 15, + "Snelling-Merced Falls Union Elementary School District": 15, + "Snohomish School District": 15, + "Snook Independent School District": 15, + "Snoqualmie Valley School District": 15, + "Snowflake Unified District": 15, + "Snowline Joint Unified School District": 15, + "Snyder Independent School District": 15, + "Snyder Public Schools": 15, + "Soap Lake School District": 15, + "Social Circle City School District": 15, + "Socorro Consolidated Schools": 15, + "Socorro Independent School District": 15, + "Soda Springs Joint School District 150": 15, + "Sodus Central School District": 15, + "Sodus Township School District 5": 15, + "Solana Beach Elementary School District": 15, + "Solanco School District": 15, + "Soledad Unified School District": 15, + "Solen Public School District 3": 15, + "Solomon Elementary District": 15, + "Solomon Unified School District 393": 15, + "Solon City School District": 15, + "Solon Community School District": 15, + "Solon Springs School District": 15, + "Solvang Elementary School District": 15, + "Solvay Union Free School District": 15, + "Somerdale Borough School District": 15, + "Somers Central School District": 15, + "Somers Elementary School District": 13, + "Somers Point City School District": 15, + "Somers School District": 15, + "Somerset-Berkley School District": 12, + "Somerset Area School District": 15, + "Somerset County Public Schools": 15, + "Somerset Hills Regional School District": 15, + "Somerset Independent School District": 30, + "Somerset School District": 39, + "Somerset School District in Berkley (9-12)": 3, + "Somerset Unorganized Territory": 15, + "Somersworth School District": 15, + "Somerton Elementary District": 15, + "Somerville Borough School District": 15, + "Somerville Independent School District": 15, + "Somerville School District": 16, + "Somis Union Elementary School District": 15, + "Somonauk Community Unit School District 432": 15, + "Sonoita Elementary District": 15, + "Sonoma Valley Unified School District": 15, + "Sonora Elementary School District": 15, + "Sonora Independent School District": 15, + "Sonora Union High School District": 15, + "Soper Public Schools": 15, + "Soquel Elementary School District": 15, + "Souderton Area School District": 15, + "Souhegan Cooperative School District": 15, + "Soulsbyville Elementary School District": 15, + "South-Western City School District": 15, + "South Adams Schools": 15, + "South Allegheny School District": 15, + "South Amboy City School District": 15, + "South Barber Unified School District 255": 15, + "South Bay Union Elementary School District": 8, + "South Bay Union Elementary School District (Humboldt County)": 7, + "South Bay Union Elementary School District (San Diego County)": 7, + "South Bay Union School District": 8, + "South Beloit Community Unit School District 320": 14, + "South Bend Community School Corporation": 15, + "South Bend School District": 15, + "South Bound Brook Borough School District": 15, + "South Bristol": 14, + "South Bristol School District": 1, + "South Brown County Unified School District 430": 15, + "South Brunswick Township School District": 15, + "South Burlington School District": 15, + "South Butler County School District": 15, + "South Callaway County R-II School District": 10, + "South Callaway R-II Schools": 5, + "South Carroll Special School District": 15, + "South Central Calhoun Community School District": 8, + "South Central Community School Corporation": 15, + "South Central Community Unit School District 401": 15, + "South Central Local School District": 15, + "South Central Nebraska School District": 9, + "South Central Nebraska Unified 5": 6, + "South Central School District 26-5": 14, + "South Clay Community School District": 3, + "South Coffeyville Schools": 15, + "South Colonie Central School District": 15, + "South Conejos School District RE-10": 15, + "South Conway County School District": 15, + "South Country Central School District": 15, + "South Dearborn Community School Corporation": 15, + "South Delta School District": 15, + "South Eastern School District": 15, + "South Euclid-Lyndhurst City School District": 15, + "South Fayette Township School District": 15, + "South Fork School District 14": 15, + "South Fork Union Elementary School District": 7, + "South Fork Union School District": 8, + "South Gibson School Corporation": 15, + "South Glens Falls Central School District": 15, + "South Hackensack Township School District": 15, + "South Hadley School District": 15, + "South Hamilton Community School District": 15, + "South Hampton School District": 15, + "South Harney School District 33": 15, + "South Harrison Community Schools": 15, + "South Harrison County R-II School District": 10, + "South Harrison School District": 5, + "South Harrison Township School District": 15, + "South Haven Public Schools": 15, + "South Haven Unified School District 509": 15, + "South Heart Public School District 9": 15, + "South Henry School Corporation": 15, + "South Hero School District": 9, + "South Holland School District 150": 15, + "South Holland School District 151": 15, + "South Holt County R-I School District": 15, + "South Hunterdon Regional School District": 15, + "South Huntington Union Free School District": 15, + "South Iron County R-I School District": 15, + "South Jefferson Central School District": 15, + "South Kingstown School District": 15, + "South Kitsap School District": 15, + "South Knox School Corporation": 15, + "South Koochiching School District": 15, + "South Kortright Central School District": 15, + "South Lake Schools": 15, + "South Lane School District 45J": 15, + "South Lemhi School District 292": 15, + "South Lewis Central School District": 15, + "South Lyon Community Schools": 15, + "South Madison Community School Corporation": 15, + "South Middleton School District": 15, + "South Milwaukee School District": 15, + "South Mississippi County School District": 7, + "South Monterey County Joint Union High School District": 6, + "South Montgomery Community School Corporation": 15, + "South Newton School Corporation": 15, + "South Nodaway County R-IV School District": 15, + "South O'Brien Community School District": 15, + "South Orange-Maplewood School District": 15, + "South Orangetown Central School District": 15, + "South Page Community School District": 15, + "South Panola School District": 15, + "South Park School District": 15, + "South Pasadena Unified School District": 15, + "South Pekin School District 137": 15, + "South Pemiscot County R-V School District": 10, + "South Pemiscot Schools": 5, + "South Pike County School District": 12, + "South Pike School District": 15, + "South Plainfield Borough School District": 15, + "South Platte Public Schools": 15, + "South Point Local School District": 15, + "South Portland": 14, + "South Portland School District": 1, + "South Prairie Public School District 70": 15, + "South Putnam Community Schools": 15, + "South Range Local School District": 15, + "South Redford School District": 15, + "South Ripley Community School Corporation": 15, + "South River Borough School District": 15, + "South Rock Creek Public School": 15, + "South Routt School District RE-3": 15, + "South San Antonio Independent School District": 15, + "South San Francisco Unified School District": 15, + "South Sanpete School District": 15, + "South Sarpy District 46": 10, + "South Seneca Central School District": 15, + "South Shore School District": 15, + "South Shore School District 14-3": 1, + "South Side-Bee Branch School District": 15, + "South Side Area School District": 15, + "South Sioux City Community Schools": 15, + "South Spencer County School Corporation": 15, + "South St. Paul Public School District": 15, + "South Stacey Elementary School District": 13, + "South Summit School District": 15, + "South Tama County Community School District": 15, + "South Tippah School District": 15, + "South Umpqua School District 19": 15, + "South Vermillion Community School Corporation": 15, + "South Wasco County School District 1": 15, + "South Washington County School District": 15, + "South Western School District": 15, + "South Whidbey School District": 15, + "South Whittier Elementary School District": 15, + "South Williamsport Area School District": 15, + "South Wilmington Consolidated School District 74": 15, + "South Windsor School District": 15, + "South Winneshiek Community School District": 15, + "Southampton County Public Schools": 15, + "Southampton School District": 15, + "Southampton Township School District": 15, + "Southampton Union Free School District": 15, + "Southborough School District": 15, + "Southbridge School District": 15, + "Southeast Delco School District": 15, + "Southeast Dubois County School Corporation": 15, + "Southeast Fountain School Corporation": 15, + "Southeast Island School District": 15, + "Southeast Local School District (Holmes, Stark, and Wayne Counties)": 15, + "Southeast Local School District (Portage County)": 15, + "Southeast Nebraska Consolidated Schools": 1, + "Southeast of Saline Unified School District 306": 13, + "Southeast Polk Community School District": 15, + "Southeast Warren Community School District": 15, + "Southeast Webster-Grand Community School District": 15, + "Southeastern Community Unit School District 337": 15, + "Southeastern Greene School District": 15, + "Southeastern Local School District (Clark and Greene Counties)": 15, + "Southeastern Local School District (Ross County)": 15, + "Southeastern School Corporation": 14, + "Southern Aroostook Community School District": 2, + "Southern Aroostook Community School District Dyer Brook": 1, + "Southern Berkshire School District": 15, + "Southern Boone County R-I School District": 15, + "Southern Cal Community School District": 7, + "Southern Cayuga Central School District": 15, + "Southern Cloud Unified School District 334": 15, + "Southern Columbia Area School District": 15, + "Southern Door County School District": 15, + "Southern Fulton School District": 15, + "Southern Hancock County Community School Corporation": 15, + "Southern Humboldt Joint Unified School District": 15, + "Southern Huntingdon County School District": 15, + "Southern Kern Unified School District": 15, + "Southern Lehigh School District": 15, + "Southern Local School District (Columbiana and Jefferson Counties)": 15, + "Southern Local School District (Hocking and Perry Counties)": 15, + "Southern Local School District (Meigs County)": 15, + "Southern Lyon County Unified School District 252": 15, + "Southern Public School District 8": 1, + "Southern Regional School District": 15, + "Southern Reynolds County R-II School District": 10, + "Southern Reynolds County R-IV School District": 5, + "Southern School District 1": 15, + "Southern Tioga School District": 15, + "Southern Trinity Joint Unified School District": 15, + "Southern Valley Schools": 15, + "Southern Wells Community Schools": 15, + "Southern York County School District": 15, + "Southfield Public School District": 15, + "Southgate Community School District": 15, + "Southgate Independent School District": 15, + "Southington Local School District": 15, + "Southington School District": 15, + "Southland C-9 School District": 8, + "Southland Independent School District": 15, + "Southland Public School District": 15, + "Southland School District": 7, + "Southmoreland School District": 15, + "Southold Union Free School District": 15, + "Southport": 14, + "Southport School District": 1, + "Southside Elementary School District": 15, + "Southside Independent School District": 15, + "Southside School District": 30, + "Southwest Allen County Metropolitan School District": 15, + "Southwest Dubois County School Corporation": 15, + "Southwest Harbor": 14, + "Southwest Harbor School District": 1, + "Southwest Independent School District": 15, + "Southwest Licking Local School District": 15, + "Southwest Livingston County R-I School District": 15, + "Southwest Local School District": 15, + "Southwest Parke Community School Corporation": 15, + "Southwest Public Schools": 15, + "Southwest R-V School District": 15, + "Southwest Region School District": 15, + "Southwest School Corporation": 15, + "Southwest Vermont Supervisory Union": 6, + "Southwest Vermont Union Elementary School District #87": 1, + "Southwest Vermont Union Elementary School District #87 (PK-5)": 1, + "Southwest Vermont Union Elementary School District 87": 1, + "Southwest Vermont Union Elementary School District 87 (PK-5)": 1, + "Southwestern at Jamestown Central School District": 2, + "Southwestern Central School District": 3, + "Southwestern Central School District at Jamestown": 10, + "Southwestern Community Unit School District 9": 15, + "Southwestern Jefferson County Consolidated Schools": 15, + "Southwestern Shelby County Consolidated Schools": 15, + "Southwestern Wisconsin School District": 15, + "Southwick-Tolland-Granville Regional School District": 10, + "Southwick-Tolland School District": 5, + "Southwick-Tolland School District in Granville (9-12)": 5, + "Spackenkill Union Free School District": 15, + "Spalding County School District": 15, + "Spalding Public Schools": 9, + "Sparta Area School District": 15, + "Sparta Area Schools": 15, + "Sparta Community Unit School District 140": 15, + "Sparta R-III School District": 15, + "Sparta Township School District": 15, + "Spartanburg School District 1": 15, + "Spartanburg School District 2": 15, + "Spartanburg School District 3": 15, + "Spartanburg School District 4": 15, + "Spartanburg School District 5": 15, + "Spartanburg School District 6": 15, + "Spartanburg School District 7": 15, + "Spaulding Union High School District 41": 7, + "Spavinaw Public School": 9, + "Spearfish School District 40-2": 15, + "Spearman Independent School District": 15, + "Spearville Unified School District 381": 15, + "Speedway School Town": 15, + "Spencer-East Brookfield School District": 15, + "Spencer-Owen Community Schools": 15, + "Spencer-Van Etten Central School District": 15, + "Spencer Community School District": 15, + "Spencer County School District": 15, + "Spencer School District": 15, + "Spencer Valley Elementary School District": 15, + "Spencerport Central School District": 15, + "Spencerville Local School District": 15, + "Sperry Public Schools": 15, + "Spickard R-II School District": 15, + "Spirit Lake Community School District": 15, + "Spiro Public Schools": 15, + "Splendora Independent School District": 15, + "Spokane Public Schools": 14, + "Spokane R-VII School District": 15, + "Spokane School District": 1, + "Spoon River Valley Community Unit School District 4": 15, + "Spooner Area School District": 15, + "Spotswood Borough School District": 15, + "Spotsylvania County Public Schools": 15, + "Sprague School District": 30, + "Spray School District 1": 15, + "Spreckels Union Elementary School District": 15, + "Spring-Ford Area School District": 15, + "Spring Bluff R-XV School District": 15, + "Spring Branch Independent School District": 15, + "Spring Cove School District": 15, + "Spring Creek Colony Elementary School District": 15, + "Spring Creek Elementary School District": 1, + "Spring Creek Elementary School District (Big Horn County)": 14, + "Spring Creek Elementary School District (Custer and Powder River Counties)": 14, + "Spring Creek Independent School District": 15, + "Spring Garden Community Consolidated School District 178": 8, + "Spring Grove Area School District": 15, + "Spring Grove School District": 15, + "Spring Hill Independent School District": 15, + "Spring Hill School District": 15, + "Spring Hill Unified School District 230": 15, + "Spring Independent School District": 15, + "Spring Lake Borough School District": 15, + "Spring Lake Community Consolidated School District 606": 15, + "Spring Lake Heights Borough School District": 15, + "Spring Lake Park Public Schools": 15, + "Spring Lake Public Schools": 15, + "Spring Valley Community Consolidated School District 99": 15, + "Spring Valley School District": 15, + "Springboro Community City School District": 15, + "Springdale Elementary School District": 10, + "Springdale School District": 15, + "Springer Municipal Schools": 15, + "Springer Public Schools": 15, + "Springfield City School District": 15, + "Springfield Local School District (Lucas County)": 15, + "Springfield Local School District (Mahoning County)": 15, + "Springfield Local School District (Portage and Summit Counties)": 15, + "Springfield Platteview Community Schools": 5, + "Springfield Public School District": 15, + "Springfield R-XII School District": 10, + "Springfield School District": 50, + "Springfield School District 186": 15, + "Springfield School District 19": 15, + "Springfield School District RE-4": 15, + "Springfield Township School District": 45, + "Springhill Elementary School District": 15, + "Springlake-Earth Independent School District": 15, + "Springport Public Schools": 15, + "Springs Union Free School District": 15, + "Springs Valley Community School Corporation": 15, + "Springtown Independent School District": 15, + "Springville-Griffith Institute Central School": 10, + "Springville-Griffith Institute Central School District": 5, + "Springville Community School District": 15, + "Springville Union Elementary School District": 15, + "Spur Independent School District": 15, + "Spurger Independent School District": 15, + "St. Albans City School District": 7, + "St. Albans Town School District": 7, + "St. Anne Community High School District 302": 15, + "St. Anne Consolidated Community School District 256": 15, + "St. Ansgar Community School District": 15, + "St. Anthony-New Brighton Schools": 15, + "St. Bernard-Elmwood Place City School District": 15, + "St. Bernard Parish School District": 15, + "St. Charles Community Schools": 15, + "St. Charles Community Unit School District 303": 15, + "St. Charles County R-V School District": 5, + "St. Charles Parish School District": 15, + "St. Charles Public School District": 15, + "St. Charles R-VI School District": 15, + "St. Clair Area School District": 8, + "St. Clair County School District": 15, + "St. Clair Public School District": 15, + "St. Clair R-XIII School District": 15, + "St. Clairsville-Richland City School District": 15, + "St. Cloud Public School District": 15, + "St. Croix Central School District": 15, + "St. Croix Falls School District": 15, + "St. David Unified District": 15, + "St. Edward Public Schools": 15, + "St. Elizabeth R-IV School District": 15, + "St. Elmo Community Unit School District 202": 15, + "St. Francis Area Schools": 4, + "St. Francis Community Schools Unified School District 297": 15, + "St. Francis Public School District": 11, + "St. Francis School District": 15, + "St. George Community Consolidated School District 258": 15, + "St. George Public Schools": 8, + "St. George School District": 7, + "St. Helena Parish School District": 15, + "St. Helena Unified School District": 15, + "St. Helens School District 502": 15, + "St. Henry Consolidated Local School District": 15, + "St. Ignace Area Schools": 15, + "St. Ignatius K-12 Schools": 15, + "St. James Parish School District": 15, + "St. James Public School District": 15, + "St. James R-I School District": 15, + "St. Jo Independent School District": 6, + "St. John-Hudson Unified School District 350": 15, + "St. John Public School District 3": 15, + "St. John School District": 15, + "St. John the Baptist Parish School District": 15, + "St. Johns County School District": 15, + "St. Johns Public Schools": 15, + "St. Johns Unified District": 15, + "St. Johnsbury School District": 15, + "St. Johnsville Central School District": 5, + "St. Joseph-Ogden Community High School District 305": 15, + "St. Joseph Community Consolidated School District 169": 15, + "St. Joseph Public Schools": 15, + "St. Joseph School District": 15, + "St. Landry Parish School District": 15, + "St. Libory Consolidated School District 30": 15, + "St. Louis-Northland in Nett Lake (7-12)": 4, + "St. Louis City School District": 15, + "St. Louis County School District": 15, + "St. Louis Park Public School District": 15, + "St. Louis Public Schools": 15, + "St. Lucie County School District": 15, + "St. Maries Joint School District 41": 15, + "St. Martin Parish School District": 15, + "St. Mary Parish School District": 15, + "St. Marys Area School District": 15, + "St. Marys City School District": 30, + "St. Marys County Public Schools": 15, + "St. Michael-Albertville School District": 15, + "St. Paul Public School District": 15, + "St. Paul Public Schools": 15, + "St. Paul School District 45": 15, + "St. Peter Public School District": 15, + "St. Regis Falls Central School District": 12, + "St. Regis K-12 Schools": 15, + "St. Rose School District 14-15": 15, + "St. Tammany Parish School District": 15, + "St. Thomas Public School District 43": 13, + "St. Vrain Valley School District RE 1J": 15, + "Stafford County Public Schools": 15, + "Stafford Municipal School District": 15, + "Stafford School District": 15, + "Stafford Township School District": 15, + "Stafford Unified School District 349": 15, + "Stamford Central School District": 15, + "Stamford Independent School District": 15, + "Stamford School District": 24, + "Stanberry R-II School District": 10, + "Standard Elementary School District": 15, + "Standish-Sterling Community School District": 15, + "Stanfield Elementary District": 15, + "Stanfield School District 61": 15, + "Stanford K-12 Schools": 15, + "Stanhope Borough School District": 15, + "Stanislaus Union Elementary School District": 15, + "Stanley-Boyd Area School District": 15, + "Stanley County School District 57-1": 15, + "Stanley Public School District 2": 15, + "Stanly County Schools": 15, + "Stannard School District": 6, + "Stanton Community School District": 15, + "Stanton Community Schools": 15, + "Stanton County Unified School District 452": 15, + "Stanton Independent School District": 15, + "Stanton Township Public Schools": 15, + "Stanwood-Camano School District": 14, + "Stanwood School District": 1, + "Staples-Motley School District": 15, + "Stapleton Public Schools": 15, + "Star City School District": 15, + "Star Independent School District": 7, + "Star School District": 15, + "Starbuck School District": 15, + "Stark County Community Unit School District 100": 15, + "Stark School District": 15, + "Starksboro School District": 7, + "Starkville Oktibbeha Consolidated School District": 8, + "Starkville School District": 7, + "Starkweather Public School District 44": 15, + "Starmont Community School District": 15, + "Starpoint Central School District": 15, + "State College Area School District": 15, + "Staunton City Public Schools": 15, + "Staunton Community Unit School District 6": 15, + "Ste. Genevieve County R-II School District": 15, + "Steamboat Springs School District RE-2": 15, + "Steel Valley School District": 15, + "Steele-Dawson Public School District 26": 1, + "Steeleville Community Unit School District 138": 15, + "Steelton-Highspire School District": 15, + "Steelville R-III School District": 10, + "Steelville School District": 5, + "Steger School District 194": 15, + "Stehekin School District": 15, + "Steilacoom Historical School District": 14, + "Steilacoom School District": 1, + "Stephen-Argyle Central Schools": 15, + "Stephens County School District": 15, + "Stephens School District": 7, + "Stephenson Area Public Schools": 15, + "Stephenville Independent School Distict (9-12) in Bluff Dale": 4, + "Stephenville Independent School District": 15, + "Stephenville Independent School District (9-12) in Bluff Dale": 6, + "Steptoe School District": 15, + "Sterling City Independent School District": 15, + "Sterling Community Unit District 5": 15, + "Sterling High School Dist School District": 3, + "Sterling High School School District": 12, + "Sterling Public School District 35": 15, + "Sterling Public Schools": 30, + "Sterling School District": 15, + "Sterling Unified School District 376": 15, + "Stet R-XV School District": 5, + "Steuben County Metropolitan School District": 15, + "Steuben School District": 1, + "Steubenville City School District": 15, + "Stevens Point Area School District": 15, + "Stevenson-Carson School District": 15, + "Stevensville Elementary School District": 15, + "Stevensville High School District": 15, + "Steward Elementary School District 220": 15, + "Stewardson-Strasburg Community Unit District 5A": 15, + "Stewart County School District": 30, + "Stewartstown School District": 15, + "Stewartsville C-2 School District": 15, + "Stewartville Public School District": 15, + "Stickney School District 01-2": 7, + "Stidham Public School": 15, + "Stigler Public Schools": 15, + "Stillwater Area Public School District": 15, + "Stillwater Central School District": 15, + "Stillwater Public Schools": 15, + "Stillwater Township School District": 15, + "Stilwell Public Schools": 15, + "Sto-Rox School District": 15, + "Stockbridge Community Schools": 15, + "Stockbridge School District": 22, + "Stockbridge Valley Central School District": 15, + "Stockdale Independent School District": 15, + "Stockholm School District": 1, + "Stockton Borough School District": 7, + "Stockton Community Unit School District 206": 15, + "Stockton R-I School District": 15, + "Stockton Unified School District": 15, + "Stockton Unified School District 271": 15, + "Stoddard School District": 15, + "Stokes County Schools": 15, + "Stone Bank School District": 15, + "Stone Corral Elementary School District": 15, + "Stone County School District": 15, + "Stone Harbor Borough School District": 15, + "Stoneham School District": 15, + "Stonewall Public Schools": 15, + "Stonington School District": 15, + "Stony Creek Joint Unified School District": 15, + "Storey County School District": 15, + "Storm Lake Community School District": 15, + "Stoughton Area School District": 15, + "Stoughton School District": 15, + "Stoutland R-II School District": 10, + "Stow-Munroe Falls City School District": 15, + "Stow Creek Township School District": 15, + "Stowe School District": 7, + "Strafford R-VI School District": 15, + "Strafford School District": 24, + "Straight Public School": 15, + "Strain-Japan R-XVI School District": 15, + "Strasburg-Franklin Local School District": 15, + "Strasburg C-3 School District": 15, + "Strasburg Public School District 15": 15, + "Strasburg School District 31J": 15, + "Stratford Borough School District": 15, + "Stratford Community School District": 15, + "Stratford Independent School District": 15, + "Stratford Public Schools": 15, + "Stratford School District": 45, + "Stratham School District": 15, + "Strathmore Union Elementary School District": 15, + "Stratton School District": 9, + "Stratton School District R-4": 15, + "Strawn Independent School District": 15, + "Streator Elementary School District 44": 15, + "Streator Township High School District 40": 15, + "Streetsboro City School District": 15, + "Stringtown Public Schools": 15, + "Strong School District": 15, + "Strongsville City School District": 15, + "Strother Public Schools": 15, + "Stroud Public Schools": 15, + "Stroudsburg Area School District": 15, + "Struthers City School District": 15, + "Stryker Local School District": 15, + "Stuart Public Schools": 30, + "Sturbridge School District": 15, + "Sturgeon Bay School District": 15, + "Sturgeon R-V School District": 15, + "Sturgis Public Schools": 15, + "Stuttgart School District": 15, + "Sublette County School District 1": 15, + "Sublette County School District 9": 15, + "Sublette Unified School District 374": 15, + "Success R-VI School District": 15, + "Sudan Independent School District": 15, + "Sudbury School District": 22, + "Suffern Central School District": 4, + "Suffield School District": 15, + "Suffolk City Public Schools": 15, + "Sugar-Salem Joint School District 322": 15, + "Sugarcreek Local School District": 3, + "Sullivan C-2 School District": 10, + "Sullivan Community Unit School District 300": 15, + "Sullivan County School District": 30, + "Sullivan School District": 15, + "Sullivan West Central School District": 15, + "Sulphur Bluff Independent School District": 15, + "Sulphur Public Schools": 15, + "Sulphur Springs Independent School District": 15, + "Sulphur Springs Union Elementary School District": 15, + "Sultan School District": 15, + "Summerfield School District": 15, + "Summerland Public Schools": 3, + "Summers County School District": 15, + "Summersville R-II School District": 15, + "Summersville School District 79": 15, + "Summerville Elementary School District": 15, + "Summerville Union High School District": 15, + "Summit City School District": 15, + "Summit Hill School District 161": 15, + "Summit School District 104": 15, + "Summit School District 54-6": 15, + "Summit School District RE-1": 15, + "Summit Valley School District": 15, + "Sumner-Eddyville-Miller Schools": 15, + "Sumner-Fredericksburg Community School District": 8, + "Sumner Community School District": 7, + "Sumner County School District": 15, + "Sumner School District": 15, + "Sumter County Consolidated School District": 12, + "Sumter County School District": 45, + "Sumter School District 17": 3, + "Sumter School District 2": 3, + "Sun Prairie Area School District": 15, + "Sun River Valley Elementary School District": 15, + "Sunapee School District": 15, + "Sunburst K-12 Schools": 15, + "Sundale Union Elementary School District": 15, + "Sunderland School District": 22, + "Sundown Independent School District": 15, + "Sunflower County Consolidated School District": 8, + "Sunflower County School District": 7, + "Sunman-Dearborn Community School Corporation": 15, + "Sunnybrook School District 171": 15, + "Sunnyside School District": 15, + "Sunnyside Unified District": 15, + "Sunnyside Union Elementary School District": 15, + "Sunnyvale Elementary School District": 15, + "Sunnyvale Independent School District": 15, + "Sunol Glen Unified School District": 15, + "Sunray Collegiate Independent School District": 2, + "Sunray Independent School District": 13, + "Sunrise R-IX School District": 15, + "Sunset Elementary School District": 15, + "Sunset Ridge School District 29": 15, + "Suntex School District 10": 15, + "Superior Central Schools": 15, + "Superior K-12 Schools": 15, + "Superior Public Schools": 15, + "Superior School District": 15, + "Superior Unified School District": 15, + "Suring School District": 15, + "Surprise Valley Joint Unified School District": 15, + "Surrey Public School District 41": 15, + "Surry": 14, + "Surry County Public Schools": 15, + "Surry County Schools": 15, + "Surry School District": 15, + "Susanville Elementary School District": 15, + "Susquehanna Community School District": 15, + "Susquehanna Township School District": 15, + "Susquehanna Valley Central School District": 15, + "Susquenita School District": 15, + "Sussex-Wantage Regional School District": 15, + "Sussex County Public Schools": 15, + "Sutherland Public Schools": 15, + "Sutherlin School District 130": 15, + "Sutter Union High School District": 15, + "Sutton Public Schools": 15, + "Sutton School District": 22, + "Suttons Bay Public Schools": 15, + "Suwannee County School District": 15, + "Swain County Schools": 15, + "Swallow School District": 15, + "Swampscott School District": 15, + "Swampscott School District in Nahant (7-12)": 15, + "Swan Lake-Salmon Elementary School District": 15, + "Swan River Elementary School District": 15, + "Swan Valley Elementary School District": 15, + "Swan Valley Elementary School District 92": 15, + "Swan Valley School District": 15, + "Swansea School District": 15, + "Swanton Local School District": 15, + "Swanton School District": 7, + "Swanville Public School District": 15, + "Swartz Creek Community Schools": 15, + "Swedeborg R-III School District": 15, + "Swedesboro-Woolwich School District": 15, + "Sweeny Independent School District": 15, + "Sweet Briar Public School District 17": 15, + "Sweet Grass County High School District": 15, + "Sweet Home Central School District": 15, + "Sweet Home Independent School District": 15, + "Sweet Home School District 55": 15, + "Sweet Springs R-VII School District": 15, + "Sweetwater City School District": 15, + "Sweetwater County School District 1": 15, + "Sweetwater County School District 2": 15, + "Sweetwater Independent School District": 15, + "Sweetwater Public Schools": 15, + "Sweetwater Union High School District": 15, + "Swink Public School": 11, + "Swink School District 33": 15, + "Switzerland County School Corporation": 15, + "Switzerland of Ohio Local School District": 15, + "Sycamore Community City School District": 15, + "Sycamore Community Unit School District 427": 15, + "Sylacauga City School District": 15, + "Sylvan Grove Unified School District 299": 15, + "Sylvan Union Elementary School District": 15, + "Sylvania City School District": 15, + "Sylvanite Elementary School District": 3, + "Symmes Valley Local School District": 15, + "Syosset Central School District": 15, + "Syracuse-Dunbar-Avoca Schools": 15, + "Syracuse City School District": 15, + "Syracuse Unified School District 494": 15, + "Tabernacle Township School District": 15, + "Tacoma Public Schools": 14, + "Tacoma School District": 1, + "Taconic and Green Regional School District": 2, + "Taconic Hills Central School District": 12, + "Taft City Elementary School District": 7, + "Taft City School District": 8, + "Taft Independent School District": 15, + "Taft School District 90": 15, + "Taft Union High School District": 15, + "Tahlequah Public Schools": 15, + "Tahoe-Truckee Joint Unified School District": 7, + "Tahoe-Truckee Unified School District": 8, + "Tahoka Independent School District": 15, + "Taholah School District": 15, + "Tahoma School District": 15, + "Tahquamenon Area Schools": 15, + "Talawanda City School District": 15, + "Talbot County Public Schools": 15, + "Talbot County School District": 15, + "Taliaferro County School District": 15, + "Talihina Public Schools": 15, + "Talladega City School District": 15, + "Talladega County School District": 15, + "Tallapoosa County School District": 15, + "Tallassee City School District": 15, + "Tallmadge City School District": 15, + "Talmadge": 14, + "Talmadge School District": 1, + "Taloga Public Schools": 15, + "Tamalpais Union High School District": 15, + "Tamaqua Area School District": 15, + "Tamaroa School District 5": 15, + "Tamworth School District": 15, + "Tanana City School District": 8, + "Tanana School District": 7, + "Taneyville R-II School District": 15, + "Tangipahoa Parish School District": 15, + "Tannehill Public School": 15, + "Tanque Verde Unified District": 15, + "Tantasqua School District": 15, + "Taos Municipal Schools": 15, + "Tappen Public School District 28": 1, + "Target Range Elementary School District": 15, + "Tarkington Independent School District": 15, + "Tarkio R-I School District": 15, + "Tarrant City School District": 15, + "Tate County School District": 15, + "Tattnall County School District": 15, + "Tatum Independent School District": 15, + "Tatum Municipal Schools": 15, + "Taunton School District": 15, + "Tavistock Borough School District": 1, + "Tawas Area Schools": 15, + "Taylor Community School Corporation": 15, + "Taylor County School District": 60, + "Taylor Independent School District": 15, + "Taylor School District": 15, + "Taylorville Community Unit School District 3": 15, + "Tazewell County Public Schools": 15, + "Tea Area School District 41-5": 15, + "Teague Independent School District": 15, + "Teaneck Township School District": 15, + "Teays Valley Local School District": 15, + "Tecumseh Local School District": 15, + "Tecumseh Public Schools": 30, + "Tehachapi Unified School District": 15, + "Tekamah-Herman Community Schools": 15, + "Tekoa School District": 15, + "Tekonsha Community Schools": 15, + "Telfair County School District": 15, + "Tell City-Troy Township School Corporation": 15, + "Telluride School District R-1": 15, + "Temecula Valley Unified School District": 15, + "Tempe School District": 15, + "Tempe Union High School District": 15, + "Temple City Unified School District": 15, + "Temple Independent School District": 15, + "Temple Public Schools": 15, + "Templeton Unified School District": 15, + "Tenafly Borough School District": 15, + "Tenaha Independent School District": 15, + "Tenino School District": 15, + "Tenkiller Public School": 15, + "Tensas Parish School District": 15, + "Terlingua Common School District": 15, + "Terra Bella Union Elementary School District": 15, + "Terral Public School": 15, + "Terrebonne Parish School District": 15, + "Terrell County Independent School District": 15, + "Terrell County School District": 15, + "Terrell Independent School District": 15, + "Terril Community School District": 3, + "Terry K-12 Schools": 15, + "Teterboro Borough School District": 5, + "Teton County School District 1": 15, + "Teton County School District 401": 15, + "Teutopolis Community Unit School District 50": 15, + "Tewksbury School District": 15, + "Tewksbury Township School District": 15, + "Texarkana Independent School District": 15, + "Texarkana School District": 15, + "Texas City Independent School District": 15, + "Texhoma Independent School District": 15, + "Texhoma Public Schools": 15, + "Texico Municipal Schools": 15, + "Texline Independent School District": 15, + "Thackerville Public Schools": 15, + "Thatcher Unified District": 15, + "Thayer Central Community Schools": 15, + "Thayer R-II School District": 15, + "The Chathams School District": 15, + "The Forks Plantation": 14, + "The Forks Plantation School District": 1, + "The Tarrytowns Union Free School District": 3, + "Thedford Public Schools": 15, + "Thermalito Union Elementary School District": 7, + "Thermalito Union School District": 8, + "Thetford School District": 9, + "Thief River Falls School District": 15, + "Thomas-Fay-Custer Unified Schools": 15, + "Thomas County School District": 15, + "Thomasboro Community Consolidated School District 130": 15, + "Thomaston School District": 15, + "Thomasville City School District": 30, + "Thomasville City Schools": 15, + "Thompson Falls Elementary School District": 15, + "Thompson Falls High School District": 15, + "Thompson Public School District 61": 15, + "Thompson School District": 15, + "Thompson School District R-2J": 15, + "Thompsonville Community Unit School District 174": 15, + "Thornapple Kellogg School District": 15, + "Thorndale Independent School District": 15, + "Thornfield R-I School District": 15, + "Thornton Fractional Township High School District 215": 15, + "Thornton School District": 15, + "Thornton School District 154": 15, + "Thornton Township High School District 205": 15, + "Thorp School District": 30, + "Thousand Islands Central School District": 15, + "Thrall Independent School District": 15, + "Three Creek Joint Elementary School District 416": 15, + "Three Forks Elementary School District": 15, + "Three Forks High School District": 15, + "Three Lakes School District": 15, + "Three Rivers Community Schools": 15, + "Three Rivers Independent School District": 15, + "Three Rivers Local School District": 15, + "Three Rivers School District": 15, + "Three Rivers Union Elementary School District": 15, + "Three Village Central School District": 15, + "Three Way Independent School District": 15, + "Throckmorton Collegiate Independent School District": 5, + "Throckmorton Independent School District": 10, + "Thunder Ridge Unified School District 110": 12, + "Ticonderoga Central School District": 15, + "Tidehaven Independent School District": 15, + "Tiffin City School District": 15, + "Tift County School District": 15, + "Tigard-Tualatin School District 23J": 15, + "Tigerton School District": 15, + "Tillamook School District 9": 15, + "Timber Lake School District 20-3": 15, + "Timberlake Public Schools": 15, + "Timberlane Regional School District": 15, + "Timpson Independent School District": 15, + "Tina-Avalon R-II School District": 15, + "Tinmouth School District": 7, + "Tintic School District": 15, + "Tinton Falls Borough School District": 15, + "Tioga Central School District": 15, + "Tioga Independent School District": 15, + "Tioga Public School District 15": 15, + "Tipp City Exempted Village School District": 15, + "Tippecanoe School Corporation": 15, + "Tippecanoe Valley School Corporation": 15, + "Tipton Community School Corporation": 15, + "Tipton Community School District": 15, + "Tipton County Northern Community School Corporation": 15, + "Tipton County School District": 15, + "Tipton Elementary School District": 15, + "Tipton Public Schools": 15, + "Tipton R-VI School District": 10, + "Tisbury School District": 15, + "Tishomingo County Schools": 15, + "Tishomingo Public Schools": 15, + "Titonka Consolidated School District": 7, + "Titusville Area School District": 15, + "Tiverton School District": 15, + "Todd County School District": 15, + "Todd County School District 66-1": 15, + "Tolar Independent School District": 15, + "Toledo City School District": 15, + "Toledo School District": 15, + "Tolland School District": 15, + "Tolleson Elementary District": 15, + "Tolleson Union High School District": 15, + "Tolono Community Unit School District 7": 15, + "Toltec Elementary District": 15, + "Tom Bean Independent School District": 15, + "Tom Public Schools": 1, + "Tomah Area School District": 15, + "Tomahawk School District": 15, + "Tomball Independent School District": 15, + "Tombstone Unified District": 15, + "Tomorrow River School District": 15, + "Toms River Regional School District": 15, + "Tonasket School District": 15, + "Tonawanda City School District": 15, + "Tonganoxie Unified School District 464": 15, + "Tonica Community Consolidated School District 79": 15, + "Tonkawa Public Schools": 15, + "Tonto Basin Elementary District": 15, + "Tooele School District": 15, + "Toombs County School District": 15, + "Topeka Public Schools Unified School District 501": 15, + "Topock Elementary District": 15, + "Toppenish School District": 15, + "Topsfield School District": 15, + "Tornillo Independent School District": 15, + "Toronto City School District": 15, + "Torrance Unified School District": 15, + "Torrington School District": 15, + "Totowa Borough School District": 15, + "Touchet School District": 15, + "Toutle Lake School District": 15, + "Towanda Area School District": 15, + "Town of Webb Union Free School District": 10, + "Towner-Granville-Upham Public School District 60": 15, + "Towns County School District": 15, + "Townsend K-12 Schools": 15, + "Townshend School District": 7, + "Township High School District 113": 15, + "Township High School District 211": 15, + "Township High School District 214": 15, + "Tracy Area Public School District": 14, + "Tracy Joint Unified School District": 5, + "Tracy Public School District": 1, + "Tracy Unified School District": 10, + "Tracy Unified School District (9-12)": 6, + "Tracy Unified School District (9-12) in Banta": 4, + "Tracy Unified School District (9-12) in Jefferson": 4, + "Tracy Unified School District (9-12) in New Jerusalem": 4, + "Trail Creek Elementary School District": 15, + "Transylvania County Schools": 15, + "Traver Joint Elementary School District": 15, + "Traverse City Area Public Schools": 15, + "Travis Unified School District": 15, + "Tredyffrin-Easttown School District": 15, + "Trego Elementary School District": 15, + "Tremont": 14, + "Tremont Community Unit School District 702": 15, + "Tremont School District": 1, + "Trent Independent School District": 15, + "Trenton": 14, + "Trenton City School District": 15, + "Trenton Independent School District": 15, + "Trenton Public Schools": 15, + "Trenton R-IX School District": 15, + "Trenton School District": 1, + "Trenton Special School District": 15, + "Tres Pinos Union Elementary School District": 15, + "Treutlen County School District": 15, + "Trevor-Wilmot Consolidated School District": 15, + "Treynor Community School District": 15, + "Tri-Center Community School District": 15, + "Tri-City Community Unit School District 1": 15, + "Tri-City United School District": 10, + "Tri-County Area School District": 15, + "Tri-County Community School District": 15, + "Tri-County North Local School District": 15, + "Tri-County R-VII School District": 15, + "Tri-County School Corporation": 15, + "Tri-County School District": 15, + "Tri-Creek School Corporation": 15, + "Tri-Point Community Unit School District 6-J": 15, + "Tri-Township Consolidated School Corporation": 12, + "Tri-Valley Central School District": 15, + "Tri-Valley Community Unit School District 3": 15, + "Tri-Valley Local School District": 15, + "Tri-Valley School District": 15, + "Tri-Valley School District 49-6": 15, + "Tri-Village Local School District": 15, + "Tri County Area Schools": 15, + "Tri County Public Schools": 15, + "Triad Community Unit School District 2": 15, + "Triad Local School District": 15, + "Trico Community Unit School District 176": 15, + "Trigg County School District": 15, + "Trimble County School District": 15, + "Trimble Local School District": 15, + "Trinidad Independent School District": 15, + "Trinidad School District 1": 15, + "Trinidad Union Elementary School District": 15, + "Trinity Alps Unified School District": 14, + "Trinity Alps Unified School District (9-12)": 6, + "Trinity Alps Unified School District in Burnt Ranch": 8, + "Trinity Alps Unified School District in Coffee Creek": 8, + "Trinity Alps Unified School District in Cox Bar": 6, + "Trinity Alps Unified School District in Douglas City": 8, + "Trinity Alps Unified School District in Junction City": 8, + "Trinity Alps Unified School District in Lewiston": 8, + "Trinity Alps Unified School District in Trinity Center": 8, + "Trinity Area School District": 15, + "Trinity Center Elementary School District": 15, + "Trinity Elementary School District": 15, + "Trinity Independent School District": 15, + "Trinity Union High School District": 1, + "Trion City School District": 15, + "Triopia Community Unit School District 27": 15, + "Triplains Unified School District 275": 15, + "Tripoli Community School District": 15, + "Tripp-Delmont School District 33-5": 15, + "Triton School Corporation": 15, + "Triton School District": 30, + "Triway Local School District": 15, + "Trona Joint Unified School District": 15, + "Trotwood-Madison City School District": 15, + "Troup County School District": 15, + "Troup Independent School District": 15, + "Trousdale County School District": 15, + "Trout Creek Elementary School District": 15, + "Trout Lake School District": 15, + "Troy Area School District": 15, + "Troy City School District": 45, + "Troy Community Consolidated School District 30C": 15, + "Troy Elementary School District": 15, + "Troy High School District": 15, + "Troy Independent School District": 15, + "Troy Public Schools Unified School District 429": 15, + "Troy R-III School District": 15, + "Troy School District": 24, + "Troy School District 287": 15, + "Troy School District 54": 15, + "Truman Public School District": 15, + "Trumann Schools": 15, + "Trumansburg Central School District": 15, + "Trumbull School District": 15, + "Truro School District": 15, + "Trussville City School District": 15, + "Truth or Consequences Schools": 15, + "Tuba City Unified District": 15, + "Tuckahoe Common School District": 15, + "Tuckahoe Union Free School District": 15, + "Tucker County School District": 15, + "Tuckerton Borough School District": 15, + "Tucson Unified District": 15, + "Tucumcari Public Schools": 15, + "Tukwila School District": 15, + "Tulare City Elementary School District": 15, + "Tulare Joint Union High School District": 15, + "Tularosa Municipal Schools": 15, + "Tulelake Basin Joint Unified School District": 15, + "Tulia Independent School District": 15, + "Tullahoma City School District": 15, + "Tully Central School District": 15, + "Tuloso-Midway Independent School District": 15, + "Tuloso-Midway Independent School District (9-12) in London": 5, + "Tulpehocken Area School District": 15, + "Tulsa Public Schools": 15, + "Tumwater School District": 15, + "Tunbridge School District": 7, + "Tunica County School District": 15, + "Tunkhannock Area School District": 15, + "Tupelo Public School District": 15, + "Tupelo Public Schools": 15, + "Tupper Lake Central School District": 15, + "Turkey-Quitaque Independent School District": 15, + "Turkey Ford Public School": 15, + "Turkey Run Community School Corporation": 5, + "Turkey Valley Community School District": 15, + "Turkeyfoot Valley Area School District": 15, + "Turlock Joint Elementary School District": 1, + "Turlock Joint Union High School District": 1, + "Turlock Unified School District": 14, + "Turlock Unified School District (9-12)": 6, + "Turlock Unified School District in Chatom Union": 8, + "Turlock Unified School District in Keyes Union": 8, + "Turner County School District": 15, + "Turner Elementary School District": 15, + "Turner High School District": 15, + "Turner Public Schools": 15, + "Turner Unified School District 202": 15, + "Turpin Public Schools": 15, + "Turrell School District": 3, + "Turtle Lake-Mercer Public School District 72": 15, + "Turtle Lake School District": 15, + "Tuscaloosa City School District": 15, + "Tuscaloosa County School District": 15, + "Tuscarawas Valley Local School District": 15, + "Tuscarora School District": 15, + "Tuscola Community Unit School District 301": 15, + "Tuscumbia City School District": 15, + "Tushka Public Schools": 15, + "Tuskahoma Public School": 15, + "Tuslaw Local School District": 15, + "Tussey Mountain School District": 15, + "Tustin Unified School District": 15, + "Tuttle-Pettibone Public School District 20": 1, + "Tuttle Public Schools": 15, + "Tuxedo Union Free School District": 15, + "Twain Harte-Long Barn Union Elementary School District": 7, + "Twain Harte School District": 8, + "Twiggs County School District": 15, + "Twin Bridges K-12 Schools": 15, + "Twin Buttes Elementary School District": 3, + "Twin Buttes Public School District 37": 15, + "Twin Cedars Community School District": 15, + "Twin Falls School District 411": 15, + "Twin Hills Public School": 15, + "Twin Hills Union Elementary School District": 15, + "Twin Lakes No. 4 School District": 15, + "Twin Lakes School Corporation": 15, + "Twin Ridges Elementary School District": 15, + "Twin River Public Schools": 5, + "Twin Rivers Community School District": 15, + "Twin Rivers Public Schools": 10, + "Twin Rivers R-X School District": 15, + "Twin Rivers School District": 3, + "Twin Rivers Unified School District": 14, + "Twin Rivers Unified School District (7-12)": 6, + "Twin Rivers Unified School District (9-12)": 6, + "Twin Rivers Unified School District in Elverta": 8, + "Twin Rivers Unified School District in Robla": 8, + "Twin Valley Community Local School District": 15, + "Twin Valley School District": 15, + "Twin Valley Unified School District": 2, + "Twin Valley Unified School District 240": 15, + "Twinfield Union School District 33": 7, + "Twinfield USD #33": 1, + "Twinfield USD 33": 1, + "Twinsburg City School District": 15, + "Two Rivers School District": 30, + "Two Rivers Supervisory Union": 6, + "Two Rock Union Elementary School District": 15, + "Tyler County School District": 15, + "Tyler Independent School District": 15, + "Tyler Public School District": 1, + "Tyngsborough School District": 15, + "Tyrone Area School District": 15, + "Tyrone Public Schools": 15, + "Tyrrell County Schools": 15, + "Ubly Community Schools": 15, + "Udall Unified School District 463": 15, + "UFSD Tarrytowns": 2, + "Uinta County School District 1": 15, + "Uinta County School District 4": 15, + "Uinta County School District 6": 15, + "Uintah School District": 15, + "Ukiah School District 80": 15, + "Ukiah Unified School District": 15, + "Ulen-Hitterdal Public School District": 15, + "Ulm Elementary School District": 15, + "Ulysses Unified School District 214": 15, + "Umatilla School District 6": 15, + "Umo N Ho N Nation Public Schools": 5, + "Umonhon Nation Public Schools": 10, + "Unadilla Valley Central School District": 15, + "Unalaska City School District": 15, + "Underhill Incorporated School District": 7, + "Underhill Town School District": 7, + "Underwood Community School District": 15, + "Underwood Public School District": 15, + "Underwood Public School District 8": 15, + "Unicoi County School District": 15, + "Unified School District 110": 2, + "Unified School District 111": 2, + "Union-Endicott Central School District": 15, + "Union-North United School Corporation": 15, + "Union-Scioto Local School District": 15, + "Union Area School District": 15, + "Union Beach Borough School District": 15, + "Union City Area School District": 15, + "Union City Community Schools": 15, + "Union City Public Schools": 15, + "Union City School District": 30, + "Union Community School District": 15, + "Union County-College Corner Joint School District": 15, + "Union County Public Schools": 15, + "Union County School District": 90, + "Union Elementary District": 15, + "Union Elementary School District": 15, + "Union Free School District of the Tarrytowns": 10, + "Union Gap School District": 15, + "Union Grove Independent School District": 15, + "Union Grove Joint No. 1 School District": 15, + "Union Grove Union High School District": 15, + "Union High School District 32": 7, + "Union Hill Elementary School District": 15, + "Union Hill Independent School District": 15, + "Union Joint Elementary School District": 9, + "Union Local School District": 15, + "Union Parish School District": 15, + "Union Public School District": 15, + "Union Public Schools": 15, + "Union R-XI School District": 15, + "Union Ridge School District 86": 15, + "Union School Corporation": 15, + "Union School District": 30, + "Union School District 5": 15, + "Union School District 81": 15, + "Union Springs Central School District": 15, + "Union Star R-II School District": 15, + "Union Township School Corporation": 15, + "Union Township School District": 30, + "Uniondale Union Free School District": 15, + "Uniontown Area School District": 15, + "Uniontown Unified School District 235": 15, + "Unionville-Chadds Ford School District": 15, + "Unionville-Sebewaing Area School District": 15, + "United Community School District": 15, + "United Community School District 304": 15, + "United Independent School District": 15, + "United Local School District": 15, + "United Public School District 7": 15, + "United School District": 15, + "United South Central School District": 15, + "United Township High School District 30": 15, + "Unity Point Community Consolidated School District 140": 15, + "Unity School District": 30, + "University City School District": 15, + "University Place School District": 15, + "Up-Island Regional School District": 15, + "Upland Unified School District": 15, + "Upper Adams School District": 15, + "Upper Arlington City School District": 15, + "Upper Darby School District": 15, + "Upper Dauphin Area School District": 15, + "Upper Deerfield Township School District": 15, + "Upper Dublin School District": 15, + "Upper Freehold Regional School District": 15, + "Upper Lake Unified School District": 6, + "Upper Lake Unified School District (9-12)": 6, + "Upper Lake Union Elementary School District": 9, + "Upper Lake Union High School District": 9, + "Upper Merion Area School District": 15, + "Upper Moreland Township School District": 15, + "Upper Perkiomen School District": 15, + "Upper Pittsgrove Township School District": 15, + "Upper Rio Grande School District C-7": 4, + "Upper Saddle River Borough School District": 15, + "Upper Saint Clair School District": 7, + "Upper Sandusky Exempted Village School District": 15, + "Upper Scioto Valley Local School District": 15, + "Upper St. Clair School District": 8, + "Upper Township School District": 15, + "Upper West Shore Elementary School District": 15, + "Upsala Public School District": 15, + "Upshur County School District": 15, + "Upson County School District": 15, + "Upton": 14, + "Upton School District": 1, + "Urbana City School District": 15, + "Urbana School District 116": 15, + "Urbandale Community School District": 15, + "Utica City School District": 15, + "Utica Community Schools": 15, + "Utopia Independent School District": 15, + "Uvalde Consolidated Independent School District": 15, + "Uxbridge School District": 15, + "V.I.T. Community Unit School District 2": 15, + "Vacaville Unified School District": 15, + "Vail Unified District": 15, + "Val Verde Unified School District": 15, + "Valders Area School District": 15, + "Valdez City School District": 15, + "Valdosta City School District": 15, + "Vale School District 84": 15, + "Valentine Community Schools": 15, + "Valentine Elementary District": 15, + "Valentine Independent School District": 15, + "Valhalla Union Free School District": 15, + "Valier Elementary School District": 15, + "Valier High School District": 15, + "Valle Lindo Elementary School District": 15, + "Vallecito Union Elementary School District": 15, + "Vallecitos Elementary School District": 15, + "Vallejo City Unified School District": 15, + "Valley-Edinburg Public School District 118": 12, + "Valley (Montgomery) Central School District": 2, + "Valley Center-Pauma Unified School District": 15, + "Valley Center Public Schools Unified School District 262": 15, + "Valley Central School District": 3, + "Valley Central School District (Montgomery)": 10, + "Valley City Public School District 2": 15, + "Valley Community School District": 10, + "Valley Falls Unified School District 338": 15, + "Valley Grove School District": 15, + "Valley Heights Unified School District 498": 15, + "Valley Home Joint Elementary School District": 15, + "Valley Local School District": 15, + "Valley Mills Independent School District": 15, + "Valley Park School District": 15, + "Valley Public School District 12": 3, + "Valley R-VI School District": 15, + "Valley School District": 15, + "Valley School District 262": 15, + "Valley School District RE-1": 15, + "Valley Springs School District": 15, + "Valley Stream Central High School District": 15, + "Valley Stream Union Free School District 13": 15, + "Valley Stream Union Free School District 24": 15, + "Valley Stream Union Free School District 30": 15, + "Valley Union High School District": 15, + "Valley View Community Unit School District 365U": 15, + "Valley View Elementary School District": 15, + "Valley View Independent School District (Cooke County)": 15, + "Valley View Independent School District (Hidalgo County)": 15, + "Valley View Local School District": 15, + "Valley View School District": 30, + "Valliant Public Schools": 15, + "Vallivue School District 139": 15, + "Valmeyer Community Unit School District 3": 15, + "Valparaiso Community Schools": 15, + "Van-Cove School District": 3, + "Van-Far R-I School District": 10, + "Van-Far School District": 5, + "Van Alstyne Independent School District": 15, + "Van Buren Community School District": 11, + "Van Buren County Community School District": 4, + "Van Buren County School District": 15, + "Van Buren Local School District": 15, + "Van Buren Public Schools": 15, + "Van Buren R-I School District": 15, + "Van Buren School District": 15, + "Van Dyke Public Schools": 15, + "Van Hornesville-Owen D. Young Central School District": 12, + "Van Independent School District": 15, + "Van Meter Community School District": 15, + "Van Norman Elementary School District": 3, + "Van Vleck Independent School District": 15, + "Van Wert City School District": 15, + "Vance County Schools": 15, + "Vanceboro": 14, + "Vanceboro School District": 1, + "Vancouver Public Schools": 14, + "Vancouver School District": 1, + "Vandalia-Butler City School District": 15, + "Vandalia Community Unit School District 203": 15, + "Vanderbilt Area Schools": 15, + "Vandercook Lake Public Schools": 15, + "Vanlue Local School District": 15, + "Vanoss Public Schools": 15, + "Varnum Public Schools": 15, + "Vashon Island School District": 15, + "Vassalboro": 14, + "Vassalboro School District": 1, + "Vassar Public Schools": 15, + "Vaughn Elementary School District": 15, + "Vaughn Municipal Schools": 15, + "Veazie": 10, + "Veazie School District": 1, + "Vega Independent School District": 15, + "Velma-Alma Public Schools": 15, + "Velva Public School District 1": 15, + "Venice Community Unit School District 3": 15, + "Ventnor City City School District": 9, + "Ventnor City School District": 6, + "Ventura Community School District": 7, + "Ventura Unified School District": 15, + "Venus Independent School District": 15, + "Verden Public Schools": 15, + "Verdigre Public Schools": 3, + "Verdigris Public Schools": 15, + "Vergennes Union High School District 44": 7, + "Vergennes Union High School District 5": 7, + "Veribest Independent School District": 15, + "Vermilion Local School District": 15, + "Vermilion Parish School District": 15, + "Vermillion School District 13-1": 15, + "Vermillion Unified School District 380": 15, + "Verndale Public School District": 15, + "Vernon Elementary District": 15, + "Vernon Independent School District": 15, + "Vernon Parish School District": 15, + "Vernon School District": 24, + "Vernon Township School District": 15, + "Vernonia School District 47J": 15, + "Verona Area School District": 15, + "Verona Borough School District": 15, + "Verona R-VII School District": 15, + "Verona Township School District 1F": 15, + "Versailles Exempted Village School District": 15, + "Vestaburg Community Schools": 15, + "Vestal Central School District": 15, + "Vestavia Hills City School District": 15, + "Vian Public Schools": 15, + "Viborg Hurley 60-6": 6, + "Viborg Hurley School District 60-6": 4, + "Viborg School District 60-5": 5, + "Vici Public Schools": 15, + "Vicksburg Community Schools": 15, + "Vicksburg Warren School District": 15, + "Victor Central School District": 15, + "Victor Elementary School District": 15, + "Victor K-12 Schools": 15, + "Victor Valley Union High School District": 15, + "Victoria Independent School District": 15, + "Victoria Unified School District 432": 15, + "Victory Gardens Borough School District": 1, + "Victory School District": 7, + "Vida Elementary School District": 15, + "Vidalia City School District": 15, + "Vidor Independent School District": 15, + "Vienna High School District 133": 15, + "Vienna School District 55": 15, + "Vigo County School Corporation": 15, + "Vilas School District RE-5": 15, + "Villa Grove Community Unit School District 302": 15, + "Villa Park School District 45": 14, + "Villisca Community School District": 15, + "Vilonia School District": 15, + "Vincennes Community School Corporation": 15, + "Vineland City School District": 15, + "Vineland Elementary School District": 15, + "Vinita Public Schools": 15, + "Vinton-Shellsburg Community School District": 15, + "Vinton County Local School District": 15, + "Viola School District": 15, + "Virden Community Unit School District 4": 3, + "Virginia Beach City Public Schools": 15, + "Virginia Community Unit School District 64": 15, + "Virginia Public School District": 12, + "Viroqua Area School District": 15, + "Visalia Unified School District": 15, + "Vista del Mar Union Elementary School District": 15, + "Vista Unified School District": 15, + "Voluntown School District": 15, + "Volusia County School District": 15, + "Voorhees Township School District": 15, + "Voorheesville Central School District": 15, + "Vysehrad Independent School District": 15, + "Wa-Nee Community Schools": 15, + "Wabash City Schools": 15, + "Wabash Community Unit School District 348": 15, + "Wabash County Schools Metropolitan School District": 15, + "Wabasha-Kellogg Public School District": 15, + "Wabasso Public School District": 15, + "Wabaunsee East Unified School District 330": 14, + "Wabaunsee Unified School District 329": 1, + "Wabeno Area School District": 15, + "Wachusett School District": 15, + "Waco Community School District": 15, + "Waco Independent School District": 15, + "Waconda Unified School District 272": 15, + "Waconia Public School District": 15, + "Wadena-Deer Creek School District": 15, + "Wadsworth City School District": 15, + "Waelder Independent School District": 15, + "Wagner School District 11-4": 15, + "Wagon Mound Public Schools": 15, + "Wagoner Public Schools": 15, + "Wahkiakum School District": 15, + "Wahluke School District": 15, + "Wahoo Public Schools": 15, + "Wahpeton Public School District 37": 15, + "Wainscott Common School District": 15, + "Wainwright Public School": 15, + "Waite": 14, + "Waite School District": 1, + "Waits River Valley Union School District 36": 7, + "Waits River Valley USD #36": 1, + "Waits River Valley USD 36": 1, + "Waitsburg School District": 15, + "Waitsfield School District": 7, + "Wake County Schools": 15, + "WaKeeney Unified School District 208": 15, + "Wakefield-Marenisco School District": 15, + "Wakefield Public Schools": 15, + "Wakefield School District": 30, + "Wakita Public Schools": 3, + "Wakulla County School District": 15, + "Walcott Independent School District": 15, + "Walden School District": 7, + "Waldo School District": 3, + "Waldron Area Schools": 15, + "Waldron School District": 15, + "Waldwick Borough School District": 15, + "Wales School District": 16, + "Walker-Hackensack-Akeley School District": 15, + "Walker County School District": 30, + "Walkerville Rural Community School District": 15, + "Wall Independent School District": 15, + "Wall Lake View Auburn Community School District": 3, + "Wall School District 51-5": 15, + "Wall Township School District": 15, + "Walla Walla Public Schools": 5, + "Walla Walla School District": 10, + "Wallace Community Consolidated School District 195": 15, + "Wallace County Schools Unified School District 241": 15, + "Wallace Public School District 65 R": 15, + "Wallace School District 393": 15, + "Walled Lake Consolidated Schools": 15, + "Wallenpaupack Area School District": 15, + "Waller Independent School District": 15, + "Wallingford-Swarthmore School District": 15, + "Wallingford School District": 22, + "Wallington Borough School District": 15, + "Wallkill Central School District": 15, + "Wallkill Valley Regional School District": 15, + "Wallowa School District 12": 15, + "Walnut Bend Independent School District": 15, + "Walnut Community School District": 9, + "Walnut Creek Elementary School District": 15, + "Walnut Grove Elementary District": 15, + "Walnut Grove R-V School District": 15, + "Walnut Ridge School District": 3, + "Walnut Springs Independent School District": 15, + "Walnut Township Local School District": 15, + "Walnut Valley Unified School District": 15, + "Walpole School District": 15, + "Walsh School District RE-1": 15, + "Walters Public Schools": 15, + "Walthall County School District": 15, + "Waltham Community Consolidated School District 185": 15, + "Waltham School District": 15, + "Walthill Public Schools": 15, + "Walton-Verona Independent School District": 15, + "Walton Central School District": 15, + "Walton County School District": 30, + "Waltonville Community Unit School District 1": 15, + "Walworth Joint No. 1 School District": 15, + "Wamego Unified School District 320": 13, + "Wanaque Borough School District": 15, + "Wanette Public Schools": 15, + "Wantagh Union Free School District": 15, + "Wapakoneta City School District": 15, + "Wapanucka Public Schools": 15, + "Wapato School District": 15, + "Wapello Community School District": 15, + "Wappingers Central School District": 15, + "Wapsie Valley Community School District": 15, + "Warden School District": 15, + "Wardsboro School District": 7, + "Ware County School District": 15, + "Ware School District": 15, + "Wareham School District": 15, + "Warner's Grant School District": 7, + "Warner Public Schools": 15, + "Warner School District 06-5": 15, + "Warner Unified School District": 15, + "Warners Grant School District": 2, + "Warren'S Gore School Disrrict": 7, + "Warren-Alvarado-Oslo School District": 15, + "Warren City School District": 15, + "Warren Community Unit School District 205": 15, + "Warren Consolidated Schools": 15, + "Warren County Metropolitan School District": 15, + "Warren County Public Schools": 15, + "Warren County R-III School District": 15, + "Warren County School District": 60, + "Warren County Schools": 15, + "Warren Hills Regional School District": 15, + "Warren Independent School District": 15, + "Warren Local School District": 15, + "Warren School District": 37, + "Warren Township High School District 121": 15, + "Warren Township Metropolitan School District": 15, + "Warren Township School District": 15, + "Warren Woods Public Schools": 15, + "Warrens Gore School District": 2, + "Warrensburg-Latham Community Unit District 11": 15, + "Warrensburg Central School District": 15, + "Warrensburg R-VI School District": 15, + "Warrensville Heights City School District": 15, + "Warrenton-Hammond School District 30": 15, + "Warrick County School Corporation": 15, + "Warrick Elementary School District": 7, + "Warrior Run School District": 15, + "Warroad Public School District": 15, + "Warsaw Central School District": 15, + "Warsaw Community Schools": 15, + "Warsaw Community Unit School District 316": 15, + "Warsaw R-IX School District": 15, + "Warwick Public School District 29": 15, + "Warwick School District": 30, + "Warwick Valley Central School District": 15, + "Wasatch School District": 15, + "Wasco Union Elementary School District": 15, + "Wasco Union High School District": 15, + "Waseca Public School District": 15, + "Washakie County School District 1": 15, + "Washakie County School District 2": 15, + "Washburn Public School District 4": 15, + "Washburn School District": 15, + "Washington-Caldwell School District": 15, + "Washington-Nile Local School District": 15, + "Washington Borough School District": 15, + "Washington Central Supervisory Union": 6, + "Washington Central Unified Union School District #92": 1, + "Washington Central Unified Union School District 92": 1, + "Washington Co. Schools Unified School District 108": 1, + "Washington Colony Elementary School District": 15, + "Washington Community High School District 308": 15, + "Washington Community School Corporation": 15, + "Washington Community School District": 15, + "Washington County Public Schools": 30, + "Washington County School District": 75, + "Washington County Schools": 15, + "Washington Court House City School District": 15, + "Washington Elementary District": 15, + "Washington Island School District": 2, + "Washington Local School District": 15, + "Washington Northeast Supervisory Union": 4, + "Washington Parish School District": 15, + "Washington Public Schools": 15, + "Washington School District": 80, + "Washington School District 52": 15, + "Washington Schools Unified School District 222": 1, + "Washington South Supervisory Union": 3, + "Washington Township Metropolitan School District": 15, + "Washington Township School District": 3, + "Washington Township School District (Burlington County)": 15, + "Washington Township School District (Gloucester County)": 12, + "Washington Township School District (Morris County)": 15, + "Washington Township School District (Warren County)": 15, + "Washington Unified School District": 3, + "Washington Unified School District (9-12)": 12, + "Washington Unified School District (Fresno County)": 12, + "Washington Unified School District (Yolo County)": 12, + "Washington Union Elementary School District": 15, + "Washington Union High School District": 3, + "Washington Unorganized Territory": 15, + "Washington West Supervisory Union": 3, + "Washingtonville Central School District": 15, + "Washita Heights Public Schools": 3, + "Washoe County School District": 15, + "Washougal School District": 15, + "Washtucna School District": 15, + "Waskom Independent School District": 15, + "Watauga County Schools": 15, + "Watchung Borough School District": 15, + "Watchung Hills Regional School District": 15, + "Water Valley Independent School District": 15, + "Water Valley School District": 15, + "Waterbury School District": 15, + "Waterford-Halfmoon Union Free School District": 15, + "Waterford Joint No. 1 School District": 15, + "Waterford School District": 37, + "Waterford Township School District": 15, + "Waterford Unified School District": 15, + "Waterford Union High School District": 15, + "Waterloo Central School District": 15, + "Waterloo Community School District": 15, + "Waterloo Community Unit School District 5": 15, + "Waterloo Local School District": 15, + "Waterloo School District": 15, + "Watersmeet Township School District": 15, + "Watertown-Mayer Public School District": 15, + "Watertown City School District": 15, + "Watertown School District": 45, + "Watertown School District 14-4": 15, + "Waterville": 14, + "Waterville-Elysian-Morristown": 2, + "Waterville-Elysian-Morristown Public School District": 10, + "Waterville-Elysian-Morristown School District": 3, + "Waterville Central School District": 15, + "Waterville School District": 23, + "Waterville Valley School District": 15, + "Watervliet City School District": 15, + "Watervliet School District": 15, + "Wathena Unified School District 406": 3, + "Watkins Glen Central School District": 15, + "Watonga Public Schools": 15, + "Watson Chapel School District": 15, + "Watson Public School": 3, + "Watts Public Schools": 15, + "Wattsburg Area School District": 15, + "Waubay School District 18-3": 15, + "Waubun-Ogema-White Earth Public Schools": 12, + "Waubun Public School District": 3, + "Wauconda Community Unit School District 118": 15, + "Waugh Elementary School District": 15, + "Waukee Community School District": 15, + "Waukegan Community Unit School District 60": 15, + "Waukena Joint Union Elementary School District": 15, + "Waukesha School District": 15, + "Waukomis Public Schools": 15, + "Waunakee Community School District": 15, + "Wauneta-Palisade Public Schools": 15, + "Waupaca School District": 15, + "Waupun School District": 15, + "Waurika Public Schools": 15, + "Wausa Public Schools": 15, + "Wausau School District": 15, + "Wausaukee School District": 15, + "Wauseon Exempted Village School District": 15, + "Wautoma Area School District": 15, + "Wauwatosa School District": 15, + "Wauzeka-Steuben School District": 15, + "Waverly-Shell Rock Community School District": 15, + "Waverly Central School District": 15, + "Waverly City School District": 15, + "Waverly Community Schools": 15, + "Waverly Community Unit School District 6": 15, + "Waverly Public Schools": 1, + "Waverly School District 14-5": 15, + "Waverly School District 145": 14, + "Wawasee Community School Corporation": 15, + "Waxahachie Independent School District": 15, + "Wayland-Cohocton Central School District": 15, + "Wayland School District": 15, + "Wayland Union Schools": 15, + "Wayne-Westland Community School District": 15, + "Wayne Central School District": 15, + "Wayne City Community Unit School District 100": 15, + "Wayne Community School District": 15, + "Wayne Community Schools": 15, + "Wayne County Public Schools": 15, + "Wayne County School District": 75, + "Wayne Highlands School District": 15, + "Wayne Local School District": 15, + "Wayne Public Schools": 15, + "Wayne School District": 16, + "Wayne Township Metropolitan School District": 15, + "Wayne Township School District": 15, + "Wayne Trace Local School District": 15, + "Waynesboro Area School District": 15, + "Waynesboro City Public Schools": 15, + "Waynesfield-Goshen Local School District": 15, + "Waynesville R-VI Schools": 15, + "Waynoka Public Schools": 15, + "Wayzata Public School District": 15, + "Weakley County School District": 15, + "Weare School District": 15, + "Weatherford Independent School District": 15, + "Weatherford Public Schools": 15, + "Weatherly Area School District": 15, + "Weathersfield Local School District": 15, + "Weathersfield School District": 9, + "Weaubleau R-III School District": 15, + "Weaver Union Elementary School District": 15, + "Weaverville Elementary School District": 1, + "Webb City R-VII School District": 15, + "Webb Consolidated Independent School District": 15, + "Webb Town Union Free School District": 5, + "Webber Township High School District 204": 9, + "Webbers Falls Public Schools": 15, + "Webberville Community Schools": 15, + "Weber School District": 15, + "Webster Central School District": 15, + "Webster City Community School District": 15, + "Webster County School District": 60, + "Webster Groves School District": 15, + "Webster Parish School District": 15, + "Webster School District": 30, + "Webster School District 18-4": 3, + "Webster School District 18-5": 12, + "Weed Union Elementary School District": 15, + "Weedsport Central School District": 15, + "Weehawken Township School District": 15, + "Weeping Water Public Schools": 15, + "Weimar Independent School District": 15, + "Weiner School District": 3, + "Weiser School District 431": 15, + "Welch Public Schools": 15, + "Weld County School District No. RE-2": 1, + "Weld County School District RE-1": 15, + "Weld County School District RE-3J": 5, + "Weld County School District RE-8": 15, + "Weldon City Schools": 15, + "Weldon Valley School District RE-20J": 15, + "Weleetka Public Schools": 15, + "Wellesley School District": 15, + "Wellfleet School District": 15, + "Wellington-Napoleon R-IX School District": 15, + "Wellington Exempted Village School District": 15, + "Wellington Independent School District": 15, + "Wellington Unified School District 353": 15, + "Wellman-Union Consolidated Independent School District": 15, + "Wellpinit School District": 15, + "Wells-Ogunquit Community School District": 15, + "Wells Central School District": 15, + "Wells Independent School District": 15, + "Wells School District": 7, + "Wells Spring Unified Union School District": 2, + "Wells Township School District": 15, + "Wellsboro Area School District": 15, + "Wellston City School District": 15, + "Wellston Public Schools": 15, + "Wellston School District": 3, + "Wellsville-Middletown R-I School District": 15, + "Wellsville Central School District": 15, + "Wellsville Local School District": 15, + "Wellsville Unified School District 289": 15, + "Wellton Elementary District": 15, + "Wenatchee School District": 15, + "Wendell School District 232": 15, + "Wenden Elementary District": 15, + "Wenonah Borough School District": 15, + "Wentworth School District": 15, + "Wentzville R-IV School District": 15, + "Wes-Del Community Schools": 15, + "Wesclin Community Unit School District 3": 15, + "Weskan Unified School District 242": 15, + "Weslaco Independent School District": 15, + "Wesley": 14, + "Wesley School District": 1, + "Wessington Springs School District 36-2": 15, + "West Allegheny School District": 15, + "West Allis School District": 15, + "West Amwell Township School District": 7, + "West Babylon Union Free School District": 15, + "West Bath Public Schools": 8, + "West Bath School District": 1, + "West Baton Rouge Parish School District": 15, + "West Bend-Mallard Community School District": 15, + "West Bend School District": 15, + "West Bloomfield School District": 15, + "West Bolivar Consolidated School District": 8, + "West Bolivar School District": 7, + "West Bonner County School District 83": 15, + "West Boyd Public Schools": 9, + "West Boylston School District": 15, + "West Branch-Rose City Area Schools": 15, + "West Branch Area School District": 15, + "West Branch Community School District": 15, + "West Branch Local School District": 15, + "West Bridgewater School District": 15, + "West Burlington Independent School District": 15, + "West Canada Valley Central School District": 15, + "West Cape May Borough School District": 15, + "West Carroll Community Unit School District 314": 15, + "West Carroll Parish School District": 15, + "West Carroll Special District": 15, + "West Carrollton City School District": 15, + "West Central Area": 12, + "West Central Area Schools": 3, + "West Central Community School District": 15, + "West Central Community Unit School District 235": 15, + "West Central School Corporation": 15, + "West Central School District 49-7": 15, + "West Central Valley Community School District": 15, + "West Chester Area School District": 15, + "West Chicago School District 33": 15, + "West Clark Community Schools": 12, + "West Clermont Local School District": 15, + "West Contra Costa Unified School District": 15, + "West Covina Unified School District": 15, + "West De Pere School District": 15, + "West Delaware County Community School District": 15, + "West Deptford Township School District": 15, + "West Des Moines Community School District": 15, + "West Elk Unified School District 282": 15, + "West End School District RE-2": 15, + "West Essex Regional School District": 15, + "West Fargo Public School District 6": 15, + "West Feliciana Parish School District": 15, + "West Fork Community School District": 12, + "West Fork School District": 15, + "West Forks Plantation": 14, + "West Forks School District": 1, + "West Franklin Unified School District 287": 15, + "West Fresno Elementary School District": 3, + "West Geauga Local School District": 15, + "West Genesee Central School District": 15, + "West Glacier Elementary School District": 15, + "West Grand School District 1-JT": 15, + "West Greene School District": 15, + "West Hancock Community School District": 15, + "West Hardin County Consolidated Independent School District": 15, + "West Harrison Community School District": 15, + "West Hartford School District": 15, + "West Harvey-Dixmoor Public School District 147": 15, + "West Haven School District": 22, + "West Hempstead Union Free School District": 15, + "West Holmes Local School District": 15, + "West Holt Public Schools": 15, + "West Hope Public School District 17": 15, + "West Independent School District": 15, + "West Iron County Public Schools": 15, + "West Irondequoit Central School District": 15, + "West Islip Union Free School District": 15, + "West Jasper School District": 15, + "West Jefferson Hills School District": 15, + "West Jefferson School District 253": 15, + "West Lafayette Community School Corporation": 15, + "West Las Vegas Public Schools": 15, + "West Liberty-Salem Local School District": 15, + "West Liberty Community School District": 15, + "West Lincoln-Broadwell Elementary School District 92": 15, + "West Linn School District 3J": 15, + "West Long Branch Borough School District": 15, + "West Lyon Community School District": 15, + "West Marshall Community School District": 15, + "West Memphis School District": 15, + "West Middlesex Area School District": 15, + "West Mifflin Area School District": 15, + "West Milford Township School District": 15, + "West Monona Community School District": 15, + "West Morris Regional School District": 15, + "West Muskingum Local School District": 15, + "West New York Town School District": 15, + "West Noble School Corporation": 15, + "West Nodaway County R-I School District": 15, + "West Northfield School District 31": 15, + "West Orange-Cove Consolidated Independent School District": 15, + "West Orange Town School District": 15, + "West Oso Independent School District": 15, + "West Ottawa Public School District": 15, + "West Park Elementary School District": 15, + "West Paterson Borough School District": 1, + "West Perry School District": 15, + "West Plains R-VII School District": 15, + "West Platte County R-II School District": 15, + "West Point Consolidated School District": 8, + "West Point Independent School District": 14, + "West Point Public Schools": 15, + "West Point School District": 7, + "West Point Town Public Schools": 15, + "West Prairie Community Unit School District 103": 15, + "West Richland Community Unit School District 2": 7, + "West River Valley Modified Union Education District #72A": 1, + "West River Valley Modified Union Education District #72B": 1, + "West River Valley Modified Union Education District #72B (7-12)": 1, + "West River Valley Modified Union Education District 72A": 1, + "West River Valley Modified Union Education District 72B": 1, + "West River Valley Modified Union Education District 72B (7-12)": 1, + "West Rusk County Consolidated Independent School District": 10, + "West Rusk Independent School District": 5, + "West Rutland School District": 7, + "West Sabine Independent School District": 15, + "West Salem School District": 15, + "West Seneca Central School District": 15, + "West Shore School District": 15, + "West Side Joint School District 202": 15, + "West Side School District": 15, + "West Side Union Elementary School District": 15, + "West Sioux Community School District": 15, + "West Smith County Unified School District 238": 1, + "West Solomon Valley Schools Unified School District 213": 3, + "West Sonoma County Union High School District": 15, + "West Springfield School District": 15, + "West St. Francis County R-IV School District": 7, + "West St. Francois County R-IV School District": 8, + "West St. Paul-Mendota Heights-Eagan": 12, + "West St. Paul-Mendota Heights-Eagan School District": 3, + "West Tallahatchie School": 15, + "West Valley Central School District": 15, + "West Valley Elementary School District": 15, + "West Valley School District (Spokane County)": 11, + "West Valley School District (Spokane)": 4, + "West Valley School District (Yakima County)": 11, + "West Valley School District (Yakima)": 4, + "West Warwick School District": 15, + "West Washington County Community Unit District 10": 15, + "West Washington School Corporation": 15, + "West Wildwood Borough School District": 15, + "West Windsor-Plainsboro Regional School District": 15, + "West Windsor School District": 7, + "West Yellowstone K-12": 6, + "West Yellowstone K-12 School District": 9, + "West York Area School District": 15, + "West/Connally Independent School Districts (9-12) in Gholson": 4, + "Westampton Township School District": 15, + "Westborough School District": 15, + "Westbrook": 14, + "Westbrook-Walnut Grove Schools": 15, + "Westbrook Independent School District": 15, + "Westbrook School District": 16, + "Westbury Union Free School District": 15, + "Westby Area School District": 15, + "Westby K-12 Schools": 15, + "Westchester School District 92-5": 15, + "Westerly School District": 15, + "Western Beaver County School District": 15, + "Western Boone County Community School Corporation": 15, + "Western Brown Local School District": 15, + "Western Community Unit School District 12": 15, + "Western Dubuque Community School District": 14, + "Western Dubuque County Community School District": 1, + "Western Heights Public Schools": 15, + "Western Line School District": 15, + "Western Local School District": 15, + "Western Placer Unified School District": 15, + "Western Plains Unified School District 106": 15, + "Western Reserve Local School District (Erie and Huron Counties)": 15, + "Western Reserve Local School District (Mahoning County)": 15, + "Western School Corporation": 15, + "Western School District": 15, + "Western Springs School District 101": 15, + "Western Wayne School District": 15, + "Western Wayne Schools": 15, + "Western Yell County School District": 15, + "Westerville City School District": 15, + "Westfall Local School District": 15, + "Westfield-Washington Schools": 15, + "Westfield Central School District": 15, + "Westfield School District": 36, + "Westfield Town School District": 15, + "Westford School District": 22, + "Westhampton Beach Union Free School District": 15, + "Westhampton School District": 15, + "Westhill Central School District": 15, + "Westhoff Independent School District": 15, + "Westlake City School District": 15, + "Westmanland": 14, + "Westmanland School District": 1, + "Westmer Community Unit School District 203": 1, + "Westminster Elementary School District": 7, + "Westminster Public School District": 5, + "Westminster School District": 16, + "Westminster School District 50": 10, + "Westmont Community Unit School District 201": 15, + "Westmont Hilltop School District": 15, + "Westmore School District": 7, + "Westmoreland Central School District": 15, + "Westmoreland County Public Schools": 15, + "Westmoreland School District": 15, + "Westmorland Union Elementary School District": 15, + "Weston County School District 1": 15, + "Weston County School District 7": 15, + "Weston School District": 47, + "Westonka Public School District": 15, + "Westosha Central High School District": 15, + "Westphalia Independent School District": 15, + "Westport Central School District": 11, + "Westport School District": 31, + "Westran R-I School District": 15, + "Westside Community Schools": 15, + "Westside Consolidated School District": 15, + "Westside Elementary School District": 15, + "Westside School District": 15, + "Westside Union Elementary School District": 15, + "Westview C-6 School District": 15, + "Westview School Corporation": 15, + "Westville Borough School District": 15, + "Westville Community Unit School District 2": 15, + "Westville Public Schools": 15, + "Westwood Community School District": 15, + "Westwood Community Schools": 15, + "Westwood Heights Schools": 15, + "Westwood Independent School District": 15, + "Westwood Regional School District": 15, + "Westwood School District": 15, + "Westwood Unified School District": 15, + "Wethersfield Community Unit School District 230": 15, + "Wethersfield School District": 15, + "Wetumka Public Schools": 15, + "Wetzel County School District": 15, + "Wewoka Public Schools": 15, + "Weyauwega-Fremont School District": 15, + "Weybridge School District": 7, + "Weyerhaeuser Area School District": 3, + "Weymouth School District": 15, + "Weymouth Township School District": 15, + "Wharton Borough School District": 15, + "Wharton Independent School District": 15, + "Whately School District": 15, + "Wheatland-Chili Central School District": 15, + "Wheatland Elementary School District": 15, + "Wheatland Joint No. 1 School District": 15, + "Wheatland R-II School District": 15, + "Wheatland Unified School District 292": 15, + "Wheatland Union High School District": 15, + "Wheaton Area Public School District": 12, + "Wheaton Area School Public School District": 3, + "Wheaton R-III School District": 15, + "Wheeler-Shamrock-Samnorwood Independent School District (9-12) in Kelton": 1, + "Wheeler Central Schools": 15, + "Wheeler County School District": 15, + "Wheeler Independent School District": 15, + "Wheelersburg Local School District": 15, + "Wheelerville Union Free School District": 15, + "Wheeling Community Consolidated School District 21": 15, + "White Bear Lake School District": 15, + "White Cloud Public Schools": 15, + "White County Central School District": 15, + "White County School District": 30, + "White Deer Independent School District": 15, + "White Hall School District": 15, + "White Lake School District": 15, + "White Lake School District 01-3": 15, + "White Mountain Regional School District": 15, + "White Oak Independent School District": 15, + "White Oak Public Schools": 15, + "White Pass School District": 15, + "White Pigeon Community Schools": 15, + "White Pine County School District": 15, + "White Pine School District": 3, + "White Plains City School District": 15, + "White River School District": 15, + "White River School District 47-1": 15, + "White River Unified School District": 2, + "White River Valley School District": 15, + "White River Valley Supervisory Union": 3, + "White Rock Public School": 15, + "White Rock Unified School District 104": 1, + "White Salmon School District": 1, + "White Salmon Valley School District": 14, + "White Settlement Independent School District": 15, + "White Shield Public School District 85": 15, + "White Sulphur Springs Elementary School District": 7, + "White Sulphur Springs High School District": 7, + "White Sulphur Springs K-12": 6, + "White Sulphur Springs K-12 Schools": 2, + "White Township School District": 15, + "Whitebead Public School": 15, + "Whiteface Consolidated Independent School District": 15, + "Whitefield Public School": 15, + "Whitefield School District": 1, + "Whitefish Bay School District": 15, + "Whitefish Elementary School District": 15, + "Whitefish High School District": 15, + "Whitefish Township Schools": 15, + "Whiteford Agricultural School District": 15, + "Whitehall-Coplay School District": 15, + "Whitehall Central School District": 15, + "Whitehall City School District": 15, + "Whitehall Elementary School District": 15, + "Whitehall High School District": 15, + "Whitehall School District": 30, + "Whitehouse Independent School District": 15, + "Whitepine Joint School District 288": 15, + "Whiteriver Unified District": 15, + "Whitesboro Central School District": 15, + "Whitesboro Independent School District": 15, + "Whitesboro Public Schools": 15, + "Whiteside School District 115": 15, + "Whitesville Central School District": 15, + "Whiteville City Schools": 15, + "Whitewater K-12 Schools": 15, + "Whitewater School District": 15, + "Whitewright Independent School District": 15, + "Whitfield County School District": 15, + "Whitharral Independent School District": 15, + "Whiting": 14, + "Whiting Community School District": 15, + "Whiting School City": 15, + "Whiting School District": 7, + "Whitingham School District": 7, + "Whitingham/Wilmington Joint Contract School District": 3, + "Whitko Community School Corporation": 15, + "Whitlash Elementary School District": 7, + "Whitley County Consolidated Schools": 15, + "Whitley County School District": 15, + "Whitman-Hanson School District": 15, + "Whitmore Lake Public Schools": 15, + "Whitmore Union Elementary School District": 15, + "Whitnall School District": 15, + "Whitney Independent School District": 15, + "Whitney Point Central School District": 15, + "Whitneyville": 14, + "Whitneyville School District": 1, + "Whittemore-Prescott Area Schools": 15, + "Whittier City Elementary School District": 15, + "Whittier Union High School District": 15, + "Wibaux K-12 Schools": 15, + "Wichita Falls Independent School District": 15, + "Wichita Unified School District 259": 15, + "Wickenburg Unified District": 15, + "Wickes School District": 3, + "Wickliffe City School District": 15, + "Wickliffe Public School": 15, + "Wicomico County Public Schools": 15, + "Widefield School District 3": 15, + "Wiggins School District RE-50J": 15, + "Wilber-Clatonia Public Schools": 15, + "Wilbur School District": 15, + "Wilburton Public Schools": 15, + "Wilcox-Hildreth Public Schools": 15, + "Wilcox County School District": 30, + "Wild Rose School District": 15, + "Wilder School District 133": 15, + "Wildorado Independent School District": 15, + "Wildwood City School District": 15, + "Wildwood Crest Borough School District": 15, + "Wiley School District RE-13-JT": 15, + "Wilkes-Barre Area School District": 15, + "Wilkes County School District": 15, + "Wilkes County Schools": 15, + "Wilkinsburg Borough School District": 15, + "Wilkinson County School District": 30, + "Will County School District 92": 15, + "Willamina School District 30J": 15, + "Willapa Valley School District": 15, + "Willard City School District": 15, + "Willard R-II School District": 10, + "Willard School District": 5, + "Willcox Unified District": 15, + "William Floyd (Mastic Beach) Union Free School District": 3, + "William Floyd Union Free School District": 12, + "William Penn School District": 15, + "William S. Hart Union High School District": 15, + "Williams Bay School District": 15, + "Williams County Public School District 8": 3, + "Williams Unified District": 15, + "Williams Unified School District": 15, + "Williams Valley School District": 15, + "Williamsburg City Public Schools": 15, + "Williamsburg Community School District": 30, + "Williamsburg County School District": 15, + "Williamsburg Independent School District": 15, + "Williamsburg Local School District": 15, + "Williamsburg School District": 15, + "Williamsfield Community Unit School District 210": 15, + "Williamson Central School District": 15, + "Williamson County School District": 15, + "Williamson County School District in Franklin": 15, + "Williamson Valley Elementary School District": 15, + "Williamsport Area School District": 15, + "Williamston Community Schools": 15, + "Williamstown Independent School District": 15, + "Williamstown School District": 17, + "Williamsville Central School District": 15, + "Williamsville Community Unit School District 15": 15, + "Willimantic": 14, + "Willimantic School District": 1, + "Willingboro Township School District": 15, + "Willington School District": 15, + "Willis Independent School District": 15, + "Williston Basin School District 7": 2, + "Williston Public School District 1": 13, + "Williston School District": 7, + "Willits Unified School District": 15, + "Willmar Public School District": 15, + "Willoughby-Eastlake City School District": 15, + "Willow Creek Elementary School District": 30, + "Willow Creek High School District": 15, + "Willow Grove School District 46": 15, + "Willow Grove Union Elementary School District": 15, + "Willow Lake School District 12-3": 15, + "Willow River Public School District": 15, + "Willow Run Community Schools": 5, + "Willow Springs R-IV School District": 15, + "Willow Springs School District 108": 15, + "Willows Unified School District": 15, + "Wills Point Independent School District": 15, + "Willsboro Central School District": 15, + "Wilmar Union Elementary School District": 15, + "Wilmette School District 39": 15, + "Wilmington Area School District": 15, + "Wilmington City School District": 15, + "Wilmington Community Unit School District 209U": 15, + "Wilmington School District": 22, + "Wilmot School District 54-7": 15, + "Wilmot Union High School District": 15, + "Wilson Area School District": 15, + "Wilson Central School District": 15, + "Wilson County School District": 15, + "Wilson County School District in Lebanon": 15, + "Wilson County Schools": 15, + "Wilson Creek School District": 15, + "Wilson Elementary District": 15, + "Wilson Independent School District": 15, + "Wilson Public Schools (Carter and Love Counties)": 15, + "Wilson Public Schools (Okmulgee County)": 15, + "Wilson School District": 15, + "Wilsona Elementary School District": 15, + "Wilton-Lyndeboro School District": 3, + "Wilton-Lyndeborough School District": 12, + "Wilton Community School District": 15, + "Wilton Public School District 1": 10, + "Wilton School District": 18, + "Wimberley Independent School District": 15, + "Win-E-Mac School District": 15, + "Winchendon School District": 15, + "Winchester City Public Schools": 15, + "Winchester Community Unit School District 1": 15, + "Winchester School District": 45, + "Windber Area School District": 15, + "Windham-Ashland-Jewett Central School District": 15, + "Windham Central Supervisory Union": 6, + "Windham Exempted Village School District": 15, + "Windham Northeast Supervisory Union": 6, + "Windham Northeast Union Elementary School District #95": 1, + "Windham Northeast Union Elementary School District 95": 1, + "Windham School District": 40, + "Windham Southeast Supervisory Union": 6, + "Windham Southeast Unified Union School District #96": 1, + "Windham Southeast Unified Union School District 96": 1, + "Windham Southwest Supervisory Union": 6, + "Windom Public School District": 15, + "Window Rock Unified District": 15, + "Windsor C-1 School District": 15, + "Windsor Central School District": 15, + "Windsor Central Supervisory Union": 6, + "Windsor Central Unified Union School District": 2, + "Windsor Community Unit School District 1": 15, + "Windsor Locks School District": 15, + "Windsor Northwest Supervisory Union": 3, + "Windsor School District": 38, + "Windsor School District RE-4": 15, + "Windsor Southeast Supervisory Union": 6, + "Windsor Unified School District": 15, + "Windthorst Independent School District": 15, + "Winfield-Mount Union Community School District": 15, + "Winfield City School District": 15, + "Winfield Independent School District": 10, + "Winfield R-IV School District": 10, + "Winfield School District": 5, + "Winfield School District 34": 15, + "Winfield Township School District": 15, + "Winfield Unified School District 465": 15, + "Wing Public School District 28": 15, + "Winhall School District": 9, + "Winifred K-12 Schools": 15, + "Wink-Loving Independent School District": 15, + "Winlock School District": 15, + "Winn Parish School District": 15, + "Winnacunnet Cooperative School District": 15, + "Winnebago Community Unit School District 323": 15, + "Winnebago Public Schools": 15, + "Winneconne Community School District": 15, + "Winner School District 59-2": 15, + "Winnetka School District 36": 15, + "Winnett K-12 Schools": 15, + "Winnisquam Regional School District": 15, + "Winnsboro Independent School District": 15, + "Winona-Montgomery County Consolidated School District": 5, + "Winona Area Public School District": 15, + "Winona Independent School District": 15, + "Winona R-III School District": 15, + "Winona Separate School District": 10, + "Winooski Incorporated School District": 13, + "Winooski School District": 2, + "Winship Elementary School District": 3, + "Winship Robbins Elementary School District": 12, + "Winside Public Schools": 15, + "Winslow": 14, + "Winslow School District": 1, + "Winslow Township School District": 15, + "Winslow Unified District": 15, + "Winston-Dillard School District 116": 15, + "Winston County School District": 15, + "Winston R-VI School District": 15, + "Winter School District": 15, + "Winters Independent School District": 15, + "Winters Joint Unified School District": 15, + "Winterset Community School District": 15, + "Winterville Plantation Public Schools": 8, + "Winthrop": 14, + "Winthrop Harbor School District 1": 15, + "Winthrop School District": 16, + "Winton Elementary School District": 7, + "Winton School District": 8, + "Winton Woods City School District": 15, + "Wirt County School District": 15, + "Wiscasset Public Schools": 8, + "Wiscasset School District": 1, + "Wisconsin Dells School District": 15, + "Wisconsin Heights School District": 15, + "Wisconsin Rapids School District": 15, + "Wisdom Elementary School District": 15, + "Wise County Public Schools": 15, + "Wise River Elementary School District": 15, + "Wiseburn Elementary School District": 7, + "Wiseburn Unified School District": 8, + "Wishek Public School District 19": 15, + "Wishkah Valley School District": 15, + "Wishram School District": 15, + "Wisner-Pilger Public Schools": 15, + "Wissahickon School District": 15, + "Wister Public Schools": 15, + "Wittenberg-Birnamwood School District": 15, + "Woburn School District": 15, + "Woden-Crystal Lake Community School District": 5, + "Woden Independent School District": 15, + "Wolcott School District": 24, + "Wolf Branch School District 113": 15, + "Wolf Creek Elementary School District": 15, + "Wolf Creek Local School District": 15, + "Wolf Point Elementary School District": 15, + "Wolf Point High School District": 15, + "Wolfe City Independent School District": 15, + "Wolfe County School District": 15, + "Wolford Public School District 1": 12, + "Wolsey-Wessington School District 02-6": 15, + "Wolverine Community Schools": 15, + "Wonderview School District": 15, + "Wonewoc-Union Center School District": 15, + "Wood-Ridge Borough School District": 15, + "Wood County School District": 15, + "Wood Dale School District 7": 15, + "Wood River-Hartford Elementary School District 15": 15, + "Wood River Rural Schools": 15, + "Wood School District 47-2": 1, + "Woodall Public School": 15, + "Woodbine Borough School District": 15, + "Woodbine Community School District": 15, + "Woodbridge School District": 30, + "Woodbridge Township School District": 15, + "Woodburn School District 103": 15, + "Woodbury Central Community School District": 15, + "Woodbury City School District": 15, + "Woodbury Heights Borough School District": 15, + "Woodbury School District": 7, + "Woodcliff Lake Borough School District": 15, + "Woodford County School District": 15, + "Woodford School District": 7, + "Woodhaven-Brownstown School District": 15, + "Woodlake Unified School District": 10, + "Woodlake Unified School District (9-12)": 6, + "Woodlake Unified School District (9-12) in Stone Corral": 4, + "Woodlake Unified School District (9-12) in Three Rivers Union": 4, + "Woodlake Union Elementary School District": 5, + "Woodlake Union High School District": 5, + "Woodland": 14, + "Woodland Community Consolidated School District 50": 15, + "Woodland Community Unit School District 5": 15, + "Woodland Hills School District": 15, + "Woodland Joint Unified School District": 15, + "Woodland Park Borough School District": 14, + "Woodland Park School District RE-2": 15, + "Woodland Public Schools": 15, + "Woodland R-IV School District": 15, + "Woodland School District": 16, + "Woodland Township School District": 15, + "Woodlawn Community Consolidated School District 4": 9, + "Woodlawn Community High School District 205": 9, + "Woodlawn School District": 15, + "Woodlawn Unit District 209": 6, + "Woodlawn Unit District 209 (9-12) in Ashley": 6, + "Woodlawn Unit District 209 (9-12) in Grand Prairie": 6, + "Woodlawn Unit District 209 (9-12) in Rome": 6, + "Woodlawn Unit District 209 (KG-8) in Mount Vernon": 6, + "Woodlawn Unit District 209 (KG-8) in Nashville": 6, + "Woodlin School District R-104": 15, + "Woodlynne Borough School District": 15, + "Woodman Elementary School District": 15, + "Woodmore Local School District": 15, + "Woodridge Local School District": 15, + "Woodridge School District 68": 15, + "Woodruff Joint No. 1 School District": 15, + "Woodsboro Independent School District": 15, + "Woodside Elementary School District": 15, + "Woodson Independent School District": 15, + "Woodson Unified School District 366": 15, + "Woodstock Community Unit School District 200": 15, + "Woodstock School District": 22, + "Woodstock Union High School District 4": 7, + "Woodstown-Pilesgrove Regional School District": 15, + "Woodville": 14, + "Woodville Elementary School District": 15, + "Woodville Independent School District": 15, + "Woodville School District": 1, + "Woodward-Granger Community School District": 15, + "Woodward Public Schools": 15, + "Woolwich School District": 1, + "Woonsocket School District": 15, + "Woonsocket School District 55-4": 15, + "Wooster City School District": 15, + "Worcester Central School District": 15, + "Worcester County Public Schools": 15, + "Worcester School District": 22, + "Worth County R-III School District": 15, + "Worth County School District": 15, + "Worth School District 127": 15, + "Wortham Independent School District": 15, + "Worthington City School District": 15, + "Worthington Public School District": 15, + "Worthington School District": 8, + "Wrangell City School District": 7, + "Wrangell School District": 8, + "Wray School District RD-2": 15, + "Wrenshall Public School District": 15, + "Wrentham School District": 15, + "Wright City Public Schools": 15, + "Wright City R-II of Warren County": 8, + "Wright City R-II School District": 7, + "Wright Elementary School District": 15, + "Wrightstown Community School District": 15, + "Wyaconda C-1 School District": 1, + "Wyalusing Area School District": 15, + "Wyandanch Union Free School District": 14, + "Wyandotte City School District": 15, + "Wyandotte Public Schools": 15, + "Wyckoff Township School District": 15, + "Wylie Independent School District (Collin County)": 15, + "Wylie Independent School District (Taylor County)": 15, + "Wynantskill Union Free School District": 15, + "Wyndmere Public School District 42": 15, + "Wynford Local School District": 15, + "Wynne Public Schools": 15, + "Wynnewood Public Schools": 15, + "Wynona Public Schools": 15, + "Wynot Public Schools": 15, + "Wyola Elementary School District": 15, + "Wyoming Area School District": 15, + "Wyoming Central School District": 15, + "Wyoming City School District": 15, + "Wyoming County School District": 15, + "Wyoming Public Schools": 15, + "Wyoming Valley West School District": 15, + "Wyomissing Area School District": 15, + "Wythe County Public Schools": 15, + "Xenia Community City School District": 15, + "Yaak Elementary School District": 15, + "Yadkin County Schools": 15, + "Yakima School District": 15, + "Yakutat City School District": 7, + "Yakutat School District": 8, + "Yale Public Schools": 30, + "Yamhill-Carlton School District 1": 15, + "Yancey County Schools": 15, + "Yankton School District 63-3": 15, + "Yantis Independent School District": 15, + "Yarbrough Public Schools": 15, + "Yarmouth": 14, + "Yarmouth School District": 1, + "Yarnell Elementary District": 15, + "Yavapai County High School District": 1, + "Yazoo City Municipal School District": 15, + "Yazoo County School District": 15, + "Yellow Medicine East": 12, + "Yellow Medicine East School District": 3, + "Yellow Springs Exempted Village School District": 15, + "Yellowstone Academy Elementary School District": 15, + "Yellowstone Public School District 14": 15, + "Yellville-Summit School District": 15, + "Yelm Community Schools": 14, + "Yelm School District": 1, + "Yoakum Independent School District": 15, + "Yoncalla School District 32": 15, + "Yonkers City School District": 15, + "York": 14, + "York Central School District": 15, + "York City School District": 15, + "York County Public Schools": 15, + "York Public Schools": 15, + "York School District": 1, + "York School District 1": 15, + "York School District 2": 15, + "York School District 3": 15, + "York School District 4": 15, + "York Suburban School District": 15, + "Yorkshire-Pioneer Central School District": 15, + "Yorktown Central School District": 15, + "Yorktown Community Schools": 1, + "Yorktown Independent School District": 15, + "Yorkville Community Unit School District 115": 15, + "Yorkville Joint No. 2 School District": 15, + "Yosemite Joint Union High School District": 1, + "Yosemite Unified School District": 14, + "Yosemite Unified School District (9-12)": 6, + "Yosemite Unified School District in Bass Lake": 8, + "Yosemite Unified School District in Raymond-Knowles": 8, + "Yough School District": 15, + "Young Elementary School District": 15, + "Youngstown City School District": 15, + "Ypsilanti Community Schools": 10, + "Ypsilanti School District": 5, + "Yreka Union Elementary School District": 15, + "Yreka Union High School District": 15, + "Ysleta Independent School District": 15, + "Yuba City Unified School District": 15, + "Yucaipa-Calimesa Joint Unified School District": 15, + "Yucca Elementary District": 15, + "Yukon-Koyukuk School District": 15, + "Yukon Flats School District": 15, + "Yukon Public Schools": 15, + "Yuma Elementary District": 15, + "Yuma School District 1": 15, + "Yuma Union High School District": 15, + "Yupiit School District": 15, + "Yutan Public Schools": 15, + "Zachary Community School District": 15, + "Zalma R-V School District": 15, + "Zane Trace Local School District": 15, + "Zaneis Public School": 15, + "Zanesville City School District": 15, + "Zapata County Independent School District": 15, + "Zavalla Independent School District": 15, + "Zeeland Public School District 4": 15, + "Zeeland Public Schools": 15, + "Zeigler-Royalton Community Unit School District 188": 15, + "Zephyr Independent School District": 15, + "Zillah School District": 15, + "Zion-Benton Township High School District 126": 15, + "Zion Elementary School District 6": 15, + "Zion Public School": 15, + "Zionsville Community Schools": 15, + "Zumbrota-Mazeppa School District": 15, + "Zuni Public Schools": 15, + "Zurich Elementary School District": 15 + } + }, + { + "name": "state", + "duplicates": 202023, + "info": { + "id": "state", + "name": "State", + "short_name": "State", + "long_name": "State FIPS code", + "category": "identifier", + "short_description": "FIPS code of the state containing the school district.", + "long_description": "2-digit state FIPS code, which is also the first two digits of the LEAID. Present in data_lea.csv.gz only, where it is the join key to state-level data, since `geography` there holds an LEAID rather than a FIPS code. Covers 52 values: the 50 states, DC and Puerto Rico.", + "measure_type": "id", + "unit": "FIPS code", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 29.682845, + "sd": 14.720165, + "min": 1, + "max": 72 + }, + { + "name": "lea_type", + "duplicates": 202072, + "info": { + "id": "lea_type", + "name": "District type", + "short_name": "District type", + "long_name": "School district type", + "category": "identifier", + "short_description": "Whether the district is elementary, secondary or unified.", + "long_description": "The three types are separate geographic layers that overlap one another: in dual-district states an elementary and a secondary district cover the same ground. Rows must therefore not be summed across types, and data_state.csv.gz should be used for totals. Present in data_lea.csv.gz only. In the 2019-2023 vintage there are 10,878 unified, 1,957 elementary and 480 secondary districts.", + "measure_type": "id", + "levels": { + "Elementary": { + "name": "Elementary school district" + }, + "Secondary": { + "name": "Secondary school district" + }, + "Unified": { + "name": "Unified school district" + } + }, + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "string", + "missing": 0, + "table": { + "Elementary": 31262, + "Secondary": 7463, + "Unified": 163350 + } + }, + { + "name": "time", + "duplicates": 202060, + "info": { + "id": "time", + "name": "Time", + "short_name": "Time", + "long_name": "Period end date", + "category": "identifier", + "short_description": "Last day of the final year of the ACS five-year period.", + "long_description": "Written as YYYY-12-31, so the 2019-2023 estimates carry 2023-12-31. This follows the repository convention of dating annual data to the end of its year, but note that each value summarises five years of sample, not the one year named.", + "measure_type": "time", + "unit": "Date", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "string", + "missing": 0, + "table": { + "2009-12-31": 13824, + "2010-12-31": 13710, + "2011-12-31": 13709, + "2012-12-31": 13632, + "2013-12-31": 13617, + "2014-12-31": 13569, + "2015-12-31": 13569, + "2016-12-31": 13331, + "2017-12-31": 13331, + "2018-12-31": 13298, + "2019-12-31": 13294, + "2020-12-31": 13273, + "2021-12-31": 13276, + "2022-12-31": 13327, + "2023-12-31": 13315 + } + }, + { + "name": "period", + "duplicates": 202060, + "info": { + "id": "period", + "name": "ACS period", + "short_name": "ACS period", + "long_name": "ACS five-year period", + "category": "identifier", + "short_description": "The five-year span the estimates cover, as ACS publishes it.", + "long_description": "For example \"2019-2023\". Kept alongside `time` because it is the label NCES and the Census Bureau use, and because it makes the five-year averaging explicit. Consecutive periods share four years of sample, so year-over-year differences are heavily autocorrelated and are not annual change. Fifteen periods are published, from 2005-2009 to 2019-2023.", + "measure_type": "id", + "unit": "Year range", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "string", + "missing": 0, + "table": { + "2005-2009": 13824, + "2006-2010": 13710, + "2007-2011": 13709, + "2008-2012": 13632, + "2009-2013": 13617, + "2010-2014": 13569, + "2011-2015": 13569, + "2012-2016": 13331, + "2013-2017": 13331, + "2014-2018": 13298, + "2015-2019": 13294, + "2016-2020": 13273, + "2017-2021": 13276, + "2018-2022": 13327, + "2019-2023": 13315 + } + }, + { + "name": "nces_pop_total", + "duplicates": 146048, + "info": { + "id": "nces_pop_total", + "short_name": "Total population", + "long_name": "Total population", + "category": "demographic", + "short_description": "Total population of the state or school district.", + "long_description": "Total population, from ACS table B01003.", + "statement": "{location} had a population of {value}.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 25486.792681, + "sd": 116172.253186, + "min": 0, + "max": 8736047 + }, + { + "name": "nces_pop_total_moe", + "duplicates": 198362, + "info": { + "id": "nces_pop_total_moe", + "short_name": "Total population (margin of error)", + "long_name": "Total population (margin of error)", + "category": "demographic", + "short_description": "Total population of the state or school district.", + "long_description": "Total population, from ACS table B01003. This column is the 90 percent margin of error of the estimate, and is empty far more often than the other margins here. ACS publishes \"*****\" instead of a margin of error wherever a population total is controlled to an independent estimate rather than sampled, which makes its sampling error zero by construction. That is true of every national and state row, so the column is entirely empty in data_state.csv.gz, and of districts coextensive with a controlled geography, which is why the largest districts (New York City, Puerto Rico) are empty too. Elsewhere in data_lea.csv.gz it is populated for 175,676 of 202,075 rows: the median district margin is 344 people, or about 6 percent of the estimate. The 2005-2009 vintage publishes no margins of error at all.", + "statement": "{location} had a population of {value}.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate, and is empty far more often than the other margins here. ACS publishes \"*****\" instead of a margin of error wherever a population total is controlled to an independent estimate rather than sampled, which makes its sampling error zero by construction. That is true of every national and state row, so the column is entirely empty in data_state.csv.gz, and of districts coextensive with a controlled geography, which is why the largest districts (New York City, Puerto Rico) are empty too. Elsewhere in data_lea.csv.gz it is populated for 175,676 of 202,075 rows: the median district margin is 344 people, or about 6 percent of the estimate. The 2005-2009 vintage publishes no margins of error at all." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 26399, + "mean": 435.468197, + "sd": 518.564199, + "min": 3, + "max": 11722 + }, + { + "name": "nces_pop_under18", + "duplicates": 175549, + "info": { + "id": "nces_pop_under18", + "short_name": "Children under 18", + "long_name": "Population under 18 years", + "category": "demographic", + "short_description": "Number of people under 18 years old.", + "long_description": "Population under 18 years, from ACS table B09001. Includes children in households and in group quarters.", + "statement": "{location} was home to {value} children under 18.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 5923.580082, + "sd": 25777.117875, + "min": 0, + "max": 1899035 + }, + { + "name": "nces_pop_under18_moe", + "duplicates": 199619, + "info": { + "id": "nces_pop_under18_moe", + "short_name": "Children under 18 (margin of error)", + "long_name": "Population under 18 years (margin of error)", + "category": "demographic", + "short_description": "Number of people under 18 years old.", + "long_description": "Population under 18 years, from ACS table B09001. Includes children in households and in group quarters. This column is the 90 percent margin of error of the estimate.", + "statement": "{location} was home to {value} children under 18.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 17030, + "mean": 282.307898, + "sd": 302.068999, + "min": 1, + "max": 6466 + }, + { + "name": "nces_pop_age_0_4", + "duplicates": 189019, + "info": { + "id": "nces_pop_age_0_4", + "short_name": "Children under 5", + "long_name": "Population under 5 years", + "category": "demographic", + "short_description": "Number of children under 5 years old, living in households.", + "long_description": "Sum of the 'Under 3 years' and '3 and 4 years' cells of ACS table B09001. B09001 breaks age down only within the 'In households' branch, so children in group quarters are excluded from this and the other B09001 age bands.", + "statement": "{location} was home to {value} children under 5.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 1587.081846, + "sd": 7384.912424, + "min": 0, + "max": 570774 + }, + { + "name": "nces_pop_age_0_4_moe", + "duplicates": 200334, + "info": { + "id": "nces_pop_age_0_4_moe", + "short_name": "Children under 5 (margin of error)", + "long_name": "Population under 5 years (margin of error)", + "category": "demographic", + "short_description": "Number of children under 5 years old, living in households.", + "long_description": "Sum of the 'Under 3 years' and '3 and 4 years' cells of ACS table B09001. B09001 breaks age down only within the 'In households' branch, so children in group quarters are excluded from this and the other B09001 age bands. This column is the 90 percent margin of error of the estimate.", + "statement": "{location} was home to {value} children under 5.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 13824, + "mean": 176.310516, + "sd": 201.17131, + "min": 3, + "max": 5157 + }, + { + "name": "nces_pop_age_5_11", + "duplicates": 186218, + "info": { + "id": "nces_pop_age_5_11", + "short_name": "Children 5 to 11", + "long_name": "Population 5 to 11 years", + "category": "demographic", + "short_description": "Number of children aged 5 to 11, living in households.", + "long_description": "Sum of the '5 years', '6 to 8 years' and '9 to 11 years' cells of ACS table B09001, which covers children in households only.", + "statement": "{location} was home to {value} children aged 5 to 11.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 2291.879797, + "sd": 9785.477192, + "min": 0, + "max": 691788 + }, + { + "name": "nces_pop_age_5_11_moe", + "duplicates": 199991, + "info": { + "id": "nces_pop_age_5_11_moe", + "short_name": "Children 5 to 11 (margin of error)", + "long_name": "Population 5 to 11 years (margin of error)", + "category": "demographic", + "short_description": "Number of children aged 5 to 11, living in households.", + "long_description": "Sum of the '5 years', '6 to 8 years' and '9 to 11 years' cells of ACS table B09001, which covers children in households only. This column is the 90 percent margin of error of the estimate.", + "statement": "{location} was home to {value} children aged 5 to 11.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 13824, + "mean": 220.588698, + "sd": 248.944461, + "min": 3, + "max": 6725 + }, + { + "name": "nces_pop_age_12_17", + "duplicates": 187207, + "info": { + "id": "nces_pop_age_12_17", + "short_name": "Children 12 to 17", + "long_name": "Population 12 to 17 years", + "category": "demographic", + "short_description": "Number of children aged 12 to 17, living in households.", + "long_description": "Sum of the '12 to 14 years' and '15 to 17 years' cells of ACS table B09001, which covers children in households only.", + "statement": "{location} was home to {value} children aged 12 to 17.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 2028.03233, + "sd": 8567.104371, + "min": 0, + "max": 625568 + }, + { + "name": "nces_pop_age_12_17_moe", + "duplicates": 200339, + "info": { + "id": "nces_pop_age_12_17_moe", + "short_name": "Children 12 to 17 (margin of error)", + "long_name": "Population 12 to 17 years (margin of error)", + "category": "demographic", + "short_description": "Number of children aged 12 to 17, living in households.", + "long_description": "Sum of the '12 to 14 years' and '15 to 17 years' cells of ACS table B09001, which covers children in households only. This column is the 90 percent margin of error of the estimate.", + "statement": "{location} was home to {value} children aged 12 to 17.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 13824, + "mean": 193.93132, + "sd": 203.848029, + "min": 2, + "max": 4433 + }, + { + "name": "nces_enrolled_preschool", + "duplicates": 196366, + "info": { + "id": "nces_enrolled_preschool", + "short_name": "Enrolled in preschool", + "long_name": "Enrolled in nursery school or preschool", + "category": "demographic", + "short_description": "Number of people enrolled in nursery school or preschool.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over.", + "statement": "{value} people in {location} were enrolled in preschool.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 392.985684, + "sd": 1841.746808, + "min": 0, + "max": 139057 + }, + { + "name": "nces_enrolled_preschool_moe", + "duplicates": 200930, + "info": { + "id": "nces_enrolled_preschool_moe", + "short_name": "Enrolled in preschool (margin of error)", + "long_name": "Enrolled in nursery school or preschool (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in nursery school or preschool.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in preschool.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 13824, + "mean": 92.945089, + "sd": 113.855104, + "min": 1, + "max": 3382 + }, + { + "name": "nces_enrolled_kindergarten", + "duplicates": 196888, + "info": { + "id": "nces_enrolled_kindergarten", + "short_name": "Enrolled in kindergarten", + "long_name": "Enrolled in kindergarten", + "category": "demographic", + "short_description": "Number of people enrolled in kindergarten.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over.", + "statement": "{value} people in {location} were enrolled in kindergarten.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 329.643523, + "sd": 1467.697498, + "min": 0, + "max": 109281 + }, + { + "name": "nces_enrolled_kindergarten_moe", + "duplicates": 200995, + "info": { + "id": "nces_enrolled_kindergarten_moe", + "short_name": "Enrolled in kindergarten (margin of error)", + "long_name": "Enrolled in kindergarten (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in kindergarten.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in kindergarten.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 13824, + "mean": 85.120679, + "sd": 104.803687, + "min": 1, + "max": 3276 + }, + { + "name": "nces_enrolled_grade_1_4", + "duplicates": 190509, + "info": { + "id": "nces_enrolled_grade_1_4", + "short_name": "Enrolled in grades 1-4", + "long_name": "Enrolled in grade 1 to grade 4", + "category": "demographic", + "short_description": "Number of people enrolled in grades 1 through 4.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over.", + "statement": "{value} people in {location} were enrolled in grades 1 to 4.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 1295.454148, + "sd": 5568.570178, + "min": 0, + "max": 392735 + }, + { + "name": "nces_enrolled_grade_1_4_moe", + "duplicates": 200425, + "info": { + "id": "nces_enrolled_grade_1_4_moe", + "short_name": "Enrolled in grades 1-4 (margin of error)", + "long_name": "Enrolled in grade 1 to grade 4 (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in grades 1 through 4.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in grades 1 to 4.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 13824, + "mean": 163.532167, + "sd": 183.394687, + "min": 2, + "max": 4597 + }, + { + "name": "nces_enrolled_grade_5_8", + "duplicates": 190369, + "info": { + "id": "nces_enrolled_grade_5_8", + "short_name": "Enrolled in grades 5-8", + "long_name": "Enrolled in grade 5 to grade 8", + "category": "demographic", + "short_description": "Number of people enrolled in grades 5 through 8.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over.", + "statement": "{value} people in {location} were enrolled in grades 5 to 8.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 1334.662076, + "sd": 5693.198664, + "min": 0, + "max": 415863 + }, + { + "name": "nces_enrolled_grade_5_8_moe", + "duplicates": 200417, + "info": { + "id": "nces_enrolled_grade_5_8_moe", + "short_name": "Enrolled in grades 5-8 (margin of error)", + "long_name": "Enrolled in grade 5 to grade 8 (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in grades 5 through 8.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in grades 5 to 8.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 13824, + "mean": 167.690047, + "sd": 186.82025, + "min": 2, + "max": 4679 + }, + { + "name": "nces_enrolled_grade_9_12", + "duplicates": 190208, + "info": { + "id": "nces_enrolled_grade_9_12", + "short_name": "Enrolled in grades 9-12", + "long_name": "Enrolled in grade 9 to grade 12", + "category": "demographic", + "short_description": "Number of people enrolled in grades 9 through 12.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This is the high school enrollment count that the completion and dropout measures should be read alongside.", + "statement": "{value} people in {location} were enrolled in grades 9 to 12.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 1383.827628, + "sd": 5971.54832, + "min": 0, + "max": 454483 + }, + { + "name": "nces_enrolled_grade_9_12_moe", + "duplicates": 200533, + "info": { + "id": "nces_enrolled_grade_9_12_moe", + "short_name": "Enrolled in grades 9-12 (margin of error)", + "long_name": "Enrolled in grade 9 to grade 12 (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in grades 9 through 12.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This is the high school enrollment count that the completion and dropout measures should be read alongside. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in grades 9 to 12.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 13824, + "mean": 164.193917, + "sd": 173.813853, + "min": 1, + "max": 3933 + }, + { + "name": "nces_enrolled_k12", + "duplicates": 179658, + "info": { + "id": "nces_enrolled_k12", + "short_name": "Enrolled in K-12", + "long_name": "Enrolled in kindergarten through grade 12", + "category": "demographic", + "short_description": "Number of people enrolled in kindergarten through grade 12.", + "long_description": "Sum of the kindergarten, grade 1-4, grade 5-8 and grade 9-12 cells of ACS table B14001. Preschool and nursery school are excluded.", + "statement": "{value} people in {location} were enrolled in kindergarten through grade 12.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 4343.587376, + "sd": 18674.038337, + "min": 0, + "max": 1367888 + }, + { + "name": "nces_enrolled_k12_moe", + "duplicates": 199532, + "info": { + "id": "nces_enrolled_k12_moe", + "short_name": "Enrolled in K-12 (margin of error)", + "long_name": "Enrolled in kindergarten through grade 12 (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in kindergarten through grade 12.", + "long_description": "Sum of the kindergarten, grade 1-4, grade 5-8 and grade 9-12 cells of ACS table B14001. Preschool and nursery school are excluded. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in kindergarten through grade 12.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 13824, + "mean": 303.060037, + "sd": 327.037202, + "min": 5, + "max": 8018 + }, + { + "name": "nces_enrolled_college", + "duplicates": 187545, + "info": { + "id": "nces_enrolled_college", + "short_name": "Enrolled in college", + "long_name": "Enrolled in college, undergraduate or graduate", + "category": "demographic", + "short_description": "Number of people enrolled in undergraduate, graduate or professional school.", + "long_description": "Sum of the 'Enrolled in college, undergraduate years' and 'Graduate or professional school' cells of ACS table B14001.", + "statement": "{value} people in {location} were enrolled in college.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 1808.01543, + "sd": 9296.948528, + "min": 0, + "max": 675418 + }, + { + "name": "nces_enrolled_college_moe", + "duplicates": 199832, + "info": { + "id": "nces_enrolled_college_moe", + "short_name": "Enrolled in college (margin of error)", + "long_name": "Enrolled in college, undergraduate or graduate (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in undergraduate, graduate or professional school.", + "long_description": "Sum of the 'Enrolled in college, undergraduate years' and 'Graduate or professional school' cells of ACS table B14001. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in college.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 13824, + "mean": 198.766339, + "sd": 268.367247, + "min": 2, + "max": 7143 + }, + { + "name": "nces_enrolled_public_5_17", + "duplicates": 181471, + "info": { + "id": "nces_enrolled_public_5_17", + "short_name": "In public school, 5-17", + "long_name": "Children 5 to 17 enrolled in public school", + "category": "demographic", + "short_description": "Number of children aged 5 to 17 enrolled in public school.", + "long_description": "Both sexes and the 5-9, 10-14 and 15-17 age bands of the 'Enrolled in public school' branch of ACS table B14003.", + "statement": "{value} children aged 5 to 17 in {location} attended public school.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 3717.690927, + "sd": 15145.870771, + "min": 0, + "max": 1012673 + }, + { + "name": "nces_enrolled_public_5_17_moe", + "duplicates": 199694, + "info": { + "id": "nces_enrolled_public_5_17_moe", + "short_name": "In public school, 5-17 (margin of error)", + "long_name": "Children 5 to 17 enrolled in public school (margin of error)", + "category": "demographic", + "short_description": "Number of children aged 5 to 17 enrolled in public school.", + "long_description": "Both sexes and the 5-9, 10-14 and 15-17 age bands of the 'Enrolled in public school' branch of ACS table B14003. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} children aged 5 to 17 in {location} attended public school.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 13824, + "mean": 279.951458, + "sd": 299.391027, + "min": 7, + "max": 6651 + }, + { + "name": "nces_enrolled_private_5_17", + "duplicates": 195724, + "info": { + "id": "nces_enrolled_private_5_17", + "short_name": "In private school, 5-17", + "long_name": "Children 5 to 17 enrolled in private school", + "category": "demographic", + "short_description": "Number of children aged 5 to 17 enrolled in private school.", + "long_description": "Both sexes and the 5-9, 10-14 and 15-17 age bands of the 'Enrolled in private school' branch of ACS table B14003.", + "statement": "{value} children aged 5 to 17 in {location} attended private school.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 472.263823, + "sd": 2893.747112, + "min": 0, + "max": 270535 + }, + { + "name": "nces_enrolled_private_5_17_moe", + "duplicates": 200803, + "info": { + "id": "nces_enrolled_private_5_17_moe", + "short_name": "In private school, 5-17 (margin of error)", + "long_name": "Children 5 to 17 enrolled in private school (margin of error)", + "category": "demographic", + "short_description": "Number of children aged 5 to 17 enrolled in private school.", + "long_description": "Both sexes and the 5-9, 10-14 and 15-17 age bands of the 'Enrolled in private school' branch of ACS table B14003. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} children aged 5 to 17 in {location} attended private school.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 13824, + "mean": 114.913764, + "sd": 129.279791, + "min": 6, + "max": 4274 + }, + { + "name": "nces_pct_enrolled_private_5_17", + "duplicates": 173420, + "info": { + "id": "nces_pct_enrolled_private_5_17", + "short_name": "Private school share, 5-17", + "long_name": "Percent of enrolled children 5 to 17 attending private school", + "category": "demographic", + "short_description": "Of children aged 5 to 17 who are in school, the percent in private school.", + "long_description": "Private school enrollment as a percent of public plus private enrollment for children aged 5 to 17, from ACS table B14003. Children not enrolled in school are excluded from the denominator.", + "statement": "{value} of enrolled children aged 5 to 17 in {location} attended private school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 875, + "mean": 9.511691, + "sd": 8.07113, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_enrolled_private_5_17_moe", + "duplicates": 169546, + "info": { + "id": "nces_pct_enrolled_private_5_17_moe", + "short_name": "Private school share, 5-17 (margin of error)", + "long_name": "Percent of enrolled children 5 to 17 attending private school (margin of error)", + "category": "demographic", + "short_description": "Of children aged 5 to 17 who are in school, the percent in private school.", + "long_description": "Private school enrollment as a percent of public plus private enrollment for children aged 5 to 17, from ACS table B14003. Children not enrolled in school are excluded from the denominator. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of enrolled children aged 5 to 17 in {location} attended private school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 14623, + "mean": 23.596034, + "sd": 211.252368, + "min": 0.188, + "max": 23270.153 + }, + { + "name": "nces_pct_not_enrolled_5_17", + "duplicates": 186940, + "info": { + "id": "nces_pct_not_enrolled_5_17", + "short_name": "Not in school, 5-17", + "long_name": "Percent of children 5 to 17 not enrolled in school", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who are not enrolled in school.", + "long_description": "Children aged 5 to 17 not enrolled in school as a percent of all children aged 5 to 17, from ACS table B14003.", + "statement": "{value} of children aged 5 to 17 in {location} were not enrolled in school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 828, + "mean": 3.617081, + "sd": 4.228391, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_not_enrolled_5_17_moe", + "duplicates": 170529, + "info": { + "id": "nces_pct_not_enrolled_5_17_moe", + "short_name": "Not in school, 5-17 (margin of error)", + "long_name": "Percent of children 5 to 17 not enrolled in school (margin of error)", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who are not enrolled in school.", + "long_description": "Children aged 5 to 17 not enrolled in school as a percent of all children aged 5 to 17, from ACS table B14003. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children aged 5 to 17 in {location} were not enrolled in school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 14577, + "mean": 23.365408, + "sd": 220.882501, + "min": 0.102, + "max": 30957.471 + }, + { + "name": "nces_pop_age_16_19", + "duplicates": 189841, + "info": { + "id": "nces_pop_age_16_19", + "short_name": "Teens 16 to 19", + "long_name": "Population 16 to 19 years", + "category": "demographic", + "short_description": "Number of people aged 16 to 19.", + "long_description": "Total of ACS table B14005, the universe for the high school completion measures.", + "statement": "{location} was home to {value} people aged 16 to 19.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 5, + "mean": 1393.939249, + "sd": 5939.697791, + "min": 0, + "max": 433910 + }, + { + "name": "nces_pop_age_16_19_moe", + "duplicates": 200621, + "info": { + "id": "nces_pop_age_16_19_moe", + "short_name": "Teens 16 to 19 (margin of error)", + "long_name": "Population 16 to 19 years (margin of error)", + "category": "demographic", + "short_description": "Number of people aged 16 to 19.", + "long_description": "Total of ACS table B14005, the universe for the high school completion measures. This column is the 90 percent margin of error of the estimate.", + "statement": "{location} was home to {value} people aged 16 to 19.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 13829, + "mean": 159.884677, + "sd": 165.866506, + "min": 2, + "max": 3802 + }, + { + "name": "nces_not_enrolled_hs_grad_16_19", + "duplicates": 198874, + "info": { + "id": "nces_not_enrolled_hs_grad_16_19", + "short_name": "Left school with diploma, 16-19", + "long_name": "Teens 16 to 19 not enrolled who hold a high school credential", + "category": "demographic", + "short_description": "Number of 16 to 19 year olds who have left school holding a diploma or equivalency.", + "long_description": "Both sexes of the 'Not enrolled in school: High school graduate (includes equivalency)' cells of ACS table B14005. GED and other equivalency credentials count as graduating here, which is not true of the cohort graduation rates NCES publishes from EDFacts.", + "statement": "{value} people aged 16 to 19 in {location} had left school with a high school credential.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 5, + "mean": 144.597917, + "sd": 585.521309, + "min": 0, + "max": 36463 + }, + { + "name": "nces_not_enrolled_hs_grad_16_19_moe", + "duplicates": 201265, + "info": { + "id": "nces_not_enrolled_hs_grad_16_19_moe", + "short_name": "Left school with diploma, 16-19 (margin of error)", + "long_name": "Teens 16 to 19 not enrolled who hold a high school credential (margin of error)", + "category": "demographic", + "short_description": "Number of 16 to 19 year olds who have left school holding a diploma or equivalency.", + "long_description": "Both sexes of the 'Not enrolled in school: High school graduate (includes equivalency)' cells of ACS table B14005. GED and other equivalency credentials count as graduating here, which is not true of the cohort graduation rates NCES publishes from EDFacts. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people aged 16 to 19 in {location} had left school with a high school credential.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 13829, + "mean": 64.357091, + "sd": 72.472841, + "min": 2, + "max": 1505 + }, + { + "name": "nces_not_enrolled_no_hs_16_19", + "duplicates": 200099, + "info": { + "id": "nces_not_enrolled_no_hs_16_19", + "short_name": "Left school without diploma, 16-19", + "long_name": "Teens 16 to 19 not enrolled and not a high school graduate", + "category": "demographic", + "short_description": "Number of 16 to 19 year olds who have left school without a diploma or equivalency.", + "long_description": "Both sexes of the 'Not enrolled in school: Not high school graduate' cells of ACS table B14005.", + "statement": "{value} people aged 16 to 19 in {location} had left school without a high school credential.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 5, + "mean": 63.797768, + "sd": 329.555649, + "min": 0, + "max": 31628 + }, + { + "name": "nces_not_enrolled_no_hs_16_19_moe", + "duplicates": 201472, + "info": { + "id": "nces_not_enrolled_no_hs_16_19_moe", + "short_name": "Left school without diploma, 16-19 (margin of error)", + "long_name": "Teens 16 to 19 not enrolled and not a high school graduate (margin of error)", + "category": "demographic", + "short_description": "Number of 16 to 19 year olds who have left school without a diploma or equivalency.", + "long_description": "Both sexes of the 'Not enrolled in school: Not high school graduate' cells of ACS table B14005. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people aged 16 to 19 in {location} had left school without a high school credential.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 13829, + "mean": 49.028611, + "sd": 53.520753, + "min": 3, + "max": 1287 + }, + { + "name": "nces_pct_hs_grad_16_19", + "duplicates": 172708, + "info": { + "id": "nces_pct_hs_grad_16_19", + "short_name": "High school completion, 16-19", + "long_name": "Percent of 16 to 19 year olds who have left school holding a high school credential", + "category": "demographic", + "short_description": "Of 16 to 19 year olds who have left school, the percent holding a diploma or equivalency.", + "long_description": "High school graduates as a percent of all 16 to 19 year olds no longer enrolled in school, from ACS table B14005. This is a survey-based completion measure, not the Adjusted Cohort Graduation Rate: it counts equivalency credentials as completion, it is a five-year average over a four-year age range rather than a single cohort followed to graduation, and it is tabulated by where a teenager lives rather than by the school they attended. For the cohort rate, see the NCES EDFacts and Common Core of Data collections.", + "statement": "{value} of 16 to 19 year olds in {location} who had left school held a high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 16956, + "mean": 71.158471, + "sd": 27.318956, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_hs_grad_16_19_moe", + "duplicates": 117407, + "info": { + "id": "nces_pct_hs_grad_16_19_moe", + "short_name": "High school completion, 16-19 (margin of error)", + "long_name": "Percent of 16 to 19 year olds who have left school holding a high school credential (margin of error)", + "category": "demographic", + "short_description": "Of 16 to 19 year olds who have left school, the percent holding a diploma or equivalency.", + "long_description": "High school graduates as a percent of all 16 to 19 year olds no longer enrolled in school, from ACS table B14005. This is a survey-based completion measure, not the Adjusted Cohort Graduation Rate: it counts equivalency credentials as completion, it is a five-year average over a four-year age range rather than a single cohort followed to graduation, and it is tabulated by where a teenager lives rather than by the school they attended. For the cohort rate, see the NCES EDFacts and Common Core of Data collections. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of 16 to 19 year olds in {location} who had left school held a high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 29502, + "mean": 216.202872, + "sd": 813.492217, + "min": 0, + "max": 26401.515 + }, + { + "name": "nces_pct_dropout_16_19", + "duplicates": 181969, + "info": { + "id": "nces_pct_dropout_16_19", + "short_name": "Status dropout rate, 16-19", + "long_name": "Percent of 16 to 19 year olds not enrolled and not a high school graduate", + "category": "demographic", + "short_description": "Percent of all 16 to 19 year olds who are neither enrolled in school nor holding a high school credential.", + "long_description": "Teens who have left school without a credential as a percent of all 16 to 19 year olds, from ACS table B14005. This follows the status dropout rate that NCES reports from the ACS, except that the published national series uses ages 16 to 24; here the denominator is the 16 to 19 universe the school district tables provide.", + "statement": "{value} of 16 to 19 year olds in {location} were neither in school nor high school graduates.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 1710, + "mean": 4.981303, + "sd": 7.486479, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_dropout_16_19_moe", + "duplicates": 167886, + "info": { + "id": "nces_pct_dropout_16_19_moe", + "short_name": "Status dropout rate, 16-19 (margin of error)", + "long_name": "Percent of 16 to 19 year olds not enrolled and not a high school graduate (margin of error)", + "category": "demographic", + "short_description": "Percent of all 16 to 19 year olds who are neither enrolled in school nor holding a high school credential.", + "long_description": "Teens who have left school without a credential as a percent of all 16 to 19 year olds, from ACS table B14005. This follows the status dropout rate that NCES reports from the ACS, except that the published national series uses ages 16 to 24; here the denominator is the 16 to 19 universe the school district tables provide. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of 16 to 19 year olds in {location} were neither in school nor high school graduates.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 15403, + "mean": 36.904277, + "sd": 246.779735, + "min": 0.027, + "max": 18667.619 + }, + { + "name": "nces_pct_enrolled_16_19", + "duplicates": 166195, + "info": { + "id": "nces_pct_enrolled_16_19", + "short_name": "Still in school, 16-19", + "long_name": "Percent of 16 to 19 year olds enrolled in school", + "category": "demographic", + "short_description": "Percent of 16 to 19 year olds still enrolled in school.", + "long_description": "Both sexes of the 'Enrolled in school' cells of ACS table B14005 as a percent of all 16 to 19 year olds. Enrollment here includes college.", + "statement": "{value} of 16 to 19 year olds in {location} were still enrolled in school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 1710, + "mean": 83.81302, + "sd": 12.536474, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_enrolled_16_19_moe", + "duplicates": 145893, + "info": { + "id": "nces_pct_enrolled_16_19_moe", + "short_name": "Still in school, 16-19 (margin of error)", + "long_name": "Percent of 16 to 19 year olds enrolled in school (margin of error)", + "category": "demographic", + "short_description": "Percent of 16 to 19 year olds still enrolled in school.", + "long_description": "Both sexes of the 'Enrolled in school' cells of ACS table B14005 as a percent of all 16 to 19 year olds. Enrollment here includes college. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of 16 to 19 year olds in {location} were still enrolled in school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 15403, + "mean": 31.860913, + "sd": 176.265538, + "min": 0, + "max": 14707.821 + }, + { + "name": "nces_pct_hs_or_higher_25plus", + "duplicates": 168495, + "info": { + "id": "nces_pct_hs_or_higher_25plus", + "short_name": "Adults with a diploma", + "long_name": "Percent of adults 25 and over with at least a high school credential", + "category": "demographic", + "short_description": "Percent of adults 25 and over who hold at least a high school diploma or equivalency.", + "long_description": "Everyone at or above the diploma level, both sexes, as a percent of the population 25 years and over, from ACS table B15002.", + "statement": "{value} of adults in {location} held at least a high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 271, + "mean": 87.650216, + "sd": 8.260545, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_hs_or_higher_25plus_moe", + "duplicates": 171919, + "info": { + "id": "nces_pct_hs_or_higher_25plus_moe", + "short_name": "Adults with a diploma (margin of error)", + "long_name": "Percent of adults 25 and over with at least a high school credential (margin of error)", + "category": "demographic", + "short_description": "Percent of adults 25 and over who hold at least a high school diploma or equivalency.", + "long_description": "Everyone at or above the diploma level, both sexes, as a percent of the population 25 years and over, from ACS table B15002. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of adults in {location} held at least a high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 14062, + "mean": 10.637445, + "sd": 97.527587, + "min": 0, + "max": 18009.373 + }, + { + "name": "nces_pct_no_hs_25plus", + "duplicates": 168495, + "info": { + "id": "nces_pct_no_hs_25plus", + "short_name": "Adults without a diploma", + "long_name": "Percent of adults 25 and over with no high school credential", + "category": "demographic", + "short_description": "Percent of adults 25 and over who never completed high school.", + "long_description": "Everyone below the diploma level, from no schooling through 12th grade with no diploma, both sexes, as a percent of the population 25 years and over, from ACS table B15002.", + "statement": "{value} of adults in {location} had no high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 271, + "mean": 12.349784, + "sd": 8.260545, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_no_hs_25plus_moe", + "duplicates": 180424, + "info": { + "id": "nces_pct_no_hs_25plus_moe", + "short_name": "Adults without a diploma (margin of error)", + "long_name": "Percent of adults 25 and over with no high school credential (margin of error)", + "category": "demographic", + "short_description": "Percent of adults 25 and over who never completed high school.", + "long_description": "Everyone below the diploma level, from no schooling through 12th grade with no diploma, both sexes, as a percent of the population 25 years and over, from ACS table B15002. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of adults in {location} had no high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 14062, + "mean": 8.40378, + "sd": 104.679196, + "min": 0.137, + "max": 18600 + }, + { + "name": "nces_pct_ba_or_higher_25plus", + "duplicates": 150251, + "info": { + "id": "nces_pct_ba_or_higher_25plus", + "short_name": "Adults with a bachelor's", + "long_name": "Percent of adults 25 and over with a bachelor's degree or higher", + "category": "demographic", + "short_description": "Percent of adults 25 and over holding at least a bachelor's degree.", + "long_description": "Bachelor's, master's, professional school and doctorate degrees, both sexes, as a percent of the population 25 years and over, from ACS table B15002.", + "statement": "{value} of adults in {location} held a bachelor's degree or higher.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 271, + "mean": 24.347106, + "sd": 14.156446, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_ba_or_higher_25plus_moe", + "duplicates": 183278, + "info": { + "id": "nces_pct_ba_or_higher_25plus_moe", + "short_name": "Adults with a bachelor's (margin of error)", + "long_name": "Percent of adults 25 and over with a bachelor's degree or higher (margin of error)", + "category": "demographic", + "short_description": "Percent of adults 25 and over holding at least a bachelor's degree.", + "long_description": "Bachelor's, master's, professional school and doctorate degrees, both sexes, as a percent of the population 25 years and over, from ACS table B15002. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of adults in {location} held a bachelor's degree or higher.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 14062, + "mean": 6.775369, + "sd": 70.273667, + "min": 0.151, + "max": 12586.501 + }, + { + "name": "nces_pct_non_english_home_5_17", + "duplicates": 159556, + "info": { + "id": "nces_pct_non_english_home_5_17", + "short_name": "Non-English at home, 5-17", + "long_name": "Percent of children 5 to 17 speaking a language other than English at home", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who speak a language other than English at home.", + "long_description": "The Spanish, other Indo-European, Asian and Pacific Island, and other language groups as a percent of all children aged 5 to 17, from ACS table B16004. Says nothing about English proficiency on its own.", + "statement": "{value} of children aged 5 to 17 in {location} spoke a language other than English at home.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 828, + "mean": 11.452713, + "sd": 15.677861, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_non_english_home_5_17_moe", + "duplicates": 169130, + "info": { + "id": "nces_pct_non_english_home_5_17_moe", + "short_name": "Non-English at home, 5-17 (margin of error)", + "long_name": "Percent of children 5 to 17 speaking a language other than English at home (margin of error)", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who speak a language other than English at home.", + "long_description": "The Spanish, other Indo-European, Asian and Pacific Island, and other language groups as a percent of all children aged 5 to 17, from ACS table B16004. Says nothing about English proficiency on its own. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children aged 5 to 17 in {location} spoke a language other than English at home.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 14577, + "mean": 20.703998, + "sd": 162.562331, + "min": 0.051, + "max": 19000 + }, + { + "name": "nces_pct_limited_english_5_17", + "duplicates": 185077, + "info": { + "id": "nces_pct_limited_english_5_17", + "short_name": "Limited English, 5-17", + "long_name": "Percent of children 5 to 17 speaking English less than very well", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who speak English less than very well.", + "long_description": "Children who speak English 'well', 'not well' or 'not at all', across all language groups, as a percent of all children aged 5 to 17, from ACS table B16004. This is the Census Bureau's limited-English-proficiency convention: 'very well' is excluded, so the measure is a household-survey analogue of an English learner count rather than a school program count.", + "statement": "{value} of children aged 5 to 17 in {location} spoke English less than very well.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 828, + "mean": 2.426627, + "sd": 4.776595, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_limited_english_5_17_moe", + "duplicates": 169193, + "info": { + "id": "nces_pct_limited_english_5_17_moe", + "short_name": "Limited English, 5-17 (margin of error)", + "long_name": "Percent of children 5 to 17 speaking English less than very well (margin of error)", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who speak English less than very well.", + "long_description": "Children who speak English 'well', 'not well' or 'not at all', across all language groups, as a percent of all children aged 5 to 17, from ACS table B16004. This is the Census Bureau's limited-English-proficiency convention: 'very well' is excluded, so the measure is a household-survey analogue of an English learner count rather than a school program count. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children aged 5 to 17 in {location} spoke English less than very well.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 14577, + "mean": 33.497474, + "sd": 284.589286, + "min": 0.232, + "max": 32908.965 + }, + { + "name": "nces_poverty_under18", + "duplicates": 191360, + "info": { + "id": "nces_poverty_under18", + "short_name": "Children in poverty", + "long_name": "Children under 18 with income below the poverty level", + "category": "demographic", + "short_description": "Number of children under 18 living below the federal poverty level.", + "long_description": "Both sexes and all age bands under 18 of the 'below poverty level' branch of ACS table B17001. The universe is people for whom poverty status is determined, which excludes some people in group quarters.", + "statement": "{value} children in {location} lived below the poverty level.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 5, + "mean": 1142.192933, + "sd": 7367.471686, + "min": 0, + "max": 544337 + }, + { + "name": "nces_poverty_under18_moe", + "duplicates": 200176, + "info": { + "id": "nces_poverty_under18_moe", + "short_name": "Children in poverty (margin of error)", + "long_name": "Children under 18 with income below the poverty level (margin of error)", + "category": "demographic", + "short_description": "Number of children under 18 living below the federal poverty level.", + "long_description": "Both sexes and all age bands under 18 of the 'below poverty level' branch of ACS table B17001. The universe is people for whom poverty status is determined, which excludes some people in group quarters. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} children in {location} lived below the poverty level.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 13829, + "mean": 189.285201, + "sd": 219.277573, + "min": 16, + "max": 6290 + }, + { + "name": "nces_pct_poverty_under18", + "duplicates": 156365, + "info": { + "id": "nces_pct_poverty_under18", + "short_name": "Child poverty rate", + "long_name": "Percent of children under 18 with income below the poverty level", + "category": "demographic", + "short_description": "Percent of children under 18 living below the federal poverty level.", + "long_description": "Children under 18 below the poverty level as a percent of all children under 18 for whom poverty status is determined, from ACS table B17001.", + "statement": "{value} of children in {location} lived below the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 760, + "mean": 17.866843, + "sd": 12.935943, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_poverty_under18_moe", + "duplicates": 166208, + "info": { + "id": "nces_pct_poverty_under18_moe", + "short_name": "Child poverty rate (margin of error)", + "long_name": "Percent of children under 18 with income below the poverty level (margin of error)", + "category": "demographic", + "short_description": "Percent of children under 18 living below the federal poverty level.", + "long_description": "Children under 18 below the poverty level as a percent of all children under 18 for whom poverty status is determined, from ACS table B17001. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children in {location} lived below the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 14512, + "mean": 25.597203, + "sd": 234.386955, + "min": 0.242, + "max": 22863.071 + }, + { + "name": "nces_pct_poverty_all_ages", + "duplicates": 168733, + "info": { + "id": "nces_pct_poverty_all_ages", + "short_name": "Poverty rate, all ages", + "long_name": "Percent of people of all ages with income below the poverty level", + "category": "demographic", + "short_description": "Percent of people of all ages living below the federal poverty level.", + "long_description": "The 'below poverty level' total of ACS table B17001 as a percent of the table total, the population for whom poverty status is determined.", + "statement": "{value} of people in {location} lived below the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 279, + "mean": 13.177972, + "sd": 7.947898, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_poverty_all_ages_moe", + "duplicates": 186663, + "info": { + "id": "nces_pct_poverty_all_ages_moe", + "short_name": "Poverty rate, all ages (margin of error)", + "long_name": "Percent of people of all ages with income below the poverty level (margin of error)", + "category": "demographic", + "short_description": "Percent of people of all ages living below the federal poverty level.", + "long_description": "The 'below poverty level' total of ACS table B17001 as a percent of the table total, the population for whom poverty status is determined. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of people in {location} lived below the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 14070, + "mean": 4.516289, + "sd": 22.416938, + "min": 0, + "max": 4650 + }, + { + "name": "nces_pct_deep_poverty_under18", + "duplicates": 174516, + "info": { + "id": "nces_pct_deep_poverty_under18", + "short_name": "Children under 50% FPL", + "long_name": "Percent of children under 18 with income below 50 percent of the poverty level", + "category": "demographic", + "short_description": "Percent of children under 18 living below half the federal poverty level.", + "long_description": "The 'Under .50' income-to-poverty band for the under 6, 6 to 11 and 12 to 17 age groups of ACS table B17024, as a percent of those age groups. B17024 bands ages differently from B17001, so this rate and the child poverty rate rest on slightly different universes.", + "statement": "{value} of children in {location} lived below half the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 760, + "mean": 7.781477, + "sd": 7.593162, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_deep_poverty_under18_moe", + "duplicates": 177365, + "info": { + "id": "nces_pct_deep_poverty_under18_moe", + "short_name": "Children under 50% FPL (margin of error)", + "long_name": "Percent of children under 18 with income below 50 percent of the poverty level (margin of error)", + "category": "demographic", + "short_description": "Percent of children under 18 living below half the federal poverty level.", + "long_description": "The 'Under .50' income-to-poverty band for the under 6, 6 to 11 and 12 to 17 age groups of ACS table B17024, as a percent of those age groups. B17024 bands ages differently from B17001, so this rate and the child poverty rate rest on slightly different universes. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children in {location} lived below half the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 14512, + "mean": 13.299897, + "sd": 109.152667, + "min": 0, + "max": 11431.535 + }, + { + "name": "nces_pct_under185_fpl_under18", + "duplicates": 136635, + "info": { + "id": "nces_pct_under185_fpl_under18", + "short_name": "Children under 185% FPL", + "long_name": "Percent of children under 18 with income below 185 percent of the poverty level", + "category": "demographic", + "short_description": "Percent of children under 18 in households below 185 percent of the federal poverty level.", + "long_description": "Income-to-poverty bands from 'Under .50' through '1.75 to 1.84' for the under 6, 6 to 11 and 12 to 17 age groups of ACS table B17024, as a percent of those age groups. 185 percent is the income ceiling for reduced-price school meals, so this approximates the share of children income-eligible for them; the published bands stop at 1.84 rather than 1.85.", + "statement": "{value} of children in {location} lived below 185 percent of the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 760, + "mean": 37.265813, + "sd": 18.563507, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_under185_fpl_under18_moe", + "duplicates": 158481, + "info": { + "id": "nces_pct_under185_fpl_under18_moe", + "short_name": "Children under 185% FPL (margin of error)", + "long_name": "Percent of children under 18 with income below 185 percent of the poverty level (margin of error)", + "category": "demographic", + "short_description": "Percent of children under 18 in households below 185 percent of the federal poverty level.", + "long_description": "Income-to-poverty bands from 'Under .50' through '1.75 to 1.84' for the under 6, 6 to 11 and 12 to 17 age groups of ACS table B17024, as a percent of those age groups. 185 percent is the income ceiling for reduced-price school meals, so this approximates the share of children income-eligible for them; the published bands stop at 1.84 rather than 1.85. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children in {location} lived below 185 percent of the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 14512, + "mean": 34.623571, + "sd": 291.241002, + "min": 0.43, + "max": 30245 + }, + { + "name": "nces_median_household_income", + "duplicates": 134330, + "info": { + "id": "nces_median_household_income", + "short_name": "Median household income", + "long_name": "Median household income in the past 12 months", + "category": "demographic", + "short_description": "Median household income over the past 12 months, in dollars of the vintage's final year.", + "long_description": "ACS table B19013. Dollars are inflation-adjusted to the last year of each five-year period, so values are not directly comparable across vintages without deflating to a common year. Districts where the median falls outside the published income brackets are left missing.", + "statement": "The median household income in {location} was {value}.", + "measure_type": "Median", + "unit": "Dollars", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 900, + "mean": 59727.973252, + "sd": 24749.564676, + "min": 2499, + "max": 250001 + }, + { + "name": "nces_median_household_income_moe", + "duplicates": 177748, + "info": { + "id": "nces_median_household_income_moe", + "short_name": "Median household income (margin of error)", + "long_name": "Median household income in the past 12 months (margin of error)", + "category": "demographic", + "short_description": "Median household income over the past 12 months, in dollars of the vintage's final year.", + "long_description": "ACS table B19013. Dollars are inflation-adjusted to the last year of each five-year period, so values are not directly comparable across vintages without deflating to a common year. Districts where the median falls outside the published income brackets are left missing. This column is the 90 percent margin of error published with the median.", + "statement": "The median household income in {location} was {value}.", + "measure_type": "Median", + "unit": "Dollars", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error published with the median." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 14681, + "mean": 7326.95438, + "sd": 6786.227635, + "min": 137, + "max": 260914 + }, + { + "name": "nces_median_household_income_bound", + "duplicates": 202071, + "info": { + "id": "nces_median_household_income_bound", + "short_name": "Median income bracket flag", + "long_name": "Whether the median household income fell outside the published brackets", + "category": "demographic", + "short_description": "Says whether the median household income is a usable number, or known only to be above or below the published range.", + "long_description": "\"within\" where nces_median_household_income holds a usable value; \"top\" where ACS reported the median as \"$250,000+\"; \"bottom\" where it reported \"$2,500-\"; and empty where the median is missing for some other reason. For \"top\" and \"bottom\" the estimate itself is NA, because the true median is known only to lie beyond the bracket: at least $250,000, or at most $2,500. Use this column to tell a genuinely missing median apart from a very high or very low one, and to substitute the bracket bound if your analysis needs a number. Top-coded rows are rare but growing as incomes rise, from 2 districts in the 2006-2010 vintage to 37 in 2019-2023; bottom-coded rows never exceed 5.", + "statement": "The median household income in {location} was {value} the published range.", + "measure_type": "category", + "time_resolution": "Year", + "levels": { + "within": { + "name": "Within the published range" + }, + "top": { + "name": "At least $250,000" + }, + "bottom": { + "name": "At most $2,500" + } + }, + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "string", + "missing": 0, + "table": { + "bottom": 8, + "NA": 783, + "top": 109, + "within": 201175 + } + }, + { + "name": "nces_pct_uninsured_children", + "duplicates": 178890, + "info": { + "id": "nces_pct_uninsured_children", + "short_name": "Uninsured children", + "long_name": "Percent of children without health insurance coverage", + "category": "access", + "short_description": "Percent of children with no health insurance coverage.", + "long_description": "Children with no health insurance coverage as a percent of all children, both sexes, from ACS table B27001. The age range shifts with the table: it is under 18 through the 2012-2016 vintage and under 19 from 2013-2017 onward, because the second age band was relabelled from '6 to 17 years' to '6 to 18 years'. The universe is the civilian noninstitutionalized population.", + "statement": "{value} of children in {location} had no health insurance.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [3, 14], + "type": "float", + "missing": 41757, + "mean": 6.366701, + "sd": 7.198098, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_uninsured_children_moe", + "duplicates": 182619, + "info": { + "id": "nces_pct_uninsured_children_moe", + "short_name": "Uninsured children (margin of error)", + "long_name": "Percent of children without health insurance coverage (margin of error)", + "category": "access", + "short_description": "Percent of children with no health insurance coverage.", + "long_description": "Children with no health insurance coverage as a percent of all children, both sexes, from ACS table B27001. The age range shifts with the table: it is under 18 through the 2012-2016 vintage and under 19 from 2013-2017 onward, because the second age band was relabelled from '6 to 17 years' to '6 to 18 years'. The universe is the civilian noninstitutionalized population. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children in {location} had no health insurance.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [3, 14], + "type": "float", + "missing": 41757, + "mean": 8.375226, + "sd": 48.275946, + "min": 0, + "max": 3000 + }, + { + "name": "nces_pct_uninsured_all_ages", + "duplicates": 174263, + "info": { + "id": "nces_pct_uninsured_all_ages", + "short_name": "Uninsured, all ages", + "long_name": "Percent of people of all ages without health insurance coverage", + "category": "access", + "short_description": "Percent of people of all ages with no health insurance coverage.", + "long_description": "All 'No health insurance coverage' cells of ACS table B27001 as a percent of the table total. The universe is the civilian noninstitutionalized population.", + "statement": "{value} of people in {location} had no health insurance.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [3, 14], + "type": "float", + "missing": 41420, + "mean": 10.31324, + "sd": 6.895291, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_uninsured_all_ages_moe", + "duplicates": 188047, + "info": { + "id": "nces_pct_uninsured_all_ages_moe", + "short_name": "Uninsured, all ages (margin of error)", + "long_name": "Percent of people of all ages without health insurance coverage (margin of error)", + "category": "access", + "short_description": "Percent of people of all ages with no health insurance coverage.", + "long_description": "All 'No health insurance coverage' cells of ACS table B27001 as a percent of the table total. The universe is the civilian noninstitutionalized population. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of people in {location} had no health insurance.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [3, 14], + "type": "float", + "missing": 41420, + "mean": 4.150496, + "sd": 31.606206, + "min": 0.077, + "max": 4666.905 + }, + { + "name": "nces_pct_disability_5_17", + "duplicates": 184613, + "info": { + "id": "nces_pct_disability_5_17", + "short_name": "Disability, 5-17", + "long_name": "Percent of children 5 to 17 with a disability", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 reported to have a disability.", + "long_description": "Children aged 5 to 17 with a disability, both sexes, as a percent of all children aged 5 to 17, from ACS table B18101. Disability is self- or proxy-reported across six functional questions and does not correspond to special education eligibility. First published in the 2008-2012 vintage.", + "statement": "{value} of children aged 5 to 17 in {location} had a disability.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [3, 14], + "type": "float", + "missing": 41856, + "mean": 5.824097, + "sd": 4.571919, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_disability_5_17_moe", + "duplicates": 184768, + "info": { + "id": "nces_pct_disability_5_17_moe", + "short_name": "Disability, 5-17 (margin of error)", + "long_name": "Percent of children 5 to 17 with a disability (margin of error)", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 reported to have a disability.", + "long_description": "Children aged 5 to 17 with a disability, both sexes, as a percent of all children aged 5 to 17, from ACS table B18101. Disability is self- or proxy-reported across six functional questions and does not correspond to special education eligibility. First published in the 2008-2012 vintage. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children aged 5 to 17 in {location} had a disability.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [3, 14], + "type": "float", + "missing": 41856, + "mean": 7.910184, + "sd": 39.681021, + "min": 0, + "max": 2121.32 + }, + { + "name": "nces_pct_single_parent_families", + "duplicates": 154147, + "info": { + "id": "nces_pct_single_parent_families", + "short_name": "Single-parent families", + "long_name": "Percent of families with children headed by one parent", + "category": "demographic", + "short_description": "Of families with their own children under 18, the percent with no spouse present.", + "long_description": "Male- and female-householder families with no spouse present and with own children under 18, as a percent of all families with own children under 18, from ACS table B11003. Families without children are excluded from the denominator.", + "statement": "{value} of families with children in {location} were headed by one parent.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 856, + "mean": 29.030648, + "sd": 13.482882, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_single_parent_families_moe", + "duplicates": 170948, + "info": { + "id": "nces_pct_single_parent_families_moe", + "short_name": "Single-parent families (margin of error)", + "long_name": "Percent of families with children headed by one parent (margin of error)", + "category": "demographic", + "short_description": "Of families with their own children under 18, the percent with no spouse present.", + "long_description": "Male- and female-householder families with no spouse present and with own children under 18, as a percent of all families with own children under 18, from ACS table B11003. Families without children are excluded from the denominator. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of families with children in {location} were headed by one parent.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 14603, + "mean": 20.589391, + "sd": 160.069912, + "min": 0.313, + "max": 22870.068 + }, + { + "name": "nces_pct_unemployed", + "duplicates": 183072, + "info": { + "id": "nces_pct_unemployed", + "short_name": "Unemployment rate", + "long_name": "Percent of the civilian labor force unemployed", + "category": "demographic", + "short_description": "Unemployed people as a percent of the civilian labor force aged 16 and over.", + "long_description": "ACS table B23025. The denominator is the civilian labor force, so people not in the labor force and the armed forces are excluded. First published in the 2007-2011 vintage.", + "statement": "The unemployment rate in {location} was {value}.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [2, 14], + "type": "float", + "missing": 27773, + "mean": 6.539379, + "sd": 4.19738, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_unemployed_moe", + "duplicates": 190343, + "info": { + "id": "nces_pct_unemployed_moe", + "short_name": "Unemployment rate (margin of error)", + "long_name": "Percent of the civilian labor force unemployed (margin of error)", + "category": "demographic", + "short_description": "Unemployed people as a percent of the civilian labor force aged 16 and over.", + "long_description": "ACS table B23025. The denominator is the civilian labor force, so people not in the labor force and the armed forces are excluded. First published in the 2007-2011 vintage. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "The unemployment rate in {location} was {value}.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [2, 14], + "type": "float", + "missing": 27773, + "mean": 3.499696, + "sd": 28.066365, + "min": 0, + "max": 7800 + }, + { + "name": "nces_pct_renter_occupied", + "duplicates": 153695, + "info": { + "id": "nces_pct_renter_occupied", + "short_name": "Renter-occupied homes", + "long_name": "Percent of occupied housing units that are renter occupied", + "category": "demographic", + "short_description": "Percent of occupied housing units occupied by renters.", + "long_description": "ACS table B25003. Vacant units are excluded from the denominator.", + "statement": "{value} of occupied homes in {location} were rented.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 284, + "mean": 25.732627, + "sd": 12.474826, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_renter_occupied_moe", + "duplicates": 185701, + "info": { + "id": "nces_pct_renter_occupied_moe", + "short_name": "Renter-occupied homes (margin of error)", + "long_name": "Percent of occupied housing units that are renter occupied (margin of error)", + "category": "demographic", + "short_description": "Percent of occupied housing units occupied by renters.", + "long_description": "ACS table B25003. Vacant units are excluded from the denominator. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of occupied homes in {location} were rented.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 14075, + "mean": 5.635237, + "sd": 34.350644, + "min": 0, + "max": 8900 + }, + { + "name": "nces_pct_foreign_born", + "duplicates": 172839, + "info": { + "id": "nces_pct_foreign_born", + "short_name": "Foreign born", + "long_name": "Percent of the population that is foreign born", + "category": "demographic", + "short_description": "Percent of people born outside the United States to non-U.S. citizen parents.", + "long_description": "The 'Foreign born' branch of ACS table B05002 as a percent of the total population. Includes naturalized citizens and non-citizens, and excludes people born abroad to American parents and those born in Puerto Rico or the U.S. Island Areas.", + "statement": "{value} of people in {location} were foreign born.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 270, + "mean": 6.075599, + "sd": 8.239615, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_foreign_born_moe", + "duplicates": 191389, + "info": { + "id": "nces_pct_foreign_born_moe", + "short_name": "Foreign born (margin of error)", + "long_name": "Percent of the population that is foreign born (margin of error)", + "category": "demographic", + "short_description": "Percent of people born outside the United States to non-U.S. citizen parents.", + "long_description": "The 'Foreign born' branch of ACS table B05002 as a percent of the total population. Includes naturalized citizens and non-citizens, and excludes people born abroad to American parents and those born in Puerto Rico or the U.S. Island Areas. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of people in {location} were foreign born.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 14062, + "mean": 2.365376, + "sd": 22.610228, + "min": 0, + "max": 4650 + }, + { + "name": "nces_pct_no_internet", + "duplicates": 168077, + "info": { + "id": "nces_pct_no_internet", + "short_name": "No internet subscription", + "long_name": "Percent of households without an internet subscription", + "category": "access", + "short_description": "Percent of households with no internet subscription of any kind.", + "long_description": "Households with internet access but no subscription, plus households with no internet access, as a percent of all households, from ACS table B28002. First published in the 2013-2017 vintage.", + "statement": "{value} of households in {location} had no internet subscription.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [8, 14], + "type": "float", + "missing": 109074, + "mean": 18.992916, + "sd": 10.387474, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_no_internet_moe", + "duplicates": 187919, + "info": { + "id": "nces_pct_no_internet_moe", + "short_name": "No internet subscription (margin of error)", + "long_name": "Percent of households without an internet subscription (margin of error)", + "category": "access", + "short_description": "Percent of households with no internet subscription of any kind.", + "long_description": "Households with internet access but no subscription, plus households with no internet access, as a percent of all households, from ACS table B28002. First published in the 2013-2017 vintage. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of households in {location} had no internet subscription.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [8, 14], + "type": "float", + "missing": 109074, + "mean": 5.557706, + "sd": 18.492737, + "min": 0.175, + "max": 1979.899 + }, + { + "name": "nces_pct_broadband", + "duplicates": 167587, + "info": { + "id": "nces_pct_broadband", + "short_name": "Broadband", + "long_name": "Percent of households with a broadband subscription", + "category": "access", + "short_description": "Percent of households with a broadband internet subscription of any type.", + "long_description": "The 'Broadband of any type' cell of ACS table B28002 as a percent of all households. Cellular data plans count as broadband here. First published in the 2013-2017 vintage.", + "statement": "{value} of households in {location} had a broadband subscription.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [8, 14], + "type": "float", + "missing": 109074, + "mean": 80.453016, + "sd": 10.596182, + "min": 0, + "max": 100 + }, + { + "name": "nces_pct_broadband_moe", + "duplicates": 187211, + "info": { + "id": "nces_pct_broadband_moe", + "short_name": "Broadband (margin of error)", + "long_name": "Percent of households with a broadband subscription (margin of error)", + "category": "access", + "short_description": "Percent of households with a broadband internet subscription of any type.", + "long_description": "The 'Broadband of any type' cell of ACS table B28002 as a percent of all households. Cellular data plans count as broadband here. First published in the 2013-2017 vintage. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of households in {location} had a broadband subscription.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [8, 14], + "type": "float", + "missing": 109074, + "mean": 4.880782, + "sd": 9.346957, + "min": 0, + "max": 1200 + } + ] + }, + "sha512": "07a9faa010d6cbbef76f3e12fd138d0a5fabc2a7afed4e9d1c64fed5b2b4a45d7bcf9e2e28f5439f82698a369dd913acaef207ffd9af98c6807b6ba9f14e1ac0" + }, + { + "bytes": 177514, + "encoding": "windows-1252", + "md5": "b2331f37dad49ebd63b33a8095191c9b", + "format": "csv", + "name": "data_state.csv", + "filename": "data_state.csv.gz", + "versions": {}, + "source": [], + "data_format": "tall", + "ids": [ + { + "variable": "geography" + } + ], + "id_length": 2, + "time": "time", + "profile": "data-resource", + "created": "2026-09-03 12:08:59.835224", + "last_modified": "2026-09-03 17:01:23.883762", + "vintage": {}, + "row_count": 795, + "entity_count": 53, + "schema": { + "fields": [ + { + "name": "geography", + "duplicates": 742, + "info": { + "id": "geography", + "name": "Location", + "short_name": "Location", + "long_name": "Location identifier", + "category": "identifier", + "short_description": "Identifies the state or school district a row describes.", + "long_description": "In data_state.csv.gz this is a FIPS code: \"00\" for national, otherwise a 2-digit state FIPS, including 11 for DC and 72 for Puerto Rico. In data_lea.csv.gz it is instead a 7-digit NCES LEAID identifying a school district, which is not a FIPS code; the containing state's FIPS is in the separate `state` column and is also the LEAID's first two digits. Together with `time` this is the primary key of each file.", + "measure_type": "id", + "unit": "FIPS code or NCES LEAID", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "string", + "missing": 0, + "table": { + "00": 15, + "01": 15, + "02": 15, + "04": 15, + "05": 15, + "06": 15, + "08": 15, + "09": 15, + "10": 15, + "11": 15, + "12": 15, + "13": 15, + "15": 15, + "16": 15, + "17": 15, + "18": 15, + "19": 15, + "20": 15, + "21": 15, + "22": 15, + "23": 15, + "24": 15, + "25": 15, + "26": 15, + "27": 15, + "28": 15, + "29": 15, + "30": 15, + "31": 15, + "32": 15, + "33": 15, + "34": 15, + "35": 15, + "36": 15, + "37": 15, + "38": 15, + "39": 15, + "40": 15, + "41": 15, + "42": 15, + "44": 15, + "45": 15, + "46": 15, + "47": 15, + "48": 15, + "49": 15, + "50": 15, + "51": 15, + "53": 15, + "54": 15, + "55": 15, + "56": 15, + "72": 15 + } + }, + { + "name": "geography_name", + "duplicates": 742, + "info": { + "id": "geography_name", + "name": "Location name", + "short_name": "Location name", + "long_name": "Location name", + "category": "identifier", + "short_description": "Name of the state or school district.", + "long_description": "Name as published by NCES, with the trailing state name and postal abbreviation stripped, so \"A-C Central Community Unit School District 262, Illinois, IL\" becomes \"A-C Central Community Unit School District 262\". Names are refreshed with each vintage and are not stable across vintages; join on `geography` rather than on the name.", + "measure_type": "id", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "string", + "missing": 0, + "table": { + "Alabama": 15, + "Alaska": 15, + "Arizona": 15, + "Arkansas": 15, + "California": 15, + "Colorado": 15, + "Connecticut": 15, + "Delaware": 15, + "District of Columbia": 15, + "Florida": 15, + "Georgia": 15, + "Hawaii": 15, + "Idaho": 15, + "Illinois": 15, + "Indiana": 15, + "Iowa": 15, + "Kansas": 15, + "Kentucky": 15, + "Louisiana": 15, + "Maine": 15, + "Maryland": 15, + "Massachusetts": 15, + "Michigan": 15, + "Minnesota": 15, + "Mississippi": 15, + "Missouri": 15, + "Montana": 15, + "Nebraska": 15, + "Nevada": 15, + "New Hampshire": 15, + "New Jersey": 15, + "New Mexico": 15, + "New York": 15, + "North Carolina": 15, + "North Dakota": 15, + "Ohio": 15, + "Oklahoma": 15, + "Oregon": 15, + "Pennsylvania": 15, + "Puerto Rico": 15, + "Rhode Island": 15, + "South Carolina": 15, + "South Dakota": 15, + "Tennessee": 15, + "Texas": 15, + "United States": 15, + "Utah": 15, + "Vermont": 15, + "Virginia": 15, + "Washington": 15, + "West Virginia": 15, + "Wisconsin": 15, + "Wyoming": 15 + } + }, + { + "name": "time", + "duplicates": 780, + "info": { + "id": "time", + "name": "Time", + "short_name": "Time", + "long_name": "Period end date", + "category": "identifier", + "short_description": "Last day of the final year of the ACS five-year period.", + "long_description": "Written as YYYY-12-31, so the 2019-2023 estimates carry 2023-12-31. This follows the repository convention of dating annual data to the end of its year, but note that each value summarises five years of sample, not the one year named.", + "measure_type": "time", + "unit": "Date", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "string", + "missing": 0, + "table": { + "2009-12-31": 53, + "2010-12-31": 53, + "2011-12-31": 53, + "2012-12-31": 53, + "2013-12-31": 53, + "2014-12-31": 53, + "2015-12-31": 53, + "2016-12-31": 53, + "2017-12-31": 53, + "2018-12-31": 53, + "2019-12-31": 53, + "2020-12-31": 53, + "2021-12-31": 53, + "2022-12-31": 53, + "2023-12-31": 53 + } + }, + { + "name": "period", + "duplicates": 780, + "info": { + "id": "period", + "name": "ACS period", + "short_name": "ACS period", + "long_name": "ACS five-year period", + "category": "identifier", + "short_description": "The five-year span the estimates cover, as ACS publishes it.", + "long_description": "For example \"2019-2023\". Kept alongside `time` because it is the label NCES and the Census Bureau use, and because it makes the five-year averaging explicit. Consecutive periods share four years of sample, so year-over-year differences are heavily autocorrelated and are not annual change. Fifteen periods are published, from 2005-2009 to 2019-2023.", + "measure_type": "id", + "unit": "Year range", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "string", + "missing": 0, + "table": { + "2005-2009": 53, + "2006-2010": 53, + "2007-2011": 53, + "2008-2012": 53, + "2009-2013": 53, + "2010-2014": 53, + "2011-2015": 53, + "2012-2016": 53, + "2013-2017": 53, + "2014-2018": 53, + "2015-2019": 53, + "2016-2020": 53, + "2017-2021": 53, + "2018-2022": 53, + "2019-2023": 53 + } + }, + { + "name": "nces_pop_total", + "duplicates": 0, + "info": { + "id": "nces_pop_total", + "short_name": "Total population", + "long_name": "Total population", + "category": "demographic", + "short_description": "Total population of the state or school district.", + "long_description": "Total population, from ACS table B01003.", + "statement": "{location} had a population of {value}.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 12067178.959748, + "sd": 43031709.90284, + "min": 523949, + "max": 332387540 + }, + { + "name": "nces_pop_total_moe", + "duplicates": 794, + "info": { + "id": "nces_pop_total_moe", + "short_name": "Total population (margin of error)", + "long_name": "Total population (margin of error)", + "category": "demographic", + "short_description": "Total population of the state or school district.", + "long_description": "Total population, from ACS table B01003. This column is the 90 percent margin of error of the estimate, and is empty far more often than the other margins here. ACS publishes \"*****\" instead of a margin of error wherever a population total is controlled to an independent estimate rather than sampled, which makes its sampling error zero by construction. That is true of every national and state row, so the column is entirely empty in data_state.csv.gz, and of districts coextensive with a controlled geography, which is why the largest districts (New York City, Puerto Rico) are empty too. Elsewhere in data_lea.csv.gz it is populated for 175,676 of 202,075 rows: the median district margin is 344 people, or about 6 percent of the estimate. The 2005-2009 vintage publishes no margins of error at all.", + "statement": "{location} had a population of {value}.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate, and is empty far more often than the other margins here. ACS publishes \"*****\" instead of a margin of error wherever a population total is controlled to an independent estimate rather than sampled, which makes its sampling error zero by construction. That is true of every national and state row, so the column is entirely empty in data_state.csv.gz, and of districts coextensive with a controlled geography, which is why the largest districts (New York City, Puerto Rico) are empty too. Elsewhere in data_lea.csv.gz it is populated for 175,676 of 202,075 rows: the median district margin is 344 people, or about 6 percent of the estimate. The 2005-2009 vintage publishes no margins of error at all." + }, + "time_range": [-1, -1], + "type": "unknown", + "missing": 795 + }, + { + "name": "nces_pop_under18", + "duplicates": 0, + "info": { + "id": "nces_pop_under18", + "short_name": "Children under 18", + "long_name": "Population under 18 years", + "category": "demographic", + "short_description": "Number of people under 18 years old.", + "long_description": "Population under 18 years, from ACS table B09001. Includes children in households and in group quarters.", + "statement": "{location} was home to {value} children under 18.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 2797189.810063, + "sd": 9980568.968866, + "min": 103023, + "max": 74234075 + }, + { + "name": "nces_pop_under18_moe", + "duplicates": 320, + "info": { + "id": "nces_pop_under18_moe", + "short_name": "Children under 18 (margin of error)", + "long_name": "Population under 18 years (margin of error)", + "category": "demographic", + "short_description": "Number of people under 18 years old.", + "long_description": "Population under 18 years, from ACS table B09001. Includes children in households and in group quarters. This column is the 90 percent margin of error of the estimate.", + "statement": "{location} was home to {value} children under 18.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 73, + "mean": 518.271468, + "sd": 884.043527, + "min": 28, + "max": 8506 + }, + { + "name": "nces_pop_age_0_4", + "duplicates": 2, + "info": { + "id": "nces_pop_age_0_4", + "short_name": "Children under 5", + "long_name": "Population under 5 years", + "category": "demographic", + "short_description": "Number of children under 5 years old, living in households.", + "long_description": "Sum of the 'Under 3 years' and '3 and 4 years' cells of ACS table B09001. B09001 breaks age down only within the 'In households' branch, so children in group quarters are excluded from this and the other B09001 age bands.", + "statement": "{location} was home to {value} children under 5.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 751438.869182, + "sd": 2684413.434172, + "min": 28015, + "max": 20842617 + }, + { + "name": "nces_pop_age_0_4_moe", + "duplicates": 111, + "info": { + "id": "nces_pop_age_0_4_moe", + "short_name": "Children under 5 (margin of error)", + "long_name": "Population under 5 years (margin of error)", + "category": "demographic", + "short_description": "Number of children under 5 years old, living in households.", + "long_description": "Sum of the 'Under 3 years' and '3 and 4 years' cells of ACS table B09001. B09001 breaks age down only within the 'In households' branch, so children in group quarters are excluded from this and the other B09001 age bands. This column is the 90 percent margin of error of the estimate.", + "statement": "{location} was home to {value} children under 5.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 3168.605121, + "sd": 3291.162098, + "min": 662, + "max": 28183 + }, + { + "name": "nces_pop_age_5_11", + "duplicates": 0, + "info": { + "id": "nces_pop_age_5_11", + "short_name": "Children 5 to 11", + "long_name": "Population 5 to 11 years", + "category": "demographic", + "short_description": "Number of children aged 5 to 11, living in households.", + "long_description": "Sum of the '5 years', '6 to 8 years' and '9 to 11 years' cells of ACS table B09001, which covers children in households only.", + "statement": "{location} was home to {value} children aged 5 to 11.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 1082221.861635, + "sd": 3861364.191381, + "min": 36346, + "max": 28884907 + }, + { + "name": "nces_pop_age_5_11_moe", + "duplicates": 96, + "info": { + "id": "nces_pop_age_5_11_moe", + "short_name": "Children 5 to 11 (margin of error)", + "long_name": "Population 5 to 11 years (margin of error)", + "category": "demographic", + "short_description": "Number of children aged 5 to 11, living in households.", + "long_description": "Sum of the '5 years', '6 to 8 years' and '9 to 11 years' cells of ACS table B09001, which covers children in households only. This column is the 90 percent margin of error of the estimate.", + "statement": "{location} was home to {value} children aged 5 to 11.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 4613.052561, + "sd": 4887.067991, + "min": 972, + "max": 43123 + }, + { + "name": "nces_pop_age_12_17", + "duplicates": 2, + "info": { + "id": "nces_pop_age_12_17", + "short_name": "Children 12 to 17", + "long_name": "Population 12 to 17 years", + "category": "demographic", + "short_description": "Number of children aged 12 to 17, living in households.", + "long_description": "Sum of the '12 to 14 years' and '15 to 17 years' cells of ACS table B09001, which covers children in households only.", + "statement": "{location} was home to {value} children aged 12 to 17.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 955629.744654, + "sd": 3407915.276311, + "min": 29926, + "max": 26020663 + }, + { + "name": "nces_pop_age_12_17_moe", + "duplicates": 111, + "info": { + "id": "nces_pop_age_12_17_moe", + "short_name": "Children 12 to 17 (margin of error)", + "long_name": "Population 12 to 17 years (margin of error)", + "category": "demographic", + "short_description": "Number of children aged 12 to 17, living in households.", + "long_description": "Sum of the '12 to 14 years' and '15 to 17 years' cells of ACS table B09001, which covers children in households only. This column is the 90 percent margin of error of the estimate.", + "statement": "{location} was home to {value} children aged 12 to 17.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 3110.753369, + "sd": 3190.059047, + "min": 638, + "max": 28858 + }, + { + "name": "nces_enrolled_preschool", + "duplicates": 6, + "info": { + "id": "nces_enrolled_preschool", + "short_name": "Enrolled in preschool", + "long_name": "Enrolled in nursery school or preschool", + "category": "demographic", + "short_description": "Number of people enrolled in nursery school or preschool.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over.", + "statement": "{value} people in {location} were enrolled in preschool.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 186115.545912, + "sd": 664171.688737, + "min": 7807, + "max": 5021959 + }, + { + "name": "nces_enrolled_preschool_moe", + "duplicates": 149, + "info": { + "id": "nces_enrolled_preschool_moe", + "short_name": "Enrolled in preschool (margin of error)", + "long_name": "Enrolled in nursery school or preschool (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in nursery school or preschool.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in preschool.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 2380.707547, + "sd": 3547.49994, + "min": 464, + "max": 31095 + }, + { + "name": "nces_enrolled_kindergarten", + "duplicates": 6, + "info": { + "id": "nces_enrolled_kindergarten", + "short_name": "Enrolled in kindergarten", + "long_name": "Enrolled in kindergarten", + "category": "demographic", + "short_description": "Number of people enrolled in kindergarten.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over.", + "statement": "{value} people in {location} were enrolled in kindergarten.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 155881.91195, + "sd": 556756.404079, + "min": 5356, + "max": 4214718 + }, + { + "name": "nces_enrolled_kindergarten_moe", + "duplicates": 142, + "info": { + "id": "nces_enrolled_kindergarten_moe", + "short_name": "Enrolled in kindergarten (margin of error)", + "long_name": "Enrolled in kindergarten (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in kindergarten.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in kindergarten.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 2035.432615, + "sd": 2188.025183, + "min": 377, + "max": 18605 + }, + { + "name": "nces_enrolled_grade_1_4", + "duplicates": 0, + "info": { + "id": "nces_enrolled_grade_1_4", + "short_name": "Enrolled in grades 1-4", + "long_name": "Enrolled in grade 1 to grade 4", + "category": "demographic", + "short_description": "Number of people enrolled in grades 1 through 4.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over.", + "statement": "{value} people in {location} were enrolled in grades 1 to 4.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 612057.558491, + "sd": 2183704.207786, + "min": 21045, + "max": 16342506 + }, + { + "name": "nces_enrolled_grade_1_4_moe", + "duplicates": 110, + "info": { + "id": "nces_enrolled_grade_1_4_moe", + "short_name": "Enrolled in grades 1-4 (margin of error)", + "long_name": "Enrolled in grade 1 to grade 4 (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in grades 1 through 4.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in grades 1 to 4.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 3206.559299, + "sd": 3387.307452, + "min": 656, + "max": 30718 + }, + { + "name": "nces_enrolled_grade_5_8", + "duplicates": 3, + "info": { + "id": "nces_enrolled_grade_5_8", + "short_name": "Enrolled in grades 5-8", + "long_name": "Enrolled in grade 5 to grade 8", + "category": "demographic", + "short_description": "Number of people enrolled in grades 5 through 8.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over.", + "statement": "{value} people in {location} were enrolled in grades 5 to 8.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 629493.065409, + "sd": 2244900.06605, + "min": 19366, + "max": 17002367 + }, + { + "name": "nces_enrolled_grade_5_8_moe", + "duplicates": 109, + "info": { + "id": "nces_enrolled_grade_5_8_moe", + "short_name": "Enrolled in grades 5-8 (margin of error)", + "long_name": "Enrolled in grade 5 to grade 8 (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in grades 5 through 8.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in grades 5 to 8.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 3360.979784, + "sd": 3583.829483, + "min": 686, + "max": 32615 + }, + { + "name": "nces_enrolled_grade_9_12", + "duplicates": 0, + "info": { + "id": "nces_enrolled_grade_9_12", + "short_name": "Enrolled in grades 9-12", + "long_name": "Enrolled in grade 9 to grade 12", + "category": "demographic", + "short_description": "Number of people enrolled in grades 9 through 12.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This is the high school enrollment count that the completion and dropout measures should be read alongside.", + "statement": "{value} people in {location} were enrolled in grades 9 to 12.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 651204.576101, + "sd": 2323651.50493, + "min": 21719, + "max": 17532181 + }, + { + "name": "nces_enrolled_grade_9_12_moe", + "duplicates": 146, + "info": { + "id": "nces_enrolled_grade_9_12_moe", + "short_name": "Enrolled in grades 9-12 (margin of error)", + "long_name": "Enrolled in grade 9 to grade 12 (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in grades 9 through 12.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This is the high school enrollment count that the completion and dropout measures should be read alongside. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in grades 9 to 12.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 2537.049865, + "sd": 2784.286507, + "min": 547, + "max": 24721 + }, + { + "name": "nces_enrolled_k12", + "duplicates": 0, + "info": { + "id": "nces_enrolled_k12", + "short_name": "Enrolled in K-12", + "long_name": "Enrolled in kindergarten through grade 12", + "category": "demographic", + "short_description": "Number of people enrolled in kindergarten through grade 12.", + "long_description": "Sum of the kindergarten, grade 1-4, grade 5-8 and grade 9-12 cells of ACS table B14001. Preschool and nursery school are excluded.", + "statement": "{value} people in {location} were enrolled in kindergarten through grade 12.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 2048637.11195, + "sd": 7308473.161254, + "min": 72609, + "max": 54377560 + }, + { + "name": "nces_enrolled_k12_moe", + "duplicates": 85, + "info": { + "id": "nces_enrolled_k12_moe", + "short_name": "Enrolled in K-12 (margin of error)", + "long_name": "Enrolled in kindergarten through grade 12 (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in kindergarten through grade 12.", + "long_description": "Sum of the kindergarten, grade 1-4, grade 5-8 and grade 9-12 cells of ACS table B14001. Preschool and nursery school are excluded. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in kindergarten through grade 12.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 5683.902965, + "sd": 6058.730899, + "min": 1209, + "max": 54448 + }, + { + "name": "nces_enrolled_college", + "duplicates": 0, + "info": { + "id": "nces_enrolled_college", + "short_name": "Enrolled in college", + "long_name": "Enrolled in college, undergraduate or graduate", + "category": "demographic", + "short_description": "Number of people enrolled in undergraduate, graduate or professional school.", + "long_description": "Sum of the 'Enrolled in college, undergraduate years' and 'Graduate or professional school' cells of ACS table B14001.", + "statement": "{value} people in {location} were enrolled in college.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 854368.183648, + "sd": 3051692.221302, + "min": 35392, + "max": 23628485 + }, + { + "name": "nces_enrolled_college_moe", + "duplicates": 101, + "info": { + "id": "nces_enrolled_college_moe", + "short_name": "Enrolled in college (margin of error)", + "long_name": "Enrolled in college, undergraduate or graduate (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in undergraduate, graduate or professional school.", + "long_description": "Sum of the 'Enrolled in college, undergraduate years' and 'Graduate or professional school' cells of ACS table B14001. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in college.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 5121.494609, + "sd": 7167.023397, + "min": 1015, + "max": 58886 + }, + { + "name": "nces_enrolled_public_5_17", + "duplicates": 0, + "info": { + "id": "nces_enrolled_public_5_17", + "short_name": "In public school, 5-17", + "long_name": "Children 5 to 17 enrolled in public school", + "category": "demographic", + "short_description": "Number of children aged 5 to 17 enrolled in public school.", + "long_description": "Both sexes and the 5-9, 10-14 and 15-17 age bands of the 'Enrolled in public school' branch of ACS table B14003.", + "statement": "{value} children aged 5 to 17 in {location} attended public school.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 1751816.474214, + "sd": 6256975.974708, + "min": 54548, + "max": 46581054 + }, + { + "name": "nces_enrolled_public_5_17_moe", + "duplicates": 94, + "info": { + "id": "nces_enrolled_public_5_17_moe", + "short_name": "In public school, 5-17 (margin of error)", + "long_name": "Children 5 to 17 enrolled in public school (margin of error)", + "category": "demographic", + "short_description": "Number of children aged 5 to 17 enrolled in public school.", + "long_description": "Both sexes and the 5-9, 10-14 and 15-17 age bands of the 'Enrolled in public school' branch of ACS table B14003. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} children aged 5 to 17 in {location} attended public school.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 5058.549865, + "sd": 5337.475365, + "min": 1079, + "max": 44919 + }, + { + "name": "nces_enrolled_private_5_17", + "duplicates": 2, + "info": { + "id": "nces_enrolled_private_5_17", + "short_name": "In private school, 5-17", + "long_name": "Children 5 to 17 enrolled in private school", + "category": "demographic", + "short_description": "Number of children aged 5 to 17 enrolled in private school.", + "long_description": "Both sexes and the 5-9, 10-14 and 15-17 age bands of the 'Enrolled in private school' branch of ACS table B14003.", + "statement": "{value} children aged 5 to 17 in {location} attended private school.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 224182.240252, + "sd": 794364.0329, + "min": 5341, + "max": 6677911 + }, + { + "name": "nces_enrolled_private_5_17_moe", + "duplicates": 118, + "info": { + "id": "nces_enrolled_private_5_17_moe", + "short_name": "In private school, 5-17 (margin of error)", + "long_name": "Children 5 to 17 enrolled in private school (margin of error)", + "category": "demographic", + "short_description": "Number of children aged 5 to 17 enrolled in private school.", + "long_description": "Both sexes and the 5-9, 10-14 and 15-17 age bands of the 'Enrolled in private school' branch of ACS table B14003. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} children aged 5 to 17 in {location} attended private school.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 2575.408356, + "sd": 3002.731891, + "min": 502, + "max": 25497 + }, + { + "name": "nces_pct_enrolled_private_5_17", + "duplicates": 36, + "info": { + "id": "nces_pct_enrolled_private_5_17", + "short_name": "Private school share, 5-17", + "long_name": "Percent of enrolled children 5 to 17 attending private school", + "category": "demographic", + "short_description": "Of children aged 5 to 17 who are in school, the percent in private school.", + "long_description": "Private school enrollment as a percent of public plus private enrollment for children aged 5 to 17, from ACS table B14003. Children not enrolled in school are excluded from the denominator.", + "statement": "{value} of enrolled children aged 5 to 17 in {location} attended private school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 11.68922, + "sd": 3.286069, + "min": 5.666, + "max": 26.908 + }, + { + "name": "nces_pct_enrolled_private_5_17_moe", + "duplicates": 395, + "info": { + "id": "nces_pct_enrolled_private_5_17_moe", + "short_name": "Private school share, 5-17 (margin of error)", + "long_name": "Percent of enrolled children 5 to 17 attending private school (margin of error)", + "category": "demographic", + "short_description": "Of children aged 5 to 17 who are in school, the percent in private school.", + "long_description": "Private school enrollment as a percent of public plus private enrollment for children aged 5 to 17, from ACS table B14003. Children not enrolled in school are excluded from the denominator. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of enrolled children aged 5 to 17 in {location} attended private school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 0.334513, + "sd": 0.190467, + "min": 0.038, + "max": 1.203 + }, + { + "name": "nces_pct_not_enrolled_5_17", + "duplicates": 126, + "info": { + "id": "nces_pct_not_enrolled_5_17", + "short_name": "Not in school, 5-17", + "long_name": "Percent of children 5 to 17 not enrolled in school", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who are not enrolled in school.", + "long_description": "Children aged 5 to 17 not enrolled in school as a percent of all children aged 5 to 17, from ACS table B14003.", + "statement": "{value} of children aged 5 to 17 in {location} were not enrolled in school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 3.630073, + "sd": 0.750389, + "min": 2.124, + "max": 6.649 + }, + { + "name": "nces_pct_not_enrolled_5_17_moe", + "duplicates": 471, + "info": { + "id": "nces_pct_not_enrolled_5_17_moe", + "short_name": "Not in school, 5-17 (margin of error)", + "long_name": "Percent of children 5 to 17 not enrolled in school (margin of error)", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who are not enrolled in school.", + "long_description": "Children aged 5 to 17 not enrolled in school as a percent of all children aged 5 to 17, from ACS table B14003. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children aged 5 to 17 in {location} were not enrolled in school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 0.207621, + "sd": 0.128578, + "min": 0.017, + "max": 0.879 + }, + { + "name": "nces_pop_age_16_19", + "duplicates": 0, + "info": { + "id": "nces_pop_age_16_19", + "short_name": "Teens 16 to 19", + "long_name": "Population 16 to 19 years", + "category": "demographic", + "short_description": "Number of people aged 16 to 19.", + "long_description": "Total of ACS table B14005, the universe for the high school completion measures.", + "statement": "{location} was home to {value} people aged 16 to 19.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 657865.333333, + "sd": 2345340.151589, + "min": 26932, + "max": 17793067 + }, + { + "name": "nces_pop_age_16_19_moe", + "duplicates": 151, + "info": { + "id": "nces_pop_age_16_19_moe", + "short_name": "Teens 16 to 19 (margin of error)", + "long_name": "Population 16 to 19 years (margin of error)", + "category": "demographic", + "short_description": "Number of people aged 16 to 19.", + "long_description": "Total of ACS table B14005, the universe for the high school completion measures. This column is the 90 percent margin of error of the estimate.", + "statement": "{location} was home to {value} people aged 16 to 19.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 1981.634771, + "sd": 2008.441103, + "min": 429, + "max": 19004 + }, + { + "name": "nces_not_enrolled_hs_grad_16_19", + "duplicates": 5, + "info": { + "id": "nces_not_enrolled_hs_grad_16_19", + "short_name": "Left school with diploma, 16-19", + "long_name": "Teens 16 to 19 not enrolled who hold a high school credential", + "category": "demographic", + "short_description": "Number of 16 to 19 year olds who have left school holding a diploma or equivalency.", + "long_description": "Both sexes of the 'Not enrolled in school: High school graduate (includes equivalency)' cells of ACS table B14005. GED and other equivalency credentials count as graduating here, which is not true of the cohort graduation rates NCES publishes from EDFacts.", + "statement": "{value} people aged 16 to 19 in {location} had left school with a high school credential.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 68210.479245, + "sd": 243445.682764, + "min": 2094, + "max": 2047493 + }, + { + "name": "nces_not_enrolled_hs_grad_16_19_moe", + "duplicates": 167, + "info": { + "id": "nces_not_enrolled_hs_grad_16_19_moe", + "short_name": "Left school with diploma, 16-19 (margin of error)", + "long_name": "Teens 16 to 19 not enrolled who hold a high school credential (margin of error)", + "category": "demographic", + "short_description": "Number of 16 to 19 year olds who have left school holding a diploma or equivalency.", + "long_description": "Both sexes of the 'Not enrolled in school: High school graduate (includes equivalency)' cells of ACS table B14005. GED and other equivalency credentials count as graduating here, which is not true of the cohort graduation rates NCES publishes from EDFacts. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people aged 16 to 19 in {location} had left school with a high school credential.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 1365.84097, + "sd": 1558.243896, + "min": 325, + "max": 13568 + }, + { + "name": "nces_not_enrolled_no_hs_16_19", + "duplicates": 15, + "info": { + "id": "nces_not_enrolled_no_hs_16_19", + "short_name": "Left school without diploma, 16-19", + "long_name": "Teens 16 to 19 not enrolled and not a high school graduate", + "category": "demographic", + "short_description": "Number of 16 to 19 year olds who have left school without a diploma or equivalency.", + "long_description": "Both sexes of the 'Not enrolled in school: Not high school graduate' cells of ACS table B14005.", + "statement": "{value} people aged 16 to 19 in {location} had left school without a high school credential.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 30371.893082, + "sd": 110630.211704, + "min": 578, + "max": 1112120 + }, + { + "name": "nces_not_enrolled_no_hs_16_19_moe", + "duplicates": 223, + "info": { + "id": "nces_not_enrolled_no_hs_16_19_moe", + "short_name": "Left school without diploma, 16-19 (margin of error)", + "long_name": "Teens 16 to 19 not enrolled and not a high school graduate (margin of error)", + "category": "demographic", + "short_description": "Number of 16 to 19 year olds who have left school without a diploma or equivalency.", + "long_description": "Both sexes of the 'Not enrolled in school: Not high school graduate' cells of ACS table B14005. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people aged 16 to 19 in {location} had left school without a high school credential.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 960.08221, + "sd": 1107.904824, + "min": 152, + "max": 10702 + }, + { + "name": "nces_pct_hs_grad_16_19", + "duplicates": 13, + "info": { + "id": "nces_pct_hs_grad_16_19", + "short_name": "High school completion, 16-19", + "long_name": "Percent of 16 to 19 year olds who have left school holding a high school credential", + "category": "demographic", + "short_description": "Of 16 to 19 year olds who have left school, the percent holding a diploma or equivalency.", + "long_description": "High school graduates as a percent of all 16 to 19 year olds no longer enrolled in school, from ACS table B14005. This is a survey-based completion measure, not the Adjusted Cohort Graduation Rate: it counts equivalency credentials as completion, it is a five-year average over a four-year age range rather than a single cohort followed to graduation, and it is tabulated by where a teenager lives rather than by the school they attended. For the cohort rate, see the NCES EDFacts and Common Core of Data collections.", + "statement": "{value} of 16 to 19 year olds in {location} who had left school held a high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 69.815264, + "sd": 6.977875, + "min": 49.668, + "max": 85.22 + }, + { + "name": "nces_pct_hs_grad_16_19_moe", + "duplicates": 154, + "info": { + "id": "nces_pct_hs_grad_16_19_moe", + "short_name": "High school completion, 16-19 (margin of error)", + "long_name": "Percent of 16 to 19 year olds who have left school holding a high school credential (margin of error)", + "category": "demographic", + "short_description": "Of 16 to 19 year olds who have left school, the percent holding a diploma or equivalency.", + "long_description": "High school graduates as a percent of all 16 to 19 year olds no longer enrolled in school, from ACS table B14005. This is a survey-based completion measure, not the Adjusted Cohort Graduation Rate: it counts equivalency credentials as completion, it is a five-year average over a four-year age range rather than a single cohort followed to graduation, and it is tabulated by where a teenager lives rather than by the school they attended. For the cohort rate, see the NCES EDFacts and Common Core of Data collections. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of 16 to 19 year olds in {location} who had left school held a high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 1.824395, + "sd": 1.214124, + "min": 0.196, + "max": 14.287 + }, + { + "name": "nces_pct_dropout_16_19", + "duplicates": 52, + "info": { + "id": "nces_pct_dropout_16_19", + "short_name": "Status dropout rate, 16-19", + "long_name": "Percent of 16 to 19 year olds not enrolled and not a high school graduate", + "category": "demographic", + "short_description": "Percent of all 16 to 19 year olds who are neither enrolled in school nor holding a high school credential.", + "long_description": "Teens who have left school without a credential as a percent of all 16 to 19 year olds, from ACS table B14005. This follows the status dropout rate that NCES reports from the ACS, except that the published national series uses ages 16 to 24; here the denominator is the 16 to 19 universe the school district tables provide.", + "statement": "{value} of 16 to 19 year olds in {location} were neither in school nor high school graduates.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 4.705483, + "sd": 1.506374, + "min": 1.799, + "max": 10.64 + }, + { + "name": "nces_pct_dropout_16_19_moe", + "duplicates": 366, + "info": { + "id": "nces_pct_dropout_16_19_moe", + "short_name": "Status dropout rate, 16-19 (margin of error)", + "long_name": "Percent of 16 to 19 year olds not enrolled and not a high school graduate (margin of error)", + "category": "demographic", + "short_description": "Percent of all 16 to 19 year olds who are neither enrolled in school nor holding a high school credential.", + "long_description": "Teens who have left school without a credential as a percent of all 16 to 19 year olds, from ACS table B14005. This follows the status dropout rate that NCES reports from the ACS, except that the published national series uses ages 16 to 24; here the denominator is the 16 to 19 universe the school district tables provide. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of 16 to 19 year olds in {location} were neither in school nor high school graduates.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 0.385422, + "sd": 0.218183, + "min": 0.039, + "max": 1.509 + }, + { + "name": "nces_pct_enrolled_16_19", + "duplicates": 35, + "info": { + "id": "nces_pct_enrolled_16_19", + "short_name": "Still in school, 16-19", + "long_name": "Percent of 16 to 19 year olds enrolled in school", + "category": "demographic", + "short_description": "Percent of 16 to 19 year olds still enrolled in school.", + "long_description": "Both sexes of the 'Enrolled in school' cells of ACS table B14005 as a percent of all 16 to 19 year olds. Enrollment here includes college.", + "statement": "{value} of 16 to 19 year olds in {location} were still enrolled in school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 84.491044, + "sd": 2.903559, + "min": 73.98, + "max": 90.635 + }, + { + "name": "nces_pct_enrolled_16_19_moe", + "duplicates": 245, + "info": { + "id": "nces_pct_enrolled_16_19_moe", + "short_name": "Still in school, 16-19 (margin of error)", + "long_name": "Percent of 16 to 19 year olds enrolled in school (margin of error)", + "category": "demographic", + "short_description": "Percent of 16 to 19 year olds still enrolled in school.", + "long_description": "Both sexes of the 'Enrolled in school' cells of ACS table B14005 as a percent of all 16 to 19 year olds. Enrollment here includes college. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of 16 to 19 year olds in {location} were still enrolled in school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 0.682084, + "sd": 0.374628, + "min": 0.081, + "max": 2.155 + }, + { + "name": "nces_pct_hs_or_higher_25plus", + "duplicates": 21, + "info": { + "id": "nces_pct_hs_or_higher_25plus", + "short_name": "Adults with a diploma", + "long_name": "Percent of adults 25 and over with at least a high school credential", + "category": "demographic", + "short_description": "Percent of adults 25 and over who hold at least a high school diploma or equivalency.", + "long_description": "Everyone at or above the diploma level, both sexes, as a percent of the population 25 years and over, from ACS table B15002.", + "statement": "{value} of adults in {location} held at least a high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 88.274639, + "sd": 3.883802, + "min": 66.661, + "max": 94.571 + }, + { + "name": "nces_pct_hs_or_higher_25plus_moe", + "duplicates": 351, + "info": { + "id": "nces_pct_hs_or_higher_25plus_moe", + "short_name": "Adults with a diploma (margin of error)", + "long_name": "Percent of adults 25 and over with at least a high school credential (margin of error)", + "category": "demographic", + "short_description": "Percent of adults 25 and over who hold at least a high school diploma or equivalency.", + "long_description": "Everyone at or above the diploma level, both sexes, as a percent of the population 25 years and over, from ACS table B15002. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of adults in {location} held at least a high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 0.429834, + "sd": 0.216112, + "min": 0.094, + "max": 1.117 + }, + { + "name": "nces_pct_no_hs_25plus", + "duplicates": 21, + "info": { + "id": "nces_pct_no_hs_25plus", + "short_name": "Adults without a diploma", + "long_name": "Percent of adults 25 and over with no high school credential", + "category": "demographic", + "short_description": "Percent of adults 25 and over who never completed high school.", + "long_description": "Everyone below the diploma level, from no schooling through 12th grade with no diploma, both sexes, as a percent of the population 25 years and over, from ACS table B15002.", + "statement": "{value} of adults in {location} had no high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 11.725361, + "sd": 3.883802, + "min": 5.429, + "max": 33.339 + }, + { + "name": "nces_pct_no_hs_25plus_moe", + "duplicates": 542, + "info": { + "id": "nces_pct_no_hs_25plus_moe", + "short_name": "Adults without a diploma (margin of error)", + "long_name": "Percent of adults 25 and over with no high school credential (margin of error)", + "category": "demographic", + "short_description": "Percent of adults 25 and over who never completed high school.", + "long_description": "Everyone below the diploma level, from no schooling through 12th grade with no diploma, both sexes, as a percent of the population 25 years and over, from ACS table B15002. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of adults in {location} had no high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 0.165171, + "sd": 0.075253, + "min": 0.03, + "max": 0.447 + }, + { + "name": "nces_pct_ba_or_higher_25plus", + "duplicates": 11, + "info": { + "id": "nces_pct_ba_or_higher_25plus", + "short_name": "Adults with a bachelor's", + "long_name": "Percent of adults 25 and over with a bachelor's degree or higher", + "category": "demographic", + "short_description": "Percent of adults 25 and over holding at least a bachelor's degree.", + "long_description": "Bachelor's, master's, professional school and doctorate degrees, both sexes, as a percent of the population 25 years and over, from ACS table B15002.", + "statement": "{value} of adults in {location} held a bachelor's degree or higher.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 30.291503, + "sd": 6.468591, + "min": 17.084, + "max": 63.564 + }, + { + "name": "nces_pct_ba_or_higher_25plus_moe", + "duplicates": 451, + "info": { + "id": "nces_pct_ba_or_higher_25plus_moe", + "short_name": "Adults with a bachelor's (margin of error)", + "long_name": "Percent of adults 25 and over with a bachelor's degree or higher (margin of error)", + "category": "demographic", + "short_description": "Percent of adults 25 and over holding at least a bachelor's degree.", + "long_description": "Bachelor's, master's, professional school and doctorate degrees, both sexes, as a percent of the population 25 years and over, from ACS table B15002. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of adults in {location} held a bachelor's degree or higher.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 0.254292, + "sd": 0.136429, + "min": 0.058, + "max": 0.88 + }, + { + "name": "nces_pct_non_english_home_5_17", + "duplicates": 11, + "info": { + "id": "nces_pct_non_english_home_5_17", + "short_name": "Non-English at home, 5-17", + "long_name": "Percent of children 5 to 17 speaking a language other than English at home", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who speak a language other than English at home.", + "long_description": "The Spanish, other Indo-European, Asian and Pacific Island, and other language groups as a percent of all children aged 5 to 17, from ACS table B16004. Says nothing about English proficiency on its own.", + "statement": "{value} of children aged 5 to 17 in {location} spoke a language other than English at home.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 16.685849, + "sd": 14.345037, + "min": 2.084, + "max": 96.947 + }, + { + "name": "nces_pct_non_english_home_5_17_moe", + "duplicates": 379, + "info": { + "id": "nces_pct_non_english_home_5_17_moe", + "short_name": "Non-English at home, 5-17 (margin of error)", + "long_name": "Percent of children 5 to 17 speaking a language other than English at home (margin of error)", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who speak a language other than English at home.", + "long_description": "The Spanish, other Indo-European, Asian and Pacific Island, and other language groups as a percent of all children aged 5 to 17, from ACS table B16004. Says nothing about English proficiency on its own. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children aged 5 to 17 in {location} spoke a language other than English at home.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 0.37753, + "sd": 0.211653, + "min": 0.052, + "max": 1.269 + }, + { + "name": "nces_pct_limited_english_5_17", + "duplicates": 52, + "info": { + "id": "nces_pct_limited_english_5_17", + "short_name": "Limited English, 5-17", + "long_name": "Percent of children 5 to 17 speaking English less than very well", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who speak English less than very well.", + "long_description": "Children who speak English 'well', 'not well' or 'not at all', across all language groups, as a percent of all children aged 5 to 17, from ACS table B16004. This is the Census Bureau's limited-English-proficiency convention: 'very well' is excluded, so the measure is a household-survey analogue of an English learner count rather than a school program count.", + "statement": "{value} of children aged 5 to 17 in {location} spoke English less than very well.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 4.623526, + "sd": 10.512598, + "min": 0.496, + "max": 84.395 + }, + { + "name": "nces_pct_limited_english_5_17_moe", + "duplicates": 492, + "info": { + "id": "nces_pct_limited_english_5_17_moe", + "short_name": "Limited English, 5-17 (margin of error)", + "long_name": "Percent of children 5 to 17 speaking English less than very well (margin of error)", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who speak English less than very well.", + "long_description": "Children who speak English 'well', 'not well' or 'not at all', across all language groups, as a percent of all children aged 5 to 17, from ACS table B16004. This is the Census Bureau's limited-English-proficiency convention: 'very well' is excluded, so the measure is a household-survey analogue of an English learner count rather than a school program count. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children aged 5 to 17 in {location} spoke English less than very well.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 0.21029, + "sd": 0.147885, + "min": 0.024, + "max": 1.033 + }, + { + "name": "nces_poverty_under18", + "duplicates": 1, + "info": { + "id": "nces_poverty_under18", + "short_name": "Children in poverty", + "long_name": "Children under 18 with income below the poverty level", + "category": "demographic", + "short_description": "Number of children under 18 living below the federal poverty level.", + "long_description": "Both sexes and all age bands under 18 of the 'below poverty level' branch of ACS table B17001. The universe is people for whom poverty status is determined, which excludes some people in group quarters.", + "statement": "{value} children in {location} lived below the poverty level.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 539039.725786, + "sd": 1916980.652379, + "min": 12421, + "max": 15907395 + }, + { + "name": "nces_poverty_under18_moe", + "duplicates": 101, + "info": { + "id": "nces_poverty_under18_moe", + "short_name": "Children in poverty (margin of error)", + "long_name": "Children under 18 with income below the poverty level (margin of error)", + "category": "demographic", + "short_description": "Number of children under 18 living below the federal poverty level.", + "long_description": "Both sexes and all age bands under 18 of the 'below poverty level' branch of ACS table B17001. The universe is people for whom poverty status is determined, which excludes some people in group quarters. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} children in {location} lived below the poverty level.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 4660.361186, + "sd": 7550.563262, + "min": 789, + "max": 57932 + }, + { + "name": "nces_pct_poverty_under18", + "duplicates": 16, + "info": { + "id": "nces_pct_poverty_under18", + "short_name": "Child poverty rate", + "long_name": "Percent of children under 18 with income below the poverty level", + "category": "demographic", + "short_description": "Percent of children under 18 living below the federal poverty level.", + "long_description": "Children under 18 below the poverty level as a percent of all children under 18 for whom poverty status is determined, from ACS table B17001.", + "statement": "{value} of children in {location} lived below the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 19.185848, + "sd": 7.156959, + "min": 7.762, + "max": 57.427 + }, + { + "name": "nces_pct_poverty_under18_moe", + "duplicates": 409, + "info": { + "id": "nces_pct_poverty_under18_moe", + "short_name": "Child poverty rate (margin of error)", + "long_name": "Percent of children under 18 with income below the poverty level (margin of error)", + "category": "demographic", + "short_description": "Percent of children under 18 living below the federal poverty level.", + "long_description": "Children under 18 below the poverty level as a percent of all children under 18 for whom poverty status is determined, from ACS table B17001. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children in {location} lived below the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 0.370183, + "sd": 0.193377, + "min": 0.073, + "max": 1.299 + }, + { + "name": "nces_pct_poverty_all_ages", + "duplicates": 19, + "info": { + "id": "nces_pct_poverty_all_ages", + "short_name": "Poverty rate, all ages", + "long_name": "Percent of people of all ages with income below the poverty level", + "category": "demographic", + "short_description": "Percent of people of all ages living below the federal poverty level.", + "long_description": "The 'below poverty level' total of ACS table B17001 as a percent of the table total, the population for whom poverty status is determined.", + "statement": "{value} of people in {location} lived below the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 14.216249, + "sd": 5.157688, + "min": 7.156, + "max": 45.525 + }, + { + "name": "nces_pct_poverty_all_ages_moe", + "duplicates": 467, + "info": { + "id": "nces_pct_poverty_all_ages_moe", + "short_name": "Poverty rate, all ages (margin of error)", + "long_name": "Percent of people of all ages with income below the poverty level (margin of error)", + "category": "demographic", + "short_description": "Percent of people of all ages living below the federal poverty level.", + "long_description": "The 'below poverty level' total of ACS table B17001 as a percent of the table total, the population for whom poverty status is determined. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of people in {location} lived below the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 0.247887, + "sd": 0.10652, + "min": 0.08, + "max": 0.695 + }, + { + "name": "nces_pct_deep_poverty_under18", + "duplicates": 32, + "info": { + "id": "nces_pct_deep_poverty_under18", + "short_name": "Children under 50% FPL", + "long_name": "Percent of children under 18 with income below 50 percent of the poverty level", + "category": "demographic", + "short_description": "Percent of children under 18 living below half the federal poverty level.", + "long_description": "The 'Under .50' income-to-poverty band for the under 6, 6 to 11 and 12 to 17 age groups of ACS table B17024, as a percent of those age groups. B17024 bands ages differently from B17001, so this rate and the child poverty rate rest on slightly different universes.", + "statement": "{value} of children in {location} lived below half the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 8.875185, + "sd": 4.548336, + "min": 3.679, + "max": 37.158 + }, + { + "name": "nces_pct_deep_poverty_under18_moe", + "duplicates": 412, + "info": { + "id": "nces_pct_deep_poverty_under18_moe", + "short_name": "Children under 50% FPL (margin of error)", + "long_name": "Percent of children under 18 with income below 50 percent of the poverty level (margin of error)", + "category": "demographic", + "short_description": "Percent of children under 18 living below half the federal poverty level.", + "long_description": "The 'Under .50' income-to-poverty band for the under 6, 6 to 11 and 12 to 17 age groups of ACS table B17024, as a percent of those age groups. B17024 bands ages differently from B17001, so this rate and the child poverty rate rest on slightly different universes. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children in {location} lived below half the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 0.321713, + "sd": 0.178518, + "min": 0.056, + "max": 1.257 + }, + { + "name": "nces_pct_under185_fpl_under18", + "duplicates": 11, + "info": { + "id": "nces_pct_under185_fpl_under18", + "short_name": "Children under 185% FPL", + "long_name": "Percent of children under 18 with income below 185 percent of the poverty level", + "category": "demographic", + "short_description": "Percent of children under 18 in households below 185 percent of the federal poverty level.", + "long_description": "Income-to-poverty bands from 'Under .50' through '1.75 to 1.84' for the under 6, 6 to 11 and 12 to 17 age groups of ACS table B17024, as a percent of those age groups. 185 percent is the income ceiling for reduced-price school meals, so this approximates the share of children income-eligible for them; the published bands stop at 1.84 rather than 1.85.", + "statement": "{value} of children in {location} lived below 185 percent of the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 37.499581, + "sd": 9.107144, + "min": 18.374, + "max": 78.656 + }, + { + "name": "nces_pct_under185_fpl_under18_moe", + "duplicates": 272, + "info": { + "id": "nces_pct_under185_fpl_under18_moe", + "short_name": "Children under 185% FPL (margin of error)", + "long_name": "Percent of children under 18 with income below 185 percent of the poverty level (margin of error)", + "category": "demographic", + "short_description": "Percent of children under 18 in households below 185 percent of the federal poverty level.", + "long_description": "Income-to-poverty bands from 'Under .50' through '1.75 to 1.84' for the under 6, 6 to 11 and 12 to 17 age groups of ACS table B17024, as a percent of those age groups. 185 percent is the income ceiling for reduced-price school meals, so this approximates the share of children income-eligible for them; the published bands stop at 1.84 rather than 1.85. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children in {location} lived below 185 percent of the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 0.656257, + "sd": 0.341, + "min": 0.097, + "max": 2.105 + }, + { + "name": "nces_median_household_income", + "duplicates": 9, + "info": { + "id": "nces_median_household_income", + "short_name": "Median household income", + "long_name": "Median household income in the past 12 months", + "category": "demographic", + "short_description": "Median household income over the past 12 months, in dollars of the vintage's final year.", + "long_description": "ACS table B19013. Dollars are inflation-adjusted to the last year of each five-year period, so values are not directly comparable across vintages without deflating to a common year. Districts where the median falls outside the published income brackets are left missing.", + "statement": "The median household income in {location} was {value}.", + "measure_type": "Median", + "unit": "Dollars", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "integer", + "missing": 0, + "mean": 59011.192453, + "sd": 13839.362599, + "min": 18627, + "max": 106287 + }, + { + "name": "nces_median_household_income_moe", + "duplicates": 346, + "info": { + "id": "nces_median_household_income_moe", + "short_name": "Median household income (margin of error)", + "long_name": "Median household income in the past 12 months (margin of error)", + "category": "demographic", + "short_description": "Median household income over the past 12 months, in dollars of the vintage's final year.", + "long_description": "ACS table B19013. Dollars are inflation-adjusted to the last year of each five-year period, so values are not directly comparable across vintages without deflating to a common year. Districts where the median falls outside the published income brackets are left missing. This column is the 90 percent margin of error published with the median.", + "statement": "The median household income in {location} was {value}.", + "measure_type": "Median", + "unit": "Dollars", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error published with the median." + }, + "time_range": [1, 14], + "type": "integer", + "missing": 53, + "mean": 414.677898, + "sd": 253.433331, + "min": 85, + "max": 1803 + }, + { + "name": "nces_median_household_income_bound", + "duplicates": 794, + "info": { + "id": "nces_median_household_income_bound", + "short_name": "Median income bracket flag", + "long_name": "Whether the median household income fell outside the published brackets", + "category": "demographic", + "short_description": "Says whether the median household income is a usable number, or known only to be above or below the published range.", + "long_description": "\"within\" where nces_median_household_income holds a usable value; \"top\" where ACS reported the median as \"$250,000+\"; \"bottom\" where it reported \"$2,500-\"; and empty where the median is missing for some other reason. For \"top\" and \"bottom\" the estimate itself is NA, because the true median is known only to lie beyond the bracket: at least $250,000, or at most $2,500. Use this column to tell a genuinely missing median apart from a very high or very low one, and to substitute the bracket bound if your analysis needs a number. Top-coded rows are rare but growing as incomes rise, from 2 districts in the 2006-2010 vintage to 37 in 2019-2023; bottom-coded rows never exceed 5.", + "statement": "The median household income in {location} was {value} the published range.", + "measure_type": "category", + "time_resolution": "Year", + "levels": { + "within": { + "name": "Within the published range" + }, + "top": { + "name": "At least $250,000" + }, + "bottom": { + "name": "At most $2,500" + } + }, + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "string", + "missing": 0, + "table": { + "within": 795 + } + }, + { + "name": "nces_pct_uninsured_children", + "duplicates": 182, + "info": { + "id": "nces_pct_uninsured_children", + "short_name": "Uninsured children", + "long_name": "Percent of children without health insurance coverage", + "category": "access", + "short_description": "Percent of children with no health insurance coverage.", + "long_description": "Children with no health insurance coverage as a percent of all children, both sexes, from ACS table B27001. The age range shifts with the table: it is under 18 through the 2012-2016 vintage and under 19 from 2013-2017 onward, because the second age band was relabelled from '6 to 17 years' to '6 to 18 years'. The universe is the civilian noninstitutionalized population.", + "statement": "{value} of children in {location} had no health insurance.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [3, 14], + "type": "float", + "missing": 159, + "mean": 5.562443, + "sd": 2.570105, + "min": 1.275, + "max": 17.414 + }, + { + "name": "nces_pct_uninsured_children_moe", + "duplicates": 475, + "info": { + "id": "nces_pct_uninsured_children_moe", + "short_name": "Uninsured children (margin of error)", + "long_name": "Percent of children without health insurance coverage (margin of error)", + "category": "access", + "short_description": "Percent of children with no health insurance coverage.", + "long_description": "Children with no health insurance coverage as a percent of all children, both sexes, from ACS table B27001. The age range shifts with the table: it is under 18 through the 2012-2016 vintage and under 19 from 2013-2017 onward, because the second age band was relabelled from '6 to 17 years' to '6 to 18 years'. The universe is the civilian noninstitutionalized population. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children in {location} had no health insurance.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [3, 14], + "type": "float", + "missing": 159, + "mean": 0.223643, + "sd": 0.124067, + "min": 0.03, + "max": 0.768 + }, + { + "name": "nces_pct_uninsured_all_ages", + "duplicates": 174, + "info": { + "id": "nces_pct_uninsured_all_ages", + "short_name": "Uninsured, all ages", + "long_name": "Percent of people of all ages without health insurance coverage", + "category": "access", + "short_description": "Percent of people of all ages with no health insurance coverage.", + "long_description": "All 'No health insurance coverage' cells of ACS table B27001 as a percent of the table total. The universe is the civilian noninstitutionalized population.", + "statement": "{value} of people in {location} had no health insurance.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [3, 14], + "type": "float", + "missing": 159, + "mean": 10.040214, + "sd": 4.03507, + "min": 2.649, + "max": 23.041 + }, + { + "name": "nces_pct_uninsured_all_ages_moe", + "duplicates": 578, + "info": { + "id": "nces_pct_uninsured_all_ages_moe", + "short_name": "Uninsured, all ages (margin of error)", + "long_name": "Percent of people of all ages without health insurance coverage (margin of error)", + "category": "access", + "short_description": "Percent of people of all ages with no health insurance coverage.", + "long_description": "All 'No health insurance coverage' cells of ACS table B27001 as a percent of the table total. The universe is the civilian noninstitutionalized population. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of people in {location} had no health insurance.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [3, 14], + "type": "float", + "missing": 159, + "mean": 0.132703, + "sd": 0.066913, + "min": 0.026, + "max": 0.378 + }, + { + "name": "nces_pct_disability_5_17", + "duplicates": 208, + "info": { + "id": "nces_pct_disability_5_17", + "short_name": "Disability, 5-17", + "long_name": "Percent of children 5 to 17 with a disability", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 reported to have a disability.", + "long_description": "Children aged 5 to 17 with a disability, both sexes, as a percent of all children aged 5 to 17, from ACS table B18101. Disability is self- or proxy-reported across six functional questions and does not correspond to special education eligibility. First published in the 2008-2012 vintage.", + "statement": "{value} of children aged 5 to 17 in {location} had a disability.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [3, 14], + "type": "float", + "missing": 159, + "mean": 5.802151, + "sd": 1.161588, + "min": 3.722, + "max": 11.315 + }, + { + "name": "nces_pct_disability_5_17_moe", + "duplicates": 451, + "info": { + "id": "nces_pct_disability_5_17_moe", + "short_name": "Disability, 5-17 (margin of error)", + "long_name": "Percent of children 5 to 17 with a disability (margin of error)", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 reported to have a disability.", + "long_description": "Children aged 5 to 17 with a disability, both sexes, as a percent of all children aged 5 to 17, from ACS table B18101. Disability is self- or proxy-reported across six functional questions and does not correspond to special education eligibility. First published in the 2008-2012 vintage. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children aged 5 to 17 in {location} had a disability.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [3, 14], + "type": "float", + "missing": 159, + "mean": 0.256102, + "sd": 0.148965, + "min": 0.02, + "max": 0.916 + }, + { + "name": "nces_pct_single_parent_families", + "duplicates": 21, + "info": { + "id": "nces_pct_single_parent_families", + "short_name": "Single-parent families", + "long_name": "Percent of families with children headed by one parent", + "category": "demographic", + "short_description": "Of families with their own children under 18, the percent with no spouse present.", + "long_description": "Male- and female-householder families with no spouse present and with own children under 18, as a percent of all families with own children under 18, from ACS table B11003. Families without children are excluded from the denominator.", + "statement": "{value} of families with children in {location} were headed by one parent.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 32.560238, + "sd": 5.444467, + "min": 18.567, + "max": 60.139 + }, + { + "name": "nces_pct_single_parent_families_moe", + "duplicates": 277, + "info": { + "id": "nces_pct_single_parent_families_moe", + "short_name": "Single-parent families (margin of error)", + "long_name": "Percent of families with children headed by one parent (margin of error)", + "category": "demographic", + "short_description": "Of families with their own children under 18, the percent with no spouse present.", + "long_description": "Male- and female-householder families with no spouse present and with own children under 18, as a percent of all families with own children under 18, from ACS table B11003. Families without children are excluded from the denominator. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of families with children in {location} were headed by one parent.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 0.588697, + "sd": 0.365749, + "min": 0.042, + "max": 2.232 + }, + { + "name": "nces_pct_unemployed", + "duplicates": 145, + "info": { + "id": "nces_pct_unemployed", + "short_name": "Unemployment rate", + "long_name": "Percent of the civilian labor force unemployed", + "category": "demographic", + "short_description": "Unemployed people as a percent of the civilian labor force aged 16 and over.", + "long_description": "ACS table B23025. The denominator is the civilian labor force, so people not in the labor force and the armed forces are excluded. First published in the 2007-2011 vintage.", + "statement": "The unemployment rate in {location} was {value}.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [2, 14], + "type": "float", + "missing": 106, + "mean": 6.752917, + "sd": 2.474907, + "min": 2.694, + "max": 18.399 + }, + { + "name": "nces_pct_unemployed_moe", + "duplicates": 540, + "info": { + "id": "nces_pct_unemployed_moe", + "short_name": "Unemployment rate (margin of error)", + "long_name": "Percent of the civilian labor force unemployed (margin of error)", + "category": "demographic", + "short_description": "Unemployed people as a percent of the civilian labor force aged 16 and over.", + "long_description": "ACS table B23025. The denominator is the civilian labor force, so people not in the labor force and the armed forces are excluded. First published in the 2007-2011 vintage. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "The unemployment rate in {location} was {value}.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [2, 14], + "type": "float", + "missing": 106, + "mean": 0.154464, + "sd": 0.076847, + "min": 0.016, + "max": 0.458 + }, + { + "name": "nces_pct_renter_occupied", + "duplicates": 20, + "info": { + "id": "nces_pct_renter_occupied", + "short_name": "Renter-occupied homes", + "long_name": "Percent of occupied housing units that are renter occupied", + "category": "demographic", + "short_description": "Percent of occupied housing units occupied by renters.", + "long_description": "ACS table B25003. Vacant units are excluded from the denominator.", + "statement": "{value} of occupied homes in {location} were rented.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 33.578971, + "sd": 5.405566, + "min": 25.145, + "max": 59.257 + }, + { + "name": "nces_pct_renter_occupied_moe", + "duplicates": 409, + "info": { + "id": "nces_pct_renter_occupied_moe", + "short_name": "Renter-occupied homes (margin of error)", + "long_name": "Percent of occupied housing units that are renter occupied (margin of error)", + "category": "demographic", + "short_description": "Percent of occupied housing units occupied by renters.", + "long_description": "ACS table B25003. Vacant units are excluded from the denominator. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of occupied homes in {location} were rented.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 0.294298, + "sd": 0.146449, + "min": 0.037, + "max": 0.837 + }, + { + "name": "nces_pct_foreign_born", + "duplicates": 29, + "info": { + "id": "nces_pct_foreign_born", + "short_name": "Foreign born", + "long_name": "Percent of the population that is foreign born", + "category": "demographic", + "short_description": "Percent of people born outside the United States to non-U.S. citizen parents.", + "long_description": "The 'Foreign born' branch of ACS table B05002 as a percent of the total population. Includes naturalized citizens and non-citizens, and excludes people born abroad to American parents and those born in Puerto Rico or the U.S. Island Areas.", + "statement": "{value} of people in {location} were foreign born.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [0, 14], + "type": "float", + "missing": 0, + "mean": 9.06213, + "sd": 6.007538, + "min": 1.292, + "max": 27.192 + }, + { + "name": "nces_pct_foreign_born_moe", + "duplicates": 568, + "info": { + "id": "nces_pct_foreign_born_moe", + "short_name": "Foreign born (margin of error)", + "long_name": "Percent of the population that is foreign born (margin of error)", + "category": "demographic", + "short_description": "Percent of people born outside the United States to non-U.S. citizen parents.", + "long_description": "The 'Foreign born' branch of ACS table B05002 as a percent of the total population. Includes naturalized citizens and non-citizens, and excludes people born abroad to American parents and those born in Puerto Rico or the U.S. Island Areas. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of people in {location} were foreign born.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [1, 14], + "type": "float", + "missing": 53, + "mean": 0.123069, + "sd": 0.069478, + "min": 0.031, + "max": 0.436 + }, + { + "name": "nces_pct_no_internet", + "duplicates": 424, + "info": { + "id": "nces_pct_no_internet", + "short_name": "No internet subscription", + "long_name": "Percent of households without an internet subscription", + "category": "access", + "short_description": "Percent of households with no internet subscription of any kind.", + "long_description": "Households with internet access but no subscription, plus households with no internet access, as a percent of all households, from ACS table B28002. First published in the 2013-2017 vintage.", + "statement": "{value} of households in {location} had no internet subscription.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [8, 14], + "type": "float", + "missing": 424, + "mean": 16.085208, + "sd": 5.797731, + "min": 6.894, + "max": 46.188 + }, + { + "name": "nces_pct_no_internet_moe", + "duplicates": 551, + "info": { + "id": "nces_pct_no_internet_moe", + "short_name": "No internet subscription (margin of error)", + "long_name": "Percent of households without an internet subscription (margin of error)", + "category": "access", + "short_description": "Percent of households with no internet subscription of any kind.", + "long_description": "Households with internet access but no subscription, plus households with no internet access, as a percent of all households, from ACS table B28002. First published in the 2013-2017 vintage. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of households in {location} had no internet subscription.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [8, 14], + "type": "float", + "missing": 424, + "mean": 0.252782, + "sd": 0.124192, + "min": 0.05, + "max": 0.599 + }, + { + "name": "nces_pct_broadband", + "duplicates": 424, + "info": { + "id": "nces_pct_broadband", + "short_name": "Broadband", + "long_name": "Percent of households with a broadband subscription", + "category": "access", + "short_description": "Percent of households with a broadband internet subscription of any type.", + "long_description": "The 'Broadband of any type' cell of ACS table B28002 as a percent of all households. Cellular data plans count as broadband here. First published in the 2013-2017 vintage.", + "statement": "{value} of households in {location} had a broadband subscription.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time_range": [8, 14], + "type": "float", + "missing": 424, + "mean": 83.532889, + "sd": 5.950668, + "min": 52.836, + "max": 92.96 + }, + { + "name": "nces_pct_broadband_moe", + "duplicates": 560, + "info": { + "id": "nces_pct_broadband_moe", + "short_name": "Broadband (margin of error)", + "long_name": "Percent of households with a broadband subscription (margin of error)", + "category": "access", + "short_description": "Percent of households with a broadband internet subscription of any type.", + "long_description": "The 'Broadband of any type' cell of ACS table B28002 as a percent of all households. Cellular data plans count as broadband here. First published in the 2013-2017 vintage. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of households in {location} had a broadband subscription.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "time_range": [8, 14], + "type": "float", + "missing": 424, + "mean": 0.313461, + "sd": 0.112426, + "min": 0.125, + "max": 0.657 + } + ] + }, + "sha512": "422451fb7de92b9b32ae504a65243c46ed20bfd11107f38db40859f587ad5e501e875802297bd8cbeba742e6bae5f4d566c1758716550c24f4dd8d13f3762d63" + } + ], + "measure_info": { + "geography": { + "id": "geography", + "name": "Location", + "short_name": "Location", + "long_name": "Location identifier", + "category": "identifier", + "short_description": "Identifies the state or school district a row describes.", + "long_description": "In data_state.csv.gz this is a FIPS code: \"00\" for national, otherwise a 2-digit state FIPS, including 11 for DC and 72 for Puerto Rico. In data_lea.csv.gz it is instead a 7-digit NCES LEAID identifying a school district, which is not a FIPS code; the containing state's FIPS is in the separate `state` column and is also the LEAID's first two digits. Together with `time` this is the primary key of each file.", + "measure_type": "id", + "unit": "FIPS code or NCES LEAID", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "geography_name": { + "id": "geography_name", + "name": "Location name", + "short_name": "Location name", + "long_name": "Location name", + "category": "identifier", + "short_description": "Name of the state or school district.", + "long_description": "Name as published by NCES, with the trailing state name and postal abbreviation stripped, so \"A-C Central Community Unit School District 262, Illinois, IL\" becomes \"A-C Central Community Unit School District 262\". Names are refreshed with each vintage and are not stable across vintages; join on `geography` rather than on the name.", + "measure_type": "id", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "state": { + "id": "state", + "name": "State", + "short_name": "State", + "long_name": "State FIPS code", + "category": "identifier", + "short_description": "FIPS code of the state containing the school district.", + "long_description": "2-digit state FIPS code, which is also the first two digits of the LEAID. Present in data_lea.csv.gz only, where it is the join key to state-level data, since `geography` there holds an LEAID rather than a FIPS code. Covers 52 values: the 50 states, DC and Puerto Rico.", + "measure_type": "id", + "unit": "FIPS code", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "lea_type": { + "id": "lea_type", + "name": "District type", + "short_name": "District type", + "long_name": "School district type", + "category": "identifier", + "short_description": "Whether the district is elementary, secondary or unified.", + "long_description": "The three types are separate geographic layers that overlap one another: in dual-district states an elementary and a secondary district cover the same ground. Rows must therefore not be summed across types, and data_state.csv.gz should be used for totals. Present in data_lea.csv.gz only. In the 2019-2023 vintage there are 10,878 unified, 1,957 elementary and 480 secondary districts.", + "measure_type": "id", + "levels": { + "Elementary": { + "name": "Elementary school district" + }, + "Secondary": { + "name": "Secondary school district" + }, + "Unified": { + "name": "Unified school district" + } + }, + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "time": { + "id": "time", + "name": "Time", + "short_name": "Time", + "long_name": "Period end date", + "category": "identifier", + "short_description": "Last day of the final year of the ACS five-year period.", + "long_description": "Written as YYYY-12-31, so the 2019-2023 estimates carry 2023-12-31. This follows the repository convention of dating annual data to the end of its year, but note that each value summarises five years of sample, not the one year named.", + "measure_type": "time", + "unit": "Date", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "period": { + "id": "period", + "name": "ACS period", + "short_name": "ACS period", + "long_name": "ACS five-year period", + "category": "identifier", + "short_description": "The five-year span the estimates cover, as ACS publishes it.", + "long_description": "For example \"2019-2023\". Kept alongside `time` because it is the label NCES and the Census Bureau use, and because it makes the five-year averaging explicit. Consecutive periods share four years of sample, so year-over-year differences are heavily autocorrelated and are not annual change. Fifteen periods are published, from 2005-2009 to 2019-2023.", + "measure_type": "id", + "unit": "Year range", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pop_total": { + "id": "nces_pop_total", + "short_name": "Total population", + "long_name": "Total population", + "category": "demographic", + "short_description": "Total population of the state or school district.", + "long_description": "Total population, from ACS table B01003.", + "statement": "{location} had a population of {value}.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pop_total_moe": { + "id": "nces_pop_total_moe", + "short_name": "Total population (margin of error)", + "long_name": "Total population (margin of error)", + "category": "demographic", + "short_description": "Total population of the state or school district.", + "long_description": "Total population, from ACS table B01003. This column is the 90 percent margin of error of the estimate, and is empty far more often than the other margins here. ACS publishes \"*****\" instead of a margin of error wherever a population total is controlled to an independent estimate rather than sampled, which makes its sampling error zero by construction. That is true of every national and state row, so the column is entirely empty in data_state.csv.gz, and of districts coextensive with a controlled geography, which is why the largest districts (New York City, Puerto Rico) are empty too. Elsewhere in data_lea.csv.gz it is populated for 175,676 of 202,075 rows: the median district margin is 344 people, or about 6 percent of the estimate. The 2005-2009 vintage publishes no margins of error at all.", + "statement": "{location} had a population of {value}.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate, and is empty far more often than the other margins here. ACS publishes \"*****\" instead of a margin of error wherever a population total is controlled to an independent estimate rather than sampled, which makes its sampling error zero by construction. That is true of every national and state row, so the column is entirely empty in data_state.csv.gz, and of districts coextensive with a controlled geography, which is why the largest districts (New York City, Puerto Rico) are empty too. Elsewhere in data_lea.csv.gz it is populated for 175,676 of 202,075 rows: the median district margin is 344 people, or about 6 percent of the estimate. The 2005-2009 vintage publishes no margins of error at all." + }, + "nces_pop_under18": { + "id": "nces_pop_under18", + "short_name": "Children under 18", + "long_name": "Population under 18 years", + "category": "demographic", + "short_description": "Number of people under 18 years old.", + "long_description": "Population under 18 years, from ACS table B09001. Includes children in households and in group quarters.", + "statement": "{location} was home to {value} children under 18.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pop_under18_moe": { + "id": "nces_pop_under18_moe", + "short_name": "Children under 18 (margin of error)", + "long_name": "Population under 18 years (margin of error)", + "category": "demographic", + "short_description": "Number of people under 18 years old.", + "long_description": "Population under 18 years, from ACS table B09001. Includes children in households and in group quarters. This column is the 90 percent margin of error of the estimate.", + "statement": "{location} was home to {value} children under 18.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_pop_age_0_4": { + "id": "nces_pop_age_0_4", + "short_name": "Children under 5", + "long_name": "Population under 5 years", + "category": "demographic", + "short_description": "Number of children under 5 years old, living in households.", + "long_description": "Sum of the 'Under 3 years' and '3 and 4 years' cells of ACS table B09001. B09001 breaks age down only within the 'In households' branch, so children in group quarters are excluded from this and the other B09001 age bands.", + "statement": "{location} was home to {value} children under 5.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pop_age_0_4_moe": { + "id": "nces_pop_age_0_4_moe", + "short_name": "Children under 5 (margin of error)", + "long_name": "Population under 5 years (margin of error)", + "category": "demographic", + "short_description": "Number of children under 5 years old, living in households.", + "long_description": "Sum of the 'Under 3 years' and '3 and 4 years' cells of ACS table B09001. B09001 breaks age down only within the 'In households' branch, so children in group quarters are excluded from this and the other B09001 age bands. This column is the 90 percent margin of error of the estimate.", + "statement": "{location} was home to {value} children under 5.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_pop_age_5_11": { + "id": "nces_pop_age_5_11", + "short_name": "Children 5 to 11", + "long_name": "Population 5 to 11 years", + "category": "demographic", + "short_description": "Number of children aged 5 to 11, living in households.", + "long_description": "Sum of the '5 years', '6 to 8 years' and '9 to 11 years' cells of ACS table B09001, which covers children in households only.", + "statement": "{location} was home to {value} children aged 5 to 11.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pop_age_5_11_moe": { + "id": "nces_pop_age_5_11_moe", + "short_name": "Children 5 to 11 (margin of error)", + "long_name": "Population 5 to 11 years (margin of error)", + "category": "demographic", + "short_description": "Number of children aged 5 to 11, living in households.", + "long_description": "Sum of the '5 years', '6 to 8 years' and '9 to 11 years' cells of ACS table B09001, which covers children in households only. This column is the 90 percent margin of error of the estimate.", + "statement": "{location} was home to {value} children aged 5 to 11.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_pop_age_12_17": { + "id": "nces_pop_age_12_17", + "short_name": "Children 12 to 17", + "long_name": "Population 12 to 17 years", + "category": "demographic", + "short_description": "Number of children aged 12 to 17, living in households.", + "long_description": "Sum of the '12 to 14 years' and '15 to 17 years' cells of ACS table B09001, which covers children in households only.", + "statement": "{location} was home to {value} children aged 12 to 17.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pop_age_12_17_moe": { + "id": "nces_pop_age_12_17_moe", + "short_name": "Children 12 to 17 (margin of error)", + "long_name": "Population 12 to 17 years (margin of error)", + "category": "demographic", + "short_description": "Number of children aged 12 to 17, living in households.", + "long_description": "Sum of the '12 to 14 years' and '15 to 17 years' cells of ACS table B09001, which covers children in households only. This column is the 90 percent margin of error of the estimate.", + "statement": "{location} was home to {value} children aged 12 to 17.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_pop_age_16_19": { + "id": "nces_pop_age_16_19", + "short_name": "Teens 16 to 19", + "long_name": "Population 16 to 19 years", + "category": "demographic", + "short_description": "Number of people aged 16 to 19.", + "long_description": "Total of ACS table B14005, the universe for the high school completion measures.", + "statement": "{location} was home to {value} people aged 16 to 19.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pop_age_16_19_moe": { + "id": "nces_pop_age_16_19_moe", + "short_name": "Teens 16 to 19 (margin of error)", + "long_name": "Population 16 to 19 years (margin of error)", + "category": "demographic", + "short_description": "Number of people aged 16 to 19.", + "long_description": "Total of ACS table B14005, the universe for the high school completion measures. This column is the 90 percent margin of error of the estimate.", + "statement": "{location} was home to {value} people aged 16 to 19.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_enrolled_preschool": { + "id": "nces_enrolled_preschool", + "short_name": "Enrolled in preschool", + "long_name": "Enrolled in nursery school or preschool", + "category": "demographic", + "short_description": "Number of people enrolled in nursery school or preschool.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over.", + "statement": "{value} people in {location} were enrolled in preschool.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_enrolled_preschool_moe": { + "id": "nces_enrolled_preschool_moe", + "short_name": "Enrolled in preschool (margin of error)", + "long_name": "Enrolled in nursery school or preschool (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in nursery school or preschool.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in preschool.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_enrolled_kindergarten": { + "id": "nces_enrolled_kindergarten", + "short_name": "Enrolled in kindergarten", + "long_name": "Enrolled in kindergarten", + "category": "demographic", + "short_description": "Number of people enrolled in kindergarten.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over.", + "statement": "{value} people in {location} were enrolled in kindergarten.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_enrolled_kindergarten_moe": { + "id": "nces_enrolled_kindergarten_moe", + "short_name": "Enrolled in kindergarten (margin of error)", + "long_name": "Enrolled in kindergarten (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in kindergarten.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in kindergarten.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_enrolled_grade_1_4": { + "id": "nces_enrolled_grade_1_4", + "short_name": "Enrolled in grades 1-4", + "long_name": "Enrolled in grade 1 to grade 4", + "category": "demographic", + "short_description": "Number of people enrolled in grades 1 through 4.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over.", + "statement": "{value} people in {location} were enrolled in grades 1 to 4.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_enrolled_grade_1_4_moe": { + "id": "nces_enrolled_grade_1_4_moe", + "short_name": "Enrolled in grades 1-4 (margin of error)", + "long_name": "Enrolled in grade 1 to grade 4 (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in grades 1 through 4.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in grades 1 to 4.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_enrolled_grade_5_8": { + "id": "nces_enrolled_grade_5_8", + "short_name": "Enrolled in grades 5-8", + "long_name": "Enrolled in grade 5 to grade 8", + "category": "demographic", + "short_description": "Number of people enrolled in grades 5 through 8.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over.", + "statement": "{value} people in {location} were enrolled in grades 5 to 8.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_enrolled_grade_5_8_moe": { + "id": "nces_enrolled_grade_5_8_moe", + "short_name": "Enrolled in grades 5-8 (margin of error)", + "long_name": "Enrolled in grade 5 to grade 8 (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in grades 5 through 8.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in grades 5 to 8.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_enrolled_grade_9_12": { + "id": "nces_enrolled_grade_9_12", + "short_name": "Enrolled in grades 9-12", + "long_name": "Enrolled in grade 9 to grade 12", + "category": "demographic", + "short_description": "Number of people enrolled in grades 9 through 12.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This is the high school enrollment count that the completion and dropout measures should be read alongside.", + "statement": "{value} people in {location} were enrolled in grades 9 to 12.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_enrolled_grade_9_12_moe": { + "id": "nces_enrolled_grade_9_12_moe", + "short_name": "Enrolled in grades 9-12 (margin of error)", + "long_name": "Enrolled in grade 9 to grade 12 (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in grades 9 through 12.", + "long_description": "From ACS table B14001, school enrollment by level of school for the population 3 years and over. This is the high school enrollment count that the completion and dropout measures should be read alongside. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in grades 9 to 12.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_enrolled_k12": { + "id": "nces_enrolled_k12", + "short_name": "Enrolled in K-12", + "long_name": "Enrolled in kindergarten through grade 12", + "category": "demographic", + "short_description": "Number of people enrolled in kindergarten through grade 12.", + "long_description": "Sum of the kindergarten, grade 1-4, grade 5-8 and grade 9-12 cells of ACS table B14001. Preschool and nursery school are excluded.", + "statement": "{value} people in {location} were enrolled in kindergarten through grade 12.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_enrolled_k12_moe": { + "id": "nces_enrolled_k12_moe", + "short_name": "Enrolled in K-12 (margin of error)", + "long_name": "Enrolled in kindergarten through grade 12 (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in kindergarten through grade 12.", + "long_description": "Sum of the kindergarten, grade 1-4, grade 5-8 and grade 9-12 cells of ACS table B14001. Preschool and nursery school are excluded. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in kindergarten through grade 12.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_enrolled_college": { + "id": "nces_enrolled_college", + "short_name": "Enrolled in college", + "long_name": "Enrolled in college, undergraduate or graduate", + "category": "demographic", + "short_description": "Number of people enrolled in undergraduate, graduate or professional school.", + "long_description": "Sum of the 'Enrolled in college, undergraduate years' and 'Graduate or professional school' cells of ACS table B14001.", + "statement": "{value} people in {location} were enrolled in college.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_enrolled_college_moe": { + "id": "nces_enrolled_college_moe", + "short_name": "Enrolled in college (margin of error)", + "long_name": "Enrolled in college, undergraduate or graduate (margin of error)", + "category": "demographic", + "short_description": "Number of people enrolled in undergraduate, graduate or professional school.", + "long_description": "Sum of the 'Enrolled in college, undergraduate years' and 'Graduate or professional school' cells of ACS table B14001. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people in {location} were enrolled in college.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_enrolled_public_5_17": { + "id": "nces_enrolled_public_5_17", + "short_name": "In public school, 5-17", + "long_name": "Children 5 to 17 enrolled in public school", + "category": "demographic", + "short_description": "Number of children aged 5 to 17 enrolled in public school.", + "long_description": "Both sexes and the 5-9, 10-14 and 15-17 age bands of the 'Enrolled in public school' branch of ACS table B14003.", + "statement": "{value} children aged 5 to 17 in {location} attended public school.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_enrolled_public_5_17_moe": { + "id": "nces_enrolled_public_5_17_moe", + "short_name": "In public school, 5-17 (margin of error)", + "long_name": "Children 5 to 17 enrolled in public school (margin of error)", + "category": "demographic", + "short_description": "Number of children aged 5 to 17 enrolled in public school.", + "long_description": "Both sexes and the 5-9, 10-14 and 15-17 age bands of the 'Enrolled in public school' branch of ACS table B14003. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} children aged 5 to 17 in {location} attended public school.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_enrolled_private_5_17": { + "id": "nces_enrolled_private_5_17", + "short_name": "In private school, 5-17", + "long_name": "Children 5 to 17 enrolled in private school", + "category": "demographic", + "short_description": "Number of children aged 5 to 17 enrolled in private school.", + "long_description": "Both sexes and the 5-9, 10-14 and 15-17 age bands of the 'Enrolled in private school' branch of ACS table B14003.", + "statement": "{value} children aged 5 to 17 in {location} attended private school.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_enrolled_private_5_17_moe": { + "id": "nces_enrolled_private_5_17_moe", + "short_name": "In private school, 5-17 (margin of error)", + "long_name": "Children 5 to 17 enrolled in private school (margin of error)", + "category": "demographic", + "short_description": "Number of children aged 5 to 17 enrolled in private school.", + "long_description": "Both sexes and the 5-9, 10-14 and 15-17 age bands of the 'Enrolled in private school' branch of ACS table B14003. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} children aged 5 to 17 in {location} attended private school.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_pct_enrolled_private_5_17": { + "id": "nces_pct_enrolled_private_5_17", + "short_name": "Private school share, 5-17", + "long_name": "Percent of enrolled children 5 to 17 attending private school", + "category": "demographic", + "short_description": "Of children aged 5 to 17 who are in school, the percent in private school.", + "long_description": "Private school enrollment as a percent of public plus private enrollment for children aged 5 to 17, from ACS table B14003. Children not enrolled in school are excluded from the denominator.", + "statement": "{value} of enrolled children aged 5 to 17 in {location} attended private school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_enrolled_private_5_17_moe": { + "id": "nces_pct_enrolled_private_5_17_moe", + "short_name": "Private school share, 5-17 (margin of error)", + "long_name": "Percent of enrolled children 5 to 17 attending private school (margin of error)", + "category": "demographic", + "short_description": "Of children aged 5 to 17 who are in school, the percent in private school.", + "long_description": "Private school enrollment as a percent of public plus private enrollment for children aged 5 to 17, from ACS table B14003. Children not enrolled in school are excluded from the denominator. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of enrolled children aged 5 to 17 in {location} attended private school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_not_enrolled_5_17": { + "id": "nces_pct_not_enrolled_5_17", + "short_name": "Not in school, 5-17", + "long_name": "Percent of children 5 to 17 not enrolled in school", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who are not enrolled in school.", + "long_description": "Children aged 5 to 17 not enrolled in school as a percent of all children aged 5 to 17, from ACS table B14003.", + "statement": "{value} of children aged 5 to 17 in {location} were not enrolled in school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_not_enrolled_5_17_moe": { + "id": "nces_pct_not_enrolled_5_17_moe", + "short_name": "Not in school, 5-17 (margin of error)", + "long_name": "Percent of children 5 to 17 not enrolled in school (margin of error)", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who are not enrolled in school.", + "long_description": "Children aged 5 to 17 not enrolled in school as a percent of all children aged 5 to 17, from ACS table B14003. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children aged 5 to 17 in {location} were not enrolled in school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_not_enrolled_hs_grad_16_19": { + "id": "nces_not_enrolled_hs_grad_16_19", + "short_name": "Left school with diploma, 16-19", + "long_name": "Teens 16 to 19 not enrolled who hold a high school credential", + "category": "demographic", + "short_description": "Number of 16 to 19 year olds who have left school holding a diploma or equivalency.", + "long_description": "Both sexes of the 'Not enrolled in school: High school graduate (includes equivalency)' cells of ACS table B14005. GED and other equivalency credentials count as graduating here, which is not true of the cohort graduation rates NCES publishes from EDFacts.", + "statement": "{value} people aged 16 to 19 in {location} had left school with a high school credential.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_not_enrolled_hs_grad_16_19_moe": { + "id": "nces_not_enrolled_hs_grad_16_19_moe", + "short_name": "Left school with diploma, 16-19 (margin of error)", + "long_name": "Teens 16 to 19 not enrolled who hold a high school credential (margin of error)", + "category": "demographic", + "short_description": "Number of 16 to 19 year olds who have left school holding a diploma or equivalency.", + "long_description": "Both sexes of the 'Not enrolled in school: High school graduate (includes equivalency)' cells of ACS table B14005. GED and other equivalency credentials count as graduating here, which is not true of the cohort graduation rates NCES publishes from EDFacts. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people aged 16 to 19 in {location} had left school with a high school credential.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_not_enrolled_no_hs_16_19": { + "id": "nces_not_enrolled_no_hs_16_19", + "short_name": "Left school without diploma, 16-19", + "long_name": "Teens 16 to 19 not enrolled and not a high school graduate", + "category": "demographic", + "short_description": "Number of 16 to 19 year olds who have left school without a diploma or equivalency.", + "long_description": "Both sexes of the 'Not enrolled in school: Not high school graduate' cells of ACS table B14005.", + "statement": "{value} people aged 16 to 19 in {location} had left school without a high school credential.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_not_enrolled_no_hs_16_19_moe": { + "id": "nces_not_enrolled_no_hs_16_19_moe", + "short_name": "Left school without diploma, 16-19 (margin of error)", + "long_name": "Teens 16 to 19 not enrolled and not a high school graduate (margin of error)", + "category": "demographic", + "short_description": "Number of 16 to 19 year olds who have left school without a diploma or equivalency.", + "long_description": "Both sexes of the 'Not enrolled in school: Not high school graduate' cells of ACS table B14005. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} people aged 16 to 19 in {location} had left school without a high school credential.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_pct_hs_grad_16_19": { + "id": "nces_pct_hs_grad_16_19", + "short_name": "High school completion, 16-19", + "long_name": "Percent of 16 to 19 year olds who have left school holding a high school credential", + "category": "demographic", + "short_description": "Of 16 to 19 year olds who have left school, the percent holding a diploma or equivalency.", + "long_description": "High school graduates as a percent of all 16 to 19 year olds no longer enrolled in school, from ACS table B14005. This is a survey-based completion measure, not the Adjusted Cohort Graduation Rate: it counts equivalency credentials as completion, it is a five-year average over a four-year age range rather than a single cohort followed to graduation, and it is tabulated by where a teenager lives rather than by the school they attended. For the cohort rate, see the NCES EDFacts and Common Core of Data collections.", + "statement": "{value} of 16 to 19 year olds in {location} who had left school held a high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_hs_grad_16_19_moe": { + "id": "nces_pct_hs_grad_16_19_moe", + "short_name": "High school completion, 16-19 (margin of error)", + "long_name": "Percent of 16 to 19 year olds who have left school holding a high school credential (margin of error)", + "category": "demographic", + "short_description": "Of 16 to 19 year olds who have left school, the percent holding a diploma or equivalency.", + "long_description": "High school graduates as a percent of all 16 to 19 year olds no longer enrolled in school, from ACS table B14005. This is a survey-based completion measure, not the Adjusted Cohort Graduation Rate: it counts equivalency credentials as completion, it is a five-year average over a four-year age range rather than a single cohort followed to graduation, and it is tabulated by where a teenager lives rather than by the school they attended. For the cohort rate, see the NCES EDFacts and Common Core of Data collections. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of 16 to 19 year olds in {location} who had left school held a high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_dropout_16_19": { + "id": "nces_pct_dropout_16_19", + "short_name": "Status dropout rate, 16-19", + "long_name": "Percent of 16 to 19 year olds not enrolled and not a high school graduate", + "category": "demographic", + "short_description": "Percent of all 16 to 19 year olds who are neither enrolled in school nor holding a high school credential.", + "long_description": "Teens who have left school without a credential as a percent of all 16 to 19 year olds, from ACS table B14005. This follows the status dropout rate that NCES reports from the ACS, except that the published national series uses ages 16 to 24; here the denominator is the 16 to 19 universe the school district tables provide.", + "statement": "{value} of 16 to 19 year olds in {location} were neither in school nor high school graduates.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_dropout_16_19_moe": { + "id": "nces_pct_dropout_16_19_moe", + "short_name": "Status dropout rate, 16-19 (margin of error)", + "long_name": "Percent of 16 to 19 year olds not enrolled and not a high school graduate (margin of error)", + "category": "demographic", + "short_description": "Percent of all 16 to 19 year olds who are neither enrolled in school nor holding a high school credential.", + "long_description": "Teens who have left school without a credential as a percent of all 16 to 19 year olds, from ACS table B14005. This follows the status dropout rate that NCES reports from the ACS, except that the published national series uses ages 16 to 24; here the denominator is the 16 to 19 universe the school district tables provide. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of 16 to 19 year olds in {location} were neither in school nor high school graduates.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_enrolled_16_19": { + "id": "nces_pct_enrolled_16_19", + "short_name": "Still in school, 16-19", + "long_name": "Percent of 16 to 19 year olds enrolled in school", + "category": "demographic", + "short_description": "Percent of 16 to 19 year olds still enrolled in school.", + "long_description": "Both sexes of the 'Enrolled in school' cells of ACS table B14005 as a percent of all 16 to 19 year olds. Enrollment here includes college.", + "statement": "{value} of 16 to 19 year olds in {location} were still enrolled in school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_enrolled_16_19_moe": { + "id": "nces_pct_enrolled_16_19_moe", + "short_name": "Still in school, 16-19 (margin of error)", + "long_name": "Percent of 16 to 19 year olds enrolled in school (margin of error)", + "category": "demographic", + "short_description": "Percent of 16 to 19 year olds still enrolled in school.", + "long_description": "Both sexes of the 'Enrolled in school' cells of ACS table B14005 as a percent of all 16 to 19 year olds. Enrollment here includes college. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of 16 to 19 year olds in {location} were still enrolled in school.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_hs_or_higher_25plus": { + "id": "nces_pct_hs_or_higher_25plus", + "short_name": "Adults with a diploma", + "long_name": "Percent of adults 25 and over with at least a high school credential", + "category": "demographic", + "short_description": "Percent of adults 25 and over who hold at least a high school diploma or equivalency.", + "long_description": "Everyone at or above the diploma level, both sexes, as a percent of the population 25 years and over, from ACS table B15002.", + "statement": "{value} of adults in {location} held at least a high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_hs_or_higher_25plus_moe": { + "id": "nces_pct_hs_or_higher_25plus_moe", + "short_name": "Adults with a diploma (margin of error)", + "long_name": "Percent of adults 25 and over with at least a high school credential (margin of error)", + "category": "demographic", + "short_description": "Percent of adults 25 and over who hold at least a high school diploma or equivalency.", + "long_description": "Everyone at or above the diploma level, both sexes, as a percent of the population 25 years and over, from ACS table B15002. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of adults in {location} held at least a high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_no_hs_25plus": { + "id": "nces_pct_no_hs_25plus", + "short_name": "Adults without a diploma", + "long_name": "Percent of adults 25 and over with no high school credential", + "category": "demographic", + "short_description": "Percent of adults 25 and over who never completed high school.", + "long_description": "Everyone below the diploma level, from no schooling through 12th grade with no diploma, both sexes, as a percent of the population 25 years and over, from ACS table B15002.", + "statement": "{value} of adults in {location} had no high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_no_hs_25plus_moe": { + "id": "nces_pct_no_hs_25plus_moe", + "short_name": "Adults without a diploma (margin of error)", + "long_name": "Percent of adults 25 and over with no high school credential (margin of error)", + "category": "demographic", + "short_description": "Percent of adults 25 and over who never completed high school.", + "long_description": "Everyone below the diploma level, from no schooling through 12th grade with no diploma, both sexes, as a percent of the population 25 years and over, from ACS table B15002. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of adults in {location} had no high school credential.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_ba_or_higher_25plus": { + "id": "nces_pct_ba_or_higher_25plus", + "short_name": "Adults with a bachelor's", + "long_name": "Percent of adults 25 and over with a bachelor's degree or higher", + "category": "demographic", + "short_description": "Percent of adults 25 and over holding at least a bachelor's degree.", + "long_description": "Bachelor's, master's, professional school and doctorate degrees, both sexes, as a percent of the population 25 years and over, from ACS table B15002.", + "statement": "{value} of adults in {location} held a bachelor's degree or higher.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_ba_or_higher_25plus_moe": { + "id": "nces_pct_ba_or_higher_25plus_moe", + "short_name": "Adults with a bachelor's (margin of error)", + "long_name": "Percent of adults 25 and over with a bachelor's degree or higher (margin of error)", + "category": "demographic", + "short_description": "Percent of adults 25 and over holding at least a bachelor's degree.", + "long_description": "Bachelor's, master's, professional school and doctorate degrees, both sexes, as a percent of the population 25 years and over, from ACS table B15002. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of adults in {location} held a bachelor's degree or higher.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_non_english_home_5_17": { + "id": "nces_pct_non_english_home_5_17", + "short_name": "Non-English at home, 5-17", + "long_name": "Percent of children 5 to 17 speaking a language other than English at home", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who speak a language other than English at home.", + "long_description": "The Spanish, other Indo-European, Asian and Pacific Island, and other language groups as a percent of all children aged 5 to 17, from ACS table B16004. Says nothing about English proficiency on its own.", + "statement": "{value} of children aged 5 to 17 in {location} spoke a language other than English at home.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_non_english_home_5_17_moe": { + "id": "nces_pct_non_english_home_5_17_moe", + "short_name": "Non-English at home, 5-17 (margin of error)", + "long_name": "Percent of children 5 to 17 speaking a language other than English at home (margin of error)", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who speak a language other than English at home.", + "long_description": "The Spanish, other Indo-European, Asian and Pacific Island, and other language groups as a percent of all children aged 5 to 17, from ACS table B16004. Says nothing about English proficiency on its own. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children aged 5 to 17 in {location} spoke a language other than English at home.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_limited_english_5_17": { + "id": "nces_pct_limited_english_5_17", + "short_name": "Limited English, 5-17", + "long_name": "Percent of children 5 to 17 speaking English less than very well", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who speak English less than very well.", + "long_description": "Children who speak English 'well', 'not well' or 'not at all', across all language groups, as a percent of all children aged 5 to 17, from ACS table B16004. This is the Census Bureau's limited-English-proficiency convention: 'very well' is excluded, so the measure is a household-survey analogue of an English learner count rather than a school program count.", + "statement": "{value} of children aged 5 to 17 in {location} spoke English less than very well.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_limited_english_5_17_moe": { + "id": "nces_pct_limited_english_5_17_moe", + "short_name": "Limited English, 5-17 (margin of error)", + "long_name": "Percent of children 5 to 17 speaking English less than very well (margin of error)", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 who speak English less than very well.", + "long_description": "Children who speak English 'well', 'not well' or 'not at all', across all language groups, as a percent of all children aged 5 to 17, from ACS table B16004. This is the Census Bureau's limited-English-proficiency convention: 'very well' is excluded, so the measure is a household-survey analogue of an English learner count rather than a school program count. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children aged 5 to 17 in {location} spoke English less than very well.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_poverty_under18": { + "id": "nces_poverty_under18", + "short_name": "Children in poverty", + "long_name": "Children under 18 with income below the poverty level", + "category": "demographic", + "short_description": "Number of children under 18 living below the federal poverty level.", + "long_description": "Both sexes and all age bands under 18 of the 'below poverty level' branch of ACS table B17001. The universe is people for whom poverty status is determined, which excludes some people in group quarters.", + "statement": "{value} children in {location} lived below the poverty level.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_poverty_under18_moe": { + "id": "nces_poverty_under18_moe", + "short_name": "Children in poverty (margin of error)", + "long_name": "Children under 18 with income below the poverty level (margin of error)", + "category": "demographic", + "short_description": "Number of children under 18 living below the federal poverty level.", + "long_description": "Both sexes and all age bands under 18 of the 'below poverty level' branch of ACS table B17001. The universe is people for whom poverty status is determined, which excludes some people in group quarters. This column is the 90 percent margin of error of the estimate.", + "statement": "{value} children in {location} lived below the poverty level.", + "measure_type": "Count", + "unit": "People", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error of the estimate." + }, + "nces_pct_poverty_under18": { + "id": "nces_pct_poverty_under18", + "short_name": "Child poverty rate", + "long_name": "Percent of children under 18 with income below the poverty level", + "category": "demographic", + "short_description": "Percent of children under 18 living below the federal poverty level.", + "long_description": "Children under 18 below the poverty level as a percent of all children under 18 for whom poverty status is determined, from ACS table B17001.", + "statement": "{value} of children in {location} lived below the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_poverty_under18_moe": { + "id": "nces_pct_poverty_under18_moe", + "short_name": "Child poverty rate (margin of error)", + "long_name": "Percent of children under 18 with income below the poverty level (margin of error)", + "category": "demographic", + "short_description": "Percent of children under 18 living below the federal poverty level.", + "long_description": "Children under 18 below the poverty level as a percent of all children under 18 for whom poverty status is determined, from ACS table B17001. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children in {location} lived below the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_poverty_all_ages": { + "id": "nces_pct_poverty_all_ages", + "short_name": "Poverty rate, all ages", + "long_name": "Percent of people of all ages with income below the poverty level", + "category": "demographic", + "short_description": "Percent of people of all ages living below the federal poverty level.", + "long_description": "The 'below poverty level' total of ACS table B17001 as a percent of the table total, the population for whom poverty status is determined.", + "statement": "{value} of people in {location} lived below the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_poverty_all_ages_moe": { + "id": "nces_pct_poverty_all_ages_moe", + "short_name": "Poverty rate, all ages (margin of error)", + "long_name": "Percent of people of all ages with income below the poverty level (margin of error)", + "category": "demographic", + "short_description": "Percent of people of all ages living below the federal poverty level.", + "long_description": "The 'below poverty level' total of ACS table B17001 as a percent of the table total, the population for whom poverty status is determined. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of people in {location} lived below the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_deep_poverty_under18": { + "id": "nces_pct_deep_poverty_under18", + "short_name": "Children under 50% FPL", + "long_name": "Percent of children under 18 with income below 50 percent of the poverty level", + "category": "demographic", + "short_description": "Percent of children under 18 living below half the federal poverty level.", + "long_description": "The 'Under .50' income-to-poverty band for the under 6, 6 to 11 and 12 to 17 age groups of ACS table B17024, as a percent of those age groups. B17024 bands ages differently from B17001, so this rate and the child poverty rate rest on slightly different universes.", + "statement": "{value} of children in {location} lived below half the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_deep_poverty_under18_moe": { + "id": "nces_pct_deep_poverty_under18_moe", + "short_name": "Children under 50% FPL (margin of error)", + "long_name": "Percent of children under 18 with income below 50 percent of the poverty level (margin of error)", + "category": "demographic", + "short_description": "Percent of children under 18 living below half the federal poverty level.", + "long_description": "The 'Under .50' income-to-poverty band for the under 6, 6 to 11 and 12 to 17 age groups of ACS table B17024, as a percent of those age groups. B17024 bands ages differently from B17001, so this rate and the child poverty rate rest on slightly different universes. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children in {location} lived below half the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_under185_fpl_under18": { + "id": "nces_pct_under185_fpl_under18", + "short_name": "Children under 185% FPL", + "long_name": "Percent of children under 18 with income below 185 percent of the poverty level", + "category": "demographic", + "short_description": "Percent of children under 18 in households below 185 percent of the federal poverty level.", + "long_description": "Income-to-poverty bands from 'Under .50' through '1.75 to 1.84' for the under 6, 6 to 11 and 12 to 17 age groups of ACS table B17024, as a percent of those age groups. 185 percent is the income ceiling for reduced-price school meals, so this approximates the share of children income-eligible for them; the published bands stop at 1.84 rather than 1.85.", + "statement": "{value} of children in {location} lived below 185 percent of the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_under185_fpl_under18_moe": { + "id": "nces_pct_under185_fpl_under18_moe", + "short_name": "Children under 185% FPL (margin of error)", + "long_name": "Percent of children under 18 with income below 185 percent of the poverty level (margin of error)", + "category": "demographic", + "short_description": "Percent of children under 18 in households below 185 percent of the federal poverty level.", + "long_description": "Income-to-poverty bands from 'Under .50' through '1.75 to 1.84' for the under 6, 6 to 11 and 12 to 17 age groups of ACS table B17024, as a percent of those age groups. 185 percent is the income ceiling for reduced-price school meals, so this approximates the share of children income-eligible for them; the published bands stop at 1.84 rather than 1.85. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children in {location} lived below 185 percent of the poverty level.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_median_household_income": { + "id": "nces_median_household_income", + "short_name": "Median household income", + "long_name": "Median household income in the past 12 months", + "category": "demographic", + "short_description": "Median household income over the past 12 months, in dollars of the vintage's final year.", + "long_description": "ACS table B19013. Dollars are inflation-adjusted to the last year of each five-year period, so values are not directly comparable across vintages without deflating to a common year. Districts where the median falls outside the published income brackets are left missing.", + "statement": "The median household income in {location} was {value}.", + "measure_type": "Median", + "unit": "Dollars", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_median_household_income_moe": { + "id": "nces_median_household_income_moe", + "short_name": "Median household income (margin of error)", + "long_name": "Median household income in the past 12 months (margin of error)", + "category": "demographic", + "short_description": "Median household income over the past 12 months, in dollars of the vintage's final year.", + "long_description": "ACS table B19013. Dollars are inflation-adjusted to the last year of each five-year period, so values are not directly comparable across vintages without deflating to a common year. Districts where the median falls outside the published income brackets are left missing. This column is the 90 percent margin of error published with the median.", + "statement": "The median household income in {location} was {value}.", + "measure_type": "Median", + "unit": "Dollars", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error published with the median." + }, + "nces_median_household_income_bound": { + "id": "nces_median_household_income_bound", + "short_name": "Median income bracket flag", + "long_name": "Whether the median household income fell outside the published brackets", + "category": "demographic", + "short_description": "Says whether the median household income is a usable number, or known only to be above or below the published range.", + "long_description": "\"within\" where nces_median_household_income holds a usable value; \"top\" where ACS reported the median as \"$250,000+\"; \"bottom\" where it reported \"$2,500-\"; and empty where the median is missing for some other reason. For \"top\" and \"bottom\" the estimate itself is NA, because the true median is known only to lie beyond the bracket: at least $250,000, or at most $2,500. Use this column to tell a genuinely missing median apart from a very high or very low one, and to substitute the bracket bound if your analysis needs a number. Top-coded rows are rare but growing as incomes rise, from 2 districts in the 2006-2010 vintage to 37 in 2019-2023; bottom-coded rows never exceed 5.", + "statement": "The median household income in {location} was {value} the published range.", + "measure_type": "category", + "time_resolution": "Year", + "levels": { + "within": { + "name": "Within the published range" + }, + "top": { + "name": "At least $250,000" + }, + "bottom": { + "name": "At most $2,500" + } + }, + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_uninsured_children": { + "id": "nces_pct_uninsured_children", + "short_name": "Uninsured children", + "long_name": "Percent of children without health insurance coverage", + "category": "access", + "short_description": "Percent of children with no health insurance coverage.", + "long_description": "Children with no health insurance coverage as a percent of all children, both sexes, from ACS table B27001. The age range shifts with the table: it is under 18 through the 2012-2016 vintage and under 19 from 2013-2017 onward, because the second age band was relabelled from '6 to 17 years' to '6 to 18 years'. The universe is the civilian noninstitutionalized population.", + "statement": "{value} of children in {location} had no health insurance.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_uninsured_children_moe": { + "id": "nces_pct_uninsured_children_moe", + "short_name": "Uninsured children (margin of error)", + "long_name": "Percent of children without health insurance coverage (margin of error)", + "category": "access", + "short_description": "Percent of children with no health insurance coverage.", + "long_description": "Children with no health insurance coverage as a percent of all children, both sexes, from ACS table B27001. The age range shifts with the table: it is under 18 through the 2012-2016 vintage and under 19 from 2013-2017 onward, because the second age band was relabelled from '6 to 17 years' to '6 to 18 years'. The universe is the civilian noninstitutionalized population. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children in {location} had no health insurance.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_uninsured_all_ages": { + "id": "nces_pct_uninsured_all_ages", + "short_name": "Uninsured, all ages", + "long_name": "Percent of people of all ages without health insurance coverage", + "category": "access", + "short_description": "Percent of people of all ages with no health insurance coverage.", + "long_description": "All 'No health insurance coverage' cells of ACS table B27001 as a percent of the table total. The universe is the civilian noninstitutionalized population.", + "statement": "{value} of people in {location} had no health insurance.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_uninsured_all_ages_moe": { + "id": "nces_pct_uninsured_all_ages_moe", + "short_name": "Uninsured, all ages (margin of error)", + "long_name": "Percent of people of all ages without health insurance coverage (margin of error)", + "category": "access", + "short_description": "Percent of people of all ages with no health insurance coverage.", + "long_description": "All 'No health insurance coverage' cells of ACS table B27001 as a percent of the table total. The universe is the civilian noninstitutionalized population. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of people in {location} had no health insurance.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_disability_5_17": { + "id": "nces_pct_disability_5_17", + "short_name": "Disability, 5-17", + "long_name": "Percent of children 5 to 17 with a disability", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 reported to have a disability.", + "long_description": "Children aged 5 to 17 with a disability, both sexes, as a percent of all children aged 5 to 17, from ACS table B18101. Disability is self- or proxy-reported across six functional questions and does not correspond to special education eligibility. First published in the 2008-2012 vintage.", + "statement": "{value} of children aged 5 to 17 in {location} had a disability.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_disability_5_17_moe": { + "id": "nces_pct_disability_5_17_moe", + "short_name": "Disability, 5-17 (margin of error)", + "long_name": "Percent of children 5 to 17 with a disability (margin of error)", + "category": "demographic", + "short_description": "Percent of children aged 5 to 17 reported to have a disability.", + "long_description": "Children aged 5 to 17 with a disability, both sexes, as a percent of all children aged 5 to 17, from ACS table B18101. Disability is self- or proxy-reported across six functional questions and does not correspond to special education eligibility. First published in the 2008-2012 vintage. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of children aged 5 to 17 in {location} had a disability.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_single_parent_families": { + "id": "nces_pct_single_parent_families", + "short_name": "Single-parent families", + "long_name": "Percent of families with children headed by one parent", + "category": "demographic", + "short_description": "Of families with their own children under 18, the percent with no spouse present.", + "long_description": "Male- and female-householder families with no spouse present and with own children under 18, as a percent of all families with own children under 18, from ACS table B11003. Families without children are excluded from the denominator.", + "statement": "{value} of families with children in {location} were headed by one parent.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_single_parent_families_moe": { + "id": "nces_pct_single_parent_families_moe", + "short_name": "Single-parent families (margin of error)", + "long_name": "Percent of families with children headed by one parent (margin of error)", + "category": "demographic", + "short_description": "Of families with their own children under 18, the percent with no spouse present.", + "long_description": "Male- and female-householder families with no spouse present and with own children under 18, as a percent of all families with own children under 18, from ACS table B11003. Families without children are excluded from the denominator. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of families with children in {location} were headed by one parent.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_unemployed": { + "id": "nces_pct_unemployed", + "short_name": "Unemployment rate", + "long_name": "Percent of the civilian labor force unemployed", + "category": "demographic", + "short_description": "Unemployed people as a percent of the civilian labor force aged 16 and over.", + "long_description": "ACS table B23025. The denominator is the civilian labor force, so people not in the labor force and the armed forces are excluded. First published in the 2007-2011 vintage.", + "statement": "The unemployment rate in {location} was {value}.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_unemployed_moe": { + "id": "nces_pct_unemployed_moe", + "short_name": "Unemployment rate (margin of error)", + "long_name": "Percent of the civilian labor force unemployed (margin of error)", + "category": "demographic", + "short_description": "Unemployed people as a percent of the civilian labor force aged 16 and over.", + "long_description": "ACS table B23025. The denominator is the civilian labor force, so people not in the labor force and the armed forces are excluded. First published in the 2007-2011 vintage. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "The unemployment rate in {location} was {value}.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_renter_occupied": { + "id": "nces_pct_renter_occupied", + "short_name": "Renter-occupied homes", + "long_name": "Percent of occupied housing units that are renter occupied", + "category": "demographic", + "short_description": "Percent of occupied housing units occupied by renters.", + "long_description": "ACS table B25003. Vacant units are excluded from the denominator.", + "statement": "{value} of occupied homes in {location} were rented.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_renter_occupied_moe": { + "id": "nces_pct_renter_occupied_moe", + "short_name": "Renter-occupied homes (margin of error)", + "long_name": "Percent of occupied housing units that are renter occupied (margin of error)", + "category": "demographic", + "short_description": "Percent of occupied housing units occupied by renters.", + "long_description": "ACS table B25003. Vacant units are excluded from the denominator. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of occupied homes in {location} were rented.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_foreign_born": { + "id": "nces_pct_foreign_born", + "short_name": "Foreign born", + "long_name": "Percent of the population that is foreign born", + "category": "demographic", + "short_description": "Percent of people born outside the United States to non-U.S. citizen parents.", + "long_description": "The 'Foreign born' branch of ACS table B05002 as a percent of the total population. Includes naturalized citizens and non-citizens, and excludes people born abroad to American parents and those born in Puerto Rico or the U.S. Island Areas.", + "statement": "{value} of people in {location} were foreign born.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_foreign_born_moe": { + "id": "nces_pct_foreign_born_moe", + "short_name": "Foreign born (margin of error)", + "long_name": "Percent of the population that is foreign born (margin of error)", + "category": "demographic", + "short_description": "Percent of people born outside the United States to non-U.S. citizen parents.", + "long_description": "The 'Foreign born' branch of ACS table B05002 as a percent of the total population. Includes naturalized citizens and non-citizens, and excludes people born abroad to American parents and those born in Puerto Rico or the U.S. Island Areas. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of people in {location} were foreign born.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_no_internet": { + "id": "nces_pct_no_internet", + "short_name": "No internet subscription", + "long_name": "Percent of households without an internet subscription", + "category": "access", + "short_description": "Percent of households with no internet subscription of any kind.", + "long_description": "Households with internet access but no subscription, plus households with no internet access, as a percent of all households, from ACS table B28002. First published in the 2013-2017 vintage.", + "statement": "{value} of households in {location} had no internet subscription.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_no_internet_moe": { + "id": "nces_pct_no_internet_moe", + "short_name": "No internet subscription (margin of error)", + "long_name": "Percent of households without an internet subscription (margin of error)", + "category": "access", + "short_description": "Percent of households with no internet subscription of any kind.", + "long_description": "Households with internet access but no subscription, plus households with no internet access, as a percent of all households, from ACS table B28002. First published in the 2013-2017 vintage. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of households in {location} had no internet subscription.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "nces_pct_broadband": { + "id": "nces_pct_broadband", + "short_name": "Broadband", + "long_name": "Percent of households with a broadband subscription", + "category": "access", + "short_description": "Percent of households with a broadband internet subscription of any type.", + "long_description": "The 'Broadband of any type' cell of ACS table B28002 as a percent of all households. Cellular data plans count as broadband here. First published in the 2013-2017 vintage.", + "statement": "{value} of households in {location} had a broadband subscription.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ] + }, + "nces_pct_broadband_moe": { + "id": "nces_pct_broadband_moe", + "short_name": "Broadband (margin of error)", + "long_name": "Percent of households with a broadband subscription (margin of error)", + "category": "access", + "short_description": "Percent of households with a broadband internet subscription of any type.", + "long_description": "The 'Broadband of any type' cell of ACS table B28002 as a percent of all households. Cellular data plans count as broadband here. First published in the 2013-2017 vintage. This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion.", + "statement": "{value} of households in {location} had a broadband subscription.", + "measure_type": "Percent", + "unit": "Percent", + "time_resolution": "Year", + "sources": [ + { + "id": "nces_acs_ed" + } + ], + "suffix": " (margin of error)", + "note": " This column is the 90 percent margin of error, derived with the Census Bureau's formula for the margin of error of a proportion." + }, + "_sources": { + "nces_acs_ed": { + "name": "NCES ACS-ED Tables", + "url": "https://nces.ed.gov/programs/edge/Demographic/acsedtables", + "organization": "National Center for Education Statistics, Education Demographic and Geographic Estimates (EDGE) program", + "organization_url": "https://nces.ed.gov/programs/edge/", + "location": "EDGE TableViewer, ACS dataset", + "location_url": "https://nces.ed.gov/programs/edge/TableViewer/acs/2023", + "description": "The EDGE program has the Census Bureau retabulate American Community Survey five-year period estimates onto school district boundaries, producing social, economic and housing indicators for school-age children and their families at national, state and school district level. Fifteen vintages are published, from 2005-2009 through 2019-2023, each covering roughly 13,400 elementary, secondary and unified districts alongside the 50 states, DC and Puerto Rico. Because these are five-year survey averages for small areas, district-level margins of error are often large relative to the estimates and consecutive vintages share four years of sample, so year-over-year changes are heavily autocorrelated and should not be read as annual change. District boundaries are refreshed each year, so a district's geography is not necessarily constant across vintages. This source carries the survey-based measures of high school completion and dropout; the Adjusted Cohort Graduation Rate, which follows a single cohort to graduation and is reported by school rather than by residence, comes from the separate NCES EDFacts and Common Core of Data collections and is not part of these tables.", + "restrictions": "Public domain. NCES and Census Bureau data are generally not subject to copyright restrictions.", + "date_accessed": 2026 + }, + "id": "_sources" + }, + "_catalog": { + "summary": "The ACS-ED tables describe children and families in every U.S. school district, covering school enrollment, child poverty, language, health insurance and high school completion.", + "search_terms": [ + "Education", + "school districts", + "school enrollment", + "child poverty", + "graduation" + ], + "bucket": [], + "files": { + "data_state.csv.gz": "National and state indicators", + "data_lea.csv.gz": "School district indicators by district type" + }, + "id": "_catalog" + } + }, + "change_report": { + "data_lea.csv.gz": { + "state": "unchanged" + }, + "data_state.csv.gz": { + "state": "unchanged" + } + } +} diff --git a/scripts/build.R b/scripts/build.R new file mode 100644 index 0000000..832ecf4 --- /dev/null +++ b/scripts/build.R @@ -0,0 +1,2 @@ +library(dcf) +dcf_build() diff --git a/settings.json b/settings.json new file mode 100644 index 0000000..c05c673 --- /dev/null +++ b/settings.json @@ -0,0 +1,7 @@ +{ + "name": "nces-data", + "data_dir": "data", + "github_account": "", + "branch": "main", + "repo_name": "nces-data" +}